mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
5e1499d104
This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
60 lines
2.3 KiB
C++
60 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) 2022, Tim Schumacher <timschumi@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/LexicalPath.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/Directory.h>
|
|
#include <LibCore/FilePermissionsMask.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibFileSystem/FileSystem.h>
|
|
#include <LibMain/Main.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio rpath wpath cpath fattr"));
|
|
|
|
bool create_leading_dest_components = false;
|
|
StringView mode = "0755"sv;
|
|
Vector<StringView> sources;
|
|
StringView destination;
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.add_ignored(nullptr, 'c'); // "copy files" is the default, no contradicting options exist.
|
|
args_parser.add_option(create_leading_dest_components, "Create leading components of the destination path", nullptr, 'D');
|
|
args_parser.add_option(mode, "Permissions to set (instead of 0755)", "mode", 'm', "mode");
|
|
args_parser.add_positional_argument(sources, "Source path", "source");
|
|
args_parser.add_positional_argument(destination, "Destination path", "destination");
|
|
args_parser.parse(arguments);
|
|
|
|
auto permission_mask = TRY(Core::FilePermissionsMask::parse(mode));
|
|
|
|
ByteString destination_dir = (sources.size() > 1 ? ByteString { destination } : LexicalPath::dirname(destination));
|
|
|
|
if (create_leading_dest_components) {
|
|
String destination_dir_absolute = TRY(FileSystem::absolute_path(destination_dir));
|
|
MUST(Core::Directory::create(destination_dir_absolute.to_byte_string(), Core::Directory::CreateDirectories::Yes));
|
|
}
|
|
|
|
for (auto const& source : sources) {
|
|
ByteString final_destination;
|
|
if (sources.size() > 1) {
|
|
final_destination = LexicalPath(destination).append(LexicalPath::basename(source)).string();
|
|
} else {
|
|
final_destination = destination;
|
|
}
|
|
|
|
TRY(FileSystem::copy_file_or_directory(final_destination, source, FileSystem::RecursionMode::Allowed,
|
|
FileSystem::LinkMode::Disallowed, FileSystem::AddDuplicateFileMarker::No,
|
|
FileSystem::PreserveMode::Nothing));
|
|
|
|
auto current_access = TRY(Core::System::stat(final_destination));
|
|
TRY(Core::System::chmod(final_destination, permission_mask.apply(current_access.st_mode)));
|
|
}
|
|
|
|
return 0;
|
|
}
|