/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include "Command.h" #include "Parser.h" class Client : public RefCounted { public: static NonnullRefPtr create(int id, RefPtr socket, int ptm_fd) { return adopt_ref(*new Client(id, move(socket), ptm_fd)); } Function on_exit; protected: Client(int id, RefPtr socket, int ptm_fd); void drain_socket(); void drain_pty(); void handle_data(StringView); void handle_command(const Command& command); void handle_error(); void send_data(StringView str); void send_command(Command command); void send_commands(Vector commands); void quit(); private: // client id int m_id { 0 }; // client resources RefPtr m_socket; Parser m_parser; // pty resources int m_ptm_fd { -1 }; RefPtr m_ptm_notifier; };