#pragma once #include #include #include #include #include #include #include namespace Kernel { class Process : BAN::RefCounted { BAN_NON_COPYABLE(Process); BAN_NON_MOVABLE(Process); public: using entry_t = Thread::entry_t; public: static BAN::ErrorOr> create_kernel(entry_t, void*); ~Process() {} BAN::ErrorOr add_thread(entry_t, void*); void on_thread_exit(Thread&); pid_t pid() const { return m_pid; } BAN::ErrorOr open(BAN::StringView, int); BAN::ErrorOr close(int); BAN::ErrorOr read(int, void*, size_t); BAN::ErrorOr creat(BAN::StringView, mode_t); BAN::ErrorOr fstat(int, stat*); BAN::ErrorOr stat(BAN::StringView, stat*); BAN::ErrorOr mount(BAN::StringView, BAN::StringView); BAN::ErrorOr> read_directory_entries(int); BAN::ErrorOr working_directory() const; BAN::ErrorOr set_working_directory(BAN::StringView); static BAN::RefPtr current() { return Thread::current().process(); } private: Process(pid_t pid) : m_pid(pid) {} BAN::ErrorOr absolute_path_of(BAN::StringView) const; private: struct OpenFileDescription { BAN::RefPtr inode; BAN::String path; size_t offset = 0; uint8_t flags = 0; }; BAN::ErrorOr validate_fd(int); OpenFileDescription& open_file_description(int); BAN::ErrorOr get_free_fd(); BAN::Vector m_open_files; mutable RecursiveSpinLock m_lock; const pid_t m_pid = 0; BAN::String m_working_directory; BAN::Vector m_threads; friend class BAN::RefPtr; }; }