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