Files
ladybird/VirtualFileSystem/CharacterDevice.h
Andreas Kling 85b886c2e0 Make it possible to build the Kernel on a macOS host.
It still requires an ELF compiler and linker, but at least it builds.
I need to get rid of the "Unix" namespace. This does a lot of that.
2018-12-02 23:34:50 +01:00

34 lines
785 B
C++

#pragma once
#include <AK/Types.h>
#include "Limits.h"
#include "FileDescriptor.h"
class Process;
class CharacterDevice {
public:
virtual ~CharacterDevice();
RetainPtr<FileDescriptor> open(int options);
virtual bool hasDataAvailableForRead() const = 0;
virtual ssize_t read(byte* buffer, size_t bufferSize) = 0;
virtual ssize_t write(const byte* buffer, size_t bufferSize) = 0;
unsigned major() const { return m_major; }
unsigned minor() const { return m_minor; }
virtual bool isTTY() const { return false; }
virtual int ioctl(Process&, unsigned request, unsigned arg);
protected:
CharacterDevice(unsigned major, unsigned minor) : m_major(major), m_minor(minor) { }
private:
unsigned m_major { 0 };
unsigned m_minor { 0 };
};