mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-15 23:52:57 +00:00
The optional parameters allow specifying a working directory and controlling whether or not to block until the command returns.
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* 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;
|
|
enum class WaitForExit {
|
|
No,
|
|
Yes
|
|
};
|
|
void run_command(const String&, Optional<String> working_directory = {}, WaitForExit = WaitForExit::No);
|
|
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;
|
|
};
|
|
|
|
}
|