All Classes Namespaces Functions Enumerations Enumerator Modules Pages
file_utils.hpp
1 /*
2  * Copyright (c) 2025, NVIDIA CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #pragma once
17 
18 #include <optional>
19 #include <string>
20 
21 #include <kvikio/shim/cufile_h_wrapper.hpp>
22 
23 namespace kvikio {
27 class FileWrapper {
28  private:
29  int _fd{-1};
30 
31  public:
40  FileWrapper(std::string const& file_path, std::string const& flags, bool o_direct, mode_t mode);
41 
45  FileWrapper() noexcept = default;
46 
47  ~FileWrapper() noexcept;
48  FileWrapper(FileWrapper const&) = delete;
49  FileWrapper& operator=(FileWrapper const&) = delete;
50  FileWrapper(FileWrapper&& o) noexcept;
51  FileWrapper& operator=(FileWrapper&& o) noexcept;
52 
61  void open(std::string const& file_path, std::string const& flags, bool o_direct, mode_t mode);
62 
68  bool opened() const noexcept;
69 
73  void close() noexcept;
74 
80  int fd() const noexcept;
81 };
82 
87  private:
88  CUfileHandle_t _handle{};
89  bool _registered{false};
90 
91  public:
92  CUFileHandleWrapper() noexcept = default;
93  ~CUFileHandleWrapper() noexcept;
95  CUFileHandleWrapper& operator=(CUFileHandleWrapper const&) = delete;
97  CUFileHandleWrapper& operator=(CUFileHandleWrapper&& o) noexcept;
98 
106  std::optional<CUfileError_t> register_handle(int fd) noexcept;
107 
113  bool registered() const noexcept;
114 
120  CUfileHandle_t handle() const noexcept;
121 
125  void unregister_handle() noexcept;
126 };
127 
138 int open_fd_parse_flags(std::string const& flags, bool o_direct);
139 
148 int open_fd(std::string const& file_path, std::string const& flags, bool o_direct, mode_t mode);
149 
155 [[nodiscard]] int open_flags(int fd);
156 
163 [[nodiscard]] std::size_t get_file_size(int file_descriptor);
164 
165 } // namespace kvikio
Class that provides RAII for the cuFile handle.
Definition: file_utils.hpp:86
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.
Definition: file_utils.hpp:27
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.
KvikIO namespace.
Definition: batch.hpp:27
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))