mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
6e19ab2bbc
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Error.h>
|
|
#include <LibGUI/Widget.h>
|
|
#include <LibVT/TerminalWidget.h>
|
|
|
|
namespace HackStudio {
|
|
|
|
class TerminalWrapper final : public GUI::Widget {
|
|
C_OBJECT(TerminalWrapper)
|
|
public:
|
|
virtual ~TerminalWrapper() override = default;
|
|
enum class WaitForExit {
|
|
No,
|
|
Yes
|
|
};
|
|
ErrorOr<void> run_command(DeprecatedString const&, Optional<DeprecatedString> working_directory = {}, WaitForExit = WaitForExit::No, Optional<StringView> failure_message = {});
|
|
ErrorOr<void> kill_running_command();
|
|
void clear_including_history();
|
|
|
|
bool user_spawned() const { return m_user_spawned; }
|
|
VT::TerminalWidget& terminal() { return *m_terminal_widget; }
|
|
|
|
enum class WaitForChildOnExit {
|
|
No,
|
|
Yes,
|
|
};
|
|
ErrorOr<int> setup_master_pseudoterminal(WaitForChildOnExit = WaitForChildOnExit::Yes);
|
|
static ErrorOr<void> setup_slave_pseudoterminal(int master_fd);
|
|
int child_exit_status() const;
|
|
|
|
Function<void()> on_command_exit;
|
|
|
|
private:
|
|
explicit TerminalWrapper(bool user_spawned = true);
|
|
|
|
RefPtr<VT::TerminalWidget> m_terminal_widget;
|
|
pid_t m_pid { -1 };
|
|
bool m_user_spawned { true };
|
|
bool m_child_exited { false };
|
|
Optional<int> m_child_exit_status;
|
|
};
|
|
|
|
}
|