| Victor Zverovich | c095445 | 2018-01-06 09:09:50 -0800 | [diff] [blame] | 1 | // Formatting library for C++ |
| 2 | // |
| 3 | // Copyright (c) 2012 - 2016, Victor Zverovich |
| 4 | // All rights reserved. |
| 5 | // |
| 6 | // For the license information refer to format.h. |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 7 | |
| 8 | #ifndef FMT_PRINTF_H_ |
| 9 | #define FMT_PRINTF_H_ |
| 10 | |
| 11 | #include <algorithm> // std::fill_n |
| 12 | #include <limits> // std::numeric_limits |
| 13 | |
| Victor Zverovich | f853d94 | 2018-01-20 10:28:10 -0800 | [diff] [blame] | 14 | #include "ostream.h" |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 15 | |
| Victor Zverovich | 838400d | 2018-05-12 08:33:51 -0700 | [diff] [blame] | 16 | FMT_BEGIN_NAMESPACE |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 17 | namespace internal { |
| 18 | |
| Victor Zverovich | 8668639 | 2018-12-13 07:50:50 -0800 | [diff] [blame] | 19 | // An iterator that produces a null terminator on *end. This simplifies parsing |
| 20 | // and allows comparing the performance of processing a null-terminated string |
| 21 | // vs string_view. |
| 22 | template <typename Char> |
| 23 | class null_terminating_iterator { |
| 24 | public: |
| 25 | typedef std::ptrdiff_t difference_type; |
| 26 | typedef Char value_type; |
| 27 | typedef const Char* pointer; |
| 28 | typedef const Char& reference; |
| 29 | typedef std::random_access_iterator_tag iterator_category; |
| 30 | |
| 31 | null_terminating_iterator() : ptr_(0), end_(0) {} |
| 32 | |
| 33 | FMT_CONSTEXPR null_terminating_iterator(const Char *ptr, const Char *end) |
| 34 | : ptr_(ptr), end_(end) {} |
| 35 | |
| 36 | template <typename Range> |
| 37 | FMT_CONSTEXPR explicit null_terminating_iterator(const Range &r) |
| 38 | : ptr_(r.begin()), end_(r.end()) {} |
| 39 | |
| 40 | FMT_CONSTEXPR null_terminating_iterator &operator=(const Char *ptr) { |
| 41 | assert(ptr <= end_); |
| 42 | ptr_ = ptr; |
| 43 | return *this; |
| 44 | } |
| 45 | |
| 46 | FMT_CONSTEXPR Char operator*() const { |
| 47 | return ptr_ != end_ ? *ptr_ : Char(); |
| 48 | } |
| 49 | |
| 50 | FMT_CONSTEXPR null_terminating_iterator operator++() { |
| 51 | ++ptr_; |
| 52 | return *this; |
| 53 | } |
| 54 | |
| 55 | FMT_CONSTEXPR null_terminating_iterator operator++(int) { |
| 56 | null_terminating_iterator result(*this); |
| 57 | ++ptr_; |
| 58 | return result; |
| 59 | } |
| 60 | |
| 61 | FMT_CONSTEXPR null_terminating_iterator operator--() { |
| 62 | --ptr_; |
| 63 | return *this; |
| 64 | } |
| 65 | |
| 66 | FMT_CONSTEXPR null_terminating_iterator operator+(difference_type n) { |
| 67 | return null_terminating_iterator(ptr_ + n, end_); |
| 68 | } |
| 69 | |
| 70 | FMT_CONSTEXPR null_terminating_iterator operator-(difference_type n) { |
| 71 | return null_terminating_iterator(ptr_ - n, end_); |
| 72 | } |
| 73 | |
| 74 | FMT_CONSTEXPR null_terminating_iterator operator+=(difference_type n) { |
| 75 | ptr_ += n; |
| 76 | return *this; |
| 77 | } |
| 78 | |
| 79 | FMT_CONSTEXPR difference_type operator-( |
| 80 | null_terminating_iterator other) const { |
| 81 | return ptr_ - other.ptr_; |
| 82 | } |
| 83 | |
| 84 | FMT_CONSTEXPR bool operator!=(null_terminating_iterator other) const { |
| 85 | return ptr_ != other.ptr_; |
| 86 | } |
| 87 | |
| 88 | bool operator>=(null_terminating_iterator other) const { |
| 89 | return ptr_ >= other.ptr_; |
| 90 | } |
| 91 | |
| 92 | // This should be a friend specialization pointer_from<Char> but the latter |
| 93 | // doesn't compile by gcc 5.1 due to a compiler bug. |
| 94 | template <typename CharT> |
| 95 | friend FMT_CONSTEXPR_DECL const CharT *pointer_from( |
| 96 | null_terminating_iterator<CharT> it); |
| 97 | |
| 98 | private: |
| 99 | const Char *ptr_; |
| 100 | const Char *end_; |
| 101 | }; |
| 102 | |
| 103 | template <typename T> |
| 104 | FMT_CONSTEXPR const T *pointer_from(const T *p) { return p; } |
| 105 | |
| 106 | template <typename Char> |
| 107 | FMT_CONSTEXPR const Char *pointer_from(null_terminating_iterator<Char> it) { |
| 108 | return it.ptr_; |
| 109 | } |
| 110 | |
| 111 | // DEPRECATED: Parses the input as an unsigned integer. This function assumes |
| 112 | // that the first character is a digit and presence of a non-digit character at |
| 113 | // the end. |
| 114 | // it: an iterator pointing to the beginning of the input range. |
| 115 | template <typename Iterator, typename ErrorHandler> |
| 116 | FMT_CONSTEXPR unsigned parse_nonnegative_int(Iterator &it, ErrorHandler &&eh) { |
| 117 | assert('0' <= *it && *it <= '9'); |
| 118 | if (*it == '0') { |
| 119 | ++it; |
| 120 | return 0; |
| 121 | } |
| 122 | unsigned value = 0; |
| 123 | // Convert to unsigned to prevent a warning. |
| 124 | unsigned max_int = (std::numeric_limits<int>::max)(); |
| 125 | unsigned big = max_int / 10; |
| 126 | do { |
| 127 | // Check for overflow. |
| 128 | if (value > big) { |
| 129 | value = max_int + 1; |
| 130 | break; |
| 131 | } |
| 132 | value = value * 10 + unsigned(*it - '0'); |
| 133 | // Workaround for MSVC "setup_exception stack overflow" error: |
| 134 | auto next = it; |
| 135 | ++next; |
| 136 | it = next; |
| 137 | } while ('0' <= *it && *it <= '9'); |
| 138 | if (value > max_int) |
| 139 | eh.on_error("number is too big"); |
| 140 | return value; |
| 141 | } |
| 142 | |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 143 | // Checks if a value fits in int - used to avoid warnings about comparing |
| 144 | // signed and unsigned integers. |
| 145 | template <bool IsSigned> |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 146 | struct int_checker { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 147 | template <typename T> |
| 148 | static bool fits_in_int(T value) { |
| 149 | unsigned max = std::numeric_limits<int>::max(); |
| 150 | return value <= max; |
| 151 | } |
| 152 | static bool fits_in_int(bool) { return true; } |
| 153 | }; |
| 154 | |
| 155 | template <> |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 156 | struct int_checker<true> { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 157 | template <typename T> |
| 158 | static bool fits_in_int(T value) { |
| 159 | return value >= std::numeric_limits<int>::min() && |
| 160 | value <= std::numeric_limits<int>::max(); |
| 161 | } |
| 162 | static bool fits_in_int(int) { return true; } |
| 163 | }; |
| 164 | |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 165 | class printf_precision_handler: public function<int> { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 166 | public: |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 167 | template <typename T> |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 168 | typename std::enable_if<std::is_integral<T>::value, int>::type |
| 169 | operator()(T value) { |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 170 | if (!int_checker<std::numeric_limits<T>::is_signed>::fits_in_int(value)) |
| Victor Zverovich | 9bb213e | 2016-08-25 08:38:07 -0700 | [diff] [blame] | 171 | FMT_THROW(format_error("number is too big")); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 172 | return static_cast<int>(value); |
| 173 | } |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 174 | |
| 175 | template <typename T> |
| Victor Zverovich | 6322b47 | 2018-06-06 16:51:35 +0200 | [diff] [blame] | 176 | typename std::enable_if<!std::is_integral<T>::value, int>::type operator()(T) { |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 177 | FMT_THROW(format_error("precision is not integer")); |
| Victor Zverovich | 6322b47 | 2018-06-06 16:51:35 +0200 | [diff] [blame] | 178 | return 0; |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 179 | } |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 180 | }; |
| 181 | |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 182 | // An argument visitor that returns true iff arg is a zero integer. |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 183 | class is_zero_int: public function<bool> { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 184 | public: |
| 185 | template <typename T> |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 186 | typename std::enable_if<std::is_integral<T>::value, bool>::type |
| 187 | operator()(T value) { return value == 0; } |
| 188 | |
| 189 | template <typename T> |
| 190 | typename std::enable_if<!std::is_integral<T>::value, bool>::type |
| Victor Zverovich | 77c892c | 2017-08-27 08:16:46 -0700 | [diff] [blame] | 191 | operator()(T) { return false; } |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 192 | }; |
| 193 | |
| Victor Zverovich | 0fbd846 | 2017-09-04 11:41:15 -0700 | [diff] [blame] | 194 | template <typename T> |
| 195 | struct make_unsigned_or_bool : std::make_unsigned<T> {}; |
| 196 | |
| 197 | template <> |
| 198 | struct make_unsigned_or_bool<bool> { |
| Victor Zverovich | affb35c | 2018-02-11 09:23:47 -0800 | [diff] [blame] | 199 | typedef bool type; |
| Victor Zverovich | 0fbd846 | 2017-09-04 11:41:15 -0700 | [diff] [blame] | 200 | }; |
| 201 | |
| Victor Zverovich | d705d51 | 2016-12-29 09:07:39 -0800 | [diff] [blame] | 202 | template <typename T, typename Context> |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 203 | class arg_converter: public function<void> { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 204 | private: |
| Victor Zverovich | d705d51 | 2016-12-29 09:07:39 -0800 | [diff] [blame] | 205 | typedef typename Context::char_type Char; |
| 206 | |
| Victor Zverovich | 23759b2 | 2018-04-04 07:38:21 -0700 | [diff] [blame] | 207 | basic_format_arg<Context> &arg_; |
| Victor Zverovich | d705d51 | 2016-12-29 09:07:39 -0800 | [diff] [blame] | 208 | typename Context::char_type type_; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 209 | |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 210 | public: |
| Victor Zverovich | 23759b2 | 2018-04-04 07:38:21 -0700 | [diff] [blame] | 211 | arg_converter(basic_format_arg<Context> &arg, Char type) |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 212 | : arg_(arg), type_(type) {} |
| 213 | |
| Victor Zverovich | 751ff64 | 2016-11-19 08:40:24 -0800 | [diff] [blame] | 214 | void operator()(bool value) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 215 | if (type_ != 's') |
| Victor Zverovich | 751ff64 | 2016-11-19 08:40:24 -0800 | [diff] [blame] | 216 | operator()<bool>(value); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | template <typename U> |
| Victor Zverovich | 751ff64 | 2016-11-19 08:40:24 -0800 | [diff] [blame] | 220 | typename std::enable_if<std::is_integral<U>::value>::type |
| 221 | operator()(U value) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 222 | bool is_signed = type_ == 'd' || type_ == 'i'; |
| Victor Zverovich | c18a404 | 2017-09-04 13:56:14 -0700 | [diff] [blame] | 223 | typedef typename std::conditional< |
| Victor Zverovich | f194a41 | 2017-08-27 09:16:50 -0700 | [diff] [blame] | 224 | std::is_same<T, void>::value, U, T>::type TargetType; |
| Victor Zverovich | 5013c15 | 2018-02-10 06:52:46 -0800 | [diff] [blame] | 225 | if (const_check(sizeof(TargetType) <= sizeof(int))) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 226 | // Extra casts are used to silence warnings. |
| 227 | if (is_signed) { |
| Victor Zverovich | d705d51 | 2016-12-29 09:07:39 -0800 | [diff] [blame] | 228 | arg_ = internal::make_arg<Context>( |
| Victor Zverovich | 0854f8c | 2016-12-11 13:22:45 -0800 | [diff] [blame] | 229 | static_cast<int>(static_cast<TargetType>(value))); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 230 | } else { |
| Victor Zverovich | 0fbd846 | 2017-09-04 11:41:15 -0700 | [diff] [blame] | 231 | typedef typename make_unsigned_or_bool<TargetType>::type Unsigned; |
| Victor Zverovich | d705d51 | 2016-12-29 09:07:39 -0800 | [diff] [blame] | 232 | arg_ = internal::make_arg<Context>( |
| Victor Zverovich | 0854f8c | 2016-12-11 13:22:45 -0800 | [diff] [blame] | 233 | static_cast<unsigned>(static_cast<Unsigned>(value))); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 234 | } |
| 235 | } else { |
| 236 | if (is_signed) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 237 | // glibc's printf doesn't sign extend arguments of smaller types: |
| 238 | // std::printf("%lld", -42); // prints "4294967254" |
| 239 | // but we don't have to do the same because it's a UB. |
| Victor Zverovich | 016aceb | 2017-08-26 09:09:43 -0700 | [diff] [blame] | 240 | arg_ = internal::make_arg<Context>(static_cast<long long>(value)); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 241 | } else { |
| Victor Zverovich | d705d51 | 2016-12-29 09:07:39 -0800 | [diff] [blame] | 242 | arg_ = internal::make_arg<Context>( |
| Victor Zverovich | 0fbd846 | 2017-09-04 11:41:15 -0700 | [diff] [blame] | 243 | static_cast<typename make_unsigned_or_bool<U>::type>(value)); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | } |
| Victor Zverovich | 751ff64 | 2016-11-19 08:40:24 -0800 | [diff] [blame] | 247 | |
| 248 | template <typename U> |
| Victor Zverovich | 77c892c | 2017-08-27 08:16:46 -0700 | [diff] [blame] | 249 | typename std::enable_if<!std::is_integral<U>::value>::type operator()(U) { |
| Victor Zverovich | 751ff64 | 2016-11-19 08:40:24 -0800 | [diff] [blame] | 250 | // No coversion needed for non-integral types. |
| 251 | } |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 252 | }; |
| 253 | |
| Victor Zverovich | 751ff64 | 2016-11-19 08:40:24 -0800 | [diff] [blame] | 254 | // Converts an integer argument to T for printf, if T is an integral type. |
| 255 | // If T is void, the argument is converted to corresponding signed or unsigned |
| 256 | // type depending on the type specifier: 'd' and 'i' - signed, other - |
| 257 | // unsigned). |
| Victor Zverovich | d705d51 | 2016-12-29 09:07:39 -0800 | [diff] [blame] | 258 | template <typename T, typename Context, typename Char> |
| Victor Zverovich | 23759b2 | 2018-04-04 07:38:21 -0700 | [diff] [blame] | 259 | void convert_arg(basic_format_arg<Context> &arg, Char type) { |
| Victor Zverovich | f548063 | 2018-10-05 07:15:41 -0700 | [diff] [blame] | 260 | visit_format_arg(arg_converter<T, Context>(arg, type), arg); |
| Victor Zverovich | 751ff64 | 2016-11-19 08:40:24 -0800 | [diff] [blame] | 261 | } |
| 262 | |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 263 | // Converts an integer argument to char for printf. |
| Victor Zverovich | d705d51 | 2016-12-29 09:07:39 -0800 | [diff] [blame] | 264 | template <typename Context> |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 265 | class char_converter: public function<void> { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 266 | private: |
| Victor Zverovich | 23759b2 | 2018-04-04 07:38:21 -0700 | [diff] [blame] | 267 | basic_format_arg<Context> &arg_; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 268 | |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 269 | public: |
| Victor Zverovich | 23759b2 | 2018-04-04 07:38:21 -0700 | [diff] [blame] | 270 | explicit char_converter(basic_format_arg<Context> &arg) : arg_(arg) {} |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 271 | |
| 272 | template <typename T> |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 273 | typename std::enable_if<std::is_integral<T>::value>::type |
| 274 | operator()(T value) { |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 275 | typedef typename Context::char_type Char; |
| 276 | arg_ = internal::make_arg<Context>(static_cast<Char>(value)); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 277 | } |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 278 | |
| 279 | template <typename T> |
| Victor Zverovich | d705d51 | 2016-12-29 09:07:39 -0800 | [diff] [blame] | 280 | typename std::enable_if<!std::is_integral<T>::value>::type operator()(T) { |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 281 | // No coversion needed for non-integral types. |
| 282 | } |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 283 | }; |
| 284 | |
| 285 | // Checks if an argument is a valid printf width specifier and sets |
| 286 | // left alignment if it is negative. |
| Victor Zverovich | bf0f107 | 2017-01-28 13:17:47 +0000 | [diff] [blame] | 287 | template <typename Char> |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 288 | class printf_width_handler: public function<unsigned> { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 289 | private: |
| Victor Zverovich | bf0f107 | 2017-01-28 13:17:47 +0000 | [diff] [blame] | 290 | typedef basic_format_specs<Char> format_specs; |
| 291 | |
| Victor Zverovich | 296e9ca | 2017-01-28 12:51:35 +0000 | [diff] [blame] | 292 | format_specs &spec_; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 293 | |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 294 | public: |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 295 | explicit printf_width_handler(format_specs &spec) : spec_(spec) {} |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 296 | |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 297 | template <typename T> |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 298 | typename std::enable_if<std::is_integral<T>::value, unsigned>::type |
| 299 | operator()(T value) { |
| Victor Zverovich | 6a2ff28 | 2017-02-19 06:46:51 -0800 | [diff] [blame] | 300 | typedef typename internal::int_traits<T>::main_type UnsignedType; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 301 | UnsignedType width = static_cast<UnsignedType>(value); |
| 302 | if (internal::is_negative(value)) { |
| 303 | spec_.align_ = ALIGN_LEFT; |
| 304 | width = 0 - width; |
| 305 | } |
| Victor Zverovich | e0d6f63 | 2016-06-15 06:29:47 -0700 | [diff] [blame] | 306 | unsigned int_max = std::numeric_limits<int>::max(); |
| 307 | if (width > int_max) |
| Victor Zverovich | 9bb213e | 2016-08-25 08:38:07 -0700 | [diff] [blame] | 308 | FMT_THROW(format_error("number is too big")); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 309 | return static_cast<unsigned>(width); |
| 310 | } |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 311 | |
| 312 | template <typename T> |
| 313 | typename std::enable_if<!std::is_integral<T>::value, unsigned>::type |
| Victor Zverovich | 77c892c | 2017-08-27 08:16:46 -0700 | [diff] [blame] | 314 | operator()(T) { |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 315 | FMT_THROW(format_error("width is not integer")); |
| Victor Zverovich | 6322b47 | 2018-06-06 16:51:35 +0200 | [diff] [blame] | 316 | return 0; |
| Victor Zverovich | e2dfd39 | 2016-11-19 09:29:09 -0800 | [diff] [blame] | 317 | } |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 318 | }; |
| Victor Zverovich | 8c2e15a | 2018-12-12 16:07:54 -0800 | [diff] [blame] | 319 | |
| 320 | template <typename Char, typename Context> |
| 321 | void printf(basic_buffer<Char> &buf, basic_string_view<Char> format, |
| 322 | basic_format_args<Context> args) { |
| 323 | Context(std::back_inserter(buf), format, args).format(); |
| 324 | } |
| Victor Zverovich | 6ee9f2e | 2016-07-21 06:59:28 -0700 | [diff] [blame] | 325 | } // namespace internal |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 326 | |
| Victor Zverovich | 8c2e15a | 2018-12-12 16:07:54 -0800 | [diff] [blame] | 327 | using internal::printf; // For printing into memory_buffer. |
| 328 | |
| Victor Zverovich | c095445 | 2018-01-06 09:09:50 -0800 | [diff] [blame] | 329 | template <typename Range> |
| Victor Zverovich | 10e70a0 | 2017-12-02 09:44:48 -0800 | [diff] [blame] | 330 | class printf_arg_formatter; |
| 331 | |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 332 | template < |
| 333 | typename OutputIt, typename Char, |
| 334 | typename ArgFormatter = |
| 335 | printf_arg_formatter<back_insert_range<internal::basic_buffer<Char>>>> |
| Victor Zverovich | 217e7c7 | 2018-01-14 07:19:23 -0800 | [diff] [blame] | 336 | class basic_printf_context; |
| Victor Zverovich | 10e70a0 | 2017-12-02 09:44:48 -0800 | [diff] [blame] | 337 | |
| Victor Zverovich | 6ee9f2e | 2016-07-21 06:59:28 -0700 | [diff] [blame] | 338 | /** |
| 339 | \rst |
| Victor Zverovich | d58cc8a | 2016-11-20 07:42:38 -0800 | [diff] [blame] | 340 | The ``printf`` argument formatter. |
| Victor Zverovich | 6ee9f2e | 2016-07-21 06:59:28 -0700 | [diff] [blame] | 341 | \endrst |
| 342 | */ |
| Victor Zverovich | c095445 | 2018-01-06 09:09:50 -0800 | [diff] [blame] | 343 | template <typename Range> |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 344 | class printf_arg_formatter: |
| Victor Zverovich | edd5f14 | 2018-05-20 09:09:03 -0700 | [diff] [blame] | 345 | public internal::function< |
| 346 | typename internal::arg_formatter_base<Range>::iterator>, |
| 347 | public internal::arg_formatter_base<Range> { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 348 | private: |
| Victor Zverovich | affb35c | 2018-02-11 09:23:47 -0800 | [diff] [blame] | 349 | typedef typename Range::value_type char_type; |
| Victor Zverovich | 418659a | 2018-03-03 14:04:59 -0800 | [diff] [blame] | 350 | typedef decltype(internal::declval<Range>().begin()) iterator; |
| Victor Zverovich | affb35c | 2018-02-11 09:23:47 -0800 | [diff] [blame] | 351 | typedef internal::arg_formatter_base<Range> base; |
| 352 | typedef basic_printf_context<iterator, char_type> context_type; |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 353 | |
| 354 | context_type &context_; |
| Victor Zverovich | 10e70a0 | 2017-12-02 09:44:48 -0800 | [diff] [blame] | 355 | |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 356 | void write_null_pointer(char) { |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 357 | this->spec()->type = 0; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 358 | this->write("(nil)"); |
| 359 | } |
| 360 | |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 361 | void write_null_pointer(wchar_t) { |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 362 | this->spec()->type = 0; |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 363 | this->write(L"(nil)"); |
| 364 | } |
| 365 | |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 366 | public: |
| Victor Zverovich | affb35c | 2018-02-11 09:23:47 -0800 | [diff] [blame] | 367 | typedef typename base::format_specs format_specs; |
| Victor Zverovich | bf0f107 | 2017-01-28 13:17:47 +0000 | [diff] [blame] | 368 | |
| Victor Zverovich | 6ee9f2e | 2016-07-21 06:59:28 -0700 | [diff] [blame] | 369 | /** |
| 370 | \rst |
| 371 | Constructs an argument formatter object. |
| Victor Zverovich | fefaf07 | 2017-02-14 16:29:47 -0500 | [diff] [blame] | 372 | *buffer* is a reference to the output buffer and *spec* contains format |
| Victor Zverovich | 6ee9f2e | 2016-07-21 06:59:28 -0700 | [diff] [blame] | 373 | specifier information for standard argument types. |
| 374 | \endrst |
| 375 | */ |
| Victor Zverovich | 9a53a70 | 2018-01-14 12:25:03 -0800 | [diff] [blame] | 376 | printf_arg_formatter(internal::basic_buffer<char_type> &buffer, |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 377 | format_specs &spec, context_type &ctx) |
| Victor Zverovich | f2ee988 | 2018-11-14 09:39:37 -0800 | [diff] [blame] | 378 | : base(back_insert_range<internal::basic_buffer<char_type>>(buffer), &spec, |
| 379 | ctx.locale()), |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 380 | context_(ctx) {} |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 381 | |
| Victor Zverovich | e928b67 | 2018-07-04 11:36:38 -0700 | [diff] [blame] | 382 | template <typename T> |
| 383 | typename std::enable_if<std::is_integral<T>::value, iterator>::type |
| 384 | operator()(T value) { |
| 385 | // MSVC2013 fails to compile separate overloads for bool and char_type so |
| 386 | // use std::is_same instead. |
| 387 | if (std::is_same<T, bool>::value) { |
| Victor Zverovich | 7110b46 | 2018-09-12 07:34:22 -0700 | [diff] [blame] | 388 | format_specs &fmt_spec = *this->spec(); |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 389 | if (fmt_spec.type != 's') |
| Victor Zverovich | e928b67 | 2018-07-04 11:36:38 -0700 | [diff] [blame] | 390 | return base::operator()(value ? 1 : 0); |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 391 | fmt_spec.type = 0; |
| Victor Zverovich | 479ee2a | 2018-07-04 13:17:03 -0700 | [diff] [blame] | 392 | this->write(value != 0); |
| Victor Zverovich | e928b67 | 2018-07-04 11:36:38 -0700 | [diff] [blame] | 393 | } else if (std::is_same<T, char_type>::value) { |
| Victor Zverovich | 7110b46 | 2018-09-12 07:34:22 -0700 | [diff] [blame] | 394 | format_specs &fmt_spec = *this->spec(); |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 395 | if (fmt_spec.type && fmt_spec.type != 'c') |
| Victor Zverovich | e928b67 | 2018-07-04 11:36:38 -0700 | [diff] [blame] | 396 | return (*this)(static_cast<int>(value)); |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 397 | fmt_spec.flags = 0; |
| Victor Zverovich | e928b67 | 2018-07-04 11:36:38 -0700 | [diff] [blame] | 398 | fmt_spec.align_ = ALIGN_RIGHT; |
| 399 | return base::operator()(value); |
| 400 | } else { |
| 401 | return base::operator()(value); |
| 402 | } |
| Victor Zverovich | 3cf0526 | 2018-03-30 08:20:12 -1000 | [diff] [blame] | 403 | return this->out(); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 404 | } |
| 405 | |
| Victor Zverovich | e928b67 | 2018-07-04 11:36:38 -0700 | [diff] [blame] | 406 | template <typename T> |
| 407 | typename std::enable_if<std::is_floating_point<T>::value, iterator>::type |
| 408 | operator()(T value) { |
| Victor Zverovich | 3cf0526 | 2018-03-30 08:20:12 -1000 | [diff] [blame] | 409 | return base::operator()(value); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 410 | } |
| 411 | |
| Victor Zverovich | 6ee9f2e | 2016-07-21 06:59:28 -0700 | [diff] [blame] | 412 | /** Formats a null-terminated C string. */ |
| Victor Zverovich | 3cf0526 | 2018-03-30 08:20:12 -1000 | [diff] [blame] | 413 | iterator operator()(const char *value) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 414 | if (value) |
| Victor Zverovich | c095445 | 2018-01-06 09:09:50 -0800 | [diff] [blame] | 415 | base::operator()(value); |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 416 | else if (this->spec()->type == 'p') |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 417 | write_null_pointer(char_type()); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 418 | else |
| 419 | this->write("(null)"); |
| Victor Zverovich | 3cf0526 | 2018-03-30 08:20:12 -1000 | [diff] [blame] | 420 | return this->out(); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 421 | } |
| 422 | |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 423 | /** Formats a null-terminated wide C string. */ |
| 424 | iterator operator()(const wchar_t *value) { |
| 425 | if (value) |
| 426 | base::operator()(value); |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 427 | else if (this->spec()->type == 'p') |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 428 | write_null_pointer(char_type()); |
| 429 | else |
| 430 | this->write(L"(null)"); |
| 431 | return this->out(); |
| 432 | } |
| 433 | |
| Victor Zverovich | 479ee2a | 2018-07-04 13:17:03 -0700 | [diff] [blame] | 434 | iterator operator()(basic_string_view<char_type> value) { |
| 435 | return base::operator()(value); |
| 436 | } |
| 437 | |
| 438 | iterator operator()(monostate value) { |
| 439 | return base::operator()(value); |
| 440 | } |
| 441 | |
| Victor Zverovich | 6ee9f2e | 2016-07-21 06:59:28 -0700 | [diff] [blame] | 442 | /** Formats a pointer. */ |
| Victor Zverovich | 3cf0526 | 2018-03-30 08:20:12 -1000 | [diff] [blame] | 443 | iterator operator()(const void *value) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 444 | if (value) |
| Victor Zverovich | c095445 | 2018-01-06 09:09:50 -0800 | [diff] [blame] | 445 | return base::operator()(value); |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 446 | this->spec()->type = 0; |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 447 | write_null_pointer(char_type()); |
| Victor Zverovich | 3cf0526 | 2018-03-30 08:20:12 -1000 | [diff] [blame] | 448 | return this->out(); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 449 | } |
| 450 | |
| Victor Zverovich | 6ee9f2e | 2016-07-21 06:59:28 -0700 | [diff] [blame] | 451 | /** Formats an argument of a custom (user-defined) type. */ |
| Victor Zverovich | 23759b2 | 2018-04-04 07:38:21 -0700 | [diff] [blame] | 452 | iterator operator()(typename basic_format_arg<context_type>::handle handle) { |
| Victor Zverovich | c095445 | 2018-01-06 09:09:50 -0800 | [diff] [blame] | 453 | handle.format(context_); |
| Victor Zverovich | 3cf0526 | 2018-03-30 08:20:12 -1000 | [diff] [blame] | 454 | return this->out(); |
| Victor Zverovich | 5e0562a | 2017-08-13 13:09:02 -0700 | [diff] [blame] | 455 | } |
| 456 | }; |
| 457 | |
| Victor Zverovich | c095445 | 2018-01-06 09:09:50 -0800 | [diff] [blame] | 458 | template <typename T> |
| Victor Zverovich | 5e0562a | 2017-08-13 13:09:02 -0700 | [diff] [blame] | 459 | struct printf_formatter { |
| Victor Zverovich | 8cbf544 | 2017-09-17 08:32:57 -0700 | [diff] [blame] | 460 | template <typename ParseContext> |
| Victor Zverovich | 1b45253 | 2018-02-28 05:09:24 -0800 | [diff] [blame] | 461 | auto parse(ParseContext &ctx) -> decltype(ctx.begin()) { return ctx.begin(); } |
| Victor Zverovich | 5e0562a | 2017-08-13 13:09:02 -0700 | [diff] [blame] | 462 | |
| Victor Zverovich | 91ee9c9 | 2018-01-14 11:00:27 -0800 | [diff] [blame] | 463 | template <typename FormatContext> |
| Victor Zverovich | fa9066f | 2018-04-22 09:16:32 -0700 | [diff] [blame] | 464 | auto format(const T &value, FormatContext &ctx) -> decltype(ctx.out()) { |
| 465 | internal::format_value(internal::get_container(ctx.out()), value); |
| 466 | return ctx.out(); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 467 | } |
| 468 | }; |
| 469 | |
| Victor Zverovich | d4ddaaf | 2016-07-20 08:09:14 -0700 | [diff] [blame] | 470 | /** This template formats data and writes the output to a writer. */ |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 471 | template <typename OutputIt, typename Char, typename ArgFormatter> |
| Victor Zverovich | 217e7c7 | 2018-01-14 07:19:23 -0800 | [diff] [blame] | 472 | class basic_printf_context : |
| Victor Zverovich | a11eb3a | 2018-08-22 09:07:17 -0700 | [diff] [blame] | 473 | // Inherit publicly as a workaround for the icc bug |
| 474 | // https://software.intel.com/en-us/forums/intel-c-compiler/topic/783476. |
| 475 | public internal::context_base< |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 476 | OutputIt, basic_printf_context<OutputIt, Char, ArgFormatter>, Char> { |
| Victor Zverovich | 18dfa25 | 2016-10-21 06:46:21 -0700 | [diff] [blame] | 477 | public: |
| 478 | /** The character type for the output. */ |
| Victor Zverovich | affb35c | 2018-02-11 09:23:47 -0800 | [diff] [blame] | 479 | typedef Char char_type; |
| Victor Zverovich | 5e0562a | 2017-08-13 13:09:02 -0700 | [diff] [blame] | 480 | |
| 481 | template <typename T> |
| Victor Zverovich | 522de7b | 2018-02-11 08:32:02 -0800 | [diff] [blame] | 482 | struct formatter_type { typedef printf_formatter<T> type; }; |
| Victor Zverovich | 18dfa25 | 2016-10-21 06:46:21 -0700 | [diff] [blame] | 483 | |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 484 | private: |
| Victor Zverovich | affb35c | 2018-02-11 09:23:47 -0800 | [diff] [blame] | 485 | typedef internal::context_base<OutputIt, basic_printf_context, Char> base; |
| 486 | typedef typename base::format_arg format_arg; |
| 487 | typedef basic_format_specs<char_type> format_specs; |
| 488 | typedef internal::null_terminating_iterator<char_type> iterator; |
| Victor Zverovich | dafbec7 | 2016-10-07 08:37:06 -0700 | [diff] [blame] | 489 | |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 490 | void parse_flags(format_specs &spec, iterator &it); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 491 | |
| 492 | // Returns the argument with specified index or, if arg_index is equal |
| 493 | // to the maximum unsigned value, the next argument. |
| Victor Zverovich | d705d51 | 2016-12-29 09:07:39 -0800 | [diff] [blame] | 494 | format_arg get_arg( |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 495 | iterator it, |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 496 | unsigned arg_index = (std::numeric_limits<unsigned>::max)()); |
| 497 | |
| 498 | // Parses argument index, flags and width and returns the argument index. |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 499 | unsigned parse_header(iterator &it, format_specs &spec); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 500 | |
| 501 | public: |
| Victor Zverovich | d4ddaaf | 2016-07-20 08:09:14 -0700 | [diff] [blame] | 502 | /** |
| 503 | \rst |
| Victor Zverovich | 9998f66 | 2016-11-06 16:11:24 -0800 | [diff] [blame] | 504 | Constructs a ``printf_context`` object. References to the arguments and |
| 505 | the writer are stored in the context object so make sure they have |
| Victor Zverovich | ab05453 | 2016-07-20 08:21:13 -0700 | [diff] [blame] | 506 | appropriate lifetimes. |
| Victor Zverovich | d4ddaaf | 2016-07-20 08:09:14 -0700 | [diff] [blame] | 507 | \endrst |
| 508 | */ |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 509 | basic_printf_context(OutputIt out, basic_string_view<char_type> format_str, |
| Victor Zverovich | 217e7c7 | 2018-01-14 07:19:23 -0800 | [diff] [blame] | 510 | basic_format_args<basic_printf_context> args) |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 511 | : base(out, format_str, args) {} |
| Victor Zverovich | 8cbf544 | 2017-09-17 08:32:57 -0700 | [diff] [blame] | 512 | |
| Victor Zverovich | 91ee9c9 | 2018-01-14 11:00:27 -0800 | [diff] [blame] | 513 | using base::parse_context; |
| Victor Zverovich | fa9066f | 2018-04-22 09:16:32 -0700 | [diff] [blame] | 514 | using base::out; |
| Victor Zverovich | 91ee9c9 | 2018-01-14 11:00:27 -0800 | [diff] [blame] | 515 | using base::advance_to; |
| Victor Zverovich | 9998f66 | 2016-11-06 16:11:24 -0800 | [diff] [blame] | 516 | |
| Victor Zverovich | c095445 | 2018-01-06 09:09:50 -0800 | [diff] [blame] | 517 | /** Formats stored arguments and writes the output to the range. */ |
| Victor Zverovich | 08dff37 | 2018-01-28 20:50:43 -0800 | [diff] [blame] | 518 | void format(); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 519 | }; |
| 520 | |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 521 | template <typename OutputIt, typename Char, typename AF> |
| 522 | void basic_printf_context<OutputIt, Char, AF>::parse_flags( |
| Victor Zverovich | 217e7c7 | 2018-01-14 07:19:23 -0800 | [diff] [blame] | 523 | format_specs &spec, iterator &it) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 524 | for (;;) { |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 525 | switch (*it++) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 526 | case '-': |
| 527 | spec.align_ = ALIGN_LEFT; |
| 528 | break; |
| 529 | case '+': |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 530 | spec.flags |= SIGN_FLAG | PLUS_FLAG; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 531 | break; |
| 532 | case '0': |
| 533 | spec.fill_ = '0'; |
| 534 | break; |
| 535 | case ' ': |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 536 | spec.flags |= SIGN_FLAG; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 537 | break; |
| 538 | case '#': |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 539 | spec.flags |= HASH_FLAG; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 540 | break; |
| 541 | default: |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 542 | --it; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 543 | return; |
| 544 | } |
| 545 | } |
| 546 | } |
| 547 | |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 548 | template <typename OutputIt, typename Char, typename AF> |
| 549 | typename basic_printf_context<OutputIt, Char, AF>::format_arg |
| 550 | basic_printf_context<OutputIt, Char, AF>::get_arg( |
| 551 | iterator it, unsigned arg_index) { |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 552 | (void)it; |
| Victor Zverovich | c523dd5 | 2017-11-19 07:36:01 -0800 | [diff] [blame] | 553 | if (arg_index == std::numeric_limits<unsigned>::max()) |
| Victor Zverovich | 67928ea | 2018-01-14 09:27:40 -0800 | [diff] [blame] | 554 | return this->do_get_arg(this->parse_context().next_arg_id()); |
| Victor Zverovich | 91ee9c9 | 2018-01-14 11:00:27 -0800 | [diff] [blame] | 555 | return base::get_arg(arg_index - 1); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 556 | } |
| 557 | |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 558 | template <typename OutputIt, typename Char, typename AF> |
| 559 | unsigned basic_printf_context<OutputIt, Char, AF>::parse_header( |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 560 | iterator &it, format_specs &spec) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 561 | unsigned arg_index = std::numeric_limits<unsigned>::max(); |
| Victor Zverovich | c095445 | 2018-01-06 09:09:50 -0800 | [diff] [blame] | 562 | char_type c = *it; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 563 | if (c >= '0' && c <= '9') { |
| 564 | // Parse an argument index (if followed by '$') or a width possibly |
| 565 | // preceded with '0' flag(s). |
| Victor Zverovich | 932ab2b | 2017-10-21 08:37:52 -0700 | [diff] [blame] | 566 | internal::error_handler eh; |
| 567 | unsigned value = parse_nonnegative_int(it, eh); |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 568 | if (*it == '$') { // value is an argument index |
| 569 | ++it; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 570 | arg_index = value; |
| 571 | } else { |
| 572 | if (c == '0') |
| 573 | spec.fill_ = '0'; |
| 574 | if (value != 0) { |
| 575 | // Nonzero value means that we parsed width and don't need to |
| 576 | // parse it or flags again, so return now. |
| 577 | spec.width_ = value; |
| 578 | return arg_index; |
| 579 | } |
| 580 | } |
| 581 | } |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 582 | parse_flags(spec, it); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 583 | // Parse width. |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 584 | if (*it >= '0' && *it <= '9') { |
| Victor Zverovich | 932ab2b | 2017-10-21 08:37:52 -0700 | [diff] [blame] | 585 | internal::error_handler eh; |
| 586 | spec.width_ = parse_nonnegative_int(it, eh); |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 587 | } else if (*it == '*') { |
| 588 | ++it; |
| Victor Zverovich | f548063 | 2018-10-05 07:15:41 -0700 | [diff] [blame] | 589 | spec.width_ = visit_format_arg( |
| 590 | internal::printf_width_handler<char_type>(spec), get_arg(it)); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 591 | } |
| 592 | return arg_index; |
| 593 | } |
| 594 | |
| Victor Zverovich | bd8a7e7 | 2018-01-21 14:30:38 -0800 | [diff] [blame] | 595 | template <typename OutputIt, typename Char, typename AF> |
| 596 | void basic_printf_context<OutputIt, Char, AF>::format() { |
| Victor Zverovich | fa9066f | 2018-04-22 09:16:32 -0700 | [diff] [blame] | 597 | auto &buffer = internal::get_container(this->out()); |
| Victor Zverovich | 67928ea | 2018-01-14 09:27:40 -0800 | [diff] [blame] | 598 | auto start = iterator(this->parse_context()); |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 599 | auto it = start; |
| 600 | using internal::pointer_from; |
| 601 | while (*it) { |
| Victor Zverovich | c095445 | 2018-01-06 09:09:50 -0800 | [diff] [blame] | 602 | char_type c = *it++; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 603 | if (c != '%') continue; |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 604 | if (*it == c) { |
| 605 | buffer.append(pointer_from(start), pointer_from(it)); |
| 606 | start = ++it; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 607 | continue; |
| 608 | } |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 609 | buffer.append(pointer_from(start), pointer_from(it) - 1); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 610 | |
| Victor Zverovich | 296e9ca | 2017-01-28 12:51:35 +0000 | [diff] [blame] | 611 | format_specs spec; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 612 | spec.align_ = ALIGN_RIGHT; |
| 613 | |
| 614 | // Parse argument index, flags and width. |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 615 | unsigned arg_index = parse_header(it, spec); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 616 | |
| 617 | // Parse precision. |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 618 | if (*it == '.') { |
| 619 | ++it; |
| 620 | if ('0' <= *it && *it <= '9') { |
| Victor Zverovich | 932ab2b | 2017-10-21 08:37:52 -0700 | [diff] [blame] | 621 | internal::error_handler eh; |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 622 | spec.precision = static_cast<int>(parse_nonnegative_int(it, eh)); |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 623 | } else if (*it == '*') { |
| 624 | ++it; |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 625 | spec.precision = |
| Victor Zverovich | f548063 | 2018-10-05 07:15:41 -0700 | [diff] [blame] | 626 | visit_format_arg(internal::printf_precision_handler(), get_arg(it)); |
| Victor Zverovich | 5060568 | 2018-01-27 17:56:19 -0800 | [diff] [blame] | 627 | } else { |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 628 | spec.precision = 0; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 629 | } |
| 630 | } |
| 631 | |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 632 | format_arg arg = get_arg(it, arg_index); |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 633 | if (spec.has(HASH_FLAG) && visit_format_arg(internal::is_zero_int(), arg)) |
| Sign Bit | 0bbdca5 | 2018-12-20 09:24:19 -0500 | [diff] [blame^] | 634 | spec.flags = static_cast<uint_least8_t>(spec.flags & (~internal::to_unsigned<int>(HASH_FLAG))); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 635 | if (spec.fill_ == '0') { |
| Victor Zverovich | 7cea163 | 2017-12-09 06:19:15 -0800 | [diff] [blame] | 636 | if (arg.is_arithmetic()) |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 637 | spec.align_ = ALIGN_NUMERIC; |
| 638 | else |
| 639 | spec.fill_ = ' '; // Ignore '0' flag for non-numeric types. |
| 640 | } |
| 641 | |
| 642 | // Parse length and convert the argument to the required type. |
| Victor Zverovich | 751ff64 | 2016-11-19 08:40:24 -0800 | [diff] [blame] | 643 | using internal::convert_arg; |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 644 | switch (*it++) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 645 | case 'h': |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 646 | if (*it == 'h') |
| 647 | convert_arg<signed char>(arg, *++it); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 648 | else |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 649 | convert_arg<short>(arg, *it); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 650 | break; |
| 651 | case 'l': |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 652 | if (*it == 'l') |
| Victor Zverovich | 016aceb | 2017-08-26 09:09:43 -0700 | [diff] [blame] | 653 | convert_arg<long long>(arg, *++it); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 654 | else |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 655 | convert_arg<long>(arg, *it); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 656 | break; |
| 657 | case 'j': |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 658 | convert_arg<intmax_t>(arg, *it); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 659 | break; |
| 660 | case 'z': |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 661 | convert_arg<std::size_t>(arg, *it); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 662 | break; |
| 663 | case 't': |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 664 | convert_arg<std::ptrdiff_t>(arg, *it); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 665 | break; |
| 666 | case 'L': |
| 667 | // printf produces garbage when 'L' is omitted for long double, no |
| 668 | // need to do the same. |
| 669 | break; |
| 670 | default: |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 671 | --it; |
| 672 | convert_arg<void>(arg, *it); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | // Parse type. |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 676 | if (!*it) |
| Victor Zverovich | 9bb213e | 2016-08-25 08:38:07 -0700 | [diff] [blame] | 677 | FMT_THROW(format_error("invalid format string")); |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 678 | spec.type = static_cast<char>(*it++); |
| Victor Zverovich | 0854f8c | 2016-12-11 13:22:45 -0800 | [diff] [blame] | 679 | if (arg.is_integral()) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 680 | // Normalize type. |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 681 | switch (spec.type) { |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 682 | case 'i': case 'u': |
| Victor Zverovich | 2924622 | 2018-10-17 09:15:29 -0700 | [diff] [blame] | 683 | spec.type = 'd'; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 684 | break; |
| 685 | case 'c': |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 686 | // TODO: handle wchar_t better? |
| Victor Zverovich | f548063 | 2018-10-05 07:15:41 -0700 | [diff] [blame] | 687 | visit_format_arg( |
| 688 | internal::char_converter<basic_printf_context>(arg), arg); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 689 | break; |
| 690 | } |
| 691 | } |
| 692 | |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 693 | start = it; |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 694 | |
| 695 | // Format argument. |
| Victor Zverovich | f548063 | 2018-10-05 07:15:41 -0700 | [diff] [blame] | 696 | visit_format_arg(AF(buffer, spec, *this), arg); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 697 | } |
| Victor Zverovich | 2f4f49f | 2017-07-18 19:40:48 -0700 | [diff] [blame] | 698 | buffer.append(pointer_from(start), pointer_from(it)); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 699 | } |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 700 | |
| Victor Zverovich | 217e7c7 | 2018-01-14 07:19:23 -0800 | [diff] [blame] | 701 | template <typename Buffer> |
| tnovotny | e37d6a9 | 2018-11-22 22:57:07 +0100 | [diff] [blame] | 702 | struct basic_printf_context_t { |
| Victor Zverovich | affb35c | 2018-02-11 09:23:47 -0800 | [diff] [blame] | 703 | typedef basic_printf_context< |
| 704 | std::back_insert_iterator<Buffer>, typename Buffer::value_type> type; |
| 705 | }; |
| Victor Zverovich | 217e7c7 | 2018-01-14 07:19:23 -0800 | [diff] [blame] | 706 | |
| tnovotny | e37d6a9 | 2018-11-22 22:57:07 +0100 | [diff] [blame] | 707 | typedef basic_printf_context_t<internal::buffer>::type printf_context; |
| 708 | typedef basic_printf_context_t<internal::wbuffer>::type wprintf_context; |
| 709 | |
| 710 | typedef basic_format_args<printf_context> printf_args; |
| 711 | typedef basic_format_args<wprintf_context> wprintf_args; |
| 712 | |
| 713 | /** |
| 714 | \rst |
| 715 | Constructs an `~fmt::format_arg_store` object that contains references to |
| 716 | arguments and can be implicitly converted to `~fmt::printf_args`. |
| 717 | \endrst |
| 718 | */ |
| 719 | template<typename... Args> |
| 720 | inline format_arg_store<printf_context, Args...> |
| 721 | make_printf_args(const Args &... args) { return {args...}; } |
| 722 | |
| 723 | /** |
| 724 | \rst |
| 725 | Constructs an `~fmt::format_arg_store` object that contains references to |
| 726 | arguments and can be implicitly converted to `~fmt::wprintf_args`. |
| 727 | \endrst |
| 728 | */ |
| 729 | template<typename... Args> |
| 730 | inline format_arg_store<wprintf_context, Args...> |
| 731 | make_wprintf_args(const Args &... args) { return {args...}; } |
| Victor Zverovich | 0854f8c | 2016-12-11 13:22:45 -0800 | [diff] [blame] | 732 | |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 733 | template <typename S, typename Char = FMT_CHAR(S)> |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 734 | inline std::basic_string<Char> |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 735 | vsprintf(const S &format, |
| tnovotny | e37d6a9 | 2018-11-22 22:57:07 +0100 | [diff] [blame] | 736 | basic_format_args<typename basic_printf_context_t< |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 737 | internal::basic_buffer<Char>>::type> args) { |
| 738 | basic_memory_buffer<Char> buffer; |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 739 | printf(buffer, to_string_view(format), args); |
| Victor Zverovich | fefaf07 | 2017-02-14 16:29:47 -0500 | [diff] [blame] | 740 | return to_string(buffer); |
| Victor Zverovich | 0028ce5 | 2016-08-26 17:23:13 -0700 | [diff] [blame] | 741 | } |
| 742 | |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 743 | /** |
| 744 | \rst |
| 745 | Formats arguments and returns the result as a string. |
| 746 | |
| 747 | **Example**:: |
| 748 | |
| 749 | std::string message = fmt::sprintf("The answer is %d", 42); |
| 750 | \endrst |
| 751 | */ |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 752 | template <typename S, typename... Args> |
| Victor Zverovich | 7f7504b | 2018-12-12 18:21:13 -0800 | [diff] [blame] | 753 | inline FMT_ENABLE_IF_T( |
| 754 | internal::is_string<S>::value, std::basic_string<FMT_CHAR(S)>) |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 755 | sprintf(const S &format, const Args & ... args) { |
| 756 | internal::check_format_string<Args...>(format); |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 757 | typedef internal::basic_buffer<FMT_CHAR(S)> buffer; |
| tnovotny | e37d6a9 | 2018-11-22 22:57:07 +0100 | [diff] [blame] | 758 | typedef typename basic_printf_context_t<buffer>::type context; |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 759 | format_arg_store<context, Args...> as{ args... }; |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 760 | return vsprintf(to_string_view(format), |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 761 | basic_format_args<context>(as)); |
| Victor Zverovich | 0028ce5 | 2016-08-26 17:23:13 -0700 | [diff] [blame] | 762 | } |
| 763 | |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 764 | template <typename S, typename Char = FMT_CHAR(S)> |
| 765 | inline int vfprintf(std::FILE *f, const S &format, |
| tnovotny | e37d6a9 | 2018-11-22 22:57:07 +0100 | [diff] [blame] | 766 | basic_format_args<typename basic_printf_context_t< |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 767 | internal::basic_buffer<Char>>::type> args) { |
| 768 | basic_memory_buffer<Char> buffer; |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 769 | printf(buffer, to_string_view(format), args); |
| Victor Zverovich | 955062d | 2017-12-17 08:36:19 -0800 | [diff] [blame] | 770 | std::size_t size = buffer.size(); |
| 771 | return std::fwrite( |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 772 | buffer.data(), sizeof(Char), size, f) < size ? -1 : static_cast<int>(size); |
| Victor Zverovich | 955062d | 2017-12-17 08:36:19 -0800 | [diff] [blame] | 773 | } |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 774 | |
| 775 | /** |
| 776 | \rst |
| 777 | Prints formatted data to the file *f*. |
| 778 | |
| 779 | **Example**:: |
| 780 | |
| 781 | fmt::fprintf(stderr, "Don't %s!", "panic"); |
| 782 | \endrst |
| 783 | */ |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 784 | template <typename S, typename... Args> |
| Victor Zverovich | 7f7504b | 2018-12-12 18:21:13 -0800 | [diff] [blame] | 785 | inline FMT_ENABLE_IF_T(internal::is_string<S>::value, int) |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 786 | fprintf(std::FILE *f, const S &format, const Args & ... args) { |
| 787 | internal::check_format_string<Args...>(format); |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 788 | typedef internal::basic_buffer<FMT_CHAR(S)> buffer; |
| tnovotny | e37d6a9 | 2018-11-22 22:57:07 +0100 | [diff] [blame] | 789 | typedef typename basic_printf_context_t<buffer>::type context; |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 790 | format_arg_store<context, Args...> as{ args... }; |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 791 | return vfprintf(f, to_string_view(format), |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 792 | basic_format_args<context>(as)); |
| Victor Zverovich | 0028ce5 | 2016-08-26 17:23:13 -0700 | [diff] [blame] | 793 | } |
| 794 | |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 795 | template <typename S, typename Char = FMT_CHAR(S)> |
| 796 | inline int vprintf(const S &format, |
| tnovotny | e37d6a9 | 2018-11-22 22:57:07 +0100 | [diff] [blame] | 797 | basic_format_args<typename basic_printf_context_t< |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 798 | internal::basic_buffer<Char>>::type> args) { |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 799 | return vfprintf(stdout, to_string_view(format), args); |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 800 | } |
| 801 | |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 802 | /** |
| 803 | \rst |
| 804 | Prints formatted data to ``stdout``. |
| 805 | |
| 806 | **Example**:: |
| 807 | |
| 808 | fmt::printf("Elapsed time: %.2f seconds", 1.23); |
| 809 | \endrst |
| 810 | */ |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 811 | template <typename S, typename... Args> |
| Victor Zverovich | 7f7504b | 2018-12-12 18:21:13 -0800 | [diff] [blame] | 812 | inline FMT_ENABLE_IF_T(internal::is_string<S>::value, int) |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 813 | printf(const S &format_str, const Args & ... args) { |
| 814 | internal::check_format_string<Args...>(format_str); |
| 815 | typedef internal::basic_buffer<FMT_CHAR(S)> buffer; |
| tnovotny | e37d6a9 | 2018-11-22 22:57:07 +0100 | [diff] [blame] | 816 | typedef typename basic_printf_context_t<buffer>::type context; |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 817 | format_arg_store<context, Args...> as{ args... }; |
| Daniela Engert | 2c81c85 | 2018-10-08 20:14:39 +0200 | [diff] [blame] | 818 | return vprintf(to_string_view(format_str), |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 819 | basic_format_args<context>(as)); |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 820 | } |
| Victor Zverovich | 0028ce5 | 2016-08-26 17:23:13 -0700 | [diff] [blame] | 821 | |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 822 | template <typename S, typename Char = FMT_CHAR(S)> |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 823 | inline int vfprintf(std::basic_ostream<Char> &os, |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 824 | const S &format, |
| tnovotny | e37d6a9 | 2018-11-22 22:57:07 +0100 | [diff] [blame] | 825 | basic_format_args<typename basic_printf_context_t< |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 826 | internal::basic_buffer<Char>>::type> args) { |
| 827 | basic_memory_buffer<Char> buffer; |
| Victor Zverovich | 0a96c03 | 2018-10-25 07:20:02 -0700 | [diff] [blame] | 828 | printf(buffer, to_string_view(format), args); |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 829 | internal::write(os, buffer); |
| 830 | return static_cast<int>(buffer.size()); |
| 831 | } |
| 832 | |
| Victor Zverovich | 9dbb60c | 2016-08-03 08:52:05 -0700 | [diff] [blame] | 833 | /** |
| 834 | \rst |
| 835 | Prints formatted data to the stream *os*. |
| 836 | |
| 837 | **Example**:: |
| 838 | |
| Victor Zverovich | 4023291 | 2018-03-04 09:55:17 -0800 | [diff] [blame] | 839 | fmt::fprintf(cerr, "Don't %s!", "panic"); |
| Victor Zverovich | 9dbb60c | 2016-08-03 08:52:05 -0700 | [diff] [blame] | 840 | \endrst |
| 841 | */ |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 842 | template <typename S, typename... Args> |
| Victor Zverovich | 7f7504b | 2018-12-12 18:21:13 -0800 | [diff] [blame] | 843 | inline FMT_ENABLE_IF_T(internal::is_string<S>::value, int) |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 844 | fprintf(std::basic_ostream<FMT_CHAR(S)> &os, |
| 845 | const S &format_str, const Args & ... args) { |
| 846 | internal::check_format_string<Args...>(format_str); |
| 847 | typedef internal::basic_buffer<FMT_CHAR(S)> buffer; |
| tnovotny | e37d6a9 | 2018-11-22 22:57:07 +0100 | [diff] [blame] | 848 | typedef typename basic_printf_context_t<buffer>::type context; |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 849 | format_arg_store<context, Args...> as{ args... }; |
| Daniela Engert | 2c81c85 | 2018-10-08 20:14:39 +0200 | [diff] [blame] | 850 | return vfprintf(os, to_string_view(format_str), |
| Daniela Engert | f27defc | 2018-10-07 14:38:29 +0200 | [diff] [blame] | 851 | basic_format_args<context>(as)); |
| Daniela Engert | 2570f1a | 2018-04-26 20:32:14 +0200 | [diff] [blame] | 852 | } |
| Victor Zverovich | 838400d | 2018-05-12 08:33:51 -0700 | [diff] [blame] | 853 | FMT_END_NAMESPACE |
| Glen Stark | 72d51e0 | 2016-06-08 01:23:32 +0200 | [diff] [blame] | 854 | |
| 855 | #endif // FMT_PRINTF_H_ |