2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2019-10-29 15:08:09 +00:00
|
|
|
#include <AK/Vector.h>
|
2020-06-16 19:10:24 +00:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2018-11-06 09:46:40 +00:00
|
|
|
#include <errno.h>
|
2018-11-17 14:56:09 +00:00
|
|
|
#include <fcntl.h>
|
2019-06-07 09:49:31 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2018-10-26 09:16:56 +00:00
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2020-01-11 19:50:22 +00:00
|
|
|
if (pledge("stdio rpath", nullptr) < 0) {
|
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-04-29 09:28:01 +00:00
|
|
|
Vector<String> paths;
|
2020-06-16 19:10:24 +00:00
|
|
|
|
|
|
|
Core::ArgsParser args_parser;
|
2020-12-05 15:22:58 +00:00
|
|
|
args_parser.set_general_help("Concatenate files or pipes to stdout.");
|
2020-06-16 19:10:24 +00:00
|
|
|
args_parser.add_positional_argument(paths, "File path", "path", Core::ArgsParser::Required::No);
|
|
|
|
args_parser.parse(argc, argv);
|
|
|
|
|
2019-10-29 15:08:09 +00:00
|
|
|
Vector<int> fds;
|
2020-06-16 19:10:24 +00:00
|
|
|
if (!paths.is_empty()) {
|
2021-04-29 09:28:01 +00:00
|
|
|
for (auto const& path : paths) {
|
2019-10-29 15:08:09 +00:00
|
|
|
int fd;
|
2021-04-29 09:28:01 +00:00
|
|
|
if (path == "-") {
|
2020-06-16 19:10:24 +00:00
|
|
|
fd = 0;
|
2021-04-29 09:28:01 +00:00
|
|
|
} else if ((fd = open(path.characters(), O_RDONLY)) == -1) {
|
|
|
|
warnln("Failed to open {}: {}", path, strerror(errno));
|
2019-10-29 15:08:09 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
fds.append(fd);
|
2018-10-26 09:16:56 +00:00
|
|
|
}
|
2019-10-29 15:08:09 +00:00
|
|
|
} else {
|
|
|
|
fds.append(0);
|
|
|
|
}
|
2020-01-11 19:50:22 +00:00
|
|
|
|
|
|
|
if (pledge("stdio", nullptr) < 0) {
|
|
|
|
perror("pledge");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-10-29 15:08:09 +00:00
|
|
|
for (auto& fd : fds) {
|
|
|
|
for (;;) {
|
2019-11-02 23:09:17 +00:00
|
|
|
char buf[32768];
|
2019-10-29 15:08:09 +00:00
|
|
|
ssize_t nread = read(fd, buf, sizeof(buf));
|
|
|
|
if (nread == 0)
|
|
|
|
break;
|
|
|
|
if (nread < 0) {
|
|
|
|
perror("read");
|
|
|
|
return 2;
|
|
|
|
}
|
2020-06-16 19:10:24 +00:00
|
|
|
size_t already_written = 0;
|
|
|
|
while (already_written < (size_t)nread) {
|
|
|
|
ssize_t nwritten = write(1, buf + already_written, nread - already_written);
|
|
|
|
if (nwritten < 0) {
|
|
|
|
perror("write");
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
already_written += nwritten;
|
2019-10-29 15:08:09 +00:00
|
|
|
}
|
2019-06-06 08:40:12 +00:00
|
|
|
}
|
2019-10-29 15:08:09 +00:00
|
|
|
close(fd);
|
2018-10-26 09:16:56 +00:00
|
|
|
}
|
2020-06-16 19:10:24 +00:00
|
|
|
|
2018-10-26 09:16:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|