VIPRA Documentation
Loading...
Searching...
No Matches
os.h
1// Formatting library for C++ - optional OS-specific functionality
2//
3// Copyright (c) 2012 - present, Victor Zverovich
4// All rights reserved.
5//
6// For the license information refer to format.h.
7
8#ifndef FMT_OS_H_
9#define FMT_OS_H_
10
11#include "format.h"
12
13#ifndef FMT_MODULE
14# include <cerrno>
15# include <cstddef>
16# include <cstdio>
17# include <system_error> // std::system_error
18
19# if FMT_HAS_INCLUDE(<xlocale.h>)
20# include <xlocale.h> // LC_NUMERIC_MASK on macOS
21# endif
22#endif // FMT_MODULE
23
24#ifndef FMT_USE_FCNTL
25// UWP doesn't provide _pipe.
26# if FMT_HAS_INCLUDE("winapifamily.h")
27# include <winapifamily.h>
28# endif
29# if (FMT_HAS_INCLUDE(<fcntl.h>) || defined(__APPLE__) || \
30 defined(__linux__)) && \
31 (!defined(WINAPI_FAMILY) || \
32 (WINAPI_FAMILY == WINAPI_FAMILY_DESKTOP_APP))
33# include <fcntl.h> // for O_RDONLY
34# define FMT_USE_FCNTL 1
35# else
36# define FMT_USE_FCNTL 0
37# endif
38#endif
39
40#ifndef FMT_POSIX
41# if defined(_WIN32) && !defined(__MINGW32__)
42// Fix warnings about deprecated symbols.
43# define FMT_POSIX(call) _##call
44# else
45# define FMT_POSIX(call) call
46# endif
47#endif
48
49// Calls to system functions are wrapped in FMT_SYSTEM for testability.
50#ifdef FMT_SYSTEM
51# define FMT_HAS_SYSTEM
52# define FMT_POSIX_CALL(call) FMT_SYSTEM(call)
53#else
54# define FMT_SYSTEM(call) ::call
55# ifdef _WIN32
56// Fix warnings about deprecated symbols.
57# define FMT_POSIX_CALL(call) ::_##call
58# else
59# define FMT_POSIX_CALL(call) ::call
60# endif
61#endif
62
63// Retries the expression while it evaluates to error_result and errno
64// equals to EINTR.
65#ifndef _WIN32
66# define FMT_RETRY_VAL(result, expression, error_result) \
67 do { \
68 (result) = (expression); \
69 } while ((result) == (error_result) && errno == EINTR)
70#else
71# define FMT_RETRY_VAL(result, expression, error_result) result = (expression)
72#endif
73
74#define FMT_RETRY(result, expression) FMT_RETRY_VAL(result, expression, -1)
75
76FMT_BEGIN_NAMESPACE
77FMT_BEGIN_EXPORT
78
95template <typename Char> class basic_cstring_view {
96 private:
97 const Char* data_;
98
99 public:
101 basic_cstring_view(const Char* s) : data_(s) {}
102
104 basic_cstring_view(const std::basic_string<Char>& s) : data_(s.c_str()) {}
105
107 auto c_str() const -> const Char* { return data_; }
108};
109
110using cstring_view = basic_cstring_view<char>;
111using wcstring_view = basic_cstring_view<wchar_t>;
112
113#ifdef _WIN32
114FMT_API const std::error_category& system_category() noexcept;
115
116namespace detail {
117FMT_API void format_windows_error(buffer<char>& out, int error_code,
118 const char* message) noexcept;
119}
120
121FMT_API std::system_error vwindows_error(int error_code, string_view format_str,
122 format_args args);
123
149template <typename... Args>
150std::system_error windows_error(int error_code, string_view message,
151 const Args&... args) {
152 return vwindows_error(error_code, message, fmt::make_format_args(args...));
153}
154
155// Reports a Windows error without throwing an exception.
156// Can be used to report errors from destructors.
157FMT_API void report_windows_error(int error_code, const char* message) noexcept;
158#else
159inline auto system_category() noexcept -> const std::error_category& {
160 return std::system_category();
161}
162#endif // _WIN32
163
164// std::system is not available on some platforms such as iOS (#2248).
165#ifdef __OSX__
166template <typename S, typename... Args, typename Char = char_t<S>>
167void say(const S& format_str, Args&&... args) {
168 std::system(format("say \"{}\"", format(format_str, args...)).c_str());
169}
170#endif
171
172// A buffered file.
173class buffered_file {
174 private:
175 FILE* file_;
176
177 friend class file;
178
179 explicit buffered_file(FILE* f) : file_(f) {}
180
181 public:
182 buffered_file(const buffered_file&) = delete;
183 void operator=(const buffered_file&) = delete;
184
185 // Constructs a buffered_file object which doesn't represent any file.
186 buffered_file() noexcept : file_(nullptr) {}
187
188 // Destroys the object closing the file it represents if any.
189 FMT_API ~buffered_file() noexcept;
190
191 public:
192 buffered_file(buffered_file&& other) noexcept : file_(other.file_) {
193 other.file_ = nullptr;
194 }
195
196 auto operator=(buffered_file&& other) -> buffered_file& {
197 close();
198 file_ = other.file_;
199 other.file_ = nullptr;
200 return *this;
201 }
202
203 // Opens a file.
204 FMT_API buffered_file(cstring_view filename, cstring_view mode);
205
206 // Closes the file.
207 FMT_API void close();
208
209 // Returns the pointer to a FILE object representing this file.
210 auto get() const noexcept -> FILE* { return file_; }
211
212 FMT_API auto descriptor() const -> int;
213
214 template <typename... T>
215 inline void print(string_view fmt, const T&... args) {
216 const auto& vargs = fmt::make_format_args(args...);
217 detail::is_locking<T...>() ? fmt::vprint_buffered(file_, fmt, vargs)
218 : fmt::vprint(file_, fmt, vargs);
219 }
220};
221
222#if FMT_USE_FCNTL
223
224// A file. Closed file is represented by a file object with descriptor -1.
225// Methods that are not declared with noexcept may throw
226// fmt::system_error in case of failure. Note that some errors such as
227// closing the file multiple times will cause a crash on Windows rather
228// than an exception. You can get standard behavior by overriding the
229// invalid parameter handler with _set_invalid_parameter_handler.
230class FMT_API file {
231 private:
232 int fd_; // File descriptor.
233
234 // Constructs a file object with a given descriptor.
235 explicit file(int fd) : fd_(fd) {}
236
237 friend struct pipe;
238
239 public:
240 // Possible values for the oflag argument to the constructor.
241 enum {
242 RDONLY = FMT_POSIX(O_RDONLY), // Open for reading only.
243 WRONLY = FMT_POSIX(O_WRONLY), // Open for writing only.
244 RDWR = FMT_POSIX(O_RDWR), // Open for reading and writing.
245 CREATE = FMT_POSIX(O_CREAT), // Create if the file doesn't exist.
246 APPEND = FMT_POSIX(O_APPEND), // Open in append mode.
247 TRUNC = FMT_POSIX(O_TRUNC) // Truncate the content of the file.
248 };
249
250 // Constructs a file object which doesn't represent any file.
251 file() noexcept : fd_(-1) {}
252
253 // Opens a file and constructs a file object representing this file.
254 file(cstring_view path, int oflag);
255
256 public:
257 file(const file&) = delete;
258 void operator=(const file&) = delete;
259
260 file(file&& other) noexcept : fd_(other.fd_) { other.fd_ = -1; }
261
262 // Move assignment is not noexcept because close may throw.
263 auto operator=(file&& other) -> file& {
264 close();
265 fd_ = other.fd_;
266 other.fd_ = -1;
267 return *this;
268 }
269
270 // Destroys the object closing the file it represents if any.
271 ~file() noexcept;
272
273 // Returns the file descriptor.
274 auto descriptor() const noexcept -> int { return fd_; }
275
276 // Closes the file.
277 void close();
278
279 // Returns the file size. The size has signed type for consistency with
280 // stat::st_size.
281 auto size() const -> long long;
282
283 // Attempts to read count bytes from the file into the specified buffer.
284 auto read(void* buffer, size_t count) -> size_t;
285
286 // Attempts to write count bytes from the specified buffer to the file.
287 auto write(const void* buffer, size_t count) -> size_t;
288
289 // Duplicates a file descriptor with the dup function and returns
290 // the duplicate as a file object.
291 static auto dup(int fd) -> file;
292
293 // Makes fd be the copy of this file descriptor, closing fd first if
294 // necessary.
295 void dup2(int fd);
296
297 // Makes fd be the copy of this file descriptor, closing fd first if
298 // necessary.
299 void dup2(int fd, std::error_code& ec) noexcept;
300
301 // Creates a buffered_file object associated with this file and detaches
302 // this file object from the file.
303 auto fdopen(const char* mode) -> buffered_file;
304
305# if defined(_WIN32) && !defined(__MINGW32__)
306 // Opens a file and constructs a file object representing this file by
307 // wcstring_view filename. Windows only.
308 static file open_windows_file(wcstring_view path, int oflag);
309# endif
310};
311
312struct FMT_API pipe {
313 file read_end;
314 file write_end;
315
316 // Creates a pipe setting up read_end and write_end file objects for reading
317 // and writing respectively.
318 pipe();
319};
320
321// Returns the memory page size.
322auto getpagesize() -> long;
323
324namespace detail {
325
326struct buffer_size {
327 buffer_size() = default;
328 size_t value = 0;
329 auto operator=(size_t val) const -> buffer_size {
330 auto bs = buffer_size();
331 bs.value = val;
332 return bs;
333 }
334};
335
336struct ostream_params {
337 int oflag = file::WRONLY | file::CREATE | file::TRUNC;
338 size_t buffer_size = BUFSIZ > 32768 ? BUFSIZ : 32768;
339
340 ostream_params() {}
341
342 template <typename... T>
343 ostream_params(T... params, int new_oflag) : ostream_params(params...) {
344 oflag = new_oflag;
345 }
346
347 template <typename... T>
348 ostream_params(T... params, detail::buffer_size bs)
349 : ostream_params(params...) {
350 this->buffer_size = bs.value;
351 }
352
353// Intel has a bug that results in failure to deduce a constructor
354// for empty parameter packs.
355# if defined(__INTEL_COMPILER) && __INTEL_COMPILER < 2000
356 ostream_params(int new_oflag) : oflag(new_oflag) {}
357 ostream_params(detail::buffer_size bs) : buffer_size(bs.value) {}
358# endif
359};
360
361class file_buffer final : public buffer<char> {
362 private:
363 file file_;
364
365 FMT_API static void grow(buffer<char>& buf, size_t);
366
367 public:
368 FMT_API file_buffer(cstring_view path, const ostream_params& params);
369 FMT_API file_buffer(file_buffer&& other) noexcept;
370 FMT_API ~file_buffer();
371
372 void flush() {
373 if (size() == 0) return;
374 file_.write(data(), size() * sizeof(data()[0]));
375 clear();
376 }
377
378 void close() {
379 flush();
380 file_.close();
381 }
382};
383
384} // namespace detail
385
386constexpr auto buffer_size = detail::buffer_size();
387
390class FMT_API ostream {
391 private:
392 FMT_MSC_WARNING(suppress : 4251)
393 detail::file_buffer buffer_;
394
395 ostream(cstring_view path, const detail::ostream_params& params)
396 : buffer_(path, params) {}
397
398 public:
399 ostream(ostream&& other) : buffer_(std::move(other.buffer_)) {}
400
401 ~ostream();
402
403 void flush() { buffer_.flush(); }
404
405 template <typename... T>
406 friend auto output_file(cstring_view path, T... params) -> ostream;
407
408 void close() { buffer_.close(); }
409
412 template <typename... T> void print(format_string<T...> fmt, T&&... args) {
413 vformat_to(appender(buffer_), fmt, fmt::make_format_args(args...));
414 }
415};
416
430template <typename... T>
431inline auto output_file(cstring_view path, T... params) -> ostream {
432 return {path, detail::ostream_params(params...)};
433}
434#endif // FMT_USE_FCNTL
435
436FMT_END_EXPORT
437FMT_END_NAMESPACE
438
439#endif // FMT_OS_H_
Definition os.h:95
basic_cstring_view(const std::basic_string< Char > &s)
Constructs a string reference from an std::string object.
Definition os.h:104
basic_cstring_view(const Char *s)
Constructs a string reference object from a C string.
Definition os.h:101
auto c_str() const -> const char *
Definition os.h:107
Definition base.h:852