2021-04-07 21:01:15 +00:00
|
|
|
/*
|
2022-01-08 16:40:54 +00:00
|
|
|
* Copyright (c) 2021-2022, Federico Guerinoni <guerinoni.federico@gmail.com>
|
2021-04-07 21:01:15 +00:00
|
|
|
*
|
2021-04-28 21:21:41 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-04-07 21:01:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibCore/ArgsParser.h>
|
2022-01-08 16:40:54 +00:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
#include <LibMain/Main.h>
|
2021-10-13 23:59:18 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2021-04-07 21:01:15 +00:00
|
|
|
#include <unistd.h>
|
2021-10-13 23:59:18 +00:00
|
|
|
|
2022-01-08 16:40:54 +00:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2021-04-07 21:01:15 +00:00
|
|
|
{
|
2022-01-08 16:40:54 +00:00
|
|
|
TRY(Core::System::pledge("stdio rpath"));
|
2021-04-07 21:01:15 +00:00
|
|
|
|
2021-11-26 21:32:37 +00:00
|
|
|
Vector<StringView> paths;
|
2021-05-09 13:47:16 +00:00
|
|
|
|
2021-04-07 21:01:15 +00:00
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
args_parser.set_general_help("Concatenate files or pipes to stdout, last line first.");
|
2021-05-09 13:47:16 +00:00
|
|
|
args_parser.add_positional_argument(paths, "File path(s)", "path", Core::ArgsParser::Required::No);
|
2022-01-08 16:40:54 +00:00
|
|
|
args_parser.parse(arguments);
|
2021-04-07 21:01:15 +00:00
|
|
|
|
2021-10-13 23:59:18 +00:00
|
|
|
Vector<FILE*> streams;
|
|
|
|
auto num_paths = paths.size();
|
|
|
|
streams.ensure_capacity(num_paths ? num_paths : 1);
|
2021-04-07 21:01:15 +00:00
|
|
|
|
2021-05-09 13:47:16 +00:00
|
|
|
if (!paths.is_empty()) {
|
|
|
|
for (auto const& path : paths) {
|
2021-10-13 23:59:18 +00:00
|
|
|
FILE* stream = nullptr;
|
|
|
|
if (path == "-"sv) {
|
|
|
|
stream = stdin;
|
2021-05-09 13:47:16 +00:00
|
|
|
} else {
|
2022-12-04 18:02:33 +00:00
|
|
|
stream = fopen(DeprecatedString(path).characters(), "r");
|
2021-10-13 23:59:18 +00:00
|
|
|
if (!stream) {
|
2021-05-09 13:47:16 +00:00
|
|
|
warnln("Failed to open {}: {}", path, strerror(errno));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2021-10-13 23:59:18 +00:00
|
|
|
streams.append(stream);
|
2021-05-09 13:47:16 +00:00
|
|
|
}
|
|
|
|
} else {
|
2021-10-13 23:59:18 +00:00
|
|
|
streams.append(stdin);
|
|
|
|
}
|
|
|
|
|
|
|
|
char* buffer = nullptr;
|
|
|
|
ScopeGuard guard = [&] {
|
|
|
|
free(buffer);
|
|
|
|
for (auto* stream : streams) {
|
|
|
|
if (fclose(stream))
|
|
|
|
perror("fclose");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-01-08 16:40:54 +00:00
|
|
|
TRY(Core::System::pledge("stdio"));
|
2021-10-13 23:59:18 +00:00
|
|
|
|
|
|
|
for (auto* stream : streams) {
|
2022-12-04 18:02:33 +00:00
|
|
|
Vector<DeprecatedString> lines;
|
2021-10-13 23:59:18 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
lines.append({ buffer, Chomp });
|
|
|
|
}
|
|
|
|
for (int i = lines.size() - 1; i >= 0; --i)
|
|
|
|
outln("{}", lines[i]);
|
2021-04-07 21:01:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|