1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 08:05:07 +00:00
serenity/Userland/DevTools/HackStudio/TerminalWrapper.h
Itamar 0cea8d1310 HackStudio: Separate master & slave PTY setup in TerminalWrapper
Previously the setup for both the master and slave pseudoterminals was
done in TerminalWrapper::run_command.

This commit separates the relevant logic into
TerminalWrapper::setup_master_pseudoterminal
and TerminalWrapper::setup_slave_pseudoterminal.
2021-12-22 02:14:32 -08:00

44 lines
1 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;
void run_command(const String&);
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);
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 };
};
}