serenity/Userland/Applications/Run/RunWindow.cpp

207 lines
6.4 KiB
C++
Raw Normal View History

2021-01-13 12:10:00 +00:00
/*
* Copyright (c) 2021, Nick Vella <nick@nxk.io>
* Copyright (c) 2022, the SerenityOS developers.
2021-01-13 12:10:00 +00:00
*
* SPDX-License-Identifier: BSD-2-Clause
2021-01-13 12:10:00 +00:00
*/
#include "RunWindow.h"
2023-05-26 10:42:58 +00:00
#include "MainWidget.h"
#include <AK/LexicalPath.h>
#include <LibCore/Process.h>
#include <LibCore/StandardPaths.h>
2021-01-13 12:10:00 +00:00
#include <LibDesktop/Launcher.h>
#include <LibFileSystem/FileSystem.h>
2021-01-13 12:10:00 +00:00
#include <LibGUI/Button.h>
#include <LibGUI/Event.h>
#include <LibGUI/FilePicker.h>
#include <LibGUI/Icon.h>
#include <LibGUI/ImageWidget.h>
#include <LibGUI/MessageBox.h>
#include <LibGUI/Widget.h>
#include <LibURL/URL.h>
2021-01-13 12:10:00 +00:00
#include <spawn.h>
#include <stdio.h>
#include <string.h>
2021-01-13 12:10:00 +00:00
#include <sys/wait.h>
#include <unistd.h>
namespace Run {
2021-01-13 12:10:00 +00:00
RunWindow::RunWindow()
: m_path_history()
, m_path_history_model(GUI::ItemListModel<ByteString>::create(m_path_history))
2021-01-13 12:10:00 +00:00
{
// FIXME: Handle failure to load history somehow.
(void)load_history();
auto app_icon = GUI::Icon::default_icon("app-run"sv);
2021-01-13 12:10:00 +00:00
set_title("Run");
set_icon(app_icon.bitmap_for_size(16));
2021-07-27 19:03:06 +00:00
resize(345, 100);
2021-01-13 12:10:00 +00:00
set_resizable(false);
set_minimizable(false);
auto main_widget = MUST(Run::MainWidget::try_create());
set_main_widget(main_widget);
2021-01-13 12:10:00 +00:00
m_icon_image_widget = *main_widget->find_descendant_of_type_named<GUI::ImageWidget>("icon");
2021-01-13 12:10:00 +00:00
m_icon_image_widget->set_bitmap(app_icon.bitmap_for_size(32));
m_path_combo_box = *main_widget->find_descendant_of_type_named<GUI::ComboBox>("path");
m_path_combo_box->set_model(m_path_history_model);
if (!m_path_history.is_empty())
m_path_combo_box->set_selected_index(0);
2021-01-13 12:10:00 +00:00
m_ok_button = *main_widget->find_descendant_of_type_named<GUI::DialogButton>("ok_button");
2021-01-13 12:10:00 +00:00
m_ok_button->on_click = [this](auto) {
do_run();
};
m_ok_button->set_default(true);
2021-01-13 12:10:00 +00:00
m_cancel_button = *main_widget->find_descendant_of_type_named<GUI::DialogButton>("cancel_button");
2021-01-13 12:10:00 +00:00
m_cancel_button->on_click = [this](auto) {
close();
};
m_browse_button = *main_widget->find_descendant_of_type_named<GUI::DialogButton>("browse_button");
2021-01-13 12:10:00 +00:00
m_browse_button->on_click = [this](auto) {
Optional<ByteString> path = GUI::FilePicker::get_open_filepath(this, {}, Core::StandardPaths::home_directory(), false, GUI::Dialog::ScreenPosition::Center);
2021-01-13 12:10:00 +00:00
if (path.has_value())
m_path_combo_box->set_text(path.value().view());
2021-01-13 12:10:00 +00:00
};
}
void RunWindow::event(Core::Event& event)
{
if (event.type() == GUI::Event::KeyDown) {
2021-01-13 12:10:00 +00:00
auto& key_event = static_cast<GUI::KeyEvent&>(event);
if (key_event.key() == Key_Escape) {
// Escape key pressed, close dialog
close();
return;
} else if ((key_event.key() == Key_Up || key_event.key() == Key_Down) && m_path_history.is_empty()) {
return;
2021-01-13 12:10:00 +00:00
}
}
Window::event(event);
}
void RunWindow::do_run()
{
auto run_input = m_path_combo_box->text().trim_whitespace();
2021-01-13 12:10:00 +00:00
hide();
if (run_via_launch(run_input) || run_as_command(run_input)) {
close();
return;
}
GUI::MessageBox::show_error(this, "Failed to run. Please check your command, path, or address, and try again."sv);
2021-01-13 12:10:00 +00:00
show();
}
bool RunWindow::run_as_command(ByteString const& run_input)
2021-01-13 12:10:00 +00:00
{
// TODO: Query and use the user's preferred shell.
auto maybe_child_pid = Core::Process::spawn("/bin/Shell"sv, Array { "-c", run_input.characters() }, {}, Core::Process::KeepAsChild::Yes);
if (maybe_child_pid.is_error())
2021-01-13 12:10:00 +00:00
return false;
pid_t child_pid = maybe_child_pid.release_value();
2021-01-13 12:10:00 +00:00
// The child shell was able to start. Let's save it to the history immediately so users can see it as the first entry the next time they run this program.
prepend_history(run_input);
// FIXME: Handle failure to save history somehow.
(void)save_history();
2021-01-13 12:10:00 +00:00
int status;
if (waitpid(child_pid, &status, 0) < 0)
return false;
int child_error = WEXITSTATUS(status);
dbgln("Child shell exited with code {}", child_error);
// 127 is typically the shell indicating command not found. 126 for all other errors.
if (child_error == 126 || child_error == 127) {
// There's an opportunity to remove the history entry here since it failed during its runtime, but other implementations (e.g. Windows 11) don't bother removing the entry.
// This makes sense, especially for cases where a user is debugging a failing program.
2021-01-13 12:10:00 +00:00
return false;
}
dbgln("Ran via command shell.");
return true;
}
bool RunWindow::run_via_launch(ByteString const& run_input)
2021-01-13 12:10:00 +00:00
{
auto url = URL::create_with_url_or_path(run_input);
if (url.scheme() == "file") {
auto file_path = url.serialize_path();
auto real_path_or_error = FileSystem::real_path(file_path);
if (real_path_or_error.is_error()) {
warnln("Failed to launch '{}': {}", file_path, real_path_or_error.error());
2021-01-13 12:10:00 +00:00
return false;
}
url = URL::create_with_url_or_path(real_path_or_error.release_value());
2021-01-13 12:10:00 +00:00
}
if (!Desktop::Launcher::open(url)) {
warnln("Failed to launch '{}'", url);
return false;
}
prepend_history(run_input);
// FIXME: Handle failure to save history somehow.
(void)save_history();
2021-01-13 12:10:00 +00:00
dbgln("Ran via URL launch.");
return true;
}
ByteString RunWindow::history_file_path()
{
return LexicalPath::canonicalized_path(ByteString::formatted("{}/{}", Core::StandardPaths::config_directory(), "RunHistory.txt"));
}
ErrorOr<void> RunWindow::load_history()
{
m_path_history.clear();
auto file = TRY(Core::File::open(history_file_path(), Core::File::OpenMode::Read));
auto buffered_file = TRY(Core::InputBufferedFile::create(move(file)));
Array<u8, PAGE_SIZE> line_buffer;
while (!buffered_file->is_eof()) {
StringView line = TRY(buffered_file->read_line(line_buffer));
if (!line.is_empty() && !line.is_whitespace())
m_path_history.append(line);
}
return {};
}
void RunWindow::prepend_history(ByteString const& input)
{
m_path_history.remove_all_matching([&](ByteString const& entry) { return input == entry; });
m_path_history.prepend(input);
}
ErrorOr<void> RunWindow::save_history()
{
auto file = TRY(Core::File::open(history_file_path(), Core::File::OpenMode::Write));
// Write the first 25 items of history
for (int i = 0; i < min(static_cast<int>(m_path_history.size()), 25); i++)
TRY(file->write_until_depleted(ByteString::formatted("{}\n", m_path_history[i])));
return {};
}
}