mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 03:12:07 -05:00
2b4374d08e
This ownership model is a bit confusing. There's a retain cycle between MasterPTY and SlavePTY, but it's broken when the SlavePTY is closed, meaning that there are no more FileDescriptors referring to it.
34 lines
876 B
C++
34 lines
876 B
C++
#pragma once
|
|
|
|
#include "TTY.h"
|
|
|
|
class MasterPTY;
|
|
|
|
class SlavePTY final : public TTY {
|
|
public:
|
|
virtual ~SlavePTY() override;
|
|
|
|
void on_master_write(const byte*, size_t);
|
|
unsigned index() const { return m_index; }
|
|
|
|
InodeIdentifier devpts_inode_id() const { return m_devpts_inode_id; }
|
|
void set_devpts_inode_id(InodeIdentifier inode_id) { m_devpts_inode_id = inode_id; }
|
|
|
|
private:
|
|
// ^TTY
|
|
virtual String tty_name() const override;
|
|
virtual void on_tty_write(const byte*, size_t) override;
|
|
|
|
// ^CharacterDevice
|
|
virtual bool can_write(Process&) const override;
|
|
virtual const char* class_name() const override { return "SlavePTY"; }
|
|
virtual void close() override;
|
|
|
|
friend class MasterPTY;
|
|
SlavePTY(MasterPTY&, unsigned index);
|
|
|
|
RetainPtr<MasterPTY> m_master;
|
|
unsigned m_index;
|
|
InodeIdentifier m_devpts_inode_id;
|
|
};
|
|
|