mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
08cd75ac4b
After reading a bunch of POSIX specs, I've learned that a file descriptor is the number that refers to a file description, not the description itself. So this patch renames FileDescriptor to FileDescription, and Process now has FileDescription* file_description(int fd).
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <Kernel/FileSystem/InodeIdentifier.h>
|
|
#include <Kernel/TTY/TTY.h>
|
|
|
|
class MasterPTY;
|
|
|
|
class SlavePTY final : public TTY {
|
|
public:
|
|
virtual ~SlavePTY() override;
|
|
|
|
void on_master_write(const byte*, ssize_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 ssize_t on_tty_write(const byte*, ssize_t) override;
|
|
|
|
// ^CharacterDevice
|
|
virtual bool can_read(FileDescription&) const override;
|
|
virtual ssize_t read(FileDescription&, byte*, ssize_t) override;
|
|
virtual bool can_write(FileDescription&) 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;
|
|
String m_tty_name;
|
|
};
|