serenity/Userland/Applications/FileManager/FileUtils.cpp
Ali Mohammad Pur 5e1499d104 Everywhere: Rename {Deprecated => Byte}String
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')
2023-12-17 18:25:10 +03:30

150 lines
4.6 KiB
C++

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "FileUtils.h"
#include "FileOperationProgressWidget.h"
#include <AK/LexicalPath.h>
#include <LibCore/MimeData.h>
#include <LibCore/System.h>
#include <LibFileSystem/FileSystem.h>
#include <LibGUI/Event.h>
#include <LibGUI/MessageBox.h>
#include <unistd.h>
namespace FileManager {
HashTable<NonnullRefPtr<GUI::Window>> file_operation_windows;
void delete_paths(Vector<ByteString> const& paths, bool should_confirm, GUI::Window* parent_window)
{
ByteString message;
if (paths.size() == 1) {
message = ByteString::formatted("Are you sure you want to delete \"{}\"?", LexicalPath::basename(paths[0]));
} else {
message = ByteString::formatted("Are you sure you want to delete {} files?", paths.size());
}
if (should_confirm) {
auto result = GUI::MessageBox::show(parent_window,
message,
"Confirm Deletion"sv,
GUI::MessageBox::Type::Warning,
GUI::MessageBox::InputType::OKCancel);
if (result == GUI::MessageBox::ExecResult::Cancel)
return;
}
if (run_file_operation(FileOperation::Delete, paths, {}, parent_window).is_error())
_exit(1);
}
ErrorOr<void> run_file_operation(FileOperation operation, Vector<ByteString> const& sources, ByteString const& destination, GUI::Window* parent_window)
{
auto pipe_fds = TRY(Core::System::pipe2(0));
pid_t child_pid = TRY(Core::System::fork());
if (!child_pid) {
TRY(Core::System::close(pipe_fds[0]));
TRY(Core::System::dup2(pipe_fds[1], STDOUT_FILENO));
Vector<StringView> file_operation_args;
file_operation_args.append("/bin/FileOperation"sv);
switch (operation) {
case FileOperation::Copy:
file_operation_args.append("Copy"sv);
break;
case FileOperation::Move:
file_operation_args.append("Move"sv);
break;
case FileOperation::Delete:
file_operation_args.append("Delete"sv);
break;
default:
VERIFY_NOT_REACHED();
}
for (auto& source : sources)
file_operation_args.append(source.view());
if (operation != FileOperation::Delete)
file_operation_args.append(destination.view());
TRY(Core::System::exec(file_operation_args.first(), file_operation_args, Core::System::SearchInPath::Yes));
VERIFY_NOT_REACHED();
} else {
TRY(Core::System::close(pipe_fds[1]));
}
auto window = GUI::Window::construct();
TRY(file_operation_windows.try_set(window));
switch (operation) {
case FileOperation::Copy:
window->set_title("Copying Files...");
break;
case FileOperation::Move:
window->set_title("Moving Files...");
break;
case FileOperation::Delete:
window->set_title("Deleting Files...");
break;
default:
VERIFY_NOT_REACHED();
}
auto pipe_input_file = TRY(Core::File::adopt_fd(pipe_fds[0], Core::File::OpenMode::Read));
auto buffered_pipe = TRY(Core::InputBufferedFile::create(move(pipe_input_file)));
(void)window->set_main_widget<FileOperationProgressWidget>(operation, move(buffered_pipe), pipe_fds[0]);
window->resize(320, 190);
if (parent_window)
window->center_within(*parent_window);
window->show();
return {};
}
ErrorOr<bool> handle_drop(GUI::DropEvent const& event, ByteString const& destination, GUI::Window* window)
{
bool has_accepted_drop = false;
if (!event.mime_data().has_urls())
return has_accepted_drop;
auto const urls = event.mime_data().urls();
if (urls.is_empty()) {
dbgln("No files to drop");
return has_accepted_drop;
}
auto const target = LexicalPath::canonicalized_path(destination);
if (!FileSystem::is_directory(target))
return has_accepted_drop;
Vector<ByteString> paths_to_copy;
for (auto& url_to_copy : urls) {
auto file_path = url_to_copy.serialize_path();
if (!url_to_copy.is_valid() || file_path == target)
continue;
auto new_path = ByteString::formatted("{}/{}", target, LexicalPath::basename(file_path));
if (file_path == new_path)
continue;
paths_to_copy.append(file_path);
has_accepted_drop = true;
}
if (!paths_to_copy.is_empty())
TRY(run_file_operation(FileOperation::Copy, paths_to_copy, target, window));
return has_accepted_drop;
}
}