Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===-------------------------- locale ------------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_LOCALE |
| 12 | #define _LIBCPP_LOCALE |
| 13 | |
| 14 | /* |
| 15 | locale synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | |
| 20 | class locale |
| 21 | { |
| 22 | public: |
| 23 | // types: |
| 24 | class facet; |
| 25 | class id; |
| 26 | |
| 27 | typedef int category; |
| 28 | static const category // values assigned here are for exposition only |
| 29 | none = 0x000, |
| 30 | collate = 0x010, |
| 31 | ctype = 0x020, |
| 32 | monetary = 0x040, |
| 33 | numeric = 0x080, |
| 34 | time = 0x100, |
| 35 | messages = 0x200, |
| 36 | all = collate | ctype | monetary | numeric | time | messages; |
| 37 | |
| 38 | // construct/copy/destroy: |
Howard Hinnant | c983454 | 2011-05-31 15:34:58 +0000 | [diff] [blame] | 39 | locale() noexcept; |
| 40 | locale(const locale& other) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 41 | explicit locale(const char* std_name); |
| 42 | explicit locale(const string& std_name); |
| 43 | locale(const locale& other, const char* std_name, category); |
| 44 | locale(const locale& other, const string& std_name, category); |
| 45 | template <class Facet> locale(const locale& other, Facet* f); |
| 46 | locale(const locale& other, const locale& one, category); |
| 47 | |
Howard Hinnant | c983454 | 2011-05-31 15:34:58 +0000 | [diff] [blame] | 48 | ~locale(); // not virtual |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 49 | |
Howard Hinnant | c983454 | 2011-05-31 15:34:58 +0000 | [diff] [blame] | 50 | const locale& operator=(const locale& other) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 51 | |
| 52 | template <class Facet> locale combine(const locale& other) const; |
| 53 | |
| 54 | // locale operations: |
| 55 | basic_string<char> name() const; |
| 56 | bool operator==(const locale& other) const; |
| 57 | bool operator!=(const locale& other) const; |
| 58 | template <class charT, class Traits, class Allocator> |
| 59 | bool operator()(const basic_string<charT,Traits,Allocator>& s1, |
| 60 | const basic_string<charT,Traits,Allocator>& s2) const; |
| 61 | |
| 62 | // global locale objects: |
| 63 | static locale global(const locale&); |
| 64 | static const locale& classic(); |
| 65 | }; |
| 66 | |
| 67 | template <class Facet> const Facet& use_facet(const locale&); |
Howard Hinnant | c983454 | 2011-05-31 15:34:58 +0000 | [diff] [blame] | 68 | template <class Facet> bool has_facet(const locale&) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 69 | |
| 70 | // 22.3.3, convenience interfaces: |
| 71 | template <class charT> bool isspace (charT c, const locale& loc); |
| 72 | template <class charT> bool isprint (charT c, const locale& loc); |
| 73 | template <class charT> bool iscntrl (charT c, const locale& loc); |
| 74 | template <class charT> bool isupper (charT c, const locale& loc); |
| 75 | template <class charT> bool islower (charT c, const locale& loc); |
| 76 | template <class charT> bool isalpha (charT c, const locale& loc); |
| 77 | template <class charT> bool isdigit (charT c, const locale& loc); |
| 78 | template <class charT> bool ispunct (charT c, const locale& loc); |
| 79 | template <class charT> bool isxdigit(charT c, const locale& loc); |
| 80 | template <class charT> bool isalnum (charT c, const locale& loc); |
| 81 | template <class charT> bool isgraph (charT c, const locale& loc); |
| 82 | template <class charT> charT toupper(charT c, const locale& loc); |
| 83 | template <class charT> charT tolower(charT c, const locale& loc); |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 84 | |
| 85 | template<class Codecvt, class Elem = wchar_t, |
| 86 | class Wide_alloc = allocator<Elem>, |
| 87 | class Byte_alloc = allocator<char>> |
| 88 | class wstring_convert |
| 89 | { |
| 90 | public: |
| 91 | typedef basic_string<char, char_traits<char>, Byte_alloc> byte_string; |
| 92 | typedef basic_string<Elem, char_traits<Elem>, Wide_alloc> wide_string; |
| 93 | typedef typename Codecvt::state_type state_type; |
| 94 | typedef typename wide_string::traits_type::int_type int_type; |
| 95 | |
| 96 | wstring_convert(Codecvt* pcvt = new Codecvt); |
| 97 | wstring_convert(Codecvt* pcvt, state_type state); |
| 98 | wstring_convert(const byte_string& byte_err, |
| 99 | const wide_string& wide_err = wide_string()); |
| 100 | ~wstring_convert(); |
| 101 | |
| 102 | wide_string from_bytes(char byte); |
| 103 | wide_string from_bytes(const char* ptr); |
| 104 | wide_string from_bytes(const byte_string& str); |
| 105 | wide_string from_bytes(const char* first, const char* last); |
| 106 | |
| 107 | byte_string to_bytes(Elem wchar); |
| 108 | byte_string to_bytes(const Elem* wptr); |
| 109 | byte_string to_bytes(const wide_string& wstr); |
| 110 | byte_string to_bytes(const Elem* first, const Elem* last); |
| 111 | |
| 112 | size_t converted() const; |
| 113 | state_type state() const; |
| 114 | }; |
| 115 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 116 | template <class Codecvt, class Elem = wchar_t, class Tr = char_traits<Elem>> |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 117 | class wbuffer_convert |
| 118 | : public basic_streambuf<Elem, Tr> |
| 119 | { |
| 120 | public: |
| 121 | typedef typename Tr::state_type state_type; |
| 122 | |
| 123 | wbuffer_convert(streambuf* bytebuf = 0, Codecvt* pcvt = new Codecvt, |
| 124 | state_type state = state_type()); |
| 125 | |
| 126 | streambuf* rdbuf() const; |
| 127 | streambuf* rdbuf(streambuf* bytebuf); |
| 128 | |
| 129 | state_type state() const; |
| 130 | }; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 131 | |
| 132 | // 22.4.1 and 22.4.1.3, ctype: |
| 133 | class ctype_base; |
| 134 | template <class charT> class ctype; |
| 135 | template <> class ctype<char>; // specialization |
| 136 | template <class charT> class ctype_byname; |
| 137 | template <> class ctype_byname<char>; // specialization |
| 138 | |
| 139 | class codecvt_base; |
| 140 | template <class internT, class externT, class stateT> class codecvt; |
| 141 | template <class internT, class externT, class stateT> class codecvt_byname; |
| 142 | |
| 143 | // 22.4.2 and 22.4.3, numeric: |
| 144 | template <class charT, class InputIterator> class num_get; |
| 145 | template <class charT, class OutputIterator> class num_put; |
| 146 | template <class charT> class numpunct; |
| 147 | template <class charT> class numpunct_byname; |
| 148 | |
| 149 | // 22.4.4, col lation: |
| 150 | template <class charT> class collate; |
| 151 | template <class charT> class collate_byname; |
| 152 | |
| 153 | // 22.4.5, date and time: |
| 154 | class time_base; |
| 155 | template <class charT, class InputIterator> class time_get; |
| 156 | template <class charT, class InputIterator> class time_get_byname; |
| 157 | template <class charT, class OutputIterator> class time_put; |
| 158 | template <class charT, class OutputIterator> class time_put_byname; |
| 159 | |
| 160 | // 22.4.6, money: |
| 161 | class money_base; |
| 162 | template <class charT, class InputIterator> class money_get; |
| 163 | template <class charT, class OutputIterator> class money_put; |
| 164 | template <class charT, bool Intl> class moneypunct; |
| 165 | template <class charT, bool Intl> class moneypunct_byname; |
| 166 | |
| 167 | // 22.4.7, message retrieval: |
| 168 | class messages_base; |
| 169 | template <class charT> class messages; |
| 170 | template <class charT> class messages_byname; |
| 171 | |
| 172 | } // std |
| 173 | |
| 174 | */ |
| 175 | |
| 176 | #include <__config> |
| 177 | #include <__locale> |
| 178 | #include <algorithm> |
| 179 | #include <memory> |
| 180 | #include <ios> |
| 181 | #include <streambuf> |
| 182 | #include <iterator> |
| 183 | #include <limits> |
Marshall Clow | dece7fe | 2013-03-18 17:45:34 +0000 | [diff] [blame] | 184 | #ifndef __APPLE__ |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 185 | #include <cstdarg> |
| 186 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 187 | #include <cstdlib> |
| 188 | #include <ctime> |
Howard Hinnant | e9df0a5 | 2013-08-01 18:17:34 +0000 | [diff] [blame] | 189 | #ifdef _LIBCPP_MSVCRT |
Howard Hinnant | 14fa9f9 | 2011-09-29 20:33:10 +0000 | [diff] [blame] | 190 | #include <support/win32/locale_win32.h> |
Howard Hinnant | e9df0a5 | 2013-08-01 18:17:34 +0000 | [diff] [blame] | 191 | #else // _LIBCPP_MSVCRT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 192 | #include <nl_types.h> |
Howard Hinnant | e9df0a5 | 2013-08-01 18:17:34 +0000 | [diff] [blame] | 193 | #endif // !_LIBCPP_MSVCRT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 194 | |
Marshall Clow | dece7fe | 2013-03-18 17:45:34 +0000 | [diff] [blame] | 195 | #ifdef __APPLE__ |
Howard Hinnant | 537b2fa | 2012-11-14 21:17:15 +0000 | [diff] [blame] | 196 | #include <Availability.h> |
| 197 | #endif |
| 198 | |
Howard Hinnant | 66c6f97 | 2011-11-29 16:45:27 +0000 | [diff] [blame] | 199 | #include <__undef_min_max> |
| 200 | |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 201 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 202 | #pragma GCC system_header |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 203 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 204 | |
| 205 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 206 | |
Marshall Clow | 53e2763 | 2013-03-18 19:34:07 +0000 | [diff] [blame] | 207 | #if defined(__APPLE__) || defined(__FreeBSD__) |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 208 | # define _LIBCPP_GET_C_LOCALE 0 |
Joerg Sonnenberger | a71a952 | 2013-05-17 21:17:34 +0000 | [diff] [blame] | 209 | #elif defined(__NetBSD__) |
| 210 | # define _LIBCPP_GET_C_LOCALE LC_C_LOCALE |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 211 | #else |
| 212 | # define _LIBCPP_GET_C_LOCALE __cloc() |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 213 | // Get the C locale object |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 214 | _LIBCPP_FUNC_VIS locale_t __cloc(); |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 215 | #define __cloc_defined |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 216 | #endif |
| 217 | |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 218 | typedef _VSTD::remove_pointer<locale_t>::type __locale_struct; |
| 219 | typedef _VSTD::unique_ptr<__locale_struct, decltype(&freelocale)> __locale_unique_ptr; |
David Chisnall | 8fa14e9 | 2012-02-29 13:00:07 +0000 | [diff] [blame] | 220 | #ifndef _LIBCPP_LOCALE__L_EXTENSIONS |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 221 | typedef _VSTD::unique_ptr<__locale_struct, decltype(&uselocale)> __locale_raii; |
David Chisnall | 8fa14e9 | 2012-02-29 13:00:07 +0000 | [diff] [blame] | 222 | #endif |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 223 | |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 224 | // OSX has nice foo_l() functions that let you turn off use of the global |
| 225 | // locale. Linux, not so much. The following functions avoid the locale when |
| 226 | // that's possible and otherwise do the wrong thing. FIXME. |
Howard Hinnant | fc2f021 | 2013-03-29 18:27:28 +0000 | [diff] [blame] | 227 | #if defined(__linux__) || defined(EMSCRIPTEN) |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 228 | |
| 229 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 230 | decltype(MB_CUR_MAX_L(_VSTD::declval<locale_t>())) |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 231 | inline _LIBCPP_INLINE_VISIBILITY |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 232 | __mb_cur_max_l(locale_t __l) |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 233 | { |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 234 | return MB_CUR_MAX_L(__l); |
| 235 | } |
| 236 | #else // _LIBCPP_LOCALE__L_EXTENSIONS |
| 237 | _LIBCPP_ALWAYS_INLINE inline |
| 238 | decltype(MB_CUR_MAX) __mb_cur_max_l(locale_t __l) |
| 239 | { |
| 240 | __locale_raii __current(uselocale(__l), uselocale); |
| 241 | return MB_CUR_MAX; |
| 242 | } |
| 243 | #endif // _LIBCPP_LOCALE__L_EXTENSIONS |
| 244 | |
| 245 | _LIBCPP_ALWAYS_INLINE inline |
| 246 | wint_t __btowc_l(int __c, locale_t __l) |
| 247 | { |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 248 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 249 | return btowc_l(__c, __l); |
| 250 | #else |
| 251 | __locale_raii __current(uselocale(__l), uselocale); |
| 252 | return btowc(__c); |
| 253 | #endif |
Sean Hunt | c97da3a | 2011-07-13 06:40:50 +0000 | [diff] [blame] | 254 | } |
Howard Hinnant | 8d75632 | 2011-07-13 15:48:16 +0000 | [diff] [blame] | 255 | |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 256 | _LIBCPP_ALWAYS_INLINE inline |
| 257 | int __wctob_l(wint_t __c, locale_t __l) |
Sean Hunt | c97da3a | 2011-07-13 06:40:50 +0000 | [diff] [blame] | 258 | { |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 259 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 260 | return wctob_l(__c, __l); |
| 261 | #else |
| 262 | __locale_raii __current(uselocale(__l), uselocale); |
| 263 | return wctob(__c); |
| 264 | #endif |
Sean Hunt | c97da3a | 2011-07-13 06:40:50 +0000 | [diff] [blame] | 265 | } |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 266 | |
| 267 | _LIBCPP_ALWAYS_INLINE inline |
| 268 | size_t __wcsnrtombs_l(char *__dest, const wchar_t **__src, size_t __nwc, |
| 269 | size_t __len, mbstate_t *__ps, locale_t __l) |
| 270 | { |
| 271 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 272 | return wcsnrtombs_l(__dest, __src, __nwc, __len, __ps, __l); |
| 273 | #else |
| 274 | __locale_raii __current(uselocale(__l), uselocale); |
| 275 | return wcsnrtombs(__dest, __src, __nwc, __len, __ps); |
| 276 | #endif |
| 277 | } |
| 278 | |
| 279 | _LIBCPP_ALWAYS_INLINE inline |
| 280 | size_t __wcrtomb_l(char *__s, wchar_t __wc, mbstate_t *__ps, locale_t __l) |
| 281 | { |
| 282 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 283 | return wcrtomb_l(__s, __wc, __ps, __l); |
| 284 | #else |
| 285 | __locale_raii __current(uselocale(__l), uselocale); |
| 286 | return wcrtomb(__s, __wc, __ps); |
| 287 | #endif |
| 288 | } |
| 289 | |
| 290 | _LIBCPP_ALWAYS_INLINE inline |
| 291 | size_t __mbsnrtowcs_l(wchar_t * __dest, const char **__src, size_t __nms, |
| 292 | size_t __len, mbstate_t *__ps, locale_t __l) |
| 293 | { |
| 294 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
David Chisnall | c512df1 | 2011-09-21 08:39:44 +0000 | [diff] [blame] | 295 | return mbsnrtowcs_l(__dest, __src, __nms, __len, __ps, __l); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 296 | #else |
| 297 | __locale_raii __current(uselocale(__l), uselocale); |
| 298 | return mbsnrtowcs(__dest, __src, __nms, __len, __ps); |
| 299 | #endif |
| 300 | } |
| 301 | |
| 302 | _LIBCPP_ALWAYS_INLINE inline |
| 303 | size_t __mbrtowc_l(wchar_t *__pwc, const char *__s, size_t __n, |
| 304 | mbstate_t *__ps, locale_t __l) |
| 305 | { |
| 306 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 307 | return mbrtowc_l(__pwc, __s, __n, __ps, __l); |
| 308 | #else |
| 309 | __locale_raii __current(uselocale(__l), uselocale); |
| 310 | return mbrtowc(__pwc, __s, __n, __ps); |
| 311 | #endif |
| 312 | } |
| 313 | |
| 314 | _LIBCPP_ALWAYS_INLINE inline |
| 315 | int __mbtowc_l(wchar_t *__pwc, const char *__pmb, size_t __max, locale_t __l) |
| 316 | { |
| 317 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
David Chisnall | c512df1 | 2011-09-21 08:39:44 +0000 | [diff] [blame] | 318 | return mbtowc_l(__pwc, __pmb, __max, __l); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 319 | #else |
| 320 | __locale_raii __current(uselocale(__l), uselocale); |
| 321 | return mbtowc(__pwc, __pmb, __max); |
| 322 | #endif |
| 323 | } |
| 324 | |
| 325 | _LIBCPP_ALWAYS_INLINE inline |
| 326 | size_t __mbrlen_l(const char *__s, size_t __n, mbstate_t *__ps, locale_t __l) |
| 327 | { |
| 328 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 329 | return mbrlen_l(__s, __n, __ps, __l); |
| 330 | #else |
| 331 | __locale_raii __current(uselocale(__l), uselocale); |
| 332 | return mbrlen(__s, __n, __ps); |
| 333 | #endif |
| 334 | } |
| 335 | |
| 336 | _LIBCPP_ALWAYS_INLINE inline |
| 337 | lconv *__localeconv_l(locale_t __l) |
| 338 | { |
| 339 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 340 | return localeconv_l(__l); |
| 341 | #else |
| 342 | __locale_raii __current(uselocale(__l), uselocale); |
| 343 | return localeconv(); |
| 344 | #endif |
| 345 | } |
| 346 | |
| 347 | _LIBCPP_ALWAYS_INLINE inline |
| 348 | size_t __mbsrtowcs_l(wchar_t *__dest, const char **__src, size_t __len, |
| 349 | mbstate_t *__ps, locale_t __l) |
| 350 | { |
| 351 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 352 | return mbsrtowcs_l(__dest, __src, __len, __ps, __l); |
| 353 | #else |
| 354 | __locale_raii __current(uselocale(__l), uselocale); |
| 355 | return mbsrtowcs(__dest, __src, __len, __ps); |
| 356 | #endif |
| 357 | } |
| 358 | |
Chandler Carruth | ed9f69d | 2012-12-31 06:09:54 +0000 | [diff] [blame] | 359 | inline |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 360 | int __snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) { |
| 361 | va_list __va; |
| 362 | va_start(__va, __format); |
| 363 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 364 | int __res = vsnprintf_l(__s, __n, __l, __format, __va); |
| 365 | #else |
| 366 | __locale_raii __current(uselocale(__l), uselocale); |
| 367 | int __res = vsnprintf(__s, __n, __format, __va); |
| 368 | #endif |
| 369 | va_end(__va); |
| 370 | return __res; |
| 371 | } |
| 372 | |
Chandler Carruth | ed9f69d | 2012-12-31 06:09:54 +0000 | [diff] [blame] | 373 | inline |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 374 | int __asprintf_l(char **__s, locale_t __l, const char *__format, ...) { |
| 375 | va_list __va; |
| 376 | va_start(__va, __format); |
| 377 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 378 | int __res = vasprintf_l(__s, __l, __format, __va); |
| 379 | #else |
| 380 | __locale_raii __current(uselocale(__l), uselocale); |
| 381 | int __res = vasprintf(__s, __format, __va); |
| 382 | #endif |
| 383 | va_end(__va); |
| 384 | return __res; |
| 385 | } |
| 386 | |
Chandler Carruth | ed9f69d | 2012-12-31 06:09:54 +0000 | [diff] [blame] | 387 | inline |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 388 | int __sscanf_l(const char *__s, locale_t __l, const char *__format, ...) { |
| 389 | va_list __va; |
| 390 | va_start(__va, __format); |
| 391 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
| 392 | int __res = vsscanf_l(__s, __l, __format, __va); |
| 393 | #else |
| 394 | __locale_raii __current(uselocale(__l), uselocale); |
| 395 | int __res = vsscanf(__s, __format, __va); |
| 396 | #endif |
| 397 | va_end(__va); |
| 398 | return __res; |
| 399 | } |
| 400 | |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 401 | #endif // __linux__ |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 402 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 403 | // __scan_keyword |
| 404 | // Scans [__b, __e) until a match is found in the basic_strings range |
| 405 | // [__kb, __ke) or until it can be shown that there is no match in [__kb, __ke). |
| 406 | // __b will be incremented (visibly), consuming CharT until a match is found |
| 407 | // or proved to not exist. A keyword may be "", in which will match anything. |
| 408 | // If one keyword is a prefix of another, and the next CharT in the input |
| 409 | // might match another keyword, the algorithm will attempt to find the longest |
| 410 | // matching keyword. If the longer matching keyword ends up not matching, then |
| 411 | // no keyword match is found. If no keyword match is found, __ke is returned |
| 412 | // and failbit is set in __err. |
| 413 | // Else an iterator pointing to the matching keyword is found. If more than |
| 414 | // one keyword matches, an iterator to the first matching keyword is returned. |
| 415 | // If on exit __b == __e, eofbit is set in __err. If __case_senstive is false, |
| 416 | // __ct is used to force to lower case before comparing characters. |
| 417 | // Examples: |
| 418 | // Keywords: "a", "abb" |
| 419 | // If the input is "a", the first keyword matches and eofbit is set. |
| 420 | // If the input is "abc", no match is found and "ab" are consumed. |
| 421 | template <class _InputIterator, class _ForwardIterator, class _Ctype> |
| 422 | _LIBCPP_HIDDEN |
| 423 | _ForwardIterator |
| 424 | __scan_keyword(_InputIterator& __b, _InputIterator __e, |
| 425 | _ForwardIterator __kb, _ForwardIterator __ke, |
| 426 | const _Ctype& __ct, ios_base::iostate& __err, |
| 427 | bool __case_sensitive = true) |
| 428 | { |
| 429 | typedef typename iterator_traits<_InputIterator>::value_type _CharT; |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 430 | size_t __nkw = static_cast<size_t>(_VSTD::distance(__kb, __ke)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 431 | const unsigned char __doesnt_match = '\0'; |
| 432 | const unsigned char __might_match = '\1'; |
| 433 | const unsigned char __does_match = '\2'; |
| 434 | unsigned char __statbuf[100]; |
| 435 | unsigned char* __status = __statbuf; |
| 436 | unique_ptr<unsigned char, void(*)(void*)> __stat_hold(0, free); |
| 437 | if (__nkw > sizeof(__statbuf)) |
| 438 | { |
| 439 | __status = (unsigned char*)malloc(__nkw); |
| 440 | if (__status == 0) |
| 441 | __throw_bad_alloc(); |
| 442 | __stat_hold.reset(__status); |
| 443 | } |
| 444 | size_t __n_might_match = __nkw; // At this point, any keyword might match |
| 445 | size_t __n_does_match = 0; // but none of them definitely do |
| 446 | // Initialize all statuses to __might_match, except for "" keywords are __does_match |
| 447 | unsigned char* __st = __status; |
| 448 | for (_ForwardIterator __ky = __kb; __ky != __ke; ++__ky, ++__st) |
| 449 | { |
| 450 | if (!__ky->empty()) |
| 451 | *__st = __might_match; |
| 452 | else |
| 453 | { |
| 454 | *__st = __does_match; |
| 455 | --__n_might_match; |
| 456 | ++__n_does_match; |
| 457 | } |
| 458 | } |
| 459 | // While there might be a match, test keywords against the next CharT |
| 460 | for (size_t __indx = 0; __b != __e && __n_might_match > 0; ++__indx) |
| 461 | { |
| 462 | // Peek at the next CharT but don't consume it |
| 463 | _CharT __c = *__b; |
| 464 | if (!__case_sensitive) |
| 465 | __c = __ct.toupper(__c); |
| 466 | bool __consume = false; |
| 467 | // For each keyword which might match, see if the __indx character is __c |
| 468 | // If a match if found, consume __c |
| 469 | // If a match is found, and that is the last character in the keyword, |
| 470 | // then that keyword matches. |
| 471 | // If the keyword doesn't match this character, then change the keyword |
| 472 | // to doesn't match |
| 473 | __st = __status; |
| 474 | for (_ForwardIterator __ky = __kb; __ky != __ke; ++__ky, ++__st) |
| 475 | { |
| 476 | if (*__st == __might_match) |
| 477 | { |
| 478 | _CharT __kc = (*__ky)[__indx]; |
| 479 | if (!__case_sensitive) |
| 480 | __kc = __ct.toupper(__kc); |
| 481 | if (__c == __kc) |
| 482 | { |
| 483 | __consume = true; |
| 484 | if (__ky->size() == __indx+1) |
| 485 | { |
| 486 | *__st = __does_match; |
| 487 | --__n_might_match; |
| 488 | ++__n_does_match; |
| 489 | } |
| 490 | } |
| 491 | else |
| 492 | { |
| 493 | *__st = __doesnt_match; |
| 494 | --__n_might_match; |
| 495 | } |
| 496 | } |
| 497 | } |
| 498 | // consume if we matched a character |
| 499 | if (__consume) |
| 500 | { |
| 501 | ++__b; |
| 502 | // If we consumed a character and there might be a matched keyword that |
| 503 | // was marked matched on a previous iteration, then such keywords |
| 504 | // which are now marked as not matching. |
| 505 | if (__n_might_match + __n_does_match > 1) |
| 506 | { |
| 507 | __st = __status; |
| 508 | for (_ForwardIterator __ky = __kb; __ky != __ke; ++__ky, ++__st) |
| 509 | { |
| 510 | if (*__st == __does_match && __ky->size() != __indx+1) |
| 511 | { |
| 512 | *__st = __doesnt_match; |
| 513 | --__n_does_match; |
| 514 | } |
| 515 | } |
| 516 | } |
| 517 | } |
| 518 | } |
| 519 | // We've exited the loop because we hit eof and/or we have no more "might matches". |
| 520 | if (__b == __e) |
| 521 | __err |= ios_base::eofbit; |
| 522 | // Return the first matching result |
| 523 | for (__st = __status; __kb != __ke; ++__kb, ++__st) |
| 524 | if (*__st == __does_match) |
| 525 | break; |
| 526 | if (__kb == __ke) |
| 527 | __err |= ios_base::failbit; |
| 528 | return __kb; |
| 529 | } |
| 530 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 531 | struct _LIBCPP_TYPE_VIS __num_get_base |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 532 | { |
| 533 | static const int __num_get_buf_sz = 40; |
| 534 | |
| 535 | static int __get_base(ios_base&); |
| 536 | static const char __src[33]; |
| 537 | }; |
| 538 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 539 | _LIBCPP_FUNC_VIS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 540 | void __check_grouping(const string& __grouping, unsigned* __g, unsigned* __g_end, |
| 541 | ios_base::iostate& __err); |
| 542 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 543 | template <class _CharT> |
| 544 | struct __num_get |
| 545 | : protected __num_get_base |
| 546 | { |
| 547 | static string __stage2_int_prep(ios_base& __iob, _CharT* __atoms, _CharT& __thousands_sep); |
| 548 | static string __stage2_float_prep(ios_base& __iob, _CharT* __atoms, _CharT& __decimal_point, |
| 549 | _CharT& __thousands_sep); |
| 550 | static int __stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end, |
| 551 | unsigned& __dc, _CharT __thousands_sep, const string& __grouping, |
| 552 | unsigned* __g, unsigned*& __g_end, _CharT* __atoms); |
| 553 | static int __stage2_float_loop(_CharT __ct, bool& __in_units, char& __exp, |
| 554 | char* __a, char*& __a_end, |
| 555 | _CharT __decimal_point, _CharT __thousands_sep, |
| 556 | const string& __grouping, unsigned* __g, |
| 557 | unsigned*& __g_end, unsigned& __dc, _CharT* __atoms); |
| 558 | }; |
| 559 | |
| 560 | template <class _CharT> |
| 561 | string |
| 562 | __num_get<_CharT>::__stage2_int_prep(ios_base& __iob, _CharT* __atoms, _CharT& __thousands_sep) |
| 563 | { |
| 564 | locale __loc = __iob.getloc(); |
| 565 | use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 26, __atoms); |
| 566 | const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc); |
| 567 | __thousands_sep = __np.thousands_sep(); |
| 568 | return __np.grouping(); |
| 569 | } |
| 570 | |
| 571 | template <class _CharT> |
| 572 | string |
| 573 | __num_get<_CharT>::__stage2_float_prep(ios_base& __iob, _CharT* __atoms, _CharT& __decimal_point, |
| 574 | _CharT& __thousands_sep) |
| 575 | { |
| 576 | locale __loc = __iob.getloc(); |
| 577 | use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 32, __atoms); |
| 578 | const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc); |
| 579 | __decimal_point = __np.decimal_point(); |
| 580 | __thousands_sep = __np.thousands_sep(); |
| 581 | return __np.grouping(); |
| 582 | } |
| 583 | |
| 584 | template <class _CharT> |
| 585 | int |
| 586 | __num_get<_CharT>::__stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end, |
| 587 | unsigned& __dc, _CharT __thousands_sep, const string& __grouping, |
| 588 | unsigned* __g, unsigned*& __g_end, _CharT* __atoms) |
| 589 | { |
Howard Hinnant | 8058672 | 2011-03-09 01:03:19 +0000 | [diff] [blame] | 590 | if (__a_end == __a && (__ct == __atoms[24] || __ct == __atoms[25])) |
| 591 | { |
| 592 | *__a_end++ = __ct == __atoms[24] ? '+' : '-'; |
| 593 | __dc = 0; |
| 594 | return 0; |
| 595 | } |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 596 | if (__grouping.size() != 0 && __ct == __thousands_sep) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 597 | { |
| 598 | if (__g_end-__g < __num_get_buf_sz) |
| 599 | { |
| 600 | *__g_end++ = __dc; |
| 601 | __dc = 0; |
| 602 | } |
| 603 | return 0; |
| 604 | } |
| 605 | ptrdiff_t __f = find(__atoms, __atoms + 26, __ct) - __atoms; |
Howard Hinnant | 8058672 | 2011-03-09 01:03:19 +0000 | [diff] [blame] | 606 | if (__f >= 24) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 607 | return -1; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 608 | switch (__base) |
| 609 | { |
| 610 | case 8: |
| 611 | case 10: |
| 612 | if (__f >= __base) |
Howard Hinnant | 8058672 | 2011-03-09 01:03:19 +0000 | [diff] [blame] | 613 | return -1; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 614 | break; |
Howard Hinnant | 8058672 | 2011-03-09 01:03:19 +0000 | [diff] [blame] | 615 | case 16: |
| 616 | if (__f < 22) |
| 617 | break; |
| 618 | if (__a_end != __a && __a_end - __a <= 2 && __a_end[-1] == '0') |
| 619 | { |
| 620 | __dc = 0; |
| 621 | *__a_end++ = __src[__f]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 622 | return 0; |
Howard Hinnant | 8058672 | 2011-03-09 01:03:19 +0000 | [diff] [blame] | 623 | } |
| 624 | return -1; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 625 | } |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 626 | *__a_end++ = __src[__f]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 627 | ++__dc; |
| 628 | return 0; |
| 629 | } |
| 630 | |
| 631 | template <class _CharT> |
| 632 | int |
| 633 | __num_get<_CharT>::__stage2_float_loop(_CharT __ct, bool& __in_units, char& __exp, char* __a, char*& __a_end, |
| 634 | _CharT __decimal_point, _CharT __thousands_sep, const string& __grouping, |
| 635 | unsigned* __g, unsigned*& __g_end, unsigned& __dc, _CharT* __atoms) |
| 636 | { |
| 637 | if (__ct == __decimal_point) |
| 638 | { |
| 639 | if (!__in_units) |
| 640 | return -1; |
| 641 | __in_units = false; |
| 642 | *__a_end++ = '.'; |
| 643 | if (__grouping.size() != 0 && __g_end-__g < __num_get_buf_sz) |
| 644 | *__g_end++ = __dc; |
| 645 | return 0; |
| 646 | } |
| 647 | if (__ct == __thousands_sep && __grouping.size() != 0) |
| 648 | { |
| 649 | if (!__in_units) |
| 650 | return -1; |
| 651 | if (__g_end-__g < __num_get_buf_sz) |
| 652 | { |
| 653 | *__g_end++ = __dc; |
| 654 | __dc = 0; |
| 655 | } |
| 656 | return 0; |
| 657 | } |
| 658 | ptrdiff_t __f = find(__atoms, __atoms + 32, __ct) - __atoms; |
| 659 | if (__f >= 32) |
| 660 | return -1; |
| 661 | char __x = __src[__f]; |
Howard Hinnant | b04ad41 | 2012-02-15 19:19:37 +0000 | [diff] [blame] | 662 | if (__x == '-' || __x == '+') |
| 663 | { |
Howard Hinnant | 6319f14 | 2013-03-08 19:06:24 +0000 | [diff] [blame] | 664 | if (__a_end == __a || (__a_end[-1] & 0x5F) == (__exp & 0x7F)) |
Howard Hinnant | b04ad41 | 2012-02-15 19:19:37 +0000 | [diff] [blame] | 665 | { |
| 666 | *__a_end++ = __x; |
| 667 | return 0; |
| 668 | } |
| 669 | return -1; |
| 670 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 671 | if (__x == 'x' || __x == 'X') |
| 672 | __exp = 'P'; |
Howard Hinnant | 6319f14 | 2013-03-08 19:06:24 +0000 | [diff] [blame] | 673 | else if ((__x & 0x5F) == __exp) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 674 | { |
Howard Hinnant | 6319f14 | 2013-03-08 19:06:24 +0000 | [diff] [blame] | 675 | __exp |= 0x80; |
| 676 | if (__in_units) |
| 677 | { |
| 678 | __in_units = false; |
| 679 | if (__grouping.size() != 0 && __g_end-__g < __num_get_buf_sz) |
| 680 | *__g_end++ = __dc; |
| 681 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 682 | } |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 683 | *__a_end++ = __x; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 684 | if (__f >= 22) |
| 685 | return 0; |
| 686 | ++__dc; |
| 687 | return 0; |
| 688 | } |
| 689 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 690 | _LIBCPP_EXTERN_TEMPLATE(struct _LIBCPP_TYPE_VIS __num_get<char>) |
| 691 | _LIBCPP_EXTERN_TEMPLATE(struct _LIBCPP_TYPE_VIS __num_get<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 692 | |
| 693 | template <class _CharT, class _InputIterator = istreambuf_iterator<_CharT> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 694 | class _LIBCPP_TYPE_VIS_ONLY num_get |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 695 | : public locale::facet, |
| 696 | private __num_get<_CharT> |
| 697 | { |
| 698 | public: |
| 699 | typedef _CharT char_type; |
| 700 | typedef _InputIterator iter_type; |
| 701 | |
| 702 | _LIBCPP_ALWAYS_INLINE |
| 703 | explicit num_get(size_t __refs = 0) |
| 704 | : locale::facet(__refs) {} |
| 705 | |
| 706 | _LIBCPP_ALWAYS_INLINE |
| 707 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 708 | ios_base::iostate& __err, bool& __v) const |
| 709 | { |
| 710 | return do_get(__b, __e, __iob, __err, __v); |
| 711 | } |
| 712 | |
| 713 | _LIBCPP_ALWAYS_INLINE |
| 714 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 715 | ios_base::iostate& __err, long& __v) const |
| 716 | { |
| 717 | return do_get(__b, __e, __iob, __err, __v); |
| 718 | } |
| 719 | |
| 720 | _LIBCPP_ALWAYS_INLINE |
| 721 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 722 | ios_base::iostate& __err, long long& __v) const |
| 723 | { |
| 724 | return do_get(__b, __e, __iob, __err, __v); |
| 725 | } |
| 726 | |
| 727 | _LIBCPP_ALWAYS_INLINE |
| 728 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 729 | ios_base::iostate& __err, unsigned short& __v) const |
| 730 | { |
| 731 | return do_get(__b, __e, __iob, __err, __v); |
| 732 | } |
| 733 | |
| 734 | _LIBCPP_ALWAYS_INLINE |
| 735 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 736 | ios_base::iostate& __err, unsigned int& __v) const |
| 737 | { |
| 738 | return do_get(__b, __e, __iob, __err, __v); |
| 739 | } |
| 740 | |
| 741 | _LIBCPP_ALWAYS_INLINE |
| 742 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 743 | ios_base::iostate& __err, unsigned long& __v) const |
| 744 | { |
| 745 | return do_get(__b, __e, __iob, __err, __v); |
| 746 | } |
| 747 | |
| 748 | _LIBCPP_ALWAYS_INLINE |
| 749 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 750 | ios_base::iostate& __err, unsigned long long& __v) const |
| 751 | { |
| 752 | return do_get(__b, __e, __iob, __err, __v); |
| 753 | } |
| 754 | |
| 755 | _LIBCPP_ALWAYS_INLINE |
| 756 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 757 | ios_base::iostate& __err, float& __v) const |
| 758 | { |
| 759 | return do_get(__b, __e, __iob, __err, __v); |
| 760 | } |
| 761 | |
| 762 | _LIBCPP_ALWAYS_INLINE |
| 763 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 764 | ios_base::iostate& __err, double& __v) const |
| 765 | { |
| 766 | return do_get(__b, __e, __iob, __err, __v); |
| 767 | } |
| 768 | |
| 769 | _LIBCPP_ALWAYS_INLINE |
| 770 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 771 | ios_base::iostate& __err, long double& __v) const |
| 772 | { |
| 773 | return do_get(__b, __e, __iob, __err, __v); |
| 774 | } |
| 775 | |
| 776 | _LIBCPP_ALWAYS_INLINE |
| 777 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 778 | ios_base::iostate& __err, void*& __v) const |
| 779 | { |
| 780 | return do_get(__b, __e, __iob, __err, __v); |
| 781 | } |
| 782 | |
| 783 | static locale::id id; |
| 784 | |
| 785 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 786 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 787 | ~num_get() {} |
| 788 | |
| 789 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 790 | ios_base::iostate& __err, bool& __v) const; |
| 791 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 792 | ios_base::iostate& __err, long& __v) const; |
| 793 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 794 | ios_base::iostate& __err, long long& __v) const; |
| 795 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 796 | ios_base::iostate& __err, unsigned short& __v) const; |
| 797 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 798 | ios_base::iostate& __err, unsigned int& __v) const; |
| 799 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 800 | ios_base::iostate& __err, unsigned long& __v) const; |
| 801 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 802 | ios_base::iostate& __err, unsigned long long& __v) const; |
| 803 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 804 | ios_base::iostate& __err, float& __v) const; |
| 805 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 806 | ios_base::iostate& __err, double& __v) const; |
| 807 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 808 | ios_base::iostate& __err, long double& __v) const; |
| 809 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 810 | ios_base::iostate& __err, void*& __v) const; |
| 811 | }; |
| 812 | |
| 813 | template <class _CharT, class _InputIterator> |
| 814 | locale::id |
| 815 | num_get<_CharT, _InputIterator>::id; |
| 816 | |
| 817 | template <class _Tp> |
| 818 | _Tp |
| 819 | __num_get_signed_integral(const char* __a, const char* __a_end, |
| 820 | ios_base::iostate& __err, int __base) |
| 821 | { |
| 822 | if (__a != __a_end) |
| 823 | { |
Howard Hinnant | 54e2fff | 2013-01-22 17:26:08 +0000 | [diff] [blame] | 824 | typename remove_reference<decltype(errno)>::type __save_errno = errno; |
Howard Hinnant | e7c8da6 | 2011-02-25 19:52:41 +0000 | [diff] [blame] | 825 | errno = 0; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 826 | char *__p2; |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 827 | long long __ll = strtoll_l(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE); |
Howard Hinnant | 54e2fff | 2013-01-22 17:26:08 +0000 | [diff] [blame] | 828 | typename remove_reference<decltype(errno)>::type __current_errno = errno; |
Howard Hinnant | e7c8da6 | 2011-02-25 19:52:41 +0000 | [diff] [blame] | 829 | if (__current_errno == 0) |
| 830 | errno = __save_errno; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 831 | if (__p2 != __a_end) |
| 832 | { |
| 833 | __err = ios_base::failbit; |
| 834 | return 0; |
| 835 | } |
Howard Hinnant | e7c8da6 | 2011-02-25 19:52:41 +0000 | [diff] [blame] | 836 | else if (__current_errno == ERANGE || |
| 837 | __ll < numeric_limits<_Tp>::min() || |
| 838 | numeric_limits<_Tp>::max() < __ll) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 839 | { |
| 840 | __err = ios_base::failbit; |
Howard Hinnant | e7c8da6 | 2011-02-25 19:52:41 +0000 | [diff] [blame] | 841 | if (__ll > 0) |
| 842 | return numeric_limits<_Tp>::max(); |
| 843 | else |
| 844 | return numeric_limits<_Tp>::min(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 845 | } |
| 846 | return static_cast<_Tp>(__ll); |
| 847 | } |
| 848 | __err = ios_base::failbit; |
| 849 | return 0; |
| 850 | } |
| 851 | |
| 852 | template <class _Tp> |
| 853 | _Tp |
| 854 | __num_get_unsigned_integral(const char* __a, const char* __a_end, |
| 855 | ios_base::iostate& __err, int __base) |
| 856 | { |
| 857 | if (__a != __a_end) |
| 858 | { |
Howard Hinnant | e7c8da6 | 2011-02-25 19:52:41 +0000 | [diff] [blame] | 859 | if (*__a == '-') |
| 860 | { |
| 861 | __err = ios_base::failbit; |
| 862 | return 0; |
| 863 | } |
Howard Hinnant | 54e2fff | 2013-01-22 17:26:08 +0000 | [diff] [blame] | 864 | typename remove_reference<decltype(errno)>::type __save_errno = errno; |
Howard Hinnant | e7c8da6 | 2011-02-25 19:52:41 +0000 | [diff] [blame] | 865 | errno = 0; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 866 | char *__p2; |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 867 | unsigned long long __ll = strtoull_l(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE); |
Howard Hinnant | 54e2fff | 2013-01-22 17:26:08 +0000 | [diff] [blame] | 868 | typename remove_reference<decltype(errno)>::type __current_errno = errno; |
Howard Hinnant | e7c8da6 | 2011-02-25 19:52:41 +0000 | [diff] [blame] | 869 | if (__current_errno == 0) |
| 870 | errno = __save_errno; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 871 | if (__p2 != __a_end) |
| 872 | { |
| 873 | __err = ios_base::failbit; |
| 874 | return 0; |
| 875 | } |
Howard Hinnant | e7c8da6 | 2011-02-25 19:52:41 +0000 | [diff] [blame] | 876 | else if (__current_errno == ERANGE || |
| 877 | numeric_limits<_Tp>::max() < __ll) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 878 | { |
| 879 | __err = ios_base::failbit; |
| 880 | return numeric_limits<_Tp>::max(); |
| 881 | } |
| 882 | return static_cast<_Tp>(__ll); |
| 883 | } |
| 884 | __err = ios_base::failbit; |
| 885 | return 0; |
| 886 | } |
| 887 | |
| 888 | template <class _Tp> |
| 889 | _Tp |
| 890 | __num_get_float(const char* __a, const char* __a_end, ios_base::iostate& __err) |
| 891 | { |
| 892 | if (__a != __a_end) |
| 893 | { |
Howard Hinnant | 4f67100 | 2013-04-13 18:19:25 +0000 | [diff] [blame] | 894 | typename remove_reference<decltype(errno)>::type __save_errno = errno; |
| 895 | errno = 0; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 896 | char *__p2; |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 897 | long double __ld = strtold_l(__a, &__p2, _LIBCPP_GET_C_LOCALE); |
Howard Hinnant | 4f67100 | 2013-04-13 18:19:25 +0000 | [diff] [blame] | 898 | typename remove_reference<decltype(errno)>::type __current_errno = errno; |
| 899 | if (__current_errno == 0) |
| 900 | errno = __save_errno; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 901 | if (__p2 != __a_end) |
| 902 | { |
| 903 | __err = ios_base::failbit; |
| 904 | return 0; |
| 905 | } |
Howard Hinnant | 4f67100 | 2013-04-13 18:19:25 +0000 | [diff] [blame] | 906 | else if (__current_errno == ERANGE) |
| 907 | __err = ios_base::failbit; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 908 | return static_cast<_Tp>(__ld); |
| 909 | } |
| 910 | __err = ios_base::failbit; |
| 911 | return 0; |
| 912 | } |
| 913 | |
| 914 | template <class _CharT, class _InputIterator> |
| 915 | _InputIterator |
| 916 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 917 | ios_base& __iob, |
| 918 | ios_base::iostate& __err, |
| 919 | bool& __v) const |
| 920 | { |
| 921 | if ((__iob.flags() & ios_base::boolalpha) == 0) |
| 922 | { |
| 923 | long __lv = -1; |
| 924 | __b = do_get(__b, __e, __iob, __err, __lv); |
| 925 | switch (__lv) |
| 926 | { |
| 927 | case 0: |
| 928 | __v = false; |
| 929 | break; |
| 930 | case 1: |
| 931 | __v = true; |
| 932 | break; |
| 933 | default: |
| 934 | __v = true; |
| 935 | __err = ios_base::failbit; |
| 936 | break; |
| 937 | } |
| 938 | return __b; |
| 939 | } |
| 940 | const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__iob.getloc()); |
| 941 | const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__iob.getloc()); |
| 942 | typedef typename numpunct<_CharT>::string_type string_type; |
| 943 | const string_type __names[2] = {__np.truename(), __np.falsename()}; |
| 944 | const string_type* __i = __scan_keyword(__b, __e, __names, __names+2, |
| 945 | __ct, __err); |
| 946 | __v = __i == __names; |
| 947 | return __b; |
| 948 | } |
| 949 | |
| 950 | template <class _CharT, class _InputIterator> |
| 951 | _InputIterator |
| 952 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 953 | ios_base& __iob, |
| 954 | ios_base::iostate& __err, |
| 955 | long& __v) const |
| 956 | { |
| 957 | // Stage 1 |
| 958 | int __base = this->__get_base(__iob); |
| 959 | // Stage 2 |
| 960 | char_type __atoms[26]; |
| 961 | char_type __thousands_sep; |
| 962 | string __grouping = this->__stage2_int_prep(__iob, __atoms, __thousands_sep); |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 963 | string __buf; |
| 964 | __buf.resize(__buf.capacity()); |
| 965 | char* __a = &__buf[0]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 966 | char* __a_end = __a; |
| 967 | unsigned __g[__num_get_base::__num_get_buf_sz]; |
| 968 | unsigned* __g_end = __g; |
| 969 | unsigned __dc = 0; |
| 970 | for (; __b != __e; ++__b) |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 971 | { |
| 972 | if (__a_end - __a == __buf.size()) |
| 973 | { |
| 974 | size_t __tmp = __buf.size(); |
| 975 | __buf.resize(2*__buf.size()); |
| 976 | __buf.resize(__buf.capacity()); |
| 977 | __a = &__buf[0]; |
| 978 | __a_end = __a + __tmp; |
| 979 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 980 | if (this->__stage2_int_loop(*__b, __base, __a, __a_end, __dc, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 981 | __thousands_sep, __grouping, __g, __g_end, |
| 982 | __atoms)) |
| 983 | break; |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 984 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 985 | if (__grouping.size() != 0 && __g_end-__g < __num_get_base::__num_get_buf_sz) |
| 986 | *__g_end++ = __dc; |
| 987 | // Stage 3 |
| 988 | __v = __num_get_signed_integral<long>(__a, __a_end, __err, __base); |
| 989 | // Digit grouping checked |
| 990 | __check_grouping(__grouping, __g, __g_end, __err); |
| 991 | // EOF checked |
| 992 | if (__b == __e) |
| 993 | __err |= ios_base::eofbit; |
| 994 | return __b; |
| 995 | } |
| 996 | |
| 997 | template <class _CharT, class _InputIterator> |
| 998 | _InputIterator |
| 999 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 1000 | ios_base& __iob, |
| 1001 | ios_base::iostate& __err, |
| 1002 | long long& __v) const |
| 1003 | { |
| 1004 | // Stage 1 |
| 1005 | int __base = this->__get_base(__iob); |
| 1006 | // Stage 2 |
| 1007 | char_type __atoms[26]; |
| 1008 | char_type __thousands_sep; |
| 1009 | string __grouping = this->__stage2_int_prep(__iob, __atoms, __thousands_sep); |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1010 | string __buf; |
| 1011 | __buf.resize(__buf.capacity()); |
| 1012 | char* __a = &__buf[0]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1013 | char* __a_end = __a; |
| 1014 | unsigned __g[__num_get_base::__num_get_buf_sz]; |
| 1015 | unsigned* __g_end = __g; |
| 1016 | unsigned __dc = 0; |
| 1017 | for (; __b != __e; ++__b) |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1018 | { |
| 1019 | if (__a_end - __a == __buf.size()) |
| 1020 | { |
| 1021 | size_t __tmp = __buf.size(); |
| 1022 | __buf.resize(2*__buf.size()); |
| 1023 | __buf.resize(__buf.capacity()); |
| 1024 | __a = &__buf[0]; |
| 1025 | __a_end = __a + __tmp; |
| 1026 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1027 | if (this->__stage2_int_loop(*__b, __base, __a, __a_end, __dc, |
| 1028 | __thousands_sep, __grouping, __g, __g_end, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1029 | __atoms)) |
| 1030 | break; |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1031 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1032 | if (__grouping.size() != 0 && __g_end-__g < __num_get_base::__num_get_buf_sz) |
| 1033 | *__g_end++ = __dc; |
| 1034 | // Stage 3 |
| 1035 | __v = __num_get_signed_integral<long long>(__a, __a_end, __err, __base); |
| 1036 | // Digit grouping checked |
| 1037 | __check_grouping(__grouping, __g, __g_end, __err); |
| 1038 | // EOF checked |
| 1039 | if (__b == __e) |
| 1040 | __err |= ios_base::eofbit; |
| 1041 | return __b; |
| 1042 | } |
| 1043 | |
| 1044 | template <class _CharT, class _InputIterator> |
| 1045 | _InputIterator |
| 1046 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 1047 | ios_base& __iob, |
| 1048 | ios_base::iostate& __err, |
| 1049 | unsigned short& __v) const |
| 1050 | { |
| 1051 | // Stage 1 |
| 1052 | int __base = this->__get_base(__iob); |
| 1053 | // Stage 2 |
| 1054 | char_type __atoms[26]; |
| 1055 | char_type __thousands_sep; |
| 1056 | string __grouping = this->__stage2_int_prep(__iob, __atoms, __thousands_sep); |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1057 | string __buf; |
| 1058 | __buf.resize(__buf.capacity()); |
| 1059 | char* __a = &__buf[0]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1060 | char* __a_end = __a; |
| 1061 | unsigned __g[__num_get_base::__num_get_buf_sz]; |
| 1062 | unsigned* __g_end = __g; |
| 1063 | unsigned __dc = 0; |
| 1064 | for (; __b != __e; ++__b) |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1065 | { |
| 1066 | if (__a_end - __a == __buf.size()) |
| 1067 | { |
| 1068 | size_t __tmp = __buf.size(); |
| 1069 | __buf.resize(2*__buf.size()); |
| 1070 | __buf.resize(__buf.capacity()); |
| 1071 | __a = &__buf[0]; |
| 1072 | __a_end = __a + __tmp; |
| 1073 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1074 | if (this->__stage2_int_loop(*__b, __base, __a, __a_end, __dc, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1075 | __thousands_sep, __grouping, __g, __g_end, |
| 1076 | __atoms)) |
| 1077 | break; |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1078 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1079 | if (__grouping.size() != 0 && __g_end-__g < __num_get_base::__num_get_buf_sz) |
| 1080 | *__g_end++ = __dc; |
| 1081 | // Stage 3 |
| 1082 | __v = __num_get_unsigned_integral<unsigned short>(__a, __a_end, __err, __base); |
| 1083 | // Digit grouping checked |
| 1084 | __check_grouping(__grouping, __g, __g_end, __err); |
| 1085 | // EOF checked |
| 1086 | if (__b == __e) |
| 1087 | __err |= ios_base::eofbit; |
| 1088 | return __b; |
| 1089 | } |
| 1090 | |
| 1091 | template <class _CharT, class _InputIterator> |
| 1092 | _InputIterator |
| 1093 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 1094 | ios_base& __iob, |
| 1095 | ios_base::iostate& __err, |
| 1096 | unsigned int& __v) const |
| 1097 | { |
| 1098 | // Stage 1 |
| 1099 | int __base = this->__get_base(__iob); |
| 1100 | // Stage 2 |
| 1101 | char_type __atoms[26]; |
| 1102 | char_type __thousands_sep; |
| 1103 | string __grouping = this->__stage2_int_prep(__iob, __atoms, __thousands_sep); |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1104 | string __buf; |
| 1105 | __buf.resize(__buf.capacity()); |
| 1106 | char* __a = &__buf[0]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1107 | char* __a_end = __a; |
| 1108 | unsigned __g[__num_get_base::__num_get_buf_sz]; |
| 1109 | unsigned* __g_end = __g; |
| 1110 | unsigned __dc = 0; |
| 1111 | for (; __b != __e; ++__b) |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1112 | { |
| 1113 | if (__a_end - __a == __buf.size()) |
| 1114 | { |
| 1115 | size_t __tmp = __buf.size(); |
| 1116 | __buf.resize(2*__buf.size()); |
| 1117 | __buf.resize(__buf.capacity()); |
| 1118 | __a = &__buf[0]; |
| 1119 | __a_end = __a + __tmp; |
| 1120 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1121 | if (this->__stage2_int_loop(*__b, __base, __a, __a_end, __dc, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1122 | __thousands_sep, __grouping, __g, __g_end, |
| 1123 | __atoms)) |
| 1124 | break; |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1125 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1126 | if (__grouping.size() != 0 && __g_end-__g < __num_get_base::__num_get_buf_sz) |
| 1127 | *__g_end++ = __dc; |
| 1128 | // Stage 3 |
| 1129 | __v = __num_get_unsigned_integral<unsigned int>(__a, __a_end, __err, __base); |
| 1130 | // Digit grouping checked |
| 1131 | __check_grouping(__grouping, __g, __g_end, __err); |
| 1132 | // EOF checked |
| 1133 | if (__b == __e) |
| 1134 | __err |= ios_base::eofbit; |
| 1135 | return __b; |
| 1136 | } |
| 1137 | |
| 1138 | template <class _CharT, class _InputIterator> |
| 1139 | _InputIterator |
| 1140 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 1141 | ios_base& __iob, |
| 1142 | ios_base::iostate& __err, |
| 1143 | unsigned long& __v) const |
| 1144 | { |
| 1145 | // Stage 1 |
| 1146 | int __base = this->__get_base(__iob); |
| 1147 | // Stage 2 |
| 1148 | char_type __atoms[26]; |
| 1149 | char_type __thousands_sep; |
| 1150 | string __grouping = this->__stage2_int_prep(__iob, __atoms, __thousands_sep); |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1151 | string __buf; |
| 1152 | __buf.resize(__buf.capacity()); |
| 1153 | char* __a = &__buf[0]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1154 | char* __a_end = __a; |
| 1155 | unsigned __g[__num_get_base::__num_get_buf_sz]; |
| 1156 | unsigned* __g_end = __g; |
| 1157 | unsigned __dc = 0; |
| 1158 | for (; __b != __e; ++__b) |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1159 | { |
| 1160 | if (__a_end - __a == __buf.size()) |
| 1161 | { |
| 1162 | size_t __tmp = __buf.size(); |
| 1163 | __buf.resize(2*__buf.size()); |
| 1164 | __buf.resize(__buf.capacity()); |
| 1165 | __a = &__buf[0]; |
| 1166 | __a_end = __a + __tmp; |
| 1167 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1168 | if (this->__stage2_int_loop(*__b, __base, __a, __a_end, __dc, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1169 | __thousands_sep, __grouping, __g, __g_end, |
| 1170 | __atoms)) |
| 1171 | break; |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1172 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1173 | if (__grouping.size() != 0 && __g_end-__g < __num_get_base::__num_get_buf_sz) |
| 1174 | *__g_end++ = __dc; |
| 1175 | // Stage 3 |
| 1176 | __v = __num_get_unsigned_integral<unsigned long>(__a, __a_end, __err, __base); |
| 1177 | // Digit grouping checked |
| 1178 | __check_grouping(__grouping, __g, __g_end, __err); |
| 1179 | // EOF checked |
| 1180 | if (__b == __e) |
| 1181 | __err |= ios_base::eofbit; |
| 1182 | return __b; |
| 1183 | } |
| 1184 | |
| 1185 | template <class _CharT, class _InputIterator> |
| 1186 | _InputIterator |
| 1187 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 1188 | ios_base& __iob, |
| 1189 | ios_base::iostate& __err, |
| 1190 | unsigned long long& __v) const |
| 1191 | { |
| 1192 | // Stage 1 |
| 1193 | int __base = this->__get_base(__iob); |
| 1194 | // Stage 2 |
| 1195 | char_type __atoms[26]; |
| 1196 | char_type __thousands_sep; |
| 1197 | string __grouping = this->__stage2_int_prep(__iob, __atoms, __thousands_sep); |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1198 | string __buf; |
| 1199 | __buf.resize(__buf.capacity()); |
| 1200 | char* __a = &__buf[0]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1201 | char* __a_end = __a; |
| 1202 | unsigned __g[__num_get_base::__num_get_buf_sz]; |
| 1203 | unsigned* __g_end = __g; |
| 1204 | unsigned __dc = 0; |
| 1205 | for (; __b != __e; ++__b) |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1206 | { |
| 1207 | if (__a_end - __a == __buf.size()) |
| 1208 | { |
| 1209 | size_t __tmp = __buf.size(); |
| 1210 | __buf.resize(2*__buf.size()); |
| 1211 | __buf.resize(__buf.capacity()); |
| 1212 | __a = &__buf[0]; |
| 1213 | __a_end = __a + __tmp; |
| 1214 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1215 | if (this->__stage2_int_loop(*__b, __base, __a, __a_end, __dc, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1216 | __thousands_sep, __grouping, __g, __g_end, |
| 1217 | __atoms)) |
| 1218 | break; |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1219 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1220 | if (__grouping.size() != 0 && __g_end-__g < __num_get_base::__num_get_buf_sz) |
| 1221 | *__g_end++ = __dc; |
| 1222 | // Stage 3 |
| 1223 | __v = __num_get_unsigned_integral<unsigned long long>(__a, __a_end, __err, __base); |
| 1224 | // Digit grouping checked |
| 1225 | __check_grouping(__grouping, __g, __g_end, __err); |
| 1226 | // EOF checked |
| 1227 | if (__b == __e) |
| 1228 | __err |= ios_base::eofbit; |
| 1229 | return __b; |
| 1230 | } |
| 1231 | |
| 1232 | template <class _CharT, class _InputIterator> |
| 1233 | _InputIterator |
| 1234 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 1235 | ios_base& __iob, |
| 1236 | ios_base::iostate& __err, |
| 1237 | float& __v) const |
| 1238 | { |
| 1239 | // Stage 1, nothing to do |
| 1240 | // Stage 2 |
| 1241 | char_type __atoms[32]; |
| 1242 | char_type __decimal_point; |
| 1243 | char_type __thousands_sep; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1244 | string __grouping = this->__stage2_float_prep(__iob, __atoms, |
| 1245 | __decimal_point, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1246 | __thousands_sep); |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1247 | string __buf; |
| 1248 | __buf.resize(__buf.capacity()); |
| 1249 | char* __a = &__buf[0]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1250 | char* __a_end = __a; |
| 1251 | unsigned __g[__num_get_base::__num_get_buf_sz]; |
| 1252 | unsigned* __g_end = __g; |
| 1253 | unsigned __dc = 0; |
| 1254 | bool __in_units = true; |
| 1255 | char __exp = 'E'; |
| 1256 | for (; __b != __e; ++__b) |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1257 | { |
| 1258 | if (__a_end - __a == __buf.size()) |
| 1259 | { |
| 1260 | size_t __tmp = __buf.size(); |
| 1261 | __buf.resize(2*__buf.size()); |
| 1262 | __buf.resize(__buf.capacity()); |
| 1263 | __a = &__buf[0]; |
| 1264 | __a_end = __a + __tmp; |
| 1265 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1266 | if (this->__stage2_float_loop(*__b, __in_units, __exp, __a, __a_end, |
| 1267 | __decimal_point, __thousands_sep, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1268 | __grouping, __g, __g_end, |
| 1269 | __dc, __atoms)) |
| 1270 | break; |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1271 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1272 | if (__grouping.size() != 0 && __in_units && __g_end-__g < __num_get_base::__num_get_buf_sz) |
| 1273 | *__g_end++ = __dc; |
| 1274 | // Stage 3 |
| 1275 | __v = __num_get_float<float>(__a, __a_end, __err); |
| 1276 | // Digit grouping checked |
| 1277 | __check_grouping(__grouping, __g, __g_end, __err); |
| 1278 | // EOF checked |
| 1279 | if (__b == __e) |
| 1280 | __err |= ios_base::eofbit; |
| 1281 | return __b; |
| 1282 | } |
| 1283 | |
| 1284 | template <class _CharT, class _InputIterator> |
| 1285 | _InputIterator |
| 1286 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 1287 | ios_base& __iob, |
| 1288 | ios_base::iostate& __err, |
| 1289 | double& __v) const |
| 1290 | { |
| 1291 | // Stage 1, nothing to do |
| 1292 | // Stage 2 |
| 1293 | char_type __atoms[32]; |
| 1294 | char_type __decimal_point; |
| 1295 | char_type __thousands_sep; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1296 | string __grouping = this->__stage2_float_prep(__iob, __atoms, |
| 1297 | __decimal_point, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1298 | __thousands_sep); |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1299 | string __buf; |
| 1300 | __buf.resize(__buf.capacity()); |
| 1301 | char* __a = &__buf[0]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1302 | char* __a_end = __a; |
| 1303 | unsigned __g[__num_get_base::__num_get_buf_sz]; |
| 1304 | unsigned* __g_end = __g; |
| 1305 | unsigned __dc = 0; |
| 1306 | bool __in_units = true; |
| 1307 | char __exp = 'E'; |
| 1308 | for (; __b != __e; ++__b) |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1309 | { |
| 1310 | if (__a_end - __a == __buf.size()) |
| 1311 | { |
| 1312 | size_t __tmp = __buf.size(); |
| 1313 | __buf.resize(2*__buf.size()); |
| 1314 | __buf.resize(__buf.capacity()); |
| 1315 | __a = &__buf[0]; |
| 1316 | __a_end = __a + __tmp; |
| 1317 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1318 | if (this->__stage2_float_loop(*__b, __in_units, __exp, __a, __a_end, |
| 1319 | __decimal_point, __thousands_sep, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1320 | __grouping, __g, __g_end, |
| 1321 | __dc, __atoms)) |
| 1322 | break; |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1323 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1324 | if (__grouping.size() != 0 && __in_units && __g_end-__g < __num_get_base::__num_get_buf_sz) |
| 1325 | *__g_end++ = __dc; |
| 1326 | // Stage 3 |
| 1327 | __v = __num_get_float<double>(__a, __a_end, __err); |
| 1328 | // Digit grouping checked |
| 1329 | __check_grouping(__grouping, __g, __g_end, __err); |
| 1330 | // EOF checked |
| 1331 | if (__b == __e) |
| 1332 | __err |= ios_base::eofbit; |
| 1333 | return __b; |
| 1334 | } |
| 1335 | |
| 1336 | template <class _CharT, class _InputIterator> |
| 1337 | _InputIterator |
| 1338 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 1339 | ios_base& __iob, |
| 1340 | ios_base::iostate& __err, |
| 1341 | long double& __v) const |
| 1342 | { |
| 1343 | // Stage 1, nothing to do |
| 1344 | // Stage 2 |
| 1345 | char_type __atoms[32]; |
| 1346 | char_type __decimal_point; |
| 1347 | char_type __thousands_sep; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1348 | string __grouping = this->__stage2_float_prep(__iob, __atoms, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1349 | __decimal_point, |
| 1350 | __thousands_sep); |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1351 | string __buf; |
| 1352 | __buf.resize(__buf.capacity()); |
| 1353 | char* __a = &__buf[0]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1354 | char* __a_end = __a; |
| 1355 | unsigned __g[__num_get_base::__num_get_buf_sz]; |
| 1356 | unsigned* __g_end = __g; |
| 1357 | unsigned __dc = 0; |
| 1358 | bool __in_units = true; |
| 1359 | char __exp = 'E'; |
| 1360 | for (; __b != __e; ++__b) |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1361 | { |
| 1362 | if (__a_end - __a == __buf.size()) |
| 1363 | { |
| 1364 | size_t __tmp = __buf.size(); |
| 1365 | __buf.resize(2*__buf.size()); |
| 1366 | __buf.resize(__buf.capacity()); |
| 1367 | __a = &__buf[0]; |
| 1368 | __a_end = __a + __tmp; |
| 1369 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1370 | if (this->__stage2_float_loop(*__b, __in_units, __exp, __a, __a_end, |
| 1371 | __decimal_point, __thousands_sep, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1372 | __grouping, __g, __g_end, |
| 1373 | __dc, __atoms)) |
| 1374 | break; |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1375 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1376 | if (__grouping.size() != 0 && __in_units && __g_end-__g < __num_get_base::__num_get_buf_sz) |
| 1377 | *__g_end++ = __dc; |
| 1378 | // Stage 3 |
| 1379 | __v = __num_get_float<long double>(__a, __a_end, __err); |
| 1380 | // Digit grouping checked |
| 1381 | __check_grouping(__grouping, __g, __g_end, __err); |
| 1382 | // EOF checked |
| 1383 | if (__b == __e) |
| 1384 | __err |= ios_base::eofbit; |
| 1385 | return __b; |
| 1386 | } |
| 1387 | |
| 1388 | template <class _CharT, class _InputIterator> |
| 1389 | _InputIterator |
| 1390 | num_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 1391 | ios_base& __iob, |
| 1392 | ios_base::iostate& __err, |
| 1393 | void*& __v) const |
| 1394 | { |
| 1395 | // Stage 1 |
| 1396 | int __base = 16; |
| 1397 | // Stage 2 |
| 1398 | char_type __atoms[26]; |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 1399 | char_type __thousands_sep = 0; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1400 | string __grouping; |
| 1401 | use_facet<ctype<_CharT> >(__iob.getloc()).widen(__num_get_base::__src, |
| 1402 | __num_get_base::__src + 26, __atoms); |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1403 | string __buf; |
| 1404 | __buf.resize(__buf.capacity()); |
| 1405 | char* __a = &__buf[0]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1406 | char* __a_end = __a; |
| 1407 | unsigned __g[__num_get_base::__num_get_buf_sz]; |
| 1408 | unsigned* __g_end = __g; |
| 1409 | unsigned __dc = 0; |
| 1410 | for (; __b != __e; ++__b) |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1411 | { |
| 1412 | if (__a_end - __a == __buf.size()) |
| 1413 | { |
| 1414 | size_t __tmp = __buf.size(); |
| 1415 | __buf.resize(2*__buf.size()); |
| 1416 | __buf.resize(__buf.capacity()); |
| 1417 | __a = &__buf[0]; |
| 1418 | __a_end = __a + __tmp; |
| 1419 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1420 | if (this->__stage2_int_loop(*__b, __base, __a, __a_end, __dc, |
| 1421 | __thousands_sep, __grouping, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1422 | __g, __g_end, __atoms)) |
| 1423 | break; |
Howard Hinnant | ae57a1a | 2013-04-15 20:40:06 +0000 | [diff] [blame] | 1424 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1425 | // Stage 3 |
| 1426 | __a[sizeof(__a)-1] = 0; |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1427 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 1428 | if (sscanf_l(__a, _LIBCPP_GET_C_LOCALE, "%p", &__v) != 1) |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1429 | #else |
| 1430 | if (__sscanf_l(__a, __cloc(), "%p", &__v) != 1) |
| 1431 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1432 | __err = ios_base::failbit; |
| 1433 | // EOF checked |
| 1434 | if (__b == __e) |
| 1435 | __err |= ios_base::eofbit; |
| 1436 | return __b; |
| 1437 | } |
| 1438 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 1439 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS num_get<char>) |
| 1440 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS num_get<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1441 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 1442 | struct _LIBCPP_TYPE_VIS __num_put_base |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1443 | { |
| 1444 | protected: |
| 1445 | static void __format_int(char* __fmt, const char* __len, bool __signd, |
| 1446 | ios_base::fmtflags __flags); |
| 1447 | static bool __format_float(char* __fmt, const char* __len, |
| 1448 | ios_base::fmtflags __flags); |
| 1449 | static char* __identify_padding(char* __nb, char* __ne, |
| 1450 | const ios_base& __iob); |
| 1451 | }; |
| 1452 | |
| 1453 | template <class _CharT> |
| 1454 | struct __num_put |
| 1455 | : protected __num_put_base |
| 1456 | { |
| 1457 | static void __widen_and_group_int(char* __nb, char* __np, char* __ne, |
| 1458 | _CharT* __ob, _CharT*& __op, _CharT*& __oe, |
| 1459 | const locale& __loc); |
| 1460 | static void __widen_and_group_float(char* __nb, char* __np, char* __ne, |
| 1461 | _CharT* __ob, _CharT*& __op, _CharT*& __oe, |
| 1462 | const locale& __loc); |
| 1463 | }; |
| 1464 | |
| 1465 | template <class _CharT> |
| 1466 | void |
| 1467 | __num_put<_CharT>::__widen_and_group_int(char* __nb, char* __np, char* __ne, |
| 1468 | _CharT* __ob, _CharT*& __op, _CharT*& __oe, |
| 1469 | const locale& __loc) |
| 1470 | { |
| 1471 | const ctype<_CharT>& __ct = use_facet<ctype<_CharT> > (__loc); |
| 1472 | const numpunct<_CharT>& __npt = use_facet<numpunct<_CharT> >(__loc); |
| 1473 | string __grouping = __npt.grouping(); |
| 1474 | if (__grouping.empty()) |
| 1475 | { |
| 1476 | __ct.widen(__nb, __ne, __ob); |
| 1477 | __oe = __ob + (__ne - __nb); |
| 1478 | } |
| 1479 | else |
| 1480 | { |
| 1481 | __oe = __ob; |
| 1482 | char* __nf = __nb; |
| 1483 | if (*__nf == '-' || *__nf == '+') |
| 1484 | *__oe++ = __ct.widen(*__nf++); |
| 1485 | if (__ne - __nf >= 2 && __nf[0] == '0' && (__nf[1] == 'x' || |
| 1486 | __nf[1] == 'X')) |
| 1487 | { |
| 1488 | *__oe++ = __ct.widen(*__nf++); |
| 1489 | *__oe++ = __ct.widen(*__nf++); |
| 1490 | } |
| 1491 | reverse(__nf, __ne); |
| 1492 | _CharT __thousands_sep = __npt.thousands_sep(); |
| 1493 | unsigned __dc = 0; |
| 1494 | unsigned __dg = 0; |
| 1495 | for (char* __p = __nf; __p < __ne; ++__p) |
| 1496 | { |
| 1497 | if (static_cast<unsigned>(__grouping[__dg]) > 0 && |
| 1498 | __dc == static_cast<unsigned>(__grouping[__dg])) |
| 1499 | { |
| 1500 | *__oe++ = __thousands_sep; |
| 1501 | __dc = 0; |
| 1502 | if (__dg < __grouping.size()-1) |
| 1503 | ++__dg; |
| 1504 | } |
| 1505 | *__oe++ = __ct.widen(*__p); |
| 1506 | ++__dc; |
| 1507 | } |
| 1508 | reverse(__ob + (__nf - __nb), __oe); |
| 1509 | } |
| 1510 | if (__np == __ne) |
| 1511 | __op = __oe; |
| 1512 | else |
| 1513 | __op = __ob + (__np - __nb); |
| 1514 | } |
| 1515 | |
| 1516 | template <class _CharT> |
| 1517 | void |
| 1518 | __num_put<_CharT>::__widen_and_group_float(char* __nb, char* __np, char* __ne, |
| 1519 | _CharT* __ob, _CharT*& __op, _CharT*& __oe, |
| 1520 | const locale& __loc) |
| 1521 | { |
| 1522 | const ctype<_CharT>& __ct = use_facet<ctype<_CharT> > (__loc); |
| 1523 | const numpunct<_CharT>& __npt = use_facet<numpunct<_CharT> >(__loc); |
| 1524 | string __grouping = __npt.grouping(); |
| 1525 | __oe = __ob; |
| 1526 | char* __nf = __nb; |
| 1527 | if (*__nf == '-' || *__nf == '+') |
| 1528 | *__oe++ = __ct.widen(*__nf++); |
| 1529 | char* __ns; |
| 1530 | if (__ne - __nf >= 2 && __nf[0] == '0' && (__nf[1] == 'x' || |
| 1531 | __nf[1] == 'X')) |
| 1532 | { |
| 1533 | *__oe++ = __ct.widen(*__nf++); |
| 1534 | *__oe++ = __ct.widen(*__nf++); |
| 1535 | for (__ns = __nf; __ns < __ne; ++__ns) |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 1536 | if (!isxdigit_l(*__ns, _LIBCPP_GET_C_LOCALE)) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1537 | break; |
| 1538 | } |
| 1539 | else |
| 1540 | { |
| 1541 | for (__ns = __nf; __ns < __ne; ++__ns) |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 1542 | if (!isdigit_l(*__ns, _LIBCPP_GET_C_LOCALE)) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1543 | break; |
| 1544 | } |
| 1545 | if (__grouping.empty()) |
| 1546 | { |
| 1547 | __ct.widen(__nf, __ns, __oe); |
| 1548 | __oe += __ns - __nf; |
| 1549 | } |
| 1550 | else |
| 1551 | { |
| 1552 | reverse(__nf, __ns); |
| 1553 | _CharT __thousands_sep = __npt.thousands_sep(); |
| 1554 | unsigned __dc = 0; |
| 1555 | unsigned __dg = 0; |
| 1556 | for (char* __p = __nf; __p < __ns; ++__p) |
| 1557 | { |
| 1558 | if (__grouping[__dg] > 0 && __dc == static_cast<unsigned>(__grouping[__dg])) |
| 1559 | { |
| 1560 | *__oe++ = __thousands_sep; |
| 1561 | __dc = 0; |
| 1562 | if (__dg < __grouping.size()-1) |
| 1563 | ++__dg; |
| 1564 | } |
| 1565 | *__oe++ = __ct.widen(*__p); |
| 1566 | ++__dc; |
| 1567 | } |
| 1568 | reverse(__ob + (__nf - __nb), __oe); |
| 1569 | } |
| 1570 | for (__nf = __ns; __nf < __ne; ++__nf) |
| 1571 | { |
| 1572 | if (*__nf == '.') |
| 1573 | { |
| 1574 | *__oe++ = __npt.decimal_point(); |
| 1575 | ++__nf; |
| 1576 | break; |
| 1577 | } |
| 1578 | else |
| 1579 | *__oe++ = __ct.widen(*__nf); |
| 1580 | } |
| 1581 | __ct.widen(__nf, __ne, __oe); |
| 1582 | __oe += __ne - __nf; |
| 1583 | if (__np == __ne) |
| 1584 | __op = __oe; |
| 1585 | else |
| 1586 | __op = __ob + (__np - __nb); |
| 1587 | } |
| 1588 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 1589 | _LIBCPP_EXTERN_TEMPLATE(struct _LIBCPP_TYPE_VIS __num_put<char>) |
| 1590 | _LIBCPP_EXTERN_TEMPLATE(struct _LIBCPP_TYPE_VIS __num_put<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1591 | |
| 1592 | template <class _CharT, class _OutputIterator = ostreambuf_iterator<_CharT> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 1593 | class _LIBCPP_TYPE_VIS_ONLY num_put |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1594 | : public locale::facet, |
| 1595 | private __num_put<_CharT> |
| 1596 | { |
| 1597 | public: |
| 1598 | typedef _CharT char_type; |
| 1599 | typedef _OutputIterator iter_type; |
| 1600 | |
| 1601 | _LIBCPP_ALWAYS_INLINE |
| 1602 | explicit num_put(size_t __refs = 0) |
| 1603 | : locale::facet(__refs) {} |
| 1604 | |
| 1605 | _LIBCPP_ALWAYS_INLINE |
| 1606 | iter_type put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1607 | bool __v) const |
| 1608 | { |
| 1609 | return do_put(__s, __iob, __fl, __v); |
| 1610 | } |
| 1611 | |
| 1612 | _LIBCPP_ALWAYS_INLINE |
| 1613 | iter_type put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1614 | long __v) const |
| 1615 | { |
| 1616 | return do_put(__s, __iob, __fl, __v); |
| 1617 | } |
| 1618 | |
| 1619 | _LIBCPP_ALWAYS_INLINE |
| 1620 | iter_type put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1621 | long long __v) const |
| 1622 | { |
| 1623 | return do_put(__s, __iob, __fl, __v); |
| 1624 | } |
| 1625 | |
| 1626 | _LIBCPP_ALWAYS_INLINE |
| 1627 | iter_type put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1628 | unsigned long __v) const |
| 1629 | { |
| 1630 | return do_put(__s, __iob, __fl, __v); |
| 1631 | } |
| 1632 | |
| 1633 | _LIBCPP_ALWAYS_INLINE |
| 1634 | iter_type put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1635 | unsigned long long __v) const |
| 1636 | { |
| 1637 | return do_put(__s, __iob, __fl, __v); |
| 1638 | } |
| 1639 | |
| 1640 | _LIBCPP_ALWAYS_INLINE |
| 1641 | iter_type put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1642 | double __v) const |
| 1643 | { |
| 1644 | return do_put(__s, __iob, __fl, __v); |
| 1645 | } |
| 1646 | |
| 1647 | _LIBCPP_ALWAYS_INLINE |
| 1648 | iter_type put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1649 | long double __v) const |
| 1650 | { |
| 1651 | return do_put(__s, __iob, __fl, __v); |
| 1652 | } |
| 1653 | |
| 1654 | _LIBCPP_ALWAYS_INLINE |
| 1655 | iter_type put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1656 | const void* __v) const |
| 1657 | { |
| 1658 | return do_put(__s, __iob, __fl, __v); |
| 1659 | } |
| 1660 | |
| 1661 | static locale::id id; |
| 1662 | |
| 1663 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1664 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1665 | ~num_put() {} |
| 1666 | |
| 1667 | virtual iter_type do_put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1668 | bool __v) const; |
| 1669 | virtual iter_type do_put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1670 | long __v) const; |
| 1671 | virtual iter_type do_put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1672 | long long __v) const; |
| 1673 | virtual iter_type do_put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1674 | unsigned long) const; |
| 1675 | virtual iter_type do_put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1676 | unsigned long long) const; |
| 1677 | virtual iter_type do_put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1678 | double __v) const; |
| 1679 | virtual iter_type do_put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1680 | long double __v) const; |
| 1681 | virtual iter_type do_put(iter_type __s, ios_base& __iob, char_type __fl, |
| 1682 | const void* __v) const; |
| 1683 | }; |
| 1684 | |
| 1685 | template <class _CharT, class _OutputIterator> |
| 1686 | locale::id |
| 1687 | num_put<_CharT, _OutputIterator>::id; |
| 1688 | |
| 1689 | template <class _CharT, class _OutputIterator> |
| 1690 | _LIBCPP_HIDDEN |
| 1691 | _OutputIterator |
| 1692 | __pad_and_output(_OutputIterator __s, |
| 1693 | const _CharT* __ob, const _CharT* __op, const _CharT* __oe, |
| 1694 | ios_base& __iob, _CharT __fl) |
| 1695 | { |
| 1696 | streamsize __sz = __oe - __ob; |
| 1697 | streamsize __ns = __iob.width(); |
| 1698 | if (__ns > __sz) |
| 1699 | __ns -= __sz; |
| 1700 | else |
| 1701 | __ns = 0; |
| 1702 | for (;__ob < __op; ++__ob, ++__s) |
| 1703 | *__s = *__ob; |
| 1704 | for (; __ns; --__ns, ++__s) |
| 1705 | *__s = __fl; |
| 1706 | for (; __ob < __oe; ++__ob, ++__s) |
| 1707 | *__s = *__ob; |
| 1708 | __iob.width(0); |
| 1709 | return __s; |
| 1710 | } |
| 1711 | |
Howard Hinnant | 537b2fa | 2012-11-14 21:17:15 +0000 | [diff] [blame] | 1712 | #if !defined(__APPLE__) || \ |
| 1713 | (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED > __MAC_10_8) || \ |
| 1714 | (defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_6_0) |
| 1715 | |
Howard Hinnant | a585de6 | 2012-09-19 19:14:15 +0000 | [diff] [blame] | 1716 | template <class _CharT, class _Traits> |
| 1717 | _LIBCPP_HIDDEN |
| 1718 | ostreambuf_iterator<_CharT, _Traits> |
| 1719 | __pad_and_output(ostreambuf_iterator<_CharT, _Traits> __s, |
| 1720 | const _CharT* __ob, const _CharT* __op, const _CharT* __oe, |
| 1721 | ios_base& __iob, _CharT __fl) |
| 1722 | { |
| 1723 | if (__s.__sbuf_ == nullptr) |
| 1724 | return __s; |
| 1725 | streamsize __sz = __oe - __ob; |
| 1726 | streamsize __ns = __iob.width(); |
| 1727 | if (__ns > __sz) |
| 1728 | __ns -= __sz; |
| 1729 | else |
| 1730 | __ns = 0; |
| 1731 | streamsize __np = __op - __ob; |
| 1732 | if (__np > 0) |
| 1733 | { |
| 1734 | if (__s.__sbuf_->sputn(__ob, __np) != __np) |
| 1735 | { |
| 1736 | __s.__sbuf_ = nullptr; |
| 1737 | return __s; |
| 1738 | } |
| 1739 | } |
| 1740 | if (__ns > 0) |
| 1741 | { |
| 1742 | basic_string<_CharT, _Traits> __sp(__ns, __fl); |
| 1743 | if (__s.__sbuf_->sputn(__sp.data(), __ns) != __ns) |
| 1744 | { |
| 1745 | __s.__sbuf_ = nullptr; |
| 1746 | return __s; |
| 1747 | } |
| 1748 | } |
| 1749 | __np = __oe - __op; |
| 1750 | if (__np > 0) |
| 1751 | { |
| 1752 | if (__s.__sbuf_->sputn(__op, __np) != __np) |
| 1753 | { |
| 1754 | __s.__sbuf_ = nullptr; |
| 1755 | return __s; |
| 1756 | } |
| 1757 | } |
| 1758 | __iob.width(0); |
| 1759 | return __s; |
| 1760 | } |
| 1761 | |
Howard Hinnant | 537b2fa | 2012-11-14 21:17:15 +0000 | [diff] [blame] | 1762 | #endif |
| 1763 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1764 | template <class _CharT, class _OutputIterator> |
| 1765 | _OutputIterator |
| 1766 | num_put<_CharT, _OutputIterator>::do_put(iter_type __s, ios_base& __iob, |
| 1767 | char_type __fl, bool __v) const |
| 1768 | { |
| 1769 | if ((__iob.flags() & ios_base::boolalpha) == 0) |
| 1770 | return do_put(__s, __iob, __fl, (unsigned long)__v); |
| 1771 | const numpunct<char_type>& __np = use_facet<numpunct<char_type> >(__iob.getloc()); |
| 1772 | typedef typename numpunct<char_type>::string_type string_type; |
| 1773 | string_type __nm = __v ? __np.truename() : __np.falsename(); |
| 1774 | for (typename string_type::iterator __i = __nm.begin(); __i != __nm.end(); ++__i, ++__s) |
| 1775 | *__s = *__i; |
| 1776 | return __s; |
| 1777 | } |
| 1778 | |
| 1779 | template <class _CharT, class _OutputIterator> |
| 1780 | _OutputIterator |
| 1781 | num_put<_CharT, _OutputIterator>::do_put(iter_type __s, ios_base& __iob, |
| 1782 | char_type __fl, long __v) const |
| 1783 | { |
| 1784 | // Stage 1 - Get number in narrow char |
| 1785 | char __fmt[6] = {'%', 0}; |
| 1786 | const char* __len = "l"; |
| 1787 | this->__format_int(__fmt+1, __len, true, __iob.flags()); |
| 1788 | const unsigned __nbuf = (numeric_limits<long>::digits / 3) |
| 1789 | + ((numeric_limits<long>::digits % 3) != 0) |
| 1790 | + 1; |
| 1791 | char __nar[__nbuf]; |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1792 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 839ae58 | 2013-07-02 18:42:28 +0000 | [diff] [blame] | 1793 | int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1794 | #else |
Howard Hinnant | 839ae58 | 2013-07-02 18:42:28 +0000 | [diff] [blame] | 1795 | int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1796 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1797 | char* __ne = __nar + __nc; |
| 1798 | char* __np = this->__identify_padding(__nar, __ne, __iob); |
| 1799 | // Stage 2 - Widen __nar while adding thousands separators |
| 1800 | char_type __o[2*(__nbuf-1) - 1]; |
| 1801 | char_type* __op; // pad here |
| 1802 | char_type* __oe; // end of output |
| 1803 | this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc()); |
| 1804 | // [__o, __oe) contains thousands_sep'd wide number |
| 1805 | // Stage 3 & 4 |
| 1806 | return __pad_and_output(__s, __o, __op, __oe, __iob, __fl); |
| 1807 | } |
| 1808 | |
| 1809 | template <class _CharT, class _OutputIterator> |
| 1810 | _OutputIterator |
| 1811 | num_put<_CharT, _OutputIterator>::do_put(iter_type __s, ios_base& __iob, |
| 1812 | char_type __fl, long long __v) const |
| 1813 | { |
| 1814 | // Stage 1 - Get number in narrow char |
| 1815 | char __fmt[8] = {'%', 0}; |
| 1816 | const char* __len = "ll"; |
| 1817 | this->__format_int(__fmt+1, __len, true, __iob.flags()); |
| 1818 | const unsigned __nbuf = (numeric_limits<long long>::digits / 3) |
| 1819 | + ((numeric_limits<long long>::digits % 3) != 0) |
| 1820 | + 1; |
| 1821 | char __nar[__nbuf]; |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1822 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 839ae58 | 2013-07-02 18:42:28 +0000 | [diff] [blame] | 1823 | int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1824 | #else |
Howard Hinnant | 839ae58 | 2013-07-02 18:42:28 +0000 | [diff] [blame] | 1825 | int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1826 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1827 | char* __ne = __nar + __nc; |
| 1828 | char* __np = this->__identify_padding(__nar, __ne, __iob); |
| 1829 | // Stage 2 - Widen __nar while adding thousands separators |
| 1830 | char_type __o[2*(__nbuf-1) - 1]; |
| 1831 | char_type* __op; // pad here |
| 1832 | char_type* __oe; // end of output |
| 1833 | this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc()); |
| 1834 | // [__o, __oe) contains thousands_sep'd wide number |
| 1835 | // Stage 3 & 4 |
| 1836 | return __pad_and_output(__s, __o, __op, __oe, __iob, __fl); |
| 1837 | } |
| 1838 | |
| 1839 | template <class _CharT, class _OutputIterator> |
| 1840 | _OutputIterator |
| 1841 | num_put<_CharT, _OutputIterator>::do_put(iter_type __s, ios_base& __iob, |
| 1842 | char_type __fl, unsigned long __v) const |
| 1843 | { |
| 1844 | // Stage 1 - Get number in narrow char |
| 1845 | char __fmt[6] = {'%', 0}; |
| 1846 | const char* __len = "l"; |
| 1847 | this->__format_int(__fmt+1, __len, false, __iob.flags()); |
| 1848 | const unsigned __nbuf = (numeric_limits<unsigned long>::digits / 3) |
| 1849 | + ((numeric_limits<unsigned long>::digits % 3) != 0) |
| 1850 | + 1; |
| 1851 | char __nar[__nbuf]; |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1852 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 839ae58 | 2013-07-02 18:42:28 +0000 | [diff] [blame] | 1853 | int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1854 | #else |
Howard Hinnant | 839ae58 | 2013-07-02 18:42:28 +0000 | [diff] [blame] | 1855 | int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1856 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1857 | char* __ne = __nar + __nc; |
| 1858 | char* __np = this->__identify_padding(__nar, __ne, __iob); |
| 1859 | // Stage 2 - Widen __nar while adding thousands separators |
| 1860 | char_type __o[2*(__nbuf-1) - 1]; |
| 1861 | char_type* __op; // pad here |
| 1862 | char_type* __oe; // end of output |
| 1863 | this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc()); |
| 1864 | // [__o, __oe) contains thousands_sep'd wide number |
| 1865 | // Stage 3 & 4 |
| 1866 | return __pad_and_output(__s, __o, __op, __oe, __iob, __fl); |
| 1867 | } |
| 1868 | |
| 1869 | template <class _CharT, class _OutputIterator> |
| 1870 | _OutputIterator |
| 1871 | num_put<_CharT, _OutputIterator>::do_put(iter_type __s, ios_base& __iob, |
| 1872 | char_type __fl, unsigned long long __v) const |
| 1873 | { |
| 1874 | // Stage 1 - Get number in narrow char |
| 1875 | char __fmt[8] = {'%', 0}; |
| 1876 | const char* __len = "ll"; |
| 1877 | this->__format_int(__fmt+1, __len, false, __iob.flags()); |
| 1878 | const unsigned __nbuf = (numeric_limits<unsigned long long>::digits / 3) |
| 1879 | + ((numeric_limits<unsigned long long>::digits % 3) != 0) |
| 1880 | + 1; |
| 1881 | char __nar[__nbuf]; |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1882 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 839ae58 | 2013-07-02 18:42:28 +0000 | [diff] [blame] | 1883 | int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1884 | #else |
Howard Hinnant | 839ae58 | 2013-07-02 18:42:28 +0000 | [diff] [blame] | 1885 | int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1886 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1887 | char* __ne = __nar + __nc; |
| 1888 | char* __np = this->__identify_padding(__nar, __ne, __iob); |
| 1889 | // Stage 2 - Widen __nar while adding thousands separators |
| 1890 | char_type __o[2*(__nbuf-1) - 1]; |
| 1891 | char_type* __op; // pad here |
| 1892 | char_type* __oe; // end of output |
| 1893 | this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc()); |
| 1894 | // [__o, __oe) contains thousands_sep'd wide number |
| 1895 | // Stage 3 & 4 |
| 1896 | return __pad_and_output(__s, __o, __op, __oe, __iob, __fl); |
| 1897 | } |
| 1898 | |
| 1899 | template <class _CharT, class _OutputIterator> |
| 1900 | _OutputIterator |
| 1901 | num_put<_CharT, _OutputIterator>::do_put(iter_type __s, ios_base& __iob, |
| 1902 | char_type __fl, double __v) const |
| 1903 | { |
| 1904 | // Stage 1 - Get number in narrow char |
| 1905 | char __fmt[8] = {'%', 0}; |
| 1906 | const char* __len = ""; |
| 1907 | bool __specify_precision = this->__format_float(__fmt+1, __len, __iob.flags()); |
| 1908 | const unsigned __nbuf = 30; |
| 1909 | char __nar[__nbuf]; |
| 1910 | char* __nb = __nar; |
| 1911 | int __nc; |
| 1912 | if (__specify_precision) |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1913 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 1914 | __nc = snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 1915 | (int)__iob.precision(), __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1916 | #else |
| 1917 | __nc = __snprintf_l(__nb, __nbuf, __cloc(), __fmt, |
| 1918 | (int)__iob.precision(), __v); |
| 1919 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1920 | else |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1921 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 1922 | __nc = snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1923 | #else |
| 1924 | __nc = __snprintf_l(__nb, __nbuf, __cloc(), __fmt, __v); |
| 1925 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1926 | unique_ptr<char, void(*)(void*)> __nbh(0, free); |
| 1927 | if (__nc > static_cast<int>(__nbuf-1)) |
| 1928 | { |
| 1929 | if (__specify_precision) |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1930 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 1931 | __nc = asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1932 | #else |
| 1933 | __nc = __asprintf_l(&__nb, __cloc(), __fmt, |
David Chisnall | c512df1 | 2011-09-21 08:39:44 +0000 | [diff] [blame] | 1934 | (int)__iob.precision(), __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1935 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1936 | else |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1937 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 1938 | __nc = asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1939 | #else |
David Chisnall | c512df1 | 2011-09-21 08:39:44 +0000 | [diff] [blame] | 1940 | __nc = __asprintf_l(&__nb, __cloc(), __fmt, (int)__iob.precision(), __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1941 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1942 | if (__nb == 0) |
| 1943 | __throw_bad_alloc(); |
| 1944 | __nbh.reset(__nb); |
| 1945 | } |
| 1946 | char* __ne = __nb + __nc; |
| 1947 | char* __np = this->__identify_padding(__nb, __ne, __iob); |
| 1948 | // Stage 2 - Widen __nar while adding thousands separators |
| 1949 | char_type __o[2*(__nbuf-1) - 1]; |
| 1950 | char_type* __ob = __o; |
| 1951 | unique_ptr<char_type, void(*)(void*)> __obh(0, free); |
| 1952 | if (__nb != __nar) |
| 1953 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 1954 | __ob = (char_type*)malloc(2*static_cast<size_t>(__nc)*sizeof(char_type)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1955 | if (__ob == 0) |
| 1956 | __throw_bad_alloc(); |
| 1957 | __obh.reset(__ob); |
| 1958 | } |
| 1959 | char_type* __op; // pad here |
| 1960 | char_type* __oe; // end of output |
| 1961 | this->__widen_and_group_float(__nb, __np, __ne, __ob, __op, __oe, __iob.getloc()); |
| 1962 | // [__o, __oe) contains thousands_sep'd wide number |
| 1963 | // Stage 3 & 4 |
| 1964 | __s = __pad_and_output(__s, __ob, __op, __oe, __iob, __fl); |
| 1965 | return __s; |
| 1966 | } |
| 1967 | |
| 1968 | template <class _CharT, class _OutputIterator> |
| 1969 | _OutputIterator |
| 1970 | num_put<_CharT, _OutputIterator>::do_put(iter_type __s, ios_base& __iob, |
| 1971 | char_type __fl, long double __v) const |
| 1972 | { |
| 1973 | // Stage 1 - Get number in narrow char |
| 1974 | char __fmt[8] = {'%', 0}; |
| 1975 | const char* __len = "L"; |
| 1976 | bool __specify_precision = this->__format_float(__fmt+1, __len, __iob.flags()); |
| 1977 | const unsigned __nbuf = 30; |
| 1978 | char __nar[__nbuf]; |
| 1979 | char* __nb = __nar; |
| 1980 | int __nc; |
| 1981 | if (__specify_precision) |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1982 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 1983 | __nc = snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 1984 | (int)__iob.precision(), __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1985 | #else |
| 1986 | __nc = __snprintf_l(__nb, __nbuf, __cloc(), __fmt, |
| 1987 | (int)__iob.precision(), __v); |
| 1988 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1989 | else |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1990 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 1991 | __nc = snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 1992 | #else |
| 1993 | __nc = __snprintf_l(__nb, __nbuf, __cloc(), __fmt, __v); |
| 1994 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1995 | unique_ptr<char, void(*)(void*)> __nbh(0, free); |
| 1996 | if (__nc > static_cast<int>(__nbuf-1)) |
| 1997 | { |
| 1998 | if (__specify_precision) |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 1999 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 2000 | __nc = asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 2001 | #else |
| 2002 | __nc = __asprintf_l(&__nb, __cloc(), __fmt, |
David Chisnall | c512df1 | 2011-09-21 08:39:44 +0000 | [diff] [blame] | 2003 | (int)__iob.precision(), __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 2004 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2005 | else |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 2006 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 2007 | __nc = asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 2008 | #else |
David Chisnall | c512df1 | 2011-09-21 08:39:44 +0000 | [diff] [blame] | 2009 | __nc = __asprintf_l(&__nb, __cloc(), __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 2010 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2011 | if (__nb == 0) |
| 2012 | __throw_bad_alloc(); |
| 2013 | __nbh.reset(__nb); |
| 2014 | } |
| 2015 | char* __ne = __nb + __nc; |
| 2016 | char* __np = this->__identify_padding(__nb, __ne, __iob); |
| 2017 | // Stage 2 - Widen __nar while adding thousands separators |
| 2018 | char_type __o[2*(__nbuf-1) - 1]; |
| 2019 | char_type* __ob = __o; |
| 2020 | unique_ptr<char_type, void(*)(void*)> __obh(0, free); |
| 2021 | if (__nb != __nar) |
| 2022 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2023 | __ob = (char_type*)malloc(2*static_cast<size_t>(__nc)*sizeof(char_type)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2024 | if (__ob == 0) |
| 2025 | __throw_bad_alloc(); |
| 2026 | __obh.reset(__ob); |
| 2027 | } |
| 2028 | char_type* __op; // pad here |
| 2029 | char_type* __oe; // end of output |
| 2030 | this->__widen_and_group_float(__nb, __np, __ne, __ob, __op, __oe, __iob.getloc()); |
| 2031 | // [__o, __oe) contains thousands_sep'd wide number |
| 2032 | // Stage 3 & 4 |
| 2033 | __s = __pad_and_output(__s, __ob, __op, __oe, __iob, __fl); |
| 2034 | return __s; |
| 2035 | } |
| 2036 | |
| 2037 | template <class _CharT, class _OutputIterator> |
| 2038 | _OutputIterator |
| 2039 | num_put<_CharT, _OutputIterator>::do_put(iter_type __s, ios_base& __iob, |
| 2040 | char_type __fl, const void* __v) const |
| 2041 | { |
| 2042 | // Stage 1 - Get pointer in narrow char |
| 2043 | char __fmt[6] = "%p"; |
| 2044 | const unsigned __nbuf = 20; |
| 2045 | char __nar[__nbuf]; |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 2046 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | 839ae58 | 2013-07-02 18:42:28 +0000 | [diff] [blame] | 2047 | int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 2048 | #else |
Howard Hinnant | 839ae58 | 2013-07-02 18:42:28 +0000 | [diff] [blame] | 2049 | int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 2050 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2051 | char* __ne = __nar + __nc; |
| 2052 | char* __np = this->__identify_padding(__nar, __ne, __iob); |
| 2053 | // Stage 2 - Widen __nar |
| 2054 | char_type __o[2*(__nbuf-1) - 1]; |
| 2055 | char_type* __op; // pad here |
| 2056 | char_type* __oe; // end of output |
| 2057 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__iob.getloc()); |
| 2058 | __ct.widen(__nar, __ne, __o); |
| 2059 | __oe = __o + (__ne - __nar); |
| 2060 | if (__np == __ne) |
| 2061 | __op = __oe; |
| 2062 | else |
| 2063 | __op = __o + (__np - __nar); |
| 2064 | // [__o, __oe) contains wide number |
| 2065 | // Stage 3 & 4 |
| 2066 | return __pad_and_output(__s, __o, __op, __oe, __iob, __fl); |
| 2067 | } |
| 2068 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2069 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS num_put<char>) |
| 2070 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS num_put<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2071 | |
| 2072 | template <class _CharT, class _InputIterator> |
| 2073 | _LIBCPP_HIDDEN |
| 2074 | int |
| 2075 | __get_up_to_n_digits(_InputIterator& __b, _InputIterator __e, |
| 2076 | ios_base::iostate& __err, const ctype<_CharT>& __ct, int __n) |
| 2077 | { |
| 2078 | // Precondition: __n >= 1 |
| 2079 | if (__b == __e) |
| 2080 | { |
| 2081 | __err |= ios_base::eofbit | ios_base::failbit; |
| 2082 | return 0; |
| 2083 | } |
| 2084 | // get first digit |
| 2085 | _CharT __c = *__b; |
| 2086 | if (!__ct.is(ctype_base::digit, __c)) |
| 2087 | { |
| 2088 | __err |= ios_base::failbit; |
| 2089 | return 0; |
| 2090 | } |
| 2091 | int __r = __ct.narrow(__c, 0) - '0'; |
| 2092 | for (++__b, --__n; __b != __e && __n > 0; ++__b, --__n) |
| 2093 | { |
| 2094 | // get next digit |
| 2095 | __c = *__b; |
| 2096 | if (!__ct.is(ctype_base::digit, __c)) |
| 2097 | return __r; |
| 2098 | __r = __r * 10 + __ct.narrow(__c, 0) - '0'; |
| 2099 | } |
| 2100 | if (__b == __e) |
| 2101 | __err |= ios_base::eofbit; |
| 2102 | return __r; |
| 2103 | } |
| 2104 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 2105 | class _LIBCPP_TYPE_VIS time_base |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2106 | { |
| 2107 | public: |
| 2108 | enum dateorder {no_order, dmy, mdy, ymd, ydm}; |
| 2109 | }; |
| 2110 | |
| 2111 | template <class _CharT> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2112 | class _LIBCPP_TYPE_VIS __time_get_c_storage |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2113 | { |
| 2114 | protected: |
| 2115 | typedef basic_string<_CharT> string_type; |
| 2116 | |
| 2117 | virtual const string_type* __weeks() const; |
| 2118 | virtual const string_type* __months() const; |
| 2119 | virtual const string_type* __am_pm() const; |
| 2120 | virtual const string_type& __c() const; |
| 2121 | virtual const string_type& __r() const; |
| 2122 | virtual const string_type& __x() const; |
| 2123 | virtual const string_type& __X() const; |
| 2124 | }; |
| 2125 | |
| 2126 | template <class _CharT, class _InputIterator = istreambuf_iterator<_CharT> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2127 | class _LIBCPP_TYPE_VIS_ONLY time_get |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2128 | : public locale::facet, |
| 2129 | public time_base, |
| 2130 | private __time_get_c_storage<_CharT> |
| 2131 | { |
| 2132 | public: |
| 2133 | typedef _CharT char_type; |
| 2134 | typedef _InputIterator iter_type; |
| 2135 | typedef time_base::dateorder dateorder; |
| 2136 | typedef basic_string<char_type> string_type; |
| 2137 | |
| 2138 | _LIBCPP_ALWAYS_INLINE |
| 2139 | explicit time_get(size_t __refs = 0) |
| 2140 | : locale::facet(__refs) {} |
| 2141 | |
| 2142 | _LIBCPP_ALWAYS_INLINE |
| 2143 | dateorder date_order() const |
| 2144 | { |
| 2145 | return this->do_date_order(); |
| 2146 | } |
| 2147 | |
| 2148 | _LIBCPP_ALWAYS_INLINE |
| 2149 | iter_type get_time(iter_type __b, iter_type __e, ios_base& __iob, |
| 2150 | ios_base::iostate& __err, tm* __tm) const |
| 2151 | { |
| 2152 | return do_get_time(__b, __e, __iob, __err, __tm); |
| 2153 | } |
| 2154 | |
| 2155 | _LIBCPP_ALWAYS_INLINE |
| 2156 | iter_type get_date(iter_type __b, iter_type __e, ios_base& __iob, |
| 2157 | ios_base::iostate& __err, tm* __tm) const |
| 2158 | { |
| 2159 | return do_get_date(__b, __e, __iob, __err, __tm); |
| 2160 | } |
| 2161 | |
| 2162 | _LIBCPP_ALWAYS_INLINE |
| 2163 | iter_type get_weekday(iter_type __b, iter_type __e, ios_base& __iob, |
| 2164 | ios_base::iostate& __err, tm* __tm) const |
| 2165 | { |
| 2166 | return do_get_weekday(__b, __e, __iob, __err, __tm); |
| 2167 | } |
| 2168 | |
| 2169 | _LIBCPP_ALWAYS_INLINE |
| 2170 | iter_type get_monthname(iter_type __b, iter_type __e, ios_base& __iob, |
| 2171 | ios_base::iostate& __err, tm* __tm) const |
| 2172 | { |
| 2173 | return do_get_monthname(__b, __e, __iob, __err, __tm); |
| 2174 | } |
| 2175 | |
| 2176 | _LIBCPP_ALWAYS_INLINE |
| 2177 | iter_type get_year(iter_type __b, iter_type __e, ios_base& __iob, |
| 2178 | ios_base::iostate& __err, tm* __tm) const |
| 2179 | { |
| 2180 | return do_get_year(__b, __e, __iob, __err, __tm); |
| 2181 | } |
| 2182 | |
| 2183 | _LIBCPP_ALWAYS_INLINE |
| 2184 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 2185 | ios_base::iostate& __err, tm *__tm, |
| 2186 | char __fmt, char __mod = 0) const |
| 2187 | { |
| 2188 | return do_get(__b, __e, __iob, __err, __tm, __fmt, __mod); |
| 2189 | } |
| 2190 | |
| 2191 | iter_type get(iter_type __b, iter_type __e, ios_base& __iob, |
| 2192 | ios_base::iostate& __err, tm* __tm, |
| 2193 | const char_type* __fmtb, const char_type* __fmte) const; |
| 2194 | |
| 2195 | static locale::id id; |
| 2196 | |
| 2197 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2198 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2199 | ~time_get() {} |
| 2200 | |
| 2201 | virtual dateorder do_date_order() const; |
| 2202 | virtual iter_type do_get_time(iter_type __b, iter_type __e, ios_base& __iob, |
| 2203 | ios_base::iostate& __err, tm* __tm) const; |
| 2204 | virtual iter_type do_get_date(iter_type __b, iter_type __e, ios_base& __iob, |
| 2205 | ios_base::iostate& __err, tm* __tm) const; |
| 2206 | virtual iter_type do_get_weekday(iter_type __b, iter_type __e, ios_base& __iob, |
| 2207 | ios_base::iostate& __err, tm* __tm) const; |
| 2208 | virtual iter_type do_get_monthname(iter_type __b, iter_type __e, ios_base& __iob, |
| 2209 | ios_base::iostate& __err, tm* __tm) const; |
| 2210 | virtual iter_type do_get_year(iter_type __b, iter_type __e, ios_base& __iob, |
| 2211 | ios_base::iostate& __err, tm* __tm) const; |
| 2212 | virtual iter_type do_get(iter_type __b, iter_type __e, ios_base& __iob, |
| 2213 | ios_base::iostate& __err, tm* __tm, |
| 2214 | char __fmt, char __mod) const; |
| 2215 | private: |
| 2216 | void __get_white_space(iter_type& __b, iter_type __e, |
| 2217 | ios_base::iostate& __err, const ctype<char_type>& __ct) const; |
| 2218 | void __get_percent(iter_type& __b, iter_type __e, ios_base::iostate& __err, |
| 2219 | const ctype<char_type>& __ct) const; |
| 2220 | |
| 2221 | void __get_weekdayname(int& __m, |
| 2222 | iter_type& __b, iter_type __e, |
| 2223 | ios_base::iostate& __err, |
| 2224 | const ctype<char_type>& __ct) const; |
| 2225 | void __get_monthname(int& __m, |
| 2226 | iter_type& __b, iter_type __e, |
| 2227 | ios_base::iostate& __err, |
| 2228 | const ctype<char_type>& __ct) const; |
| 2229 | void __get_day(int& __d, |
| 2230 | iter_type& __b, iter_type __e, |
| 2231 | ios_base::iostate& __err, |
| 2232 | const ctype<char_type>& __ct) const; |
| 2233 | void __get_month(int& __m, |
| 2234 | iter_type& __b, iter_type __e, |
| 2235 | ios_base::iostate& __err, |
| 2236 | const ctype<char_type>& __ct) const; |
| 2237 | void __get_year(int& __y, |
| 2238 | iter_type& __b, iter_type __e, |
| 2239 | ios_base::iostate& __err, |
| 2240 | const ctype<char_type>& __ct) const; |
| 2241 | void __get_year4(int& __y, |
| 2242 | iter_type& __b, iter_type __e, |
| 2243 | ios_base::iostate& __err, |
| 2244 | const ctype<char_type>& __ct) const; |
| 2245 | void __get_hour(int& __d, |
| 2246 | iter_type& __b, iter_type __e, |
| 2247 | ios_base::iostate& __err, |
| 2248 | const ctype<char_type>& __ct) const; |
| 2249 | void __get_12_hour(int& __h, |
| 2250 | iter_type& __b, iter_type __e, |
| 2251 | ios_base::iostate& __err, |
| 2252 | const ctype<char_type>& __ct) const; |
| 2253 | void __get_am_pm(int& __h, |
| 2254 | iter_type& __b, iter_type __e, |
| 2255 | ios_base::iostate& __err, |
| 2256 | const ctype<char_type>& __ct) const; |
| 2257 | void __get_minute(int& __m, |
| 2258 | iter_type& __b, iter_type __e, |
| 2259 | ios_base::iostate& __err, |
| 2260 | const ctype<char_type>& __ct) const; |
| 2261 | void __get_second(int& __s, |
| 2262 | iter_type& __b, iter_type __e, |
| 2263 | ios_base::iostate& __err, |
| 2264 | const ctype<char_type>& __ct) const; |
| 2265 | void __get_weekday(int& __w, |
| 2266 | iter_type& __b, iter_type __e, |
| 2267 | ios_base::iostate& __err, |
| 2268 | const ctype<char_type>& __ct) const; |
| 2269 | void __get_day_year_num(int& __w, |
| 2270 | iter_type& __b, iter_type __e, |
| 2271 | ios_base::iostate& __err, |
| 2272 | const ctype<char_type>& __ct) const; |
| 2273 | }; |
| 2274 | |
| 2275 | template <class _CharT, class _InputIterator> |
| 2276 | locale::id |
| 2277 | time_get<_CharT, _InputIterator>::id; |
| 2278 | |
| 2279 | // time_get primatives |
| 2280 | |
| 2281 | template <class _CharT, class _InputIterator> |
| 2282 | void |
| 2283 | time_get<_CharT, _InputIterator>::__get_weekdayname(int& __w, |
| 2284 | iter_type& __b, iter_type __e, |
| 2285 | ios_base::iostate& __err, |
| 2286 | const ctype<char_type>& __ct) const |
| 2287 | { |
| 2288 | // Note: ignoring case comes from the POSIX strptime spec |
| 2289 | const string_type* __wk = this->__weeks(); |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2290 | ptrdiff_t __i = __scan_keyword(__b, __e, __wk, __wk+14, __ct, __err, false) - __wk; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2291 | if (__i < 14) |
| 2292 | __w = __i % 7; |
| 2293 | } |
| 2294 | |
| 2295 | template <class _CharT, class _InputIterator> |
| 2296 | void |
| 2297 | time_get<_CharT, _InputIterator>::__get_monthname(int& __m, |
| 2298 | iter_type& __b, iter_type __e, |
| 2299 | ios_base::iostate& __err, |
| 2300 | const ctype<char_type>& __ct) const |
| 2301 | { |
| 2302 | // Note: ignoring case comes from the POSIX strptime spec |
| 2303 | const string_type* __month = this->__months(); |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2304 | ptrdiff_t __i = __scan_keyword(__b, __e, __month, __month+24, __ct, __err, false) - __month; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2305 | if (__i < 24) |
| 2306 | __m = __i % 12; |
| 2307 | } |
| 2308 | |
| 2309 | template <class _CharT, class _InputIterator> |
| 2310 | void |
| 2311 | time_get<_CharT, _InputIterator>::__get_day(int& __d, |
| 2312 | iter_type& __b, iter_type __e, |
| 2313 | ios_base::iostate& __err, |
| 2314 | const ctype<char_type>& __ct) const |
| 2315 | { |
| 2316 | int __t = __get_up_to_n_digits(__b, __e, __err, __ct, 2); |
| 2317 | if (!(__err & ios_base::failbit) && 1 <= __t && __t <= 31) |
| 2318 | __d = __t; |
| 2319 | else |
| 2320 | __err |= ios_base::failbit; |
| 2321 | } |
| 2322 | |
| 2323 | template <class _CharT, class _InputIterator> |
| 2324 | void |
| 2325 | time_get<_CharT, _InputIterator>::__get_month(int& __m, |
| 2326 | iter_type& __b, iter_type __e, |
| 2327 | ios_base::iostate& __err, |
| 2328 | const ctype<char_type>& __ct) const |
| 2329 | { |
| 2330 | int __t = __get_up_to_n_digits(__b, __e, __err, __ct, 2) - 1; |
| 2331 | if (!(__err & ios_base::failbit) && __t <= 11) |
| 2332 | __m = __t; |
| 2333 | else |
| 2334 | __err |= ios_base::failbit; |
| 2335 | } |
| 2336 | |
| 2337 | template <class _CharT, class _InputIterator> |
| 2338 | void |
| 2339 | time_get<_CharT, _InputIterator>::__get_year(int& __y, |
| 2340 | iter_type& __b, iter_type __e, |
| 2341 | ios_base::iostate& __err, |
| 2342 | const ctype<char_type>& __ct) const |
| 2343 | { |
| 2344 | int __t = __get_up_to_n_digits(__b, __e, __err, __ct, 4); |
| 2345 | if (!(__err & ios_base::failbit)) |
| 2346 | { |
| 2347 | if (__t < 69) |
| 2348 | __t += 2000; |
| 2349 | else if (69 <= __t && __t <= 99) |
| 2350 | __t += 1900; |
| 2351 | __y = __t - 1900; |
| 2352 | } |
| 2353 | } |
| 2354 | |
| 2355 | template <class _CharT, class _InputIterator> |
| 2356 | void |
| 2357 | time_get<_CharT, _InputIterator>::__get_year4(int& __y, |
| 2358 | iter_type& __b, iter_type __e, |
| 2359 | ios_base::iostate& __err, |
| 2360 | const ctype<char_type>& __ct) const |
| 2361 | { |
| 2362 | int __t = __get_up_to_n_digits(__b, __e, __err, __ct, 4); |
| 2363 | if (!(__err & ios_base::failbit)) |
| 2364 | __y = __t - 1900; |
| 2365 | } |
| 2366 | |
| 2367 | template <class _CharT, class _InputIterator> |
| 2368 | void |
| 2369 | time_get<_CharT, _InputIterator>::__get_hour(int& __h, |
| 2370 | iter_type& __b, iter_type __e, |
| 2371 | ios_base::iostate& __err, |
| 2372 | const ctype<char_type>& __ct) const |
| 2373 | { |
| 2374 | int __t = __get_up_to_n_digits(__b, __e, __err, __ct, 2); |
| 2375 | if (!(__err & ios_base::failbit) && __t <= 23) |
| 2376 | __h = __t; |
| 2377 | else |
| 2378 | __err |= ios_base::failbit; |
| 2379 | } |
| 2380 | |
| 2381 | template <class _CharT, class _InputIterator> |
| 2382 | void |
| 2383 | time_get<_CharT, _InputIterator>::__get_12_hour(int& __h, |
| 2384 | iter_type& __b, iter_type __e, |
| 2385 | ios_base::iostate& __err, |
| 2386 | const ctype<char_type>& __ct) const |
| 2387 | { |
| 2388 | int __t = __get_up_to_n_digits(__b, __e, __err, __ct, 2); |
| 2389 | if (!(__err & ios_base::failbit) && 1 <= __t && __t <= 12) |
| 2390 | __h = __t; |
| 2391 | else |
| 2392 | __err |= ios_base::failbit; |
| 2393 | } |
| 2394 | |
| 2395 | template <class _CharT, class _InputIterator> |
| 2396 | void |
| 2397 | time_get<_CharT, _InputIterator>::__get_minute(int& __m, |
| 2398 | iter_type& __b, iter_type __e, |
| 2399 | ios_base::iostate& __err, |
| 2400 | const ctype<char_type>& __ct) const |
| 2401 | { |
| 2402 | int __t = __get_up_to_n_digits(__b, __e, __err, __ct, 2); |
| 2403 | if (!(__err & ios_base::failbit) && __t <= 59) |
| 2404 | __m = __t; |
| 2405 | else |
| 2406 | __err |= ios_base::failbit; |
| 2407 | } |
| 2408 | |
| 2409 | template <class _CharT, class _InputIterator> |
| 2410 | void |
| 2411 | time_get<_CharT, _InputIterator>::__get_second(int& __s, |
| 2412 | iter_type& __b, iter_type __e, |
| 2413 | ios_base::iostate& __err, |
| 2414 | const ctype<char_type>& __ct) const |
| 2415 | { |
| 2416 | int __t = __get_up_to_n_digits(__b, __e, __err, __ct, 2); |
| 2417 | if (!(__err & ios_base::failbit) && __t <= 60) |
| 2418 | __s = __t; |
| 2419 | else |
| 2420 | __err |= ios_base::failbit; |
| 2421 | } |
| 2422 | |
| 2423 | template <class _CharT, class _InputIterator> |
| 2424 | void |
| 2425 | time_get<_CharT, _InputIterator>::__get_weekday(int& __w, |
| 2426 | iter_type& __b, iter_type __e, |
| 2427 | ios_base::iostate& __err, |
| 2428 | const ctype<char_type>& __ct) const |
| 2429 | { |
| 2430 | int __t = __get_up_to_n_digits(__b, __e, __err, __ct, 1); |
| 2431 | if (!(__err & ios_base::failbit) && __t <= 6) |
| 2432 | __w = __t; |
| 2433 | else |
| 2434 | __err |= ios_base::failbit; |
| 2435 | } |
| 2436 | |
| 2437 | template <class _CharT, class _InputIterator> |
| 2438 | void |
| 2439 | time_get<_CharT, _InputIterator>::__get_day_year_num(int& __d, |
| 2440 | iter_type& __b, iter_type __e, |
| 2441 | ios_base::iostate& __err, |
| 2442 | const ctype<char_type>& __ct) const |
| 2443 | { |
| 2444 | int __t = __get_up_to_n_digits(__b, __e, __err, __ct, 3); |
| 2445 | if (!(__err & ios_base::failbit) && __t <= 365) |
| 2446 | __d = __t; |
| 2447 | else |
| 2448 | __err |= ios_base::failbit; |
| 2449 | } |
| 2450 | |
| 2451 | template <class _CharT, class _InputIterator> |
| 2452 | void |
| 2453 | time_get<_CharT, _InputIterator>::__get_white_space(iter_type& __b, iter_type __e, |
| 2454 | ios_base::iostate& __err, |
| 2455 | const ctype<char_type>& __ct) const |
| 2456 | { |
| 2457 | for (; __b != __e && __ct.is(ctype_base::space, *__b); ++__b) |
| 2458 | ; |
| 2459 | if (__b == __e) |
| 2460 | __err |= ios_base::eofbit; |
| 2461 | } |
| 2462 | |
| 2463 | template <class _CharT, class _InputIterator> |
| 2464 | void |
| 2465 | time_get<_CharT, _InputIterator>::__get_am_pm(int& __h, |
| 2466 | iter_type& __b, iter_type __e, |
| 2467 | ios_base::iostate& __err, |
| 2468 | const ctype<char_type>& __ct) const |
| 2469 | { |
| 2470 | const string_type* __ap = this->__am_pm(); |
| 2471 | if (__ap[0].size() + __ap[1].size() == 0) |
| 2472 | { |
| 2473 | __err |= ios_base::failbit; |
| 2474 | return; |
| 2475 | } |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2476 | ptrdiff_t __i = __scan_keyword(__b, __e, __ap, __ap+2, __ct, __err, false) - __ap; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2477 | if (__i == 0 && __h == 12) |
| 2478 | __h = 0; |
| 2479 | else if (__i == 1 && __h < 12) |
| 2480 | __h += 12; |
| 2481 | } |
| 2482 | |
| 2483 | template <class _CharT, class _InputIterator> |
| 2484 | void |
| 2485 | time_get<_CharT, _InputIterator>::__get_percent(iter_type& __b, iter_type __e, |
| 2486 | ios_base::iostate& __err, |
| 2487 | const ctype<char_type>& __ct) const |
| 2488 | { |
| 2489 | if (__b == __e) |
| 2490 | { |
| 2491 | __err |= ios_base::eofbit | ios_base::failbit; |
| 2492 | return; |
| 2493 | } |
| 2494 | if (__ct.narrow(*__b, 0) != '%') |
| 2495 | __err |= ios_base::failbit; |
| 2496 | else if(++__b == __e) |
| 2497 | __err |= ios_base::eofbit; |
| 2498 | } |
| 2499 | |
| 2500 | // time_get end primatives |
| 2501 | |
| 2502 | template <class _CharT, class _InputIterator> |
| 2503 | _InputIterator |
| 2504 | time_get<_CharT, _InputIterator>::get(iter_type __b, iter_type __e, |
| 2505 | ios_base& __iob, |
| 2506 | ios_base::iostate& __err, tm* __tm, |
| 2507 | const char_type* __fmtb, const char_type* __fmte) const |
| 2508 | { |
| 2509 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__iob.getloc()); |
| 2510 | __err = ios_base::goodbit; |
| 2511 | while (__fmtb != __fmte && __err == ios_base::goodbit) |
| 2512 | { |
| 2513 | if (__b == __e) |
| 2514 | { |
| 2515 | __err = ios_base::failbit; |
| 2516 | break; |
| 2517 | } |
| 2518 | if (__ct.narrow(*__fmtb, 0) == '%') |
| 2519 | { |
| 2520 | if (++__fmtb == __fmte) |
| 2521 | { |
| 2522 | __err = ios_base::failbit; |
| 2523 | break; |
| 2524 | } |
| 2525 | char __cmd = __ct.narrow(*__fmtb, 0); |
| 2526 | char __opt = '\0'; |
| 2527 | if (__cmd == 'E' || __cmd == '0') |
| 2528 | { |
| 2529 | if (++__fmtb == __fmte) |
| 2530 | { |
| 2531 | __err = ios_base::failbit; |
| 2532 | break; |
| 2533 | } |
| 2534 | __opt = __cmd; |
| 2535 | __cmd = __ct.narrow(*__fmtb, 0); |
| 2536 | } |
| 2537 | __b = do_get(__b, __e, __iob, __err, __tm, __cmd, __opt); |
| 2538 | ++__fmtb; |
| 2539 | } |
| 2540 | else if (__ct.is(ctype_base::space, *__fmtb)) |
| 2541 | { |
| 2542 | for (++__fmtb; __fmtb != __fmte && __ct.is(ctype_base::space, *__fmtb); ++__fmtb) |
| 2543 | ; |
| 2544 | for ( ; __b != __e && __ct.is(ctype_base::space, *__b); ++__b) |
| 2545 | ; |
| 2546 | } |
| 2547 | else if (__ct.toupper(*__b) == __ct.toupper(*__fmtb)) |
| 2548 | { |
| 2549 | ++__b; |
| 2550 | ++__fmtb; |
| 2551 | } |
| 2552 | else |
| 2553 | __err = ios_base::failbit; |
| 2554 | } |
| 2555 | if (__b == __e) |
| 2556 | __err |= ios_base::eofbit; |
| 2557 | return __b; |
| 2558 | } |
| 2559 | |
| 2560 | template <class _CharT, class _InputIterator> |
| 2561 | typename time_get<_CharT, _InputIterator>::dateorder |
| 2562 | time_get<_CharT, _InputIterator>::do_date_order() const |
| 2563 | { |
| 2564 | return mdy; |
| 2565 | } |
| 2566 | |
| 2567 | template <class _CharT, class _InputIterator> |
| 2568 | _InputIterator |
| 2569 | time_get<_CharT, _InputIterator>::do_get_time(iter_type __b, iter_type __e, |
| 2570 | ios_base& __iob, |
| 2571 | ios_base::iostate& __err, |
| 2572 | tm* __tm) const |
| 2573 | { |
| 2574 | const char_type __fmt[] = {'%', 'H', ':', '%', 'M', ':', '%', 'S'}; |
| 2575 | return get(__b, __e, __iob, __err, __tm, __fmt, __fmt + sizeof(__fmt)/sizeof(__fmt[0])); |
| 2576 | } |
| 2577 | |
| 2578 | template <class _CharT, class _InputIterator> |
| 2579 | _InputIterator |
| 2580 | time_get<_CharT, _InputIterator>::do_get_date(iter_type __b, iter_type __e, |
| 2581 | ios_base& __iob, |
| 2582 | ios_base::iostate& __err, |
| 2583 | tm* __tm) const |
| 2584 | { |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2585 | const string_type& __fmt = this->__x(); |
| 2586 | return get(__b, __e, __iob, __err, __tm, __fmt.data(), __fmt.data() + __fmt.size()); |
| 2587 | } |
| 2588 | |
| 2589 | template <class _CharT, class _InputIterator> |
| 2590 | _InputIterator |
| 2591 | time_get<_CharT, _InputIterator>::do_get_weekday(iter_type __b, iter_type __e, |
| 2592 | ios_base& __iob, |
| 2593 | ios_base::iostate& __err, |
| 2594 | tm* __tm) const |
| 2595 | { |
| 2596 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__iob.getloc()); |
| 2597 | __get_weekdayname(__tm->tm_wday, __b, __e, __err, __ct); |
| 2598 | return __b; |
| 2599 | } |
| 2600 | |
| 2601 | template <class _CharT, class _InputIterator> |
| 2602 | _InputIterator |
| 2603 | time_get<_CharT, _InputIterator>::do_get_monthname(iter_type __b, iter_type __e, |
| 2604 | ios_base& __iob, |
| 2605 | ios_base::iostate& __err, |
| 2606 | tm* __tm) const |
| 2607 | { |
| 2608 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__iob.getloc()); |
| 2609 | __get_monthname(__tm->tm_mon, __b, __e, __err, __ct); |
| 2610 | return __b; |
| 2611 | } |
| 2612 | |
| 2613 | template <class _CharT, class _InputIterator> |
| 2614 | _InputIterator |
| 2615 | time_get<_CharT, _InputIterator>::do_get_year(iter_type __b, iter_type __e, |
| 2616 | ios_base& __iob, |
| 2617 | ios_base::iostate& __err, |
| 2618 | tm* __tm) const |
| 2619 | { |
| 2620 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__iob.getloc()); |
| 2621 | __get_year(__tm->tm_year, __b, __e, __err, __ct); |
| 2622 | return __b; |
| 2623 | } |
| 2624 | |
| 2625 | template <class _CharT, class _InputIterator> |
| 2626 | _InputIterator |
| 2627 | time_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 2628 | ios_base& __iob, |
| 2629 | ios_base::iostate& __err, tm* __tm, |
| 2630 | char __fmt, char) const |
| 2631 | { |
| 2632 | __err = ios_base::goodbit; |
| 2633 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__iob.getloc()); |
| 2634 | switch (__fmt) |
| 2635 | { |
| 2636 | case 'a': |
| 2637 | case 'A': |
| 2638 | __get_weekdayname(__tm->tm_wday, __b, __e, __err, __ct); |
| 2639 | break; |
| 2640 | case 'b': |
| 2641 | case 'B': |
| 2642 | case 'h': |
| 2643 | __get_monthname(__tm->tm_mon, __b, __e, __err, __ct); |
| 2644 | break; |
| 2645 | case 'c': |
| 2646 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2647 | const string_type& __fm = this->__c(); |
| 2648 | __b = get(__b, __e, __iob, __err, __tm, __fm.data(), __fm.data() + __fm.size()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2649 | } |
| 2650 | break; |
| 2651 | case 'd': |
| 2652 | case 'e': |
| 2653 | __get_day(__tm->tm_mday, __b, __e, __err, __ct); |
| 2654 | break; |
| 2655 | case 'D': |
| 2656 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2657 | const char_type __fm[] = {'%', 'm', '/', '%', 'd', '/', '%', 'y'}; |
| 2658 | __b = get(__b, __e, __iob, __err, __tm, __fm, __fm + sizeof(__fm)/sizeof(__fm[0])); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2659 | } |
| 2660 | break; |
Howard Hinnant | 506b364 | 2011-04-10 17:54:14 +0000 | [diff] [blame] | 2661 | case 'F': |
| 2662 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2663 | const char_type __fm[] = {'%', 'Y', '-', '%', 'm', '-', '%', 'd'}; |
| 2664 | __b = get(__b, __e, __iob, __err, __tm, __fm, __fm + sizeof(__fm)/sizeof(__fm[0])); |
Howard Hinnant | 506b364 | 2011-04-10 17:54:14 +0000 | [diff] [blame] | 2665 | } |
| 2666 | break; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2667 | case 'H': |
| 2668 | __get_hour(__tm->tm_hour, __b, __e, __err, __ct); |
| 2669 | break; |
| 2670 | case 'I': |
| 2671 | __get_12_hour(__tm->tm_hour, __b, __e, __err, __ct); |
| 2672 | break; |
| 2673 | case 'j': |
| 2674 | __get_day_year_num(__tm->tm_yday, __b, __e, __err, __ct); |
| 2675 | break; |
| 2676 | case 'm': |
| 2677 | __get_month(__tm->tm_mon, __b, __e, __err, __ct); |
| 2678 | break; |
| 2679 | case 'M': |
| 2680 | __get_minute(__tm->tm_min, __b, __e, __err, __ct); |
| 2681 | break; |
| 2682 | case 'n': |
| 2683 | case 't': |
| 2684 | __get_white_space(__b, __e, __err, __ct); |
| 2685 | break; |
| 2686 | case 'p': |
| 2687 | __get_am_pm(__tm->tm_hour, __b, __e, __err, __ct); |
| 2688 | break; |
| 2689 | case 'r': |
| 2690 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2691 | const char_type __fm[] = {'%', 'I', ':', '%', 'M', ':', '%', 'S', ' ', '%', 'p'}; |
| 2692 | __b = get(__b, __e, __iob, __err, __tm, __fm, __fm + sizeof(__fm)/sizeof(__fm[0])); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2693 | } |
| 2694 | break; |
| 2695 | case 'R': |
| 2696 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2697 | const char_type __fm[] = {'%', 'H', ':', '%', 'M'}; |
| 2698 | __b = get(__b, __e, __iob, __err, __tm, __fm, __fm + sizeof(__fm)/sizeof(__fm[0])); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2699 | } |
| 2700 | break; |
| 2701 | case 'S': |
| 2702 | __get_second(__tm->tm_sec, __b, __e, __err, __ct); |
| 2703 | break; |
| 2704 | case 'T': |
| 2705 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2706 | const char_type __fm[] = {'%', 'H', ':', '%', 'M', ':', '%', 'S'}; |
| 2707 | __b = get(__b, __e, __iob, __err, __tm, __fm, __fm + sizeof(__fm)/sizeof(__fm[0])); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2708 | } |
| 2709 | break; |
| 2710 | case 'w': |
| 2711 | __get_weekday(__tm->tm_wday, __b, __e, __err, __ct); |
| 2712 | break; |
| 2713 | case 'x': |
| 2714 | return do_get_date(__b, __e, __iob, __err, __tm); |
| 2715 | case 'X': |
| 2716 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2717 | const string_type& __fm = this->__X(); |
| 2718 | __b = get(__b, __e, __iob, __err, __tm, __fm.data(), __fm.data() + __fm.size()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2719 | } |
| 2720 | break; |
| 2721 | case 'y': |
| 2722 | __get_year(__tm->tm_year, __b, __e, __err, __ct); |
| 2723 | break; |
| 2724 | case 'Y': |
| 2725 | __get_year4(__tm->tm_year, __b, __e, __err, __ct); |
| 2726 | break; |
| 2727 | case '%': |
| 2728 | __get_percent(__b, __e, __err, __ct); |
| 2729 | break; |
| 2730 | default: |
| 2731 | __err |= ios_base::failbit; |
| 2732 | } |
| 2733 | return __b; |
| 2734 | } |
| 2735 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2736 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS time_get<char>) |
| 2737 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS time_get<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2738 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2739 | class _LIBCPP_TYPE_VIS __time_get |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2740 | { |
| 2741 | protected: |
| 2742 | locale_t __loc_; |
| 2743 | |
| 2744 | __time_get(const char* __nm); |
| 2745 | __time_get(const string& __nm); |
| 2746 | ~__time_get(); |
| 2747 | }; |
| 2748 | |
| 2749 | template <class _CharT> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2750 | class _LIBCPP_TYPE_VIS __time_get_storage |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2751 | : public __time_get |
| 2752 | { |
| 2753 | protected: |
| 2754 | typedef basic_string<_CharT> string_type; |
| 2755 | |
| 2756 | string_type __weeks_[14]; |
| 2757 | string_type __months_[24]; |
| 2758 | string_type __am_pm_[2]; |
| 2759 | string_type __c_; |
| 2760 | string_type __r_; |
| 2761 | string_type __x_; |
| 2762 | string_type __X_; |
| 2763 | |
| 2764 | explicit __time_get_storage(const char* __nm); |
| 2765 | explicit __time_get_storage(const string& __nm); |
| 2766 | |
| 2767 | _LIBCPP_ALWAYS_INLINE ~__time_get_storage() {} |
| 2768 | |
| 2769 | time_base::dateorder __do_date_order() const; |
| 2770 | |
| 2771 | private: |
| 2772 | void init(const ctype<_CharT>&); |
| 2773 | string_type __analyze(char __fmt, const ctype<_CharT>&); |
| 2774 | }; |
| 2775 | |
| 2776 | template <class _CharT, class _InputIterator = istreambuf_iterator<_CharT> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2777 | class _LIBCPP_TYPE_VIS_ONLY time_get_byname |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2778 | : public time_get<_CharT, _InputIterator>, |
| 2779 | private __time_get_storage<_CharT> |
| 2780 | { |
| 2781 | public: |
| 2782 | typedef time_base::dateorder dateorder; |
| 2783 | typedef _InputIterator iter_type; |
| 2784 | typedef _CharT char_type; |
| 2785 | typedef basic_string<char_type> string_type; |
| 2786 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2787 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2788 | explicit time_get_byname(const char* __nm, size_t __refs = 0) |
| 2789 | : time_get<_CharT, _InputIterator>(__refs), |
| 2790 | __time_get_storage<_CharT>(__nm) {} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2791 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2792 | explicit time_get_byname(const string& __nm, size_t __refs = 0) |
| 2793 | : time_get<_CharT, _InputIterator>(__refs), |
| 2794 | __time_get_storage<_CharT>(__nm) {} |
| 2795 | |
| 2796 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2797 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2798 | ~time_get_byname() {} |
| 2799 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2800 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2801 | virtual dateorder do_date_order() const {return this->__do_date_order();} |
| 2802 | private: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2803 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2804 | virtual const string_type* __weeks() const {return this->__weeks_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2805 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2806 | virtual const string_type* __months() const {return this->__months_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2807 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2808 | virtual const string_type* __am_pm() const {return this->__am_pm_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2809 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2810 | virtual const string_type& __c() const {return this->__c_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2811 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2812 | virtual const string_type& __r() const {return this->__r_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2813 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2814 | virtual const string_type& __x() const {return this->__x_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2815 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2816 | virtual const string_type& __X() const {return this->__X_;} |
| 2817 | }; |
| 2818 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2819 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS time_get_byname<char>) |
| 2820 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS time_get_byname<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2821 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2822 | class _LIBCPP_TYPE_VIS __time_put |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2823 | { |
| 2824 | locale_t __loc_; |
| 2825 | protected: |
Howard Hinnant | 2ea1ca9 | 2011-09-28 21:05:01 +0000 | [diff] [blame] | 2826 | _LIBCPP_ALWAYS_INLINE __time_put() : __loc_(_LIBCPP_GET_C_LOCALE) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2827 | __time_put(const char* __nm); |
| 2828 | __time_put(const string& __nm); |
| 2829 | ~__time_put(); |
| 2830 | void __do_put(char* __nb, char*& __ne, const tm* __tm, |
| 2831 | char __fmt, char __mod) const; |
| 2832 | void __do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, |
| 2833 | char __fmt, char __mod) const; |
| 2834 | }; |
| 2835 | |
| 2836 | template <class _CharT, class _OutputIterator = ostreambuf_iterator<_CharT> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2837 | class _LIBCPP_TYPE_VIS_ONLY time_put |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2838 | : public locale::facet, |
| 2839 | private __time_put |
| 2840 | { |
| 2841 | public: |
| 2842 | typedef _CharT char_type; |
| 2843 | typedef _OutputIterator iter_type; |
| 2844 | |
| 2845 | _LIBCPP_ALWAYS_INLINE |
| 2846 | explicit time_put(size_t __refs = 0) |
| 2847 | : locale::facet(__refs) {} |
| 2848 | |
| 2849 | iter_type put(iter_type __s, ios_base& __iob, char_type __fl, const tm* __tm, |
| 2850 | const char_type* __pb, const char_type* __pe) const; |
| 2851 | |
| 2852 | _LIBCPP_ALWAYS_INLINE |
| 2853 | iter_type put(iter_type __s, ios_base& __iob, char_type __fl, |
| 2854 | const tm* __tm, char __fmt, char __mod = 0) const |
| 2855 | { |
| 2856 | return do_put(__s, __iob, __fl, __tm, __fmt, __mod); |
| 2857 | } |
| 2858 | |
| 2859 | static locale::id id; |
| 2860 | |
| 2861 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2862 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2863 | ~time_put() {} |
| 2864 | virtual iter_type do_put(iter_type __s, ios_base&, char_type, const tm* __tm, |
| 2865 | char __fmt, char __mod) const; |
| 2866 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2867 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2868 | explicit time_put(const char* __nm, size_t __refs) |
| 2869 | : locale::facet(__refs), |
| 2870 | __time_put(__nm) {} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2871 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2872 | explicit time_put(const string& __nm, size_t __refs) |
| 2873 | : locale::facet(__refs), |
| 2874 | __time_put(__nm) {} |
| 2875 | }; |
| 2876 | |
| 2877 | template <class _CharT, class _OutputIterator> |
| 2878 | locale::id |
| 2879 | time_put<_CharT, _OutputIterator>::id; |
| 2880 | |
| 2881 | template <class _CharT, class _OutputIterator> |
| 2882 | _OutputIterator |
| 2883 | time_put<_CharT, _OutputIterator>::put(iter_type __s, ios_base& __iob, |
| 2884 | char_type __fl, const tm* __tm, |
| 2885 | const char_type* __pb, |
| 2886 | const char_type* __pe) const |
| 2887 | { |
| 2888 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__iob.getloc()); |
| 2889 | for (; __pb != __pe; ++__pb) |
| 2890 | { |
| 2891 | if (__ct.narrow(*__pb, 0) == '%') |
| 2892 | { |
| 2893 | if (++__pb == __pe) |
| 2894 | { |
| 2895 | *__s++ = __pb[-1]; |
| 2896 | break; |
| 2897 | } |
| 2898 | char __mod = 0; |
| 2899 | char __fmt = __ct.narrow(*__pb, 0); |
| 2900 | if (__fmt == 'E' || __fmt == 'O') |
| 2901 | { |
| 2902 | if (++__pb == __pe) |
| 2903 | { |
| 2904 | *__s++ = __pb[-2]; |
| 2905 | *__s++ = __pb[-1]; |
| 2906 | break; |
| 2907 | } |
| 2908 | __mod = __fmt; |
| 2909 | __fmt = __ct.narrow(*__pb, 0); |
| 2910 | } |
| 2911 | __s = do_put(__s, __iob, __fl, __tm, __fmt, __mod); |
| 2912 | } |
| 2913 | else |
| 2914 | *__s++ = *__pb; |
| 2915 | } |
| 2916 | return __s; |
| 2917 | } |
| 2918 | |
| 2919 | template <class _CharT, class _OutputIterator> |
| 2920 | _OutputIterator |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2921 | time_put<_CharT, _OutputIterator>::do_put(iter_type __s, ios_base&, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2922 | char_type, const tm* __tm, |
| 2923 | char __fmt, char __mod) const |
| 2924 | { |
| 2925 | char_type __nar[100]; |
| 2926 | char_type* __nb = __nar; |
| 2927 | char_type* __ne = __nb + 100; |
| 2928 | __do_put(__nb, __ne, __tm, __fmt, __mod); |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2929 | return _VSTD::copy(__nb, __ne, __s); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2930 | } |
| 2931 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2932 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS time_put<char>) |
| 2933 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS time_put<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2934 | |
| 2935 | template <class _CharT, class _OutputIterator = ostreambuf_iterator<_CharT> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2936 | class _LIBCPP_TYPE_VIS_ONLY time_put_byname |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2937 | : public time_put<_CharT, _OutputIterator> |
| 2938 | { |
| 2939 | public: |
| 2940 | _LIBCPP_ALWAYS_INLINE |
| 2941 | explicit time_put_byname(const char* __nm, size_t __refs = 0) |
| 2942 | : time_put<_CharT, _OutputIterator>(__nm, __refs) {} |
| 2943 | |
| 2944 | _LIBCPP_ALWAYS_INLINE |
| 2945 | explicit time_put_byname(const string& __nm, size_t __refs = 0) |
| 2946 | : time_put<_CharT, _OutputIterator>(__nm, __refs) {} |
| 2947 | |
| 2948 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2949 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2950 | ~time_put_byname() {} |
| 2951 | }; |
| 2952 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2953 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS time_put_byname<char>) |
| 2954 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS time_put_byname<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2955 | |
| 2956 | // money_base |
| 2957 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 2958 | class _LIBCPP_TYPE_VIS money_base |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2959 | { |
| 2960 | public: |
| 2961 | enum part {none, space, symbol, sign, value}; |
| 2962 | struct pattern {char field[4];}; |
| 2963 | |
| 2964 | _LIBCPP_ALWAYS_INLINE money_base() {} |
| 2965 | }; |
| 2966 | |
| 2967 | // moneypunct |
| 2968 | |
| 2969 | template <class _CharT, bool _International = false> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 2970 | class _LIBCPP_TYPE_VIS_ONLY moneypunct |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2971 | : public locale::facet, |
| 2972 | public money_base |
| 2973 | { |
| 2974 | public: |
| 2975 | typedef _CharT char_type; |
| 2976 | typedef basic_string<char_type> string_type; |
| 2977 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2978 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2979 | explicit moneypunct(size_t __refs = 0) |
| 2980 | : locale::facet(__refs) {} |
| 2981 | |
| 2982 | _LIBCPP_ALWAYS_INLINE char_type decimal_point() const {return do_decimal_point();} |
| 2983 | _LIBCPP_ALWAYS_INLINE char_type thousands_sep() const {return do_thousands_sep();} |
| 2984 | _LIBCPP_ALWAYS_INLINE string grouping() const {return do_grouping();} |
| 2985 | _LIBCPP_ALWAYS_INLINE string_type curr_symbol() const {return do_curr_symbol();} |
| 2986 | _LIBCPP_ALWAYS_INLINE string_type positive_sign() const {return do_positive_sign();} |
| 2987 | _LIBCPP_ALWAYS_INLINE string_type negative_sign() const {return do_negative_sign();} |
| 2988 | _LIBCPP_ALWAYS_INLINE int frac_digits() const {return do_frac_digits();} |
| 2989 | _LIBCPP_ALWAYS_INLINE pattern pos_format() const {return do_pos_format();} |
| 2990 | _LIBCPP_ALWAYS_INLINE pattern neg_format() const {return do_neg_format();} |
| 2991 | |
| 2992 | static locale::id id; |
| 2993 | static const bool intl = _International; |
| 2994 | |
| 2995 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 2996 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2997 | ~moneypunct() {} |
| 2998 | |
| 2999 | virtual char_type do_decimal_point() const {return numeric_limits<char_type>::max();} |
| 3000 | virtual char_type do_thousands_sep() const {return numeric_limits<char_type>::max();} |
| 3001 | virtual string do_grouping() const {return string();} |
| 3002 | virtual string_type do_curr_symbol() const {return string_type();} |
| 3003 | virtual string_type do_positive_sign() const {return string_type();} |
| 3004 | virtual string_type do_negative_sign() const {return string_type(1, '-');} |
| 3005 | virtual int do_frac_digits() const {return 0;} |
| 3006 | virtual pattern do_pos_format() const |
Howard Hinnant | 9bae2a9 | 2012-11-06 21:48:33 +0000 | [diff] [blame] | 3007 | {pattern __p = {{symbol, sign, none, value}}; return __p;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3008 | virtual pattern do_neg_format() const |
Howard Hinnant | 9bae2a9 | 2012-11-06 21:48:33 +0000 | [diff] [blame] | 3009 | {pattern __p = {{symbol, sign, none, value}}; return __p;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3010 | }; |
| 3011 | |
| 3012 | template <class _CharT, bool _International> |
| 3013 | locale::id |
| 3014 | moneypunct<_CharT, _International>::id; |
| 3015 | |
Howard Hinnant | 0a69fa1 | 2012-12-12 21:14:28 +0000 | [diff] [blame] | 3016 | template <class _CharT, bool _International> |
| 3017 | const bool |
| 3018 | moneypunct<_CharT, _International>::intl; |
| 3019 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3020 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS moneypunct<char, false>) |
| 3021 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS moneypunct<char, true>) |
| 3022 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS moneypunct<wchar_t, false>) |
| 3023 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS moneypunct<wchar_t, true>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3024 | |
| 3025 | // moneypunct_byname |
| 3026 | |
| 3027 | template <class _CharT, bool _International = false> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3028 | class _LIBCPP_TYPE_VIS_ONLY moneypunct_byname |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3029 | : public moneypunct<_CharT, _International> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3030 | { |
| 3031 | public: |
| 3032 | typedef money_base::pattern pattern; |
| 3033 | typedef _CharT char_type; |
| 3034 | typedef basic_string<char_type> string_type; |
| 3035 | |
| 3036 | _LIBCPP_ALWAYS_INLINE |
| 3037 | explicit moneypunct_byname(const char* __nm, size_t __refs = 0) |
| 3038 | : moneypunct<_CharT, _International>(__refs) {init(__nm);} |
| 3039 | |
| 3040 | _LIBCPP_ALWAYS_INLINE |
| 3041 | explicit moneypunct_byname(const string& __nm, size_t __refs = 0) |
| 3042 | : moneypunct<_CharT, _International>(__refs) {init(__nm.c_str());} |
| 3043 | |
| 3044 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3045 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3046 | ~moneypunct_byname() {} |
| 3047 | |
| 3048 | virtual char_type do_decimal_point() const {return __decimal_point_;} |
| 3049 | virtual char_type do_thousands_sep() const {return __thousands_sep_;} |
| 3050 | virtual string do_grouping() const {return __grouping_;} |
| 3051 | virtual string_type do_curr_symbol() const {return __curr_symbol_;} |
| 3052 | virtual string_type do_positive_sign() const {return __positive_sign_;} |
| 3053 | virtual string_type do_negative_sign() const {return __negative_sign_;} |
| 3054 | virtual int do_frac_digits() const {return __frac_digits_;} |
| 3055 | virtual pattern do_pos_format() const {return __pos_format_;} |
| 3056 | virtual pattern do_neg_format() const {return __neg_format_;} |
| 3057 | |
| 3058 | private: |
| 3059 | char_type __decimal_point_; |
| 3060 | char_type __thousands_sep_; |
| 3061 | string __grouping_; |
| 3062 | string_type __curr_symbol_; |
| 3063 | string_type __positive_sign_; |
| 3064 | string_type __negative_sign_; |
| 3065 | int __frac_digits_; |
| 3066 | pattern __pos_format_; |
| 3067 | pattern __neg_format_; |
| 3068 | |
| 3069 | void init(const char*); |
| 3070 | }; |
| 3071 | |
| 3072 | template<> void moneypunct_byname<char, false>::init(const char*); |
| 3073 | template<> void moneypunct_byname<char, true>::init(const char*); |
| 3074 | template<> void moneypunct_byname<wchar_t, false>::init(const char*); |
| 3075 | template<> void moneypunct_byname<wchar_t, true>::init(const char*); |
| 3076 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3077 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS moneypunct_byname<char, false>) |
| 3078 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS moneypunct_byname<char, true>) |
| 3079 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS moneypunct_byname<wchar_t, false>) |
| 3080 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS moneypunct_byname<wchar_t, true>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3081 | |
| 3082 | // money_get |
| 3083 | |
| 3084 | template <class _CharT> |
| 3085 | class __money_get |
| 3086 | { |
| 3087 | protected: |
| 3088 | typedef _CharT char_type; |
| 3089 | typedef basic_string<char_type> string_type; |
| 3090 | |
| 3091 | _LIBCPP_ALWAYS_INLINE __money_get() {} |
| 3092 | |
| 3093 | static void __gather_info(bool __intl, const locale& __loc, |
| 3094 | money_base::pattern& __pat, char_type& __dp, |
| 3095 | char_type& __ts, string& __grp, |
| 3096 | string_type& __sym, string_type& __psn, |
| 3097 | string_type& __nsn, int& __fd); |
| 3098 | }; |
| 3099 | |
| 3100 | template <class _CharT> |
| 3101 | void |
| 3102 | __money_get<_CharT>::__gather_info(bool __intl, const locale& __loc, |
| 3103 | money_base::pattern& __pat, char_type& __dp, |
| 3104 | char_type& __ts, string& __grp, |
| 3105 | string_type& __sym, string_type& __psn, |
| 3106 | string_type& __nsn, int& __fd) |
| 3107 | { |
| 3108 | if (__intl) |
| 3109 | { |
| 3110 | const moneypunct<char_type, true>& __mp = |
| 3111 | use_facet<moneypunct<char_type, true> >(__loc); |
| 3112 | __pat = __mp.neg_format(); |
| 3113 | __nsn = __mp.negative_sign(); |
| 3114 | __psn = __mp.positive_sign(); |
| 3115 | __dp = __mp.decimal_point(); |
| 3116 | __ts = __mp.thousands_sep(); |
| 3117 | __grp = __mp.grouping(); |
| 3118 | __sym = __mp.curr_symbol(); |
| 3119 | __fd = __mp.frac_digits(); |
| 3120 | } |
| 3121 | else |
| 3122 | { |
| 3123 | const moneypunct<char_type, false>& __mp = |
| 3124 | use_facet<moneypunct<char_type, false> >(__loc); |
| 3125 | __pat = __mp.neg_format(); |
| 3126 | __nsn = __mp.negative_sign(); |
| 3127 | __psn = __mp.positive_sign(); |
| 3128 | __dp = __mp.decimal_point(); |
| 3129 | __ts = __mp.thousands_sep(); |
| 3130 | __grp = __mp.grouping(); |
| 3131 | __sym = __mp.curr_symbol(); |
| 3132 | __fd = __mp.frac_digits(); |
| 3133 | } |
| 3134 | } |
| 3135 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3136 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS __money_get<char>) |
| 3137 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS __money_get<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3138 | |
| 3139 | template <class _CharT, class _InputIterator = istreambuf_iterator<_CharT> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3140 | class _LIBCPP_TYPE_VIS_ONLY money_get |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3141 | : public locale::facet, |
| 3142 | private __money_get<_CharT> |
| 3143 | { |
| 3144 | public: |
| 3145 | typedef _CharT char_type; |
| 3146 | typedef _InputIterator iter_type; |
| 3147 | typedef basic_string<char_type> string_type; |
| 3148 | |
| 3149 | _LIBCPP_ALWAYS_INLINE |
| 3150 | explicit money_get(size_t __refs = 0) |
| 3151 | : locale::facet(__refs) {} |
| 3152 | |
| 3153 | _LIBCPP_ALWAYS_INLINE |
| 3154 | iter_type get(iter_type __b, iter_type __e, bool __intl, ios_base& __iob, |
| 3155 | ios_base::iostate& __err, long double& __v) const |
| 3156 | { |
| 3157 | return do_get(__b, __e, __intl, __iob, __err, __v); |
| 3158 | } |
| 3159 | |
| 3160 | _LIBCPP_ALWAYS_INLINE |
| 3161 | iter_type get(iter_type __b, iter_type __e, bool __intl, ios_base& __iob, |
| 3162 | ios_base::iostate& __err, string_type& __v) const |
| 3163 | { |
| 3164 | return do_get(__b, __e, __intl, __iob, __err, __v); |
| 3165 | } |
| 3166 | |
| 3167 | static locale::id id; |
| 3168 | |
| 3169 | protected: |
| 3170 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3171 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3172 | ~money_get() {} |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 3173 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3174 | virtual iter_type do_get(iter_type __b, iter_type __e, bool __intl, |
| 3175 | ios_base& __iob, ios_base::iostate& __err, |
| 3176 | long double& __v) const; |
| 3177 | virtual iter_type do_get(iter_type __b, iter_type __e, bool __intl, |
| 3178 | ios_base& __iob, ios_base::iostate& __err, |
| 3179 | string_type& __v) const; |
| 3180 | |
| 3181 | private: |
| 3182 | static bool __do_get(iter_type& __b, iter_type __e, |
| 3183 | bool __intl, const locale& __loc, |
| 3184 | ios_base::fmtflags __flags, ios_base::iostate& __err, |
| 3185 | bool& __neg, const ctype<char_type>& __ct, |
| 3186 | unique_ptr<char_type, void(*)(void*)>& __wb, |
| 3187 | char_type*& __wn, char_type* __we); |
| 3188 | }; |
| 3189 | |
| 3190 | template <class _CharT, class _InputIterator> |
| 3191 | locale::id |
| 3192 | money_get<_CharT, _InputIterator>::id; |
| 3193 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3194 | _LIBCPP_FUNC_VIS void __do_nothing(void*); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3195 | |
| 3196 | template <class _Tp> |
| 3197 | _LIBCPP_HIDDEN |
| 3198 | void |
| 3199 | __double_or_nothing(unique_ptr<_Tp, void(*)(void*)>& __b, _Tp*& __n, _Tp*& __e) |
| 3200 | { |
| 3201 | bool __owns = __b.get_deleter() != __do_nothing; |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 3202 | size_t __cur_cap = static_cast<size_t>(__e-__b.get()) * sizeof(_Tp); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3203 | size_t __new_cap = __cur_cap < numeric_limits<size_t>::max() / 2 ? |
| 3204 | 2 * __cur_cap : numeric_limits<size_t>::max(); |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 3205 | size_t __n_off = static_cast<size_t>(__n - __b.get()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3206 | _Tp* __t = (_Tp*)realloc(__owns ? __b.get() : 0, __new_cap); |
| 3207 | if (__t == 0) |
| 3208 | __throw_bad_alloc(); |
| 3209 | if (__owns) |
| 3210 | __b.release(); |
| 3211 | __b = unique_ptr<_Tp, void(*)(void*)>(__t, free); |
| 3212 | __new_cap /= sizeof(_Tp); |
| 3213 | __n = __b.get() + __n_off; |
| 3214 | __e = __b.get() + __new_cap; |
| 3215 | } |
| 3216 | |
| 3217 | // true == success |
| 3218 | template <class _CharT, class _InputIterator> |
| 3219 | bool |
| 3220 | money_get<_CharT, _InputIterator>::__do_get(iter_type& __b, iter_type __e, |
| 3221 | bool __intl, const locale& __loc, |
| 3222 | ios_base::fmtflags __flags, |
| 3223 | ios_base::iostate& __err, |
| 3224 | bool& __neg, |
| 3225 | const ctype<char_type>& __ct, |
| 3226 | unique_ptr<char_type, void(*)(void*)>& __wb, |
| 3227 | char_type*& __wn, char_type* __we) |
| 3228 | { |
| 3229 | const unsigned __bz = 100; |
| 3230 | unsigned __gbuf[__bz]; |
| 3231 | unique_ptr<unsigned, void(*)(void*)> __gb(__gbuf, __do_nothing); |
| 3232 | unsigned* __gn = __gb.get(); |
| 3233 | unsigned* __ge = __gn + __bz; |
| 3234 | money_base::pattern __pat; |
| 3235 | char_type __dp; |
| 3236 | char_type __ts; |
| 3237 | string __grp; |
| 3238 | string_type __sym; |
| 3239 | string_type __psn; |
| 3240 | string_type __nsn; |
Jeffrey Yasskin | 558ae17 | 2012-03-10 18:31:43 +0000 | [diff] [blame] | 3241 | // Capture the spaces read into money_base::{space,none} so they |
| 3242 | // can be compared to initial spaces in __sym. |
| 3243 | string_type __spaces; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3244 | int __fd; |
| 3245 | __money_get<_CharT>::__gather_info(__intl, __loc, __pat, __dp, __ts, __grp, |
| 3246 | __sym, __psn, __nsn, __fd); |
| 3247 | const string_type* __trailing_sign = 0; |
| 3248 | __wn = __wb.get(); |
| 3249 | for (unsigned __p = 0; __p < 4 && __b != __e; ++__p) |
| 3250 | { |
| 3251 | switch (__pat.field[__p]) |
| 3252 | { |
| 3253 | case money_base::space: |
| 3254 | if (__p != 3) |
| 3255 | { |
| 3256 | if (__ct.is(ctype_base::space, *__b)) |
Jeffrey Yasskin | 558ae17 | 2012-03-10 18:31:43 +0000 | [diff] [blame] | 3257 | __spaces.push_back(*__b++); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3258 | else |
| 3259 | { |
| 3260 | __err |= ios_base::failbit; |
| 3261 | return false; |
| 3262 | } |
| 3263 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 3264 | // drop through |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3265 | case money_base::none: |
| 3266 | if (__p != 3) |
| 3267 | { |
| 3268 | while (__b != __e && __ct.is(ctype_base::space, *__b)) |
Jeffrey Yasskin | 558ae17 | 2012-03-10 18:31:43 +0000 | [diff] [blame] | 3269 | __spaces.push_back(*__b++); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3270 | } |
| 3271 | break; |
| 3272 | case money_base::sign: |
| 3273 | if (__psn.size() + __nsn.size() > 0) |
| 3274 | { |
| 3275 | if (__psn.size() == 0 || __nsn.size() == 0) |
| 3276 | { // sign is optional |
| 3277 | if (__psn.size() > 0) |
| 3278 | { // __nsn.size() == 0 |
| 3279 | if (*__b == __psn[0]) |
| 3280 | { |
| 3281 | ++__b; |
| 3282 | if (__psn.size() > 1) |
| 3283 | __trailing_sign = &__psn; |
| 3284 | } |
| 3285 | else |
| 3286 | __neg = true; |
| 3287 | } |
| 3288 | else if (*__b == __nsn[0]) // __nsn.size() > 0 && __psn.size() == 0 |
| 3289 | { |
| 3290 | ++__b; |
| 3291 | __neg = true; |
| 3292 | if (__nsn.size() > 1) |
| 3293 | __trailing_sign = &__nsn; |
| 3294 | } |
| 3295 | } |
| 3296 | else // sign is required |
| 3297 | { |
| 3298 | if (*__b == __psn[0]) |
| 3299 | { |
| 3300 | ++__b; |
| 3301 | if (__psn.size() > 1) |
| 3302 | __trailing_sign = &__psn; |
| 3303 | } |
| 3304 | else if (*__b == __nsn[0]) |
| 3305 | { |
| 3306 | ++__b; |
| 3307 | __neg = true; |
| 3308 | if (__nsn.size() > 1) |
| 3309 | __trailing_sign = &__nsn; |
| 3310 | } |
| 3311 | else |
| 3312 | { |
| 3313 | __err |= ios_base::failbit; |
| 3314 | return false; |
| 3315 | } |
| 3316 | } |
| 3317 | } |
| 3318 | break; |
| 3319 | case money_base::symbol: |
| 3320 | { |
| 3321 | bool __more_needed = __trailing_sign || |
| 3322 | (__p < 2) || |
| 3323 | (__p == 2 && __pat.field[3] != static_cast<char>(money_base::none)); |
| 3324 | bool __sb = __flags & ios_base::showbase; |
| 3325 | if (__sb || __more_needed) |
| 3326 | { |
Jeffrey Yasskin | 558ae17 | 2012-03-10 18:31:43 +0000 | [diff] [blame] | 3327 | typename string_type::const_iterator __sym_space_end = __sym.begin(); |
| 3328 | if (__p > 0 && (__pat.field[__p - 1] == money_base::none || |
| 3329 | __pat.field[__p - 1] == money_base::space)) { |
| 3330 | // Match spaces we've already read against spaces at |
| 3331 | // the beginning of __sym. |
| 3332 | while (__sym_space_end != __sym.end() && |
| 3333 | __ct.is(ctype_base::space, *__sym_space_end)) |
| 3334 | ++__sym_space_end; |
| 3335 | const size_t __num_spaces = __sym_space_end - __sym.begin(); |
| 3336 | if (__num_spaces > __spaces.size() || |
| 3337 | !equal(__spaces.end() - __num_spaces, __spaces.end(), |
| 3338 | __sym.begin())) { |
| 3339 | // No match. Put __sym_space_end back at the |
| 3340 | // beginning of __sym, which will prevent a |
| 3341 | // match in the next loop. |
| 3342 | __sym_space_end = __sym.begin(); |
| 3343 | } |
| 3344 | } |
| 3345 | typename string_type::const_iterator __sym_curr_char = __sym_space_end; |
| 3346 | while (__sym_curr_char != __sym.end() && __b != __e && |
| 3347 | *__b == *__sym_curr_char) { |
| 3348 | ++__b; |
| 3349 | ++__sym_curr_char; |
| 3350 | } |
| 3351 | if (__sb && __sym_curr_char != __sym.end()) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3352 | { |
| 3353 | __err |= ios_base::failbit; |
| 3354 | return false; |
| 3355 | } |
| 3356 | } |
| 3357 | } |
| 3358 | break; |
| 3359 | case money_base::value: |
| 3360 | { |
| 3361 | unsigned __ng = 0; |
| 3362 | for (; __b != __e; ++__b) |
| 3363 | { |
| 3364 | char_type __c = *__b; |
| 3365 | if (__ct.is(ctype_base::digit, __c)) |
| 3366 | { |
| 3367 | if (__wn == __we) |
| 3368 | __double_or_nothing(__wb, __wn, __we); |
| 3369 | *__wn++ = __c; |
| 3370 | ++__ng; |
| 3371 | } |
| 3372 | else if (__grp.size() > 0 && __ng > 0 && __c == __ts) |
| 3373 | { |
| 3374 | if (__gn == __ge) |
| 3375 | __double_or_nothing(__gb, __gn, __ge); |
| 3376 | *__gn++ = __ng; |
| 3377 | __ng = 0; |
| 3378 | } |
| 3379 | else |
| 3380 | break; |
| 3381 | } |
| 3382 | if (__gb.get() != __gn && __ng > 0) |
| 3383 | { |
| 3384 | if (__gn == __ge) |
| 3385 | __double_or_nothing(__gb, __gn, __ge); |
| 3386 | *__gn++ = __ng; |
| 3387 | } |
| 3388 | if (__fd > 0) |
| 3389 | { |
| 3390 | if (__b == __e || *__b != __dp) |
| 3391 | { |
| 3392 | __err |= ios_base::failbit; |
| 3393 | return false; |
| 3394 | } |
| 3395 | for (++__b; __fd > 0; --__fd, ++__b) |
| 3396 | { |
| 3397 | if (__b == __e || !__ct.is(ctype_base::digit, *__b)) |
| 3398 | { |
| 3399 | __err |= ios_base::failbit; |
| 3400 | return false; |
| 3401 | } |
| 3402 | if (__wn == __we) |
| 3403 | __double_or_nothing(__wb, __wn, __we); |
| 3404 | *__wn++ = *__b; |
| 3405 | } |
| 3406 | } |
| 3407 | if (__wn == __wb.get()) |
| 3408 | { |
| 3409 | __err |= ios_base::failbit; |
| 3410 | return false; |
| 3411 | } |
| 3412 | } |
| 3413 | break; |
| 3414 | } |
| 3415 | } |
| 3416 | if (__trailing_sign) |
| 3417 | { |
| 3418 | for (unsigned __i = 1; __i < __trailing_sign->size(); ++__i, ++__b) |
| 3419 | { |
| 3420 | if (__b == __e || *__b != (*__trailing_sign)[__i]) |
| 3421 | { |
| 3422 | __err |= ios_base::failbit; |
| 3423 | return false; |
| 3424 | } |
| 3425 | } |
| 3426 | } |
| 3427 | if (__gb.get() != __gn) |
| 3428 | { |
| 3429 | ios_base::iostate __et = ios_base::goodbit; |
| 3430 | __check_grouping(__grp, __gb.get(), __gn, __et); |
| 3431 | if (__et) |
| 3432 | { |
| 3433 | __err |= ios_base::failbit; |
| 3434 | return false; |
| 3435 | } |
| 3436 | } |
| 3437 | return true; |
| 3438 | } |
| 3439 | |
| 3440 | template <class _CharT, class _InputIterator> |
| 3441 | _InputIterator |
| 3442 | money_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 3443 | bool __intl, ios_base& __iob, |
| 3444 | ios_base::iostate& __err, |
| 3445 | long double& __v) const |
| 3446 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 3447 | const int __bz = 100; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3448 | char_type __wbuf[__bz]; |
| 3449 | unique_ptr<char_type, void(*)(void*)> __wb(__wbuf, __do_nothing); |
| 3450 | char_type* __wn; |
| 3451 | char_type* __we = __wbuf + __bz; |
| 3452 | locale __loc = __iob.getloc(); |
| 3453 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__loc); |
| 3454 | bool __neg = false; |
| 3455 | if (__do_get(__b, __e, __intl, __loc, __iob.flags(), __err, __neg, __ct, |
| 3456 | __wb, __wn, __we)) |
| 3457 | { |
| 3458 | const char __src[] = "0123456789"; |
| 3459 | char_type __atoms[sizeof(__src)-1]; |
| 3460 | __ct.widen(__src, __src + (sizeof(__src)-1), __atoms); |
| 3461 | char __nbuf[__bz]; |
| 3462 | char* __nc = __nbuf; |
| 3463 | unique_ptr<char, void(*)(void*)> __h(0, free); |
| 3464 | if (__wn - __wb.get() > __bz-2) |
| 3465 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 3466 | __h.reset((char*)malloc(static_cast<size_t>(__wn - __wb.get() + 2))); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3467 | if (__h.get() == 0) |
| 3468 | __throw_bad_alloc(); |
| 3469 | __nc = __h.get(); |
| 3470 | } |
| 3471 | if (__neg) |
| 3472 | *__nc++ = '-'; |
| 3473 | for (const char_type* __w = __wb.get(); __w < __wn; ++__w, ++__nc) |
Marshall Clow | 9b145da | 2013-03-22 02:14:40 +0000 | [diff] [blame] | 3474 | *__nc = __src[find(__atoms, _VSTD::end(__atoms), *__w) - __atoms]; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3475 | *__nc = char(); |
| 3476 | if (sscanf(__nbuf, "%Lf", &__v) != 1) |
| 3477 | __throw_runtime_error("money_get error"); |
| 3478 | } |
| 3479 | if (__b == __e) |
| 3480 | __err |= ios_base::eofbit; |
| 3481 | return __b; |
| 3482 | } |
| 3483 | |
| 3484 | template <class _CharT, class _InputIterator> |
| 3485 | _InputIterator |
| 3486 | money_get<_CharT, _InputIterator>::do_get(iter_type __b, iter_type __e, |
| 3487 | bool __intl, ios_base& __iob, |
| 3488 | ios_base::iostate& __err, |
| 3489 | string_type& __v) const |
| 3490 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 3491 | const int __bz = 100; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3492 | char_type __wbuf[__bz]; |
| 3493 | unique_ptr<char_type, void(*)(void*)> __wb(__wbuf, __do_nothing); |
| 3494 | char_type* __wn; |
| 3495 | char_type* __we = __wbuf + __bz; |
| 3496 | locale __loc = __iob.getloc(); |
| 3497 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__loc); |
| 3498 | bool __neg = false; |
| 3499 | if (__do_get(__b, __e, __intl, __loc, __iob.flags(), __err, __neg, __ct, |
| 3500 | __wb, __wn, __we)) |
| 3501 | { |
| 3502 | __v.clear(); |
| 3503 | if (__neg) |
| 3504 | __v.push_back(__ct.widen('-')); |
| 3505 | char_type __z = __ct.widen('0'); |
| 3506 | char_type* __w; |
| 3507 | for (__w = __wb.get(); __w < __wn-1; ++__w) |
| 3508 | if (*__w != __z) |
| 3509 | break; |
| 3510 | __v.append(__w, __wn); |
| 3511 | } |
| 3512 | if (__b == __e) |
| 3513 | __err |= ios_base::eofbit; |
| 3514 | return __b; |
| 3515 | } |
| 3516 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3517 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS money_get<char>) |
| 3518 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS money_get<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3519 | |
| 3520 | // money_put |
| 3521 | |
| 3522 | template <class _CharT> |
| 3523 | class __money_put |
| 3524 | { |
| 3525 | protected: |
| 3526 | typedef _CharT char_type; |
| 3527 | typedef basic_string<char_type> string_type; |
| 3528 | |
| 3529 | _LIBCPP_ALWAYS_INLINE __money_put() {} |
| 3530 | |
| 3531 | static void __gather_info(bool __intl, bool __neg, const locale& __loc, |
| 3532 | money_base::pattern& __pat, char_type& __dp, |
| 3533 | char_type& __ts, string& __grp, |
| 3534 | string_type& __sym, string_type& __sn, |
| 3535 | int& __fd); |
| 3536 | static void __format(char_type* __mb, char_type*& __mi, char_type*& __me, |
| 3537 | ios_base::fmtflags __flags, |
| 3538 | const char_type* __db, const char_type* __de, |
| 3539 | const ctype<char_type>& __ct, bool __neg, |
| 3540 | const money_base::pattern& __pat, char_type __dp, |
| 3541 | char_type __ts, const string& __grp, |
| 3542 | const string_type& __sym, const string_type& __sn, |
| 3543 | int __fd); |
| 3544 | }; |
| 3545 | |
| 3546 | template <class _CharT> |
| 3547 | void |
| 3548 | __money_put<_CharT>::__gather_info(bool __intl, bool __neg, const locale& __loc, |
| 3549 | money_base::pattern& __pat, char_type& __dp, |
| 3550 | char_type& __ts, string& __grp, |
| 3551 | string_type& __sym, string_type& __sn, |
| 3552 | int& __fd) |
| 3553 | { |
| 3554 | if (__intl) |
| 3555 | { |
| 3556 | const moneypunct<char_type, true>& __mp = |
| 3557 | use_facet<moneypunct<char_type, true> >(__loc); |
| 3558 | if (__neg) |
| 3559 | { |
| 3560 | __pat = __mp.neg_format(); |
| 3561 | __sn = __mp.negative_sign(); |
| 3562 | } |
| 3563 | else |
| 3564 | { |
| 3565 | __pat = __mp.pos_format(); |
| 3566 | __sn = __mp.positive_sign(); |
| 3567 | } |
| 3568 | __dp = __mp.decimal_point(); |
| 3569 | __ts = __mp.thousands_sep(); |
| 3570 | __grp = __mp.grouping(); |
| 3571 | __sym = __mp.curr_symbol(); |
| 3572 | __fd = __mp.frac_digits(); |
| 3573 | } |
| 3574 | else |
| 3575 | { |
| 3576 | const moneypunct<char_type, false>& __mp = |
| 3577 | use_facet<moneypunct<char_type, false> >(__loc); |
| 3578 | if (__neg) |
| 3579 | { |
| 3580 | __pat = __mp.neg_format(); |
| 3581 | __sn = __mp.negative_sign(); |
| 3582 | } |
| 3583 | else |
| 3584 | { |
| 3585 | __pat = __mp.pos_format(); |
| 3586 | __sn = __mp.positive_sign(); |
| 3587 | } |
| 3588 | __dp = __mp.decimal_point(); |
| 3589 | __ts = __mp.thousands_sep(); |
| 3590 | __grp = __mp.grouping(); |
| 3591 | __sym = __mp.curr_symbol(); |
| 3592 | __fd = __mp.frac_digits(); |
| 3593 | } |
| 3594 | } |
| 3595 | |
| 3596 | template <class _CharT> |
| 3597 | void |
| 3598 | __money_put<_CharT>::__format(char_type* __mb, char_type*& __mi, char_type*& __me, |
| 3599 | ios_base::fmtflags __flags, |
| 3600 | const char_type* __db, const char_type* __de, |
| 3601 | const ctype<char_type>& __ct, bool __neg, |
| 3602 | const money_base::pattern& __pat, char_type __dp, |
| 3603 | char_type __ts, const string& __grp, |
| 3604 | const string_type& __sym, const string_type& __sn, |
| 3605 | int __fd) |
| 3606 | { |
| 3607 | __me = __mb; |
| 3608 | for (unsigned __p = 0; __p < 4; ++__p) |
| 3609 | { |
| 3610 | switch (__pat.field[__p]) |
| 3611 | { |
| 3612 | case money_base::none: |
| 3613 | __mi = __me; |
| 3614 | break; |
| 3615 | case money_base::space: |
| 3616 | __mi = __me; |
| 3617 | *__me++ = __ct.widen(' '); |
| 3618 | break; |
| 3619 | case money_base::sign: |
| 3620 | if (!__sn.empty()) |
| 3621 | *__me++ = __sn[0]; |
| 3622 | break; |
| 3623 | case money_base::symbol: |
| 3624 | if (!__sym.empty() && (__flags & ios_base::showbase)) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 3625 | __me = _VSTD::copy(__sym.begin(), __sym.end(), __me); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3626 | break; |
| 3627 | case money_base::value: |
| 3628 | { |
| 3629 | // remember start of value so we can reverse it |
| 3630 | char_type* __t = __me; |
| 3631 | // find beginning of digits |
| 3632 | if (__neg) |
| 3633 | ++__db; |
| 3634 | // find end of digits |
| 3635 | const char_type* __d; |
| 3636 | for (__d = __db; __d < __de; ++__d) |
| 3637 | if (!__ct.is(ctype_base::digit, *__d)) |
| 3638 | break; |
| 3639 | // print fractional part |
| 3640 | if (__fd > 0) |
| 3641 | { |
| 3642 | int __f; |
| 3643 | for (__f = __fd; __d > __db && __f > 0; --__f) |
| 3644 | *__me++ = *--__d; |
| 3645 | char_type __z = __f > 0 ? __ct.widen('0') : char_type(); |
| 3646 | for (; __f > 0; --__f) |
| 3647 | *__me++ = __z; |
| 3648 | *__me++ = __dp; |
| 3649 | } |
| 3650 | // print units part |
| 3651 | if (__d == __db) |
| 3652 | { |
| 3653 | *__me++ = __ct.widen('0'); |
| 3654 | } |
| 3655 | else |
| 3656 | { |
| 3657 | unsigned __ng = 0; |
| 3658 | unsigned __ig = 0; |
| 3659 | unsigned __gl = __grp.empty() ? numeric_limits<unsigned>::max() |
| 3660 | : static_cast<unsigned>(__grp[__ig]); |
| 3661 | while (__d != __db) |
| 3662 | { |
| 3663 | if (__ng == __gl) |
| 3664 | { |
| 3665 | *__me++ = __ts; |
| 3666 | __ng = 0; |
| 3667 | if (++__ig < __grp.size()) |
| 3668 | __gl = __grp[__ig] == numeric_limits<char>::max() ? |
| 3669 | numeric_limits<unsigned>::max() : |
| 3670 | static_cast<unsigned>(__grp[__ig]); |
| 3671 | } |
| 3672 | *__me++ = *--__d; |
| 3673 | ++__ng; |
| 3674 | } |
| 3675 | } |
| 3676 | // reverse it |
| 3677 | reverse(__t, __me); |
| 3678 | } |
| 3679 | break; |
| 3680 | } |
| 3681 | } |
| 3682 | // print rest of sign, if any |
| 3683 | if (__sn.size() > 1) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 3684 | __me = _VSTD::copy(__sn.begin()+1, __sn.end(), __me); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3685 | // set alignment |
| 3686 | if ((__flags & ios_base::adjustfield) == ios_base::left) |
| 3687 | __mi = __me; |
| 3688 | else if ((__flags & ios_base::adjustfield) != ios_base::internal) |
| 3689 | __mi = __mb; |
| 3690 | } |
| 3691 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3692 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS __money_put<char>) |
| 3693 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS __money_put<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3694 | |
| 3695 | template <class _CharT, class _OutputIterator = ostreambuf_iterator<_CharT> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3696 | class _LIBCPP_TYPE_VIS_ONLY money_put |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3697 | : public locale::facet, |
| 3698 | private __money_put<_CharT> |
| 3699 | { |
| 3700 | public: |
| 3701 | typedef _CharT char_type; |
| 3702 | typedef _OutputIterator iter_type; |
| 3703 | typedef basic_string<char_type> string_type; |
| 3704 | |
| 3705 | _LIBCPP_ALWAYS_INLINE |
| 3706 | explicit money_put(size_t __refs = 0) |
| 3707 | : locale::facet(__refs) {} |
| 3708 | |
| 3709 | _LIBCPP_ALWAYS_INLINE |
| 3710 | iter_type put(iter_type __s, bool __intl, ios_base& __iob, char_type __fl, |
| 3711 | long double __units) const |
| 3712 | { |
| 3713 | return do_put(__s, __intl, __iob, __fl, __units); |
| 3714 | } |
| 3715 | |
| 3716 | _LIBCPP_ALWAYS_INLINE |
| 3717 | iter_type put(iter_type __s, bool __intl, ios_base& __iob, char_type __fl, |
| 3718 | const string_type& __digits) const |
| 3719 | { |
| 3720 | return do_put(__s, __intl, __iob, __fl, __digits); |
| 3721 | } |
| 3722 | |
| 3723 | static locale::id id; |
| 3724 | |
| 3725 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3726 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3727 | ~money_put() {} |
| 3728 | |
| 3729 | virtual iter_type do_put(iter_type __s, bool __intl, ios_base& __iob, |
| 3730 | char_type __fl, long double __units) const; |
| 3731 | virtual iter_type do_put(iter_type __s, bool __intl, ios_base& __iob, |
| 3732 | char_type __fl, const string_type& __digits) const; |
| 3733 | }; |
| 3734 | |
| 3735 | template <class _CharT, class _OutputIterator> |
| 3736 | locale::id |
| 3737 | money_put<_CharT, _OutputIterator>::id; |
| 3738 | |
| 3739 | template <class _CharT, class _OutputIterator> |
| 3740 | _OutputIterator |
| 3741 | money_put<_CharT, _OutputIterator>::do_put(iter_type __s, bool __intl, |
| 3742 | ios_base& __iob, char_type __fl, |
| 3743 | long double __units) const |
| 3744 | { |
| 3745 | // convert to char |
| 3746 | const size_t __bs = 100; |
| 3747 | char __buf[__bs]; |
| 3748 | char* __bb = __buf; |
| 3749 | char_type __digits[__bs]; |
| 3750 | char_type* __db = __digits; |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 3751 | size_t __n = static_cast<size_t>(snprintf(__bb, __bs, "%.0Lf", __units)); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3752 | unique_ptr<char, void(*)(void*)> __hn(0, free); |
| 3753 | unique_ptr<char_type, void(*)(void*)> __hd(0, free); |
| 3754 | // secure memory for digit storage |
| 3755 | if (__n > __bs-1) |
| 3756 | { |
Howard Hinnant | 866569b | 2011-09-28 23:39:33 +0000 | [diff] [blame] | 3757 | #ifdef _LIBCPP_LOCALE__L_EXTENSIONS |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 3758 | __n = static_cast<size_t>(asprintf_l(&__bb, _LIBCPP_GET_C_LOCALE, "%.0Lf", __units)); |
Sean Hunt | f3907e6 | 2011-07-15 05:40:33 +0000 | [diff] [blame] | 3759 | #else |
| 3760 | __n = __asprintf_l(&__bb, __cloc(), "%.0Lf", __units); |
| 3761 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3762 | if (__bb == 0) |
| 3763 | __throw_bad_alloc(); |
| 3764 | __hn.reset(__bb); |
| 3765 | __hd.reset((char_type*)malloc(__n * sizeof(char_type))); |
Howard Hinnant | 05b57d5 | 2012-03-07 20:37:43 +0000 | [diff] [blame] | 3766 | if (__hd == nullptr) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3767 | __throw_bad_alloc(); |
| 3768 | __db = __hd.get(); |
| 3769 | } |
| 3770 | // gather info |
| 3771 | locale __loc = __iob.getloc(); |
| 3772 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__loc); |
| 3773 | __ct.widen(__bb, __bb + __n, __db); |
| 3774 | bool __neg = __n > 0 && __bb[0] == '-'; |
| 3775 | money_base::pattern __pat; |
| 3776 | char_type __dp; |
| 3777 | char_type __ts; |
| 3778 | string __grp; |
| 3779 | string_type __sym; |
| 3780 | string_type __sn; |
| 3781 | int __fd; |
| 3782 | this->__gather_info(__intl, __neg, __loc, __pat, __dp, __ts, __grp, __sym, __sn, __fd); |
| 3783 | // secure memory for formatting |
| 3784 | char_type __mbuf[__bs]; |
| 3785 | char_type* __mb = __mbuf; |
| 3786 | unique_ptr<char_type, void(*)(void*)> __hw(0, free); |
| 3787 | size_t __exn = static_cast<int>(__n) > __fd ? |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 3788 | (__n - static_cast<size_t>(__fd)) * 2 + __sn.size() + |
| 3789 | __sym.size() + static_cast<size_t>(__fd) + 1 |
| 3790 | : __sn.size() + __sym.size() + static_cast<size_t>(__fd) + 2; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3791 | if (__exn > __bs) |
| 3792 | { |
| 3793 | __hw.reset((char_type*)malloc(__exn * sizeof(char_type))); |
| 3794 | __mb = __hw.get(); |
| 3795 | if (__mb == 0) |
| 3796 | __throw_bad_alloc(); |
| 3797 | } |
| 3798 | // format |
| 3799 | char_type* __mi; |
| 3800 | char_type* __me; |
| 3801 | this->__format(__mb, __mi, __me, __iob.flags(), |
| 3802 | __db, __db + __n, __ct, |
| 3803 | __neg, __pat, __dp, __ts, __grp, __sym, __sn, __fd); |
| 3804 | return __pad_and_output(__s, __mb, __mi, __me, __iob, __fl); |
| 3805 | } |
| 3806 | |
| 3807 | template <class _CharT, class _OutputIterator> |
| 3808 | _OutputIterator |
| 3809 | money_put<_CharT, _OutputIterator>::do_put(iter_type __s, bool __intl, |
| 3810 | ios_base& __iob, char_type __fl, |
| 3811 | const string_type& __digits) const |
| 3812 | { |
| 3813 | // gather info |
| 3814 | locale __loc = __iob.getloc(); |
| 3815 | const ctype<char_type>& __ct = use_facet<ctype<char_type> >(__loc); |
| 3816 | bool __neg = __digits.size() > 0 && __digits[0] == __ct.widen('-'); |
| 3817 | money_base::pattern __pat; |
| 3818 | char_type __dp; |
| 3819 | char_type __ts; |
| 3820 | string __grp; |
| 3821 | string_type __sym; |
| 3822 | string_type __sn; |
| 3823 | int __fd; |
| 3824 | this->__gather_info(__intl, __neg, __loc, __pat, __dp, __ts, __grp, __sym, __sn, __fd); |
| 3825 | // secure memory for formatting |
| 3826 | char_type __mbuf[100]; |
| 3827 | char_type* __mb = __mbuf; |
| 3828 | unique_ptr<char_type, void(*)(void*)> __h(0, free); |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 3829 | size_t __exn = static_cast<int>(__digits.size()) > __fd ? |
| 3830 | (__digits.size() - static_cast<size_t>(__fd)) * 2 + |
| 3831 | __sn.size() + __sym.size() + static_cast<size_t>(__fd) + 1 |
| 3832 | : __sn.size() + __sym.size() + static_cast<size_t>(__fd) + 2; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3833 | if (__exn > 100) |
| 3834 | { |
| 3835 | __h.reset((char_type*)malloc(__exn * sizeof(char_type))); |
| 3836 | __mb = __h.get(); |
| 3837 | if (__mb == 0) |
| 3838 | __throw_bad_alloc(); |
| 3839 | } |
| 3840 | // format |
| 3841 | char_type* __mi; |
| 3842 | char_type* __me; |
| 3843 | this->__format(__mb, __mi, __me, __iob.flags(), |
| 3844 | __digits.data(), __digits.data() + __digits.size(), __ct, |
| 3845 | __neg, __pat, __dp, __ts, __grp, __sym, __sn, __fd); |
| 3846 | return __pad_and_output(__s, __mb, __mi, __me, __iob, __fl); |
| 3847 | } |
| 3848 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3849 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS money_put<char>) |
| 3850 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS money_put<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3851 | |
| 3852 | // messages |
| 3853 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 3854 | class _LIBCPP_TYPE_VIS messages_base |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3855 | { |
| 3856 | public: |
Howard Hinnant | b2080c7 | 2011-02-25 00:51:08 +0000 | [diff] [blame] | 3857 | typedef ptrdiff_t catalog; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3858 | |
| 3859 | _LIBCPP_ALWAYS_INLINE messages_base() {} |
| 3860 | }; |
| 3861 | |
| 3862 | template <class _CharT> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3863 | class _LIBCPP_TYPE_VIS_ONLY messages |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3864 | : public locale::facet, |
| 3865 | public messages_base |
| 3866 | { |
| 3867 | public: |
| 3868 | typedef _CharT char_type; |
| 3869 | typedef basic_string<_CharT> string_type; |
| 3870 | |
| 3871 | _LIBCPP_ALWAYS_INLINE |
| 3872 | explicit messages(size_t __refs = 0) |
| 3873 | : locale::facet(__refs) {} |
| 3874 | |
| 3875 | _LIBCPP_ALWAYS_INLINE |
| 3876 | catalog open(const basic_string<char>& __nm, const locale& __loc) const |
| 3877 | { |
| 3878 | return do_open(__nm, __loc); |
| 3879 | } |
| 3880 | |
| 3881 | _LIBCPP_ALWAYS_INLINE |
| 3882 | string_type get(catalog __c, int __set, int __msgid, |
| 3883 | const string_type& __dflt) const |
| 3884 | { |
| 3885 | return do_get(__c, __set, __msgid, __dflt); |
| 3886 | } |
| 3887 | |
| 3888 | _LIBCPP_ALWAYS_INLINE |
| 3889 | void close(catalog __c) const |
| 3890 | { |
| 3891 | do_close(__c); |
| 3892 | } |
| 3893 | |
| 3894 | static locale::id id; |
| 3895 | |
| 3896 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3897 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3898 | ~messages() {} |
| 3899 | |
| 3900 | virtual catalog do_open(const basic_string<char>&, const locale&) const; |
| 3901 | virtual string_type do_get(catalog, int __set, int __msgid, |
| 3902 | const string_type& __dflt) const; |
| 3903 | virtual void do_close(catalog) const; |
| 3904 | }; |
| 3905 | |
| 3906 | template <class _CharT> |
| 3907 | locale::id |
| 3908 | messages<_CharT>::id; |
| 3909 | |
| 3910 | template <class _CharT> |
| 3911 | typename messages<_CharT>::catalog |
| 3912 | messages<_CharT>::do_open(const basic_string<char>& __nm, const locale&) const |
| 3913 | { |
Marshall Clow | a22d2ad | 2013-03-18 17:04:29 +0000 | [diff] [blame] | 3914 | #ifdef _WIN32 |
Howard Hinnant | 6cd05ee | 2011-09-23 16:11:27 +0000 | [diff] [blame] | 3915 | return -1; |
| 3916 | #else // _WIN32 |
Howard Hinnant | 1162445 | 2011-10-11 16:00:46 +0000 | [diff] [blame] | 3917 | catalog __cat = (catalog)catopen(__nm.c_str(), NL_CAT_LOCALE); |
Howard Hinnant | b2080c7 | 2011-02-25 00:51:08 +0000 | [diff] [blame] | 3918 | if (__cat != -1) |
| 3919 | __cat = static_cast<catalog>((static_cast<size_t>(__cat) >> 1)); |
| 3920 | return __cat; |
Howard Hinnant | 6cd05ee | 2011-09-23 16:11:27 +0000 | [diff] [blame] | 3921 | #endif // _WIN32 |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3922 | } |
| 3923 | |
| 3924 | template <class _CharT> |
| 3925 | typename messages<_CharT>::string_type |
| 3926 | messages<_CharT>::do_get(catalog __c, int __set, int __msgid, |
| 3927 | const string_type& __dflt) const |
| 3928 | { |
Marshall Clow | a22d2ad | 2013-03-18 17:04:29 +0000 | [diff] [blame] | 3929 | #ifdef _WIN32 |
Howard Hinnant | 6cd05ee | 2011-09-23 16:11:27 +0000 | [diff] [blame] | 3930 | return __dflt; |
| 3931 | #else // _WIN32 |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3932 | string __ndflt; |
| 3933 | __narrow_to_utf8<sizeof(char_type)*__CHAR_BIT__>()(back_inserter(__ndflt), |
| 3934 | __dflt.c_str(), |
| 3935 | __dflt.c_str() + __dflt.size()); |
Howard Hinnant | b2080c7 | 2011-02-25 00:51:08 +0000 | [diff] [blame] | 3936 | if (__c != -1) |
| 3937 | __c <<= 1; |
Howard Hinnant | 1162445 | 2011-10-11 16:00:46 +0000 | [diff] [blame] | 3938 | nl_catd __cat = (nl_catd)__c; |
Howard Hinnant | b2080c7 | 2011-02-25 00:51:08 +0000 | [diff] [blame] | 3939 | char* __n = catgets(__cat, __set, __msgid, __ndflt.c_str()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3940 | string_type __w; |
| 3941 | __widen_from_utf8<sizeof(char_type)*__CHAR_BIT__>()(back_inserter(__w), |
| 3942 | __n, __n + strlen(__n)); |
| 3943 | return __w; |
Howard Hinnant | 6cd05ee | 2011-09-23 16:11:27 +0000 | [diff] [blame] | 3944 | #endif // _WIN32 |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3945 | } |
| 3946 | |
| 3947 | template <class _CharT> |
| 3948 | void |
| 3949 | messages<_CharT>::do_close(catalog __c) const |
| 3950 | { |
Marshall Clow | a22d2ad | 2013-03-18 17:04:29 +0000 | [diff] [blame] | 3951 | #if !defined(_WIN32) |
Howard Hinnant | b2080c7 | 2011-02-25 00:51:08 +0000 | [diff] [blame] | 3952 | if (__c != -1) |
| 3953 | __c <<= 1; |
Howard Hinnant | 1162445 | 2011-10-11 16:00:46 +0000 | [diff] [blame] | 3954 | nl_catd __cat = (nl_catd)__c; |
Howard Hinnant | b2080c7 | 2011-02-25 00:51:08 +0000 | [diff] [blame] | 3955 | catclose(__cat); |
Howard Hinnant | 6cd05ee | 2011-09-23 16:11:27 +0000 | [diff] [blame] | 3956 | #endif // !_WIN32 |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3957 | } |
| 3958 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3959 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS messages<char>) |
| 3960 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS messages<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3961 | |
| 3962 | template <class _CharT> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3963 | class _LIBCPP_TYPE_VIS_ONLY messages_byname |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3964 | : public messages<_CharT> |
| 3965 | { |
| 3966 | public: |
| 3967 | typedef messages_base::catalog catalog; |
| 3968 | typedef basic_string<_CharT> string_type; |
| 3969 | |
| 3970 | _LIBCPP_ALWAYS_INLINE |
| 3971 | explicit messages_byname(const char*, size_t __refs = 0) |
| 3972 | : messages<_CharT>(__refs) {} |
| 3973 | |
| 3974 | _LIBCPP_ALWAYS_INLINE |
| 3975 | explicit messages_byname(const string&, size_t __refs = 0) |
| 3976 | : messages<_CharT>(__refs) {} |
| 3977 | |
| 3978 | protected: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3979 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3980 | ~messages_byname() {} |
| 3981 | }; |
| 3982 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3983 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS messages_byname<char>) |
| 3984 | _LIBCPP_EXTERN_TEMPLATE(class _LIBCPP_TYPE_VIS messages_byname<wchar_t>) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3985 | |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 3986 | template<class _Codecvt, class _Elem = wchar_t, |
| 3987 | class _Wide_alloc = allocator<_Elem>, |
| 3988 | class _Byte_alloc = allocator<char> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 3989 | class _LIBCPP_TYPE_VIS_ONLY wstring_convert |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 3990 | { |
| 3991 | public: |
| 3992 | typedef basic_string<char, char_traits<char>, _Byte_alloc> byte_string; |
| 3993 | typedef basic_string<_Elem, char_traits<_Elem>, _Wide_alloc> wide_string; |
| 3994 | typedef typename _Codecvt::state_type state_type; |
| 3995 | typedef typename wide_string::traits_type::int_type int_type; |
| 3996 | |
| 3997 | private: |
| 3998 | byte_string __byte_err_string_; |
| 3999 | wide_string __wide_err_string_; |
| 4000 | _Codecvt* __cvtptr_; |
| 4001 | state_type __cvtstate_; |
| 4002 | size_t __cvtcount_; |
| 4003 | |
| 4004 | wstring_convert(const wstring_convert& __wc); |
| 4005 | wstring_convert& operator=(const wstring_convert& __wc); |
| 4006 | public: |
| 4007 | wstring_convert(_Codecvt* __pcvt = new _Codecvt); |
| 4008 | wstring_convert(_Codecvt* __pcvt, state_type __state); |
| 4009 | wstring_convert(const byte_string& __byte_err, |
| 4010 | const wide_string& __wide_err = wide_string()); |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 4011 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4012 | wstring_convert(wstring_convert&& __wc); |
| 4013 | #endif |
| 4014 | ~wstring_convert(); |
| 4015 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4016 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4017 | wide_string from_bytes(char __byte) |
| 4018 | {return from_bytes(&__byte, &__byte+1);} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4019 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4020 | wide_string from_bytes(const char* __ptr) |
| 4021 | {return from_bytes(__ptr, __ptr + char_traits<char>::length(__ptr));} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4022 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4023 | wide_string from_bytes(const byte_string& __str) |
| 4024 | {return from_bytes(__str.data(), __str.data() + __str.size());} |
| 4025 | wide_string from_bytes(const char* __first, const char* __last); |
| 4026 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4027 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4028 | byte_string to_bytes(_Elem __wchar) |
| 4029 | {return to_bytes(&__wchar, &__wchar+1);} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4030 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4031 | byte_string to_bytes(const _Elem* __wptr) |
| 4032 | {return to_bytes(__wptr, __wptr + char_traits<_Elem>::length(__wptr));} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4033 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4034 | byte_string to_bytes(const wide_string& __wstr) |
| 4035 | {return to_bytes(__wstr.data(), __wstr.data() + __wstr.size());} |
| 4036 | byte_string to_bytes(const _Elem* __first, const _Elem* __last); |
| 4037 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4038 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4039 | size_t converted() const {return __cvtcount_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4040 | _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4041 | state_type state() const {return __cvtstate_;} |
| 4042 | }; |
| 4043 | |
| 4044 | template<class _Codecvt, class _Elem, class _Wide_alloc, class _Byte_alloc> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4045 | inline _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4046 | wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>:: |
| 4047 | wstring_convert(_Codecvt* __pcvt) |
| 4048 | : __cvtptr_(__pcvt), __cvtstate_(), __cvtcount_(0) |
| 4049 | { |
| 4050 | } |
| 4051 | |
| 4052 | template<class _Codecvt, class _Elem, class _Wide_alloc, class _Byte_alloc> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4053 | inline _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4054 | wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>:: |
| 4055 | wstring_convert(_Codecvt* __pcvt, state_type __state) |
| 4056 | : __cvtptr_(__pcvt), __cvtstate_(__state), __cvtcount_(0) |
| 4057 | { |
| 4058 | } |
| 4059 | |
| 4060 | template<class _Codecvt, class _Elem, class _Wide_alloc, class _Byte_alloc> |
| 4061 | wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>:: |
| 4062 | wstring_convert(const byte_string& __byte_err, const wide_string& __wide_err) |
| 4063 | : __byte_err_string_(__byte_err), __wide_err_string_(__wide_err), |
| 4064 | __cvtstate_(), __cvtcount_(0) |
| 4065 | { |
| 4066 | __cvtptr_ = new _Codecvt; |
| 4067 | } |
| 4068 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 4069 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4070 | |
| 4071 | template<class _Codecvt, class _Elem, class _Wide_alloc, class _Byte_alloc> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4072 | inline _LIBCPP_ALWAYS_INLINE |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4073 | wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>:: |
| 4074 | wstring_convert(wstring_convert&& __wc) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4075 | : __byte_err_string_(_VSTD::move(__wc.__byte_err_string_)), |
| 4076 | __wide_err_string_(_VSTD::move(__wc.__wide_err_string_)), |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4077 | __cvtptr_(__wc.__cvtptr_), |
| 4078 | __cvtstate_(__wc.__cvtstate_), __cvtcount_(__wc.__cvtstate_) |
| 4079 | { |
| 4080 | __wc.__cvtptr_ = nullptr; |
| 4081 | } |
| 4082 | |
Howard Hinnant | bfd5530 | 2010-09-04 23:46:48 +0000 | [diff] [blame] | 4083 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4084 | |
| 4085 | template<class _Codecvt, class _Elem, class _Wide_alloc, class _Byte_alloc> |
| 4086 | wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>::~wstring_convert() |
| 4087 | { |
| 4088 | delete __cvtptr_; |
| 4089 | } |
| 4090 | |
| 4091 | template<class _Codecvt, class _Elem, class _Wide_alloc, class _Byte_alloc> |
| 4092 | typename wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>::wide_string |
| 4093 | wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>:: |
| 4094 | from_bytes(const char* __frm, const char* __frm_end) |
| 4095 | { |
| 4096 | __cvtcount_ = 0; |
| 4097 | if (__cvtptr_ != nullptr) |
| 4098 | { |
| 4099 | wide_string __ws(2*(__frm_end - __frm), _Elem()); |
Howard Hinnant | 1ca2367 | 2012-07-12 18:07:41 +0000 | [diff] [blame] | 4100 | if (__frm != __frm_end) |
| 4101 | __ws.resize(__ws.capacity()); |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4102 | codecvt_base::result __r = codecvt_base::ok; |
| 4103 | state_type __st = __cvtstate_; |
| 4104 | if (__frm != __frm_end) |
| 4105 | { |
| 4106 | _Elem* __to = &__ws[0]; |
| 4107 | _Elem* __to_end = __to + __ws.size(); |
| 4108 | const char* __frm_nxt; |
| 4109 | do |
| 4110 | { |
| 4111 | _Elem* __to_nxt; |
| 4112 | __r = __cvtptr_->in(__st, __frm, __frm_end, __frm_nxt, |
| 4113 | __to, __to_end, __to_nxt); |
| 4114 | __cvtcount_ += __frm_nxt - __frm; |
| 4115 | if (__frm_nxt == __frm) |
| 4116 | { |
| 4117 | __r = codecvt_base::error; |
| 4118 | } |
| 4119 | else if (__r == codecvt_base::noconv) |
| 4120 | { |
| 4121 | __ws.resize(__to - &__ws[0]); |
| 4122 | // This only gets executed if _Elem is char |
| 4123 | __ws.append((const _Elem*)__frm, (const _Elem*)__frm_end); |
| 4124 | __frm = __frm_nxt; |
| 4125 | __r = codecvt_base::ok; |
| 4126 | } |
| 4127 | else if (__r == codecvt_base::ok) |
| 4128 | { |
| 4129 | __ws.resize(__to_nxt - &__ws[0]); |
| 4130 | __frm = __frm_nxt; |
| 4131 | } |
| 4132 | else if (__r == codecvt_base::partial) |
| 4133 | { |
| 4134 | ptrdiff_t __s = __to_nxt - &__ws[0]; |
| 4135 | __ws.resize(2 * __s); |
| 4136 | __to = &__ws[0] + __s; |
| 4137 | __to_end = &__ws[0] + __ws.size(); |
| 4138 | __frm = __frm_nxt; |
| 4139 | } |
| 4140 | } while (__r == codecvt_base::partial && __frm_nxt < __frm_end); |
| 4141 | } |
| 4142 | if (__r == codecvt_base::ok) |
| 4143 | return __ws; |
| 4144 | } |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 4145 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4146 | if (__wide_err_string_.empty()) |
| 4147 | throw range_error("wstring_convert: from_bytes error"); |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4148 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4149 | return __wide_err_string_; |
| 4150 | } |
| 4151 | |
| 4152 | template<class _Codecvt, class _Elem, class _Wide_alloc, class _Byte_alloc> |
| 4153 | typename wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>::byte_string |
| 4154 | wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>:: |
| 4155 | to_bytes(const _Elem* __frm, const _Elem* __frm_end) |
| 4156 | { |
| 4157 | __cvtcount_ = 0; |
| 4158 | if (__cvtptr_ != nullptr) |
| 4159 | { |
| 4160 | byte_string __bs(2*(__frm_end - __frm), char()); |
Howard Hinnant | 1ca2367 | 2012-07-12 18:07:41 +0000 | [diff] [blame] | 4161 | if (__frm != __frm_end) |
| 4162 | __bs.resize(__bs.capacity()); |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4163 | codecvt_base::result __r = codecvt_base::ok; |
| 4164 | state_type __st = __cvtstate_; |
| 4165 | if (__frm != __frm_end) |
| 4166 | { |
| 4167 | char* __to = &__bs[0]; |
| 4168 | char* __to_end = __to + __bs.size(); |
| 4169 | const _Elem* __frm_nxt; |
| 4170 | do |
| 4171 | { |
| 4172 | char* __to_nxt; |
| 4173 | __r = __cvtptr_->out(__st, __frm, __frm_end, __frm_nxt, |
| 4174 | __to, __to_end, __to_nxt); |
| 4175 | __cvtcount_ += __frm_nxt - __frm; |
| 4176 | if (__frm_nxt == __frm) |
| 4177 | { |
| 4178 | __r = codecvt_base::error; |
| 4179 | } |
| 4180 | else if (__r == codecvt_base::noconv) |
| 4181 | { |
| 4182 | __bs.resize(__to - &__bs[0]); |
| 4183 | // This only gets executed if _Elem is char |
| 4184 | __bs.append((const char*)__frm, (const char*)__frm_end); |
| 4185 | __frm = __frm_nxt; |
| 4186 | __r = codecvt_base::ok; |
| 4187 | } |
| 4188 | else if (__r == codecvt_base::ok) |
| 4189 | { |
| 4190 | __bs.resize(__to_nxt - &__bs[0]); |
| 4191 | __frm = __frm_nxt; |
| 4192 | } |
| 4193 | else if (__r == codecvt_base::partial) |
| 4194 | { |
| 4195 | ptrdiff_t __s = __to_nxt - &__bs[0]; |
| 4196 | __bs.resize(2 * __s); |
| 4197 | __to = &__bs[0] + __s; |
| 4198 | __to_end = &__bs[0] + __bs.size(); |
| 4199 | __frm = __frm_nxt; |
| 4200 | } |
| 4201 | } while (__r == codecvt_base::partial && __frm_nxt < __frm_end); |
| 4202 | } |
| 4203 | if (__r == codecvt_base::ok) |
| 4204 | { |
| 4205 | size_t __s = __bs.size(); |
| 4206 | __bs.resize(__bs.capacity()); |
| 4207 | char* __to = &__bs[0] + __s; |
| 4208 | char* __to_end = __to + __bs.size(); |
| 4209 | do |
| 4210 | { |
| 4211 | char* __to_nxt; |
| 4212 | __r = __cvtptr_->unshift(__st, __to, __to_end, __to_nxt); |
| 4213 | if (__r == codecvt_base::noconv) |
| 4214 | { |
| 4215 | __bs.resize(__to - &__bs[0]); |
| 4216 | __r = codecvt_base::ok; |
| 4217 | } |
| 4218 | else if (__r == codecvt_base::ok) |
| 4219 | { |
| 4220 | __bs.resize(__to_nxt - &__bs[0]); |
| 4221 | } |
| 4222 | else if (__r == codecvt_base::partial) |
| 4223 | { |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 4224 | ptrdiff_t __sp = __to_nxt - &__bs[0]; |
| 4225 | __bs.resize(2 * __sp); |
| 4226 | __to = &__bs[0] + __sp; |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4227 | __to_end = &__bs[0] + __bs.size(); |
| 4228 | } |
| 4229 | } while (__r == codecvt_base::partial); |
| 4230 | if (__r == codecvt_base::ok) |
| 4231 | return __bs; |
| 4232 | } |
| 4233 | } |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 4234 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4235 | if (__byte_err_string_.empty()) |
| 4236 | throw range_error("wstring_convert: to_bytes error"); |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4237 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4238 | return __byte_err_string_; |
| 4239 | } |
| 4240 | |
| 4241 | template <class _Codecvt, class _Elem = wchar_t, class _Tr = char_traits<_Elem> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame^] | 4242 | class _LIBCPP_TYPE_VIS_ONLY wbuffer_convert |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4243 | : public basic_streambuf<_Elem, _Tr> |
| 4244 | { |
| 4245 | public: |
| 4246 | // types: |
| 4247 | typedef _Elem char_type; |
| 4248 | typedef _Tr traits_type; |
| 4249 | typedef typename traits_type::int_type int_type; |
| 4250 | typedef typename traits_type::pos_type pos_type; |
| 4251 | typedef typename traits_type::off_type off_type; |
| 4252 | typedef typename _Codecvt::state_type state_type; |
| 4253 | |
| 4254 | private: |
Howard Hinnant | 4b53f50 | 2010-06-01 20:09:18 +0000 | [diff] [blame] | 4255 | char* __extbuf_; |
| 4256 | const char* __extbufnext_; |
| 4257 | const char* __extbufend_; |
| 4258 | char __extbuf_min_[8]; |
| 4259 | size_t __ebs_; |
| 4260 | char_type* __intbuf_; |
| 4261 | size_t __ibs_; |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4262 | streambuf* __bufptr_; |
Howard Hinnant | 4b53f50 | 2010-06-01 20:09:18 +0000 | [diff] [blame] | 4263 | _Codecvt* __cv_; |
| 4264 | state_type __st_; |
| 4265 | ios_base::openmode __cm_; |
| 4266 | bool __owns_eb_; |
| 4267 | bool __owns_ib_; |
| 4268 | bool __always_noconv_; |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4269 | |
Howard Hinnant | 4b53f50 | 2010-06-01 20:09:18 +0000 | [diff] [blame] | 4270 | wbuffer_convert(const wbuffer_convert&); |
| 4271 | wbuffer_convert& operator=(const wbuffer_convert&); |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4272 | public: |
| 4273 | wbuffer_convert(streambuf* __bytebuf = 0, _Codecvt* __pcvt = new _Codecvt, |
Howard Hinnant | 4b53f50 | 2010-06-01 20:09:18 +0000 | [diff] [blame] | 4274 | state_type __state = state_type()); |
| 4275 | ~wbuffer_convert(); |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4276 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4277 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4278 | streambuf* rdbuf() const {return __bufptr_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4279 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4280 | streambuf* rdbuf(streambuf* __bytebuf) |
| 4281 | { |
| 4282 | streambuf* __r = __bufptr_; |
| 4283 | __bufptr_ = __bytebuf; |
| 4284 | return __r; |
| 4285 | } |
| 4286 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4287 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 4b53f50 | 2010-06-01 20:09:18 +0000 | [diff] [blame] | 4288 | state_type state() const {return __st_;} |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4289 | |
| 4290 | protected: |
Howard Hinnant | 4b53f50 | 2010-06-01 20:09:18 +0000 | [diff] [blame] | 4291 | virtual int_type underflow(); |
| 4292 | virtual int_type pbackfail(int_type __c = traits_type::eof()); |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4293 | virtual int_type overflow (int_type __c = traits_type::eof()); |
Howard Hinnant | 4b53f50 | 2010-06-01 20:09:18 +0000 | [diff] [blame] | 4294 | virtual basic_streambuf<char_type, traits_type>* setbuf(char_type* __s, |
| 4295 | streamsize __n); |
| 4296 | virtual pos_type seekoff(off_type __off, ios_base::seekdir __way, |
| 4297 | ios_base::openmode __wch = ios_base::in | ios_base::out); |
| 4298 | virtual pos_type seekpos(pos_type __sp, |
| 4299 | ios_base::openmode __wch = ios_base::in | ios_base::out); |
| 4300 | virtual int sync(); |
| 4301 | |
| 4302 | private: |
| 4303 | bool __read_mode(); |
| 4304 | void __write_mode(); |
| 4305 | wbuffer_convert* __close(); |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4306 | }; |
| 4307 | |
| 4308 | template <class _Codecvt, class _Elem, class _Tr> |
Howard Hinnant | 4b53f50 | 2010-06-01 20:09:18 +0000 | [diff] [blame] | 4309 | wbuffer_convert<_Codecvt, _Elem, _Tr>:: |
| 4310 | wbuffer_convert(streambuf* __bytebuf, _Codecvt* __pcvt, state_type __state) |
| 4311 | : __extbuf_(0), |
| 4312 | __extbufnext_(0), |
| 4313 | __extbufend_(0), |
| 4314 | __ebs_(0), |
| 4315 | __intbuf_(0), |
| 4316 | __ibs_(0), |
| 4317 | __bufptr_(__bytebuf), |
| 4318 | __cv_(__pcvt), |
| 4319 | __st_(__state), |
| 4320 | __cm_(0), |
| 4321 | __owns_eb_(false), |
| 4322 | __owns_ib_(false), |
| 4323 | __always_noconv_(__cv_ ? __cv_->always_noconv() : false) |
| 4324 | { |
| 4325 | setbuf(0, 4096); |
| 4326 | } |
| 4327 | |
| 4328 | template <class _Codecvt, class _Elem, class _Tr> |
| 4329 | wbuffer_convert<_Codecvt, _Elem, _Tr>::~wbuffer_convert() |
| 4330 | { |
| 4331 | __close(); |
| 4332 | delete __cv_; |
| 4333 | if (__owns_eb_) |
| 4334 | delete [] __extbuf_; |
| 4335 | if (__owns_ib_) |
| 4336 | delete [] __intbuf_; |
| 4337 | } |
| 4338 | |
| 4339 | template <class _Codecvt, class _Elem, class _Tr> |
| 4340 | typename wbuffer_convert<_Codecvt, _Elem, _Tr>::int_type |
| 4341 | wbuffer_convert<_Codecvt, _Elem, _Tr>::underflow() |
| 4342 | { |
| 4343 | if (__cv_ == 0 || __bufptr_ == 0) |
| 4344 | return traits_type::eof(); |
| 4345 | bool __initial = __read_mode(); |
| 4346 | char_type __1buf; |
| 4347 | if (this->gptr() == 0) |
| 4348 | this->setg(&__1buf, &__1buf+1, &__1buf+1); |
| 4349 | const size_t __unget_sz = __initial ? 0 : min<size_t>((this->egptr() - this->eback()) / 2, 4); |
| 4350 | int_type __c = traits_type::eof(); |
| 4351 | if (this->gptr() == this->egptr()) |
| 4352 | { |
| 4353 | memmove(this->eback(), this->egptr() - __unget_sz, __unget_sz * sizeof(char_type)); |
| 4354 | if (__always_noconv_) |
| 4355 | { |
| 4356 | streamsize __nmemb = static_cast<streamsize>(this->egptr() - this->eback() - __unget_sz); |
| 4357 | __nmemb = __bufptr_->sgetn((char*)this->eback() + __unget_sz, __nmemb); |
| 4358 | if (__nmemb != 0) |
| 4359 | { |
| 4360 | this->setg(this->eback(), |
| 4361 | this->eback() + __unget_sz, |
| 4362 | this->eback() + __unget_sz + __nmemb); |
| 4363 | __c = *this->gptr(); |
| 4364 | } |
| 4365 | } |
| 4366 | else |
| 4367 | { |
| 4368 | memmove(__extbuf_, __extbufnext_, __extbufend_ - __extbufnext_); |
| 4369 | __extbufnext_ = __extbuf_ + (__extbufend_ - __extbufnext_); |
| 4370 | __extbufend_ = __extbuf_ + (__extbuf_ == __extbuf_min_ ? sizeof(__extbuf_min_) : __ebs_); |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4371 | streamsize __nmemb = _VSTD::min(static_cast<streamsize>(this->egptr() - this->eback() - __unget_sz), |
Howard Hinnant | 4b53f50 | 2010-06-01 20:09:18 +0000 | [diff] [blame] | 4372 | static_cast<streamsize>(__extbufend_ - __extbufnext_)); |
| 4373 | codecvt_base::result __r; |
| 4374 | state_type __svs = __st_; |
| 4375 | streamsize __nr = __bufptr_->sgetn(const_cast<char*>(__extbufnext_), __nmemb); |
| 4376 | if (__nr != 0) |
| 4377 | { |
| 4378 | __extbufend_ = __extbufnext_ + __nr; |
| 4379 | char_type* __inext; |
| 4380 | __r = __cv_->in(__st_, __extbuf_, __extbufend_, __extbufnext_, |
| 4381 | this->eback() + __unget_sz, |
| 4382 | this->egptr(), __inext); |
| 4383 | if (__r == codecvt_base::noconv) |
| 4384 | { |
| 4385 | this->setg((char_type*)__extbuf_, (char_type*)__extbuf_, (char_type*)__extbufend_); |
| 4386 | __c = *this->gptr(); |
| 4387 | } |
| 4388 | else if (__inext != this->eback() + __unget_sz) |
| 4389 | { |
| 4390 | this->setg(this->eback(), this->eback() + __unget_sz, __inext); |
| 4391 | __c = *this->gptr(); |
| 4392 | } |
| 4393 | } |
| 4394 | } |
| 4395 | } |
| 4396 | else |
| 4397 | __c = *this->gptr(); |
| 4398 | if (this->eback() == &__1buf) |
| 4399 | this->setg(0, 0, 0); |
| 4400 | return __c; |
| 4401 | } |
| 4402 | |
| 4403 | template <class _Codecvt, class _Elem, class _Tr> |
| 4404 | typename wbuffer_convert<_Codecvt, _Elem, _Tr>::int_type |
| 4405 | wbuffer_convert<_Codecvt, _Elem, _Tr>::pbackfail(int_type __c) |
| 4406 | { |
| 4407 | if (__cv_ != 0 && __bufptr_ != 0 && this->eback() < this->gptr()) |
| 4408 | { |
| 4409 | if (traits_type::eq_int_type(__c, traits_type::eof())) |
| 4410 | { |
| 4411 | this->gbump(-1); |
| 4412 | return traits_type::not_eof(__c); |
| 4413 | } |
| 4414 | if (traits_type::eq(traits_type::to_char_type(__c), this->gptr()[-1])) |
| 4415 | { |
| 4416 | this->gbump(-1); |
| 4417 | *this->gptr() = traits_type::to_char_type(__c); |
| 4418 | return __c; |
| 4419 | } |
| 4420 | } |
| 4421 | return traits_type::eof(); |
| 4422 | } |
| 4423 | |
| 4424 | template <class _Codecvt, class _Elem, class _Tr> |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4425 | typename wbuffer_convert<_Codecvt, _Elem, _Tr>::int_type |
| 4426 | wbuffer_convert<_Codecvt, _Elem, _Tr>::overflow(int_type __c) |
| 4427 | { |
Howard Hinnant | 4b53f50 | 2010-06-01 20:09:18 +0000 | [diff] [blame] | 4428 | if (__cv_ == 0 || __bufptr_ == 0) |
| 4429 | return traits_type::eof(); |
| 4430 | __write_mode(); |
| 4431 | char_type __1buf; |
| 4432 | char_type* __pb_save = this->pbase(); |
| 4433 | char_type* __epb_save = this->epptr(); |
| 4434 | if (!traits_type::eq_int_type(__c, traits_type::eof())) |
| 4435 | { |
| 4436 | if (this->pptr() == 0) |
| 4437 | this->setp(&__1buf, &__1buf+1); |
| 4438 | *this->pptr() = traits_type::to_char_type(__c); |
| 4439 | this->pbump(1); |
| 4440 | } |
| 4441 | if (this->pptr() != this->pbase()) |
| 4442 | { |
| 4443 | if (__always_noconv_) |
| 4444 | { |
| 4445 | streamsize __nmemb = static_cast<streamsize>(this->pptr() - this->pbase()); |
| 4446 | if (__bufptr_->sputn((const char*)this->pbase(), __nmemb) != __nmemb) |
| 4447 | return traits_type::eof(); |
| 4448 | } |
| 4449 | else |
| 4450 | { |
| 4451 | char* __extbe = __extbuf_; |
| 4452 | codecvt_base::result __r; |
| 4453 | do |
| 4454 | { |
| 4455 | const char_type* __e; |
| 4456 | __r = __cv_->out(__st_, this->pbase(), this->pptr(), __e, |
| 4457 | __extbuf_, __extbuf_ + __ebs_, __extbe); |
| 4458 | if (__e == this->pbase()) |
| 4459 | return traits_type::eof(); |
| 4460 | if (__r == codecvt_base::noconv) |
| 4461 | { |
| 4462 | streamsize __nmemb = static_cast<size_t>(this->pptr() - this->pbase()); |
| 4463 | if (__bufptr_->sputn((const char*)this->pbase(), __nmemb) != __nmemb) |
| 4464 | return traits_type::eof(); |
| 4465 | } |
| 4466 | else if (__r == codecvt_base::ok || __r == codecvt_base::partial) |
| 4467 | { |
| 4468 | streamsize __nmemb = static_cast<size_t>(__extbe - __extbuf_); |
| 4469 | if (__bufptr_->sputn(__extbuf_, __nmemb) != __nmemb) |
| 4470 | return traits_type::eof(); |
| 4471 | if (__r == codecvt_base::partial) |
| 4472 | { |
| 4473 | this->setp((char_type*)__e, this->pptr()); |
| 4474 | this->pbump(this->epptr() - this->pbase()); |
| 4475 | } |
| 4476 | } |
| 4477 | else |
| 4478 | return traits_type::eof(); |
| 4479 | } while (__r == codecvt_base::partial); |
| 4480 | } |
| 4481 | this->setp(__pb_save, __epb_save); |
| 4482 | } |
| 4483 | return traits_type::not_eof(__c); |
| 4484 | } |
| 4485 | |
| 4486 | template <class _Codecvt, class _Elem, class _Tr> |
| 4487 | basic_streambuf<_Elem, _Tr>* |
| 4488 | wbuffer_convert<_Codecvt, _Elem, _Tr>::setbuf(char_type* __s, streamsize __n) |
| 4489 | { |
| 4490 | this->setg(0, 0, 0); |
| 4491 | this->setp(0, 0); |
| 4492 | if (__owns_eb_) |
| 4493 | delete [] __extbuf_; |
| 4494 | if (__owns_ib_) |
| 4495 | delete [] __intbuf_; |
| 4496 | __ebs_ = __n; |
| 4497 | if (__ebs_ > sizeof(__extbuf_min_)) |
| 4498 | { |
| 4499 | if (__always_noconv_ && __s) |
| 4500 | { |
| 4501 | __extbuf_ = (char*)__s; |
| 4502 | __owns_eb_ = false; |
| 4503 | } |
| 4504 | else |
| 4505 | { |
| 4506 | __extbuf_ = new char[__ebs_]; |
| 4507 | __owns_eb_ = true; |
| 4508 | } |
| 4509 | } |
| 4510 | else |
| 4511 | { |
| 4512 | __extbuf_ = __extbuf_min_; |
| 4513 | __ebs_ = sizeof(__extbuf_min_); |
| 4514 | __owns_eb_ = false; |
| 4515 | } |
| 4516 | if (!__always_noconv_) |
| 4517 | { |
| 4518 | __ibs_ = max<streamsize>(__n, sizeof(__extbuf_min_)); |
| 4519 | if (__s && __ibs_ >= sizeof(__extbuf_min_)) |
| 4520 | { |
| 4521 | __intbuf_ = __s; |
| 4522 | __owns_ib_ = false; |
| 4523 | } |
| 4524 | else |
| 4525 | { |
| 4526 | __intbuf_ = new char_type[__ibs_]; |
| 4527 | __owns_ib_ = true; |
| 4528 | } |
| 4529 | } |
| 4530 | else |
| 4531 | { |
| 4532 | __ibs_ = 0; |
| 4533 | __intbuf_ = 0; |
| 4534 | __owns_ib_ = false; |
| 4535 | } |
| 4536 | return this; |
| 4537 | } |
| 4538 | |
| 4539 | template <class _Codecvt, class _Elem, class _Tr> |
| 4540 | typename wbuffer_convert<_Codecvt, _Elem, _Tr>::pos_type |
| 4541 | wbuffer_convert<_Codecvt, _Elem, _Tr>::seekoff(off_type __off, ios_base::seekdir __way, |
| 4542 | ios_base::openmode __om) |
| 4543 | { |
| 4544 | int __width = __cv_->encoding(); |
| 4545 | if (__cv_ == 0 || __bufptr_ == 0 || (__width <= 0 && __off != 0) || sync()) |
| 4546 | return pos_type(off_type(-1)); |
| 4547 | // __width > 0 || __off == 0 |
| 4548 | switch (__way) |
| 4549 | { |
| 4550 | case ios_base::beg: |
| 4551 | break; |
| 4552 | case ios_base::cur: |
| 4553 | break; |
| 4554 | case ios_base::end: |
| 4555 | break; |
| 4556 | default: |
| 4557 | return pos_type(off_type(-1)); |
| 4558 | } |
| 4559 | pos_type __r = __bufptr_->pubseekoff(__width * __off, __way, __om); |
| 4560 | __r.state(__st_); |
| 4561 | return __r; |
| 4562 | } |
| 4563 | |
| 4564 | template <class _Codecvt, class _Elem, class _Tr> |
| 4565 | typename wbuffer_convert<_Codecvt, _Elem, _Tr>::pos_type |
| 4566 | wbuffer_convert<_Codecvt, _Elem, _Tr>::seekpos(pos_type __sp, ios_base::openmode __wch) |
| 4567 | { |
| 4568 | if (__cv_ == 0 || __bufptr_ == 0 || sync()) |
| 4569 | return pos_type(off_type(-1)); |
| 4570 | if (__bufptr_->pubseekpos(__sp, __wch) == pos_type(off_type(-1))) |
| 4571 | return pos_type(off_type(-1)); |
| 4572 | return __sp; |
| 4573 | } |
| 4574 | |
| 4575 | template <class _Codecvt, class _Elem, class _Tr> |
| 4576 | int |
| 4577 | wbuffer_convert<_Codecvt, _Elem, _Tr>::sync() |
| 4578 | { |
| 4579 | if (__cv_ == 0 || __bufptr_ == 0) |
| 4580 | return 0; |
| 4581 | if (__cm_ & ios_base::out) |
| 4582 | { |
| 4583 | if (this->pptr() != this->pbase()) |
| 4584 | if (overflow() == traits_type::eof()) |
| 4585 | return -1; |
| 4586 | codecvt_base::result __r; |
| 4587 | do |
| 4588 | { |
| 4589 | char* __extbe; |
| 4590 | __r = __cv_->unshift(__st_, __extbuf_, __extbuf_ + __ebs_, __extbe); |
| 4591 | streamsize __nmemb = static_cast<streamsize>(__extbe - __extbuf_); |
| 4592 | if (__bufptr_->sputn(__extbuf_, __nmemb) != __nmemb) |
| 4593 | return -1; |
| 4594 | } while (__r == codecvt_base::partial); |
| 4595 | if (__r == codecvt_base::error) |
| 4596 | return -1; |
| 4597 | if (__bufptr_->pubsync()) |
| 4598 | return -1; |
| 4599 | } |
| 4600 | else if (__cm_ & ios_base::in) |
| 4601 | { |
| 4602 | off_type __c; |
| 4603 | if (__always_noconv_) |
| 4604 | __c = this->egptr() - this->gptr(); |
| 4605 | else |
| 4606 | { |
| 4607 | int __width = __cv_->encoding(); |
| 4608 | __c = __extbufend_ - __extbufnext_; |
| 4609 | if (__width > 0) |
| 4610 | __c += __width * (this->egptr() - this->gptr()); |
| 4611 | else |
| 4612 | { |
| 4613 | if (this->gptr() != this->egptr()) |
| 4614 | { |
| 4615 | reverse(this->gptr(), this->egptr()); |
| 4616 | codecvt_base::result __r; |
| 4617 | const char_type* __e = this->gptr(); |
| 4618 | char* __extbe; |
| 4619 | do |
| 4620 | { |
| 4621 | __r = __cv_->out(__st_, __e, this->egptr(), __e, |
| 4622 | __extbuf_, __extbuf_ + __ebs_, __extbe); |
| 4623 | switch (__r) |
| 4624 | { |
| 4625 | case codecvt_base::noconv: |
| 4626 | __c += this->egptr() - this->gptr(); |
| 4627 | break; |
| 4628 | case codecvt_base::ok: |
| 4629 | case codecvt_base::partial: |
| 4630 | __c += __extbe - __extbuf_; |
| 4631 | break; |
| 4632 | default: |
| 4633 | return -1; |
| 4634 | } |
| 4635 | } while (__r == codecvt_base::partial); |
| 4636 | } |
| 4637 | } |
| 4638 | } |
| 4639 | if (__bufptr_->pubseekoff(-__c, ios_base::cur, __cm_) == pos_type(off_type(-1))) |
| 4640 | return -1; |
| 4641 | this->setg(0, 0, 0); |
| 4642 | __cm_ = 0; |
| 4643 | } |
| 4644 | return 0; |
| 4645 | } |
| 4646 | |
| 4647 | template <class _Codecvt, class _Elem, class _Tr> |
| 4648 | bool |
| 4649 | wbuffer_convert<_Codecvt, _Elem, _Tr>::__read_mode() |
| 4650 | { |
| 4651 | if (!(__cm_ & ios_base::in)) |
| 4652 | { |
| 4653 | this->setp(0, 0); |
| 4654 | if (__always_noconv_) |
| 4655 | this->setg((char_type*)__extbuf_, |
| 4656 | (char_type*)__extbuf_ + __ebs_, |
| 4657 | (char_type*)__extbuf_ + __ebs_); |
| 4658 | else |
| 4659 | this->setg(__intbuf_, __intbuf_ + __ibs_, __intbuf_ + __ibs_); |
| 4660 | __cm_ = ios_base::in; |
| 4661 | return true; |
| 4662 | } |
| 4663 | return false; |
| 4664 | } |
| 4665 | |
| 4666 | template <class _Codecvt, class _Elem, class _Tr> |
| 4667 | void |
| 4668 | wbuffer_convert<_Codecvt, _Elem, _Tr>::__write_mode() |
| 4669 | { |
| 4670 | if (!(__cm_ & ios_base::out)) |
| 4671 | { |
| 4672 | this->setg(0, 0, 0); |
| 4673 | if (__ebs_ > sizeof(__extbuf_min_)) |
| 4674 | { |
| 4675 | if (__always_noconv_) |
| 4676 | this->setp((char_type*)__extbuf_, |
| 4677 | (char_type*)__extbuf_ + (__ebs_ - 1)); |
| 4678 | else |
| 4679 | this->setp(__intbuf_, __intbuf_ + (__ibs_ - 1)); |
| 4680 | } |
| 4681 | else |
| 4682 | this->setp(0, 0); |
| 4683 | __cm_ = ios_base::out; |
| 4684 | } |
| 4685 | } |
| 4686 | |
| 4687 | template <class _Codecvt, class _Elem, class _Tr> |
| 4688 | wbuffer_convert<_Codecvt, _Elem, _Tr>* |
| 4689 | wbuffer_convert<_Codecvt, _Elem, _Tr>::__close() |
| 4690 | { |
| 4691 | wbuffer_convert* __rt = 0; |
| 4692 | if (__cv_ != 0 && __bufptr_ != 0) |
| 4693 | { |
| 4694 | __rt = this; |
| 4695 | if ((__cm_ & ios_base::out) && sync()) |
| 4696 | __rt = 0; |
| 4697 | } |
| 4698 | return __rt; |
Howard Hinnant | d23b464 | 2010-05-31 20:58:54 +0000 | [diff] [blame] | 4699 | } |
| 4700 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4701 | _LIBCPP_END_NAMESPACE_STD |
| 4702 | |
| 4703 | #endif // _LIBCPP_LOCALE |