libcryfs/vendor/spdlog/spdlog/fmt/bundled/posix.h

312 lines
8.5 KiB
C
Raw Normal View History

2019-06-02 06:05:26 +02:00
// A C++ interface to POSIX functions.
//
// Copyright (c) 2012 - 2016, Victor Zverovich
// All rights reserved.
//
// For the license information refer to format.h.
2017-07-07 16:26:18 +02:00
#ifndef FMT_POSIX_H_
#define FMT_POSIX_H_
#if defined(__MINGW32__) || defined(__CYGWIN__)
// Workaround MinGW bug https://sourceforge.net/p/mingw/bugs/2024/.
2019-10-13 18:08:37 +02:00
# undef __STRICT_ANSI__
2017-07-07 16:26:18 +02:00
#endif
#include <errno.h>
#include <fcntl.h> // for O_RDONLY
#include <locale.h> // for locale_t
#include <stdio.h>
#include <stdlib.h> // for strtod_l
#include <cstddef>
#if defined __APPLE__ || defined(__FreeBSD__)
2019-10-13 18:08:37 +02:00
# include <xlocale.h> // for LC_NUMERIC_MASK on OS X
2017-07-07 16:26:18 +02:00
#endif
#include "format.h"
#ifndef FMT_POSIX
2019-10-13 18:08:37 +02:00
# if defined(_WIN32) && !defined(__MINGW32__)
2017-07-07 16:26:18 +02:00
// Fix warnings about deprecated symbols.
2019-10-13 18:08:37 +02:00
# define FMT_POSIX(call) _##call
# else
# define FMT_POSIX(call) call
# endif
2017-07-07 16:26:18 +02:00
#endif
// Calls to system functions are wrapped in FMT_SYSTEM for testability.
#ifdef FMT_SYSTEM
2019-10-13 18:08:37 +02:00
# define FMT_POSIX_CALL(call) FMT_SYSTEM(call)
2017-07-07 16:26:18 +02:00
#else
2019-10-13 18:08:37 +02:00
# define FMT_SYSTEM(call) call
# ifdef _WIN32
2017-07-07 16:26:18 +02:00
// Fix warnings about deprecated symbols.
2019-10-13 18:08:37 +02:00
# define FMT_POSIX_CALL(call) ::_##call
# else
# define FMT_POSIX_CALL(call) ::call
# endif
2017-07-07 16:26:18 +02:00
#endif
// Retries the expression while it evaluates to error_result and errno
// equals to EINTR.
#ifndef _WIN32
2019-10-13 18:08:37 +02:00
# define FMT_RETRY_VAL(result, expression, error_result) \
do { \
result = (expression); \
} while (result == error_result && errno == EINTR)
2017-07-07 16:26:18 +02:00
#else
2019-10-13 18:08:37 +02:00
# define FMT_RETRY_VAL(result, expression, error_result) result = (expression)
2017-07-07 16:26:18 +02:00
#endif
#define FMT_RETRY(result, expression) FMT_RETRY_VAL(result, expression, -1)
2019-06-02 06:05:26 +02:00
FMT_BEGIN_NAMESPACE
/**
\rst
A reference to a null-terminated string. It can be constructed from a C
string or ``std::string``.
2019-10-13 18:08:37 +02:00
You can use one of the following type aliases for common character types:
2019-06-02 06:05:26 +02:00
+---------------+-----------------------------+
| Type | Definition |
+===============+=============================+
| cstring_view | basic_cstring_view<char> |
+---------------+-----------------------------+
| wcstring_view | basic_cstring_view<wchar_t> |
+---------------+-----------------------------+
This class is most useful as a parameter type to allow passing
different types of strings to a function, for example::
template <typename... Args>
std::string format(cstring_view format_str, const Args & ... args);
format("{}", 42);
format(std::string("{}"), 42);
\endrst
*/
2019-10-13 18:08:37 +02:00
template <typename Char> class basic_cstring_view {
2019-06-02 06:05:26 +02:00
private:
2019-10-13 18:08:37 +02:00
const Char* data_;
2019-06-02 06:05:26 +02:00
public:
/** Constructs a string reference object from a C string. */
2019-10-13 18:08:37 +02:00
basic_cstring_view(const Char* s) : data_(s) {}
2019-06-02 06:05:26 +02:00
/**
\rst
Constructs a string reference from an ``std::string`` object.
\endrst
*/
2019-10-13 18:08:37 +02:00
basic_cstring_view(const std::basic_string<Char>& s) : data_(s.c_str()) {}
2019-06-02 06:05:26 +02:00
/** Returns the pointer to a C string. */
2019-10-13 18:08:37 +02:00
const Char* c_str() const { return data_; }
2019-06-02 06:05:26 +02:00
};
2019-10-13 18:08:37 +02:00
using cstring_view = basic_cstring_view<char>;
using wcstring_view = basic_cstring_view<wchar_t>;
2017-07-07 16:26:18 +02:00
// An error code.
2019-06-02 06:05:26 +02:00
class error_code {
private:
int value_;
public:
explicit error_code(int value = 0) FMT_NOEXCEPT : value_(value) {}
int get() const FMT_NOEXCEPT { return value_; }
2017-07-07 16:26:18 +02:00
};
// A buffered file.
2019-06-02 06:05:26 +02:00
class buffered_file {
private:
2019-10-13 18:08:37 +02:00
FILE* file_;
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
friend class file;
2019-10-13 18:08:37 +02:00
explicit buffered_file(FILE* f) : file_(f) {}
2019-06-02 06:05:26 +02:00
public:
// Constructs a buffered_file object which doesn't represent any file.
2019-10-13 18:08:37 +02:00
buffered_file() FMT_NOEXCEPT : file_(nullptr) {}
2019-06-02 06:05:26 +02:00
// Destroys the object closing the file it represents if any.
FMT_API ~buffered_file() FMT_NOEXCEPT;
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
private:
2019-10-13 18:08:37 +02:00
buffered_file(const buffered_file&) = delete;
void operator=(const buffered_file&) = delete;
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
public:
2019-10-13 18:08:37 +02:00
buffered_file(buffered_file&& other) FMT_NOEXCEPT : file_(other.file_) {
other.file_ = nullptr;
2019-06-02 06:05:26 +02:00
}
2017-07-07 16:26:18 +02:00
2019-10-13 18:08:37 +02:00
buffered_file& operator=(buffered_file&& other) {
2019-06-02 06:05:26 +02:00
close();
file_ = other.file_;
2019-10-13 18:08:37 +02:00
other.file_ = nullptr;
2019-06-02 06:05:26 +02:00
return *this;
}
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
// Opens a file.
FMT_API buffered_file(cstring_view filename, cstring_view mode);
// Closes the file.
FMT_API void close();
// Returns the pointer to a FILE object representing this file.
2019-10-13 18:08:37 +02:00
FILE* get() const FMT_NOEXCEPT { return file_; }
2019-06-02 06:05:26 +02:00
// We place parentheses around fileno to workaround a bug in some versions
// of MinGW that define fileno as a macro.
2019-10-13 18:08:37 +02:00
FMT_API int(fileno)() const;
2019-06-02 06:05:26 +02:00
void vprint(string_view format_str, format_args args) {
fmt::vprint(file_, format_str, args);
}
template <typename... Args>
2019-10-13 18:08:37 +02:00
inline void print(string_view format_str, const Args&... args) {
2019-06-02 06:05:26 +02:00
vprint(format_str, make_format_args(args...));
}
2017-07-07 16:26:18 +02:00
};
2019-06-02 06:05:26 +02:00
// A file. Closed file is represented by a file object with descriptor -1.
2017-07-07 16:26:18 +02:00
// Methods that are not declared with FMT_NOEXCEPT may throw
2019-06-02 06:05:26 +02:00
// fmt::system_error in case of failure. Note that some errors such as
2017-07-07 16:26:18 +02:00
// closing the file multiple times will cause a crash on Windows rather
// than an exception. You can get standard behavior by overriding the
// invalid parameter handler with _set_invalid_parameter_handler.
2019-06-02 06:05:26 +02:00
class file {
private:
int fd_; // File descriptor.
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
// Constructs a file object with a given descriptor.
explicit file(int fd) : fd_(fd) {}
public:
// Possible values for the oflag argument to the constructor.
enum {
2019-10-13 18:08:37 +02:00
RDONLY = FMT_POSIX(O_RDONLY), // Open for reading only.
WRONLY = FMT_POSIX(O_WRONLY), // Open for writing only.
RDWR = FMT_POSIX(O_RDWR) // Open for reading and writing.
2019-06-02 06:05:26 +02:00
};
// Constructs a file object which doesn't represent any file.
file() FMT_NOEXCEPT : fd_(-1) {}
// Opens a file and constructs a file object representing this file.
FMT_API file(cstring_view path, int oflag);
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
private:
2019-10-13 18:08:37 +02:00
file(const file&) = delete;
void operator=(const file&) = delete;
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
public:
2019-10-13 18:08:37 +02:00
file(file&& other) FMT_NOEXCEPT : fd_(other.fd_) { other.fd_ = -1; }
2017-07-07 16:26:18 +02:00
2019-10-13 18:08:37 +02:00
file& operator=(file&& other) {
2019-06-02 06:05:26 +02:00
close();
fd_ = other.fd_;
other.fd_ = -1;
return *this;
}
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
// Destroys the object closing the file it represents if any.
FMT_API ~file() FMT_NOEXCEPT;
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
// Returns the file descriptor.
int descriptor() const FMT_NOEXCEPT { return fd_; }
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
// Closes the file.
FMT_API void close();
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
// Returns the file size. The size has signed type for consistency with
// stat::st_size.
FMT_API long long size() const;
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
// Attempts to read count bytes from the file into the specified buffer.
2019-10-13 18:08:37 +02:00
FMT_API std::size_t read(void* buffer, std::size_t count);
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
// Attempts to write count bytes from the specified buffer to the file.
2019-10-13 18:08:37 +02:00
FMT_API std::size_t write(const void* buffer, std::size_t count);
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
// Duplicates a file descriptor with the dup function and returns
// the duplicate as a file object.
FMT_API static file dup(int fd);
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
// Makes fd be the copy of this file descriptor, closing fd first if
// necessary.
FMT_API void dup2(int fd);
// Makes fd be the copy of this file descriptor, closing fd first if
// necessary.
2019-10-13 18:08:37 +02:00
FMT_API void dup2(int fd, error_code& ec) FMT_NOEXCEPT;
2019-06-02 06:05:26 +02:00
// Creates a pipe setting up read_end and write_end file objects for reading
// and writing respectively.
2019-10-13 18:08:37 +02:00
FMT_API static void pipe(file& read_end, file& write_end);
2019-06-02 06:05:26 +02:00
// Creates a buffered_file object associated with this file and detaches
// this file object from the file.
2019-10-13 18:08:37 +02:00
FMT_API buffered_file fdopen(const char* mode);
2017-07-07 16:26:18 +02:00
};
// Returns the memory page size.
long getpagesize();
#ifdef FMT_LOCALE
// A "C" numeric locale.
2019-06-02 06:05:26 +02:00
class Locale {
private:
2019-10-13 18:08:37 +02:00
# ifdef _WIN32
using locale_t = _locale_t;
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
enum { LC_NUMERIC_MASK = LC_NUMERIC };
2017-07-07 16:26:18 +02:00
2019-10-13 18:08:37 +02:00
static locale_t newlocale(int category_mask, const char* locale, locale_t) {
2019-06-02 06:05:26 +02:00
return _create_locale(category_mask, locale);
}
2017-07-07 16:26:18 +02:00
2019-10-13 18:08:37 +02:00
static void freelocale(locale_t locale) { _free_locale(locale); }
2017-07-07 16:26:18 +02:00
2019-10-13 18:08:37 +02:00
static double strtod_l(const char* nptr, char** endptr, _locale_t locale) {
2019-06-02 06:05:26 +02:00
return _strtod_l(nptr, endptr, locale);
}
2019-10-13 18:08:37 +02:00
# endif
2017-07-07 16:26:18 +02:00
2019-06-02 06:05:26 +02:00
locale_t locale_;
2019-10-13 18:08:37 +02:00
Locale(const Locale&) = delete;
void operator=(const Locale&) = delete;
2019-06-02 06:05:26 +02:00
public:
2019-10-13 18:08:37 +02:00
using type = locale_t;
2019-06-02 06:05:26 +02:00
2019-10-13 18:08:37 +02:00
Locale() : locale_(newlocale(LC_NUMERIC_MASK, "C", nullptr)) {
if (!locale_) FMT_THROW(system_error(errno, "cannot create locale"));
2019-06-02 06:05:26 +02:00
}
~Locale() { freelocale(locale_); }
2019-10-13 18:08:37 +02:00
type get() const { return locale_; }
2019-06-02 06:05:26 +02:00
// Converts string to floating-point number and advances str past the end
// of the parsed input.
2019-10-13 18:08:37 +02:00
double strtod(const char*& str) const {
char* end = nullptr;
2019-06-02 06:05:26 +02:00
double result = strtod_l(str, &end, locale_);
str = end;
return result;
}
2017-07-07 16:26:18 +02:00
};
#endif // FMT_LOCALE
2019-06-02 06:05:26 +02:00
FMT_END_NAMESPACE
2017-07-07 16:26:18 +02:00
#endif // FMT_POSIX_H_