2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2021-12-20 19:50:13 +01:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2020-05-01 14:02:04 +02:00
|
|
|
#include <LibCore/ArgsParser.h>
|
2021-12-20 19:50:13 +01:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
|
#include <LibMain/Main.h>
|
2019-01-22 00:58:13 +01:00
|
|
|
#include <errno.h>
|
|
|
|
|
#include <fcntl.h>
|
2019-06-07 11:49:31 +02:00
|
|
|
#include <stdio.h>
|
2019-01-22 00:58:13 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
2022-04-02 16:48:05 +01:00
|
|
|
static bool file_exists(String const& path)
|
2019-01-22 00:58:13 +01:00
|
|
|
{
|
|
|
|
|
struct stat st;
|
2022-04-02 16:48:05 +01:00
|
|
|
int rc = stat(path.characters(), &st);
|
2019-01-22 00:58:13 +01:00
|
|
|
if (rc < 0) {
|
|
|
|
|
if (errno == ENOENT)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (rc == 0) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
perror("stat");
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
2018-12-19 21:14:55 +01:00
|
|
|
|
2021-12-20 19:50:13 +01:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2018-12-19 21:14:55 +01:00
|
|
|
{
|
2021-12-20 19:50:13 +01:00
|
|
|
TRY(Core::System::pledge("stdio rpath cpath fattr"));
|
2020-02-18 13:25:34 +01:00
|
|
|
|
2022-04-02 16:48:05 +01:00
|
|
|
Vector<String> paths;
|
2020-05-01 14:02:04 +02:00
|
|
|
|
|
|
|
|
Core::ArgsParser args_parser;
|
2020-12-05 16:22:58 +01:00
|
|
|
args_parser.set_general_help("Create a file, or update its mtime (time of last modification).");
|
2021-10-23 13:52:40 +02:00
|
|
|
args_parser.add_ignored(nullptr, 'f');
|
2020-05-01 14:02:04 +02:00
|
|
|
args_parser.add_positional_argument(paths, "Files to touch", "path", Core::ArgsParser::Required::Yes);
|
2021-12-20 19:50:13 +01:00
|
|
|
args_parser.parse(arguments);
|
2020-05-01 14:02:04 +02:00
|
|
|
|
|
|
|
|
for (auto path : paths) {
|
|
|
|
|
if (file_exists(path)) {
|
2021-12-20 19:50:13 +01:00
|
|
|
if (auto result = Core::System::utime(path, {}); result.is_error())
|
|
|
|
|
warnln("{}", result.release_error());
|
2020-05-01 14:02:04 +02:00
|
|
|
} else {
|
2021-12-20 19:50:13 +01:00
|
|
|
int fd = TRY(Core::System::open(path, O_CREAT, 0100644));
|
|
|
|
|
TRY(Core::System::close(fd));
|
2019-01-22 00:58:13 +01:00
|
|
|
}
|
|
|
|
|
}
|
2018-12-19 21:14:55 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|