2021-05-01 13:39:04 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Thomas Voss <thomasvoss@live.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibCore/ArgsParser.h>
|
2021-10-14 03:05:28 +03:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2021-05-01 13:39:04 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
if (pledge("stdio rpath", nullptr) < 0) {
|
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-11-27 00:32:37 +03:00
|
|
|
Vector<StringView> paths;
|
2021-05-01 13:39:04 +03:00
|
|
|
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(argc, argv);
|
|
|
|
|
2021-10-14 03:05:28 +03:00
|
|
|
Vector<FILE*> streams;
|
|
|
|
auto num_paths = paths.size();
|
|
|
|
streams.ensure_capacity(num_paths ? num_paths : 1);
|
|
|
|
|
|
|
|
if (!paths.is_empty()) {
|
2021-05-01 13:39:04 +03:00
|
|
|
for (auto const& path : paths) {
|
2021-11-27 00:32:37 +03:00
|
|
|
FILE* stream = fopen(String(path).characters(), "r");
|
2021-10-14 03:05:28 +03:00
|
|
|
if (!stream) {
|
|
|
|
warnln("Failed to open {}: {}", path, strerror(errno));
|
2021-05-01 13:39:04 +03:00
|
|
|
continue;
|
|
|
|
}
|
2021-10-14 03:05:28 +03:00
|
|
|
streams.append(stream);
|
2021-05-01 13:39:04 +03:00
|
|
|
}
|
2021-10-14 03:05:28 +03:00
|
|
|
} else {
|
|
|
|
streams.append(stdin);
|
2021-05-01 13:39:04 +03:00
|
|
|
}
|
|
|
|
|
2021-10-14 03:05:28 +03:00
|
|
|
char* buffer = nullptr;
|
|
|
|
ScopeGuard guard = [&] {
|
|
|
|
free(buffer);
|
|
|
|
for (auto* stream : streams) {
|
|
|
|
if (fclose(stream))
|
|
|
|
perror("fclose");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-05-01 13:39:04 +03:00
|
|
|
if (pledge("stdio", nullptr) < 0) {
|
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-10-14 03:05:28 +03:00
|
|
|
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("{}", String { buffer, Chomp }.reverse());
|
2021-05-01 13:39:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|