mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include "VirtualFileSystem.h"
|
|
#include "InodeMetadata.h"
|
|
#include <AK/ByteBuffer.h>
|
|
|
|
class TTY;
|
|
|
|
class FileHandle {
|
|
public:
|
|
explicit FileHandle(RetainPtr<VirtualFileSystem::Node>&&);
|
|
~FileHandle();
|
|
|
|
Unix::off_t seek(Unix::off_t, int whence);
|
|
Unix::ssize_t read(byte*, Unix::size_t);
|
|
Unix::ssize_t write(const byte* data, Unix::size_t);
|
|
int stat(Unix::stat*);
|
|
|
|
bool hasDataAvailableForRead();
|
|
|
|
ssize_t get_dir_entries(byte* buffer, Unix::size_t);
|
|
|
|
ByteBuffer readEntireFile();
|
|
|
|
String absolutePath() const;
|
|
|
|
bool isDirectory() const;
|
|
|
|
bool isTTY() const;
|
|
const TTY* tty() const;
|
|
|
|
InodeMetadata metadata() const { return m_vnode->metadata(); }
|
|
|
|
VirtualFileSystem::Node* vnode() { return m_vnode.ptr(); }
|
|
|
|
#ifdef SERENITY
|
|
int fd() const { return m_fd; }
|
|
void setFD(int fd) { m_fd = fd; }
|
|
|
|
bool isBlocking() const { return m_isBlocking; }
|
|
void setBlocking(bool b) { m_isBlocking = b; }
|
|
#endif
|
|
|
|
ByteBuffer& generatorCache() { return m_generatorCache; }
|
|
|
|
private:
|
|
friend class VirtualFileSystem;
|
|
|
|
RetainPtr<VirtualFileSystem::Node> m_vnode;
|
|
|
|
Unix::off_t m_currentOffset { 0 };
|
|
|
|
ByteBuffer m_generatorCache;
|
|
|
|
#ifdef SERENITY
|
|
int m_fd { -1 };
|
|
bool m_isBlocking { true };
|
|
#endif
|
|
};
|
|
|