2016-01-28 12:33:16 +00:00
|
|
|
/*
|
|
|
|
Formatting library for C++
|
|
|
|
|
2018-04-14 19:40:26 +00:00
|
|
|
Copyright (c) 2012 - present, Victor Zverovich
|
2016-01-28 12:33:16 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FMT_FORMAT_H_
|
|
|
|
#define FMT_FORMAT_H_
|
|
|
|
|
2018-01-15 19:30:53 +00:00
|
|
|
#include <algorithm>
|
2016-01-28 12:33:16 +00:00
|
|
|
#include <cassert>
|
|
|
|
#include <cmath>
|
|
|
|
#include <cstring>
|
|
|
|
#include <limits>
|
|
|
|
#include <memory>
|
|
|
|
#include <stdexcept>
|
2017-08-26 16:09:43 +00:00
|
|
|
#include <stdint.h>
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-06-06 13:57:59 +00:00
|
|
|
#ifdef __clang__
|
|
|
|
# define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)
|
2016-01-28 12:33:16 +00:00
|
|
|
#else
|
2018-06-06 13:57:59 +00:00
|
|
|
# define FMT_CLANG_VERSION 0
|
2016-01-28 12:33:16 +00:00
|
|
|
#endif
|
|
|
|
|
2018-06-06 13:57:59 +00:00
|
|
|
#ifdef __INTEL_COMPILER
|
|
|
|
# define FMT_ICC_VERSION __INTEL_COMPILER
|
|
|
|
#elif defined(__ICL)
|
|
|
|
# define FMT_ICC_VERSION __ICL
|
2017-12-09 16:56:44 +00:00
|
|
|
#else
|
2018-06-06 13:57:59 +00:00
|
|
|
# define FMT_ICC_VERSION 0
|
2017-12-09 16:56:44 +00:00
|
|
|
#endif
|
|
|
|
|
2018-09-21 09:44:42 +00:00
|
|
|
#ifdef __NVCC__
|
|
|
|
# define FMT_CUDA_VERSION (__CUDACC_VER_MAJOR__ * 100 + __CUDACC_VER_MINOR__)
|
|
|
|
#else
|
|
|
|
# define FMT_CUDA_VERSION 0
|
|
|
|
#endif
|
|
|
|
|
2018-06-09 14:20:09 +00:00
|
|
|
#include "core.h"
|
|
|
|
|
|
|
|
#if FMT_GCC_VERSION >= 406 || FMT_CLANG_VERSION
|
2018-06-06 13:57:59 +00:00
|
|
|
# pragma GCC diagnostic push
|
2017-02-18 14:52:52 +00:00
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
// Disable the warning about declaration shadowing because it affects too
|
|
|
|
// many valid cases.
|
2018-06-06 13:57:59 +00:00
|
|
|
# pragma GCC diagnostic ignored "-Wshadow"
|
2017-02-18 14:52:52 +00:00
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
// Disable the warning about implicit conversions that may change the sign of
|
|
|
|
// an integer; silencing it otherwise would require many explicit casts.
|
2018-06-06 13:57:59 +00:00
|
|
|
# pragma GCC diagnostic ignored "-Wsign-conversion"
|
2016-01-28 12:33:16 +00:00
|
|
|
#endif
|
|
|
|
|
2018-08-22 14:58:51 +00:00
|
|
|
# if FMT_CLANG_VERSION
|
|
|
|
# pragma GCC diagnostic ignored "-Wgnu-string-literal-operator-template"
|
|
|
|
# endif
|
|
|
|
|
2018-06-06 13:57:59 +00:00
|
|
|
#ifdef _SECURE_SCL
|
|
|
|
# define FMT_SECURE_SCL _SECURE_SCL
|
|
|
|
#else
|
|
|
|
# define FMT_SECURE_SCL 0
|
2017-11-04 15:23:24 +00:00
|
|
|
#endif
|
|
|
|
|
2018-06-06 13:57:59 +00:00
|
|
|
#if FMT_SECURE_SCL
|
|
|
|
# include <iterator>
|
2016-05-02 21:51:37 +00:00
|
|
|
#endif
|
|
|
|
|
2018-06-06 13:57:59 +00:00
|
|
|
#ifdef __has_builtin
|
|
|
|
# define FMT_HAS_BUILTIN(x) __has_builtin(x)
|
|
|
|
#else
|
|
|
|
# define FMT_HAS_BUILTIN(x) 0
|
2016-01-28 12:33:16 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __GNUC_LIBSTD__
|
|
|
|
# define FMT_GNUC_LIBSTD_VERSION (__GNUC_LIBSTD__ * 100 + __GNUC_LIBSTD_MINOR__)
|
|
|
|
#endif
|
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
#ifndef FMT_THROW
|
|
|
|
# if FMT_EXCEPTIONS
|
2018-06-04 09:59:59 +00:00
|
|
|
# if FMT_MSC_VER
|
|
|
|
FMT_BEGIN_NAMESPACE
|
|
|
|
namespace internal {
|
|
|
|
template <typename Exception>
|
|
|
|
inline void do_throw(const Exception &x) {
|
|
|
|
// Silence unreachable code warnings in MSVC because these are nearly
|
|
|
|
// impossible to fix in a generic code.
|
|
|
|
volatile bool b = true;
|
|
|
|
if (b)
|
|
|
|
throw x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
FMT_END_NAMESPACE
|
|
|
|
# define FMT_THROW(x) fmt::internal::do_throw(x)
|
|
|
|
# else
|
|
|
|
# define FMT_THROW(x) throw x
|
|
|
|
# endif
|
2017-12-06 15:42:42 +00:00
|
|
|
# else
|
2018-06-06 13:57:59 +00:00
|
|
|
# define FMT_THROW(x) do { static_cast<void>(sizeof(x)); assert(false); } while(false);
|
2017-12-06 15:42:42 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
#ifndef FMT_USE_USER_DEFINED_LITERALS
|
2018-09-21 09:44:42 +00:00
|
|
|
// For Intel's compiler and NVIDIA's compiler both it and the system gcc/msc
|
|
|
|
// must support UDLs.
|
2017-09-04 20:52:29 +00:00
|
|
|
# if (FMT_HAS_FEATURE(cxx_user_literals) || \
|
|
|
|
FMT_GCC_VERSION >= 407 || FMT_MSC_VER >= 1900) && \
|
2018-09-21 09:44:42 +00:00
|
|
|
(!(FMT_ICC_VERSION || FMT_CUDA_VERSION) || \
|
|
|
|
FMT_ICC_VERSION >= 1500 || FMT_CUDA_VERSION >= 700)
|
2017-08-27 13:45:59 +00:00
|
|
|
# define FMT_USE_USER_DEFINED_LITERALS 1
|
|
|
|
# else
|
|
|
|
# define FMT_USE_USER_DEFINED_LITERALS 0
|
|
|
|
# endif
|
2016-01-28 12:33:16 +00:00
|
|
|
#endif
|
|
|
|
|
2018-09-21 09:44:42 +00:00
|
|
|
// EDG C++ Front End based compilers (icc, nvcc) do not currently support UDL
|
|
|
|
// templates.
|
|
|
|
#if FMT_USE_USER_DEFINED_LITERALS && \
|
|
|
|
FMT_ICC_VERSION == 0 && \
|
|
|
|
FMT_CUDA_VERSION == 0 && \
|
2018-05-10 03:58:05 +00:00
|
|
|
((FMT_GCC_VERSION >= 600 && __cplusplus >= 201402L) || \
|
2018-05-07 10:46:02 +00:00
|
|
|
(defined(FMT_CLANG_VERSION) && FMT_CLANG_VERSION >= 304))
|
2017-11-04 15:23:24 +00:00
|
|
|
# define FMT_UDL_TEMPLATE 1
|
|
|
|
#else
|
|
|
|
# define FMT_UDL_TEMPLATE 0
|
|
|
|
#endif
|
|
|
|
|
2018-01-21 03:17:59 +00:00
|
|
|
#ifndef FMT_USE_EXTERN_TEMPLATES
|
|
|
|
# ifndef FMT_HEADER_ONLY
|
|
|
|
# define FMT_USE_EXTERN_TEMPLATES \
|
2018-06-06 13:57:59 +00:00
|
|
|
((FMT_CLANG_VERSION >= 209 && __cplusplus >= 201103L) || \
|
|
|
|
(FMT_GCC_VERSION >= 303 && FMT_HAS_GXX_CXX11))
|
2018-01-21 03:17:59 +00:00
|
|
|
# else
|
|
|
|
# define FMT_USE_EXTERN_TEMPLATES 0
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2018-05-28 18:25:07 +00:00
|
|
|
#if FMT_HAS_GXX_CXX11 || FMT_HAS_FEATURE(cxx_trailing_return) || \
|
|
|
|
FMT_MSC_VER >= 1600
|
2018-02-19 21:03:51 +00:00
|
|
|
# define FMT_USE_TRAILING_RETURN 1
|
2018-06-06 13:57:59 +00:00
|
|
|
#else
|
|
|
|
# define FMT_USE_TRAILING_RETURN 0
|
|
|
|
#endif
|
|
|
|
|
2018-05-28 18:25:07 +00:00
|
|
|
#ifndef FMT_USE_GRISU
|
2018-08-29 17:07:29 +00:00
|
|
|
# define FMT_USE_GRISU 0
|
2018-05-28 18:25:07 +00:00
|
|
|
#endif
|
|
|
|
|
2018-02-02 00:43:16 +00:00
|
|
|
// __builtin_clz is broken in clang with Microsoft CodeGen:
|
|
|
|
// https://github.com/fmtlib/fmt/issues/519
|
|
|
|
#ifndef _MSC_VER
|
|
|
|
# if FMT_GCC_VERSION >= 400 || FMT_HAS_BUILTIN(__builtin_clz)
|
|
|
|
# define FMT_BUILTIN_CLZ(n) __builtin_clz(n)
|
|
|
|
# endif
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-02 00:43:16 +00:00
|
|
|
# if FMT_GCC_VERSION >= 400 || FMT_HAS_BUILTIN(__builtin_clzll)
|
|
|
|
# define FMT_BUILTIN_CLZLL(n) __builtin_clzll(n)
|
|
|
|
# endif
|
2016-01-28 12:33:16 +00:00
|
|
|
#endif
|
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
// A workaround for gcc 4.4 that doesn't support union members with ctors.
|
2018-07-04 20:17:03 +00:00
|
|
|
#if (FMT_GCC_VERSION && FMT_GCC_VERSION <= 404) || \
|
|
|
|
(FMT_MSC_VER && FMT_MSC_VER <= 1800)
|
2018-03-03 22:04:59 +00:00
|
|
|
# define FMT_UNION struct
|
|
|
|
#else
|
|
|
|
# define FMT_UNION union
|
|
|
|
#endif
|
|
|
|
|
2016-12-29 17:07:39 +00:00
|
|
|
// Some compilers masquerade as both MSVC and GCC-likes or otherwise support
|
|
|
|
// __builtin_clz and __builtin_clzll, so only define FMT_BUILTIN_CLZ using the
|
|
|
|
// MSVC intrinsics if the clz and clzll builtins are not available.
|
2018-01-27 17:25:15 +00:00
|
|
|
#if FMT_MSC_VER && !defined(FMT_BUILTIN_CLZLL) && !defined(_MANAGED)
|
2016-01-28 12:33:16 +00:00
|
|
|
# include <intrin.h> // _BitScanReverse, _BitScanReverse64
|
|
|
|
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_BEGIN_NAMESPACE
|
2016-01-28 12:33:16 +00:00
|
|
|
namespace internal {
|
2018-02-10 14:28:33 +00:00
|
|
|
// Avoid Clang with Microsoft CodeGen's -Wunknown-pragmas warning.
|
|
|
|
# ifndef __clang__
|
|
|
|
# pragma intrinsic(_BitScanReverse)
|
|
|
|
# endif
|
2016-01-28 12:33:16 +00:00
|
|
|
inline uint32_t clz(uint32_t x) {
|
|
|
|
unsigned long r = 0;
|
|
|
|
_BitScanReverse(&r, x);
|
|
|
|
|
|
|
|
assert(x != 0);
|
|
|
|
// Static analysis complains about using uninitialized data
|
2016-07-19 18:33:55 +00:00
|
|
|
// "r", but the only way that can happen is if "x" is 0,
|
2016-01-28 12:33:16 +00:00
|
|
|
// which the callers guarantee to not happen.
|
|
|
|
# pragma warning(suppress: 6102)
|
|
|
|
return 31 - r;
|
|
|
|
}
|
|
|
|
# define FMT_BUILTIN_CLZ(n) fmt::internal::clz(n)
|
|
|
|
|
2018-02-10 14:28:33 +00:00
|
|
|
# if defined(_WIN64) && !defined(__clang__)
|
2016-01-28 12:33:16 +00:00
|
|
|
# pragma intrinsic(_BitScanReverse64)
|
|
|
|
# endif
|
|
|
|
|
|
|
|
inline uint32_t clzll(uint64_t x) {
|
|
|
|
unsigned long r = 0;
|
|
|
|
# ifdef _WIN64
|
|
|
|
_BitScanReverse64(&r, x);
|
|
|
|
# else
|
|
|
|
// Scan the high 32 bits.
|
|
|
|
if (_BitScanReverse(&r, static_cast<uint32_t>(x >> 32)))
|
|
|
|
return 63 - (r + 32);
|
|
|
|
|
|
|
|
// Scan the low 32 bits.
|
|
|
|
_BitScanReverse(&r, static_cast<uint32_t>(x));
|
|
|
|
# endif
|
|
|
|
|
|
|
|
assert(x != 0);
|
|
|
|
// Static analysis complains about using uninitialized data
|
2016-07-19 18:33:55 +00:00
|
|
|
// "r", but the only way that can happen is if "x" is 0,
|
2016-01-28 12:33:16 +00:00
|
|
|
// which the callers guarantee to not happen.
|
|
|
|
# pragma warning(suppress: 6102)
|
|
|
|
return 63 - r;
|
|
|
|
}
|
|
|
|
# define FMT_BUILTIN_CLZLL(n) fmt::internal::clzll(n)
|
|
|
|
}
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_END_NAMESPACE
|
2016-01-28 12:33:16 +00:00
|
|
|
#endif
|
|
|
|
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_BEGIN_NAMESPACE
|
2016-01-28 12:33:16 +00:00
|
|
|
namespace internal {
|
2018-03-01 11:45:25 +00:00
|
|
|
|
2018-05-06 15:07:28 +00:00
|
|
|
// An equivalent of `*reinterpret_cast<Dest*>(&source)` that doesn't produce
|
|
|
|
// undefined behavior (e.g. due to type aliasing).
|
|
|
|
// Example: uint64_t d = bit_cast<uint64_t>(2.718);
|
|
|
|
template <typename Dest, typename Source>
|
|
|
|
inline Dest bit_cast(const Source& source) {
|
|
|
|
static_assert(sizeof(Dest) == sizeof(Source), "size mismatch");
|
|
|
|
Dest dest;
|
|
|
|
std::memcpy(&dest, &source, sizeof(dest));
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2018-03-01 11:45:25 +00:00
|
|
|
// An implementation of begin and end for pre-C++11 compilers such as gcc 4.
|
|
|
|
template <typename C>
|
|
|
|
FMT_CONSTEXPR auto begin(const C &c) -> decltype(c.begin()) {
|
|
|
|
return c.begin();
|
|
|
|
}
|
|
|
|
template <typename T, std::size_t N>
|
|
|
|
FMT_CONSTEXPR T *begin(T (&array)[N]) FMT_NOEXCEPT { return array; }
|
|
|
|
template <typename C>
|
|
|
|
FMT_CONSTEXPR auto end(const C &c) -> decltype(c.end()) { return c.end(); }
|
|
|
|
template <typename T, std::size_t N>
|
|
|
|
FMT_CONSTEXPR T *end(T (&array)[N]) FMT_NOEXCEPT { return array + N; }
|
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
// For std::result_of in gcc 4.4.
|
|
|
|
template <typename Result>
|
|
|
|
struct function {
|
|
|
|
template <typename T>
|
|
|
|
struct result { typedef Result type; };
|
|
|
|
};
|
|
|
|
|
2016-12-30 21:12:27 +00:00
|
|
|
struct dummy_int {
|
2016-01-28 12:33:16 +00:00
|
|
|
int data[2];
|
|
|
|
operator int() const { return 0; }
|
|
|
|
};
|
2018-05-12 15:33:51 +00:00
|
|
|
typedef std::numeric_limits<internal::dummy_int> fputil;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
// Dummy implementations of system functions such as signbit and ecvt called
|
|
|
|
// if the latter are not available.
|
2016-12-30 21:12:27 +00:00
|
|
|
inline dummy_int signbit(...) { return dummy_int(); }
|
|
|
|
inline dummy_int _ecvt_s(...) { return dummy_int(); }
|
|
|
|
inline dummy_int isinf(...) { return dummy_int(); }
|
|
|
|
inline dummy_int _finite(...) { return dummy_int(); }
|
|
|
|
inline dummy_int isnan(...) { return dummy_int(); }
|
|
|
|
inline dummy_int _isnan(...) { return dummy_int(); }
|
2018-02-10 14:51:13 +00:00
|
|
|
|
2018-08-29 16:34:57 +00:00
|
|
|
inline bool use_grisu() {
|
|
|
|
return FMT_USE_GRISU && std::numeric_limits<double>::is_iec559;
|
2018-04-22 00:26:24 +00:00
|
|
|
}
|
|
|
|
|
2018-08-25 23:08:32 +00:00
|
|
|
// Formats value using Grisu2 algorithm:
|
|
|
|
// https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf
|
2018-08-26 16:51:49 +00:00
|
|
|
FMT_API void grisu2_format(double value, char *buffer, size_t &size, char type,
|
2018-08-29 17:07:29 +00:00
|
|
|
int precision, bool write_decimal_point);
|
2018-08-25 23:08:32 +00:00
|
|
|
|
2018-02-10 14:51:13 +00:00
|
|
|
template <typename Allocator>
|
|
|
|
typename Allocator::value_type *allocate(Allocator& alloc, std::size_t n) {
|
|
|
|
#if __cplusplus >= 201103L || FMT_MSC_VER >= 1700
|
|
|
|
return std::allocator_traits<Allocator>::allocate(alloc, n);
|
|
|
|
#else
|
2018-02-28 12:33:43 +00:00
|
|
|
return alloc.allocate(n);
|
2018-02-10 14:51:13 +00:00
|
|
|
#endif
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
2018-03-04 19:25:40 +00:00
|
|
|
|
|
|
|
// A helper function to suppress bogus "conditional expression is constant"
|
|
|
|
// warnings.
|
|
|
|
template <typename T>
|
|
|
|
inline T const_check(T value) { return value; }
|
2018-02-10 14:51:13 +00:00
|
|
|
} // namespace internal
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_END_NAMESPACE
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
namespace std {
|
|
|
|
// Standard permits specialization of std::numeric_limits. This specialization
|
|
|
|
// is used to resolve ambiguity between isinf and std::isinf in glibc:
|
|
|
|
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=48891
|
|
|
|
// and the same for isnan and signbit.
|
|
|
|
template <>
|
2016-12-30 21:12:27 +00:00
|
|
|
class numeric_limits<fmt::internal::dummy_int> :
|
2016-01-28 12:33:16 +00:00
|
|
|
public std::numeric_limits<int> {
|
|
|
|
public:
|
|
|
|
// Portable version of isinf.
|
|
|
|
template <typename T>
|
|
|
|
static bool isinfinity(T x) {
|
|
|
|
using namespace fmt::internal;
|
|
|
|
// The resolution "priority" is:
|
|
|
|
// isinf macro > std::isinf > ::isinf > fmt::internal::isinf
|
2018-05-12 15:33:51 +00:00
|
|
|
if (const_check(sizeof(isinf(x)) != sizeof(dummy_int)))
|
2016-01-28 12:33:16 +00:00
|
|
|
return isinf(x) != 0;
|
|
|
|
return !_finite(static_cast<double>(x));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Portable version of isnan.
|
|
|
|
template <typename T>
|
|
|
|
static bool isnotanumber(T x) {
|
|
|
|
using namespace fmt::internal;
|
2018-02-10 15:21:17 +00:00
|
|
|
if (const_check(sizeof(isnan(x)) != sizeof(fmt::internal::dummy_int)))
|
2016-01-28 12:33:16 +00:00
|
|
|
return isnan(x) != 0;
|
|
|
|
return _isnan(static_cast<double>(x)) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Portable version of signbit.
|
|
|
|
static bool isnegative(double x) {
|
|
|
|
using namespace fmt::internal;
|
2018-02-10 15:21:17 +00:00
|
|
|
if (const_check(sizeof(signbit(x)) != sizeof(fmt::internal::dummy_int)))
|
2016-01-28 12:33:16 +00:00
|
|
|
return signbit(x) != 0;
|
|
|
|
if (x < 0) return true;
|
|
|
|
if (!isnotanumber(x)) return false;
|
|
|
|
int dec = 0, sign = 0;
|
|
|
|
char buffer[2]; // The buffer size must be >= 2 or _ecvt_s will fail.
|
|
|
|
_ecvt_s(buffer, sizeof(buffer), x, 0, &dec, &sign);
|
|
|
|
return sign != 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace std
|
|
|
|
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_BEGIN_NAMESPACE
|
2018-01-06 17:09:50 +00:00
|
|
|
template <typename Range>
|
2017-02-14 21:29:47 +00:00
|
|
|
class basic_writer;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-05-28 18:25:07 +00:00
|
|
|
template <typename OutputIt, typename T = typename OutputIt::value_type>
|
|
|
|
class output_range {
|
|
|
|
private:
|
|
|
|
OutputIt it_;
|
|
|
|
|
|
|
|
// Unused yet.
|
|
|
|
typedef void sentinel;
|
|
|
|
sentinel end() const;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef OutputIt iterator;
|
|
|
|
typedef T value_type;
|
|
|
|
|
|
|
|
explicit output_range(OutputIt it): it_(it) {}
|
|
|
|
OutputIt begin() const { return it_; }
|
|
|
|
};
|
|
|
|
|
|
|
|
// A range where begin() returns back_insert_iterator.
|
|
|
|
template <typename Container>
|
|
|
|
class back_insert_range:
|
|
|
|
public output_range<std::back_insert_iterator<Container>> {
|
|
|
|
typedef output_range<std::back_insert_iterator<Container>> base;
|
|
|
|
public:
|
|
|
|
typedef typename Container::value_type value_type;
|
|
|
|
|
|
|
|
back_insert_range(Container &c): base(std::back_inserter(c)) {}
|
|
|
|
back_insert_range(typename base::iterator it): base(it) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef basic_writer<back_insert_range<internal::buffer>> writer;
|
|
|
|
typedef basic_writer<back_insert_range<internal::wbuffer>> wwriter;
|
|
|
|
|
2016-06-14 15:11:33 +00:00
|
|
|
/** A formatting error such as invalid format string. */
|
2016-08-25 15:38:07 +00:00
|
|
|
class format_error : public std::runtime_error {
|
2016-01-28 12:33:16 +00:00
|
|
|
public:
|
2017-07-19 02:40:48 +00:00
|
|
|
explicit format_error(const char *message)
|
|
|
|
: std::runtime_error(message) {}
|
|
|
|
|
|
|
|
explicit format_error(const std::string &message)
|
|
|
|
: std::runtime_error(message) {}
|
2016-01-28 12:33:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace internal {
|
2016-03-01 16:12:29 +00:00
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
#if FMT_SECURE_SCL
|
|
|
|
template <typename T>
|
2018-04-07 21:54:17 +00:00
|
|
|
struct checked { typedef stdext::checked_array_iterator<T*> type; };
|
|
|
|
|
|
|
|
// Make a checked iterator to avoid warnings on MSVC.
|
|
|
|
template <typename T>
|
|
|
|
inline stdext::checked_array_iterator<T*> make_checked(T *p, std::size_t size) {
|
|
|
|
return {p, size};
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
template <typename T>
|
2018-04-07 21:54:17 +00:00
|
|
|
struct checked { typedef T *type; };
|
|
|
|
template <typename T>
|
|
|
|
inline T *make_checked(T *p, std::size_t) { return p; }
|
2016-01-28 12:33:16 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
template <typename U>
|
2017-02-14 17:08:37 +00:00
|
|
|
void basic_buffer<T>::append(const U *begin, const U *end) {
|
2016-03-01 16:12:29 +00:00
|
|
|
std::size_t new_size = size_ + internal::to_unsigned(end - begin);
|
2017-03-11 15:43:26 +00:00
|
|
|
reserve(new_size);
|
2016-01-28 12:33:16 +00:00
|
|
|
std::uninitialized_copy(begin, end,
|
2018-04-07 21:54:17 +00:00
|
|
|
internal::make_checked(ptr_, capacity_) + size_);
|
2016-01-28 12:33:16 +00:00
|
|
|
size_ = new_size;
|
|
|
|
}
|
2018-01-14 20:25:03 +00:00
|
|
|
} // namespace internal
|
|
|
|
|
2018-07-21 16:13:21 +00:00
|
|
|
// A UTF-8 code unit type.
|
|
|
|
struct char8_t {
|
|
|
|
char value;
|
2018-09-23 19:54:25 +00:00
|
|
|
FMT_CONSTEXPR FMT_EXPLICIT operator bool() const FMT_NOEXCEPT {
|
2018-07-21 16:13:21 +00:00
|
|
|
return value != 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-05 15:30:27 +00:00
|
|
|
// A UTF-8 string view.
|
2018-07-21 16:13:21 +00:00
|
|
|
class u8string_view : public basic_string_view<char8_t> {
|
|
|
|
public:
|
2018-09-23 19:54:25 +00:00
|
|
|
typedef char8_t char_type;
|
2018-07-21 16:13:21 +00:00
|
|
|
|
2018-09-23 19:54:25 +00:00
|
|
|
u8string_view(const char *s):
|
|
|
|
basic_string_view<char8_t>(reinterpret_cast<const char8_t*>(s)) {}
|
|
|
|
u8string_view(const char *s, size_t count) FMT_NOEXCEPT:
|
|
|
|
basic_string_view<char8_t>(reinterpret_cast<const char8_t*>(s), count) {}
|
2018-07-21 16:13:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#if FMT_USE_USER_DEFINED_LITERALS
|
|
|
|
inline namespace literals {
|
|
|
|
inline u8string_view operator"" _u(const char *s, std::size_t n) {
|
2018-09-23 19:54:25 +00:00
|
|
|
return {s, n};
|
2018-07-21 16:13:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-01-14 20:25:03 +00:00
|
|
|
// A wrapper around std::locale used to reduce compile times since <locale>
|
|
|
|
// is very heavy.
|
|
|
|
class locale;
|
|
|
|
|
|
|
|
class locale_provider {
|
|
|
|
public:
|
|
|
|
virtual ~locale_provider() {}
|
|
|
|
virtual fmt::locale locale();
|
|
|
|
};
|
2017-02-14 21:29:47 +00:00
|
|
|
|
2018-03-04 18:33:42 +00:00
|
|
|
// The number of characters to store in the basic_memory_buffer object itself
|
|
|
|
// to avoid dynamic memory allocation.
|
|
|
|
enum { inline_buffer_size = 500 };
|
|
|
|
|
2017-02-18 17:13:12 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
A dynamically growing memory buffer for trivially copyable/constructible types
|
2018-03-04 17:55:17 +00:00
|
|
|
with the first ``SIZE`` elements stored in the object itself.
|
2017-02-18 17:13:12 +00:00
|
|
|
|
|
|
|
You can use one of the following typedefs for common character types:
|
|
|
|
|
|
|
|
+----------------+------------------------------+
|
|
|
|
| Type | Definition |
|
|
|
|
+================+==============================+
|
|
|
|
| memory_buffer | basic_memory_buffer<char> |
|
|
|
|
+----------------+------------------------------+
|
|
|
|
| wmemory_buffer | basic_memory_buffer<wchar_t> |
|
|
|
|
+----------------+------------------------------+
|
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
2018-03-04 17:55:17 +00:00
|
|
|
fmt::memory_buffer out;
|
2017-02-18 17:13:12 +00:00
|
|
|
format_to(out, "The answer is {}.", 42);
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-02-18 17:13:12 +00:00
|
|
|
This will write the following output to the ``out`` object:
|
|
|
|
|
|
|
|
.. code-block:: none
|
|
|
|
|
|
|
|
The answer is 42.
|
|
|
|
|
|
|
|
The output can be converted to an ``std::string`` with ``to_string(out)``.
|
|
|
|
\endrst
|
|
|
|
*/
|
2018-03-04 18:33:42 +00:00
|
|
|
template <typename T, std::size_t SIZE = inline_buffer_size,
|
2017-02-14 21:29:47 +00:00
|
|
|
typename Allocator = std::allocator<T> >
|
2018-01-14 20:25:03 +00:00
|
|
|
class basic_memory_buffer: private Allocator, public internal::basic_buffer<T> {
|
2016-01-28 12:33:16 +00:00
|
|
|
private:
|
2017-03-11 15:43:26 +00:00
|
|
|
T store_[SIZE];
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
// Deallocate memory allocated by the buffer.
|
|
|
|
void deallocate() {
|
2017-03-12 14:30:20 +00:00
|
|
|
T* data = this->data();
|
|
|
|
if (data != store_) Allocator::deallocate(data, this->capacity());
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2018-02-14 23:30:55 +00:00
|
|
|
void grow(std::size_t size) FMT_OVERRIDE;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
public:
|
2017-02-18 17:13:12 +00:00
|
|
|
explicit basic_memory_buffer(const Allocator &alloc = Allocator())
|
2017-03-12 14:30:20 +00:00
|
|
|
: Allocator(alloc) {
|
|
|
|
this->set(store_, SIZE);
|
|
|
|
}
|
2017-02-18 17:13:12 +00:00
|
|
|
~basic_memory_buffer() { deallocate(); }
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Move data from other to this buffer.
|
2017-02-18 17:13:12 +00:00
|
|
|
void move(basic_memory_buffer &other) {
|
2016-01-28 12:33:16 +00:00
|
|
|
Allocator &this_alloc = *this, &other_alloc = other;
|
|
|
|
this_alloc = std::move(other_alloc);
|
2017-03-12 14:30:20 +00:00
|
|
|
T* data = other.data();
|
|
|
|
std::size_t size = other.size(), capacity = other.capacity();
|
|
|
|
if (data == other.store_) {
|
|
|
|
this->set(store_, capacity);
|
|
|
|
std::uninitialized_copy(other.store_, other.store_ + size,
|
2018-04-07 21:54:17 +00:00
|
|
|
internal::make_checked(store_, capacity));
|
2016-01-28 12:33:16 +00:00
|
|
|
} else {
|
2017-03-12 14:30:20 +00:00
|
|
|
this->set(data, capacity);
|
2016-01-28 12:33:16 +00:00
|
|
|
// Set pointer to the inline array so that delete is not called
|
|
|
|
// when deallocating.
|
2017-03-12 14:30:20 +00:00
|
|
|
other.set(other.store_, 0);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
2017-03-12 14:30:20 +00:00
|
|
|
this->resize(size);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2017-02-18 17:13:12 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Constructs a :class:`fmt::basic_memory_buffer` object moving the content
|
|
|
|
of the other object to it.
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
basic_memory_buffer(basic_memory_buffer &&other) {
|
2016-01-28 12:33:16 +00:00
|
|
|
move(other);
|
|
|
|
}
|
|
|
|
|
2017-02-18 17:13:12 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Moves the content of the other ``basic_memory_buffer`` object to this one.
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
basic_memory_buffer &operator=(basic_memory_buffer &&other) {
|
2016-01-28 12:33:16 +00:00
|
|
|
assert(this != &other);
|
|
|
|
deallocate();
|
|
|
|
move(other);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a copy of the allocator associated with this buffer.
|
|
|
|
Allocator get_allocator() const { return *this; }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T, std::size_t SIZE, typename Allocator>
|
2017-02-18 17:13:12 +00:00
|
|
|
void basic_memory_buffer<T, SIZE, Allocator>::grow(std::size_t size) {
|
2017-03-12 14:30:20 +00:00
|
|
|
std::size_t old_capacity = this->capacity();
|
|
|
|
std::size_t new_capacity = old_capacity + old_capacity / 2;
|
2016-01-28 12:33:16 +00:00
|
|
|
if (size > new_capacity)
|
|
|
|
new_capacity = size;
|
2017-03-12 14:30:20 +00:00
|
|
|
T *old_data = this->data();
|
2018-02-10 14:51:13 +00:00
|
|
|
T *new_data = internal::allocate<Allocator>(*this, new_capacity);
|
2016-01-28 12:33:16 +00:00
|
|
|
// The following code doesn't throw, so the raw pointer above doesn't leak.
|
2017-03-12 14:30:20 +00:00
|
|
|
std::uninitialized_copy(old_data, old_data + this->size(),
|
2018-04-07 21:54:17 +00:00
|
|
|
internal::make_checked(new_data, new_capacity));
|
2017-03-12 14:30:20 +00:00
|
|
|
this->set(new_data, new_capacity);
|
|
|
|
// deallocate must not throw according to the standard, but even if it does,
|
|
|
|
// the buffer already uses the new storage and will deallocate it in
|
|
|
|
// destructor.
|
|
|
|
if (old_data != store_)
|
|
|
|
Allocator::deallocate(old_data, old_capacity);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2017-02-18 17:13:12 +00:00
|
|
|
typedef basic_memory_buffer<char> memory_buffer;
|
|
|
|
typedef basic_memory_buffer<wchar_t> wmemory_buffer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
A fixed-size memory buffer. For a dynamically growing buffer use
|
|
|
|
:class:`fmt::basic_memory_buffer`.
|
|
|
|
|
|
|
|
Trying to increase the buffer size past the initial capacity will throw
|
|
|
|
``std::runtime_error``.
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
template <typename Char>
|
2018-01-14 20:25:03 +00:00
|
|
|
class basic_fixed_buffer : public internal::basic_buffer<Char> {
|
2017-02-18 17:13:12 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
\rst
|
2017-02-19 14:46:51 +00:00
|
|
|
Constructs a :class:`fmt::basic_fixed_buffer` object for *array* of the
|
2017-02-18 17:13:12 +00:00
|
|
|
given size.
|
|
|
|
\endrst
|
|
|
|
*/
|
2017-03-12 14:30:20 +00:00
|
|
|
basic_fixed_buffer(Char *array, std::size_t size) {
|
|
|
|
this->set(array, size);
|
|
|
|
}
|
2017-02-18 17:13:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
2017-02-19 14:46:51 +00:00
|
|
|
Constructs a :class:`fmt::basic_fixed_buffer` object for *array* of the
|
2017-02-18 17:13:12 +00:00
|
|
|
size known at compile time.
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
template <std::size_t SIZE>
|
2017-03-12 14:30:20 +00:00
|
|
|
explicit basic_fixed_buffer(Char (&array)[SIZE]) {
|
|
|
|
this->set(array, SIZE);
|
|
|
|
}
|
2017-02-18 17:13:12 +00:00
|
|
|
|
|
|
|
protected:
|
2018-02-14 23:30:55 +00:00
|
|
|
FMT_API void grow(std::size_t size) FMT_OVERRIDE;
|
2017-02-18 17:13:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace internal {
|
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
template <typename Char>
|
2018-04-14 19:40:53 +00:00
|
|
|
struct char_traits;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
template <>
|
2018-04-08 20:38:12 +00:00
|
|
|
struct char_traits<char> {
|
2016-01-28 12:33:16 +00:00
|
|
|
// Formats a floating-point number.
|
|
|
|
template <typename T>
|
|
|
|
FMT_API static int format_float(char *buffer, std::size_t size,
|
2018-05-29 03:16:30 +00:00
|
|
|
const char *format, int precision, T value);
|
2016-01-28 12:33:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
2018-04-08 20:38:12 +00:00
|
|
|
struct char_traits<wchar_t> {
|
2016-01-28 12:33:16 +00:00
|
|
|
template <typename T>
|
|
|
|
FMT_API static int format_float(wchar_t *buffer, std::size_t size,
|
2018-05-29 03:16:30 +00:00
|
|
|
const wchar_t *format, int precision, T value);
|
2016-01-28 12:33:16 +00:00
|
|
|
};
|
|
|
|
|
2018-01-21 03:17:59 +00:00
|
|
|
#if FMT_USE_EXTERN_TEMPLATES
|
|
|
|
extern template int char_traits<char>::format_float<double>(
|
2018-05-29 03:16:30 +00:00
|
|
|
char *buffer, std::size_t size, const char* format, int precision,
|
|
|
|
double value);
|
2018-01-21 03:17:59 +00:00
|
|
|
extern template int char_traits<char>::format_float<long double>(
|
2018-05-29 03:16:30 +00:00
|
|
|
char *buffer, std::size_t size, const char* format, int precision,
|
|
|
|
long double value);
|
2018-01-21 03:17:59 +00:00
|
|
|
|
|
|
|
extern template int char_traits<wchar_t>::format_float<double>(
|
2018-05-29 03:16:30 +00:00
|
|
|
wchar_t *buffer, std::size_t size, const wchar_t* format, int precision,
|
|
|
|
double value);
|
2018-01-21 03:17:59 +00:00
|
|
|
extern template int char_traits<wchar_t>::format_float<long double>(
|
2018-05-29 03:16:30 +00:00
|
|
|
wchar_t *buffer, std::size_t size, const wchar_t* format, int precision,
|
|
|
|
long double value);
|
2018-01-21 03:17:59 +00:00
|
|
|
#endif
|
|
|
|
|
2018-01-15 16:22:31 +00:00
|
|
|
template <typename Container>
|
2018-01-15 19:30:53 +00:00
|
|
|
inline typename std::enable_if<
|
2018-04-05 01:30:03 +00:00
|
|
|
is_contiguous<Container>::value,
|
2018-04-07 21:54:17 +00:00
|
|
|
typename checked<typename Container::value_type>::type>::type
|
2018-01-15 19:30:53 +00:00
|
|
|
reserve(std::back_insert_iterator<Container> &it, std::size_t n) {
|
2018-01-15 16:22:31 +00:00
|
|
|
Container &c = internal::get_container(it);
|
|
|
|
std::size_t size = c.size();
|
|
|
|
c.resize(size + n);
|
2018-04-07 21:54:17 +00:00
|
|
|
return make_checked(&c[size], n);
|
2018-01-15 16:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Iterator>
|
|
|
|
inline Iterator &reserve(Iterator &it, std::size_t) { return it; }
|
|
|
|
|
2017-08-13 20:09:02 +00:00
|
|
|
template <typename Char>
|
|
|
|
class null_terminating_iterator;
|
|
|
|
|
|
|
|
template <typename Char>
|
2018-02-14 23:30:55 +00:00
|
|
|
FMT_CONSTEXPR_DECL const Char *pointer_from(null_terminating_iterator<Char> it);
|
2017-08-13 20:09:02 +00:00
|
|
|
|
|
|
|
// An iterator that produces a null terminator on *end. This simplifies parsing
|
|
|
|
// and allows comparing the performance of processing a null-terminated string
|
|
|
|
// vs string_view.
|
|
|
|
template <typename Char>
|
|
|
|
class null_terminating_iterator {
|
|
|
|
public:
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef std::ptrdiff_t difference_type;
|
|
|
|
typedef Char value_type;
|
|
|
|
typedef const Char* pointer;
|
|
|
|
typedef const Char& reference;
|
|
|
|
typedef std::random_access_iterator_tag iterator_category;
|
2017-08-13 20:09:02 +00:00
|
|
|
|
|
|
|
null_terminating_iterator() : ptr_(0), end_(0) {}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR null_terminating_iterator(const Char *ptr, const Char *end)
|
2017-08-13 20:09:02 +00:00
|
|
|
: ptr_(ptr), end_(end) {}
|
|
|
|
|
2017-09-17 15:32:57 +00:00
|
|
|
template <typename Range>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR explicit null_terminating_iterator(const Range &r)
|
2017-09-17 15:32:57 +00:00
|
|
|
: ptr_(r.begin()), end_(r.end()) {}
|
2017-08-13 20:09:02 +00:00
|
|
|
|
2018-07-07 19:20:10 +00:00
|
|
|
FMT_CONSTEXPR null_terminating_iterator &operator=(const Char *ptr) {
|
2017-08-13 20:09:02 +00:00
|
|
|
assert(ptr <= end_);
|
|
|
|
ptr_ = ptr;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR Char operator*() const {
|
2017-08-13 20:09:02 +00:00
|
|
|
return ptr_ != end_ ? *ptr_ : 0;
|
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR null_terminating_iterator operator++() {
|
2017-08-13 20:09:02 +00:00
|
|
|
++ptr_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR null_terminating_iterator operator++(int) {
|
2017-08-13 20:09:02 +00:00
|
|
|
null_terminating_iterator result(*this);
|
|
|
|
++ptr_;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR null_terminating_iterator operator--() {
|
2017-08-13 20:09:02 +00:00
|
|
|
--ptr_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR null_terminating_iterator operator+(difference_type n) {
|
2017-08-13 20:09:02 +00:00
|
|
|
return null_terminating_iterator(ptr_ + n, end_);
|
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR null_terminating_iterator operator-(difference_type n) {
|
2017-10-27 14:25:29 +00:00
|
|
|
return null_terminating_iterator(ptr_ - n, end_);
|
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR null_terminating_iterator operator+=(difference_type n) {
|
2017-08-13 20:09:02 +00:00
|
|
|
ptr_ += n;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR difference_type operator-(
|
|
|
|
null_terminating_iterator other) const {
|
2017-08-13 20:09:02 +00:00
|
|
|
return ptr_ - other.ptr_;
|
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR bool operator!=(null_terminating_iterator other) const {
|
2017-08-13 20:09:02 +00:00
|
|
|
return ptr_ != other.ptr_;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator>=(null_terminating_iterator other) const {
|
|
|
|
return ptr_ >= other.ptr_;
|
|
|
|
}
|
|
|
|
|
2018-02-28 14:14:56 +00:00
|
|
|
// This should be a friend specialization pointer_from<Char> but the latter
|
|
|
|
// doesn't compile by gcc 5.1 due to a compiler bug.
|
|
|
|
template <typename CharT>
|
|
|
|
friend FMT_CONSTEXPR_DECL const CharT *pointer_from(
|
|
|
|
null_terminating_iterator<CharT> it);
|
2017-08-13 20:09:02 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
const Char *ptr_;
|
|
|
|
const Char *end_;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR const T *pointer_from(const T *p) { return p; }
|
2017-08-13 20:09:02 +00:00
|
|
|
|
|
|
|
template <typename Char>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR const Char *pointer_from(null_terminating_iterator<Char> it) {
|
2017-08-13 20:09:02 +00:00
|
|
|
return it.ptr_;
|
|
|
|
}
|
|
|
|
|
2018-01-18 06:04:24 +00:00
|
|
|
// An output iterator that counts the number of objects written to it and
|
|
|
|
// discards them.
|
|
|
|
template <typename T>
|
|
|
|
class counting_iterator {
|
|
|
|
private:
|
2018-03-31 17:47:30 +00:00
|
|
|
std::size_t count_;
|
2018-01-18 06:04:24 +00:00
|
|
|
mutable T blackhole_;
|
|
|
|
|
|
|
|
public:
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef std::output_iterator_tag iterator_category;
|
|
|
|
typedef T value_type;
|
|
|
|
typedef std::ptrdiff_t difference_type;
|
|
|
|
typedef T* pointer;
|
|
|
|
typedef T& reference;
|
2018-04-07 21:54:17 +00:00
|
|
|
typedef counting_iterator _Unchecked_type; // Mark iterator as checked.
|
2018-01-20 14:40:42 +00:00
|
|
|
|
2018-03-31 17:47:30 +00:00
|
|
|
counting_iterator(): count_(0) {}
|
|
|
|
|
|
|
|
std::size_t count() const { return count_; }
|
2018-01-18 06:04:24 +00:00
|
|
|
|
|
|
|
counting_iterator& operator++() {
|
2018-03-31 17:47:30 +00:00
|
|
|
++count_;
|
2018-01-18 06:04:24 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-06-07 18:20:36 +00:00
|
|
|
counting_iterator operator++(int) {
|
|
|
|
auto it = *this;
|
|
|
|
++*this;
|
|
|
|
return it;
|
|
|
|
}
|
2018-01-18 06:04:24 +00:00
|
|
|
|
|
|
|
T &operator*() const { return blackhole_; }
|
|
|
|
};
|
|
|
|
|
2018-03-30 01:13:10 +00:00
|
|
|
// An output iterator that truncates the output and counts the number of objects
|
|
|
|
// written to it.
|
|
|
|
template <typename OutputIt>
|
|
|
|
class truncating_iterator {
|
|
|
|
private:
|
|
|
|
typedef std::iterator_traits<OutputIt> traits;
|
|
|
|
|
|
|
|
OutputIt out_;
|
|
|
|
std::size_t limit_;
|
2018-03-31 17:47:30 +00:00
|
|
|
std::size_t count_;
|
2018-03-30 01:13:10 +00:00
|
|
|
mutable typename traits::value_type blackhole_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef std::output_iterator_tag iterator_category;
|
|
|
|
typedef typename traits::value_type value_type;
|
|
|
|
typedef typename traits::difference_type difference_type;
|
|
|
|
typedef typename traits::pointer pointer;
|
|
|
|
typedef typename traits::reference reference;
|
2018-04-07 21:54:17 +00:00
|
|
|
typedef truncating_iterator _Unchecked_type; // Mark iterator as checked.
|
2018-03-30 01:13:10 +00:00
|
|
|
|
2018-03-31 17:47:30 +00:00
|
|
|
truncating_iterator(OutputIt out, std::size_t limit)
|
|
|
|
: out_(out), limit_(limit), count_(0) {}
|
2018-03-30 01:13:10 +00:00
|
|
|
|
|
|
|
OutputIt base() const { return out_; }
|
2018-03-31 17:47:30 +00:00
|
|
|
std::size_t count() const { return count_; }
|
2018-03-30 01:13:10 +00:00
|
|
|
|
|
|
|
truncating_iterator& operator++() {
|
2018-03-31 17:47:30 +00:00
|
|
|
if (count_++ < limit_)
|
2018-03-30 01:13:10 +00:00
|
|
|
++out_;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-06-07 18:20:36 +00:00
|
|
|
truncating_iterator operator++(int) {
|
|
|
|
auto it = *this;
|
|
|
|
++*this;
|
|
|
|
return it;
|
|
|
|
}
|
2018-03-30 01:13:10 +00:00
|
|
|
|
2018-03-31 17:47:30 +00:00
|
|
|
reference operator*() const { return count_ < limit_ ? *out_ : blackhole_; }
|
2018-03-30 01:13:10 +00:00
|
|
|
};
|
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
// Returns true if value is negative, false otherwise.
|
|
|
|
// Same as (value < 0) but doesn't produce warnings if T is an unsigned type.
|
|
|
|
template <typename T>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR typename std::enable_if<
|
2017-10-22 16:32:46 +00:00
|
|
|
std::numeric_limits<T>::is_signed, bool>::type is_negative(T value) {
|
2017-02-19 14:46:51 +00:00
|
|
|
return value < 0;
|
|
|
|
}
|
|
|
|
template <typename T>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR typename std::enable_if<
|
2017-10-22 16:32:46 +00:00
|
|
|
!std::numeric_limits<T>::is_signed, bool>::type is_negative(T) {
|
2017-02-19 14:46:51 +00:00
|
|
|
return false;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2017-02-19 14:46:51 +00:00
|
|
|
struct int_traits {
|
2016-01-28 12:33:16 +00:00
|
|
|
// Smallest of uint32_t and uint64_t that is large enough to represent
|
|
|
|
// all values of T.
|
2017-09-04 20:56:14 +00:00
|
|
|
typedef typename std::conditional<
|
2017-02-19 14:46:51 +00:00
|
|
|
std::numeric_limits<T>::digits <= 32, uint32_t, uint64_t>::type main_type;
|
2016-01-28 12:33:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Static data is placed in this class template to allow header-only
|
|
|
|
// configuration.
|
|
|
|
template <typename T = void>
|
2017-02-19 14:46:51 +00:00
|
|
|
struct FMT_API basic_data {
|
2016-01-28 12:33:16 +00:00
|
|
|
static const uint32_t POWERS_OF_10_32[];
|
2018-08-25 23:08:32 +00:00
|
|
|
static const uint32_t ZERO_OR_POWERS_OF_10_32[];
|
|
|
|
static const uint64_t ZERO_OR_POWERS_OF_10_64[];
|
2018-04-29 13:33:05 +00:00
|
|
|
static const uint64_t POW10_SIGNIFICANDS[];
|
|
|
|
static const int16_t POW10_EXPONENTS[];
|
2016-01-28 12:33:16 +00:00
|
|
|
static const char DIGITS[];
|
2018-09-17 16:21:24 +00:00
|
|
|
static const char FOREGROUND_COLOR[];
|
|
|
|
static const char BACKGROUND_COLOR[];
|
2018-06-28 05:13:00 +00:00
|
|
|
static const char RESET_COLOR[];
|
|
|
|
static const wchar_t WRESET_COLOR[];
|
2016-01-28 12:33:16 +00:00
|
|
|
};
|
|
|
|
|
2018-01-21 03:17:59 +00:00
|
|
|
#if FMT_USE_EXTERN_TEMPLATES
|
2017-02-19 14:46:51 +00:00
|
|
|
extern template struct basic_data<void>;
|
2016-05-08 16:45:32 +00:00
|
|
|
#endif
|
|
|
|
|
2017-02-19 14:46:51 +00:00
|
|
|
typedef basic_data<> data;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
#ifdef FMT_BUILTIN_CLZLL
|
|
|
|
// Returns the number of decimal digits in n. Leading zeros are not counted
|
|
|
|
// except for n == 0 in which case count_digits returns 1.
|
|
|
|
inline unsigned count_digits(uint64_t n) {
|
|
|
|
// Based on http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog10
|
|
|
|
// and the benchmark https://github.com/localvoid/cxx-benchmark-count-digits.
|
2016-03-01 16:12:29 +00:00
|
|
|
int t = (64 - FMT_BUILTIN_CLZLL(n | 1)) * 1233 >> 12;
|
2018-08-25 23:08:32 +00:00
|
|
|
return to_unsigned(t) - (n < data::ZERO_OR_POWERS_OF_10_64[t]) + 1;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
// Fallback version of count_digits used when __builtin_clz is not available.
|
|
|
|
inline unsigned count_digits(uint64_t n) {
|
|
|
|
unsigned count = 1;
|
|
|
|
for (;;) {
|
|
|
|
// Integer division is slow so do it for a group of four digits instead
|
|
|
|
// of for every digit. The idea comes from the talk by Alexandrescu
|
|
|
|
// "Three Optimization Tips for C++". See speed-test for a comparison.
|
|
|
|
if (n < 10) return count;
|
|
|
|
if (n < 100) return count + 1;
|
|
|
|
if (n < 1000) return count + 2;
|
|
|
|
if (n < 10000) return count + 3;
|
|
|
|
n /= 10000u;
|
|
|
|
count += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-07-21 16:13:21 +00:00
|
|
|
// Counts the number of code points in a UTF-8 string.
|
|
|
|
FMT_API size_t count_code_points(u8string_view s);
|
|
|
|
|
2017-12-11 00:05:51 +00:00
|
|
|
#if FMT_HAS_CPP_ATTRIBUTE(always_inline)
|
|
|
|
# define FMT_ALWAYS_INLINE __attribute__((always_inline))
|
|
|
|
#else
|
|
|
|
# define FMT_ALWAYS_INLINE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
template <typename Handler>
|
|
|
|
inline char *lg(uint32_t n, Handler h) FMT_ALWAYS_INLINE;
|
|
|
|
|
|
|
|
// Computes g = floor(log10(n)) and calls h.on<g>(n);
|
|
|
|
template <typename Handler>
|
|
|
|
inline char *lg(uint32_t n, Handler h) {
|
|
|
|
return n < 100 ? n < 10 ? h.template on<0>(n) : h.template on<1>(n)
|
|
|
|
: n < 1000000
|
|
|
|
? n < 10000 ? n < 1000 ? h.template on<2>(n)
|
|
|
|
: h.template on<3>(n)
|
|
|
|
: n < 100000 ? h.template on<4>(n)
|
|
|
|
: h.template on<5>(n)
|
|
|
|
: n < 100000000 ? n < 10000000 ? h.template on<6>(n)
|
|
|
|
: h.template on<7>(n)
|
|
|
|
: n < 1000000000 ? h.template on<8>(n)
|
|
|
|
: h.template on<9>(n);
|
|
|
|
}
|
|
|
|
|
|
|
|
// An lg handler that formats a decimal number.
|
|
|
|
// Usage: lg(n, decimal_formatter(buffer));
|
|
|
|
class decimal_formatter {
|
|
|
|
private:
|
|
|
|
char *buffer_;
|
|
|
|
|
|
|
|
void write_pair(unsigned N, uint32_t index) {
|
|
|
|
std::memcpy(buffer_ + N, data::DIGITS + index * 2, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit decimal_formatter(char *buf) : buffer_(buf) {}
|
|
|
|
|
|
|
|
template <unsigned N> char *on(uint32_t u) {
|
|
|
|
if (N == 0) {
|
|
|
|
*buffer_ = static_cast<char>(u) + '0';
|
|
|
|
} else if (N == 1) {
|
|
|
|
write_pair(0, u);
|
|
|
|
} else {
|
2017-12-11 00:09:35 +00:00
|
|
|
// The idea of using 4.32 fixed-point numbers is based on
|
|
|
|
// https://github.com/jeaiii/itoa
|
2017-12-11 00:05:51 +00:00
|
|
|
unsigned n = N - 1;
|
|
|
|
unsigned a = n / 5 * n * 53 / 16;
|
2018-08-25 23:08:32 +00:00
|
|
|
uint64_t t = ((1ULL << (32 + a)) /
|
|
|
|
data::ZERO_OR_POWERS_OF_10_32[n] + 1 - n / 9);
|
2017-12-11 00:05:51 +00:00
|
|
|
t = ((t * u) >> a) + n / 5 * 4;
|
|
|
|
write_pair(0, t >> 32);
|
2018-06-27 12:31:20 +00:00
|
|
|
for (unsigned i = 2; i < N; i += 2) {
|
2017-12-11 00:05:51 +00:00
|
|
|
t = 100ULL * static_cast<uint32_t>(t);
|
|
|
|
write_pair(i, t >> 32);
|
|
|
|
}
|
|
|
|
if (N % 2 == 0) {
|
|
|
|
buffer_[N] = static_cast<char>(
|
|
|
|
(10ULL * static_cast<uint32_t>(t)) >> 32) + '0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return buffer_ += N + 1;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// An lg handler that formats a decimal number with a terminating null.
|
|
|
|
class decimal_formatter_null : public decimal_formatter {
|
|
|
|
public:
|
|
|
|
explicit decimal_formatter_null(char *buf) : decimal_formatter(buf) {}
|
|
|
|
|
|
|
|
template <unsigned N> char *on(uint32_t u) {
|
|
|
|
char *buf = decimal_formatter::on<N>(u);
|
|
|
|
*buf = '\0';
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
#ifdef FMT_BUILTIN_CLZ
|
|
|
|
// Optional version of count_digits for better performance on 32-bit platforms.
|
|
|
|
inline unsigned count_digits(uint32_t n) {
|
2016-03-01 16:12:29 +00:00
|
|
|
int t = (32 - FMT_BUILTIN_CLZ(n | 1)) * 1233 >> 12;
|
2018-08-25 23:08:32 +00:00
|
|
|
return to_unsigned(t) - (n < data::ZERO_OR_POWERS_OF_10_32[t]) + 1;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-04-18 02:06:03 +00:00
|
|
|
// A functor that doesn't add a thousands separator.
|
2017-02-19 14:46:51 +00:00
|
|
|
struct no_thousands_sep {
|
2018-04-07 14:24:07 +00:00
|
|
|
typedef char char_type;
|
|
|
|
|
2016-04-18 02:06:03 +00:00
|
|
|
template <typename Char>
|
|
|
|
void operator()(Char *) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
// A functor that adds a thousands separator.
|
2017-03-25 15:20:06 +00:00
|
|
|
template <typename Char>
|
2017-02-19 14:46:51 +00:00
|
|
|
class add_thousands_sep {
|
2016-04-18 02:06:03 +00:00
|
|
|
private:
|
2017-09-04 20:12:52 +00:00
|
|
|
basic_string_view<Char> sep_;
|
2016-04-18 02:06:03 +00:00
|
|
|
|
|
|
|
// Index of a decimal digit with the least significant digit having index 0.
|
|
|
|
unsigned digit_index_;
|
|
|
|
|
|
|
|
public:
|
2018-04-07 14:24:07 +00:00
|
|
|
typedef Char char_type;
|
|
|
|
|
2017-09-04 20:12:52 +00:00
|
|
|
explicit add_thousands_sep(basic_string_view<Char> sep)
|
2017-02-19 14:46:51 +00:00
|
|
|
: sep_(sep), digit_index_(0) {}
|
2016-04-18 02:06:03 +00:00
|
|
|
|
2018-04-07 14:24:07 +00:00
|
|
|
void operator()(Char *&buffer) {
|
2016-04-18 02:06:03 +00:00
|
|
|
if (++digit_index_ % 3 != 0)
|
|
|
|
return;
|
|
|
|
buffer -= sep_.size();
|
2016-05-07 14:10:40 +00:00
|
|
|
std::uninitialized_copy(sep_.data(), sep_.data() + sep_.size(),
|
2018-04-07 21:54:17 +00:00
|
|
|
internal::make_checked(buffer, sep_.size()));
|
2016-04-18 02:06:03 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-12-03 17:18:06 +00:00
|
|
|
template <typename Char>
|
2018-03-28 16:33:49 +00:00
|
|
|
FMT_API Char thousands_sep(locale_provider *lp);
|
2017-12-03 17:18:06 +00:00
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
// Formats a decimal unsigned integer value writing into buffer.
|
2016-04-18 02:06:03 +00:00
|
|
|
// thousands_sep is a functor that is called after writing each char to
|
|
|
|
// add a thousands separator if necessary.
|
|
|
|
template <typename UInt, typename Char, typename ThousandsSep>
|
2018-01-15 19:30:53 +00:00
|
|
|
inline Char *format_decimal(Char *buffer, UInt value, unsigned num_digits,
|
|
|
|
ThousandsSep thousands_sep) {
|
2016-01-28 12:33:16 +00:00
|
|
|
buffer += num_digits;
|
2018-01-15 19:30:53 +00:00
|
|
|
Char *end = buffer;
|
2016-01-28 12:33:16 +00:00
|
|
|
while (value >= 100) {
|
|
|
|
// Integer division is slow so do it for a group of two digits instead
|
|
|
|
// of for every digit. The idea comes from the talk by Alexandrescu
|
|
|
|
// "Three Optimization Tips for C++". See speed-test for a comparison.
|
|
|
|
unsigned index = static_cast<unsigned>((value % 100) * 2);
|
|
|
|
value /= 100;
|
2017-02-19 14:46:51 +00:00
|
|
|
*--buffer = data::DIGITS[index + 1];
|
2016-04-18 02:06:03 +00:00
|
|
|
thousands_sep(buffer);
|
2017-02-19 14:46:51 +00:00
|
|
|
*--buffer = data::DIGITS[index];
|
2016-04-18 02:06:03 +00:00
|
|
|
thousands_sep(buffer);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
if (value < 10) {
|
|
|
|
*--buffer = static_cast<char>('0' + value);
|
2018-01-15 19:30:53 +00:00
|
|
|
return end;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
unsigned index = static_cast<unsigned>(value * 2);
|
2017-02-19 14:46:51 +00:00
|
|
|
*--buffer = data::DIGITS[index + 1];
|
2016-07-11 13:23:17 +00:00
|
|
|
thousands_sep(buffer);
|
2017-02-19 14:46:51 +00:00
|
|
|
*--buffer = data::DIGITS[index];
|
2018-01-15 19:30:53 +00:00
|
|
|
return end;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 19:30:53 +00:00
|
|
|
template <typename UInt, typename Iterator, typename ThousandsSep>
|
|
|
|
inline Iterator format_decimal(
|
2018-04-05 01:30:03 +00:00
|
|
|
Iterator out, UInt value, unsigned num_digits, ThousandsSep sep) {
|
2018-04-07 14:24:07 +00:00
|
|
|
typedef typename ThousandsSep::char_type char_type;
|
2018-01-15 19:30:53 +00:00
|
|
|
// Buffer should be large enough to hold all digits (digits10 + 1) and null.
|
2018-04-07 14:24:07 +00:00
|
|
|
char_type buffer[std::numeric_limits<UInt>::digits10 + 2];
|
2018-04-05 01:30:03 +00:00
|
|
|
format_decimal(buffer, value, num_digits, sep);
|
2018-01-15 19:30:53 +00:00
|
|
|
return std::copy_n(buffer, num_digits, out);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename It, typename UInt>
|
|
|
|
inline It format_decimal(It out, UInt value, unsigned num_digits) {
|
|
|
|
return format_decimal(out, value, num_digits, no_thousands_sep());
|
|
|
|
}
|
|
|
|
|
|
|
|
template <unsigned BASE_BITS, typename Char, typename UInt>
|
|
|
|
inline Char *format_uint(Char *buffer, UInt value, unsigned num_digits,
|
|
|
|
bool upper = false) {
|
|
|
|
buffer += num_digits;
|
|
|
|
Char *end = buffer;
|
|
|
|
do {
|
|
|
|
const char *digits = upper ? "0123456789ABCDEF" : "0123456789abcdef";
|
|
|
|
unsigned digit = (value & ((1 << BASE_BITS) - 1));
|
|
|
|
*--buffer = BASE_BITS < 4 ? static_cast<char>('0' + digit) : digits[digit];
|
|
|
|
} while ((value >>= BASE_BITS) != 0);
|
|
|
|
return end;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <unsigned BASE_BITS, typename It, typename UInt>
|
|
|
|
inline It format_uint(It out, UInt value, unsigned num_digits,
|
|
|
|
bool upper = false) {
|
|
|
|
// Buffer should be large enough to hold all digits (digits / BASE_BITS + 1)
|
|
|
|
// and null.
|
|
|
|
char buffer[std::numeric_limits<UInt>::digits / BASE_BITS + 2];
|
|
|
|
format_uint<BASE_BITS>(buffer, value, num_digits, upper);
|
|
|
|
return std::copy_n(buffer, num_digits, out);
|
2016-04-18 02:06:03 +00:00
|
|
|
}
|
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
# define FMT_USE_WINDOWS_H 0
|
|
|
|
#elif !defined(FMT_USE_WINDOWS_H)
|
|
|
|
# define FMT_USE_WINDOWS_H 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Define FMT_USE_WINDOWS_H to 0 to disable use of windows.h.
|
|
|
|
// All the functionality that relies on it will be disabled too.
|
|
|
|
#if FMT_USE_WINDOWS_H
|
|
|
|
// A converter from UTF-8 to UTF-16.
|
|
|
|
// It is only provided for Windows since other systems support UTF-8 natively.
|
2017-02-19 14:46:51 +00:00
|
|
|
class utf8_to_utf16 {
|
2016-01-28 12:33:16 +00:00
|
|
|
private:
|
2017-02-19 14:46:51 +00:00
|
|
|
wmemory_buffer buffer_;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
public:
|
2017-02-19 14:46:51 +00:00
|
|
|
FMT_API explicit utf8_to_utf16(string_view s);
|
2017-02-18 14:52:52 +00:00
|
|
|
operator wstring_view() const { return wstring_view(&buffer_[0], size()); }
|
2016-01-28 12:33:16 +00:00
|
|
|
size_t size() const { return buffer_.size() - 1; }
|
|
|
|
const wchar_t *c_str() const { return &buffer_[0]; }
|
|
|
|
std::wstring str() const { return std::wstring(&buffer_[0], size()); }
|
|
|
|
};
|
|
|
|
|
|
|
|
// A converter from UTF-16 to UTF-8.
|
|
|
|
// It is only provided for Windows since other systems support UTF-8 natively.
|
2017-02-19 16:41:38 +00:00
|
|
|
class utf16_to_utf8 {
|
2016-01-28 12:33:16 +00:00
|
|
|
private:
|
2017-02-19 14:46:51 +00:00
|
|
|
memory_buffer buffer_;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
public:
|
2017-02-19 16:41:38 +00:00
|
|
|
utf16_to_utf8() {}
|
|
|
|
FMT_API explicit utf16_to_utf8(wstring_view s);
|
2017-02-18 14:52:52 +00:00
|
|
|
operator string_view() const { return string_view(&buffer_[0], size()); }
|
2016-01-28 12:33:16 +00:00
|
|
|
size_t size() const { return buffer_.size() - 1; }
|
|
|
|
const char *c_str() const { return &buffer_[0]; }
|
|
|
|
std::string str() const { return std::string(&buffer_[0], size()); }
|
|
|
|
|
|
|
|
// Performs conversion returning a system error code instead of
|
|
|
|
// throwing exception on conversion error. This method may still throw
|
|
|
|
// in case of memory allocation error.
|
2017-02-18 14:52:52 +00:00
|
|
|
FMT_API int convert(wstring_view s);
|
2016-01-28 12:33:16 +00:00
|
|
|
};
|
|
|
|
|
2018-01-15 16:22:31 +00:00
|
|
|
FMT_API void format_windows_error(fmt::internal::buffer &out, int error_code,
|
2017-02-18 14:52:52 +00:00
|
|
|
fmt::string_view message) FMT_NOEXCEPT;
|
2016-01-28 12:33:16 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
template <typename T = void>
|
2017-02-19 16:41:38 +00:00
|
|
|
struct null {};
|
2016-12-24 15:37:33 +00:00
|
|
|
} // namespace internal
|
|
|
|
|
2017-02-19 16:41:38 +00:00
|
|
|
enum alignment {
|
2016-01-28 12:33:16 +00:00
|
|
|
ALIGN_DEFAULT, ALIGN_LEFT, ALIGN_RIGHT, ALIGN_CENTER, ALIGN_NUMERIC
|
|
|
|
};
|
|
|
|
|
|
|
|
// Flags.
|
2017-11-24 15:54:22 +00:00
|
|
|
enum {SIGN_FLAG = 1, PLUS_FLAG = 2, MINUS_FLAG = 4, HASH_FLAG = 8};
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-01-22 19:28:55 +00:00
|
|
|
enum format_spec_tag {fill_tag, align_tag, width_tag, type_tag};
|
|
|
|
|
|
|
|
// Format specifier.
|
|
|
|
template <typename T, format_spec_tag>
|
|
|
|
class format_spec {
|
|
|
|
private:
|
|
|
|
T value_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef T value_type;
|
|
|
|
|
|
|
|
explicit format_spec(T value) : value_(value) {}
|
|
|
|
|
|
|
|
T value() const { return value_; }
|
|
|
|
};
|
|
|
|
|
2017-01-22 20:16:16 +00:00
|
|
|
// template <typename Char>
|
2018-02-11 16:32:02 +00:00
|
|
|
// typedef format_spec<Char, fill_tag> fill_spec;
|
2017-01-22 19:28:55 +00:00
|
|
|
template <typename Char>
|
2017-01-22 19:48:02 +00:00
|
|
|
class fill_spec : public format_spec<Char, fill_tag> {
|
|
|
|
public:
|
|
|
|
explicit fill_spec(Char value) : format_spec<Char, fill_tag>(value) {}
|
|
|
|
};
|
2017-01-22 19:28:55 +00:00
|
|
|
|
2017-01-22 20:16:16 +00:00
|
|
|
typedef format_spec<unsigned, width_tag> width_spec;
|
|
|
|
typedef format_spec<char, type_tag> type_spec;
|
2017-01-22 19:28:55 +00:00
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
// An empty format specifier.
|
2017-02-19 16:41:38 +00:00
|
|
|
struct empty_spec {};
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-02-19 16:41:38 +00:00
|
|
|
// An alignment specifier.
|
2017-08-27 16:56:45 +00:00
|
|
|
struct align_spec : empty_spec {
|
2016-01-28 12:33:16 +00:00
|
|
|
unsigned width_;
|
|
|
|
// Fill is always wchar_t and cast to char if necessary to avoid having
|
2017-07-30 15:37:26 +00:00
|
|
|
// two specialization of AlignSpec and its subclasses.
|
2016-01-28 12:33:16 +00:00
|
|
|
wchar_t fill_;
|
2017-02-19 16:41:38 +00:00
|
|
|
alignment align_;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR align_spec(
|
2017-10-22 15:18:26 +00:00
|
|
|
unsigned width, wchar_t fill, alignment align = ALIGN_DEFAULT)
|
2017-02-19 16:41:38 +00:00
|
|
|
: width_(width), fill_(fill), align_(align) {}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR unsigned width() const { return width_; }
|
|
|
|
FMT_CONSTEXPR wchar_t fill() const { return fill_; }
|
|
|
|
FMT_CONSTEXPR alignment align() const { return align_; }
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
int precision() const { return -1; }
|
|
|
|
};
|
|
|
|
|
2017-01-28 12:51:35 +00:00
|
|
|
// Format specifiers.
|
2017-01-28 13:17:47 +00:00
|
|
|
template <typename Char>
|
2017-08-27 16:56:45 +00:00
|
|
|
class basic_format_specs : public align_spec {
|
2017-01-22 19:28:55 +00:00
|
|
|
public:
|
2016-01-28 12:33:16 +00:00
|
|
|
unsigned flags_;
|
|
|
|
int precision_;
|
2017-09-03 15:28:30 +00:00
|
|
|
Char type_;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR basic_format_specs(
|
2017-10-22 15:18:26 +00:00
|
|
|
unsigned width = 0, char type = 0, wchar_t fill = ' ')
|
2017-08-27 16:56:45 +00:00
|
|
|
: align_spec(width, fill), flags_(0), precision_(-1), type_(type) {}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR bool flag(unsigned f) const { return (flags_ & f) != 0; }
|
|
|
|
FMT_CONSTEXPR int precision() const { return precision_; }
|
|
|
|
FMT_CONSTEXPR Char type() const { return type_; }
|
2016-01-28 12:33:16 +00:00
|
|
|
};
|
|
|
|
|
2017-01-28 13:17:47 +00:00
|
|
|
typedef basic_format_specs<char> format_specs;
|
|
|
|
|
2017-12-06 15:42:42 +00:00
|
|
|
template <typename Char, typename ErrorHandler>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR unsigned basic_parse_context<Char, ErrorHandler>::next_arg_id() {
|
2017-12-06 15:42:42 +00:00
|
|
|
if (next_arg_id_ >= 0)
|
|
|
|
return internal::to_unsigned(next_arg_id_++);
|
2018-06-04 09:59:59 +00:00
|
|
|
on_error("cannot switch from manual to automatic argument indexing");
|
|
|
|
return 0;
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
2017-11-19 16:49:58 +00:00
|
|
|
|
|
|
|
namespace internal {
|
|
|
|
|
2018-07-22 16:39:50 +00:00
|
|
|
template <typename S>
|
|
|
|
struct format_string_traits<
|
|
|
|
S, typename std::enable_if<std::is_base_of<compile_string, S>::value>::type>:
|
|
|
|
format_string_traits_base<char> {};
|
|
|
|
|
2018-03-15 13:45:31 +00:00
|
|
|
template <typename Char, typename Handler>
|
|
|
|
FMT_CONSTEXPR void handle_int_type_spec(Char spec, Handler &&handler) {
|
2017-11-23 17:14:37 +00:00
|
|
|
switch (spec) {
|
2017-11-08 13:56:52 +00:00
|
|
|
case 0: case 'd':
|
|
|
|
handler.on_dec();
|
|
|
|
break;
|
|
|
|
case 'x': case 'X':
|
|
|
|
handler.on_hex();
|
|
|
|
break;
|
|
|
|
case 'b': case 'B':
|
|
|
|
handler.on_bin();
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
handler.on_oct();
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
handler.on_num();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
handler.on_error();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-15 13:45:31 +00:00
|
|
|
template <typename Char, typename Handler>
|
|
|
|
FMT_CONSTEXPR void handle_float_type_spec(Char spec, Handler &&handler) {
|
2017-11-23 17:14:37 +00:00
|
|
|
switch (spec) {
|
|
|
|
case 0: case 'g': case 'G':
|
|
|
|
handler.on_general();
|
|
|
|
break;
|
|
|
|
case 'e': case 'E':
|
|
|
|
handler.on_exp();
|
|
|
|
break;
|
|
|
|
case 'f': case 'F':
|
|
|
|
handler.on_fixed();
|
|
|
|
break;
|
|
|
|
case 'a': case 'A':
|
|
|
|
handler.on_hex();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
handler.on_error();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-24 15:54:22 +00:00
|
|
|
template <typename Char, typename Handler>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void handle_char_specs(
|
2018-09-12 14:34:22 +00:00
|
|
|
const basic_format_specs<Char> *specs, Handler &&handler) {
|
|
|
|
if (!specs) return handler.on_char();
|
|
|
|
if (specs->type() && specs->type() != 'c') return handler.on_int();
|
|
|
|
if (specs->align() == ALIGN_NUMERIC || specs->flag(~0u) != 0)
|
2017-11-24 15:54:22 +00:00
|
|
|
handler.on_error("invalid format specifier for char");
|
|
|
|
handler.on_char();
|
|
|
|
}
|
|
|
|
|
2018-03-15 13:45:31 +00:00
|
|
|
template <typename Char, typename Handler>
|
|
|
|
FMT_CONSTEXPR void handle_cstring_type_spec(Char spec, Handler &&handler) {
|
2017-11-24 17:54:28 +00:00
|
|
|
if (spec == 0 || spec == 's')
|
|
|
|
handler.on_string();
|
|
|
|
else if (spec == 'p')
|
|
|
|
handler.on_pointer();
|
|
|
|
else
|
|
|
|
handler.on_error("invalid type specifier");
|
|
|
|
}
|
|
|
|
|
2018-01-14 15:19:23 +00:00
|
|
|
template <typename Char, typename ErrorHandler>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void check_string_type_spec(Char spec, ErrorHandler &&eh) {
|
2017-11-24 17:54:28 +00:00
|
|
|
if (spec != 0 && spec != 's')
|
|
|
|
eh.on_error("invalid type specifier");
|
|
|
|
}
|
|
|
|
|
2018-03-15 13:45:31 +00:00
|
|
|
template <typename Char, typename ErrorHandler>
|
|
|
|
FMT_CONSTEXPR void check_pointer_type_spec(Char spec, ErrorHandler &&eh) {
|
2017-11-23 18:12:23 +00:00
|
|
|
if (spec != 0 && spec != 'p')
|
|
|
|
eh.on_error("invalid type specifier");
|
|
|
|
}
|
|
|
|
|
2017-11-16 14:55:49 +00:00
|
|
|
template <typename ErrorHandler>
|
2017-11-18 14:58:14 +00:00
|
|
|
class int_type_checker : private ErrorHandler {
|
2017-11-16 14:55:49 +00:00
|
|
|
public:
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR explicit int_type_checker(ErrorHandler eh) : ErrorHandler(eh) {}
|
2017-11-16 14:55:49 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_dec() {}
|
|
|
|
FMT_CONSTEXPR void on_hex() {}
|
|
|
|
FMT_CONSTEXPR void on_bin() {}
|
|
|
|
FMT_CONSTEXPR void on_oct() {}
|
|
|
|
FMT_CONSTEXPR void on_num() {}
|
2017-11-08 14:43:56 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_error() {
|
2017-11-18 14:58:14 +00:00
|
|
|
ErrorHandler::on_error("invalid type specifier");
|
2017-11-08 14:43:56 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-11-23 17:14:37 +00:00
|
|
|
template <typename ErrorHandler>
|
|
|
|
class float_type_checker : private ErrorHandler {
|
|
|
|
public:
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR explicit float_type_checker(ErrorHandler eh)
|
|
|
|
: ErrorHandler(eh) {}
|
2017-11-23 17:14:37 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_general() {}
|
|
|
|
FMT_CONSTEXPR void on_exp() {}
|
|
|
|
FMT_CONSTEXPR void on_fixed() {}
|
|
|
|
FMT_CONSTEXPR void on_hex() {}
|
2017-11-23 17:14:37 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_error() {
|
2017-11-23 17:14:37 +00:00
|
|
|
ErrorHandler::on_error("invalid type specifier");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-05-18 01:03:43 +00:00
|
|
|
template <typename ErrorHandler, typename CharType>
|
2017-11-24 15:54:22 +00:00
|
|
|
class char_specs_checker : public ErrorHandler {
|
|
|
|
private:
|
2018-05-18 01:03:43 +00:00
|
|
|
CharType type_;
|
2017-11-24 15:54:22 +00:00
|
|
|
|
|
|
|
public:
|
2018-05-18 01:03:43 +00:00
|
|
|
FMT_CONSTEXPR char_specs_checker(CharType type, ErrorHandler eh)
|
2017-11-24 15:54:22 +00:00
|
|
|
: ErrorHandler(eh), type_(type) {}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_int() {
|
2017-11-24 15:54:22 +00:00
|
|
|
handle_int_type_spec(type_, int_type_checker<ErrorHandler>(*this));
|
|
|
|
}
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_char() {}
|
2017-11-24 15:54:22 +00:00
|
|
|
};
|
|
|
|
|
2017-11-24 17:54:28 +00:00
|
|
|
template <typename ErrorHandler>
|
|
|
|
class cstring_type_checker : public ErrorHandler {
|
|
|
|
public:
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR explicit cstring_type_checker(ErrorHandler eh)
|
|
|
|
: ErrorHandler(eh) {}
|
2017-11-24 17:54:28 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_string() {}
|
|
|
|
FMT_CONSTEXPR void on_pointer() {}
|
2017-11-24 17:54:28 +00:00
|
|
|
};
|
|
|
|
|
2016-12-11 21:22:45 +00:00
|
|
|
template <typename Context>
|
2017-12-03 15:32:04 +00:00
|
|
|
void arg_map<Context>::init(const basic_format_args<Context> &args) {
|
2017-12-09 16:48:30 +00:00
|
|
|
if (map_)
|
2016-10-07 15:37:06 +00:00
|
|
|
return;
|
2018-01-06 17:09:50 +00:00
|
|
|
map_ = new entry[args.max_size()];
|
2018-03-07 15:36:13 +00:00
|
|
|
bool use_values = args.type(max_packed_args - 1) == internal::none_type;
|
2016-10-07 15:37:06 +00:00
|
|
|
if (use_values) {
|
|
|
|
for (unsigned i = 0;/*nothing*/; ++i) {
|
2017-09-06 14:12:07 +00:00
|
|
|
internal::type arg_type = args.type(i);
|
2016-10-07 15:37:06 +00:00
|
|
|
switch (arg_type) {
|
2018-02-16 17:20:33 +00:00
|
|
|
case internal::none_type:
|
2016-10-07 15:37:06 +00:00
|
|
|
return;
|
2018-06-05 06:32:28 +00:00
|
|
|
case internal::named_arg_type:
|
2018-01-06 17:09:50 +00:00
|
|
|
push_back(args.values_[i]);
|
2016-10-07 15:37:06 +00:00
|
|
|
break;
|
|
|
|
default:
|
2017-11-24 15:54:22 +00:00
|
|
|
break; // Do nothing.
|
2016-10-07 15:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-05 06:32:28 +00:00
|
|
|
for (unsigned i = 0; ; ++i) {
|
2016-12-11 21:22:45 +00:00
|
|
|
switch (args.args_[i].type_) {
|
2018-02-16 17:20:33 +00:00
|
|
|
case internal::none_type:
|
2016-10-07 15:37:06 +00:00
|
|
|
return;
|
2018-06-05 06:32:28 +00:00
|
|
|
case internal::named_arg_type:
|
2018-01-06 17:09:50 +00:00
|
|
|
push_back(args.args_[i].value_);
|
2016-10-07 15:37:06 +00:00
|
|
|
break;
|
|
|
|
default:
|
2017-11-24 15:54:22 +00:00
|
|
|
break; // Do nothing.
|
2016-10-07 15:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 23:34:48 +00:00
|
|
|
template <typename Range>
|
2017-02-19 16:41:38 +00:00
|
|
|
class arg_formatter_base {
|
2017-01-28 13:17:47 +00:00
|
|
|
public:
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename Range::value_type char_type;
|
2018-03-30 18:20:12 +00:00
|
|
|
typedef decltype(internal::declval<Range>().begin()) iterator;
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef basic_format_specs<char_type> format_specs;
|
2017-01-28 13:17:47 +00:00
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
private:
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef basic_writer<Range> writer_type;
|
2017-12-26 17:00:22 +00:00
|
|
|
writer_type writer_;
|
2018-09-12 14:34:22 +00:00
|
|
|
format_specs *specs_;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-07 15:08:14 +00:00
|
|
|
struct char_writer {
|
|
|
|
char_type value;
|
|
|
|
template <typename It>
|
2018-04-08 20:38:12 +00:00
|
|
|
void operator()(It &&it) const { *it++ = value; }
|
2018-02-07 15:08:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void write_char(char_type value) {
|
2018-09-12 14:34:22 +00:00
|
|
|
if (specs_)
|
|
|
|
writer_.write_padded(1, *specs_, char_writer{value});
|
|
|
|
else
|
|
|
|
writer_.write(value);
|
2017-11-24 15:54:22 +00:00
|
|
|
}
|
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
void write_pointer(const void *p) {
|
2018-09-12 14:34:22 +00:00
|
|
|
format_specs specs = specs_ ? *specs_ : format_specs();
|
2018-04-30 18:09:40 +00:00
|
|
|
specs.flags_ = HASH_FLAG;
|
|
|
|
specs.type_ = 'x';
|
|
|
|
writer_.write_int(reinterpret_cast<uintptr_t>(p), specs);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2017-12-26 17:00:22 +00:00
|
|
|
writer_type &writer() { return writer_; }
|
2018-09-12 14:34:22 +00:00
|
|
|
format_specs *spec() { return specs_; }
|
2018-03-30 18:20:12 +00:00
|
|
|
iterator out() { return writer_.out(); }
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
void write(bool value) {
|
2018-09-12 14:34:22 +00:00
|
|
|
string_view sv(value ? "true" : "false");
|
|
|
|
specs_ ? writer_.write_str(sv, *specs_) : writer_.write(sv);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-01-13 23:34:48 +00:00
|
|
|
void write(const char_type *value) {
|
2018-03-21 16:01:51 +00:00
|
|
|
if (!value)
|
|
|
|
FMT_THROW(format_error("string pointer is null"));
|
|
|
|
auto length = std::char_traits<char_type>::length(value);
|
2018-09-12 14:34:22 +00:00
|
|
|
basic_string_view<char_type> sv(value, length);
|
|
|
|
specs_ ? writer_.write_str(sv, *specs_) : writer_.write(sv);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2018-09-12 14:34:22 +00:00
|
|
|
arg_formatter_base(Range r, format_specs *s): writer_(r), specs_(s) {}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-03-30 18:20:12 +00:00
|
|
|
iterator operator()(monostate) {
|
2016-12-27 15:43:25 +00:00
|
|
|
FMT_ASSERT(false, "invalid argument type");
|
2018-03-30 18:20:12 +00:00
|
|
|
return out();
|
2016-12-27 15:43:25 +00:00
|
|
|
}
|
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
template <typename T>
|
2018-03-30 18:20:12 +00:00
|
|
|
typename std::enable_if<std::is_integral<T>::value, iterator>::type
|
|
|
|
operator()(T value) {
|
2018-07-04 18:36:38 +00:00
|
|
|
// MSVC2013 fails to compile separate overloads for bool and char_type so
|
|
|
|
// use std::is_same instead.
|
|
|
|
if (std::is_same<T, bool>::value) {
|
2018-09-12 14:34:22 +00:00
|
|
|
if (specs_ && specs_->type_)
|
2018-07-04 18:36:38 +00:00
|
|
|
return (*this)(value ? 1 : 0);
|
2018-07-04 20:17:03 +00:00
|
|
|
write(value != 0);
|
2018-07-04 18:36:38 +00:00
|
|
|
} else if (std::is_same<T, char_type>::value) {
|
|
|
|
internal::handle_char_specs(
|
|
|
|
specs_, char_spec_handler(*this, static_cast<char_type>(value)));
|
|
|
|
} else {
|
2018-09-12 14:34:22 +00:00
|
|
|
specs_ ? writer_.write_int(value, *specs_) : writer_.write(value);
|
2018-07-04 18:36:38 +00:00
|
|
|
}
|
2018-03-30 18:20:12 +00:00
|
|
|
return out();
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2018-03-30 18:20:12 +00:00
|
|
|
typename std::enable_if<std::is_floating_point<T>::value, iterator>::type
|
|
|
|
operator()(T value) {
|
2018-09-12 14:34:22 +00:00
|
|
|
writer_.write_double(value, specs_ ? *specs_ : format_specs());
|
2018-03-30 18:20:12 +00:00
|
|
|
return out();
|
|
|
|
}
|
2016-11-19 15:39:07 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
struct char_spec_handler : internal::error_handler {
|
|
|
|
arg_formatter_base &formatter;
|
|
|
|
char_type value;
|
2017-11-24 15:54:22 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
char_spec_handler(arg_formatter_base& f, char_type val)
|
|
|
|
: formatter(f), value(val) {}
|
2017-11-24 15:54:22 +00:00
|
|
|
|
2018-09-12 14:34:22 +00:00
|
|
|
void on_int() {
|
|
|
|
if (formatter.specs_)
|
|
|
|
formatter.writer_.write_int(value, *formatter.specs_);
|
|
|
|
else
|
|
|
|
formatter.writer_.write(value);
|
|
|
|
}
|
2018-03-03 22:04:59 +00:00
|
|
|
void on_char() { formatter.write_char(value); }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cstring_spec_handler : internal::error_handler {
|
|
|
|
arg_formatter_base &formatter;
|
|
|
|
const char_type *value;
|
2017-11-24 17:54:28 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
cstring_spec_handler(arg_formatter_base &f, const char_type *val)
|
|
|
|
: formatter(f), value(val) {}
|
2017-11-24 17:54:28 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
void on_string() { formatter.write(value); }
|
|
|
|
void on_pointer() { formatter.write_pointer(value); }
|
|
|
|
};
|
|
|
|
|
2018-03-30 18:20:12 +00:00
|
|
|
iterator operator()(const char_type *value) {
|
2018-09-12 14:34:22 +00:00
|
|
|
if (!specs_) return write(value), out();
|
2017-11-24 17:54:28 +00:00
|
|
|
internal::handle_cstring_type_spec(
|
2018-09-12 14:34:22 +00:00
|
|
|
specs_->type_, cstring_spec_handler(*this, value));
|
2018-03-30 18:20:12 +00:00
|
|
|
return out();
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 18:20:12 +00:00
|
|
|
iterator operator()(basic_string_view<char_type> value) {
|
2018-09-12 14:34:22 +00:00
|
|
|
if (specs_) {
|
|
|
|
internal::check_string_type_spec(
|
|
|
|
specs_->type_, internal::error_handler());
|
|
|
|
writer_.write_str(value, *specs_);
|
|
|
|
} else {
|
|
|
|
writer_.write(value);
|
|
|
|
}
|
2018-03-30 18:20:12 +00:00
|
|
|
return out();
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 18:20:12 +00:00
|
|
|
iterator operator()(const void *value) {
|
2018-09-12 14:34:22 +00:00
|
|
|
if (specs_)
|
|
|
|
check_pointer_type_spec(specs_->type_, internal::error_handler());
|
2016-01-28 12:33:16 +00:00
|
|
|
write_pointer(value);
|
2018-03-30 18:20:12 +00:00
|
|
|
return out();
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-11-20 17:36:27 +00:00
|
|
|
template <typename Char>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR bool is_name_start(Char c) {
|
2017-11-11 15:39:12 +00:00
|
|
|
return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || '_' == c;
|
|
|
|
}
|
2016-04-19 15:56:31 +00:00
|
|
|
|
2018-09-09 16:47:28 +00:00
|
|
|
// DEPRECATED: Parses the input as an unsigned integer. This function assumes
|
|
|
|
// that the first character is a digit and presence of a non-digit character at
|
|
|
|
// the end.
|
2017-11-11 15:39:12 +00:00
|
|
|
// it: an iterator pointing to the beginning of the input range.
|
|
|
|
template <typename Iterator, typename ErrorHandler>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR unsigned parse_nonnegative_int(Iterator &it, ErrorHandler &&eh) {
|
2017-11-11 15:39:12 +00:00
|
|
|
assert('0' <= *it && *it <= '9');
|
|
|
|
unsigned value = 0;
|
2017-11-12 14:58:11 +00:00
|
|
|
// Convert to unsigned to prevent a warning.
|
|
|
|
unsigned max_int = (std::numeric_limits<int>::max)();
|
|
|
|
unsigned big = max_int / 10;
|
2017-11-11 15:39:12 +00:00
|
|
|
do {
|
2017-11-12 14:58:11 +00:00
|
|
|
// Check for overflow.
|
|
|
|
if (value > big) {
|
|
|
|
value = max_int + 1;
|
|
|
|
break;
|
|
|
|
}
|
2018-06-27 12:31:20 +00:00
|
|
|
value = value * 10 + unsigned(*it - '0');
|
2017-11-11 15:39:12 +00:00
|
|
|
// Workaround for MSVC "setup_exception stack overflow" error:
|
|
|
|
auto next = it;
|
|
|
|
++next;
|
|
|
|
it = next;
|
|
|
|
} while ('0' <= *it && *it <= '9');
|
|
|
|
if (value > max_int)
|
2017-11-12 14:58:11 +00:00
|
|
|
eh.on_error("number is too big");
|
2017-11-11 15:39:12 +00:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2018-09-09 16:47:28 +00:00
|
|
|
// Parses the range [begin, end) as an unsigned integer. This function assumes
|
|
|
|
// that the range is non-empty and the first character is a digit.
|
|
|
|
template <typename Char, typename ErrorHandler>
|
|
|
|
FMT_CONSTEXPR unsigned parse_nonnegative_int(
|
|
|
|
const Char *&begin, const Char *end, ErrorHandler &&eh) {
|
|
|
|
assert(begin != end && '0' <= *begin && *begin <= '9');
|
|
|
|
unsigned value = 0;
|
|
|
|
// Convert to unsigned to prevent a warning.
|
|
|
|
unsigned max_int = (std::numeric_limits<int>::max)();
|
|
|
|
unsigned big = max_int / 10;
|
|
|
|
do {
|
|
|
|
// Check for overflow.
|
|
|
|
if (value > big) {
|
|
|
|
value = max_int + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
value = value * 10 + unsigned(*begin++ - '0');
|
|
|
|
} while (begin != end && '0' <= *begin && *begin <= '9');
|
|
|
|
if (value > max_int)
|
|
|
|
eh.on_error("number is too big");
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename Char, typename Context>
|
2018-03-03 22:04:59 +00:00
|
|
|
class custom_formatter: public function<bool> {
|
2017-11-11 15:39:12 +00:00
|
|
|
private:
|
|
|
|
Context &ctx_;
|
2017-01-28 13:17:47 +00:00
|
|
|
|
2016-04-19 15:56:31 +00:00
|
|
|
public:
|
2018-01-06 17:09:50 +00:00
|
|
|
explicit custom_formatter(Context &ctx): ctx_(ctx) {}
|
2017-01-28 13:17:47 +00:00
|
|
|
|
2018-04-04 14:38:21 +00:00
|
|
|
bool operator()(typename basic_format_arg<Context>::handle h) const {
|
2018-01-06 17:09:50 +00:00
|
|
|
h.format(ctx_);
|
2017-11-11 15:39:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
2016-04-19 15:56:31 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename T>
|
2018-03-03 22:04:59 +00:00
|
|
|
bool operator()(T) const { return false; }
|
2017-11-11 15:39:12 +00:00
|
|
|
};
|
2016-11-20 16:47:24 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename T>
|
|
|
|
struct is_integer {
|
|
|
|
enum {
|
|
|
|
value = std::is_integral<T>::value && !std::is_same<T, bool>::value &&
|
|
|
|
!std::is_same<T, char>::value && !std::is_same<T, wchar_t>::value
|
|
|
|
};
|
2016-04-19 15:56:31 +00:00
|
|
|
};
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename ErrorHandler>
|
2018-03-03 22:04:59 +00:00
|
|
|
class width_checker: public function<unsigned long long> {
|
2016-12-29 17:07:39 +00:00
|
|
|
public:
|
2018-02-03 14:14:10 +00:00
|
|
|
explicit FMT_CONSTEXPR width_checker(ErrorHandler &eh) : handler_(eh) {}
|
2017-08-13 20:09:02 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2018-04-30 08:07:43 +00:00
|
|
|
FMT_CONSTEXPR
|
2018-03-03 22:04:59 +00:00
|
|
|
typename std::enable_if<
|
2017-11-11 15:39:12 +00:00
|
|
|
is_integer<T>::value, unsigned long long>::type operator()(T value) {
|
|
|
|
if (is_negative(value))
|
|
|
|
handler_.on_error("negative width");
|
2018-06-27 12:31:20 +00:00
|
|
|
return static_cast<unsigned long long>(value);
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2016-11-07 00:11:24 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename T>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR typename std::enable_if<
|
2017-11-11 15:39:12 +00:00
|
|
|
!is_integer<T>::value, unsigned long long>::type operator()(T) {
|
2018-06-04 09:59:59 +00:00
|
|
|
handler_.on_error("width is not integer");
|
|
|
|
return 0;
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
private:
|
|
|
|
ErrorHandler &handler_;
|
|
|
|
};
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename ErrorHandler>
|
2018-03-03 22:04:59 +00:00
|
|
|
class precision_checker: public function<unsigned long long> {
|
2016-01-28 12:33:16 +00:00
|
|
|
public:
|
2018-02-03 14:14:10 +00:00
|
|
|
explicit FMT_CONSTEXPR precision_checker(ErrorHandler &eh) : handler_(eh) {}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename T>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR typename std::enable_if<
|
2017-11-11 15:39:12 +00:00
|
|
|
is_integer<T>::value, unsigned long long>::type operator()(T value) {
|
|
|
|
if (is_negative(value))
|
|
|
|
handler_.on_error("negative precision");
|
2018-06-27 12:31:20 +00:00
|
|
|
return static_cast<unsigned long long>(value);
|
2017-07-30 15:37:26 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename T>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR typename std::enable_if<
|
2017-11-11 15:39:12 +00:00
|
|
|
!is_integer<T>::value, unsigned long long>::type operator()(T) {
|
2018-06-04 09:59:59 +00:00
|
|
|
handler_.on_error("precision is not integer");
|
|
|
|
return 0;
|
2017-07-30 15:37:26 +00:00
|
|
|
}
|
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
private:
|
2017-11-11 15:39:12 +00:00
|
|
|
ErrorHandler &handler_;
|
|
|
|
};
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// A format specifier handler that sets fields in basic_format_specs.
|
|
|
|
template <typename Char>
|
2017-11-13 03:14:35 +00:00
|
|
|
class specs_setter {
|
2016-01-28 12:33:16 +00:00
|
|
|
public:
|
2018-02-03 14:14:10 +00:00
|
|
|
explicit FMT_CONSTEXPR specs_setter(basic_format_specs<Char> &specs):
|
2017-11-11 15:39:12 +00:00
|
|
|
specs_(specs) {}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR specs_setter(const specs_setter &other) : specs_(other.specs_) {}
|
2017-11-12 14:58:11 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_align(alignment align) { specs_.align_ = align; }
|
|
|
|
FMT_CONSTEXPR void on_fill(Char fill) { specs_.fill_ = fill; }
|
|
|
|
FMT_CONSTEXPR void on_plus() { specs_.flags_ |= SIGN_FLAG | PLUS_FLAG; }
|
|
|
|
FMT_CONSTEXPR void on_minus() { specs_.flags_ |= MINUS_FLAG; }
|
|
|
|
FMT_CONSTEXPR void on_space() { specs_.flags_ |= SIGN_FLAG; }
|
|
|
|
FMT_CONSTEXPR void on_hash() { specs_.flags_ |= HASH_FLAG; }
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_zero() {
|
2017-11-11 15:39:12 +00:00
|
|
|
specs_.align_ = ALIGN_NUMERIC;
|
|
|
|
specs_.fill_ = '0';
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_width(unsigned width) { specs_.width_ = width; }
|
|
|
|
FMT_CONSTEXPR void on_precision(unsigned precision) {
|
2018-06-27 12:31:20 +00:00
|
|
|
specs_.precision_ = static_cast<int>(precision);
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void end_precision() {}
|
2016-06-14 15:11:33 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_type(Char type) { specs_.type_ = type; }
|
2017-11-11 15:39:12 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
basic_format_specs<Char> &specs_;
|
2016-01-28 12:33:16 +00:00
|
|
|
};
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// A format specifier handler that checks if specifiers are consistent with the
|
|
|
|
// argument type.
|
|
|
|
template <typename Handler>
|
|
|
|
class specs_checker : public Handler {
|
|
|
|
public:
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR specs_checker(const Handler& handler, internal::type arg_type)
|
2017-11-11 15:39:12 +00:00
|
|
|
: Handler(handler), arg_type_(arg_type) {}
|
2016-07-19 18:33:55 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR specs_checker(const specs_checker &other)
|
2017-11-12 14:58:11 +00:00
|
|
|
: Handler(other), arg_type_(other.arg_type_) {}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_align(alignment align) {
|
2017-11-11 15:39:12 +00:00
|
|
|
if (align == ALIGN_NUMERIC)
|
2017-11-18 15:42:54 +00:00
|
|
|
require_numeric_argument();
|
2017-11-11 15:39:12 +00:00
|
|
|
Handler::on_align(align);
|
|
|
|
}
|
2016-05-12 03:36:22 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_plus() {
|
2017-11-18 15:42:54 +00:00
|
|
|
check_sign();
|
2017-11-11 15:39:12 +00:00
|
|
|
Handler::on_plus();
|
|
|
|
}
|
2016-05-12 03:36:22 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_minus() {
|
2017-11-18 15:42:54 +00:00
|
|
|
check_sign();
|
2017-11-11 15:39:12 +00:00
|
|
|
Handler::on_minus();
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_space() {
|
2017-11-18 15:42:54 +00:00
|
|
|
check_sign();
|
2017-11-11 15:39:12 +00:00
|
|
|
Handler::on_space();
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_hash() {
|
2017-11-18 15:42:54 +00:00
|
|
|
require_numeric_argument();
|
2017-11-11 15:39:12 +00:00
|
|
|
Handler::on_hash();
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_zero() {
|
2017-11-18 15:42:54 +00:00
|
|
|
require_numeric_argument();
|
2017-11-11 15:39:12 +00:00
|
|
|
Handler::on_zero();
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void end_precision() {
|
2018-02-16 17:20:33 +00:00
|
|
|
if (is_integral(arg_type_) || arg_type_ == pointer_type)
|
2017-11-16 14:55:49 +00:00
|
|
|
this->on_error("precision not allowed for this argument type");
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
private:
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void require_numeric_argument() {
|
2017-12-09 14:19:15 +00:00
|
|
|
if (!is_arithmetic(arg_type_))
|
2017-11-18 15:42:54 +00:00
|
|
|
this->on_error("format specifier requires numeric argument");
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void check_sign() {
|
2017-11-18 15:42:54 +00:00
|
|
|
require_numeric_argument();
|
2018-02-16 17:20:33 +00:00
|
|
|
if (is_integral(arg_type_) && arg_type_ != int_type &&
|
2018-02-16 18:13:54 +00:00
|
|
|
arg_type_ != long_long_type && arg_type_ != internal::char_type) {
|
2017-11-18 15:42:54 +00:00
|
|
|
this->on_error("format specifier requires signed argument");
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
internal::type arg_type_;
|
|
|
|
};
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-18 17:16:35 +00:00
|
|
|
template <template <typename> class Handler, typename T,
|
|
|
|
typename Context, typename ErrorHandler>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void set_dynamic_spec(
|
2018-04-04 14:38:21 +00:00
|
|
|
T &value, basic_format_arg<Context> arg, ErrorHandler eh) {
|
2018-09-12 15:39:24 +00:00
|
|
|
unsigned long long big_value = fmt::visit(Handler<ErrorHandler>(eh), arg);
|
2017-11-11 15:39:12 +00:00
|
|
|
if (big_value > (std::numeric_limits<int>::max)())
|
|
|
|
eh.on_error("number is too big");
|
2018-06-27 12:31:20 +00:00
|
|
|
value = static_cast<T>(big_value);
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
struct auto_id {};
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// The standard format specifier handler with checking.
|
|
|
|
template <typename Context>
|
|
|
|
class specs_handler: public specs_setter<typename Context::char_type> {
|
|
|
|
public:
|
|
|
|
typedef typename Context::char_type char_type;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-09-12 15:39:24 +00:00
|
|
|
FMT_CONSTEXPR specs_handler(
|
|
|
|
basic_format_specs<char_type> &specs, Context &ctx)
|
2017-11-11 15:39:12 +00:00
|
|
|
: specs_setter<char_type>(specs), context_(ctx) {}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename Id>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_dynamic_width(Id arg_id) {
|
2017-11-18 17:16:35 +00:00
|
|
|
set_dynamic_spec<width_checker>(
|
|
|
|
this->specs_.width_, get_arg(arg_id), context_.error_handler());
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename Id>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_dynamic_precision(Id arg_id) {
|
2017-11-11 15:39:12 +00:00
|
|
|
set_dynamic_spec<precision_checker>(
|
2017-11-18 17:16:35 +00:00
|
|
|
this->specs_.precision_, get_arg(arg_id), context_.error_handler());
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-13 03:14:35 +00:00
|
|
|
void on_error(const char *message) {
|
|
|
|
context_.on_error(message);
|
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
private:
|
2018-04-04 14:38:21 +00:00
|
|
|
FMT_CONSTEXPR basic_format_arg<Context> get_arg(auto_id) {
|
2017-11-11 15:39:12 +00:00
|
|
|
return context_.next_arg();
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename Id>
|
2018-04-04 14:38:21 +00:00
|
|
|
FMT_CONSTEXPR basic_format_arg<Context> get_arg(Id arg_id) {
|
2018-01-14 17:27:40 +00:00
|
|
|
context_.parse_context().check_arg_id(arg_id);
|
2017-11-11 15:39:12 +00:00
|
|
|
return context_.get_arg(arg_id);
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
Context &context_;
|
|
|
|
};
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// An argument reference.
|
|
|
|
template <typename Char>
|
|
|
|
struct arg_ref {
|
|
|
|
enum Kind { NONE, INDEX, NAME };
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR arg_ref() : kind(NONE), index(0) {}
|
|
|
|
FMT_CONSTEXPR explicit arg_ref(unsigned index) : kind(INDEX), index(index) {}
|
2017-11-11 15:39:12 +00:00
|
|
|
explicit arg_ref(basic_string_view<Char> name) : kind(NAME), name(name) {}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-04-05 04:11:31 +00:00
|
|
|
FMT_CONSTEXPR arg_ref &operator=(unsigned idx) {
|
2017-11-11 15:39:12 +00:00
|
|
|
kind = INDEX;
|
2018-04-05 04:11:31 +00:00
|
|
|
index = idx;
|
2017-11-11 15:39:12 +00:00
|
|
|
return *this;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
Kind kind;
|
2018-03-03 22:04:59 +00:00
|
|
|
FMT_UNION {
|
2017-11-11 15:39:12 +00:00
|
|
|
unsigned index;
|
|
|
|
basic_string_view<Char> name;
|
|
|
|
};
|
|
|
|
};
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Format specifiers with width and precision resolved at formatting rather
|
|
|
|
// than parsing time to allow re-using the same parsed specifiers with
|
|
|
|
// differents sets of arguments (precompilation of format strings).
|
|
|
|
template <typename Char>
|
|
|
|
struct dynamic_format_specs : basic_format_specs<Char> {
|
|
|
|
arg_ref<Char> width_ref;
|
|
|
|
arg_ref<Char> precision_ref;
|
|
|
|
};
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Format spec handler that saves references to arguments representing dynamic
|
|
|
|
// width and precision to be resolved at formatting time.
|
|
|
|
template <typename ParseContext>
|
|
|
|
class dynamic_specs_handler :
|
|
|
|
public specs_setter<typename ParseContext::char_type> {
|
|
|
|
public:
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename ParseContext::char_type char_type;
|
2017-01-22 19:28:55 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR dynamic_specs_handler(
|
2017-11-11 15:39:12 +00:00
|
|
|
dynamic_format_specs<char_type> &specs, ParseContext &ctx)
|
|
|
|
: specs_setter<char_type>(specs), specs_(specs), context_(ctx) {}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR dynamic_specs_handler(const dynamic_specs_handler &other)
|
2017-11-12 17:42:26 +00:00
|
|
|
: specs_setter<char_type>(other),
|
|
|
|
specs_(other.specs_), context_(other.context_) {}
|
2017-11-12 14:58:11 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename Id>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_dynamic_width(Id arg_id) {
|
2017-11-11 15:39:12 +00:00
|
|
|
specs_.width_ref = make_arg_ref(arg_id);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename Id>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_dynamic_precision(Id arg_id) {
|
2017-11-11 15:39:12 +00:00
|
|
|
specs_.precision_ref = make_arg_ref(arg_id);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_error(const char *message) {
|
2017-11-13 03:14:35 +00:00
|
|
|
context_.on_error(message);
|
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
private:
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef arg_ref<char_type> arg_ref_type;
|
2017-11-11 15:39:12 +00:00
|
|
|
|
|
|
|
template <typename Id>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR arg_ref_type make_arg_ref(Id arg_id) {
|
2017-11-11 15:39:12 +00:00
|
|
|
context_.check_arg_id(arg_id);
|
|
|
|
return arg_ref_type(arg_id);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR arg_ref_type make_arg_ref(auto_id) {
|
2017-11-26 17:29:55 +00:00
|
|
|
return arg_ref_type(context_.next_arg_id());
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
dynamic_format_specs<char_type> &specs_;
|
|
|
|
ParseContext &context_;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename Iterator, typename IDHandler>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR Iterator parse_arg_id(Iterator it, IDHandler &&handler) {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename std::iterator_traits<Iterator>::value_type char_type;
|
2017-11-11 15:39:12 +00:00
|
|
|
char_type c = *it;
|
|
|
|
if (c == '}' || c == ':') {
|
|
|
|
handler();
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
if (c >= '0' && c <= '9') {
|
|
|
|
unsigned index = parse_nonnegative_int(it, handler);
|
|
|
|
if (*it != '}' && *it != ':') {
|
|
|
|
handler.on_error("invalid format string");
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
handler(index);
|
|
|
|
return it;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
if (!is_name_start(c)) {
|
|
|
|
handler.on_error("invalid format string");
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
auto start = it;
|
|
|
|
do {
|
|
|
|
c = *++it;
|
|
|
|
} while (is_name_start(c) || ('0' <= c && c <= '9'));
|
2018-07-15 13:29:51 +00:00
|
|
|
handler(basic_string_view<char_type>(
|
|
|
|
pointer_from(start), to_unsigned(it - start)));
|
2017-11-11 15:39:12 +00:00
|
|
|
return it;
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-09-09 16:47:28 +00:00
|
|
|
template <typename Char, typename IDHandler>
|
|
|
|
FMT_CONSTEXPR const Char *parse_arg_id(
|
|
|
|
const Char *begin, const Char *end, IDHandler &&handler) {
|
|
|
|
assert(begin != end);
|
|
|
|
Char c = *begin;
|
|
|
|
if (c == '}' || c == ':')
|
|
|
|
return handler(), begin;
|
|
|
|
if (c >= '0' && c <= '9') {
|
|
|
|
unsigned index = parse_nonnegative_int(begin, end, handler);
|
|
|
|
if (begin == end || (*begin != '}' && *begin != ':'))
|
|
|
|
return handler.on_error("invalid format string"), begin;
|
|
|
|
handler(index);
|
|
|
|
return begin;
|
|
|
|
}
|
|
|
|
if (!is_name_start(c))
|
|
|
|
return handler.on_error("invalid format string"), begin;
|
|
|
|
auto it = begin;
|
|
|
|
do {
|
|
|
|
c = *++it;
|
|
|
|
} while (it != end && (is_name_start(c) || ('0' <= c && c <= '9')));
|
|
|
|
handler(basic_string_view<Char>(begin, to_unsigned(it - begin)));
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Adapts SpecHandler to IDHandler API for dynamic width.
|
|
|
|
template <typename SpecHandler, typename Char>
|
|
|
|
struct width_adapter {
|
2018-02-03 14:14:10 +00:00
|
|
|
explicit FMT_CONSTEXPR width_adapter(SpecHandler &h) : handler(h) {}
|
2017-11-11 15:39:12 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void operator()() { handler.on_dynamic_width(auto_id()); }
|
|
|
|
FMT_CONSTEXPR void operator()(unsigned id) { handler.on_dynamic_width(id); }
|
|
|
|
FMT_CONSTEXPR void operator()(basic_string_view<Char> id) {
|
2017-11-11 15:39:12 +00:00
|
|
|
handler.on_dynamic_width(id);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_error(const char *message) {
|
|
|
|
handler.on_error(message);
|
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
|
|
|
|
SpecHandler &handler;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Adapts SpecHandler to IDHandler API for dynamic precision.
|
|
|
|
template <typename SpecHandler, typename Char>
|
|
|
|
struct precision_adapter {
|
2018-02-03 14:14:10 +00:00
|
|
|
explicit FMT_CONSTEXPR precision_adapter(SpecHandler &h) : handler(h) {}
|
2017-11-11 15:39:12 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void operator()() { handler.on_dynamic_precision(auto_id()); }
|
|
|
|
FMT_CONSTEXPR void operator()(unsigned id) {
|
|
|
|
handler.on_dynamic_precision(id);
|
|
|
|
}
|
|
|
|
FMT_CONSTEXPR void operator()(basic_string_view<Char> id) {
|
2017-11-11 15:39:12 +00:00
|
|
|
handler.on_dynamic_precision(id);
|
2017-01-23 03:11:47 +00:00
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_error(const char *message) { handler.on_error(message); }
|
2016-04-25 15:07:27 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
SpecHandler &handler;
|
2016-01-28 12:33:16 +00:00
|
|
|
};
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Parses standard format specifiers and sends notifications about parsed
|
|
|
|
// components to handler.
|
|
|
|
// it: an iterator pointing to the beginning of a null-terminated range of
|
|
|
|
// characters, possibly emulated via null_terminating_iterator, representing
|
|
|
|
// format specifiers.
|
|
|
|
template <typename Iterator, typename SpecHandler>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR Iterator parse_format_specs(Iterator it, SpecHandler &&handler) {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename std::iterator_traits<Iterator>::value_type char_type;
|
2018-05-26 16:23:09 +00:00
|
|
|
char_type c = *it;
|
|
|
|
if (c == '}' || !c)
|
|
|
|
return it;
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Parse fill and alignment.
|
2018-05-26 16:23:09 +00:00
|
|
|
alignment align = ALIGN_DEFAULT;
|
|
|
|
int i = 1;
|
|
|
|
do {
|
|
|
|
auto p = it + i;
|
|
|
|
switch (*p) {
|
|
|
|
case '<':
|
|
|
|
align = ALIGN_LEFT;
|
2017-11-11 15:39:12 +00:00
|
|
|
break;
|
2018-05-26 16:23:09 +00:00
|
|
|
case '>':
|
|
|
|
align = ALIGN_RIGHT;
|
|
|
|
break;
|
|
|
|
case '=':
|
|
|
|
align = ALIGN_NUMERIC;
|
|
|
|
break;
|
|
|
|
case '^':
|
|
|
|
align = ALIGN_CENTER;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (align != ALIGN_DEFAULT) {
|
|
|
|
if (p != it) {
|
2018-06-04 09:59:59 +00:00
|
|
|
if (c == '{') {
|
|
|
|
handler.on_error("invalid fill character '{'");
|
|
|
|
return it;
|
|
|
|
}
|
2018-05-26 16:23:09 +00:00
|
|
|
it += 2;
|
|
|
|
handler.on_fill(c);
|
|
|
|
} else ++it;
|
|
|
|
handler.on_align(align);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (--i >= 0);
|
2017-11-11 15:39:12 +00:00
|
|
|
|
|
|
|
// Parse sign.
|
|
|
|
switch (*it) {
|
|
|
|
case '+':
|
|
|
|
handler.on_plus();
|
|
|
|
++it;
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
handler.on_minus();
|
|
|
|
++it;
|
|
|
|
break;
|
|
|
|
case ' ':
|
|
|
|
handler.on_space();
|
|
|
|
++it;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*it == '#') {
|
|
|
|
handler.on_hash();
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse zero flag.
|
|
|
|
if (*it == '0') {
|
|
|
|
handler.on_zero();
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse width.
|
|
|
|
if ('0' <= *it && *it <= '9') {
|
|
|
|
handler.on_width(parse_nonnegative_int(it, handler));
|
|
|
|
} else if (*it == '{') {
|
|
|
|
it = parse_arg_id(it + 1, width_adapter<SpecHandler, char_type>(handler));
|
|
|
|
if (*it++ != '}') {
|
|
|
|
handler.on_error("invalid format string");
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse precision.
|
|
|
|
if (*it == '.') {
|
|
|
|
++it;
|
|
|
|
if ('0' <= *it && *it <= '9') {
|
|
|
|
handler.on_precision(parse_nonnegative_int(it, handler));
|
|
|
|
} else if (*it == '{') {
|
|
|
|
it = parse_arg_id(
|
|
|
|
it + 1, precision_adapter<SpecHandler, char_type>(handler));
|
|
|
|
if (*it++ != '}') {
|
|
|
|
handler.on_error("invalid format string");
|
|
|
|
return it;
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
} else {
|
2017-11-11 15:39:12 +00:00
|
|
|
handler.on_error("missing precision specifier");
|
|
|
|
return it;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
handler.end_precision();
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Parse type.
|
|
|
|
if (*it != '}' && *it)
|
|
|
|
handler.on_type(*it++);
|
|
|
|
return it;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-09-04 22:37:31 +00:00
|
|
|
// Return the result via the out param to workaround gcc bug 77539.
|
|
|
|
template <bool IS_CONSTEXPR, typename T, typename Ptr = const T*>
|
|
|
|
FMT_CONSTEXPR bool find(Ptr first, Ptr last, T value, Ptr &out) {
|
|
|
|
for (out = first; out != last; ++out) {
|
|
|
|
if (*out == value)
|
|
|
|
return true;
|
2018-07-14 20:17:40 +00:00
|
|
|
}
|
2018-09-04 22:37:31 +00:00
|
|
|
return false;
|
2018-07-14 20:17:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2018-09-04 22:37:31 +00:00
|
|
|
inline bool find<false, char>(
|
|
|
|
const char *first, const char *last, char value, const char *&out) {
|
|
|
|
out = static_cast<const char*>(std::memchr(first, value, last - first));
|
|
|
|
return out != FMT_NULL;
|
2018-07-14 20:17:40 +00:00
|
|
|
}
|
|
|
|
|
2018-09-09 16:47:28 +00:00
|
|
|
template <typename Handler, typename Char>
|
|
|
|
struct id_adapter {
|
|
|
|
FMT_CONSTEXPR void operator()() { handler.on_arg_id(); }
|
|
|
|
FMT_CONSTEXPR void operator()(unsigned id) { handler.on_arg_id(id); }
|
|
|
|
FMT_CONSTEXPR void operator()(basic_string_view<Char> id) {
|
|
|
|
handler.on_arg_id(id);
|
|
|
|
}
|
|
|
|
FMT_CONSTEXPR void on_error(const char *message) {
|
|
|
|
handler.on_error(message);
|
|
|
|
}
|
|
|
|
Handler &handler;
|
|
|
|
};
|
|
|
|
|
2018-07-14 20:17:40 +00:00
|
|
|
template <bool IS_CONSTEXPR, typename Char, typename Handler>
|
2018-07-07 19:20:10 +00:00
|
|
|
FMT_CONSTEXPR void parse_format_string(
|
|
|
|
basic_string_view<Char> format_str, Handler &&handler) {
|
2018-07-14 20:17:40 +00:00
|
|
|
struct writer {
|
|
|
|
FMT_CONSTEXPR void operator()(const Char *begin, const Char *end) {
|
2018-09-09 15:41:27 +00:00
|
|
|
if (begin == end) return;
|
2018-07-14 20:17:40 +00:00
|
|
|
for (;;) {
|
2018-09-04 22:37:31 +00:00
|
|
|
const Char *p = FMT_NULL;
|
2018-09-09 15:41:27 +00:00
|
|
|
if (!find<IS_CONSTEXPR>(begin, end, '}', p))
|
|
|
|
return handler_.on_text(begin, end);
|
2018-07-14 20:17:40 +00:00
|
|
|
++p;
|
2018-09-09 15:41:27 +00:00
|
|
|
if (p == end || *p != '}')
|
|
|
|
return handler_.on_error("unmatched '}' in format string");
|
2018-07-14 20:17:40 +00:00
|
|
|
handler_.on_text(begin, p);
|
|
|
|
begin = p + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Handler &handler_;
|
|
|
|
} write{handler};
|
2018-09-09 15:41:27 +00:00
|
|
|
auto begin = format_str.data(), end = begin + format_str.size();
|
2018-09-09 16:08:41 +00:00
|
|
|
while (begin != end) {
|
2018-07-14 20:17:40 +00:00
|
|
|
// Doing two passes with memchr (one for '{' and another for '}') is up to
|
2018-09-08 16:06:54 +00:00
|
|
|
// 2.5x faster than the naive one-pass implementation on big format strings.
|
2018-09-09 16:08:41 +00:00
|
|
|
const Char *p = begin;
|
|
|
|
if (*begin != '{' && !find<IS_CONSTEXPR>(begin, end, '{', p))
|
2018-09-09 15:41:27 +00:00
|
|
|
return write(begin, end);
|
2018-07-14 20:17:40 +00:00
|
|
|
write(begin, p);
|
|
|
|
++p;
|
2018-09-09 16:47:28 +00:00
|
|
|
if (p == end)
|
|
|
|
return handler.on_error("invalid format string");
|
|
|
|
if (*p == '}') {
|
|
|
|
handler.on_arg_id();
|
|
|
|
handler.on_replacement_field(p);
|
|
|
|
} else if (*p == '{') {
|
2018-07-14 20:17:40 +00:00
|
|
|
handler.on_text(p, p + 1);
|
2016-01-28 12:33:16 +00:00
|
|
|
} else {
|
2018-09-09 16:47:28 +00:00
|
|
|
p = parse_arg_id(p, end, id_adapter<Handler, Char>{handler});
|
|
|
|
Char c = p != end ? *p : 0;
|
|
|
|
if (c == '}') {
|
|
|
|
handler.on_replacement_field(p);
|
|
|
|
} else if (c == ':') {
|
|
|
|
internal::null_terminating_iterator<Char> it(p + 1, end);
|
|
|
|
it = handler.on_format_specs(it);
|
|
|
|
if (*it != '}')
|
|
|
|
return handler.on_error("unknown format specifier");
|
|
|
|
p = pointer_from(it);
|
|
|
|
} else {
|
|
|
|
return handler.on_error("missing '}' in format string");
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
2018-09-09 16:47:28 +00:00
|
|
|
begin = p + 1;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-13 03:14:35 +00:00
|
|
|
template <typename T, typename ParseContext>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR const typename ParseContext::char_type *
|
2017-11-13 03:14:35 +00:00
|
|
|
parse_format_specs(ParseContext &ctx) {
|
2018-02-24 09:29:15 +00:00
|
|
|
// GCC 7.2 requires initializer.
|
|
|
|
formatter<T, typename ParseContext::char_type> f{};
|
2017-11-11 15:39:12 +00:00
|
|
|
return f.parse(ctx);
|
|
|
|
}
|
2017-11-08 13:56:52 +00:00
|
|
|
|
2017-11-11 18:28:05 +00:00
|
|
|
template <typename Char, typename ErrorHandler, typename... Args>
|
2017-11-19 14:35:23 +00:00
|
|
|
class format_string_checker {
|
2017-11-11 15:39:12 +00:00
|
|
|
public:
|
2018-02-03 14:14:10 +00:00
|
|
|
explicit FMT_CONSTEXPR format_string_checker(
|
2017-11-19 14:35:23 +00:00
|
|
|
basic_string_view<Char> format_str, ErrorHandler eh)
|
2018-02-28 12:49:20 +00:00
|
|
|
: arg_id_(-1), context_(format_str, eh),
|
|
|
|
parse_funcs_{&parse_format_specs<Args, parse_context_type>...} {}
|
2017-11-08 13:56:52 +00:00
|
|
|
|
2018-07-07 19:20:10 +00:00
|
|
|
typedef internal::null_terminating_iterator<Char> iterator;
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_text(const Char *, const Char *) {}
|
2017-11-08 13:56:52 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_arg_id() {
|
2017-11-26 17:29:55 +00:00
|
|
|
arg_id_ = context_.next_arg_id();
|
|
|
|
check_arg_id();
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_arg_id(unsigned id) {
|
2017-11-26 17:29:55 +00:00
|
|
|
arg_id_ = id;
|
|
|
|
context_.check_arg_id(id);
|
|
|
|
check_arg_id();
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_arg_id(basic_string_view<Char>) {}
|
2017-11-08 13:56:52 +00:00
|
|
|
|
2018-09-09 16:47:28 +00:00
|
|
|
FMT_CONSTEXPR void on_replacement_field(const Char *) {}
|
2017-11-08 13:56:52 +00:00
|
|
|
|
2018-07-07 19:20:10 +00:00
|
|
|
FMT_CONSTEXPR const Char *on_format_specs(iterator it) {
|
|
|
|
auto p = pointer_from(it);
|
|
|
|
context_.advance_to(p);
|
2018-09-08 16:06:54 +00:00
|
|
|
return to_unsigned(arg_id_) < NUM_ARGS ?
|
|
|
|
parse_funcs_[arg_id_](context_) : p;
|
2017-11-19 14:35:23 +00:00
|
|
|
}
|
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void on_error(const char *message) {
|
2017-11-19 14:35:23 +00:00
|
|
|
context_.on_error(message);
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2017-11-08 13:56:52 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
private:
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef basic_parse_context<Char, ErrorHandler> parse_context_type;
|
2018-02-03 14:14:10 +00:00
|
|
|
enum { NUM_ARGS = sizeof...(Args) };
|
2017-11-11 19:22:09 +00:00
|
|
|
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR void check_arg_id() {
|
2017-11-26 17:29:55 +00:00
|
|
|
if (internal::to_unsigned(arg_id_) >= NUM_ARGS)
|
2017-11-19 14:35:23 +00:00
|
|
|
context_.on_error("argument index out of range");
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Format specifier parsing function.
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef const Char *(*parse_func)(parse_context_type &);
|
2017-11-11 15:39:12 +00:00
|
|
|
|
2018-02-28 12:33:43 +00:00
|
|
|
int arg_id_;
|
2017-11-19 14:35:23 +00:00
|
|
|
parse_context_type context_;
|
2018-02-28 12:49:20 +00:00
|
|
|
parse_func parse_funcs_[NUM_ARGS > 0 ? NUM_ARGS : 1];
|
2017-11-11 15:39:12 +00:00
|
|
|
};
|
|
|
|
|
2017-11-11 18:28:05 +00:00
|
|
|
template <typename Char, typename ErrorHandler, typename... Args>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR bool check_format_string(
|
2017-11-11 18:28:05 +00:00
|
|
|
basic_string_view<Char> s, ErrorHandler eh = ErrorHandler()) {
|
2017-11-19 14:35:23 +00:00
|
|
|
format_string_checker<Char, ErrorHandler, Args...> checker(s, eh);
|
2018-07-14 20:17:40 +00:00
|
|
|
parse_format_string<true>(s, checker);
|
2017-11-11 15:39:12 +00:00
|
|
|
return true;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2018-03-07 13:41:45 +00:00
|
|
|
template <typename... Args, typename String>
|
2018-07-22 14:20:11 +00:00
|
|
|
typename std::enable_if<is_compile_string<String>::value>::type
|
|
|
|
check_format_string(String format_str) {
|
2018-03-07 13:41:45 +00:00
|
|
|
FMT_CONSTEXPR_DECL bool invalid_format =
|
|
|
|
internal::check_format_string<char, internal::error_handler, Args...>(
|
|
|
|
string_view(format_str.data(), format_str.size()));
|
|
|
|
(void)invalid_format;
|
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Specifies whether to format T using the standard formatter.
|
|
|
|
// It is not possible to use get_type in formatter specialization directly
|
|
|
|
// because of a bug in MSVC.
|
2018-02-03 14:14:10 +00:00
|
|
|
template <typename Context, typename T>
|
|
|
|
struct format_type :
|
2018-02-16 17:20:33 +00:00
|
|
|
std::integral_constant<bool, get_type<Context, T>::value != custom_type> {};
|
2017-11-11 15:39:12 +00:00
|
|
|
|
2018-01-06 17:09:50 +00:00
|
|
|
template <template <typename> class Handler, typename Spec, typename Context>
|
2017-11-11 15:39:12 +00:00
|
|
|
void handle_dynamic_spec(
|
2018-01-06 17:09:50 +00:00
|
|
|
Spec &value, arg_ref<typename Context::char_type> ref, Context &ctx) {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename Context::char_type char_type;
|
2017-11-11 15:39:12 +00:00
|
|
|
switch (ref.kind) {
|
2018-01-06 17:09:50 +00:00
|
|
|
case arg_ref<char_type>::NONE:
|
2016-01-28 12:33:16 +00:00
|
|
|
break;
|
2018-01-06 17:09:50 +00:00
|
|
|
case arg_ref<char_type>::INDEX:
|
2017-11-18 17:16:35 +00:00
|
|
|
internal::set_dynamic_spec<Handler>(
|
|
|
|
value, ctx.get_arg(ref.index), ctx.error_handler());
|
2016-01-28 12:33:16 +00:00
|
|
|
break;
|
2018-01-06 17:09:50 +00:00
|
|
|
case arg_ref<char_type>::NAME:
|
2017-11-18 17:16:35 +00:00
|
|
|
internal::set_dynamic_spec<Handler>(
|
|
|
|
value, ctx.get_arg(ref.name), ctx.error_handler());
|
2016-01-28 12:33:16 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
|
|
|
} // namespace internal
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
/** The default argument formatter. */
|
2018-01-06 17:09:50 +00:00
|
|
|
template <typename Range>
|
2018-03-03 22:04:59 +00:00
|
|
|
class arg_formatter:
|
2018-05-20 14:42:09 +00:00
|
|
|
public internal::function<
|
|
|
|
typename internal::arg_formatter_base<Range>::iterator>,
|
|
|
|
public internal::arg_formatter_base<Range> {
|
2017-11-11 15:39:12 +00:00
|
|
|
private:
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename Range::value_type char_type;
|
|
|
|
typedef internal::arg_formatter_base<Range> base;
|
2018-04-08 13:45:21 +00:00
|
|
|
typedef basic_format_context<typename base::iterator, char_type> context_type;
|
2018-01-21 22:30:38 +00:00
|
|
|
|
|
|
|
context_type &ctx_;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
public:
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef Range range;
|
2018-03-30 18:20:12 +00:00
|
|
|
typedef typename base::iterator iterator;
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename base::format_specs format_specs;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Constructs an argument formatter object.
|
2018-01-15 16:22:31 +00:00
|
|
|
*ctx* is a reference to the formatting context,
|
2018-01-14 15:19:23 +00:00
|
|
|
*spec* contains format specifier information for standard argument types.
|
2017-11-11 15:39:12 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2018-09-12 14:34:22 +00:00
|
|
|
explicit arg_formatter(context_type &ctx, format_specs *spec = {})
|
2018-04-22 16:16:32 +00:00
|
|
|
: base(Range(ctx.out()), spec), ctx_(ctx) {}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-09-12 19:44:04 +00:00
|
|
|
// Deprecated.
|
|
|
|
arg_formatter(context_type &ctx, format_specs &spec)
|
|
|
|
: base(Range(ctx.out()), &spec), ctx_(ctx) {}
|
|
|
|
|
2018-01-13 23:34:48 +00:00
|
|
|
using base::operator();
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-03-04 16:13:08 +00:00
|
|
|
/** Formats an argument of a user-defined type. */
|
2018-04-04 14:38:21 +00:00
|
|
|
iterator operator()(typename basic_format_arg<context_type>::handle handle) {
|
2018-01-06 17:09:50 +00:00
|
|
|
handle.format(ctx_);
|
2018-03-30 18:20:12 +00:00
|
|
|
return this->out();
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
};
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
/**
|
|
|
|
An error returned by an operating system or a language runtime,
|
|
|
|
for example a file opening error.
|
|
|
|
*/
|
|
|
|
class system_error : public std::runtime_error {
|
|
|
|
private:
|
2018-01-28 01:15:14 +00:00
|
|
|
FMT_API void init(int err_code, string_view format_str, format_args args);
|
2017-11-11 15:39:12 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
int error_code_;
|
|
|
|
|
|
|
|
system_error() : std::runtime_error("") {}
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Constructs a :class:`fmt::system_error` object with a description
|
|
|
|
formatted with `fmt::format_system_error`. *message* and additional
|
|
|
|
arguments passed into the constructor are formatted similarly to
|
|
|
|
`fmt::format`.
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// This throws a system_error with the description
|
|
|
|
// cannot open file 'madeup': No such file or directory
|
2016-01-28 12:33:16 +00:00
|
|
|
// or similar (system message may vary).
|
|
|
|
const char *filename = "madeup";
|
2017-11-11 15:39:12 +00:00
|
|
|
std::FILE *file = std::fopen(filename, "r");
|
|
|
|
if (!file)
|
|
|
|
throw fmt::system_error(errno, "cannot open file '{}'", filename);
|
2016-01-28 12:33:16 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2016-08-27 15:23:44 +00:00
|
|
|
template <typename... Args>
|
2018-09-22 23:00:34 +00:00
|
|
|
system_error(int error_code, string_view message, const Args &... args)
|
2017-11-11 15:39:12 +00:00
|
|
|
: std::runtime_error("") {
|
2018-04-08 14:21:26 +00:00
|
|
|
init(error_code, message, make_format_args(args...));
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
|
|
|
|
int error_code() const { return error_code_; }
|
2016-01-28 12:33:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
2017-11-11 15:39:12 +00:00
|
|
|
Formats an error returned by an operating system or a language runtime,
|
|
|
|
for example a file opening error, and writes it to *out* in the following
|
|
|
|
form:
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
.. parsed-literal::
|
|
|
|
*<message>*: *<system-message>*
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
where *<message>* is the passed message and *<system-message>* is
|
|
|
|
the system message corresponding to the error code.
|
|
|
|
*error_code* is a system error code as given by ``errno``.
|
|
|
|
If *error_code* is not a valid error code such as -1, the system message
|
|
|
|
may look like "Unknown error -1" and is platform-dependent.
|
2016-01-28 12:33:16 +00:00
|
|
|
\endrst
|
2017-11-11 15:39:12 +00:00
|
|
|
*/
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_API void format_system_error(internal::buffer &out, int error_code,
|
2017-11-11 15:39:12 +00:00
|
|
|
fmt::string_view message) FMT_NOEXCEPT;
|
2016-08-27 00:23:13 +00:00
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
/**
|
2017-11-11 15:39:12 +00:00
|
|
|
This template provides operations for formatting and writing data into a
|
2017-12-30 15:42:56 +00:00
|
|
|
character range.
|
2016-01-28 12:33:16 +00:00
|
|
|
*/
|
2017-12-30 15:42:56 +00:00
|
|
|
template <typename Range>
|
2017-11-11 15:39:12 +00:00
|
|
|
class basic_writer {
|
|
|
|
public:
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename Range::value_type char_type;
|
2018-03-01 11:45:25 +00:00
|
|
|
typedef decltype(internal::declval<Range>().begin()) iterator;
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef basic_format_specs<char_type> format_specs;
|
2016-08-27 00:23:13 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
private:
|
2018-07-22 16:39:50 +00:00
|
|
|
iterator out_; // Output iterator.
|
2017-12-27 01:22:07 +00:00
|
|
|
std::unique_ptr<locale_provider> locale_;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-03-30 18:20:12 +00:00
|
|
|
iterator out() const { return out_; }
|
|
|
|
|
2018-01-15 16:22:31 +00:00
|
|
|
// Attempts to reserve space for n extra characters in the output range.
|
|
|
|
// Returns a pointer to the reserved range or a reference to out_.
|
|
|
|
auto reserve(std::size_t n) -> decltype(internal::reserve(out_, n)) {
|
|
|
|
return internal::reserve(out_, n);
|
2017-12-30 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Writes a value in the format
|
|
|
|
// <left-padding><value><right-padding>
|
|
|
|
// where <value> is written by f(it).
|
|
|
|
template <typename F>
|
2018-08-31 21:42:45 +00:00
|
|
|
void write_padded(std::size_t size, const align_spec &spec, F &&f);
|
2017-12-30 15:42:56 +00:00
|
|
|
|
2018-02-11 14:50:56 +00:00
|
|
|
template <typename F>
|
|
|
|
struct padded_int_writer {
|
|
|
|
string_view prefix;
|
2018-03-21 14:59:42 +00:00
|
|
|
char_type fill;
|
2018-02-14 23:30:55 +00:00
|
|
|
std::size_t padding;
|
2018-02-11 14:50:56 +00:00
|
|
|
F f;
|
|
|
|
|
|
|
|
template <typename It>
|
|
|
|
void operator()(It &&it) const {
|
|
|
|
if (prefix.size() != 0)
|
|
|
|
it = std::copy_n(prefix.data(), prefix.size(), it);
|
|
|
|
it = std::fill_n(it, padding, fill);
|
|
|
|
f(it);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-12-30 15:42:56 +00:00
|
|
|
// Writes an integer in the format
|
|
|
|
// <left-padding><prefix><numeric-padding><digits><right-padding>
|
|
|
|
// where <digits> are written by f(it).
|
|
|
|
template <typename Spec, typename F>
|
|
|
|
void write_int(unsigned num_digits, string_view prefix,
|
|
|
|
const Spec &spec, F f) {
|
2018-02-14 23:30:55 +00:00
|
|
|
std::size_t size = prefix.size() + num_digits;
|
2018-03-21 15:29:06 +00:00
|
|
|
char_type fill = static_cast<char_type>(spec.fill());
|
2018-02-14 23:30:55 +00:00
|
|
|
std::size_t padding = 0;
|
2017-12-30 15:42:56 +00:00
|
|
|
if (spec.align() == ALIGN_NUMERIC) {
|
|
|
|
if (spec.width() > size) {
|
|
|
|
padding = spec.width() - size;
|
|
|
|
size = spec.width();
|
|
|
|
}
|
2018-01-06 17:09:50 +00:00
|
|
|
} else if (spec.precision() > static_cast<int>(num_digits)) {
|
2018-06-27 12:31:20 +00:00
|
|
|
size = prefix.size() + static_cast<std::size_t>(spec.precision());
|
|
|
|
padding = static_cast<std::size_t>(spec.precision()) - num_digits;
|
2017-12-30 15:42:56 +00:00
|
|
|
fill = '0';
|
|
|
|
}
|
2018-01-06 17:09:50 +00:00
|
|
|
align_spec as = spec;
|
|
|
|
if (spec.align() == ALIGN_DEFAULT)
|
|
|
|
as.align_ = ALIGN_RIGHT;
|
2018-02-11 14:50:56 +00:00
|
|
|
write_padded(size, as, padded_int_writer<F>{prefix, fill, padding, f});
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Writes a decimal integer.
|
|
|
|
template <typename Int>
|
|
|
|
void write_decimal(Int value) {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename internal::int_traits<Int>::main_type main_type;
|
2017-11-11 15:39:12 +00:00
|
|
|
main_type abs_value = static_cast<main_type>(value);
|
2017-12-30 15:42:56 +00:00
|
|
|
bool is_negative = internal::is_negative(value);
|
|
|
|
if (is_negative)
|
2016-01-28 12:33:16 +00:00
|
|
|
abs_value = 0 - abs_value;
|
2017-12-30 15:42:56 +00:00
|
|
|
unsigned num_digits = internal::count_digits(abs_value);
|
2018-01-15 16:22:31 +00:00
|
|
|
auto &&it = reserve((is_negative ? 1 : 0) + num_digits);
|
2017-12-30 15:42:56 +00:00
|
|
|
if (is_negative)
|
2018-01-15 16:22:31 +00:00
|
|
|
*it++ = '-';
|
2018-09-12 14:34:22 +00:00
|
|
|
it = internal::format_decimal(it, abs_value, num_digits);
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2017-12-30 15:42:56 +00:00
|
|
|
// The handle_int_type_spec handler that writes an integer.
|
|
|
|
template <typename Int, typename Spec>
|
|
|
|
struct int_writer {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename internal::int_traits<Int>::main_type unsigned_type;
|
2017-12-30 15:42:56 +00:00
|
|
|
|
|
|
|
basic_writer<Range> &writer;
|
|
|
|
const Spec &spec;
|
|
|
|
unsigned_type abs_value;
|
|
|
|
char prefix[4];
|
2018-02-28 12:49:20 +00:00
|
|
|
unsigned prefix_size;
|
2017-12-30 15:42:56 +00:00
|
|
|
|
|
|
|
string_view get_prefix() const { return string_view(prefix, prefix_size); }
|
|
|
|
|
|
|
|
// Counts the number of digits in abs_value. BITS = log2(radix).
|
|
|
|
template <unsigned BITS>
|
|
|
|
unsigned count_digits() const {
|
|
|
|
unsigned_type n = abs_value;
|
|
|
|
unsigned num_digits = 0;
|
|
|
|
do {
|
|
|
|
++num_digits;
|
|
|
|
} while ((n >>= BITS) != 0);
|
|
|
|
return num_digits;
|
|
|
|
}
|
|
|
|
|
|
|
|
int_writer(basic_writer<Range> &w, Int value, const Spec &s)
|
2018-02-28 12:49:20 +00:00
|
|
|
: writer(w), spec(s), abs_value(static_cast<unsigned_type>(value)),
|
|
|
|
prefix_size(0) {
|
2017-12-30 15:42:56 +00:00
|
|
|
if (internal::is_negative(value)) {
|
|
|
|
prefix[0] = '-';
|
|
|
|
++prefix_size;
|
|
|
|
abs_value = 0 - abs_value;
|
|
|
|
} else if (spec.flag(SIGN_FLAG)) {
|
|
|
|
prefix[0] = spec.flag(PLUS_FLAG) ? '+' : ' ';
|
|
|
|
++prefix_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-11 15:05:14 +00:00
|
|
|
struct dec_writer {
|
|
|
|
unsigned_type abs_value;
|
|
|
|
unsigned num_digits;
|
|
|
|
|
|
|
|
template <typename It>
|
|
|
|
void operator()(It &&it) const {
|
|
|
|
it = internal::format_decimal(it, abs_value, num_digits);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-12-30 15:42:56 +00:00
|
|
|
void on_dec() {
|
|
|
|
unsigned num_digits = internal::count_digits(abs_value);
|
|
|
|
writer.write_int(num_digits, get_prefix(), spec,
|
2018-02-11 15:05:14 +00:00
|
|
|
dec_writer{abs_value, num_digits});
|
2017-12-30 15:42:56 +00:00
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-02-11 15:05:14 +00:00
|
|
|
struct hex_writer {
|
|
|
|
int_writer &self;
|
|
|
|
unsigned num_digits;
|
|
|
|
|
|
|
|
template <typename It>
|
|
|
|
void operator()(It &&it) const {
|
|
|
|
it = internal::format_uint<4>(it, self.abs_value, num_digits,
|
|
|
|
self.spec.type() != 'x');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-12-30 15:42:56 +00:00
|
|
|
void on_hex() {
|
|
|
|
if (spec.flag(HASH_FLAG)) {
|
|
|
|
prefix[prefix_size++] = '0';
|
2018-03-14 19:17:15 +00:00
|
|
|
prefix[prefix_size++] = static_cast<char>(spec.type());
|
2017-12-30 15:42:56 +00:00
|
|
|
}
|
2018-01-06 17:09:50 +00:00
|
|
|
unsigned num_digits = count_digits<4>();
|
|
|
|
writer.write_int(num_digits, get_prefix(), spec,
|
2018-02-11 15:05:14 +00:00
|
|
|
hex_writer{*this, num_digits});
|
2017-12-30 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
2018-02-11 15:05:14 +00:00
|
|
|
template <int BITS>
|
|
|
|
struct bin_writer {
|
|
|
|
unsigned_type abs_value;
|
|
|
|
unsigned num_digits;
|
|
|
|
|
|
|
|
template <typename It>
|
|
|
|
void operator()(It &&it) const {
|
|
|
|
it = internal::format_uint<BITS>(it, abs_value, num_digits);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-12-30 15:42:56 +00:00
|
|
|
void on_bin() {
|
|
|
|
if (spec.flag(HASH_FLAG)) {
|
|
|
|
prefix[prefix_size++] = '0';
|
2018-03-14 19:17:15 +00:00
|
|
|
prefix[prefix_size++] = static_cast<char>(spec.type());
|
2017-12-30 15:42:56 +00:00
|
|
|
}
|
2018-01-06 17:09:50 +00:00
|
|
|
unsigned num_digits = count_digits<1>();
|
|
|
|
writer.write_int(num_digits, get_prefix(), spec,
|
2018-02-11 15:05:14 +00:00
|
|
|
bin_writer<1>{abs_value, num_digits});
|
2017-12-30 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_oct() {
|
2018-01-06 17:09:50 +00:00
|
|
|
unsigned num_digits = count_digits<3>();
|
|
|
|
if (spec.flag(HASH_FLAG) &&
|
|
|
|
spec.precision() <= static_cast<int>(num_digits)) {
|
|
|
|
// Octal prefix '0' is counted as a digit, so only add it if precision
|
|
|
|
// is not greater than the number of digits.
|
2017-12-30 15:42:56 +00:00
|
|
|
prefix[prefix_size++] = '0';
|
2018-01-06 17:09:50 +00:00
|
|
|
}
|
|
|
|
writer.write_int(num_digits, get_prefix(), spec,
|
2018-02-11 15:05:14 +00:00
|
|
|
bin_writer<3>{abs_value, num_digits});
|
2017-12-30 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
2018-02-11 15:05:14 +00:00
|
|
|
enum { SEP_SIZE = 1 };
|
|
|
|
|
|
|
|
struct num_writer {
|
|
|
|
unsigned_type abs_value;
|
|
|
|
unsigned size;
|
|
|
|
char_type sep;
|
|
|
|
|
|
|
|
template <typename It>
|
|
|
|
void operator()(It &&it) const {
|
|
|
|
basic_string_view<char_type> s(&sep, SEP_SIZE);
|
|
|
|
it = format_decimal(it, abs_value, size,
|
|
|
|
internal::add_thousands_sep<char_type>(s));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-12-30 15:42:56 +00:00
|
|
|
void on_num() {
|
|
|
|
unsigned num_digits = internal::count_digits(abs_value);
|
2018-01-06 17:09:50 +00:00
|
|
|
char_type sep = internal::thousands_sep<char_type>(writer.locale_.get());
|
|
|
|
unsigned size = num_digits + SEP_SIZE * ((num_digits - 1) / 3);
|
2018-02-11 15:05:14 +00:00
|
|
|
writer.write_int(size, get_prefix(), spec,
|
|
|
|
num_writer{abs_value, size, sep});
|
2017-12-30 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_error() {
|
|
|
|
FMT_THROW(format_error("invalid type specifier"));
|
|
|
|
}
|
|
|
|
};
|
2017-11-11 15:39:12 +00:00
|
|
|
|
|
|
|
// Writes a formatted integer.
|
|
|
|
template <typename T, typename Spec>
|
2017-12-30 15:42:56 +00:00
|
|
|
void write_int(T value, const Spec &spec) {
|
2018-03-15 13:45:31 +00:00
|
|
|
internal::handle_int_type_spec(spec.type(),
|
2017-12-30 15:42:56 +00:00
|
|
|
int_writer<T, Spec>(*this, value, spec));
|
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
|
2018-02-11 14:50:56 +00:00
|
|
|
enum {INF_SIZE = 3}; // This is an enum to workaround a bug in MSVC.
|
|
|
|
|
|
|
|
struct inf_or_nan_writer {
|
|
|
|
char sign;
|
|
|
|
const char *str;
|
|
|
|
|
|
|
|
template <typename It>
|
|
|
|
void operator()(It &&it) const {
|
|
|
|
if (sign)
|
|
|
|
*it++ = sign;
|
|
|
|
it = std::copy_n(str, static_cast<std::size_t>(INF_SIZE), it);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct double_writer {
|
2018-06-06 13:57:59 +00:00
|
|
|
size_t n;
|
2018-02-11 14:50:56 +00:00
|
|
|
char sign;
|
|
|
|
basic_memory_buffer<char_type> &buffer;
|
|
|
|
|
|
|
|
template <typename It>
|
|
|
|
void operator()(It &&it) {
|
|
|
|
if (sign) {
|
|
|
|
*it++ = sign;
|
|
|
|
--n;
|
|
|
|
}
|
|
|
|
it = std::copy_n(buffer.begin(), n, it);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Formats a floating-point number (double or long double).
|
|
|
|
template <typename T>
|
|
|
|
void write_double(T value, const format_specs &spec);
|
2018-05-28 18:25:07 +00:00
|
|
|
template <typename T>
|
|
|
|
void write_double_sprintf(T value, const format_specs &spec,
|
2018-09-22 23:00:34 +00:00
|
|
|
internal::basic_buffer<char_type> &buffer);
|
2017-11-11 15:39:12 +00:00
|
|
|
|
2018-02-11 14:50:56 +00:00
|
|
|
template <typename Char>
|
|
|
|
struct str_writer {
|
|
|
|
const Char *s;
|
|
|
|
std::size_t size;
|
|
|
|
|
|
|
|
template <typename It>
|
|
|
|
void operator()(It &&it) const {
|
|
|
|
it = std::copy_n(s, size, it);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Writes a formatted string.
|
2017-12-26 17:00:22 +00:00
|
|
|
template <typename Char>
|
2017-12-30 15:42:56 +00:00
|
|
|
void write_str(const Char *s, std::size_t size, const align_spec &spec) {
|
2018-02-11 14:50:56 +00:00
|
|
|
write_padded(size, spec, str_writer<Char>{s, size});
|
2017-12-30 15:42:56 +00:00
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
|
2017-12-26 17:00:22 +00:00
|
|
|
template <typename Char>
|
|
|
|
void write_str(basic_string_view<Char> str, const format_specs &spec);
|
2017-11-11 15:39:12 +00:00
|
|
|
|
|
|
|
// Appends floating-point length specifier to the format string.
|
|
|
|
// The second argument is only used for overload resolution.
|
2017-12-26 17:00:22 +00:00
|
|
|
void append_float_length(char_type *&format_ptr, long double) {
|
2017-11-11 15:39:12 +00:00
|
|
|
*format_ptr++ = 'L';
|
2016-03-01 16:12:29 +00:00
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template<typename T>
|
2017-12-26 17:00:22 +00:00
|
|
|
void append_float_length(char_type *&, T) {}
|
2017-11-11 15:39:12 +00:00
|
|
|
|
2017-12-26 17:00:22 +00:00
|
|
|
template <typename Char>
|
2017-11-11 15:39:12 +00:00
|
|
|
friend class internal::arg_formatter_base;
|
|
|
|
|
|
|
|
public:
|
2017-12-30 15:42:56 +00:00
|
|
|
/** Constructs a ``basic_writer`` object. */
|
2018-01-15 16:22:31 +00:00
|
|
|
explicit basic_writer(Range out): out_(out.begin()) {}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2018-01-27 15:03:26 +00:00
|
|
|
void write(int value) { write_decimal(value); }
|
|
|
|
void write(long value) { write_decimal(value); }
|
|
|
|
void write(long long value) { write_decimal(value); }
|
|
|
|
|
|
|
|
void write(unsigned value) { write_decimal(value); }
|
|
|
|
void write(unsigned long value) { write_decimal(value); }
|
|
|
|
void write(unsigned long long value) { write_decimal(value); }
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Formats *value* and writes it to the buffer.
|
|
|
|
\endrst
|
|
|
|
*/
|
2018-03-03 22:04:59 +00:00
|
|
|
template <typename T, typename FormatSpec, typename... FormatSpecs>
|
2017-11-11 15:39:12 +00:00
|
|
|
typename std::enable_if<std::is_integral<T>::value, void>::type
|
2018-03-03 22:04:59 +00:00
|
|
|
write(T value, FormatSpec spec, FormatSpecs... specs) {
|
|
|
|
format_specs s(spec, specs...);
|
2018-01-06 17:09:50 +00:00
|
|
|
s.align_ = ALIGN_RIGHT;
|
|
|
|
write_int(value, s);
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
void write(double value) {
|
|
|
|
write_double(value, format_specs());
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Formats *value* using the general format for floating-point numbers
|
|
|
|
(``'g'``) and writes it to the buffer.
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
void write(long double value) {
|
|
|
|
write_double(value, format_specs());
|
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-12-30 15:42:56 +00:00
|
|
|
/** Writes a character to the buffer. */
|
2017-11-11 15:39:12 +00:00
|
|
|
void write(char value) {
|
2018-01-15 16:22:31 +00:00
|
|
|
*reserve(1) = value;
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
|
|
|
void write(wchar_t value) {
|
2018-09-22 01:25:24 +00:00
|
|
|
static_assert(std::is_same<char_type, wchar_t>::value, "");
|
2018-01-15 16:22:31 +00:00
|
|
|
*reserve(1) = value;
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Writes *value* to the buffer.
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
void write(string_view value) {
|
2018-01-15 16:22:31 +00:00
|
|
|
auto &&it = reserve(value.size());
|
2018-01-15 19:30:53 +00:00
|
|
|
it = std::copy(value.begin(), value.end(), it);
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2017-12-30 15:42:56 +00:00
|
|
|
void write(wstring_view value) {
|
2018-09-22 01:25:24 +00:00
|
|
|
static_assert(std::is_same<char_type, wchar_t>::value, "");
|
2018-01-15 16:22:31 +00:00
|
|
|
auto &&it = reserve(value.size());
|
2018-09-12 14:34:22 +00:00
|
|
|
it = std::copy(value.begin(), value.end(), it);
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2016-12-11 21:22:45 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename... FormatSpecs>
|
2017-12-26 17:00:22 +00:00
|
|
|
void write(basic_string_view<char_type> str, FormatSpecs... specs) {
|
2017-11-11 15:39:12 +00:00
|
|
|
write_str(str, format_specs(specs...));
|
2016-12-11 21:22:45 +00:00
|
|
|
}
|
2018-02-17 09:38:46 +00:00
|
|
|
|
|
|
|
template <typename T>
|
2018-09-08 16:06:54 +00:00
|
|
|
typename std::enable_if<std::is_same<T, void>::value>::type
|
|
|
|
write(const T *p) {
|
2018-02-17 09:38:46 +00:00
|
|
|
format_specs specs;
|
|
|
|
specs.flags_ = HASH_FLAG;
|
|
|
|
specs.type_ = 'x';
|
|
|
|
write_int(reinterpret_cast<uintptr_t>(p), specs);
|
|
|
|
}
|
2016-12-11 21:22:45 +00:00
|
|
|
};
|
|
|
|
|
2017-12-30 15:42:56 +00:00
|
|
|
template <typename Range>
|
|
|
|
template <typename F>
|
|
|
|
void basic_writer<Range>::write_padded(
|
2018-08-31 21:42:45 +00:00
|
|
|
std::size_t size, const align_spec &spec, F &&f) {
|
2017-12-30 15:42:56 +00:00
|
|
|
unsigned width = spec.width();
|
2018-01-15 16:22:31 +00:00
|
|
|
if (width <= size)
|
|
|
|
return f(reserve(size));
|
|
|
|
auto &&it = reserve(width);
|
2018-04-10 23:46:11 +00:00
|
|
|
char_type fill = static_cast<char_type>(spec.fill());
|
2017-12-30 15:42:56 +00:00
|
|
|
std::size_t padding = width - size;
|
|
|
|
if (spec.align() == ALIGN_RIGHT) {
|
2018-01-15 19:30:53 +00:00
|
|
|
it = std::fill_n(it, padding, fill);
|
2018-01-15 16:22:31 +00:00
|
|
|
f(it);
|
2017-12-30 15:42:56 +00:00
|
|
|
} else if (spec.align() == ALIGN_CENTER) {
|
|
|
|
std::size_t left_padding = padding / 2;
|
2018-01-15 19:30:53 +00:00
|
|
|
it = std::fill_n(it, left_padding, fill);
|
2018-01-15 16:22:31 +00:00
|
|
|
f(it);
|
2018-01-15 19:30:53 +00:00
|
|
|
it = std::fill_n(it, padding - left_padding, fill);
|
2017-11-11 15:39:12 +00:00
|
|
|
} else {
|
2018-01-15 16:22:31 +00:00
|
|
|
f(it);
|
2018-01-15 19:30:53 +00:00
|
|
|
it = std::fill_n(it, padding, fill);
|
2016-12-11 21:22:45 +00:00
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2017-10-24 04:02:54 +00:00
|
|
|
|
2017-12-30 15:42:56 +00:00
|
|
|
template <typename Range>
|
2017-11-11 15:39:12 +00:00
|
|
|
template <typename Char>
|
2017-12-30 15:42:56 +00:00
|
|
|
void basic_writer<Range>::write_str(
|
2017-12-26 17:00:22 +00:00
|
|
|
basic_string_view<Char> s, const format_specs &spec) {
|
2017-12-30 15:42:56 +00:00
|
|
|
const Char *data = s.data();
|
|
|
|
std::size_t size = s.size();
|
2017-11-11 15:39:12 +00:00
|
|
|
std::size_t precision = static_cast<std::size_t>(spec.precision_);
|
2017-12-30 15:42:56 +00:00
|
|
|
if (spec.precision_ >= 0 && precision < size)
|
|
|
|
size = precision;
|
|
|
|
write_str(data, size, spec);
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2016-12-11 21:22:45 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
template <typename Char>
|
|
|
|
struct float_spec_handler {
|
|
|
|
Char type;
|
|
|
|
bool upper;
|
2017-11-23 17:14:37 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
explicit float_spec_handler(Char t) : type(t), upper(false) {}
|
2017-11-23 17:14:37 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
void on_general() {
|
|
|
|
if (type == 'G')
|
|
|
|
upper = true;
|
|
|
|
else
|
|
|
|
type = 'g';
|
|
|
|
}
|
2017-11-23 17:14:37 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
void on_exp() {
|
|
|
|
if (type == 'E')
|
|
|
|
upper = true;
|
|
|
|
}
|
2017-11-23 17:14:37 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
void on_fixed() {
|
|
|
|
if (type == 'F') {
|
|
|
|
upper = true;
|
2017-11-11 15:39:12 +00:00
|
|
|
#if FMT_MSC_VER
|
2018-03-03 22:04:59 +00:00
|
|
|
// MSVC's printf doesn't support 'F'.
|
|
|
|
type = 'f';
|
2017-11-11 15:39:12 +00:00
|
|
|
#endif
|
2017-11-23 17:14:37 +00:00
|
|
|
}
|
2018-03-03 22:04:59 +00:00
|
|
|
}
|
2017-11-23 17:14:37 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
void on_hex() {
|
|
|
|
if (type == 'A')
|
|
|
|
upper = true;
|
|
|
|
}
|
2017-11-23 17:14:37 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
void on_error() {
|
|
|
|
FMT_THROW(format_error("invalid type specifier"));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename Range>
|
|
|
|
template <typename T>
|
|
|
|
void basic_writer<Range>::write_double(T value, const format_specs &spec) {
|
|
|
|
// Check type.
|
|
|
|
float_spec_handler<char_type> handler(spec.type());
|
2018-03-15 13:45:31 +00:00
|
|
|
internal::handle_float_type_spec(spec.type(), handler);
|
2017-09-03 15:28:30 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
char sign = 0;
|
|
|
|
// Use isnegative instead of value < 0 because the latter is always
|
|
|
|
// false for NaN.
|
|
|
|
if (internal::fputil::isnegative(static_cast<double>(value))) {
|
|
|
|
sign = '-';
|
|
|
|
value = -value;
|
|
|
|
} else if (spec.flag(SIGN_FLAG)) {
|
|
|
|
sign = spec.flag(PLUS_FLAG) ? '+' : ' ';
|
2017-09-03 15:28:30 +00:00
|
|
|
}
|
|
|
|
|
2018-03-01 11:45:25 +00:00
|
|
|
struct write_inf_or_nan_t {
|
|
|
|
basic_writer &writer;
|
|
|
|
format_specs spec;
|
|
|
|
char sign;
|
|
|
|
void operator()(const char *str) const {
|
|
|
|
writer.write_padded(INF_SIZE + (sign ? 1 : 0), spec,
|
|
|
|
inf_or_nan_writer{sign, str});
|
|
|
|
}
|
|
|
|
} write_inf_or_nan = {*this, spec, sign};
|
2017-09-03 15:28:30 +00:00
|
|
|
|
2018-01-06 17:09:50 +00:00
|
|
|
// Format NaN and ininity ourselves because sprintf's output is not consistent
|
|
|
|
// across platforms.
|
|
|
|
if (internal::fputil::isnotanumber(value))
|
|
|
|
return write_inf_or_nan(handler.upper ? "NAN" : "nan");
|
|
|
|
if (internal::fputil::isinfinity(value))
|
|
|
|
return write_inf_or_nan(handler.upper ? "INF" : "inf");
|
2017-09-03 15:28:30 +00:00
|
|
|
|
2017-12-30 15:42:56 +00:00
|
|
|
basic_memory_buffer<char_type> buffer;
|
2018-08-29 16:34:57 +00:00
|
|
|
char type = static_cast<char>(spec.type());
|
|
|
|
if (internal::const_check(
|
|
|
|
internal::use_grisu() && sizeof(T) <= sizeof(double)) &&
|
|
|
|
type != 'a' && type != 'A') {
|
2018-08-26 16:51:49 +00:00
|
|
|
char buf[100]; // TODO: correct buffer size
|
2018-08-25 23:08:32 +00:00
|
|
|
size_t size = 0;
|
2018-08-29 16:34:57 +00:00
|
|
|
internal::grisu2_format(static_cast<double>(value), buf, size, type,
|
|
|
|
spec.precision(), spec.flag(HASH_FLAG));
|
2018-08-26 16:51:49 +00:00
|
|
|
FMT_ASSERT(size <= 100, "buffer overflow");
|
2018-08-25 23:08:32 +00:00
|
|
|
buffer.append(buf, buf + size); // TODO: avoid extra copy
|
2018-05-28 18:25:07 +00:00
|
|
|
} else {
|
|
|
|
format_specs normalized_spec(spec);
|
|
|
|
normalized_spec.type_ = handler.type;
|
2018-05-29 03:16:30 +00:00
|
|
|
write_double_sprintf(value, normalized_spec, buffer);
|
2018-05-28 18:25:07 +00:00
|
|
|
}
|
2018-06-06 13:57:59 +00:00
|
|
|
size_t n = buffer.size();
|
2018-05-28 18:25:07 +00:00
|
|
|
align_spec as = spec;
|
|
|
|
if (spec.align() == ALIGN_NUMERIC) {
|
|
|
|
if (sign) {
|
2018-06-07 16:41:40 +00:00
|
|
|
auto &&it = reserve(1);
|
|
|
|
*it++ = sign;
|
2018-05-28 18:25:07 +00:00
|
|
|
sign = 0;
|
|
|
|
if (as.width_)
|
|
|
|
--as.width_;
|
|
|
|
}
|
|
|
|
as.align_ = ALIGN_RIGHT;
|
|
|
|
} else {
|
|
|
|
if (spec.align() == ALIGN_DEFAULT)
|
|
|
|
as.align_ = ALIGN_RIGHT;
|
|
|
|
if (sign)
|
|
|
|
++n;
|
|
|
|
}
|
|
|
|
write_padded(n, as, double_writer{n, sign, buffer});
|
|
|
|
}
|
2017-12-30 15:42:56 +00:00
|
|
|
|
2018-05-28 18:25:07 +00:00
|
|
|
template <typename Range>
|
|
|
|
template <typename T>
|
|
|
|
void basic_writer<Range>::write_double_sprintf(
|
|
|
|
T value, const format_specs &spec,
|
2018-09-22 23:00:34 +00:00
|
|
|
internal::basic_buffer<char_type> &buffer) {
|
2018-05-29 03:16:30 +00:00
|
|
|
// Buffer capacity must be non-zero, otherwise MSVC's vsnprintf_s will fail.
|
|
|
|
FMT_ASSERT(buffer.capacity() != 0, "empty buffer");
|
2017-09-03 15:28:30 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Build format string.
|
|
|
|
enum { MAX_FORMAT_SIZE = 10}; // longest format: %#-*.*Lg
|
2017-12-26 17:00:22 +00:00
|
|
|
char_type format[MAX_FORMAT_SIZE];
|
|
|
|
char_type *format_ptr = format;
|
2017-11-11 15:39:12 +00:00
|
|
|
*format_ptr++ = '%';
|
|
|
|
if (spec.flag(HASH_FLAG))
|
|
|
|
*format_ptr++ = '#';
|
|
|
|
if (spec.precision() >= 0) {
|
|
|
|
*format_ptr++ = '.';
|
|
|
|
*format_ptr++ = '*';
|
2017-09-03 15:28:30 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
append_float_length(format_ptr, value);
|
2018-05-28 18:25:07 +00:00
|
|
|
*format_ptr++ = spec.type();
|
2017-11-11 15:39:12 +00:00
|
|
|
*format_ptr = '\0';
|
2017-09-03 15:28:30 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Format using snprintf.
|
2018-01-21 02:37:57 +00:00
|
|
|
char_type *start = FMT_NULL;
|
2017-11-11 15:39:12 +00:00
|
|
|
for (;;) {
|
2018-01-06 17:09:50 +00:00
|
|
|
std::size_t buffer_size = buffer.capacity();
|
|
|
|
start = &buffer[0];
|
2017-12-26 17:00:22 +00:00
|
|
|
int result = internal::char_traits<char_type>::format_float(
|
2018-05-29 03:16:30 +00:00
|
|
|
start, buffer_size, format, spec.precision(), value);
|
2017-11-11 15:39:12 +00:00
|
|
|
if (result >= 0) {
|
2018-05-28 18:25:07 +00:00
|
|
|
unsigned n = internal::to_unsigned(result);
|
|
|
|
if (n < buffer.capacity()) {
|
|
|
|
buffer.resize(n);
|
2017-11-11 15:39:12 +00:00
|
|
|
break; // The buffer is large enough - continue with formatting.
|
2018-05-28 18:25:07 +00:00
|
|
|
}
|
2018-01-06 17:09:50 +00:00
|
|
|
buffer.reserve(n + 1);
|
2017-11-11 15:39:12 +00:00
|
|
|
} else {
|
|
|
|
// If result is negative we ask to increase the capacity by at least 1,
|
|
|
|
// but as std::vector, the buffer grows exponentially.
|
2017-12-30 15:42:56 +00:00
|
|
|
buffer.reserve(buffer.capacity() + 1);
|
2017-09-03 15:28:30 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
}
|
2017-09-03 15:28:30 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Reports a system error without throwing an exception.
|
|
|
|
// Can be used to report errors from destructors.
|
|
|
|
FMT_API void report_system_error(int error_code,
|
|
|
|
string_view message) FMT_NOEXCEPT;
|
2017-09-03 15:28:30 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
#if FMT_USE_WINDOWS_H
|
2017-08-13 20:09:02 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
/** A Windows error. */
|
|
|
|
class windows_error : public system_error {
|
|
|
|
private:
|
2017-12-03 15:32:04 +00:00
|
|
|
FMT_API void init(int error_code, string_view format_str, format_args args);
|
2017-09-03 15:28:30 +00:00
|
|
|
|
2017-08-13 20:09:02 +00:00
|
|
|
public:
|
2017-11-11 15:39:12 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Constructs a :class:`fmt::windows_error` object with the description
|
|
|
|
of the form
|
2017-07-30 15:37:26 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
.. parsed-literal::
|
|
|
|
*<message>*: *<system-message>*
|
2017-07-30 15:37:26 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
where *<message>* is the formatted message and *<system-message>* is the
|
|
|
|
system message corresponding to the error code.
|
|
|
|
*error_code* is a Windows error code as given by ``GetLastError``.
|
|
|
|
If *error_code* is not a valid error code such as -1, the system message
|
|
|
|
will look like "error -1".
|
2017-07-30 15:37:26 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
**Example**::
|
2017-07-30 15:37:26 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// This throws a windows_error with the description
|
|
|
|
// cannot open file 'madeup': The system cannot find the file specified.
|
|
|
|
// or similar (system message may vary).
|
|
|
|
const char *filename = "madeup";
|
|
|
|
LPOFSTRUCT of = LPOFSTRUCT();
|
|
|
|
HFILE file = OpenFile(filename, &of, OF_READ);
|
|
|
|
if (file == HFILE_ERROR) {
|
|
|
|
throw fmt::windows_error(GetLastError(),
|
|
|
|
"cannot open file '{}'", filename);
|
|
|
|
}
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
template <typename... Args>
|
2018-09-22 23:00:34 +00:00
|
|
|
windows_error(int error_code, string_view message, const Args &... args) {
|
2018-04-08 14:21:26 +00:00
|
|
|
init(error_code, message, make_format_args(args...));
|
2017-07-30 15:37:26 +00:00
|
|
|
}
|
2017-08-13 20:09:02 +00:00
|
|
|
};
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Reports a Windows error without throwing an exception.
|
|
|
|
// Can be used to report errors from destructors.
|
|
|
|
FMT_API void report_windows_error(int error_code,
|
|
|
|
string_view message) FMT_NOEXCEPT;
|
2017-08-13 20:09:02 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
#endif
|
2017-08-13 20:09:02 +00:00
|
|
|
|
2018-01-15 19:30:53 +00:00
|
|
|
/** Fast integer formatter. */
|
2018-05-19 15:57:31 +00:00
|
|
|
class format_int {
|
2017-11-11 15:39:12 +00:00
|
|
|
private:
|
|
|
|
// Buffer should be large enough to hold all digits (digits10 + 1),
|
|
|
|
// a sign and a null character.
|
|
|
|
enum {BUFFER_SIZE = std::numeric_limits<unsigned long long>::digits10 + 3};
|
|
|
|
mutable char buffer_[BUFFER_SIZE];
|
|
|
|
char *str_;
|
2017-07-26 15:37:46 +00:00
|
|
|
|
2017-12-11 00:05:51 +00:00
|
|
|
// Formats value in reverse and returns a pointer to the beginning.
|
2017-11-11 15:39:12 +00:00
|
|
|
char *format_decimal(unsigned long long value) {
|
2017-12-11 00:05:51 +00:00
|
|
|
char *ptr = buffer_ + BUFFER_SIZE - 1;
|
2017-11-11 15:39:12 +00:00
|
|
|
while (value >= 100) {
|
|
|
|
// Integer division is slow so do it for a group of two digits instead
|
|
|
|
// of for every digit. The idea comes from the talk by Alexandrescu
|
|
|
|
// "Three Optimization Tips for C++". See speed-test for a comparison.
|
|
|
|
unsigned index = static_cast<unsigned>((value % 100) * 2);
|
|
|
|
value /= 100;
|
2017-12-11 00:05:51 +00:00
|
|
|
*--ptr = internal::data::DIGITS[index + 1];
|
|
|
|
*--ptr = internal::data::DIGITS[index];
|
2017-10-16 00:15:01 +00:00
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
if (value < 10) {
|
2017-12-11 00:05:51 +00:00
|
|
|
*--ptr = static_cast<char>('0' + value);
|
|
|
|
return ptr;
|
2017-07-26 15:37:46 +00:00
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
unsigned index = static_cast<unsigned>(value * 2);
|
2017-12-11 00:05:51 +00:00
|
|
|
*--ptr = internal::data::DIGITS[index + 1];
|
|
|
|
*--ptr = internal::data::DIGITS[index];
|
|
|
|
return ptr;
|
2017-07-26 15:37:46 +00:00
|
|
|
}
|
|
|
|
|
2017-12-11 00:05:51 +00:00
|
|
|
void format_signed(long long value) {
|
2017-11-11 15:39:12 +00:00
|
|
|
unsigned long long abs_value = static_cast<unsigned long long>(value);
|
|
|
|
bool negative = value < 0;
|
|
|
|
if (negative)
|
|
|
|
abs_value = 0 - abs_value;
|
|
|
|
str_ = format_decimal(abs_value);
|
|
|
|
if (negative)
|
|
|
|
*--str_ = '-';
|
|
|
|
}
|
2017-07-26 15:37:46 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
public:
|
2018-05-19 15:57:31 +00:00
|
|
|
explicit format_int(int value) { format_signed(value); }
|
|
|
|
explicit format_int(long value) { format_signed(value); }
|
|
|
|
explicit format_int(long long value) { format_signed(value); }
|
|
|
|
explicit format_int(unsigned value) : str_(format_decimal(value)) {}
|
|
|
|
explicit format_int(unsigned long value) : str_(format_decimal(value)) {}
|
|
|
|
explicit format_int(unsigned long long value) : str_(format_decimal(value)) {}
|
2017-10-29 15:19:55 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
/** Returns the number of characters written to the output buffer. */
|
|
|
|
std::size_t size() const {
|
|
|
|
return internal::to_unsigned(buffer_ - str_ + BUFFER_SIZE - 1);
|
2017-10-29 15:19:55 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
/**
|
|
|
|
Returns a pointer to the output buffer content. No terminating null
|
|
|
|
character is appended.
|
|
|
|
*/
|
|
|
|
const char *data() const { return str_; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns a pointer to the output buffer content with terminating null
|
|
|
|
character appended.
|
|
|
|
*/
|
|
|
|
const char *c_str() const {
|
|
|
|
buffer_[BUFFER_SIZE - 1] = '\0';
|
|
|
|
return str_;
|
2017-10-29 15:19:55 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Returns the content of the output buffer as an ``std::string``.
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
std::string str() const { return std::string(str_, size()); }
|
2017-10-29 15:19:55 +00:00
|
|
|
};
|
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
// Formats a decimal integer value writing into buffer and returns
|
|
|
|
// a pointer to the end of the formatted string. This function doesn't
|
|
|
|
// write a terminating null character.
|
|
|
|
template <typename T>
|
|
|
|
inline void format_decimal(char *&buffer, T value) {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef typename internal::int_traits<T>::main_type main_type;
|
2017-11-11 15:39:12 +00:00
|
|
|
main_type abs_value = static_cast<main_type>(value);
|
|
|
|
if (internal::is_negative(value)) {
|
|
|
|
*buffer++ = '-';
|
|
|
|
abs_value = 0 - abs_value;
|
|
|
|
}
|
|
|
|
if (abs_value < 100) {
|
|
|
|
if (abs_value < 10) {
|
|
|
|
*buffer++ = static_cast<char>('0' + abs_value);
|
2017-10-29 14:32:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
unsigned index = static_cast<unsigned>(abs_value * 2);
|
|
|
|
*buffer++ = internal::data::DIGITS[index];
|
|
|
|
*buffer++ = internal::data::DIGITS[index + 1];
|
|
|
|
return;
|
2017-10-27 14:25:29 +00:00
|
|
|
}
|
2017-11-11 15:39:12 +00:00
|
|
|
unsigned num_digits = internal::count_digits(abs_value);
|
|
|
|
internal::format_decimal(buffer, abs_value, num_digits);
|
|
|
|
buffer += num_digits;
|
2017-07-26 15:37:46 +00:00
|
|
|
}
|
2017-08-13 20:09:02 +00:00
|
|
|
|
|
|
|
// Formatter of objects of type T.
|
|
|
|
template <typename T, typename Char>
|
2017-08-26 17:41:58 +00:00
|
|
|
struct formatter<
|
2018-02-03 14:14:10 +00:00
|
|
|
T, Char,
|
2018-02-11 17:23:47 +00:00
|
|
|
typename std::enable_if<internal::format_type<
|
|
|
|
typename buffer_context<Char>::type, T>::value>::type> {
|
2017-08-13 20:09:02 +00:00
|
|
|
|
|
|
|
// Parses format specifiers stopping either at the end of the range or at the
|
|
|
|
// terminating '}'.
|
2017-09-16 23:50:40 +00:00
|
|
|
template <typename ParseContext>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR typename ParseContext::iterator parse(ParseContext &ctx) {
|
2017-09-16 23:50:40 +00:00
|
|
|
auto it = internal::null_terminating_iterator<Char>(ctx);
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef internal::dynamic_specs_handler<ParseContext> handler_type;
|
2018-02-11 17:23:47 +00:00
|
|
|
auto type = internal::get_type<
|
|
|
|
typename buffer_context<Char>::type, T>::value;
|
2017-09-03 15:28:30 +00:00
|
|
|
internal::specs_checker<handler_type>
|
2017-11-23 17:14:37 +00:00
|
|
|
handler(handler_type(specs_, ctx), type);
|
2017-09-03 15:28:30 +00:00
|
|
|
it = parse_format_specs(it, handler);
|
2017-11-24 17:54:28 +00:00
|
|
|
auto type_spec = specs_.type();
|
2017-11-23 17:14:37 +00:00
|
|
|
auto eh = ctx.error_handler();
|
|
|
|
switch (type) {
|
2018-02-16 17:20:33 +00:00
|
|
|
case internal::none_type:
|
2018-06-05 06:32:28 +00:00
|
|
|
case internal::named_arg_type:
|
2017-11-23 17:14:37 +00:00
|
|
|
FMT_ASSERT(false, "invalid argument type");
|
|
|
|
break;
|
2018-02-16 17:20:33 +00:00
|
|
|
case internal::int_type:
|
|
|
|
case internal::uint_type:
|
|
|
|
case internal::long_long_type:
|
|
|
|
case internal::ulong_long_type:
|
|
|
|
case internal::bool_type:
|
2017-11-23 17:14:37 +00:00
|
|
|
handle_int_type_spec(
|
2017-11-24 17:54:28 +00:00
|
|
|
type_spec, internal::int_type_checker<decltype(eh)>(eh));
|
2017-11-23 17:14:37 +00:00
|
|
|
break;
|
2018-02-16 17:20:33 +00:00
|
|
|
case internal::char_type:
|
2018-05-18 01:03:43 +00:00
|
|
|
handle_char_specs(
|
2018-09-12 14:34:22 +00:00
|
|
|
&specs_,
|
2018-05-18 01:03:43 +00:00
|
|
|
internal::char_specs_checker<decltype(eh), decltype(type_spec)>(
|
|
|
|
type_spec, eh));
|
2017-11-23 17:14:37 +00:00
|
|
|
break;
|
2018-02-16 17:20:33 +00:00
|
|
|
case internal::double_type:
|
|
|
|
case internal::long_double_type:
|
2017-11-23 17:14:37 +00:00
|
|
|
handle_float_type_spec(
|
2017-11-24 17:54:28 +00:00
|
|
|
type_spec, internal::float_type_checker<decltype(eh)>(eh));
|
2017-11-23 17:14:37 +00:00
|
|
|
break;
|
2018-02-16 17:20:33 +00:00
|
|
|
case internal::cstring_type:
|
2017-11-24 17:54:28 +00:00
|
|
|
internal::handle_cstring_type_spec(
|
|
|
|
type_spec, internal::cstring_type_checker<decltype(eh)>(eh));
|
|
|
|
break;
|
2018-02-16 17:20:33 +00:00
|
|
|
case internal::string_type:
|
2017-11-24 17:54:28 +00:00
|
|
|
internal::check_string_type_spec(type_spec, eh);
|
2017-11-23 17:14:37 +00:00
|
|
|
break;
|
2018-02-16 17:20:33 +00:00
|
|
|
case internal::pointer_type:
|
2017-11-24 17:54:28 +00:00
|
|
|
internal::check_pointer_type_spec(type_spec, eh);
|
2017-11-23 17:14:37 +00:00
|
|
|
break;
|
2018-02-16 17:20:33 +00:00
|
|
|
case internal::custom_type:
|
2017-11-23 17:14:37 +00:00
|
|
|
// Custom format specifiers should be checked in parse functions of
|
|
|
|
// formatter specializations.
|
|
|
|
break;
|
2017-11-16 14:55:49 +00:00
|
|
|
}
|
2017-08-13 20:09:02 +00:00
|
|
|
return pointer_from(it);
|
2017-07-29 14:50:16 +00:00
|
|
|
}
|
|
|
|
|
2018-01-14 19:00:27 +00:00
|
|
|
template <typename FormatContext>
|
2018-04-22 16:16:32 +00:00
|
|
|
auto format(const T &val, FormatContext &ctx) -> decltype(ctx.out()) {
|
2017-10-21 14:13:20 +00:00
|
|
|
internal::handle_dynamic_spec<internal::width_checker>(
|
2017-08-13 20:09:02 +00:00
|
|
|
specs_.width_, specs_.width_ref, ctx);
|
2017-10-21 14:13:20 +00:00
|
|
|
internal::handle_dynamic_spec<internal::precision_checker>(
|
2017-08-13 20:09:02 +00:00
|
|
|
specs_.precision_, specs_.precision_ref, ctx);
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef output_range<typename FormatContext::iterator,
|
2018-06-06 13:57:59 +00:00
|
|
|
typename FormatContext::char_type> range_type;
|
2018-09-15 15:25:57 +00:00
|
|
|
return fmt::visit(arg_formatter<range_type>(ctx, &specs_),
|
|
|
|
internal::make_arg<FormatContext>(val));
|
2017-07-29 14:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-08-13 20:09:02 +00:00
|
|
|
internal::dynamic_format_specs<Char> specs_;
|
|
|
|
};
|
|
|
|
|
2017-09-03 15:28:30 +00:00
|
|
|
// A formatter for types known only at run time such as variant alternatives.
|
|
|
|
//
|
|
|
|
// Usage:
|
2018-02-11 16:32:02 +00:00
|
|
|
// typedef std::variant<int, std::string> variant;
|
2017-09-03 15:28:30 +00:00
|
|
|
// template <>
|
|
|
|
// struct formatter<variant>: dynamic_formatter<> {
|
|
|
|
// void format(buffer &buf, const variant &v, context &ctx) {
|
|
|
|
// visit([&](const auto &val) { format(buf, val, ctx); }, v);
|
|
|
|
// }
|
|
|
|
// };
|
|
|
|
template <typename Char = char>
|
2018-03-03 22:04:59 +00:00
|
|
|
class dynamic_formatter {
|
|
|
|
private:
|
|
|
|
struct null_handler: internal::error_handler {
|
|
|
|
void on_align(alignment) {}
|
|
|
|
void on_plus() {}
|
|
|
|
void on_minus() {}
|
|
|
|
void on_space() {}
|
|
|
|
void on_hash() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2017-09-16 23:50:40 +00:00
|
|
|
template <typename ParseContext>
|
|
|
|
auto parse(ParseContext &ctx) -> decltype(ctx.begin()) {
|
|
|
|
auto it = internal::null_terminating_iterator<Char>(ctx);
|
2017-09-03 15:28:30 +00:00
|
|
|
// Checks are deferred to formatting time when the argument type is known.
|
2017-09-16 23:50:40 +00:00
|
|
|
internal::dynamic_specs_handler<ParseContext> handler(specs_, ctx);
|
2017-09-03 15:28:30 +00:00
|
|
|
it = parse_format_specs(it, handler);
|
|
|
|
return pointer_from(it);
|
|
|
|
}
|
|
|
|
|
2018-01-14 19:00:27 +00:00
|
|
|
template <typename T, typename FormatContext>
|
2018-04-22 16:16:32 +00:00
|
|
|
auto format(const T &val, FormatContext &ctx) -> decltype(ctx.out()) {
|
2017-09-03 15:28:30 +00:00
|
|
|
handle_specs(ctx);
|
|
|
|
internal::specs_checker<null_handler>
|
2018-02-04 16:52:43 +00:00
|
|
|
checker(null_handler(), internal::get_type<FormatContext, T>::value);
|
2017-09-03 15:28:30 +00:00
|
|
|
checker.on_align(specs_.align());
|
|
|
|
if (specs_.flags_ == 0) {
|
|
|
|
// Do nothing.
|
|
|
|
} else if (specs_.flag(SIGN_FLAG)) {
|
|
|
|
if (specs_.flag(PLUS_FLAG))
|
|
|
|
checker.on_plus();
|
|
|
|
else
|
|
|
|
checker.on_space();
|
|
|
|
} else if (specs_.flag(MINUS_FLAG)) {
|
|
|
|
checker.on_minus();
|
|
|
|
} else if (specs_.flag(HASH_FLAG)) {
|
|
|
|
checker.on_hash();
|
|
|
|
}
|
|
|
|
if (specs_.precision_ != -1)
|
|
|
|
checker.end_precision();
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef output_range<typename FormatContext::iterator,
|
|
|
|
typename FormatContext::char_type> range;
|
2018-09-15 15:25:57 +00:00
|
|
|
fmt::visit(arg_formatter<range>(ctx, &specs_),
|
|
|
|
internal::make_arg<FormatContext>(val));
|
2018-04-22 16:16:32 +00:00
|
|
|
return ctx.out();
|
2017-09-03 15:28:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-01-06 17:09:50 +00:00
|
|
|
template <typename Context>
|
|
|
|
void handle_specs(Context &ctx) {
|
2017-10-21 14:13:20 +00:00
|
|
|
internal::handle_dynamic_spec<internal::width_checker>(
|
2017-09-03 15:28:30 +00:00
|
|
|
specs_.width_, specs_.width_ref, ctx);
|
2017-10-21 14:13:20 +00:00
|
|
|
internal::handle_dynamic_spec<internal::precision_checker>(
|
2017-09-03 15:28:30 +00:00
|
|
|
specs_.precision_, specs_.precision_ref, ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal::dynamic_format_specs<Char> specs_;
|
|
|
|
};
|
|
|
|
|
2018-01-21 22:30:38 +00:00
|
|
|
template <typename Range, typename Char>
|
2018-04-08 13:45:21 +00:00
|
|
|
typename basic_format_context<Range, Char>::format_arg
|
2018-08-31 21:42:45 +00:00
|
|
|
basic_format_context<Range, Char>::get_arg(
|
|
|
|
basic_string_view<char_type> name) {
|
2017-12-09 16:15:13 +00:00
|
|
|
map_.init(this->args());
|
2018-01-06 17:09:50 +00:00
|
|
|
format_arg arg = map_.find(name);
|
2018-02-16 17:20:33 +00:00
|
|
|
if (arg.type() == internal::none_type)
|
2018-01-06 17:09:50 +00:00
|
|
|
this->on_error("argument not found");
|
|
|
|
return arg;
|
2016-01-28 12:33:16 +00:00
|
|
|
}
|
|
|
|
|
2016-11-07 00:11:24 +00:00
|
|
|
template <typename ArgFormatter, typename Char, typename Context>
|
2018-03-03 22:04:59 +00:00
|
|
|
struct format_handler : internal::error_handler {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef internal::null_terminating_iterator<Char> iterator;
|
|
|
|
typedef typename ArgFormatter::range range;
|
2017-10-27 14:25:29 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
format_handler(range r, basic_string_view<Char> str,
|
|
|
|
basic_format_args<Context> format_args)
|
|
|
|
: context(r.begin(), str, format_args) {}
|
2017-07-30 15:37:26 +00:00
|
|
|
|
2018-07-07 19:20:10 +00:00
|
|
|
void on_text(const Char *begin, const Char *end) {
|
2018-06-27 12:31:20 +00:00
|
|
|
auto size = internal::to_unsigned(end - begin);
|
2018-04-22 16:16:32 +00:00
|
|
|
auto out = context.out();
|
2018-03-03 22:04:59 +00:00
|
|
|
auto &&it = internal::reserve(out, size);
|
|
|
|
it = std::copy_n(begin, size, it);
|
|
|
|
context.advance_to(out);
|
|
|
|
}
|
2017-07-30 15:37:26 +00:00
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
void on_arg_id() { arg = context.next_arg(); }
|
|
|
|
void on_arg_id(unsigned id) {
|
|
|
|
context.parse_context().check_arg_id(id);
|
|
|
|
arg = context.get_arg(id);
|
|
|
|
}
|
|
|
|
void on_arg_id(basic_string_view<Char> id) {
|
|
|
|
arg = context.get_arg(id);
|
|
|
|
}
|
2017-07-30 15:37:26 +00:00
|
|
|
|
2018-09-09 16:47:28 +00:00
|
|
|
void on_replacement_field(const Char *p) {
|
|
|
|
context.parse_context().advance_to(p);
|
2018-09-12 15:39:24 +00:00
|
|
|
if (!fmt::visit(internal::custom_formatter<Char, Context>(context), arg))
|
|
|
|
context.advance_to(fmt::visit(ArgFormatter(context), arg));
|
2018-03-03 22:04:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
iterator on_format_specs(iterator it) {
|
2018-09-22 23:00:34 +00:00
|
|
|
auto &parse_ctx = context.parse_context();
|
2018-03-03 22:04:59 +00:00
|
|
|
parse_ctx.advance_to(pointer_from(it));
|
2018-09-12 15:39:24 +00:00
|
|
|
if (fmt::visit(internal::custom_formatter<Char, Context>(context), arg))
|
2018-03-03 22:04:59 +00:00
|
|
|
return iterator(parse_ctx);
|
|
|
|
basic_format_specs<Char> specs;
|
|
|
|
using internal::specs_handler;
|
|
|
|
internal::specs_checker<specs_handler<Context>>
|
|
|
|
handler(specs_handler<Context>(specs, context), arg.type());
|
|
|
|
it = parse_format_specs(it, handler);
|
|
|
|
if (*it != '}')
|
|
|
|
on_error("missing '}' in format string");
|
|
|
|
parse_ctx.advance_to(pointer_from(it));
|
2018-09-12 15:39:24 +00:00
|
|
|
context.advance_to(fmt::visit(ArgFormatter(context, &specs), arg));
|
2018-03-03 22:04:59 +00:00
|
|
|
return it;
|
|
|
|
}
|
|
|
|
|
|
|
|
Context context;
|
2018-04-04 14:38:21 +00:00
|
|
|
basic_format_arg<Context> arg;
|
2018-03-03 22:04:59 +00:00
|
|
|
};
|
2017-07-30 15:37:26 +00:00
|
|
|
|
2018-03-30 18:31:41 +00:00
|
|
|
/** Formats arguments and writes the output to the range. */
|
2018-03-03 22:04:59 +00:00
|
|
|
template <typename ArgFormatter, typename Char, typename Context>
|
2018-03-04 14:40:43 +00:00
|
|
|
typename Context::iterator vformat_to(typename ArgFormatter::range out,
|
|
|
|
basic_string_view<Char> format_str,
|
|
|
|
basic_format_args<Context> args) {
|
2018-03-03 22:04:59 +00:00
|
|
|
format_handler<ArgFormatter, Char, Context> h(out, format_str, args);
|
2018-07-14 20:17:40 +00:00
|
|
|
internal::parse_format_string<false>(format_str, h);
|
2018-04-22 16:16:32 +00:00
|
|
|
return h.context.out();
|
2016-11-07 00:11:24 +00:00
|
|
|
}
|
2017-08-27 15:41:28 +00:00
|
|
|
|
|
|
|
// Casts ``p`` to ``const void*`` for pointer formatting.
|
|
|
|
// Example:
|
|
|
|
// auto s = format("{}", ptr(p));
|
|
|
|
template <typename T>
|
|
|
|
inline const void *ptr(const T *p) { return p; }
|
2017-12-06 15:42:42 +00:00
|
|
|
|
2018-01-28 00:04:45 +00:00
|
|
|
template <typename It, typename Char>
|
|
|
|
struct arg_join {
|
|
|
|
It begin;
|
|
|
|
It end;
|
|
|
|
basic_string_view<Char> sep;
|
|
|
|
|
|
|
|
arg_join(It begin, It end, basic_string_view<Char> sep)
|
|
|
|
: begin(begin), end(end), sep(sep) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename It, typename Char>
|
|
|
|
struct formatter<arg_join<It, Char>, Char>:
|
|
|
|
formatter<typename std::iterator_traits<It>::value_type, Char> {
|
|
|
|
template <typename FormatContext>
|
2018-02-24 08:39:17 +00:00
|
|
|
auto format(const arg_join<It, Char> &value, FormatContext &ctx)
|
2018-04-22 16:16:32 +00:00
|
|
|
-> decltype(ctx.out()) {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef formatter<typename std::iterator_traits<It>::value_type, Char> base;
|
2018-01-28 00:04:45 +00:00
|
|
|
auto it = value.begin;
|
2018-04-22 16:16:32 +00:00
|
|
|
auto out = ctx.out();
|
2018-01-28 00:04:45 +00:00
|
|
|
if (it != value.end) {
|
|
|
|
out = base::format(*it++, ctx);
|
|
|
|
while (it != value.end) {
|
|
|
|
out = std::copy(value.sep.begin(), value.sep.end(), out);
|
|
|
|
ctx.advance_to(out);
|
|
|
|
out = base::format(*it++, ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename It>
|
|
|
|
arg_join<It, char> join(It begin, It end, string_view sep) {
|
|
|
|
return arg_join<It, char>(begin, end, sep);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename It>
|
|
|
|
arg_join<It, wchar_t> join(It begin, It end, wstring_view sep) {
|
|
|
|
return arg_join<It, wchar_t>(begin, end, sep);
|
|
|
|
}
|
|
|
|
|
2018-03-03 22:04:59 +00:00
|
|
|
// The following causes ICE in gcc 4.4.
|
|
|
|
#if FMT_USE_TRAILING_RETURN && (!FMT_GCC_VERSION || FMT_GCC_VERSION >= 405)
|
2018-01-28 00:04:45 +00:00
|
|
|
template <typename Range>
|
|
|
|
auto join(const Range &range, string_view sep)
|
2018-03-01 11:45:25 +00:00
|
|
|
-> arg_join<decltype(internal::begin(range)), char> {
|
|
|
|
return join(internal::begin(range), internal::end(range), sep);
|
2018-01-28 00:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Range>
|
|
|
|
auto join(const Range &range, wstring_view sep)
|
2018-03-01 11:45:25 +00:00
|
|
|
-> arg_join<decltype(internal::begin(range)), wchar_t> {
|
|
|
|
return join(internal::begin(range), internal::end(range), sep);
|
2018-01-28 00:04:45 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-01-14 20:25:03 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Converts *value* to ``std::string`` using the default format for type *T*.
|
2018-07-18 13:44:46 +00:00
|
|
|
It doesn't support user-defined types with custom formatters.
|
2018-01-14 20:25:03 +00:00
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
2018-03-10 17:25:17 +00:00
|
|
|
#include <fmt/format.h>
|
2018-01-14 20:25:03 +00:00
|
|
|
|
|
|
|
std::string answer = fmt::to_string(42);
|
|
|
|
\endrst
|
|
|
|
*/
|
|
|
|
template <typename T>
|
|
|
|
std::string to_string(const T &value) {
|
|
|
|
std::string str;
|
|
|
|
internal::container_buffer<std::string> buf(str);
|
|
|
|
writer(buf).write(value);
|
|
|
|
return str;
|
2018-01-14 15:19:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-13 16:11:29 +00:00
|
|
|
/**
|
|
|
|
Converts *value* to ``std::wstring`` using the default format for type *T*.
|
|
|
|
*/
|
2018-02-07 15:08:14 +00:00
|
|
|
template <typename T>
|
|
|
|
std::wstring to_wstring(const T &value) {
|
|
|
|
std::wstring str;
|
|
|
|
internal::container_buffer<std::wstring> buf(str);
|
|
|
|
wwriter(buf).write(value);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2018-06-23 15:29:26 +00:00
|
|
|
template <typename Char, std::size_t SIZE>
|
|
|
|
std::basic_string<Char> to_string(const basic_memory_buffer<Char, SIZE> &buf) {
|
|
|
|
return std::basic_string<Char>(buf.data(), buf.size());
|
2018-01-14 15:19:23 +00:00
|
|
|
}
|
|
|
|
|
2018-04-08 14:03:44 +00:00
|
|
|
inline format_context::iterator vformat_to(
|
2018-03-04 16:13:08 +00:00
|
|
|
internal::buffer &buf, string_view format_str, format_args args) {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef back_insert_range<internal::buffer> range;
|
2018-03-04 16:13:08 +00:00
|
|
|
return vformat_to<arg_formatter<range>>(buf, format_str, args);
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
|
2018-04-08 14:03:44 +00:00
|
|
|
inline wformat_context::iterator vformat_to(
|
2018-03-04 16:13:08 +00:00
|
|
|
internal::wbuffer &buf, wstring_view format_str, wformat_args args) {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef back_insert_range<internal::wbuffer> range;
|
2018-03-04 16:13:08 +00:00
|
|
|
return vformat_to<arg_formatter<range>>(buf, format_str, args);
|
2018-01-14 20:25:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-21 14:56:30 +00:00
|
|
|
template <
|
|
|
|
typename String, typename... Args,
|
|
|
|
std::size_t SIZE = inline_buffer_size,
|
|
|
|
typename Char = typename internal::format_string_traits<String>::char_type>
|
|
|
|
inline typename buffer_context<Char>::type::iterator format_to(
|
|
|
|
basic_memory_buffer<Char, SIZE> &buf, const String &format_str,
|
2018-09-22 23:00:34 +00:00
|
|
|
const Args &... args) {
|
2018-07-22 22:30:51 +00:00
|
|
|
internal::check_format_string<Args...>(format_str);
|
|
|
|
return vformat_to(
|
2018-09-21 14:56:30 +00:00
|
|
|
buf, basic_string_view<Char>(format_str),
|
|
|
|
make_format_args<typename buffer_context<Char>::type>(args...));
|
2018-01-14 20:25:03 +00:00
|
|
|
}
|
|
|
|
|
2018-01-18 06:04:24 +00:00
|
|
|
template <typename OutputIt, typename Char = char>
|
2018-04-08 14:09:34 +00:00
|
|
|
//using format_context_t = basic_format_context<OutputIt, Char>;
|
|
|
|
struct format_context_t { typedef basic_format_context<OutputIt, Char> type; };
|
2018-01-18 06:04:24 +00:00
|
|
|
|
2018-01-21 22:30:38 +00:00
|
|
|
template <typename OutputIt, typename Char = char>
|
2018-04-08 14:09:34 +00:00
|
|
|
//using format_args_t = basic_format_args<format_context_t<OutputIt, Char>>;
|
2018-02-11 17:23:47 +00:00
|
|
|
struct format_args_t {
|
2018-04-08 14:09:34 +00:00
|
|
|
typedef basic_format_args<
|
|
|
|
typename format_context_t<OutputIt, Char>::type> type;
|
2018-02-11 17:23:47 +00:00
|
|
|
};
|
2018-01-18 06:04:24 +00:00
|
|
|
|
|
|
|
template <typename OutputIt, typename... Args>
|
2018-01-27 15:03:26 +00:00
|
|
|
inline OutputIt vformat_to(OutputIt out, string_view format_str,
|
2018-02-11 17:23:47 +00:00
|
|
|
typename format_args_t<OutputIt>::type args) {
|
2018-02-11 16:32:02 +00:00
|
|
|
typedef output_range<OutputIt, char> range;
|
2018-03-04 14:40:43 +00:00
|
|
|
return vformat_to<arg_formatter<range>>(range(out), format_str, args);
|
2018-01-18 06:04:24 +00:00
|
|
|
}
|
2018-06-13 06:24:32 +00:00
|
|
|
template <typename OutputIt, typename... Args>
|
|
|
|
inline OutputIt vformat_to(
|
|
|
|
OutputIt out, wstring_view format_str,
|
|
|
|
typename format_args_t<OutputIt, wchar_t>::type args) {
|
|
|
|
typedef output_range<OutputIt, wchar_t> range;
|
|
|
|
return vformat_to<arg_formatter<range>>(range(out), format_str, args);
|
|
|
|
}
|
2018-01-18 06:04:24 +00:00
|
|
|
|
2018-05-16 14:58:43 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Formats arguments, writes the result to the output iterator ``out`` and returns
|
|
|
|
the iterator past the end of the output range.
|
|
|
|
|
2018-05-16 15:19:26 +00:00
|
|
|
**Example**::
|
2018-05-16 14:58:43 +00:00
|
|
|
|
2018-05-16 15:19:26 +00:00
|
|
|
std::vector<char> out;
|
|
|
|
fmt::format_to(std::back_inserter(out), "{}", 42);
|
2018-05-16 14:58:43 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2018-01-18 06:04:24 +00:00
|
|
|
template <typename OutputIt, typename... Args>
|
2018-01-27 15:03:26 +00:00
|
|
|
inline OutputIt format_to(OutputIt out, string_view format_str,
|
2018-09-22 23:00:34 +00:00
|
|
|
const Args &... args) {
|
2018-02-11 17:23:47 +00:00
|
|
|
return vformat_to(out, format_str,
|
2018-04-21 21:29:24 +00:00
|
|
|
make_format_args<typename format_context_t<OutputIt>::type>(args...));
|
2018-01-15 20:46:44 +00:00
|
|
|
}
|
|
|
|
|
2018-03-30 01:13:10 +00:00
|
|
|
template <typename OutputIt>
|
|
|
|
struct format_to_n_result {
|
2018-03-30 18:31:41 +00:00
|
|
|
/** Iterator past the end of the output range. */
|
2018-03-30 01:13:10 +00:00
|
|
|
OutputIt out;
|
2018-03-30 18:31:41 +00:00
|
|
|
/** Total (not truncated) output size. */
|
2018-03-30 01:13:10 +00:00
|
|
|
std::size_t size;
|
|
|
|
};
|
|
|
|
|
2018-06-23 14:03:00 +00:00
|
|
|
template <typename OutputIt>
|
|
|
|
using format_to_n_context = typename fmt::format_context_t<
|
|
|
|
fmt::internal::truncating_iterator<OutputIt>>::type;
|
|
|
|
|
|
|
|
template <typename OutputIt>
|
|
|
|
using format_to_n_args = fmt::basic_format_args<format_to_n_context<OutputIt>>;
|
|
|
|
|
|
|
|
template <typename OutputIt, typename ...Args>
|
|
|
|
inline format_arg_store<format_to_n_context<OutputIt>, Args...>
|
2018-09-22 23:00:34 +00:00
|
|
|
make_format_to_n_args(const Args &... args) {
|
2018-06-23 14:03:00 +00:00
|
|
|
return format_arg_store<format_to_n_context<OutputIt>, Args...>(args...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename OutputIt, typename... Args>
|
|
|
|
inline format_to_n_result<OutputIt> vformat_to_n(
|
|
|
|
OutputIt out, std::size_t n, string_view format_str,
|
|
|
|
format_to_n_args<OutputIt> args) {
|
|
|
|
typedef internal::truncating_iterator<OutputIt> It;
|
|
|
|
auto it = vformat_to(It(out, n), format_str, args);
|
|
|
|
return {it.base(), it.count()};
|
|
|
|
}
|
|
|
|
|
2018-03-30 18:31:41 +00:00
|
|
|
/**
|
|
|
|
\rst
|
|
|
|
Formats arguments, writes up to ``n`` characters of the result to the output
|
2018-09-08 16:06:54 +00:00
|
|
|
iterator ``out`` and returns the total output size and the iterator past the
|
|
|
|
end of the output range.
|
2018-03-30 18:31:41 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2018-03-30 01:13:10 +00:00
|
|
|
template <typename OutputIt, typename... Args>
|
|
|
|
inline format_to_n_result<OutputIt> format_to_n(
|
2018-06-13 06:24:32 +00:00
|
|
|
OutputIt out, std::size_t n, string_view format_str, const Args &... args) {
|
2018-06-23 14:18:59 +00:00
|
|
|
return vformat_to_n<OutputIt>(
|
|
|
|
out, n, format_str, make_format_to_n_args<OutputIt>(args...));
|
2018-03-30 01:13:10 +00:00
|
|
|
}
|
2018-06-13 06:24:32 +00:00
|
|
|
template <typename OutputIt, typename... Args>
|
|
|
|
inline format_to_n_result<OutputIt> format_to_n(
|
2018-09-08 16:06:54 +00:00
|
|
|
OutputIt out, std::size_t n, wstring_view format_str,
|
|
|
|
const Args &... args) {
|
2018-06-13 06:24:32 +00:00
|
|
|
typedef internal::truncating_iterator<OutputIt> It;
|
|
|
|
auto it = vformat_to(It(out, n), format_str,
|
|
|
|
make_format_args<typename format_context_t<It, wchar_t>::type>(args...));
|
|
|
|
return {it.base(), it.count()};
|
|
|
|
}
|
2018-03-30 01:13:10 +00:00
|
|
|
|
2018-08-05 15:30:27 +00:00
|
|
|
template <typename Char>
|
|
|
|
inline std::basic_string<Char> internal::vformat(
|
|
|
|
basic_string_view<Char> format_str,
|
|
|
|
basic_format_args<typename buffer_context<Char>::type> args) {
|
|
|
|
basic_memory_buffer<Char> buffer;
|
2017-12-06 15:42:42 +00:00
|
|
|
vformat_to(buffer, format_str, args);
|
2018-01-14 20:25:03 +00:00
|
|
|
return fmt::to_string(buffer);
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
|
|
|
|
2018-03-07 13:41:45 +00:00
|
|
|
template <typename String, typename... Args>
|
2018-07-22 14:20:11 +00:00
|
|
|
inline typename std::enable_if<internal::is_compile_string<String>::value>::type
|
2018-09-22 23:00:34 +00:00
|
|
|
print(String format_str, const Args &... args) {
|
2018-03-07 13:41:45 +00:00
|
|
|
internal::check_format_string<Args...>(format_str);
|
2018-04-08 14:21:26 +00:00
|
|
|
return vprint(format_str.data(), make_format_args(args...));
|
2017-12-06 15:42:42 +00:00
|
|
|
}
|
2018-01-18 06:04:24 +00:00
|
|
|
|
2018-05-16 15:19:26 +00:00
|
|
|
/**
|
2018-06-24 13:39:22 +00:00
|
|
|
Returns the number of characters in the output of
|
|
|
|
``format(format_str, args...)``.
|
2018-05-16 15:19:26 +00:00
|
|
|
*/
|
2018-01-18 06:04:24 +00:00
|
|
|
template <typename... Args>
|
2018-04-04 14:38:21 +00:00
|
|
|
inline std::size_t formatted_size(string_view format_str,
|
2018-09-22 23:00:34 +00:00
|
|
|
const Args &... args) {
|
2018-03-31 17:47:30 +00:00
|
|
|
auto it = format_to(internal::counting_iterator<char>(), format_str, args...);
|
|
|
|
return it.count();
|
2018-01-18 06:04:24 +00:00
|
|
|
}
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
#if FMT_USE_USER_DEFINED_LITERALS
|
|
|
|
namespace internal {
|
|
|
|
|
2017-11-04 16:02:47 +00:00
|
|
|
# if FMT_UDL_TEMPLATE
|
|
|
|
template <typename Char, Char... CHARS>
|
2017-11-05 17:28:50 +00:00
|
|
|
class udl_formatter {
|
|
|
|
public:
|
2017-11-04 16:02:47 +00:00
|
|
|
template <typename... Args>
|
|
|
|
std::basic_string<Char> operator()(const Args &... args) const {
|
2018-02-04 16:58:21 +00:00
|
|
|
FMT_CONSTEXPR_DECL Char s[] = {CHARS..., '\0'};
|
|
|
|
FMT_CONSTEXPR_DECL bool invalid_format =
|
2017-11-11 18:28:05 +00:00
|
|
|
check_format_string<Char, error_handler, Args...>(
|
2017-11-11 15:39:12 +00:00
|
|
|
basic_string_view<Char>(s, sizeof...(CHARS)));
|
2017-11-16 14:55:49 +00:00
|
|
|
(void)invalid_format;
|
2017-11-04 16:02:47 +00:00
|
|
|
return format(s, args...);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
# else
|
|
|
|
template <typename Char>
|
|
|
|
struct udl_formatter {
|
2017-12-23 16:00:51 +00:00
|
|
|
const Char *str;
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
template <typename... Args>
|
2018-09-22 23:00:34 +00:00
|
|
|
auto operator()(Args &&... args) const
|
2016-01-28 12:33:16 +00:00
|
|
|
-> decltype(format(str, std::forward<Args>(args)...)) {
|
|
|
|
return format(str, std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
};
|
2017-11-04 16:02:47 +00:00
|
|
|
# endif // FMT_UDL_TEMPLATE
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
template <typename Char>
|
2017-11-19 16:02:07 +00:00
|
|
|
struct udl_arg {
|
2016-01-28 12:33:16 +00:00
|
|
|
const Char *str;
|
|
|
|
|
|
|
|
template <typename T>
|
2018-01-06 17:09:50 +00:00
|
|
|
named_arg<T, Char> operator=(T &&value) const {
|
2016-01-28 12:33:16 +00:00
|
|
|
return {str, std::forward<T>(value)};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
|
|
|
|
inline namespace literals {
|
|
|
|
|
2017-11-04 16:02:47 +00:00
|
|
|
# if FMT_UDL_TEMPLATE
|
|
|
|
template <typename Char, Char... CHARS>
|
2018-02-03 14:14:10 +00:00
|
|
|
FMT_CONSTEXPR internal::udl_formatter<Char, CHARS...> operator""_format() {
|
2017-11-04 16:02:47 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
# else
|
2016-01-28 12:33:16 +00:00
|
|
|
/**
|
|
|
|
\rst
|
2018-03-04 14:40:43 +00:00
|
|
|
User-defined literal equivalent of :func:`fmt::format`.
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
|
|
|
using namespace fmt::literals;
|
|
|
|
std::string message = "The answer is {}"_format(42);
|
|
|
|
\endrst
|
|
|
|
*/
|
2017-11-04 16:02:47 +00:00
|
|
|
inline internal::udl_formatter<char>
|
2017-12-23 16:00:51 +00:00
|
|
|
operator"" _format(const char *s, std::size_t) { return {s}; }
|
2017-11-04 16:02:47 +00:00
|
|
|
inline internal::udl_formatter<wchar_t>
|
2017-12-23 16:00:51 +00:00
|
|
|
operator"" _format(const wchar_t *s, std::size_t) { return {s}; }
|
2017-11-04 16:02:47 +00:00
|
|
|
# endif // FMT_UDL_TEMPLATE
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\rst
|
2018-03-04 14:40:43 +00:00
|
|
|
User-defined literal equivalent of :func:`fmt::arg`.
|
2016-01-28 12:33:16 +00:00
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
|
|
|
using namespace fmt::literals;
|
2018-03-04 17:55:17 +00:00
|
|
|
fmt::print("Elapsed time: {s:.2f} seconds", "s"_a=1.23);
|
2016-01-28 12:33:16 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2017-11-19 16:02:07 +00:00
|
|
|
inline internal::udl_arg<char>
|
2016-01-28 12:33:16 +00:00
|
|
|
operator"" _a(const char *s, std::size_t) { return {s}; }
|
2017-11-19 16:02:07 +00:00
|
|
|
inline internal::udl_arg<wchar_t>
|
2016-01-28 12:33:16 +00:00
|
|
|
operator"" _a(const wchar_t *s, std::size_t) { return {s}; }
|
|
|
|
} // inline namespace literals
|
|
|
|
#endif // FMT_USE_USER_DEFINED_LITERALS
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_END_NAMESPACE
|
2016-01-28 12:33:16 +00:00
|
|
|
|
2017-11-11 15:39:12 +00:00
|
|
|
#define FMT_STRING(s) [] { \
|
2018-07-07 19:20:10 +00:00
|
|
|
typedef typename std::decay<decltype(s)>::type pointer; \
|
2018-07-22 14:20:11 +00:00
|
|
|
struct S : fmt::compile_string { \
|
2018-07-07 19:20:10 +00:00
|
|
|
static FMT_CONSTEXPR pointer data() { return s; } \
|
2018-02-03 14:14:10 +00:00
|
|
|
static FMT_CONSTEXPR size_t size() { return sizeof(s); } \
|
2018-07-22 16:39:50 +00:00
|
|
|
explicit operator fmt::string_view() const { return s; } \
|
2017-11-11 15:39:12 +00:00
|
|
|
}; \
|
|
|
|
return S{}; \
|
|
|
|
}()
|
2017-11-04 15:23:24 +00:00
|
|
|
|
2018-09-08 16:55:41 +00:00
|
|
|
#if defined(FMT_STRING_ALIAS) && FMT_STRING_ALIAS
|
2018-03-10 17:25:17 +00:00
|
|
|
/**
|
|
|
|
\rst
|
2018-09-13 14:20:43 +00:00
|
|
|
Constructs a compile-time format string. This macro is disabled by default to
|
|
|
|
prevent potential name collisions. To enable it define ``FMT_STRING_ALIAS`` to
|
|
|
|
1 before including ``fmt/format.h``.
|
2018-03-10 17:25:17 +00:00
|
|
|
|
|
|
|
**Example**::
|
|
|
|
|
2018-09-13 14:37:20 +00:00
|
|
|
#define FMT_STRING_ALIAS 1
|
2018-03-10 17:25:17 +00:00
|
|
|
#include <fmt/format.h>
|
2018-03-16 20:26:31 +00:00
|
|
|
// A compile-time error because 'd' is an invalid specifier for strings.
|
2018-05-19 15:57:31 +00:00
|
|
|
std::string s = format(fmt("{:d}"), "foo");
|
2018-03-10 17:25:17 +00:00
|
|
|
\endrst
|
|
|
|
*/
|
2018-03-09 23:40:40 +00:00
|
|
|
# define fmt(s) FMT_STRING(s)
|
|
|
|
#endif
|
|
|
|
|
2017-08-21 13:50:57 +00:00
|
|
|
#ifdef FMT_HEADER_ONLY
|
|
|
|
# define FMT_FUNC inline
|
2018-03-21 14:50:59 +00:00
|
|
|
# include "format-inl.h"
|
2017-08-21 13:50:57 +00:00
|
|
|
#else
|
|
|
|
# define FMT_FUNC
|
|
|
|
#endif
|
|
|
|
|
2016-01-28 12:33:16 +00:00
|
|
|
// Restore warnings.
|
2018-06-06 13:57:59 +00:00
|
|
|
#if FMT_GCC_VERSION >= 406 || FMT_CLANG_VERSION
|
2016-01-28 12:33:16 +00:00
|
|
|
# pragma GCC diagnostic pop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // FMT_FORMAT_H_
|