2018-01-06 17:09:50 +00:00
|
|
|
// Formatting library for C++ - the core API
|
|
|
|
//
|
|
|
|
// Copyright (c) 2012 - present, Victor Zverovich
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// For the license information refer to format.h.
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
#ifndef FMT_CORE_H_
|
|
|
|
#define FMT_CORE_H_
|
|
|
|
|
|
|
|
#include <cassert>
|
2018-07-22 23:54:57 +00:00
|
|
|
#include <cstdio> // std::FILE
|
2018-01-06 17:09:50 +00:00
|
|
|
#include <cstring>
|
2018-01-14 22:15:59 +00:00
|
|
|
#include <iterator>
|
2017-12-06 15:42:42 +00:00
|
|
|
#include <string>
|
|
|
|
#include <type_traits>
|
|
|
|
|
2018-01-22 00:36:22 +00:00
|
|
|
// The fmt library version in the form major * 10000 + minor * 100 + patch.
|
2018-12-28 21:09:31 +00:00
|
|
|
#define FMT_VERSION 50301
|
2018-01-22 00:36:22 +00:00
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
#ifdef __has_feature
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_HAS_FEATURE(x) __has_feature(x)
|
2017-12-06 15:42:42 +00:00
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_HAS_FEATURE(x) 0
|
2017-12-06 15:42:42 +00:00
|
|
|
#endif
|
|
|
|
|
2018-08-30 02:18:08 +00:00
|
|
|
#if defined(__has_include) && !defined(__INTELLISENSE__) && \
|
2018-09-22 23:00:34 +00:00
|
|
|
!(defined(__INTEL_COMPILER) && __INTEL_COMPILER < 1600)
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_HAS_INCLUDE(x) __has_include(x)
|
2018-02-07 15:37:05 +00:00
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_HAS_INCLUDE(x) 0
|
2018-02-07 15:37:05 +00:00
|
|
|
#endif
|
|
|
|
|
2018-06-06 13:57:59 +00:00
|
|
|
#ifdef __has_cpp_attribute
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_HAS_CPP_ATTRIBUTE(x) __has_cpp_attribute(x)
|
2018-06-06 13:57:59 +00:00
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_HAS_CPP_ATTRIBUTE(x) 0
|
2018-06-06 13:57:59 +00:00
|
|
|
#endif
|
|
|
|
|
2018-03-15 13:55:31 +00:00
|
|
|
#if defined(__GNUC__) && !defined(__clang__)
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
|
2018-02-03 03:16:13 +00:00
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_GCC_VERSION 0
|
2018-02-03 03:16:13 +00:00
|
|
|
#endif
|
|
|
|
|
2018-02-11 14:23:43 +00:00
|
|
|
#if __cplusplus >= 201103L || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_HAS_GXX_CXX11 FMT_GCC_VERSION
|
2018-02-03 03:16:13 +00:00
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_HAS_GXX_CXX11 0
|
2017-12-06 15:42:42 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_MSC_VER _MSC_VER
|
2017-12-06 15:42:42 +00:00
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_MSC_VER 0
|
2017-12-06 15:42:42 +00:00
|
|
|
#endif
|
|
|
|
|
2018-07-18 16:14:10 +00:00
|
|
|
// Check if relaxed C++14 constexpr is supported.
|
2018-03-16 16:02:19 +00:00
|
|
|
// GCC doesn't allow throw in constexpr until version 6 (bug 67371).
|
2018-02-04 16:52:43 +00:00
|
|
|
#ifndef FMT_USE_CONSTEXPR
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_USE_CONSTEXPR \
|
|
|
|
(FMT_HAS_FEATURE(cxx_relaxed_constexpr) || FMT_MSC_VER >= 1910 || \
|
|
|
|
(FMT_GCC_VERSION >= 600 && __cplusplus >= 201402L))
|
2018-02-04 16:52:43 +00:00
|
|
|
#endif
|
|
|
|
#if FMT_USE_CONSTEXPR
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_CONSTEXPR constexpr
|
|
|
|
# define FMT_CONSTEXPR_DECL constexpr
|
2018-02-04 16:52:43 +00:00
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_CONSTEXPR inline
|
|
|
|
# define FMT_CONSTEXPR_DECL
|
2018-02-03 14:14:10 +00:00
|
|
|
#endif
|
|
|
|
|
2018-07-18 16:14:10 +00:00
|
|
|
#ifndef FMT_USE_CONSTEXPR11
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_USE_CONSTEXPR11 \
|
2018-09-22 23:00:34 +00:00
|
|
|
(FMT_USE_CONSTEXPR || FMT_GCC_VERSION >= 406 || FMT_MSC_VER >= 1900)
|
2018-07-18 16:14:10 +00:00
|
|
|
#endif
|
|
|
|
#if FMT_USE_CONSTEXPR11
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_CONSTEXPR11 constexpr
|
2018-07-18 16:14:10 +00:00
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_CONSTEXPR11
|
2018-07-18 16:14:10 +00:00
|
|
|
#endif
|
|
|
|
|
2018-01-28 01:15:14 +00:00
|
|
|
#ifndef FMT_OVERRIDE
|
2019-01-13 02:27:38 +00:00
|
|
|
# if FMT_HAS_FEATURE(cxx_override) || \
|
|
|
|
(FMT_GCC_VERSION >= 408 && FMT_HAS_GXX_CXX11) || FMT_MSC_VER >= 1900
|
|
|
|
# define FMT_OVERRIDE override
|
|
|
|
# else
|
|
|
|
# define FMT_OVERRIDE
|
|
|
|
# endif
|
2018-01-28 01:15:14 +00:00
|
|
|
#endif
|
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
// Check if exceptions are disabled.
|
2018-12-03 13:54:44 +00:00
|
|
|
#ifndef FMT_EXCEPTIONS
|
2019-01-13 02:27:38 +00:00
|
|
|
# if (defined(__GNUC__) && !defined(__EXCEPTIONS)) || \
|
|
|
|
FMT_MSC_VER && !_HAS_EXCEPTIONS
|
|
|
|
# define FMT_EXCEPTIONS 0
|
|
|
|
# else
|
|
|
|
# define FMT_EXCEPTIONS 1
|
|
|
|
# endif
|
2018-12-03 13:54:44 +00:00
|
|
|
#endif
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
// Define FMT_USE_NOEXCEPT to make fmt use noexcept (C++11 feature).
|
|
|
|
#ifndef FMT_USE_NOEXCEPT
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_USE_NOEXCEPT 0
|
2017-12-06 15:42:42 +00:00
|
|
|
#endif
|
|
|
|
|
2018-01-21 01:54:06 +00:00
|
|
|
#if FMT_USE_NOEXCEPT || FMT_HAS_FEATURE(cxx_noexcept) || \
|
2018-07-07 19:20:10 +00:00
|
|
|
(FMT_GCC_VERSION >= 408 && FMT_HAS_GXX_CXX11) || FMT_MSC_VER >= 1900
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_DETECTED_NOEXCEPT noexcept
|
|
|
|
# define FMT_HAS_CXX11_NOEXCEPT 1
|
2018-01-21 01:54:06 +00:00
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_DETECTED_NOEXCEPT throw()
|
|
|
|
# define FMT_HAS_CXX11_NOEXCEPT 0
|
2018-01-21 01:54:06 +00:00
|
|
|
#endif
|
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
#ifndef FMT_NOEXCEPT
|
2019-01-13 02:27:38 +00:00
|
|
|
# if FMT_EXCEPTIONS || FMT_HAS_CXX11_NOEXCEPT
|
|
|
|
# define FMT_NOEXCEPT FMT_DETECTED_NOEXCEPT
|
|
|
|
# else
|
|
|
|
# define FMT_NOEXCEPT
|
|
|
|
# endif
|
2017-12-06 15:42:42 +00:00
|
|
|
#endif
|
|
|
|
|
2019-04-11 16:41:38 +00:00
|
|
|
// [[noreturn]] is disabled on MSVC because of bogus unreachable code warnings.
|
|
|
|
#if FMT_EXCEPTIONS && FMT_HAS_CPP_ATTRIBUTE(noreturn) && !FMT_MSC_VER
|
2019-04-08 11:52:20 +00:00
|
|
|
# define FMT_NORETURN [[noreturn]]
|
|
|
|
#else
|
|
|
|
# define FMT_NORETURN
|
|
|
|
#endif
|
|
|
|
|
2019-01-29 21:14:32 +00:00
|
|
|
#ifndef FMT_DEPRECATED
|
|
|
|
# if (FMT_HAS_CPP_ATTRIBUTE(deprecated) && __cplusplus >= 201402L) || \
|
|
|
|
FMT_MSC_VER >= 1900
|
|
|
|
# define FMT_DEPRECATED [[deprecated]]
|
|
|
|
# else
|
|
|
|
# if defined(__GNUC__) || defined(__clang__)
|
|
|
|
# define FMT_DEPRECATED __attribute__((deprecated))
|
|
|
|
# elif FMT_MSC_VER
|
|
|
|
# define FMT_DEPRECATED __declspec(deprecated)
|
|
|
|
# else
|
2019-02-10 16:42:53 +00:00
|
|
|
# define FMT_DEPRECATED /* deprecated */
|
2019-01-29 21:14:32 +00:00
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2018-05-12 19:57:16 +00:00
|
|
|
#ifndef FMT_BEGIN_NAMESPACE
|
2019-01-13 02:27:38 +00:00
|
|
|
# if FMT_HAS_FEATURE(cxx_inline_namespaces) || FMT_GCC_VERSION >= 404 || \
|
|
|
|
FMT_MSC_VER >= 1900
|
|
|
|
# define FMT_INLINE_NAMESPACE inline namespace
|
|
|
|
# define FMT_END_NAMESPACE \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
# else
|
|
|
|
# define FMT_INLINE_NAMESPACE namespace
|
|
|
|
# define FMT_END_NAMESPACE \
|
|
|
|
} \
|
|
|
|
using namespace v5; \
|
|
|
|
}
|
|
|
|
# endif
|
2019-01-13 16:13:38 +00:00
|
|
|
# define FMT_BEGIN_NAMESPACE \
|
|
|
|
namespace fmt { \
|
|
|
|
FMT_INLINE_NAMESPACE v5 {
|
2018-05-12 15:33:51 +00:00
|
|
|
#endif
|
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
#if !defined(FMT_HEADER_ONLY) && defined(_WIN32)
|
2019-01-13 02:27:38 +00:00
|
|
|
# ifdef FMT_EXPORT
|
|
|
|
# define FMT_API __declspec(dllexport)
|
|
|
|
# elif defined(FMT_SHARED)
|
|
|
|
# define FMT_API __declspec(dllimport)
|
2019-05-02 14:49:01 +00:00
|
|
|
# define FMT_EXTERN_TEMPLATE_API FMT_API
|
2019-01-13 02:27:38 +00:00
|
|
|
# endif
|
2017-12-06 15:42:42 +00:00
|
|
|
#endif
|
|
|
|
#ifndef FMT_API
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_API
|
2017-12-06 15:42:42 +00:00
|
|
|
#endif
|
2019-05-02 14:49:01 +00:00
|
|
|
#ifndef FMT_EXTERN_TEMPLATE_API
|
|
|
|
# define FMT_EXTERN_TEMPLATE_API
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FMT_HEADER_ONLY
|
|
|
|
# define FMT_EXTERN extern
|
|
|
|
#else
|
|
|
|
# define FMT_EXTERN
|
|
|
|
#endif
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
#ifndef FMT_ASSERT
|
2019-01-13 02:27:38 +00:00
|
|
|
# define FMT_ASSERT(condition, message) assert((condition) && message)
|
2017-12-06 15:42:42 +00:00
|
|
|
#endif
|
|
|
|
|
2018-03-26 17:00:41 +00:00
|
|
|
// libc++ supports string_view in pre-c++17.
|
2019-01-13 02:27:38 +00:00
|
|
|
#if (FMT_HAS_INCLUDE(<string_view>) && \
|
|
|
|
(__cplusplus > 201402L || defined(_LIBCPP_VERSION))) || \
|
2018-04-30 08:07:43 +00:00
|
|
|
(defined(_MSVC_LANG) && _MSVC_LANG > 201402L && _MSC_VER >= 1910)
|
2019-01-13 02:27:38 +00:00
|
|
|
# include <string_view>
|
2019-05-31 03:50:07 +00:00
|
|
|
# define FMT_USE_STRING_VIEW
|
2019-05-30 18:46:31 +00:00
|
|
|
#elif FMT_HAS_INCLUDE("experimental/string_view") && __cplusplus >= 201402L
|
2019-01-13 02:27:38 +00:00
|
|
|
# include <experimental/string_view>
|
2019-05-31 03:50:07 +00:00
|
|
|
# define FMT_USE_EXPERIMENTAL_STRING_VIEW
|
2018-02-24 18:19:30 +00:00
|
|
|
#endif
|
|
|
|
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_BEGIN_NAMESPACE
|
2019-06-01 16:35:02 +00:00
|
|
|
|
|
|
|
// An implementation of enable_if_t for pre-C++14 systems.
|
|
|
|
template <bool B, class T = void>
|
|
|
|
using enable_if_t = typename std::enable_if<B, T>::type;
|
|
|
|
|
2019-06-03 15:34:27 +00:00
|
|
|
// enable_if helpers to be used in template parameters which results in much
|
2019-06-02 23:04:17 +00:00
|
|
|
// shorter symbols: https://godbolt.org/z/sWw4vP.
|
2019-06-03 15:34:27 +00:00
|
|
|
// Also include fix for VS2019 compilation issue (see #1140 and #1186).
|
|
|
|
#define FMT_ENABLE_IF(...) enable_if_t<(__VA_ARGS__), int> = 0
|
2019-06-02 23:04:17 +00:00
|
|
|
|
2018-03-01 11:45:25 +00:00
|
|
|
namespace internal {
|
2018-06-27 12:31:20 +00:00
|
|
|
|
2019-05-31 03:50:07 +00:00
|
|
|
#if defined(FMT_USE_STRING_VIEW)
|
|
|
|
template <typename Char> using std_string_view = std::basic_string_view<Char>;
|
|
|
|
#elif defined(FMT_USE_EXPERIMENTAL_STRING_VIEW)
|
|
|
|
template <typename Char>
|
|
|
|
using std_string_view = std::experimental::basic_string_view<Char>;
|
|
|
|
#else
|
|
|
|
template <typename T> struct std_string_view {};
|
|
|
|
#endif
|
|
|
|
|
2019-02-03 17:59:48 +00:00
|
|
|
#if (__cplusplus >= 201703L || \
|
|
|
|
(defined(_MSVC_LANG) && _MSVC_LANG >= 201703L)) && \
|
|
|
|
__cpp_lib_is_invocable >= 201703L
|
|
|
|
template <typename F, typename... Args>
|
2019-05-31 15:54:32 +00:00
|
|
|
using invoke_result_t = std::invoke_result_t<F, Args...>;
|
2019-02-03 17:59:48 +00:00
|
|
|
#else
|
2019-05-31 15:54:32 +00:00
|
|
|
// An implementation of invoke_result for pre-C++17.
|
2019-02-03 17:59:48 +00:00
|
|
|
template <typename F, typename... Args>
|
2019-05-31 15:54:32 +00:00
|
|
|
using invoke_result_t = typename std::result_of<F(Args...)>::type;
|
2019-02-03 17:59:48 +00:00
|
|
|
#endif
|
2018-07-22 23:54:57 +00:00
|
|
|
|
2018-06-27 12:31:20 +00:00
|
|
|
// Casts nonnegative integer to unsigned.
|
|
|
|
template <typename Int>
|
|
|
|
FMT_CONSTEXPR typename std::make_unsigned<Int>::type to_unsigned(Int value) {
|
|
|
|
FMT_ASSERT(value >= 0, "negative value");
|
|
|
|
return static_cast<typename std::make_unsigned<Int>::type>(value);
|
|
|
|
}
|
|
|
|
|
2018-10-05 01:06:21 +00:00
|
|
|
/** A contiguous memory buffer with an optional growing ability. */
|
2019-04-07 17:05:49 +00:00
|
|
|
template <typename T> class buffer {
|
2018-10-05 01:06:21 +00:00
|
|
|
private:
|
2019-04-07 17:05:49 +00:00
|
|
|
buffer(const buffer&) = delete;
|
|
|
|
void operator=(const buffer&) = delete;
|
2018-10-05 01:06:21 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
T* ptr_;
|
2018-10-05 01:06:21 +00:00
|
|
|
std::size_t size_;
|
|
|
|
std::size_t capacity_;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Don't initialize ptr_ since it is not accessed to save a few cycles.
|
2019-04-07 17:05:49 +00:00
|
|
|
buffer(std::size_t sz) FMT_NOEXCEPT : size_(sz), capacity_(sz) {}
|
2018-10-05 01:06:21 +00:00
|
|
|
|
2019-05-30 14:01:31 +00:00
|
|
|
buffer(T* p = nullptr, std::size_t sz = 0, std::size_t cap = 0) FMT_NOEXCEPT
|
2019-04-07 17:05:49 +00:00
|
|
|
: ptr_(p),
|
|
|
|
size_(sz),
|
|
|
|
capacity_(cap) {}
|
2018-10-05 01:06:21 +00:00
|
|
|
|
|
|
|
/** Sets the buffer data and capacity. */
|
2019-01-13 02:27:38 +00:00
|
|
|
void set(T* buf_data, std::size_t buf_capacity) FMT_NOEXCEPT {
|
2018-10-05 01:06:21 +00:00
|
|
|
ptr_ = buf_data;
|
|
|
|
capacity_ = buf_capacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Increases the buffer capacity to hold at least *capacity* elements. */
|
|
|
|
virtual void grow(std::size_t capacity) = 0;
|
|
|
|
|
|
|
|
public:
|
2019-06-02 23:04:17 +00:00
|
|
|
using value_type = T;
|
|
|
|
using const_reference = const T&;
|
2018-10-05 01:06:21 +00:00
|
|
|
|
2019-04-07 17:05:49 +00:00
|
|
|
virtual ~buffer() {}
|
2018-10-05 01:06:21 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
T* begin() FMT_NOEXCEPT { return ptr_; }
|
|
|
|
T* end() FMT_NOEXCEPT { return ptr_ + size_; }
|
2018-10-05 01:06:21 +00:00
|
|
|
|
|
|
|
/** Returns the size of this buffer. */
|
|
|
|
std::size_t size() const FMT_NOEXCEPT { return size_; }
|
|
|
|
|
|
|
|
/** Returns the capacity of this buffer. */
|
|
|
|
std::size_t capacity() const FMT_NOEXCEPT { return capacity_; }
|
|
|
|
|
|
|
|
/** Returns a pointer to the buffer data. */
|
2019-01-13 02:27:38 +00:00
|
|
|
T* data() FMT_NOEXCEPT { return ptr_; }
|
2018-10-05 01:06:21 +00:00
|
|
|
|
|
|
|
/** Returns a pointer to the buffer data. */
|
2019-01-13 02:27:38 +00:00
|
|
|
const T* data() const FMT_NOEXCEPT { return ptr_; }
|
2018-10-05 01:06:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Resizes the buffer. If T is a POD type new elements may not be initialized.
|
|
|
|
*/
|
|
|
|
void resize(std::size_t new_size) {
|
|
|
|
reserve(new_size);
|
|
|
|
size_ = new_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Clears this buffer. */
|
|
|
|
void clear() { size_ = 0; }
|
|
|
|
|
|
|
|
/** Reserves space to store at least *capacity* elements. */
|
|
|
|
void reserve(std::size_t new_capacity) {
|
2019-01-13 02:27:38 +00:00
|
|
|
if (new_capacity > capacity_) grow(new_capacity);
|
2018-10-05 01:06:21 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
void push_back(const T& value) {
|
2018-10-05 01:06:21 +00:00
|
|
|
reserve(size_ + 1);
|
|
|
|
ptr_[size_++] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Appends data to the end of the buffer. */
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename U> void append(const U* begin, const U* end);
|
2018-10-05 01:06:21 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
T& operator[](std::size_t index) { return ptr_[index]; }
|
|
|
|
const T& operator[](std::size_t index) const { return ptr_[index]; }
|
2018-10-05 01:06:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// A container-backed buffer.
|
|
|
|
template <typename Container>
|
2019-04-07 17:05:49 +00:00
|
|
|
class container_buffer : public buffer<typename Container::value_type> {
|
2018-10-05 01:06:21 +00:00
|
|
|
private:
|
2019-01-13 02:27:38 +00:00
|
|
|
Container& container_;
|
2018-10-05 01:06:21 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void grow(std::size_t capacity) FMT_OVERRIDE {
|
|
|
|
container_.resize(capacity);
|
|
|
|
this->set(&container_[0], capacity);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2019-01-13 02:27:38 +00:00
|
|
|
explicit container_buffer(Container& c)
|
2019-04-07 17:05:49 +00:00
|
|
|
: buffer<typename Container::value_type>(c.size()), container_(c) {}
|
2018-10-05 01:06:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Extracts a reference to the container from back_insert_iterator.
|
|
|
|
template <typename Container>
|
2019-01-13 02:27:38 +00:00
|
|
|
inline Container& get_container(std::back_insert_iterator<Container> it) {
|
2019-06-02 23:04:17 +00:00
|
|
|
using bi_iterator = std::back_insert_iterator<Container>;
|
2019-01-13 02:27:38 +00:00
|
|
|
struct accessor : bi_iterator {
|
2018-10-05 01:06:21 +00:00
|
|
|
accessor(bi_iterator iter) : bi_iterator(iter) {}
|
|
|
|
using bi_iterator::container;
|
|
|
|
};
|
|
|
|
return *accessor(it).container;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct error_handler {
|
|
|
|
FMT_CONSTEXPR error_handler() {}
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_CONSTEXPR error_handler(const error_handler&) {}
|
2018-10-05 01:06:21 +00:00
|
|
|
|
|
|
|
// This function is intentionally not constexpr to give a compile-time error.
|
2019-04-08 11:52:20 +00:00
|
|
|
FMT_API FMT_NORETURN void on_error(const char* message);
|
2018-10-05 01:06:21 +00:00
|
|
|
};
|
2019-01-21 15:11:49 +00:00
|
|
|
} // namespace internal
|
2018-10-28 00:10:19 +00:00
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
/**
|
|
|
|
An implementation of ``std::basic_string_view`` for pre-C++17. It provides a
|
2018-03-04 14:40:43 +00:00
|
|
|
subset of the API. ``fmt::basic_string_view`` is used for format strings even
|
|
|
|
if ``std::string_view`` is available to prevent issues when a library is
|
|
|
|
compiled with a different ``-std`` option than the client code (which is not
|
|
|
|
recommended).
|
2017-12-06 15:42:42 +00:00
|
|
|
*/
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Char> class basic_string_view {
|
2017-12-06 15:42:42 +00:00
|
|
|
private:
|
2019-01-13 02:27:38 +00:00
|
|
|
const Char* data_;
|
2017-12-06 15:42:42 +00:00
|
|
|
size_t size_;
|
|
|
|
|
|
|
|
public:
|
2019-06-02 23:04:17 +00:00
|
|
|
using char_type = Char;
|
|
|
|
using iterator = const Char*;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-05-30 14:01:31 +00:00
|
|
|
FMT_CONSTEXPR basic_string_view() FMT_NOEXCEPT : data_(nullptr), size_(0) {}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
/** Constructs a string reference object from a C string and a size. */
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_CONSTEXPR basic_string_view(const Char* s, size_t count) FMT_NOEXCEPT
|
|
|
|
: data_(s),
|
|
|
|
size_(count) {}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Constructs a string reference object from a C string computing
|
|
|
|
the size with ``std::char_traits<Char>::length``.
|
|
|
|
\endrst
|
|
|
|
*/
|
2019-01-13 02:27:38 +00:00
|
|
|
basic_string_view(const Char* s)
|
|
|
|
: data_(s), size_(std::char_traits<Char>::length(s)) {}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2018-05-16 15:19:26 +00:00
|
|
|
/** Constructs a string reference from a ``std::basic_string`` object. */
|
2018-01-22 02:21:16 +00:00
|
|
|
template <typename Alloc>
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_CONSTEXPR basic_string_view(const std::basic_string<Char, Alloc>& s)
|
|
|
|
FMT_NOEXCEPT : data_(s.data()),
|
|
|
|
size_(s.size()) {}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-05-31 03:50:07 +00:00
|
|
|
template <
|
|
|
|
typename S,
|
|
|
|
FMT_ENABLE_IF(std::is_same<S, internal::std_string_view<Char>>::value)>
|
|
|
|
FMT_CONSTEXPR basic_string_view(S s) FMT_NOEXCEPT : data_(s.data()),
|
|
|
|
size_(s.size()) {}
|
2018-02-24 18:19:30 +00:00
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
/** Returns a pointer to the string data. */
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_CONSTEXPR const Char* data() const { return data_; }
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
/** Returns the string size. */
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR size_t size() const { return size_; }
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR iterator begin() const { return data_; }
|
|
|
|
FMT_CONSTEXPR iterator end() const { return data_ + size_; }
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void remove_prefix(size_t n) {
|
2017-12-06 15:42:42 +00:00
|
|
|
data_ += n;
|
|
|
|
size_ -= n;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lexicographically compare this string reference to other.
|
|
|
|
int compare(basic_string_view other) const {
|
2018-06-10 20:58:10 +00:00
|
|
|
size_t str_size = size_ < other.size_ ? size_ : other.size_;
|
|
|
|
int result = std::char_traits<Char>::compare(data_, other.data_, str_size);
|
2017-12-06 15:42:42 +00:00
|
|
|
if (result == 0)
|
|
|
|
result = size_ == other.size_ ? 0 : (size_ < other.size_ ? -1 : 1);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator==(basic_string_view lhs, basic_string_view rhs) {
|
|
|
|
return lhs.compare(rhs) == 0;
|
|
|
|
}
|
|
|
|
friend bool operator!=(basic_string_view lhs, basic_string_view rhs) {
|
|
|
|
return lhs.compare(rhs) != 0;
|
|
|
|
}
|
|
|
|
friend bool operator<(basic_string_view lhs, basic_string_view rhs) {
|
|
|
|
return lhs.compare(rhs) < 0;
|
|
|
|
}
|
|
|
|
friend bool operator<=(basic_string_view lhs, basic_string_view rhs) {
|
|
|
|
return lhs.compare(rhs) <= 0;
|
|
|
|
}
|
|
|
|
friend bool operator>(basic_string_view lhs, basic_string_view rhs) {
|
|
|
|
return lhs.compare(rhs) > 0;
|
|
|
|
}
|
|
|
|
friend bool operator>=(basic_string_view lhs, basic_string_view rhs) {
|
|
|
|
return lhs.compare(rhs) >= 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-02 23:04:17 +00:00
|
|
|
using string_view = basic_string_view<char>;
|
|
|
|
using wstring_view = basic_string_view<wchar_t>;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-06-03 02:29:49 +00:00
|
|
|
/** Specifies if ``T`` is a character type. Can be specialized by users. */
|
|
|
|
template <typename T> struct is_char : std::is_integral<T> {};
|
|
|
|
|
2018-10-24 23:46:16 +00:00
|
|
|
/**
|
|
|
|
\rst
|
2019-06-03 02:29:49 +00:00
|
|
|
Returns a string view of `s`. In order to add custom string type support to
|
|
|
|
{fmt} provide an overload of `to_string_view` for it in the same namespace as
|
|
|
|
the type for the argument-dependent lookup to work.
|
2018-10-24 23:46:16 +00:00
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
|
|
|
namespace my_ns {
|
2019-06-03 02:29:49 +00:00
|
|
|
inline string_view to_string_view(const my_string& s) {
|
2018-12-24 18:02:41 +00:00
|
|
|
return {s.data(), s.length()};
|
2018-10-24 23:46:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
std::string message = fmt::format(my_string("The answer is {}"), 42);
|
|
|
|
\endrst
|
|
|
|
*/
|
2019-06-03 18:57:08 +00:00
|
|
|
template <typename Char, FMT_ENABLE_IF(is_char<Char>::value)>
|
|
|
|
inline basic_string_view<Char> to_string_view(const Char* s) {
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2018-11-27 10:52:00 +00:00
|
|
|
template <typename Char, typename Traits, typename Allocator>
|
2019-01-13 02:27:38 +00:00
|
|
|
inline basic_string_view<Char> to_string_view(
|
|
|
|
const std::basic_string<Char, Traits, Allocator>& s) {
|
2018-11-27 10:52:00 +00:00
|
|
|
return {s.data(), s.size()};
|
|
|
|
}
|
2018-10-08 18:14:39 +00:00
|
|
|
|
|
|
|
template <typename Char>
|
2019-06-03 02:29:49 +00:00
|
|
|
inline basic_string_view<Char> to_string_view(basic_string_view<Char> s) {
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2019-05-31 03:50:07 +00:00
|
|
|
template <typename Char,
|
|
|
|
FMT_ENABLE_IF(!std::is_empty<internal::std_string_view<Char>>::value)>
|
|
|
|
inline basic_string_view<Char> to_string_view(
|
|
|
|
internal::std_string_view<Char> s) {
|
2019-01-13 02:27:38 +00:00
|
|
|
return s;
|
|
|
|
}
|
2018-10-08 18:14:39 +00:00
|
|
|
|
2018-10-05 01:06:21 +00:00
|
|
|
// A base class for compile-time strings. It is defined in the fmt namespace to
|
|
|
|
// make formatting functions visible via ADL, e.g. format(fmt("{}"), 42).
|
|
|
|
struct compile_string {};
|
|
|
|
|
2018-10-08 18:14:39 +00:00
|
|
|
template <typename S>
|
|
|
|
struct is_compile_string : std::is_base_of<compile_string, S> {};
|
|
|
|
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename S, FMT_ENABLE_IF(is_compile_string<S>::value)>
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_CONSTEXPR basic_string_view<typename S::char_type> to_string_view(
|
|
|
|
const S& s) {
|
|
|
|
return s;
|
|
|
|
}
|
2018-10-08 18:14:39 +00:00
|
|
|
|
2019-02-10 00:15:20 +00:00
|
|
|
// Parsing context consisting of a format string range being parsed and an
|
|
|
|
// argument counter for automatic indexing.
|
|
|
|
template <typename Char, typename ErrorHandler = internal::error_handler>
|
|
|
|
class basic_parse_context : private ErrorHandler {
|
|
|
|
private:
|
|
|
|
basic_string_view<Char> format_str_;
|
|
|
|
int next_arg_id_;
|
|
|
|
|
|
|
|
public:
|
2019-06-02 23:04:17 +00:00
|
|
|
using char_type = Char;
|
|
|
|
using iterator = typename basic_string_view<Char>::iterator;
|
2019-02-10 00:15:20 +00:00
|
|
|
|
|
|
|
explicit FMT_CONSTEXPR basic_parse_context(basic_string_view<Char> format_str,
|
|
|
|
ErrorHandler eh = ErrorHandler())
|
|
|
|
: ErrorHandler(eh), format_str_(format_str), next_arg_id_(0) {}
|
|
|
|
|
|
|
|
// Returns an iterator to the beginning of the format string range being
|
|
|
|
// parsed.
|
|
|
|
FMT_CONSTEXPR iterator begin() const FMT_NOEXCEPT {
|
|
|
|
return format_str_.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns an iterator past the end of the format string range being parsed.
|
|
|
|
FMT_CONSTEXPR iterator end() const FMT_NOEXCEPT { return format_str_.end(); }
|
|
|
|
|
|
|
|
// Advances the begin iterator to ``it``.
|
|
|
|
FMT_CONSTEXPR void advance_to(iterator it) {
|
|
|
|
format_str_.remove_prefix(internal::to_unsigned(it - begin()));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the next argument index.
|
|
|
|
FMT_CONSTEXPR unsigned next_arg_id();
|
|
|
|
|
|
|
|
FMT_CONSTEXPR bool check_arg_id(unsigned) {
|
|
|
|
if (next_arg_id_ > 0) {
|
|
|
|
on_error("cannot switch from automatic to manual argument indexing");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
next_arg_id_ = -1;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
FMT_CONSTEXPR void check_arg_id(basic_string_view<Char>) {}
|
|
|
|
|
|
|
|
FMT_CONSTEXPR void on_error(const char* message) {
|
|
|
|
ErrorHandler::on_error(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
FMT_CONSTEXPR ErrorHandler error_handler() const { return *this; }
|
|
|
|
};
|
|
|
|
|
2019-06-02 23:04:17 +00:00
|
|
|
using format_parse_context = basic_parse_context<char>;
|
|
|
|
using wformat_parse_context = basic_parse_context<wchar_t>;
|
2019-02-10 00:15:20 +00:00
|
|
|
|
2019-06-02 23:04:17 +00:00
|
|
|
using parse_context FMT_DEPRECATED = basic_parse_context<char>;
|
|
|
|
using wparse_context FMT_DEPRECATED = basic_parse_context<wchar_t>;
|
2019-02-10 00:15:20 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context> class basic_format_arg;
|
|
|
|
template <typename Context> class basic_format_args;
|
2018-01-14 20:25:03 +00:00
|
|
|
|
|
|
|
// A formatter for objects of type T.
|
|
|
|
template <typename T, typename Char = char, typename Enable = void>
|
2018-09-19 12:51:01 +00:00
|
|
|
struct formatter {
|
2019-06-02 23:04:17 +00:00
|
|
|
formatter() = delete;
|
2018-09-19 12:51:01 +00:00
|
|
|
};
|
2018-01-14 20:25:03 +00:00
|
|
|
|
2018-08-22 14:40:06 +00:00
|
|
|
template <typename T, typename Char, typename Enable = void>
|
2019-01-13 02:27:38 +00:00
|
|
|
struct convert_to_int
|
|
|
|
: std::integral_constant<bool, !std::is_arithmetic<T>::value &&
|
|
|
|
std::is_convertible<T, int>::value> {};
|
2018-08-22 14:40:06 +00:00
|
|
|
|
2018-01-14 20:25:03 +00:00
|
|
|
namespace internal {
|
|
|
|
|
2019-01-21 15:11:49 +00:00
|
|
|
template <typename T> struct no_formatter_error : std::false_type {};
|
|
|
|
|
|
|
|
template <typename T, typename Char = char, typename Enable = void>
|
|
|
|
struct fallback_formatter {
|
|
|
|
static_assert(
|
|
|
|
no_formatter_error<T>::value,
|
|
|
|
"don't know how to format the type, include fmt/ostream.h if it provides "
|
|
|
|
"an operator<< that should be used");
|
|
|
|
};
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
struct dummy_string_view {
|
|
|
|
typedef void char_type;
|
|
|
|
};
|
2018-10-24 23:46:16 +00:00
|
|
|
dummy_string_view to_string_view(...);
|
2018-10-08 18:14:39 +00:00
|
|
|
using fmt::v5::to_string_view;
|
2018-10-07 16:54:12 +00:00
|
|
|
|
2018-10-24 23:46:16 +00:00
|
|
|
// Specifies whether S is a string type convertible to fmt::basic_string_view.
|
2018-10-05 01:06:21 +00:00
|
|
|
template <typename S>
|
2019-01-13 02:27:38 +00:00
|
|
|
struct is_string
|
|
|
|
: std::integral_constant<
|
2019-05-30 15:34:17 +00:00
|
|
|
bool,
|
|
|
|
!std::is_same<dummy_string_view,
|
|
|
|
decltype(to_string_view(std::declval<S>()))>::value> {};
|
2018-01-14 22:15:59 +00:00
|
|
|
|
2019-06-01 19:32:24 +00:00
|
|
|
template <typename S> struct char_t_impl {
|
2019-05-30 15:34:17 +00:00
|
|
|
typedef decltype(to_string_view(std::declval<S>())) result;
|
2018-10-24 23:46:16 +00:00
|
|
|
typedef typename result::char_type type;
|
|
|
|
};
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Char> struct named_arg_base;
|
2018-01-06 17:09:50 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename T, typename Char> struct named_arg;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
enum type {
|
2019-01-13 02:27:38 +00:00
|
|
|
none_type,
|
|
|
|
named_arg_type,
|
2017-12-06 15:42:42 +00:00
|
|
|
// Integer types should go first,
|
2019-01-13 02:27:38 +00:00
|
|
|
int_type,
|
|
|
|
uint_type,
|
|
|
|
long_long_type,
|
|
|
|
ulong_long_type,
|
|
|
|
bool_type,
|
|
|
|
char_type,
|
2018-02-16 17:20:33 +00:00
|
|
|
last_integer_type = char_type,
|
2017-12-06 15:42:42 +00:00
|
|
|
// followed by floating-point types.
|
2019-01-13 02:27:38 +00:00
|
|
|
double_type,
|
|
|
|
long_double_type,
|
|
|
|
last_numeric_type = long_double_type,
|
|
|
|
cstring_type,
|
|
|
|
string_type,
|
|
|
|
pointer_type,
|
|
|
|
custom_type
|
2017-12-06 15:42:42 +00:00
|
|
|
};
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR bool is_integral(type t) {
|
2018-06-05 06:32:28 +00:00
|
|
|
FMT_ASSERT(t != internal::named_arg_type, "invalid argument type");
|
2018-02-16 17:20:33 +00:00
|
|
|
return t > internal::none_type && t <= internal::last_integer_type;
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR bool is_arithmetic(type t) {
|
2018-06-05 06:32:28 +00:00
|
|
|
FMT_ASSERT(t != internal::named_arg_type, "invalid argument type");
|
2018-02-16 17:20:33 +00:00
|
|
|
return t > internal::none_type && t <= internal::last_numeric_type;
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Char> struct string_value {
|
|
|
|
const Char* value;
|
2017-12-06 15:42:42 +00:00
|
|
|
std::size_t size;
|
|
|
|
};
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context> struct custom_value {
|
|
|
|
const void* value;
|
2019-02-10 00:15:20 +00:00
|
|
|
void (*format)(const void* arg,
|
|
|
|
basic_parse_context<typename Context::char_type>& parse_ctx,
|
|
|
|
Context& ctx);
|
2017-12-06 15:42:42 +00:00
|
|
|
};
|
|
|
|
|
2019-06-02 23:04:17 +00:00
|
|
|
template <typename T, typename Context>
|
|
|
|
using is_formattable =
|
|
|
|
std::is_constructible<typename Context::template formatter_type<T>>;
|
2019-03-22 02:02:19 +00:00
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
// A formatting argument value.
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context> class value {
|
2017-12-06 15:42:42 +00:00
|
|
|
public:
|
2019-06-02 23:04:17 +00:00
|
|
|
using char_type = typename Context::char_type;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
union {
|
|
|
|
int int_value;
|
|
|
|
unsigned uint_value;
|
|
|
|
long long long_long_value;
|
|
|
|
unsigned long long ulong_long_value;
|
|
|
|
double double_value;
|
|
|
|
long double long_double_value;
|
2019-01-13 02:27:38 +00:00
|
|
|
const void* pointer;
|
2017-12-06 15:42:42 +00:00
|
|
|
string_value<char_type> string;
|
|
|
|
string_value<signed char> sstring;
|
|
|
|
string_value<unsigned char> ustring;
|
|
|
|
custom_value<Context> custom;
|
|
|
|
};
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR value(int val = 0) : int_value(val) {}
|
2019-02-10 03:34:42 +00:00
|
|
|
FMT_CONSTEXPR value(unsigned val) : uint_value(val) {}
|
2018-02-03 14:14:10 +00:00
|
|
|
value(long long val) { long_long_value = val; }
|
|
|
|
value(unsigned long long val) { ulong_long_value = val; }
|
|
|
|
value(double val) { double_value = val; }
|
|
|
|
value(long double val) { long_double_value = val; }
|
2019-01-13 02:27:38 +00:00
|
|
|
value(const char_type* val) { string.value = val; }
|
|
|
|
value(const signed char* val) {
|
2018-02-03 14:14:10 +00:00
|
|
|
static_assert(std::is_same<char, char_type>::value,
|
|
|
|
"incompatible string types");
|
|
|
|
sstring.value = val;
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
2019-01-13 02:27:38 +00:00
|
|
|
value(const unsigned char* val) {
|
2018-02-03 14:14:10 +00:00
|
|
|
static_assert(std::is_same<char, char_type>::value,
|
|
|
|
"incompatible string types");
|
|
|
|
ustring.value = val;
|
|
|
|
}
|
|
|
|
value(basic_string_view<char_type> val) {
|
|
|
|
string.value = val.data();
|
|
|
|
string.size = val.size();
|
|
|
|
}
|
2019-01-13 02:27:38 +00:00
|
|
|
value(const void* val) { pointer = val; }
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-01-31 03:39:42 +00:00
|
|
|
template <typename T> explicit value(const T& val) {
|
2018-01-14 15:19:23 +00:00
|
|
|
custom.value = &val;
|
2019-01-21 15:11:49 +00:00
|
|
|
// Get the formatter type through the context to allow different contexts
|
|
|
|
// have different extension points, e.g. `formatter<T>` for `format` and
|
|
|
|
// `printf_formatter<T>` for `printf`.
|
2019-01-31 03:39:42 +00:00
|
|
|
custom.format = &format_custom_arg<
|
|
|
|
T, typename std::conditional<
|
2019-03-22 02:02:19 +00:00
|
|
|
is_formattable<T, Context>::value,
|
2019-06-02 23:04:17 +00:00
|
|
|
typename Context::template formatter_type<T>,
|
2019-01-31 03:39:42 +00:00
|
|
|
internal::fallback_formatter<T, char_type>>::type>;
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
const named_arg_base<char_type>& as_named_arg() {
|
2018-01-06 17:09:50 +00:00
|
|
|
return *static_cast<const named_arg_base<char_type>*>(pointer);
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Formats an argument of a custom type, such as a user-defined class.
|
2019-01-21 15:11:49 +00:00
|
|
|
template <typename T, typename Formatter>
|
2019-02-10 00:15:20 +00:00
|
|
|
static void format_custom_arg(const void* arg,
|
|
|
|
basic_parse_context<char_type>& parse_ctx,
|
|
|
|
Context& ctx) {
|
2019-01-21 15:11:49 +00:00
|
|
|
Formatter f;
|
2017-12-06 15:42:42 +00:00
|
|
|
parse_ctx.advance_to(f.parse(parse_ctx));
|
2018-01-21 22:30:38 +00:00
|
|
|
ctx.advance_to(f.format(*static_cast<const T*>(arg), ctx));
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-09-08 20:09:44 +00:00
|
|
|
// Value initializer used to delay conversion to value and reduce memory churn.
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context, typename T, type TYPE> struct init {
|
2018-09-08 20:09:44 +00:00
|
|
|
T val;
|
2018-02-03 14:14:10 +00:00
|
|
|
static const type type_tag = TYPE;
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_CONSTEXPR init(const T& v) : val(v) {}
|
2018-09-08 20:09:44 +00:00
|
|
|
FMT_CONSTEXPR operator value<Context>() const { return value<Context>(val); }
|
2018-02-03 14:14:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename Context, typename T>
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_CONSTEXPR basic_format_arg<Context> make_arg(const T& value);
|
2018-02-03 14:14:10 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
#define FMT_MAKE_VALUE(TAG, ArgType, ValueType) \
|
|
|
|
template <typename C> \
|
2018-09-08 20:09:44 +00:00
|
|
|
FMT_CONSTEXPR init<C, ValueType, TAG> make_value(ArgType val) { \
|
2019-01-13 02:27:38 +00:00
|
|
|
return static_cast<ValueType>(val); \
|
2018-02-03 14:14:10 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
#define FMT_MAKE_VALUE_SAME(TAG, Type) \
|
|
|
|
template <typename C> \
|
|
|
|
FMT_CONSTEXPR init<C, Type, TAG> make_value(Type val) { \
|
|
|
|
return val; \
|
|
|
|
}
|
2018-06-06 13:57:59 +00:00
|
|
|
|
2018-02-16 17:20:33 +00:00
|
|
|
FMT_MAKE_VALUE(bool_type, bool, int)
|
|
|
|
FMT_MAKE_VALUE(int_type, short, int)
|
|
|
|
FMT_MAKE_VALUE(uint_type, unsigned short, unsigned)
|
2018-06-06 13:57:59 +00:00
|
|
|
FMT_MAKE_VALUE_SAME(int_type, int)
|
|
|
|
FMT_MAKE_VALUE_SAME(uint_type, unsigned)
|
2018-02-03 14:14:10 +00:00
|
|
|
|
|
|
|
// To minimize the number of types we need to deal with, long is translated
|
|
|
|
// either to int or to long long depending on its size.
|
2019-06-02 23:04:17 +00:00
|
|
|
using long_type =
|
|
|
|
std::conditional<sizeof(long) == sizeof(int), int, long long>::type;
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_MAKE_VALUE((sizeof(long) == sizeof(int) ? int_type : long_long_type), long,
|
|
|
|
long_type)
|
2019-06-02 23:04:17 +00:00
|
|
|
using ulong_type = std::conditional<sizeof(unsigned long) == sizeof(unsigned),
|
|
|
|
unsigned, unsigned long long>::type;
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_MAKE_VALUE((sizeof(unsigned long) == sizeof(unsigned) ? uint_type
|
|
|
|
: ulong_long_type),
|
|
|
|
unsigned long, ulong_type)
|
2018-02-03 14:14:10 +00:00
|
|
|
|
2018-06-06 13:57:59 +00:00
|
|
|
FMT_MAKE_VALUE_SAME(long_long_type, long long)
|
|
|
|
FMT_MAKE_VALUE_SAME(ulong_long_type, unsigned long long)
|
2018-02-16 17:20:33 +00:00
|
|
|
FMT_MAKE_VALUE(int_type, signed char, int)
|
|
|
|
FMT_MAKE_VALUE(uint_type, unsigned char, unsigned)
|
2018-10-24 13:34:28 +00:00
|
|
|
|
|
|
|
// This doesn't use FMT_MAKE_VALUE because of ambiguity in gcc 4.4.
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename C, typename Char,
|
|
|
|
FMT_ENABLE_IF(std::is_same<typename C::char_type, Char>::value)>
|
|
|
|
FMT_CONSTEXPR init<C, int, char_type> make_value(Char val) {
|
2019-01-13 02:27:38 +00:00
|
|
|
return val;
|
|
|
|
}
|
2018-02-03 14:14:10 +00:00
|
|
|
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename C,
|
|
|
|
FMT_ENABLE_IF(!std::is_same<typename C::char_type, char>::value)>
|
|
|
|
FMT_CONSTEXPR init<C, int, char_type> make_value(char val) {
|
2019-01-13 02:27:38 +00:00
|
|
|
return val;
|
|
|
|
}
|
2018-02-03 14:14:10 +00:00
|
|
|
|
2018-02-16 17:20:33 +00:00
|
|
|
FMT_MAKE_VALUE(double_type, float, double)
|
2018-06-06 13:57:59 +00:00
|
|
|
FMT_MAKE_VALUE_SAME(double_type, double)
|
|
|
|
FMT_MAKE_VALUE_SAME(long_double_type, long double)
|
2018-02-03 14:14:10 +00:00
|
|
|
|
|
|
|
// Formatting of wide strings into a narrow buffer and multibyte strings
|
|
|
|
// into a wide buffer is disallowed (https://github.com/fmtlib/fmt/pull/606).
|
2018-03-10 14:46:41 +00:00
|
|
|
FMT_MAKE_VALUE(cstring_type, typename C::char_type*,
|
|
|
|
const typename C::char_type*)
|
|
|
|
FMT_MAKE_VALUE(cstring_type, const typename C::char_type*,
|
|
|
|
const typename C::char_type*)
|
2018-02-16 17:20:33 +00:00
|
|
|
|
|
|
|
FMT_MAKE_VALUE(cstring_type, signed char*, const signed char*)
|
2018-06-06 13:57:59 +00:00
|
|
|
FMT_MAKE_VALUE_SAME(cstring_type, const signed char*)
|
2018-02-16 17:20:33 +00:00
|
|
|
FMT_MAKE_VALUE(cstring_type, unsigned char*, const unsigned char*)
|
2018-06-06 13:57:59 +00:00
|
|
|
FMT_MAKE_VALUE_SAME(cstring_type, const unsigned char*)
|
|
|
|
FMT_MAKE_VALUE_SAME(string_type, basic_string_view<typename C::char_type>)
|
2018-02-24 18:19:30 +00:00
|
|
|
FMT_MAKE_VALUE(string_type,
|
|
|
|
typename basic_string_view<typename C::char_type>::type,
|
2018-03-10 14:46:41 +00:00
|
|
|
basic_string_view<typename C::char_type>)
|
2018-02-17 12:57:18 +00:00
|
|
|
FMT_MAKE_VALUE(string_type, const std::basic_string<typename C::char_type>&,
|
2018-03-10 14:46:41 +00:00
|
|
|
basic_string_view<typename C::char_type>)
|
2018-02-16 17:20:33 +00:00
|
|
|
FMT_MAKE_VALUE(pointer_type, void*, const void*)
|
2018-06-06 13:57:59 +00:00
|
|
|
FMT_MAKE_VALUE_SAME(pointer_type, const void*)
|
2018-02-16 17:20:33 +00:00
|
|
|
FMT_MAKE_VALUE(pointer_type, std::nullptr_t, const void*)
|
2018-02-03 14:14:10 +00:00
|
|
|
|
|
|
|
// Formatting of arbitrary pointers is disallowed. If you want to output a
|
|
|
|
// pointer cast it to "void *" or "const void *". In particular, this forbids
|
|
|
|
// formatting of "[const] volatile char *" which is printed as bool by
|
|
|
|
// iostreams.
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename C, typename T,
|
|
|
|
FMT_ENABLE_IF(!std::is_same<T, typename C::char_type>::value)>
|
|
|
|
void make_value(const T*) {
|
2018-02-03 14:14:10 +00:00
|
|
|
static_assert(!sizeof(T), "formatting of non-void pointers is disallowed");
|
|
|
|
}
|
|
|
|
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename C, typename T,
|
|
|
|
FMT_ENABLE_IF(convert_to_int<T, typename C::char_type>::value&&
|
|
|
|
std::is_enum<T>::value)>
|
|
|
|
inline init<C, int, int_type> make_value(const T& val) {
|
2019-01-13 02:27:38 +00:00
|
|
|
return static_cast<int>(val);
|
|
|
|
}
|
2018-02-10 14:17:42 +00:00
|
|
|
|
2019-06-02 23:04:17 +00:00
|
|
|
template <
|
|
|
|
typename C, typename T, typename Char = typename C::char_type,
|
|
|
|
FMT_ENABLE_IF(std::is_constructible<basic_string_view<Char>, T>::value &&
|
|
|
|
!internal::is_string<T>::value)>
|
2019-03-16 19:58:18 +00:00
|
|
|
inline init<C, basic_string_view<Char>, string_type> make_value(const T& val) {
|
2019-01-13 02:27:38 +00:00
|
|
|
return basic_string_view<Char>(val);
|
|
|
|
}
|
2018-07-18 21:12:10 +00:00
|
|
|
|
2019-03-16 19:58:18 +00:00
|
|
|
// Implicit conversion to std::string is not handled here because it's
|
|
|
|
// unsafe: https://github.com/fmtlib/fmt/issues/729
|
|
|
|
template <
|
|
|
|
typename C, typename T, typename Char = typename C::char_type,
|
2019-04-14 19:34:56 +00:00
|
|
|
typename U = typename std::remove_volatile<T>::type,
|
|
|
|
FMT_ENABLE_IF(!convert_to_int<U, Char>::value &&
|
|
|
|
!std::is_same<U, Char>::value &&
|
|
|
|
!std::is_convertible<U, basic_string_view<Char>>::value &&
|
2019-06-02 23:04:17 +00:00
|
|
|
!std::is_constructible<basic_string_view<Char>, U>::value &&
|
2019-04-14 19:34:56 +00:00
|
|
|
!internal::is_string<U>::value)>
|
2019-03-16 19:58:18 +00:00
|
|
|
inline init<C, const T&, custom_type> make_value(const T& val) {
|
2019-01-13 02:27:38 +00:00
|
|
|
return val;
|
|
|
|
}
|
2018-02-03 14:14:10 +00:00
|
|
|
|
|
|
|
template <typename C, typename T>
|
2019-01-13 02:27:38 +00:00
|
|
|
init<C, const void*, named_arg_type> make_value(
|
|
|
|
const named_arg<T, typename C::char_type>& val) {
|
2018-04-04 14:38:21 +00:00
|
|
|
basic_format_arg<C> arg = make_arg<C>(val.value);
|
2018-02-03 14:14:10 +00:00
|
|
|
std::memcpy(val.data, &arg, sizeof(arg));
|
|
|
|
return static_cast<const void*>(&val);
|
|
|
|
}
|
|
|
|
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename C, typename S, FMT_ENABLE_IF(internal::is_string<S>::value)>
|
|
|
|
FMT_CONSTEXPR11 init<C, basic_string_view<typename C::char_type>, string_type>
|
|
|
|
make_value(const S& val) {
|
2018-10-08 18:14:39 +00:00
|
|
|
// Handle adapted strings.
|
2019-01-13 02:27:38 +00:00
|
|
|
static_assert(std::is_same<typename C::char_type,
|
2019-06-01 19:32:24 +00:00
|
|
|
typename internal::char_t_impl<S>::type>::value,
|
2019-01-13 02:27:38 +00:00
|
|
|
"mismatch between char-types of context and argument");
|
2018-10-08 18:14:39 +00:00
|
|
|
return to_string_view(val);
|
|
|
|
}
|
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
// Maximum number of arguments with packed types.
|
2018-03-07 15:36:13 +00:00
|
|
|
enum { max_packed_args = 15 };
|
2018-11-30 23:48:09 +00:00
|
|
|
enum : unsigned long long { is_unpacked_bit = 1ull << 63 };
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context> class arg_map;
|
2018-07-22 14:20:11 +00:00
|
|
|
} // namespace internal
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
// A formatting argument. It is a trivially copyable/constructible type to
|
|
|
|
// allow storage in basic_memory_buffer.
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context> class basic_format_arg {
|
2017-12-06 15:42:42 +00:00
|
|
|
private:
|
|
|
|
internal::value<Context> value_;
|
|
|
|
internal::type type_;
|
|
|
|
|
|
|
|
template <typename ContextType, typename T>
|
2019-01-13 02:27:38 +00:00
|
|
|
friend FMT_CONSTEXPR basic_format_arg<ContextType> internal::make_arg(
|
|
|
|
const T& value);
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
template <typename Visitor, typename Ctx>
|
2019-05-31 15:54:32 +00:00
|
|
|
friend FMT_CONSTEXPR internal::invoke_result_t<Visitor, int> visit_format_arg(
|
|
|
|
Visitor&& vis, const basic_format_arg<Ctx>& arg);
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
friend class basic_format_args<Context>;
|
|
|
|
friend class internal::arg_map<Context>;
|
|
|
|
|
2019-06-02 23:04:17 +00:00
|
|
|
using char_type = typename Context::char_type;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
class handle {
|
|
|
|
public:
|
2019-01-13 02:27:38 +00:00
|
|
|
explicit handle(internal::custom_value<Context> custom) : custom_(custom) {}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-02-10 00:15:20 +00:00
|
|
|
void format(basic_parse_context<char_type>& parse_ctx, Context& ctx) const {
|
|
|
|
custom_.format(custom_.value, parse_ctx, ctx);
|
|
|
|
}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
internal::custom_value<Context> custom_;
|
|
|
|
};
|
|
|
|
|
2018-04-04 14:38:21 +00:00
|
|
|
FMT_CONSTEXPR basic_format_arg() : type_(internal::none_type) {}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-05-30 14:01:31 +00:00
|
|
|
FMT_CONSTEXPR explicit operator bool() const FMT_NOEXCEPT {
|
2018-02-16 17:20:33 +00:00
|
|
|
return type_ != internal::none_type;
|
2018-01-06 17:09:50 +00:00
|
|
|
}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
internal::type type() const { return type_; }
|
|
|
|
|
|
|
|
bool is_integral() const { return internal::is_integral(type_); }
|
2017-12-09 14:19:15 +00:00
|
|
|
bool is_arithmetic() const { return internal::is_arithmetic(type_); }
|
2017-12-06 15:42:42 +00:00
|
|
|
};
|
|
|
|
|
2018-09-19 15:55:45 +00:00
|
|
|
struct monostate {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Visits an argument dispatching to the appropriate visit method based on
|
|
|
|
the argument type. For example, if the argument type is ``double`` then
|
|
|
|
``vis(value)`` will be called with the value of type ``double``.
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
template <typename Visitor, typename Context>
|
2019-05-31 15:54:32 +00:00
|
|
|
FMT_CONSTEXPR internal::invoke_result_t<Visitor, int> visit_format_arg(
|
2019-01-13 02:27:38 +00:00
|
|
|
Visitor&& vis, const basic_format_arg<Context>& arg) {
|
2019-06-02 23:04:17 +00:00
|
|
|
using char_type = typename Context::char_type;
|
2018-09-19 15:55:45 +00:00
|
|
|
switch (arg.type_) {
|
|
|
|
case internal::none_type:
|
|
|
|
break;
|
|
|
|
case internal::named_arg_type:
|
|
|
|
FMT_ASSERT(false, "invalid argument type");
|
|
|
|
break;
|
|
|
|
case internal::int_type:
|
|
|
|
return vis(arg.value_.int_value);
|
|
|
|
case internal::uint_type:
|
|
|
|
return vis(arg.value_.uint_value);
|
|
|
|
case internal::long_long_type:
|
|
|
|
return vis(arg.value_.long_long_value);
|
|
|
|
case internal::ulong_long_type:
|
|
|
|
return vis(arg.value_.ulong_long_value);
|
|
|
|
case internal::bool_type:
|
|
|
|
return vis(arg.value_.int_value != 0);
|
|
|
|
case internal::char_type:
|
|
|
|
return vis(static_cast<char_type>(arg.value_.int_value));
|
|
|
|
case internal::double_type:
|
|
|
|
return vis(arg.value_.double_value);
|
|
|
|
case internal::long_double_type:
|
|
|
|
return vis(arg.value_.long_double_value);
|
|
|
|
case internal::cstring_type:
|
|
|
|
return vis(arg.value_.string.value);
|
|
|
|
case internal::string_type:
|
2019-01-13 02:27:38 +00:00
|
|
|
return vis(basic_string_view<char_type>(arg.value_.string.value,
|
|
|
|
arg.value_.string.size));
|
2018-09-19 15:55:45 +00:00
|
|
|
case internal::pointer_type:
|
|
|
|
return vis(arg.value_.pointer);
|
|
|
|
case internal::custom_type:
|
|
|
|
return vis(typename basic_format_arg<Context>::handle(arg.value_.custom));
|
|
|
|
}
|
|
|
|
return vis(monostate());
|
|
|
|
}
|
|
|
|
|
2018-10-05 14:15:41 +00:00
|
|
|
template <typename Visitor, typename Context>
|
2019-05-31 15:54:32 +00:00
|
|
|
FMT_DEPRECATED FMT_CONSTEXPR internal::invoke_result_t<Visitor, int> visit(
|
|
|
|
Visitor&& vis, const basic_format_arg<Context>& arg) {
|
2018-10-05 14:15:41 +00:00
|
|
|
return visit_format_arg(std::forward<Visitor>(vis), arg);
|
|
|
|
}
|
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
namespace internal {
|
2018-01-14 19:00:27 +00:00
|
|
|
// A map from argument names to their values for named arguments.
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context> class arg_map {
|
2017-12-06 15:42:42 +00:00
|
|
|
private:
|
2019-01-13 02:27:38 +00:00
|
|
|
arg_map(const arg_map&) = delete;
|
|
|
|
void operator=(const arg_map&) = delete;
|
2017-12-09 16:48:30 +00:00
|
|
|
|
2019-06-02 23:04:17 +00:00
|
|
|
using char_type = typename Context::char_type;
|
2017-12-06 16:38:53 +00:00
|
|
|
|
2018-01-06 17:09:50 +00:00
|
|
|
struct entry {
|
2017-12-30 15:42:56 +00:00
|
|
|
basic_string_view<char_type> name;
|
2018-04-04 14:38:21 +00:00
|
|
|
basic_format_arg<Context> arg;
|
2017-12-06 16:38:53 +00:00
|
|
|
};
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
entry* map_;
|
2018-02-11 17:43:54 +00:00
|
|
|
unsigned size_;
|
2017-12-09 16:48:30 +00:00
|
|
|
|
2018-01-06 17:09:50 +00:00
|
|
|
void push_back(value<Context> val) {
|
2019-01-13 02:27:38 +00:00
|
|
|
const internal::named_arg_base<char_type>& named = val.as_named_arg();
|
2018-01-06 17:09:50 +00:00
|
|
|
map_[size_] = entry{named.name, named.template deserialize<Context>()};
|
2017-12-09 16:48:30 +00:00
|
|
|
++size_;
|
|
|
|
}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
public:
|
2019-05-30 14:01:31 +00:00
|
|
|
arg_map() : map_(nullptr), size_(0) {}
|
2019-01-13 02:27:38 +00:00
|
|
|
void init(const basic_format_args<Context>& args);
|
|
|
|
~arg_map() { delete[] map_; }
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2018-04-04 14:38:21 +00:00
|
|
|
basic_format_arg<Context> find(basic_string_view<char_type> name) const {
|
2017-12-06 15:42:42 +00:00
|
|
|
// The list is unsorted, so just return the first matching name.
|
2018-06-04 19:27:20 +00:00
|
|
|
for (entry *it = map_, *end = map_ + size_; it != end; ++it) {
|
2019-01-13 02:27:38 +00:00
|
|
|
if (it->name == name) return it->arg;
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
2018-09-23 19:54:25 +00:00
|
|
|
return {};
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-14 17:39:37 +00:00
|
|
|
// A type-erased reference to an std::locale to avoid heavy <locale> include.
|
|
|
|
class locale_ref {
|
|
|
|
private:
|
2019-01-13 02:27:38 +00:00
|
|
|
const void* locale_; // A type-erased pointer to std::locale.
|
2018-11-14 17:39:37 +00:00
|
|
|
friend class locale;
|
|
|
|
|
|
|
|
public:
|
2019-05-30 14:01:31 +00:00
|
|
|
locale_ref() : locale_(nullptr) {}
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Locale> explicit locale_ref(const Locale& loc);
|
2018-11-14 17:39:37 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Locale> Locale get() const;
|
2018-11-14 17:39:37 +00:00
|
|
|
};
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context, typename T> struct get_type {
|
2019-05-30 15:34:17 +00:00
|
|
|
typedef decltype(make_value<Context>(
|
|
|
|
std::declval<typename std::decay<T>::type&>())) value_type;
|
2018-10-05 01:06:21 +00:00
|
|
|
static const type value = value_type::type_tag;
|
|
|
|
};
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context> FMT_CONSTEXPR11 unsigned long long get_types() {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-10-05 01:06:21 +00:00
|
|
|
|
|
|
|
template <typename Context, typename Arg, typename... Args>
|
|
|
|
FMT_CONSTEXPR11 unsigned long long get_types() {
|
|
|
|
return get_type<Context, Arg>::value | (get_types<Context, Args...>() << 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Context, typename T>
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_CONSTEXPR basic_format_arg<Context> make_arg(const T& value) {
|
2018-10-05 01:06:21 +00:00
|
|
|
basic_format_arg<Context> arg;
|
|
|
|
arg.type_ = get_type<Context, T>::value;
|
|
|
|
arg.value_ = make_value<Context>(value);
|
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
2019-03-16 19:58:18 +00:00
|
|
|
template <bool IS_PACKED, typename Context, typename T,
|
|
|
|
FMT_ENABLE_IF(IS_PACKED)>
|
|
|
|
inline value<Context> make_arg(const T& value) {
|
2018-10-05 01:06:21 +00:00
|
|
|
return make_value<Context>(value);
|
|
|
|
}
|
|
|
|
|
2019-03-16 19:58:18 +00:00
|
|
|
template <bool IS_PACKED, typename Context, typename T,
|
|
|
|
FMT_ENABLE_IF(!IS_PACKED)>
|
|
|
|
inline basic_format_arg<Context> make_arg(const T& value) {
|
2018-10-05 01:06:21 +00:00
|
|
|
return make_arg<Context>(value);
|
2018-01-15 16:22:31 +00:00
|
|
|
}
|
|
|
|
} // namespace internal
|
|
|
|
|
2018-01-14 15:19:23 +00:00
|
|
|
// Formatting context.
|
2019-02-10 03:34:42 +00:00
|
|
|
template <typename OutputIt, typename Char> class basic_format_context {
|
2017-12-06 15:42:42 +00:00
|
|
|
public:
|
|
|
|
/** The character type for the output. */
|
2019-06-02 23:04:17 +00:00
|
|
|
using char_type = Char;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
private:
|
2019-02-10 03:34:42 +00:00
|
|
|
OutputIt out_;
|
|
|
|
basic_format_args<basic_format_context> args_;
|
2018-04-08 13:45:21 +00:00
|
|
|
internal::arg_map<basic_format_context> map_;
|
2019-02-10 03:34:42 +00:00
|
|
|
internal::locale_ref loc_;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
basic_format_context(const basic_format_context&) = delete;
|
|
|
|
void operator=(const basic_format_context&) = delete;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
public:
|
2019-06-02 23:04:17 +00:00
|
|
|
using iterator = OutputIt;
|
2019-06-03 00:13:50 +00:00
|
|
|
using format_arg = basic_format_arg<basic_format_context>;
|
2019-06-02 23:04:17 +00:00
|
|
|
template <typename T> using formatter_type = formatter<T, char_type>;
|
2018-01-14 19:00:27 +00:00
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
/**
|
2018-04-08 13:45:21 +00:00
|
|
|
Constructs a ``basic_format_context`` object. References to the arguments are
|
2017-12-06 15:42:42 +00:00
|
|
|
stored in the object so make sure they have appropriate lifetimes.
|
|
|
|
*/
|
2019-02-10 03:34:42 +00:00
|
|
|
basic_format_context(OutputIt out,
|
2018-11-14 17:39:37 +00:00
|
|
|
basic_format_args<basic_format_context> ctx_args,
|
|
|
|
internal::locale_ref loc = internal::locale_ref())
|
2019-02-10 03:34:42 +00:00
|
|
|
: out_(out), args_(ctx_args), loc_(loc) {}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-02-10 03:34:42 +00:00
|
|
|
format_arg arg(unsigned id) const { return args_.get(id); }
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2018-01-14 19:00:27 +00:00
|
|
|
// Checks if manual indexing is used and returns the argument with the
|
2017-12-06 15:42:42 +00:00
|
|
|
// specified name.
|
2019-01-19 17:10:57 +00:00
|
|
|
format_arg arg(basic_string_view<char_type> name);
|
|
|
|
|
2019-02-10 03:34:42 +00:00
|
|
|
internal::error_handler error_handler() { return {}; }
|
|
|
|
void on_error(const char* message) { error_handler().on_error(message); }
|
|
|
|
|
|
|
|
// Returns an iterator to the beginning of the output range.
|
|
|
|
iterator out() { return out_; }
|
2019-02-15 23:00:02 +00:00
|
|
|
FMT_DEPRECATED iterator begin() { return out_; }
|
2019-02-10 03:34:42 +00:00
|
|
|
|
|
|
|
// Advances the begin iterator to ``it``.
|
|
|
|
void advance_to(iterator it) { out_ = it; }
|
|
|
|
|
|
|
|
internal::locale_ref locale() { return loc_; }
|
2017-12-06 15:42:42 +00:00
|
|
|
};
|
|
|
|
|
2019-06-03 00:13:50 +00:00
|
|
|
template <typename Char>
|
|
|
|
using buffer_context =
|
|
|
|
basic_format_context<std::back_insert_iterator<internal::buffer<Char>>,
|
|
|
|
Char>;
|
|
|
|
using format_context = buffer_context<char>;
|
|
|
|
using wformat_context = buffer_context<wchar_t>;
|
2018-02-03 14:14:10 +00:00
|
|
|
|
2018-03-20 02:47:14 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
An array of references to arguments. It can be implicitly converted into
|
|
|
|
`~fmt::basic_format_args` for passing into type-erased formatting functions
|
|
|
|
such as `~fmt::vformat`.
|
|
|
|
\endrst
|
|
|
|
*/
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context, typename... Args> class format_arg_store {
|
2017-12-06 15:42:42 +00:00
|
|
|
private:
|
|
|
|
static const size_t NUM_ARGS = sizeof...(Args);
|
|
|
|
|
|
|
|
// Packed is a macro on MinGW so use IS_PACKED instead.
|
2018-03-07 15:36:13 +00:00
|
|
|
static const bool IS_PACKED = NUM_ARGS < internal::max_packed_args;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2019-06-03 00:13:50 +00:00
|
|
|
using value_type =
|
|
|
|
typename std::conditional<IS_PACKED, internal::value<Context>,
|
|
|
|
basic_format_arg<Context>>::type;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
// If the arguments are not packed, add one more element to mark the end.
|
2018-07-04 18:36:38 +00:00
|
|
|
static const size_t DATA_SIZE =
|
2019-01-13 02:27:38 +00:00
|
|
|
NUM_ARGS + (IS_PACKED && NUM_ARGS != 0 ? 0 : 1);
|
2018-07-04 18:36:38 +00:00
|
|
|
value_type data_[DATA_SIZE];
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2018-03-20 02:47:14 +00:00
|
|
|
friend class basic_format_args<Context>;
|
|
|
|
|
2018-11-30 23:48:09 +00:00
|
|
|
static FMT_CONSTEXPR11 unsigned long long get_types() {
|
2019-01-13 02:27:38 +00:00
|
|
|
return IS_PACKED ? internal::get_types<Context, Args...>()
|
|
|
|
: internal::is_unpacked_bit | NUM_ARGS;
|
2018-05-18 01:03:43 +00:00
|
|
|
}
|
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
public:
|
2018-07-18 16:14:10 +00:00
|
|
|
#if FMT_USE_CONSTEXPR11
|
2018-11-30 23:48:09 +00:00
|
|
|
static FMT_CONSTEXPR11 unsigned long long TYPES = get_types();
|
2018-05-18 01:03:43 +00:00
|
|
|
#else
|
2018-11-30 23:48:09 +00:00
|
|
|
static const unsigned long long TYPES;
|
2018-05-18 01:03:43 +00:00
|
|
|
#endif
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2018-07-04 18:36:38 +00:00
|
|
|
#if (FMT_GCC_VERSION && FMT_GCC_VERSION <= 405) || \
|
|
|
|
(FMT_MSC_VER && FMT_MSC_VER <= 1800)
|
|
|
|
// Workaround array initialization issues in gcc <= 4.5 and MSVC <= 2013.
|
2019-01-13 02:27:38 +00:00
|
|
|
format_arg_store(const Args&... args) {
|
|
|
|
value_type init[DATA_SIZE] = {
|
|
|
|
internal::make_arg<IS_PACKED, Context>(args)...};
|
2018-07-04 18:36:38 +00:00
|
|
|
std::memcpy(data_, init, sizeof(init));
|
2018-03-01 11:45:25 +00:00
|
|
|
}
|
|
|
|
#else
|
2019-01-13 02:27:38 +00:00
|
|
|
format_arg_store(const Args&... args)
|
|
|
|
: data_{internal::make_arg<IS_PACKED, Context>(args)...} {}
|
2018-03-01 11:45:25 +00:00
|
|
|
#endif
|
2017-12-06 15:42:42 +00:00
|
|
|
};
|
|
|
|
|
2018-07-18 16:14:10 +00:00
|
|
|
#if !FMT_USE_CONSTEXPR11
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context, typename... Args>
|
2018-11-30 23:48:09 +00:00
|
|
|
const unsigned long long format_arg_store<Context, Args...>::TYPES =
|
|
|
|
get_types();
|
2018-05-18 01:03:43 +00:00
|
|
|
#endif
|
2018-02-03 14:14:10 +00:00
|
|
|
|
2018-03-20 02:47:14 +00:00
|
|
|
/**
|
|
|
|
\rst
|
2018-04-04 14:38:21 +00:00
|
|
|
Constructs an `~fmt::format_arg_store` object that contains references to
|
2018-07-21 16:13:21 +00:00
|
|
|
arguments and can be implicitly converted to `~fmt::format_args`. `Context`
|
|
|
|
can be omitted in which case it defaults to `~fmt::context`.
|
2019-02-22 16:37:19 +00:00
|
|
|
See `~fmt::arg` for lifetime considerations.
|
2018-03-20 02:47:14 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context = format_context, typename... Args>
|
|
|
|
inline format_arg_store<Context, Args...> make_format_args(
|
|
|
|
const Args&... args) {
|
|
|
|
return {args...};
|
|
|
|
}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
/** Formatting arguments. */
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context> class basic_format_args {
|
2017-12-06 15:42:42 +00:00
|
|
|
public:
|
2019-06-02 23:04:17 +00:00
|
|
|
using size_type = unsigned;
|
|
|
|
using format_arg = basic_format_arg<Context>;
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// To reduce compiled code size per formatting function call, types of first
|
2018-03-07 15:36:13 +00:00
|
|
|
// max_packed_args arguments are passed in the types_ field.
|
2018-07-04 18:36:38 +00:00
|
|
|
unsigned long long types_;
|
2017-12-06 15:42:42 +00:00
|
|
|
union {
|
2018-03-07 15:36:13 +00:00
|
|
|
// If the number of arguments is less than max_packed_args, the argument
|
2017-12-06 15:42:42 +00:00
|
|
|
// values are stored in values_, otherwise they are stored in args_.
|
|
|
|
// This is done to reduce compiled code size as storing larger objects
|
|
|
|
// may require more code (at least on x86-64) even if the same amount of
|
|
|
|
// data is actually copied to stack. It saves ~10% on the bloat test.
|
2019-01-13 02:27:38 +00:00
|
|
|
const internal::value<Context>* values_;
|
|
|
|
const format_arg* args_;
|
2017-12-06 15:42:42 +00:00
|
|
|
};
|
|
|
|
|
2018-11-30 23:48:09 +00:00
|
|
|
bool is_packed() const { return (types_ & internal::is_unpacked_bit) == 0; }
|
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
typename internal::type type(unsigned index) const {
|
|
|
|
unsigned shift = index * 4;
|
2019-01-13 02:27:38 +00:00
|
|
|
return static_cast<typename internal::type>((types_ & (0xfull << shift)) >>
|
|
|
|
shift);
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
friend class internal::arg_map<Context>;
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
void set_data(const internal::value<Context>* values) { values_ = values; }
|
|
|
|
void set_data(const format_arg* args) { args_ = args; }
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2018-04-21 21:29:24 +00:00
|
|
|
format_arg do_get(size_type index) const {
|
2018-07-15 13:29:51 +00:00
|
|
|
format_arg arg;
|
2018-11-30 23:48:09 +00:00
|
|
|
if (!is_packed()) {
|
|
|
|
auto num_args = max_size();
|
2019-01-13 02:27:38 +00:00
|
|
|
if (index < num_args) arg = args_[index];
|
2018-07-17 15:54:22 +00:00
|
|
|
return arg;
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
2019-01-13 02:27:38 +00:00
|
|
|
if (index > internal::max_packed_args) return arg;
|
2017-12-06 15:42:42 +00:00
|
|
|
arg.type_ = type(index);
|
2019-01-13 02:27:38 +00:00
|
|
|
if (arg.type_ == internal::none_type) return arg;
|
|
|
|
internal::value<Context>& val = arg.value_;
|
2017-12-06 15:42:42 +00:00
|
|
|
val = values_[index];
|
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
basic_format_args() : types_(0) {}
|
|
|
|
|
2018-03-20 02:47:14 +00:00
|
|
|
/**
|
|
|
|
\rst
|
2018-04-04 14:38:21 +00:00
|
|
|
Constructs a `basic_format_args` object from `~fmt::format_arg_store`.
|
2018-03-20 02:47:14 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2017-12-06 15:42:42 +00:00
|
|
|
template <typename... Args>
|
2019-01-13 02:27:38 +00:00
|
|
|
basic_format_args(const format_arg_store<Context, Args...>& store)
|
|
|
|
: types_(static_cast<unsigned long long>(store.TYPES)) {
|
2018-03-20 02:47:14 +00:00
|
|
|
set_data(store.data_);
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
|
2018-07-19 01:48:35 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Constructs a `basic_format_args` object from a dynamic set of arguments.
|
|
|
|
\endrst
|
|
|
|
*/
|
2019-01-13 02:27:38 +00:00
|
|
|
basic_format_args(const format_arg* args, size_type count)
|
|
|
|
: types_(internal::is_unpacked_bit | count) {
|
2018-07-19 01:48:35 +00:00
|
|
|
set_data(args);
|
|
|
|
}
|
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
/** Returns the argument at specified index. */
|
2018-04-21 21:29:24 +00:00
|
|
|
format_arg get(size_type index) const {
|
|
|
|
format_arg arg = do_get(index);
|
2018-07-14 22:28:55 +00:00
|
|
|
if (arg.type_ == internal::named_arg_type)
|
|
|
|
arg = arg.value_.as_named_arg().template deserialize<Context>();
|
|
|
|
return arg;
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
2017-12-09 16:48:30 +00:00
|
|
|
|
2018-12-01 16:57:34 +00:00
|
|
|
size_type max_size() const {
|
2018-11-30 23:48:09 +00:00
|
|
|
unsigned long long max_packed = internal::max_packed_args;
|
2018-12-01 16:57:34 +00:00
|
|
|
return static_cast<size_type>(
|
2019-01-13 02:27:38 +00:00
|
|
|
is_packed() ? max_packed : types_ & ~internal::is_unpacked_bit);
|
2017-12-09 16:48:30 +00:00
|
|
|
}
|
2017-12-06 15:42:42 +00:00
|
|
|
};
|
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
/** An alias to ``basic_format_args<context>``. */
|
|
|
|
// It is a separate type rather than a typedef to make symbols readable.
|
2018-10-07 14:48:27 +00:00
|
|
|
struct format_args : basic_format_args<format_context> {
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename... Args>
|
|
|
|
format_args(Args&&... arg)
|
|
|
|
: basic_format_args<format_context>(std::forward<Args>(arg)...) {}
|
2018-03-04 22:46:24 +00:00
|
|
|
};
|
2018-04-26 18:32:14 +00:00
|
|
|
struct wformat_args : basic_format_args<wformat_context> {
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename... Args>
|
|
|
|
wformat_args(Args&&... arg)
|
|
|
|
: basic_format_args<wformat_context>(std::forward<Args>(arg)...) {}
|
2018-04-26 18:32:14 +00:00
|
|
|
};
|
2017-12-06 16:38:53 +00:00
|
|
|
|
2018-10-07 14:48:27 +00:00
|
|
|
/** String's character type. */
|
2019-06-01 19:32:24 +00:00
|
|
|
template <typename S> using char_t = typename internal::char_t_impl<S>::type;
|
2018-10-06 01:42:02 +00:00
|
|
|
|
2018-01-06 17:09:50 +00:00
|
|
|
namespace internal {
|
2019-02-10 03:34:42 +00:00
|
|
|
template <typename Context>
|
2019-02-10 14:34:47 +00:00
|
|
|
FMT_CONSTEXPR typename Context::format_arg get_arg(Context& ctx, unsigned id) {
|
2019-02-10 03:34:42 +00:00
|
|
|
auto arg = ctx.arg(id);
|
|
|
|
if (!arg) ctx.on_error("argument index out of range");
|
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Char> struct named_arg_base {
|
2018-01-06 17:09:50 +00:00
|
|
|
basic_string_view<Char> name;
|
|
|
|
|
|
|
|
// Serialized value<context>.
|
2019-06-03 00:13:50 +00:00
|
|
|
mutable char data[sizeof(basic_format_arg<buffer_context<Char>>)];
|
2018-01-06 17:09:50 +00:00
|
|
|
|
2018-01-15 16:22:31 +00:00
|
|
|
named_arg_base(basic_string_view<Char> nm) : name(nm) {}
|
2018-01-14 19:00:27 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Context> basic_format_arg<Context> deserialize() const {
|
2018-04-04 14:38:21 +00:00
|
|
|
basic_format_arg<Context> arg;
|
|
|
|
std::memcpy(&arg, data, sizeof(basic_format_arg<Context>));
|
2018-01-06 17:09:50 +00:00
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename T, typename Char> struct named_arg : named_arg_base<Char> {
|
|
|
|
const T& value;
|
2018-01-06 17:09:50 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
named_arg(basic_string_view<Char> name, const T& val)
|
|
|
|
: named_arg_base<Char>(name), value(val) {}
|
2018-01-06 17:09:50 +00:00
|
|
|
};
|
2018-07-22 16:39:50 +00:00
|
|
|
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename... Args, typename S,
|
|
|
|
FMT_ENABLE_IF(!is_compile_string<S>::value)>
|
|
|
|
inline void check_format_string(const S&) {}
|
|
|
|
template <typename... Args, typename S,
|
|
|
|
FMT_ENABLE_IF(is_compile_string<S>::value)>
|
|
|
|
void check_format_string(S);
|
2018-08-05 15:30:27 +00:00
|
|
|
|
2019-06-01 22:01:04 +00:00
|
|
|
template <typename S, typename... Args,
|
2019-06-01 19:32:24 +00:00
|
|
|
typename Char = enable_if_t<internal::is_string<S>::value, char_t<S>>>
|
2019-06-03 00:13:50 +00:00
|
|
|
inline format_arg_store<buffer_context<Char>, Args...> make_args_checked(
|
|
|
|
const S& format_str, const Args&... args) {
|
2019-02-11 00:59:58 +00:00
|
|
|
internal::check_format_string<Args...>(format_str);
|
|
|
|
return {args...};
|
|
|
|
}
|
2018-10-01 05:19:32 +00:00
|
|
|
|
2018-08-05 15:30:27 +00:00
|
|
|
template <typename Char>
|
2019-06-03 00:13:50 +00:00
|
|
|
std::basic_string<Char> vformat(basic_string_view<Char> format_str,
|
|
|
|
basic_format_args<buffer_context<Char>> args);
|
2018-10-25 01:42:42 +00:00
|
|
|
|
|
|
|
template <typename Char>
|
2019-06-03 00:13:50 +00:00
|
|
|
typename buffer_context<Char>::iterator vformat_to(
|
2019-04-07 17:05:49 +00:00
|
|
|
internal::buffer<Char>& buf, basic_string_view<Char> format_str,
|
2019-06-03 00:13:50 +00:00
|
|
|
basic_format_args<buffer_context<Char>> args);
|
2019-01-13 02:27:38 +00:00
|
|
|
} // namespace internal
|
2018-10-05 01:06:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Returns a named argument to be used in a formatting function.
|
|
|
|
|
2019-02-22 16:37:19 +00:00
|
|
|
The named argument holds a reference and does not extend the lifetime
|
|
|
|
of its arguments.
|
|
|
|
Consequently, a dangling reference can accidentally be created.
|
|
|
|
The user should take care to only pass this function temporaries when
|
|
|
|
the named argument is itself a temporary, as per the following example.
|
|
|
|
|
2018-10-05 01:06:21 +00:00
|
|
|
**Example**::
|
|
|
|
|
|
|
|
fmt::print("Elapsed time: {s:.2f} seconds", fmt::arg("s", 1.23));
|
|
|
|
\endrst
|
|
|
|
*/
|
2019-06-01 19:32:24 +00:00
|
|
|
template <typename S, typename T, typename Char = char_t<S>>
|
|
|
|
inline internal::named_arg<T, Char> arg(const S& name, const T& arg) {
|
2019-05-29 20:21:24 +00:00
|
|
|
static_assert(internal::is_string<S>::value, "");
|
2018-10-05 01:06:21 +00:00
|
|
|
return {name, arg};
|
|
|
|
}
|
|
|
|
|
2018-10-25 01:42:42 +00:00
|
|
|
// Disable nested named arguments, e.g. ``arg("a", arg("b", 42))``.
|
2018-10-05 01:06:21 +00:00
|
|
|
template <typename S, typename T, typename Char>
|
|
|
|
void arg(S, internal::named_arg<T, Char>) = delete;
|
2018-07-22 16:39:50 +00:00
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Container> struct is_contiguous : std::false_type {};
|
2018-01-15 16:22:31 +00:00
|
|
|
|
|
|
|
template <typename Char>
|
2019-01-13 02:27:38 +00:00
|
|
|
struct is_contiguous<std::basic_string<Char>> : std::true_type {};
|
2018-01-15 16:22:31 +00:00
|
|
|
|
|
|
|
template <typename Char>
|
2019-04-07 17:05:49 +00:00
|
|
|
struct is_contiguous<internal::buffer<Char>> : std::true_type {};
|
2018-01-15 16:22:31 +00:00
|
|
|
|
2019-06-01 19:32:24 +00:00
|
|
|
template <typename OutputIt>
|
|
|
|
struct is_contiguous_back_insert_iterator : std::false_type {};
|
|
|
|
|
|
|
|
template <typename Container>
|
|
|
|
struct is_contiguous_back_insert_iterator<std::back_insert_iterator<Container>>
|
|
|
|
: is_contiguous<Container> {};
|
|
|
|
|
2018-01-15 16:22:31 +00:00
|
|
|
/** Formats a string and writes the output to ``out``. */
|
2019-06-03 00:13:50 +00:00
|
|
|
template <typename OutputIt, typename S, typename Char = char_t<S>,
|
|
|
|
FMT_ENABLE_IF(is_contiguous_back_insert_iterator<OutputIt>::value)>
|
|
|
|
OutputIt vformat_to(OutputIt out, const S& format_str,
|
|
|
|
basic_format_args<buffer_context<Char>> args) {
|
2019-06-01 19:32:24 +00:00
|
|
|
using container = typename std::remove_reference<decltype(
|
|
|
|
internal::get_container(out))>::type;
|
|
|
|
internal::container_buffer<container> buf((internal::get_container(out)));
|
2018-10-25 14:20:02 +00:00
|
|
|
internal::vformat_to(buf, to_string_view(format_str), args);
|
2018-07-22 23:54:57 +00:00
|
|
|
return out;
|
2018-04-26 18:32:14 +00:00
|
|
|
}
|
|
|
|
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename Container, typename S, typename... Args,
|
|
|
|
FMT_ENABLE_IF(
|
|
|
|
is_contiguous<Container>::value&& internal::is_string<S>::value)>
|
|
|
|
inline std::back_insert_iterator<Container> format_to(
|
|
|
|
std::back_insert_iterator<Container> out, const S& format_str,
|
|
|
|
const Args&... args) {
|
2019-02-10 16:42:53 +00:00
|
|
|
return vformat_to(out, to_string_view(format_str),
|
2019-02-11 00:59:58 +00:00
|
|
|
{internal::make_args_checked(format_str, args...)});
|
2018-07-23 01:09:22 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 19:32:24 +00:00
|
|
|
template <typename S,
|
|
|
|
typename Char = enable_if_t<internal::is_string<S>::value, char_t<S>>>
|
2018-10-03 17:33:51 +00:00
|
|
|
inline std::basic_string<Char> vformat(
|
2019-06-03 00:13:50 +00:00
|
|
|
const S& format_str, basic_format_args<buffer_context<Char>> args) {
|
2018-10-08 18:14:39 +00:00
|
|
|
return internal::vformat(to_string_view(format_str), args);
|
2018-08-05 15:30:27 +00:00
|
|
|
}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Formats arguments and returns the result as a string.
|
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
#include <fmt/core.h>
|
2018-03-04 16:13:08 +00:00
|
|
|
std::string message = fmt::format("The answer is {}", 42);
|
2017-12-06 15:42:42 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2019-06-01 19:32:24 +00:00
|
|
|
// Pass char_t as a default template parameter instead of using
|
|
|
|
// std::basic_string<char_t<S>> to reduce the symbol size.
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename S, typename... Args,
|
2019-06-01 19:14:27 +00:00
|
|
|
typename Char = enable_if_t<internal::is_string<S>::value, char_t<S>>>
|
2019-06-01 19:32:24 +00:00
|
|
|
inline std::basic_string<Char> format(const S& format_str,
|
|
|
|
const Args&... args) {
|
2019-02-11 00:59:58 +00:00
|
|
|
return internal::vformat(to_string_view(format_str),
|
|
|
|
{internal::make_args_checked(format_str, args...)});
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 02:27:38 +00:00
|
|
|
FMT_API void vprint(std::FILE* f, string_view format_str, format_args args);
|
|
|
|
FMT_API void vprint(std::FILE* f, wstring_view format_str, wformat_args args);
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
2018-09-27 17:58:07 +00:00
|
|
|
Prints formatted data to the file *f*. For wide format strings,
|
|
|
|
*f* should be in wide-oriented mode set via ``fwide(f, 1)`` or
|
|
|
|
``_setmode(_fileno(f), _O_U8TEXT)`` on Windows.
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
2018-03-04 16:13:08 +00:00
|
|
|
fmt::print(stderr, "Don't {}!", "panic");
|
2017-12-06 15:42:42 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename S, typename... Args,
|
|
|
|
FMT_ENABLE_IF(internal::is_string<S>::value)>
|
|
|
|
inline void print(std::FILE* f, const S& format_str, const Args&... args) {
|
2018-10-08 18:14:39 +00:00
|
|
|
vprint(f, to_string_view(format_str),
|
2019-02-11 00:59:58 +00:00
|
|
|
internal::make_args_checked(format_str, args...));
|
2018-04-26 18:32:14 +00:00
|
|
|
}
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
FMT_API void vprint(string_view format_str, format_args args);
|
2018-04-26 18:32:14 +00:00
|
|
|
FMT_API void vprint(wstring_view format_str, wformat_args args);
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Prints formatted data to ``stdout``.
|
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
2018-03-04 16:13:08 +00:00
|
|
|
fmt::print("Elapsed time: {0:.2f} seconds", 1.23);
|
2017-12-06 15:42:42 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2019-03-16 19:58:18 +00:00
|
|
|
template <typename S, typename... Args,
|
|
|
|
FMT_ENABLE_IF(internal::is_string<S>::value)>
|
|
|
|
inline void print(const S& format_str, const Args&... args) {
|
2018-10-08 18:14:39 +00:00
|
|
|
vprint(to_string_view(format_str),
|
2019-02-11 00:59:58 +00:00
|
|
|
internal::make_args_checked(format_str, args...));
|
2018-04-26 18:32:14 +00:00
|
|
|
}
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_END_NAMESPACE
|
2017-12-06 15:42:42 +00:00
|
|
|
|
|
|
|
#endif // FMT_CORE_H_
|