21 #include <kvikio/shim/cufile_h_wrapper.hpp>
40 FileWrapper(std::string
const& file_path, std::string
const& flags,
bool o_direct, mode_t mode);
61 void open(std::
string const& file_path, std::
string const& flags,
bool o_direct, mode_t mode);
80 int fd() const noexcept;
88 CUfileHandle_t _handle{};
89 bool _registered{
false};
120 CUfileHandle_t handle() const noexcept;
125 void unregister_handle() noexcept;
148 int open_fd(std::
string const& file_path, std::
string const& flags,
bool o_direct, mode_t mode);
Class that provides RAII for the cuFile handle.
bool registered() const noexcept
Check if the handle has been registered.
std::optional< CUfileError_t > register_handle(int fd) noexcept
Register the file handle given the file descriptor.
Class that provides RAII for file handling.
void open(std::string const &file_path, std::string const &flags, bool o_direct, mode_t mode)
Open file using open(2)
bool opened() const noexcept
Check if the file has been opened.
void close() noexcept
Close the file if it is opened; do nothing otherwise.
int fd() const noexcept
Return the file descriptor.
FileWrapper() noexcept=default
Construct an empty file wrapper object without opening a file.
FileWrapper(std::string const &file_path, std::string const &flags, bool o_direct, mode_t mode)
Open file.
std::size_t get_file_size(int file_descriptor)
Get file size from file descriptor fstat(3)
int open_fd(std::string const &file_path, std::string const &flags, bool o_direct, mode_t mode)
Open file using open(2)
int open_fd_parse_flags(std::string const &flags, bool o_direct)
Parse open file flags given as a string and return oflags.
int open_flags(int fd)
Get the flags of the file descriptor (see open(2))