mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
6e19ab2bbc
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2021, Thomas Voss <mail@thomasvoss.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibMain/Main.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio rpath"sv));
|
|
|
|
Vector<StringView> paths;
|
|
Core::ArgsParser args_parser;
|
|
|
|
args_parser.set_general_help("Concatente files to stdout with each line in reverse.");
|
|
args_parser.add_positional_argument(paths, "File path", "path", Core::ArgsParser::Required::No);
|
|
args_parser.parse(arguments);
|
|
|
|
Vector<FILE*> streams;
|
|
auto num_paths = paths.size();
|
|
streams.ensure_capacity(num_paths ? num_paths : 1);
|
|
|
|
if (!paths.is_empty()) {
|
|
for (auto const& path : paths) {
|
|
if (path == "-") {
|
|
streams.append(stdin);
|
|
} else {
|
|
FILE* stream = fopen(DeprecatedString(path).characters(), "r");
|
|
if (!stream) {
|
|
warnln("Failed to open {}: {}", path, strerror(errno));
|
|
continue;
|
|
}
|
|
streams.append(stream);
|
|
}
|
|
}
|
|
} else {
|
|
streams.append(stdin);
|
|
}
|
|
|
|
char* buffer = nullptr;
|
|
ScopeGuard guard = [&] {
|
|
free(buffer);
|
|
for (auto* stream : streams) {
|
|
// If the user passes '-' as an argument multiple times, then we will end up trying to
|
|
// close stdin multiple times. This will cause `fclose()` to fail but with no error, so
|
|
// we need to manually check errno.
|
|
if (fclose(stream) && errno != 0) {
|
|
perror("fclose");
|
|
}
|
|
}
|
|
};
|
|
|
|
TRY(Core::System::pledge("stdio"sv));
|
|
|
|
for (auto* stream : streams) {
|
|
for (;;) {
|
|
size_t n = 0;
|
|
errno = 0;
|
|
ssize_t buflen = getline(&buffer, &n, stream);
|
|
if (buflen == -1) {
|
|
if (errno != 0) {
|
|
perror("getline");
|
|
return 1;
|
|
}
|
|
break;
|
|
}
|
|
outln("{}", DeprecatedString { buffer, Chomp }.reverse());
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|