Luna/apps/mkdir.cpp

67 lines
1.7 KiB
C++
Raw Normal View History

#include <luna/NumberParsing.h>
#include <luna/PathParser.h>
2023-04-08 12:47:58 +00:00
#include <os/ArgumentParser.h>
#include <os/FileSystem.h>
2023-05-26 20:27:49 +00:00
#include <sys/stat.h>
static mode_t s_umask = 0;
static void read_umask()
{
s_umask = umask(0);
}
2023-04-08 12:47:58 +00:00
Result<void> mkdir_recursively(StringView path, mode_t mode)
{
begin:
auto rc = os::FileSystem::create_directory(path, mode);
if (!rc.has_error()) return {};
if (rc.error() == EEXIST) return {};
if (rc.error() == ENOENT)
{
PathParser parser = TRY(PathParser::create(path.chars()));
auto parent = TRY(parser.dirname());
2023-05-26 20:27:49 +00:00
TRY(mkdir_recursively(parent.view(), (0777 & ~s_umask) | S_IWUSR | S_IXUSR));
goto begin;
}
return rc.release_error();
}
Result<int> luna_main(int argc, char** argv)
2023-04-08 12:47:58 +00:00
{
StringView path;
StringView mode_string;
bool recursive;
2023-04-08 12:47:58 +00:00
os::ArgumentParser parser;
parser.add_description("Create directories."_sv);
parser.add_system_program_info("mkdir"_sv);
2023-04-08 12:47:58 +00:00
parser.add_positional_argument(path, "path"_sv, true);
2023-05-26 20:27:49 +00:00
parser.add_value_argument(mode_string, 'm', "mode"_sv, true, "set the mode for the newly created directory");
parser.add_switch_argument(recursive, 'p', "parents"_sv,
"if parent directories do not exist, create them as well"_sv);
2023-04-08 12:47:58 +00:00
parser.parse(argc, argv);
2023-05-26 20:27:49 +00:00
read_umask();
mode_t mode;
if (mode_string.is_empty()) mode = 0777 & ~s_umask;
else
mode = (mode_t)parse_unsigned_integer(mode_string.chars(), nullptr, 8) & 01777;
2023-04-08 12:47:58 +00:00
if (recursive)
2023-04-08 12:47:58 +00:00
{
TRY(mkdir_recursively(path, mode));
return 0;
2023-04-08 12:47:58 +00:00
}
TRY(os::FileSystem::create_directory(path, mode));
return 0;
2023-04-08 12:47:58 +00:00
}