86 lines
2.2 KiB
C++
86 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include <BAN/Array.h>
|
|
#include <kernel/FS/Inode.h>
|
|
#include <kernel/FS/VirtualFileSystem.h>
|
|
|
|
#include <limits.h>
|
|
#include <sys/stat.h>
|
|
|
|
namespace Kernel
|
|
{
|
|
|
|
class OpenFileDescriptorSet
|
|
{
|
|
BAN_NON_COPYABLE(OpenFileDescriptorSet);
|
|
|
|
public:
|
|
OpenFileDescriptorSet(const Credentials&);
|
|
~OpenFileDescriptorSet();
|
|
|
|
OpenFileDescriptorSet& operator=(OpenFileDescriptorSet&&);
|
|
|
|
BAN::ErrorOr<void> clone_from(const OpenFileDescriptorSet&);
|
|
|
|
BAN::ErrorOr<int> open(VirtualFileSystem::File&&, int flags);
|
|
BAN::ErrorOr<int> open(BAN::StringView absolute_path, int flags);
|
|
|
|
BAN::ErrorOr<int> socket(int domain, int type, int protocol);
|
|
|
|
BAN::ErrorOr<void> pipe(int fds[2]);
|
|
|
|
BAN::ErrorOr<int> dup(int);
|
|
BAN::ErrorOr<int> dup2(int, int);
|
|
|
|
BAN::ErrorOr<int> fcntl(int fd, int cmd, int extra);
|
|
|
|
BAN::ErrorOr<off_t> seek(int fd, off_t offset, int whence);
|
|
BAN::ErrorOr<off_t> tell(int) const;
|
|
|
|
BAN::ErrorOr<void> truncate(int fd, off_t length);
|
|
|
|
BAN::ErrorOr<void> close(int);
|
|
void close_all();
|
|
void close_cloexec();
|
|
|
|
BAN::ErrorOr<size_t> read(int fd, BAN::ByteSpan);
|
|
BAN::ErrorOr<size_t> write(int fd, BAN::ConstByteSpan);
|
|
|
|
BAN::ErrorOr<size_t> read_dir_entries(int fd, struct dirent* list, size_t list_len);
|
|
|
|
BAN::ErrorOr<VirtualFileSystem::File> file_of(int) const;
|
|
BAN::ErrorOr<BAN::StringView> path_of(int) const;
|
|
BAN::ErrorOr<BAN::RefPtr<Inode>> inode_of(int);
|
|
BAN::ErrorOr<int> flags_of(int) const;
|
|
|
|
private:
|
|
struct OpenFileDescription : public BAN::RefCounted<OpenFileDescription>
|
|
{
|
|
OpenFileDescription(VirtualFileSystem::File file, off_t offset, int flags)
|
|
: file(BAN::move(file))
|
|
, offset(offset)
|
|
, flags(flags)
|
|
{ }
|
|
|
|
BAN::RefPtr<Inode> inode() const { return file.inode; }
|
|
BAN::StringView path() const { return file.canonical_path.sv(); }
|
|
|
|
VirtualFileSystem::File file;
|
|
off_t offset { 0 };
|
|
int flags { 0 };
|
|
|
|
friend class BAN::RefPtr<OpenFileDescription>;
|
|
};
|
|
|
|
BAN::ErrorOr<void> validate_fd(int) const;
|
|
BAN::ErrorOr<int> get_free_fd() const;
|
|
BAN::ErrorOr<void> get_free_fd_pair(int fds[2]) const;
|
|
|
|
private:
|
|
const Credentials& m_credentials;
|
|
|
|
BAN::Array<BAN::RefPtr<OpenFileDescription>, OPEN_MAX> m_open_files;
|
|
};
|
|
|
|
}
|