mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
1b2ef8582c
Asking a File if we could possibly read or write it will never mutate the asking FileDescription&, so it should be const.
32 lines
1,001 B
C++
32 lines
1,001 B
C++
#pragma once
|
|
|
|
#include <AK/Badge.h>
|
|
#include <Kernel/Devices/CharacterDevice.h>
|
|
#include <Kernel/Lock.h>
|
|
|
|
class MasterPTY;
|
|
|
|
class PTYMultiplexer final : public CharacterDevice {
|
|
AK_MAKE_ETERNAL
|
|
public:
|
|
PTYMultiplexer();
|
|
virtual ~PTYMultiplexer() override;
|
|
|
|
static PTYMultiplexer& the();
|
|
|
|
// ^CharacterDevice
|
|
virtual KResultOr<NonnullRefPtr<FileDescription>> open(int options) override;
|
|
virtual ssize_t read(FileDescription&, u8*, ssize_t) override { return 0; }
|
|
virtual ssize_t write(FileDescription&, const u8*, ssize_t) override { return 0; }
|
|
virtual bool can_read(const FileDescription&) const override { return true; }
|
|
virtual bool can_write(const FileDescription&) const override { return true; }
|
|
|
|
void notify_master_destroyed(Badge<MasterPTY>, unsigned index);
|
|
|
|
private:
|
|
// ^CharacterDevice
|
|
virtual const char* class_name() const override { return "PTYMultiplexer"; }
|
|
|
|
Lock m_lock { "PTYMultiplexer" };
|
|
Vector<unsigned> m_freelist;
|
|
};
|