c0598892a5c95f5e90c81ac95c811327b0d43a68
[gcc.git] / libstdc++-v3 / include / bits / locale_facets.tcc
1 // Locale support -*- C++ -*-
2
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 // USA.
21
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
30
31 // Warning: this file is not meant for user inclusion. Use <locale>.
32
33 #ifndef _LOCALE_FACETS_TCC
34 #define _LOCALE_FACETS_TCC 1
35
36 #pragma GCC system_header
37
38 #include <limits> // For numeric_limits
39 #include <typeinfo> // For bad_cast.
40 #include <bits/streambuf_iterator.h>
41
42 namespace std
43 {
44 template<typename _Facet>
45 locale
46 locale::combine(const locale& __other) const
47 {
48 _Impl* __tmp = new _Impl(*_M_impl, 1);
49 try
50 {
51 __tmp->_M_replace_facet(__other._M_impl, &_Facet::id);
52 }
53 catch(...)
54 {
55 __tmp->_M_remove_reference();
56 __throw_exception_again;
57 }
58 return locale(__tmp);
59 }
60
61 template<typename _CharT, typename _Traits, typename _Alloc>
62 bool
63 locale::operator()(const basic_string<_CharT, _Traits, _Alloc>& __s1,
64 const basic_string<_CharT, _Traits, _Alloc>& __s2) const
65 {
66 typedef std::collate<_CharT> __collate_type;
67 const __collate_type& __collate = use_facet<__collate_type>(*this);
68 return (__collate.compare(__s1.data(), __s1.data() + __s1.length(),
69 __s2.data(), __s2.data() + __s2.length()) < 0);
70 }
71
72 /**
73 * @brief Test for the presence of a facet.
74 *
75 * has_facet tests the locale argument for the presence of the facet type
76 * provided as the template parameter. Facets derived from the facet
77 * parameter will also return true.
78 *
79 * @param Facet The facet type to test the presence of.
80 * @param locale The locale to test.
81 * @return true if locale contains a facet of type Facet, else false.
82 * @throw std::bad_cast if locale doesn't contain the facet.
83 */
84 template<typename _Facet>
85 inline bool
86 has_facet(const locale& __loc) throw()
87 {
88 const size_t __i = _Facet::id._M_id();
89 const locale::facet** __facets = __loc._M_impl->_M_facets;
90 return (__i < __loc._M_impl->_M_facets_size && __facets[__i]);
91 }
92
93 /**
94 * @brief Return a facet.
95 *
96 * use_facet looks for and returns a reference to a facet of type Facet
97 * where Facet is the template parameter. If has_facet(locale) is true,
98 * there is a suitable facet to return. It throws std::bad_cast if the
99 * locale doesn't contain a facet of type Facet.
100 *
101 * @param Facet The facet type to access.
102 * @param locale The locale to use.
103 * @return Reference to facet of type Facet.
104 * @throw std::bad_cast if locale doesn't contain a facet of type Facet.
105 */
106 template<typename _Facet>
107 inline const _Facet&
108 use_facet(const locale& __loc)
109 {
110 const size_t __i = _Facet::id._M_id();
111 const locale::facet** __facets = __loc._M_impl->_M_facets;
112 if (!(__i < __loc._M_impl->_M_facets_size && __facets[__i]))
113 __throw_bad_cast();
114 return static_cast<const _Facet&>(*__facets[__i]);
115 }
116
117 // Routine to access a cache for the facet. If the cache didn't
118 // exist before, it gets constructed on the fly.
119 template<typename _Facet>
120 struct __use_cache
121 {
122 const _Facet*
123 operator() (const locale& __loc) const;
124 };
125
126 template<typename _CharT>
127 struct __use_cache<__numpunct_cache<_CharT> >
128 {
129 const __numpunct_cache<_CharT>*
130 operator() (const locale& __loc) const
131 {
132 const size_t __i = numpunct<_CharT>::id._M_id();
133 const locale::facet** __caches = __loc._M_impl->_M_caches;
134 if (!__caches[__i])
135 {
136 __numpunct_cache<_CharT>* __tmp = NULL;
137 try
138 {
139 __tmp = new __numpunct_cache<_CharT>;
140 __tmp->_M_cache(__loc);
141 }
142 catch(...)
143 {
144 delete __tmp;
145 __throw_exception_again;
146 }
147 __loc._M_impl->_M_install_cache(__tmp, __i);
148 }
149 return static_cast<const __numpunct_cache<_CharT>*>(__caches[__i]);
150 }
151 };
152
153 // Used by both numeric and monetary facets.
154 // Check to make sure that the __grouping_tmp string constructed in
155 // money_get or num_get matches the canonical grouping for a given
156 // locale.
157 // __grouping_tmp is parsed L to R
158 // 1,222,444 == __grouping_tmp of "\1\3\3"
159 // __grouping is parsed R to L
160 // 1,222,444 == __grouping of "\3" == "\3\3\3"
161 static bool
162 __verify_grouping(const char* __grouping, size_t __grouping_size,
163 const string& __grouping_tmp);
164
165 template<typename _CharT, typename _InIter>
166 _InIter
167 num_get<_CharT, _InIter>::
168 _M_extract_float(_InIter __beg, _InIter __end, ios_base& __io,
169 ios_base::iostate& __err, string& __xtrc) const
170 {
171 typedef char_traits<_CharT> __traits_type;
172 typedef typename numpunct<_CharT>::__cache_type __cache_type;
173 __use_cache<__cache_type> __uc;
174 const locale& __loc = __io._M_getloc();
175 const __cache_type* __lc = __uc(__loc);
176 const _CharT* __lit = __lc->_M_atoms_in;
177
178 // True if a mantissa is found.
179 bool __found_mantissa = false;
180
181 // First check for sign.
182 if (__beg != __end)
183 {
184 const char_type __c = *__beg;
185 const bool __plus = __traits_type::eq(__c, __lit[_S_iplus]);
186 if ((__plus || __traits_type::eq(__c, __lit[_S_iminus]))
187 && !__traits_type::eq(__c, __lc->_M_decimal_point)
188 && (!__lc->_M_use_grouping
189 || !__traits_type::eq(__c, __lc->_M_thousands_sep)))
190 {
191 __xtrc += __plus ? _S_atoms_in[_S_iplus]
192 : _S_atoms_in[_S_iminus];
193 ++__beg;
194 }
195 }
196
197 // Next, look for leading zeros.
198 while (__beg != __end)
199 {
200 const char_type __c = *__beg;
201 if (__traits_type::eq(__c, __lc->_M_decimal_point)
202 || (__lc->_M_use_grouping
203 && __traits_type::eq(__c, __lc->_M_thousands_sep)))
204 break;
205 else if (__traits_type::eq(__c, __lit[_S_izero]))
206 {
207 if (!__found_mantissa)
208 {
209 __xtrc += _S_atoms_in[_S_izero];
210 __found_mantissa = true;
211 }
212 ++__beg;
213 }
214 else
215 break;
216 }
217
218 // Only need acceptable digits for floating point numbers.
219 bool __found_dec = false;
220 bool __found_sci = false;
221 string __found_grouping;
222 int __sep_pos = 0;
223 bool __e;
224 const char_type* __p;
225 while (__beg != __end)
226 {
227 // According to 22.2.2.1.2, p8-9, first look for thousands_sep
228 // and decimal_point.
229 const char_type __c = *__beg;
230 if (__lc->_M_use_grouping
231 && __traits_type::eq(__c, __lc->_M_thousands_sep))
232 {
233 if (!__found_dec && !__found_sci)
234 {
235 // NB: Thousands separator at the beginning of a string
236 // is a no-no, as is two consecutive thousands separators.
237 if (__sep_pos)
238 {
239 __found_grouping += static_cast<char>(__sep_pos);
240 __sep_pos = 0;
241 ++__beg;
242 }
243 else
244 {
245 __err |= ios_base::failbit;
246 break;
247 }
248 }
249 else
250 break;
251 }
252 else if (__traits_type::eq(__c, __lc->_M_decimal_point))
253 {
254 if (!__found_dec && !__found_sci)
255 {
256 // If no grouping chars are seen, no grouping check
257 // is applied. Therefore __found_grouping is adjusted
258 // only if decimal_point comes after some thousands_sep.
259 if (__found_grouping.size())
260 __found_grouping += static_cast<char>(__sep_pos);
261 __xtrc += '.';
262 __found_dec = true;
263 ++__beg;
264 }
265 else
266 break;
267 }
268 else if (__p = __traits_type::find(__lit + _S_izero, 10, __c))
269 {
270 __xtrc += _S_atoms_in[__p - __lit];
271 __found_mantissa = true;
272 ++__sep_pos;
273 ++__beg;
274 }
275 else if ((__e = __traits_type::eq(__c, __lit[_S_ie])
276 || __traits_type::eq(__c, __lit[_S_iE]))
277 && __found_mantissa && !__found_sci)
278 {
279 // Scientific notation.
280 __xtrc += __e ? _S_atoms_in[_S_ie] : _S_atoms_in[_S_iE];
281 __found_sci = true;
282
283 // Remove optional plus or minus sign, if they exist.
284 if (++__beg != __end)
285 {
286 const bool __plus = __traits_type::eq(*__beg, __lit[_S_iplus]);
287 if (__plus || __traits_type::eq(*__beg, __lit[_S_iminus]))
288 {
289 __xtrc += __plus ? _S_atoms_in[_S_iplus]
290 : _S_atoms_in[_S_iminus];
291 ++__beg;
292 }
293 }
294 }
295 else
296 // Not a valid input item.
297 break;
298 }
299
300 // Digit grouping is checked. If grouping and found_grouping don't
301 // match, then get very very upset, and set failbit.
302 if (__lc->_M_use_grouping && __found_grouping.size())
303 {
304 // Add the ending grouping if a decimal wasn't found.
305 if (!__found_dec)
306 __found_grouping += static_cast<char>(__sep_pos);
307
308 if (!std::__verify_grouping(__lc->_M_grouping, __lc->_M_grouping_size,
309 __found_grouping))
310 __err |= ios_base::failbit;
311 }
312
313 // Finish up.
314 __xtrc += char();
315 if (__beg == __end)
316 __err |= ios_base::eofbit;
317 return __beg;
318 }
319
320 template<typename _CharT, typename _InIter>
321 template<typename _ValueT>
322 _InIter
323 num_get<_CharT, _InIter>::
324 _M_extract_int(_InIter __beg, _InIter __end, ios_base& __io,
325 ios_base::iostate& __err, _ValueT& __v) const
326 {
327 typedef char_traits<_CharT> __traits_type;
328 typedef typename numpunct<_CharT>::__cache_type __cache_type;
329 __use_cache<__cache_type> __uc;
330 const locale& __loc = __io._M_getloc();
331 const __cache_type* __lc = __uc(__loc);
332 const _CharT* __lit = __lc->_M_atoms_in;
333
334 // NB: Iff __basefield == 0, __base can change based on contents.
335 const ios_base::fmtflags __basefield = __io.flags() & ios_base::basefield;
336 const bool __oct = __basefield == ios_base::oct;
337 int __base = __oct ? 8 : (__basefield == ios_base::hex ? 16 : 10);
338
339 // True if numeric digits are found.
340 bool __found_num = false;
341
342 // First check for sign.
343 bool __negative = false;
344 if (__beg != __end)
345 {
346 const char_type __c = *__beg;
347 if (numeric_limits<_ValueT>::is_signed)
348 __negative = __traits_type::eq(__c, __lit[_S_iminus]);
349 if ((__negative || __traits_type::eq(__c, __lit[_S_iplus]))
350 && !__traits_type::eq(__c, __lc->_M_decimal_point)
351 && (!__lc->_M_use_grouping
352 || !__traits_type::eq(__c, __lc->_M_thousands_sep)))
353 ++__beg;
354 }
355
356 // Next, look for leading zeros and check required digits
357 // for base formats.
358 while (__beg != __end)
359 {
360 const char_type __c = *__beg;
361 if (__traits_type::eq(__c, __lc->_M_decimal_point)
362 || (__lc->_M_use_grouping
363 && __traits_type::eq(__c, __lc->_M_thousands_sep)))
364 break;
365 else if (__traits_type::eq(__c, __lit[_S_izero])
366 && (!__found_num || __base == 10))
367 {
368 __found_num = true;
369 ++__beg;
370 }
371 else if (__found_num)
372 {
373 if (__traits_type::eq(__c, __lit[_S_ix])
374 || __traits_type::eq(__c, __lit[_S_iX]))
375 {
376 if (__basefield == 0)
377 __base = 16;
378 if (__base == 16)
379 {
380 __found_num = false;
381 ++__beg;
382 }
383 }
384 else if (__basefield == 0)
385 __base = 8;
386 break;
387 }
388 else
389 break;
390 }
391
392 // At this point, base is determined. If not hex, only allow
393 // base digits as valid input.
394 const size_t __len = __base == 16 ? _S_iend : __base;
395
396 // Extract.
397 string __found_grouping;
398 int __sep_pos = 0;
399 bool __overflow = false;
400 _ValueT __result = 0;
401 const char_type* __lit_zero = __lit + _S_izero;
402 const char_type* __p;
403 if (__negative)
404 {
405 const _ValueT __min = numeric_limits<_ValueT>::min() / __base;
406 for (; __beg != __end; ++__beg)
407 {
408 // According to 22.2.2.1.2, p8-9, first look for thousands_sep
409 // and decimal_point.
410 const char_type __c = *__beg;
411 if (__lc->_M_use_grouping
412 && __traits_type::eq(__c, __lc->_M_thousands_sep))
413 {
414 // NB: Thousands separator at the beginning of a string
415 // is a no-no, as is two consecutive thousands separators.
416 if (__sep_pos)
417 {
418 __found_grouping += static_cast<char>(__sep_pos);
419 __sep_pos = 0;
420 }
421 else
422 {
423 __err |= ios_base::failbit;
424 break;
425 }
426 }
427 else if (__traits_type::eq(__c, __lc->_M_decimal_point))
428 break;
429 else if (__p = __traits_type::find(__lit_zero, __len, __c))
430 {
431 int __digit = __p - __lit_zero;
432 if (__digit > 15)
433 __digit -= 6;
434 if (__result < __min)
435 __overflow = true;
436 else
437 {
438 const _ValueT __new_result = __result * __base - __digit;
439 __overflow |= __new_result > __result;
440 __result = __new_result;
441 ++__sep_pos;
442 __found_num = true;
443 }
444 }
445 else
446 // Not a valid input item.
447 break;
448 }
449 }
450 else
451 {
452 const _ValueT __max = numeric_limits<_ValueT>::max() / __base;
453 for (; __beg != __end; ++__beg)
454 {
455 const char_type __c = *__beg;
456 if (__lc->_M_use_grouping
457 && __traits_type::eq(__c, __lc->_M_thousands_sep))
458 {
459 if (__sep_pos)
460 {
461 __found_grouping += static_cast<char>(__sep_pos);
462 __sep_pos = 0;
463 }
464 else
465 {
466 __err |= ios_base::failbit;
467 break;
468 }
469 }
470 else if (__traits_type::eq(__c, __lc->_M_decimal_point))
471 break;
472 else if (__p = __traits_type::find(__lit_zero, __len, __c))
473 {
474 int __digit = __p - __lit_zero;
475 if (__digit > 15)
476 __digit -= 6;
477 if (__result > __max)
478 __overflow = true;
479 else
480 {
481 const _ValueT __new_result = __result * __base + __digit;
482 __overflow |= __new_result < __result;
483 __result = __new_result;
484 ++__sep_pos;
485 __found_num = true;
486 }
487 }
488 else
489 break;
490 }
491 }
492
493 // Digit grouping is checked. If grouping and found_grouping don't
494 // match, then get very very upset, and set failbit.
495 if (__lc->_M_use_grouping && __found_grouping.size())
496 {
497 // Add the ending grouping.
498 __found_grouping += static_cast<char>(__sep_pos);
499
500 if (!std::__verify_grouping(__lc->_M_grouping, __lc->_M_grouping_size,
501 __found_grouping))
502 __err |= ios_base::failbit;
503 }
504
505 if (!(__err & ios_base::failbit) && !__overflow
506 && __found_num)
507 __v = __result;
508 else
509 __err |= ios_base::failbit;
510
511 if (__beg == __end)
512 __err |= ios_base::eofbit;
513 return __beg;
514 }
515
516 // _GLIBCXX_RESOLVE_LIB_DEFECTS
517 // 17. Bad bool parsing
518 template<typename _CharT, typename _InIter>
519 _InIter
520 num_get<_CharT, _InIter>::
521 do_get(iter_type __beg, iter_type __end, ios_base& __io,
522 ios_base::iostate& __err, bool& __v) const
523 {
524 if (!(__io.flags() & ios_base::boolalpha))
525 {
526 // Parse bool values as long.
527 // NB: We can't just call do_get(long) here, as it might
528 // refer to a derived class.
529 long __l = -1;
530 __beg = _M_extract_int(__beg, __end, __io, __err, __l);
531 if (__l == 0 || __l == 1)
532 __v = __l;
533 else
534 __err |= ios_base::failbit;
535 }
536 else
537 {
538 // Parse bool values as alphanumeric.
539 typedef char_traits<_CharT> __traits_type;
540 typedef typename numpunct<_CharT>::__cache_type __cache_type;
541 __use_cache<__cache_type> __uc;
542 const locale& __loc = __io._M_getloc();
543 const __cache_type* __lc = __uc(__loc);
544
545 bool __testf = true;
546 bool __testt = true;
547 size_t __n;
548 for (__n = 0; __beg != __end; ++__n, ++__beg)
549 {
550 if (__testf)
551 if (__n < __lc->_M_falsename_size)
552 __testf = __traits_type::eq(*__beg, __lc->_M_falsename[__n]);
553 else
554 break;
555
556 if (__testt)
557 if (__n < __lc->_M_truename_size)
558 __testt = __traits_type::eq(*__beg, __lc->_M_truename[__n]);
559 else
560 break;
561
562 if (!__testf && !__testt)
563 break;
564 }
565 if (__testf && __n == __lc->_M_falsename_size)
566 __v = 0;
567 else if (__testt && __n == __lc->_M_truename_size)
568 __v = 1;
569 else
570 __err |= ios_base::failbit;
571
572 if (__beg == __end)
573 __err |= ios_base::eofbit;
574 }
575 return __beg;
576 }
577
578 template<typename _CharT, typename _InIter>
579 _InIter
580 num_get<_CharT, _InIter>::
581 do_get(iter_type __beg, iter_type __end, ios_base& __io,
582 ios_base::iostate& __err, long& __v) const
583 { return _M_extract_int(__beg, __end, __io, __err, __v); }
584
585 template<typename _CharT, typename _InIter>
586 _InIter
587 num_get<_CharT, _InIter>::
588 do_get(iter_type __beg, iter_type __end, ios_base& __io,
589 ios_base::iostate& __err, unsigned short& __v) const
590 { return _M_extract_int(__beg, __end, __io, __err, __v); }
591
592 template<typename _CharT, typename _InIter>
593 _InIter
594 num_get<_CharT, _InIter>::
595 do_get(iter_type __beg, iter_type __end, ios_base& __io,
596 ios_base::iostate& __err, unsigned int& __v) const
597 { return _M_extract_int(__beg, __end, __io, __err, __v); }
598
599 template<typename _CharT, typename _InIter>
600 _InIter
601 num_get<_CharT, _InIter>::
602 do_get(iter_type __beg, iter_type __end, ios_base& __io,
603 ios_base::iostate& __err, unsigned long& __v) const
604 { return _M_extract_int(__beg, __end, __io, __err, __v); }
605
606 #ifdef _GLIBCXX_USE_LONG_LONG
607 template<typename _CharT, typename _InIter>
608 _InIter
609 num_get<_CharT, _InIter>::
610 do_get(iter_type __beg, iter_type __end, ios_base& __io,
611 ios_base::iostate& __err, long long& __v) const
612 { return _M_extract_int(__beg, __end, __io, __err, __v); }
613
614 template<typename _CharT, typename _InIter>
615 _InIter
616 num_get<_CharT, _InIter>::
617 do_get(iter_type __beg, iter_type __end, ios_base& __io,
618 ios_base::iostate& __err, unsigned long long& __v) const
619 { return _M_extract_int(__beg, __end, __io, __err, __v); }
620 #endif
621
622 template<typename _CharT, typename _InIter>
623 _InIter
624 num_get<_CharT, _InIter>::
625 do_get(iter_type __beg, iter_type __end, ios_base& __io,
626 ios_base::iostate& __err, float& __v) const
627 {
628 string __xtrc;
629 __xtrc.reserve(32);
630 __beg = _M_extract_float(__beg, __end, __io, __err, __xtrc);
631 std::__convert_to_v(__xtrc.c_str(), __v, __err, _S_get_c_locale());
632 return __beg;
633 }
634
635 template<typename _CharT, typename _InIter>
636 _InIter
637 num_get<_CharT, _InIter>::
638 do_get(iter_type __beg, iter_type __end, ios_base& __io,
639 ios_base::iostate& __err, double& __v) const
640 {
641 string __xtrc;
642 __xtrc.reserve(32);
643 __beg = _M_extract_float(__beg, __end, __io, __err, __xtrc);
644 std::__convert_to_v(__xtrc.c_str(), __v, __err, _S_get_c_locale());
645 return __beg;
646 }
647
648 template<typename _CharT, typename _InIter>
649 _InIter
650 num_get<_CharT, _InIter>::
651 do_get(iter_type __beg, iter_type __end, ios_base& __io,
652 ios_base::iostate& __err, long double& __v) const
653 {
654 string __xtrc;
655 __xtrc.reserve(32);
656 __beg = _M_extract_float(__beg, __end, __io, __err, __xtrc);
657 std::__convert_to_v(__xtrc.c_str(), __v, __err, _S_get_c_locale());
658 return __beg;
659 }
660
661 template<typename _CharT, typename _InIter>
662 _InIter
663 num_get<_CharT, _InIter>::
664 do_get(iter_type __beg, iter_type __end, ios_base& __io,
665 ios_base::iostate& __err, void*& __v) const
666 {
667 // Prepare for hex formatted input.
668 typedef ios_base::fmtflags fmtflags;
669 const fmtflags __fmt = __io.flags();
670 __io.flags(__fmt & ~ios_base::basefield | ios_base::hex);
671
672 unsigned long __ul;
673 __beg = _M_extract_int(__beg, __end, __io, __err, __ul);
674
675 // Reset from hex formatted input.
676 __io.flags(__fmt);
677
678 if (!(__err & ios_base::failbit))
679 __v = reinterpret_cast<void*>(__ul);
680 else
681 __err |= ios_base::failbit;
682 return __beg;
683 }
684
685 // For use by integer and floating-point types after they have been
686 // converted into a char_type string.
687 template<typename _CharT, typename _OutIter>
688 void
689 num_put<_CharT, _OutIter>::
690 _M_pad(_CharT __fill, streamsize __w, ios_base& __io,
691 _CharT* __new, const _CharT* __cs, int& __len) const
692 {
693 // [22.2.2.2.2] Stage 3.
694 // If necessary, pad.
695 __pad<_CharT, char_traits<_CharT> >::_S_pad(__io, __fill, __new, __cs,
696 __w, __len, true);
697 __len = static_cast<int>(__w);
698 }
699
700 // Forwarding functions to peel signed from unsigned integer types.
701 template<typename _CharT>
702 inline int
703 __int_to_char(_CharT* __bufend, long __v, const _CharT* __lit,
704 ios_base::fmtflags __flags)
705 {
706 unsigned long __ul = static_cast<unsigned long>(__v);
707 bool __neg = false;
708 if (__v < 0)
709 {
710 __ul = -__ul;
711 __neg = true;
712 }
713 return __int_to_char(__bufend, __ul, __lit, __flags, __neg);
714 }
715
716 template<typename _CharT>
717 inline int
718 __int_to_char(_CharT* __bufend, unsigned long __v, const _CharT* __lit,
719 ios_base::fmtflags __flags)
720 { return __int_to_char(__bufend, __v, __lit, __flags, false); }
721
722 #ifdef _GLIBCXX_USE_LONG_LONG
723 template<typename _CharT>
724 inline int
725 __int_to_char(_CharT* __bufend, long long __v, const _CharT* __lit,
726 ios_base::fmtflags __flags)
727 {
728 unsigned long long __ull = static_cast<unsigned long long>(__v);
729 bool __neg = false;
730 if (__v < 0)
731 {
732 __ull = -__ull;
733 __neg = true;
734 }
735 return __int_to_char(__bufend, __ull, __lit, __flags, __neg);
736 }
737
738 template<typename _CharT>
739 inline int
740 __int_to_char(_CharT* __bufend, unsigned long long __v, const _CharT* __lit,
741 ios_base::fmtflags __flags)
742 { return __int_to_char(__bufend, __v, __lit, __flags, false); }
743 #endif
744
745 template<typename _CharT, typename _ValueT>
746 int
747 __int_to_char(_CharT* __bufend, _ValueT __v, const _CharT* __lit,
748 ios_base::fmtflags __flags, bool __neg)
749 {
750 // Don't write base if already 0.
751 const bool __showbase = (__flags & ios_base::showbase) && __v;
752 const ios_base::fmtflags __basefield = __flags & ios_base::basefield;
753 _CharT* __buf = __bufend - 1;
754
755 if (__builtin_expect(__basefield != ios_base::oct &&
756 __basefield != ios_base::hex, true))
757 {
758 // Decimal.
759 do
760 {
761 *__buf-- = __lit[(__v % 10) + __num_base::_S_odigits];
762 __v /= 10;
763 }
764 while (__v != 0);
765 if (__neg)
766 *__buf-- = __lit[__num_base::_S_ominus];
767 else if (__flags & ios_base::showpos)
768 *__buf-- = __lit[__num_base::_S_oplus];
769 }
770 else if (__basefield == ios_base::oct)
771 {
772 // Octal.
773 do
774 {
775 *__buf-- = __lit[(__v & 0x7) + __num_base::_S_odigits];
776 __v >>= 3;
777 }
778 while (__v != 0);
779 if (__showbase)
780 *__buf-- = __lit[__num_base::_S_odigits];
781 }
782 else
783 {
784 // Hex.
785 const bool __uppercase = __flags & ios_base::uppercase;
786 const int __case_offset = __uppercase ? __num_base::_S_oudigits
787 : __num_base::_S_odigits;
788 do
789 {
790 *__buf-- = __lit[(__v & 0xf) + __case_offset];
791 __v >>= 4;
792 }
793 while (__v != 0);
794 if (__showbase)
795 {
796 // 'x' or 'X'
797 *__buf-- = __lit[__num_base::_S_ox + __uppercase];
798 // '0'
799 *__buf-- = __lit[__num_base::_S_odigits];
800 }
801 }
802 return __bufend - __buf - 1;
803 }
804
805 template<typename _CharT, typename _OutIter>
806 void
807 num_put<_CharT, _OutIter>::
808 _M_group_int(const char* __grouping, size_t __grouping_size, _CharT __sep,
809 ios_base& __io, _CharT* __new, _CharT* __cs, int& __len) const
810 {
811 // By itself __add_grouping cannot deal correctly with __cs when
812 // ios::showbase is set and ios_base::oct || ios_base::hex.
813 // Therefore we take care "by hand" of the initial 0, 0x or 0X.
814 // However, remember that the latter do not occur if the number
815 // printed is '0' (__len == 1).
816 streamsize __off = 0;
817 const ios_base::fmtflags __basefield = __io.flags()
818 & ios_base::basefield;
819 if ((__io.flags() & ios_base::showbase) && __len > 1)
820 if (__basefield == ios_base::oct)
821 {
822 __off = 1;
823 __new[0] = __cs[0];
824 }
825 else if (__basefield == ios_base::hex)
826 {
827 __off = 2;
828 __new[0] = __cs[0];
829 __new[1] = __cs[1];
830 }
831 _CharT* __p;
832 __p = std::__add_grouping(__new + __off, __sep, __grouping,
833 __grouping_size, __cs + __off,
834 __cs + __len);
835 __len = __p - __new;
836 }
837
838 template<typename _CharT, typename _OutIter>
839 template<typename _ValueT>
840 _OutIter
841 num_put<_CharT, _OutIter>::
842 _M_insert_int(_OutIter __s, ios_base& __io, _CharT __fill,
843 _ValueT __v) const
844 {
845 typedef typename numpunct<_CharT>::__cache_type __cache_type;
846 __use_cache<__cache_type> __uc;
847 const locale& __loc = __io._M_getloc();
848 const __cache_type* __lc = __uc(__loc);
849 const _CharT* __lit = __lc->_M_atoms_out;
850
851 // Long enough to hold hex, dec, and octal representations.
852 const int __ilen = 4 * sizeof(_ValueT);
853 _CharT* __cs = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
854 * __ilen));
855
856 // [22.2.2.2.2] Stage 1, numeric conversion to character.
857 // Result is returned right-justified in the buffer.
858 int __len;
859 __len = __int_to_char(__cs + __ilen, __v, __lit, __io.flags());
860 __cs += __ilen - __len;
861
862 // Add grouping, if necessary.
863 if (__lc->_M_use_grouping)
864 {
865 // Grouping can add (almost) as many separators as the
866 // number of digits, but no more.
867 _CharT* __cs2 = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
868 * __len * 2));
869 _M_group_int(__lc->_M_grouping, __lc->_M_grouping_size,
870 __lc->_M_thousands_sep, __io, __cs2, __cs, __len);
871 __cs = __cs2;
872 }
873
874 // Pad.
875 const streamsize __w = __io.width();
876 if (__w > static_cast<streamsize>(__len))
877 {
878 _CharT* __cs3 = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
879 * __w));
880 _M_pad(__fill, __w, __io, __cs3, __cs, __len);
881 __cs = __cs3;
882 }
883 __io.width(0);
884
885 // [22.2.2.2.2] Stage 4.
886 // Write resulting, fully-formatted string to output iterator.
887 return std::__write(__s, __cs, __len);
888 }
889
890 template<typename _CharT, typename _OutIter>
891 void
892 num_put<_CharT, _OutIter>::
893 _M_group_float(const char* __grouping, size_t __grouping_size, _CharT __sep,
894 const _CharT* __p, _CharT* __new, _CharT* __cs, int& __len) const
895 {
896 // _GLIBCXX_RESOLVE_LIB_DEFECTS
897 // 282. What types does numpunct grouping refer to?
898 // Add grouping, if necessary.
899 _CharT* __p2;
900 const int __declen = __p ? __p - __cs : __len;
901 __p2 = std::__add_grouping(__new, __sep, __grouping, __grouping_size,
902 __cs, __cs + __declen);
903
904 // Tack on decimal part.
905 int __newlen = __p2 - __new;
906 if (__p)
907 {
908 char_traits<_CharT>::copy(__p2, __p, __len - __declen);
909 __newlen += __len - __declen;
910 }
911 __len = __newlen;
912 }
913
914 // The following code uses snprintf (or sprintf(), when
915 // _GLIBCXX_USE_C99 is not defined) to convert floating point values
916 // for insertion into a stream. An optimization would be to replace
917 // them with code that works directly on a wide buffer and then use
918 // __pad to do the padding. It would be good to replace them anyway
919 // to gain back the efficiency that C++ provides by knowing up front
920 // the type of the values to insert. Also, sprintf is dangerous
921 // since may lead to accidental buffer overruns. This
922 // implementation follows the C++ standard fairly directly as
923 // outlined in 22.2.2.2 [lib.locale.num.put]
924 template<typename _CharT, typename _OutIter>
925 template<typename _ValueT>
926 _OutIter
927 num_put<_CharT, _OutIter>::
928 _M_insert_float(_OutIter __s, ios_base& __io, _CharT __fill, char __mod,
929 _ValueT __v) const
930 {
931 typedef typename numpunct<_CharT>::__cache_type __cache_type;
932 __use_cache<__cache_type> __uc;
933 const locale& __loc = __io._M_getloc();
934 const __cache_type* __lc = __uc(__loc);
935
936 // Note: digits10 is rounded down: add 1 to ensure the maximum
937 // available precision. Then, in general, one more 1 needs to
938 // be added since, when the %{g,G} conversion specifiers are
939 // chosen inside _S_format_float, the precision field is "the
940 // maximum number of significant digits", *not* the "number of
941 // digits to appear after the decimal point", as happens for
942 // %{e,E,f,F} (C99, 7.19.6.1,4).
943 const int __max_digits = numeric_limits<_ValueT>::digits10 + 2;
944
945 // Use default precision if out of range.
946 streamsize __prec = __io.precision();
947 if (__prec > static_cast<streamsize>(__max_digits))
948 __prec = static_cast<streamsize>(__max_digits);
949 else if (__prec < static_cast<streamsize>(0))
950 __prec = static_cast<streamsize>(6);
951
952 // [22.2.2.2.2] Stage 1, numeric conversion to character.
953 int __len;
954 // Long enough for the max format spec.
955 char __fbuf[16];
956
957 #ifdef _GLIBCXX_USE_C99
958 // First try a buffer perhaps big enough (for sure sufficient
959 // for non-ios_base::fixed outputs)
960 int __cs_size = __max_digits * 3;
961 char* __cs = static_cast<char*>(__builtin_alloca(__cs_size));
962
963 _S_format_float(__io, __fbuf, __mod);
964 __len = std::__convert_from_v(__cs, __cs_size, __fbuf, __v,
965 _S_get_c_locale(), __prec);
966
967 // If the buffer was not large enough, try again with the correct size.
968 if (__len >= __cs_size)
969 {
970 __cs_size = __len + 1;
971 __cs = static_cast<char*>(__builtin_alloca(__cs_size));
972 __len = std::__convert_from_v(__cs, __cs_size, __fbuf, __v,
973 _S_get_c_locale(), __prec);
974 }
975 #else
976 // Consider the possibility of long ios_base::fixed outputs
977 const bool __fixed = __io.flags() & ios_base::fixed;
978 const int __max_exp = numeric_limits<_ValueT>::max_exponent10;
979
980 // The size of the output string is computed as follows.
981 // ios_base::fixed outputs may need up to __max_exp+1 chars
982 // for the integer part + up to __max_digits chars for the
983 // fractional part + 3 chars for sign, decimal point, '\0'. On
984 // the other hand, for non-fixed outputs __max_digits*3 chars
985 // are largely sufficient.
986 const int __cs_size = __fixed ? __max_exp + __max_digits + 4
987 : __max_digits * 3;
988 char* __cs = static_cast<char*>(__builtin_alloca(__cs_size));
989
990 _S_format_float(__io, __fbuf, __mod);
991 __len = std::__convert_from_v(__cs, 0, __fbuf, __v,
992 _S_get_c_locale(), __prec);
993 #endif
994
995 // [22.2.2.2.2] Stage 2, convert to char_type, using correct
996 // numpunct.decimal_point() values for '.' and adding grouping.
997 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
998
999 _CharT* __ws = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
1000 * __len));
1001 __ctype.widen(__cs, __cs + __len, __ws);
1002
1003 // Replace decimal point.
1004 const _CharT __cdec = __ctype.widen('.');
1005 const _CharT __dec = __lc->_M_decimal_point;
1006 const _CharT* __p;
1007 if (__p = char_traits<_CharT>::find(__ws, __len, __cdec))
1008 __ws[__p - __ws] = __dec;
1009
1010 // Add grouping, if necessary.
1011 if (__lc->_M_use_grouping)
1012 {
1013 // Grouping can add (almost) as many separators as the
1014 // number of digits, but no more.
1015 _CharT* __ws2 = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
1016 * __len * 2));
1017 _M_group_float(__lc->_M_grouping, __lc->_M_grouping_size,
1018 __lc->_M_thousands_sep, __p, __ws2, __ws, __len);
1019 __ws = __ws2;
1020 }
1021
1022 // Pad.
1023 const streamsize __w = __io.width();
1024 if (__w > static_cast<streamsize>(__len))
1025 {
1026 _CharT* __ws3 = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
1027 * __w));
1028 _M_pad(__fill, __w, __io, __ws3, __ws, __len);
1029 __ws = __ws3;
1030 }
1031 __io.width(0);
1032
1033 // [22.2.2.2.2] Stage 4.
1034 // Write resulting, fully-formatted string to output iterator.
1035 return std::__write(__s, __ws, __len);
1036 }
1037
1038 template<typename _CharT, typename _OutIter>
1039 _OutIter
1040 num_put<_CharT, _OutIter>::
1041 do_put(iter_type __s, ios_base& __io, char_type __fill, bool __v) const
1042 {
1043 const ios_base::fmtflags __flags = __io.flags();
1044 if ((__flags & ios_base::boolalpha) == 0)
1045 {
1046 unsigned long __uv = __v;
1047 __s = _M_insert_int(__s, __io, __fill, __uv);
1048 }
1049 else
1050 {
1051 typedef typename numpunct<_CharT>::__cache_type __cache_type;
1052 __use_cache<__cache_type> __uc;
1053 const locale& __loc = __io._M_getloc();
1054 const __cache_type* __lc = __uc(__loc);
1055
1056 const _CharT* __name = __v ? __lc->_M_truename
1057 : __lc->_M_falsename;
1058 int __len = __v ? __lc->_M_truename_size
1059 : __lc->_M_falsename_size;
1060
1061 const streamsize __w = __io.width();
1062 if (__w > static_cast<streamsize>(__len))
1063 {
1064 _CharT* __cs = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
1065 * __w));
1066 _M_pad(__fill, __w, __io, __cs, __name, __len);
1067 __name = __cs;
1068 }
1069 __io.width(0);
1070 __s = std::__write(__s, __name, __len);
1071 }
1072 return __s;
1073 }
1074
1075 template<typename _CharT, typename _OutIter>
1076 _OutIter
1077 num_put<_CharT, _OutIter>::
1078 do_put(iter_type __s, ios_base& __io, char_type __fill, long __v) const
1079 { return _M_insert_int(__s, __io, __fill, __v); }
1080
1081 template<typename _CharT, typename _OutIter>
1082 _OutIter
1083 num_put<_CharT, _OutIter>::
1084 do_put(iter_type __s, ios_base& __io, char_type __fill,
1085 unsigned long __v) const
1086 { return _M_insert_int(__s, __io, __fill, __v); }
1087
1088 #ifdef _GLIBCXX_USE_LONG_LONG
1089 template<typename _CharT, typename _OutIter>
1090 _OutIter
1091 num_put<_CharT, _OutIter>::
1092 do_put(iter_type __s, ios_base& __b, char_type __fill, long long __v) const
1093 { return _M_insert_int(__s, __b, __fill, __v); }
1094
1095 template<typename _CharT, typename _OutIter>
1096 _OutIter
1097 num_put<_CharT, _OutIter>::
1098 do_put(iter_type __s, ios_base& __io, char_type __fill,
1099 unsigned long long __v) const
1100 { return _M_insert_int(__s, __io, __fill, __v); }
1101 #endif
1102
1103 template<typename _CharT, typename _OutIter>
1104 _OutIter
1105 num_put<_CharT, _OutIter>::
1106 do_put(iter_type __s, ios_base& __io, char_type __fill, double __v) const
1107 { return _M_insert_float(__s, __io, __fill, char(), __v); }
1108
1109 template<typename _CharT, typename _OutIter>
1110 _OutIter
1111 num_put<_CharT, _OutIter>::
1112 do_put(iter_type __s, ios_base& __io, char_type __fill,
1113 long double __v) const
1114 { return _M_insert_float(__s, __io, __fill, 'L', __v); }
1115
1116 template<typename _CharT, typename _OutIter>
1117 _OutIter
1118 num_put<_CharT, _OutIter>::
1119 do_put(iter_type __s, ios_base& __io, char_type __fill,
1120 const void* __v) const
1121 {
1122 const ios_base::fmtflags __flags = __io.flags();
1123 const ios_base::fmtflags __fmt = ~(ios_base::showpos | ios_base::basefield
1124 | ios_base::uppercase | ios_base::internal);
1125 __io.flags(__flags & __fmt | (ios_base::hex | ios_base::showbase));
1126
1127 __s = _M_insert_int(__s, __io, __fill,
1128 reinterpret_cast<unsigned long>(__v));
1129 __io.flags(__flags);
1130 return __s;
1131 }
1132
1133
1134 template<typename _CharT, typename _InIter>
1135 _InIter
1136 money_get<_CharT, _InIter>::
1137 do_get(iter_type __beg, iter_type __end, bool __intl, ios_base& __io,
1138 ios_base::iostate& __err, long double& __units) const
1139 {
1140 string_type __str;
1141 __beg = this->do_get(__beg, __end, __intl, __io, __err, __str);
1142
1143 const int __cs_size = __str.size() + 1;
1144 char* __cs = static_cast<char*>(__builtin_alloca(__cs_size));
1145 const locale __loc = __io.getloc();
1146 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
1147 const _CharT* __wcs = __str.c_str();
1148 __ctype.narrow(__wcs, __wcs + __cs_size, char(), __cs);
1149 std::__convert_to_v(__cs, __units, __err, _S_get_c_locale());
1150 return __beg;
1151 }
1152
1153 template<typename _CharT, typename _InIter>
1154 _InIter
1155 money_get<_CharT, _InIter>::
1156 do_get(iter_type __beg, iter_type __end, bool __intl, ios_base& __io,
1157 ios_base::iostate& __err, string_type& __units) const
1158 {
1159 // These contortions are quite unfortunate.
1160 typedef moneypunct<_CharT, true> __money_true;
1161 typedef moneypunct<_CharT, false> __money_false;
1162 typedef money_base::part part;
1163 typedef typename string_type::size_type size_type;
1164
1165 const locale __loc = __io.getloc();
1166 const __money_true& __mpt = use_facet<__money_true>(__loc);
1167 const __money_false& __mpf = use_facet<__money_false>(__loc);
1168 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
1169
1170 const money_base::pattern __p = __intl ? __mpt.neg_format()
1171 : __mpf.neg_format();
1172
1173 const string_type __pos_sign = __intl ? __mpt.positive_sign()
1174 : __mpf.positive_sign();
1175 const string_type __neg_sign = __intl ? __mpt.negative_sign()
1176 : __mpf.negative_sign();
1177 const char_type __d = __intl ? __mpt.decimal_point()
1178 : __mpf.decimal_point();
1179 const char_type __sep = __intl ? __mpt.thousands_sep()
1180 : __mpf.thousands_sep();
1181
1182 const string __grouping = __intl ? __mpt.grouping() : __mpf.grouping();
1183
1184 // Set to deduced positive or negative sign, depending.
1185 string_type __sign;
1186 // String of grouping info from thousands_sep plucked from __units.
1187 string __grouping_tmp;
1188 // Marker for thousands_sep position.
1189 int __sep_pos = 0;
1190 // If input iterator is in a valid state.
1191 bool __testvalid = true;
1192 // Flag marking when a decimal point is found.
1193 bool __testdecfound = false;
1194
1195 // The tentative returned string is stored here.
1196 string_type __tmp_units;
1197
1198 for (int __i = 0; __beg != __end && __i < 4 && __testvalid; ++__i)
1199 {
1200 char_type __c;
1201 const part __which = static_cast<part>(__p.field[__i]);
1202 switch (__which)
1203 {
1204 case money_base::symbol:
1205 if (__io.flags() & ios_base::showbase
1206 || __i < 2 || __sign.size() > 1
1207 || ((static_cast<part>(__p.field[3]) != money_base::none)
1208 && __i == 2))
1209 {
1210 // According to 22.2.6.1.2.2, symbol is required
1211 // if (__io.flags() & ios_base::showbase),
1212 // otherwise is optional and consumed only if
1213 // other characters are needed to complete the
1214 // format.
1215 const string_type __symbol = __intl ? __mpt.curr_symbol()
1216 : __mpf.curr_symbol();
1217 const size_type __len = __symbol.size();
1218 size_type __j = 0;
1219 for (; __beg != __end && __j < __len
1220 && *__beg == __symbol[__j]; ++__beg, ++__j);
1221 // When (__io.flags() & ios_base::showbase)
1222 // symbol is required.
1223 if (__j != __len && (__io.flags() & ios_base::showbase))
1224 __testvalid = false;
1225 }
1226 break;
1227 case money_base::sign:
1228 // Sign might not exist, or be more than one character long.
1229 if (__pos_sign.size() && *__beg == __pos_sign[0])
1230 {
1231 __sign = __pos_sign;
1232 ++__beg;
1233 }
1234 else if (__neg_sign.size() && *__beg == __neg_sign[0])
1235 {
1236 __sign = __neg_sign;
1237 ++__beg;
1238 }
1239 else if (__pos_sign.size() && __neg_sign.size())
1240 {
1241 // Sign is mandatory.
1242 __testvalid = false;
1243 }
1244 break;
1245 case money_base::value:
1246 // Extract digits, remove and stash away the
1247 // grouping of found thousands separators.
1248 for (; __beg != __end; ++__beg)
1249 if (__ctype.is(ctype_base::digit, __c = *__beg))
1250 {
1251 __tmp_units += __c;
1252 ++__sep_pos;
1253 }
1254 else if (__c == __d && !__testdecfound)
1255 {
1256 __grouping_tmp += static_cast<char>(__sep_pos);
1257 __sep_pos = 0;
1258 __testdecfound = true;
1259 }
1260 else if (__c == __sep)
1261 {
1262 if (__grouping.size())
1263 {
1264 // Mark position for later analysis.
1265 __grouping_tmp += static_cast<char>(__sep_pos);
1266 __sep_pos = 0;
1267 }
1268 else
1269 {
1270 __testvalid = false;
1271 break;
1272 }
1273 }
1274 else
1275 break;
1276 break;
1277 case money_base::space:
1278 case money_base::none:
1279 // Only if not at the end of the pattern.
1280 if (__i != 3)
1281 for (; __beg != __end
1282 && __ctype.is(ctype_base::space, *__beg); ++__beg);
1283 break;
1284 }
1285 }
1286
1287 // Need to get the rest of the sign characters, if they exist.
1288 if (__sign.size() > 1)
1289 {
1290 const size_type __len = __sign.size();
1291 size_type __i = 1;
1292 for (; __beg != __end && __i < __len; ++__i)
1293 for (; __beg != __end
1294 && *__beg != __sign[__i]; ++__beg);
1295
1296 if (__i != __len)
1297 __testvalid = false;
1298 }
1299
1300 if (__testvalid && __tmp_units.size())
1301 {
1302 const char_type __zero = __ctype.widen('0');
1303
1304 // Strip leading zeros.
1305 if (__tmp_units.size() > 1)
1306 {
1307 const size_type __first = __tmp_units.find_first_not_of(__zero);
1308 const bool __only_zeros = __first == string_type::npos;
1309 if (__first)
1310 __tmp_units.erase(0, __only_zeros ? __tmp_units.size() - 1
1311 : __first);
1312 }
1313
1314 // 22.2.6.1.2, p4
1315 if (__sign.size() && __sign == __neg_sign
1316 && __tmp_units[0] != __zero)
1317 __tmp_units.insert(__tmp_units.begin(), __ctype.widen('-'));
1318
1319 // Test for grouping fidelity.
1320 if (__grouping.size() && __grouping_tmp.size())
1321 {
1322 if (!std::__verify_grouping(__grouping.data(),
1323 __grouping.size(),
1324 __grouping_tmp))
1325 __testvalid = false;
1326 }
1327
1328 // Iff not enough digits were supplied after the decimal-point.
1329 if (__testdecfound)
1330 {
1331 const int __frac = __intl ? __mpt.frac_digits()
1332 : __mpf.frac_digits();
1333 if (__frac > 0 && __sep_pos != __frac)
1334 __testvalid = false;
1335 }
1336 }
1337 else
1338 __testvalid = false;
1339
1340 // Iff no more characters are available.
1341 if (__beg == __end)
1342 __err |= ios_base::eofbit;
1343
1344 // Iff valid sequence is not recognized.
1345 if (!__testvalid)
1346 __err |= ios_base::failbit;
1347 else
1348 // Use the "swap trick" to copy __tmp_units into __units.
1349 __tmp_units.swap(__units);
1350
1351 return __beg;
1352 }
1353
1354 template<typename _CharT, typename _OutIter>
1355 _OutIter
1356 money_put<_CharT, _OutIter>::
1357 do_put(iter_type __s, bool __intl, ios_base& __io, char_type __fill,
1358 long double __units) const
1359 {
1360 const locale __loc = __io.getloc();
1361 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
1362 #ifdef _GLIBCXX_USE_C99
1363 // First try a buffer perhaps big enough.
1364 int __cs_size = 64;
1365 char* __cs = static_cast<char*>(__builtin_alloca(__cs_size));
1366 // _GLIBCXX_RESOLVE_LIB_DEFECTS
1367 // 328. Bad sprintf format modifier in money_put<>::do_put()
1368 int __len = std::__convert_from_v(__cs, __cs_size, "%.0Lf", __units,
1369 _S_get_c_locale());
1370 // If the buffer was not large enough, try again with the correct size.
1371 if (__len >= __cs_size)
1372 {
1373 __cs_size = __len + 1;
1374 __cs = static_cast<char*>(__builtin_alloca(__cs_size));
1375 __len = std::__convert_from_v(__cs, __cs_size, "%.0Lf", __units,
1376 _S_get_c_locale());
1377 }
1378 #else
1379 // max_exponent10 + 1 for the integer part, + 2 for sign and '\0'.
1380 const int __cs_size = numeric_limits<long double>::max_exponent10 + 3;
1381 char* __cs = static_cast<char*>(__builtin_alloca(__cs_size));
1382 int __len = std::__convert_from_v(__cs, 0, "%.0Lf", __units,
1383 _S_get_c_locale());
1384 #endif
1385 _CharT* __ws = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
1386 * __cs_size));
1387 __ctype.widen(__cs, __cs + __len, __ws);
1388 const string_type __digits(__ws, __len);
1389 return this->do_put(__s, __intl, __io, __fill, __digits);
1390 }
1391
1392 template<typename _CharT, typename _OutIter>
1393 _OutIter
1394 money_put<_CharT, _OutIter>::
1395 do_put(iter_type __s, bool __intl, ios_base& __io, char_type __fill,
1396 const string_type& __digits) const
1397 {
1398 typedef typename string_type::size_type size_type;
1399 typedef money_base::part part;
1400
1401 const locale __loc = __io.getloc();
1402 const size_type __width = static_cast<size_type>(__io.width());
1403
1404 // These contortions are quite unfortunate.
1405 typedef moneypunct<_CharT, true> __money_true;
1406 typedef moneypunct<_CharT, false> __money_false;
1407 const __money_true& __mpt = use_facet<__money_true>(__loc);
1408 const __money_false& __mpf = use_facet<__money_false>(__loc);
1409 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
1410
1411 // Determine if negative or positive formats are to be used, and
1412 // discard leading negative_sign if it is present.
1413 const char_type* __beg = __digits.data();
1414 const char_type* __end = __beg + __digits.size();
1415 money_base::pattern __p;
1416 string_type __sign;
1417 if (*__beg != __ctype.widen('-'))
1418 {
1419 __p = __intl ? __mpt.pos_format() : __mpf.pos_format();
1420 __sign = __intl ? __mpt.positive_sign() : __mpf.positive_sign();
1421 }
1422 else
1423 {
1424 __p = __intl ? __mpt.neg_format() : __mpf.neg_format();
1425 __sign = __intl ? __mpt.negative_sign() : __mpf.negative_sign();
1426 ++__beg;
1427 }
1428
1429 // Look for valid numbers in the current ctype facet within input digits.
1430 __end = __ctype.scan_not(ctype_base::digit, __beg, __end);
1431 if (__beg != __end)
1432 {
1433 // Assume valid input, and attempt to format.
1434 // Break down input numbers into base components, as follows:
1435 // final_value = grouped units + (decimal point) + (digits)
1436 string_type __res;
1437 string_type __value;
1438 const string_type __symbol = __intl ? __mpt.curr_symbol()
1439 : __mpf.curr_symbol();
1440
1441 // Deal with decimal point, decimal digits.
1442 const int __frac = __intl ? __mpt.frac_digits()
1443 : __mpf.frac_digits();
1444 if (__frac > 0)
1445 {
1446 const char_type __d = __intl ? __mpt.decimal_point()
1447 : __mpf.decimal_point();
1448 if (__end - __beg >= __frac)
1449 {
1450 __value = string_type(__end - __frac, __end);
1451 __value.insert(__value.begin(), __d);
1452 __end -= __frac;
1453 }
1454 else
1455 {
1456 // Have to pad zeros in the decimal position.
1457 __value = string_type(__beg, __end);
1458 const int __paddec = __frac - (__end - __beg);
1459 const char_type __zero = __ctype.widen('0');
1460 __value.insert(__value.begin(), __paddec, __zero);
1461 __value.insert(__value.begin(), __d);
1462 __beg = __end;
1463 }
1464 }
1465
1466 // Add thousands separators to non-decimal digits, per
1467 // grouping rules.
1468 if (__beg != __end)
1469 {
1470 const string __grouping = __intl ? __mpt.grouping()
1471 : __mpf.grouping();
1472 if (__grouping.size())
1473 {
1474 const char_type __sep = __intl ? __mpt.thousands_sep()
1475 : __mpf.thousands_sep();
1476 const char* __gbeg = __grouping.data();
1477 const size_t __glen = __grouping.size();
1478 const int __n = (__end - __beg) * 2;
1479 _CharT* __ws2 =
1480 static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) * __n));
1481 _CharT* __ws_end = std::__add_grouping(__ws2, __sep, __gbeg,
1482 __glen, __beg, __end);
1483 __value.insert(0, __ws2, __ws_end - __ws2);
1484 }
1485 else
1486 __value.insert(0, string_type(__beg, __end));
1487 }
1488
1489 // Calculate length of resulting string.
1490 const ios_base::fmtflags __f = __io.flags() & ios_base::adjustfield;
1491 size_type __len = __value.size() + __sign.size();
1492 __len += (__io.flags() & ios_base::showbase) ? __symbol.size() : 0;
1493 const bool __testipad = __f == ios_base::internal && __len < __width;
1494
1495 // Fit formatted digits into the required pattern.
1496 for (int __i = 0; __i < 4; ++__i)
1497 {
1498 const part __which = static_cast<part>(__p.field[__i]);
1499 switch (__which)
1500 {
1501 case money_base::symbol:
1502 if (__io.flags() & ios_base::showbase)
1503 __res += __symbol;
1504 break;
1505 case money_base::sign:
1506 // Sign might not exist, or be more than one
1507 // charater long. In that case, add in the rest
1508 // below.
1509 if (__sign.size())
1510 __res += __sign[0];
1511 break;
1512 case money_base::value:
1513 __res += __value;
1514 break;
1515 case money_base::space:
1516 // At least one space is required, but if internal
1517 // formatting is required, an arbitrary number of
1518 // fill spaces will be necessary.
1519 if (__testipad)
1520 __res += string_type(__width - __len, __fill);
1521 else
1522 __res += __ctype.widen(__fill);
1523 break;
1524 case money_base::none:
1525 if (__testipad)
1526 __res += string_type(__width - __len, __fill);
1527 break;
1528 }
1529 }
1530
1531 // Special case of multi-part sign parts.
1532 if (__sign.size() > 1)
1533 __res += string_type(__sign.begin() + 1, __sign.end());
1534
1535 // Pad, if still necessary.
1536 __len = __res.size();
1537 if (__width > __len)
1538 {
1539 if (__f == ios_base::left)
1540 // After.
1541 __res.append(__width - __len, __fill);
1542 else
1543 // Before.
1544 __res.insert(0, string_type(__width - __len, __fill));
1545 __len = __width;
1546 }
1547
1548 // Write resulting, fully-formatted string to output iterator.
1549 __s = std::__write(__s, __res.data(), __len);
1550 }
1551 __io.width(0);
1552 return __s;
1553 }
1554
1555
1556 // NB: Not especially useful. Without an ios_base object or some
1557 // kind of locale reference, we are left clawing at the air where
1558 // the side of the mountain used to be...
1559 template<typename _CharT, typename _InIter>
1560 time_base::dateorder
1561 time_get<_CharT, _InIter>::do_date_order() const
1562 { return time_base::no_order; }
1563
1564 // Recursively expand a strftime format string and parse it. Starts w/ %x
1565 // and %X from do_get_time() and do_get_date(), which translate to a more
1566 // specific string, which may contain yet more strings. I.e. %x => %r =>
1567 // %H:%M:%S => extracted characters.
1568 template<typename _CharT, typename _InIter>
1569 void
1570 time_get<_CharT, _InIter>::
1571 _M_extract_via_format(iter_type& __beg, iter_type& __end, ios_base& __io,
1572 ios_base::iostate& __err, tm* __tm,
1573 const _CharT* __format) const
1574 {
1575 const locale __loc = __io.getloc();
1576 const __timepunct<_CharT>& __tp = use_facet<__timepunct<_CharT> >(__loc);
1577 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
1578 const size_t __len = char_traits<_CharT>::length(__format);
1579
1580 for (size_t __i = 0; __beg != __end && __i < __len && !__err; ++__i)
1581 {
1582 if (__ctype.narrow(__format[__i], 0) == '%')
1583 {
1584 // Verify valid formatting code, attempt to extract.
1585 char __c = __ctype.narrow(__format[++__i], 0);
1586 int __mem = 0;
1587 if (__c == 'E' || __c == 'O')
1588 __c = __ctype.narrow(__format[++__i], 0);
1589 switch (__c)
1590 {
1591 const char* __cs;
1592 _CharT __wcs[10];
1593 case 'a':
1594 // Abbreviated weekday name [tm_wday]
1595 const char_type* __days1[7];
1596 __tp._M_days_abbreviated(__days1);
1597 _M_extract_name(__beg, __end, __tm->tm_wday, __days1, 7,
1598 __ctype, __err);
1599 break;
1600 case 'A':
1601 // Weekday name [tm_wday].
1602 const char_type* __days2[7];
1603 __tp._M_days(__days2);
1604 _M_extract_name(__beg, __end, __tm->tm_wday, __days2, 7,
1605 __ctype, __err);
1606 break;
1607 case 'h':
1608 case 'b':
1609 // Abbreviated month name [tm_mon]
1610 const char_type* __months1[12];
1611 __tp._M_months_abbreviated(__months1);
1612 _M_extract_name(__beg, __end, __tm->tm_mon, __months1, 12,
1613 __ctype, __err);
1614 break;
1615 case 'B':
1616 // Month name [tm_mon].
1617 const char_type* __months2[12];
1618 __tp._M_months(__months2);
1619 _M_extract_name(__beg, __end, __tm->tm_mon, __months2, 12,
1620 __ctype, __err);
1621 break;
1622 case 'c':
1623 // Default time and date representation.
1624 const char_type* __dt[2];
1625 __tp._M_date_time_formats(__dt);
1626 _M_extract_via_format(__beg, __end, __io, __err, __tm,
1627 __dt[0]);
1628 break;
1629 case 'd':
1630 // Day [01, 31]. [tm_mday]
1631 _M_extract_num(__beg, __end, __tm->tm_mday, 1, 31, 2,
1632 __ctype, __err);
1633 break;
1634 case 'e':
1635 // Day [1, 31], with single digits preceded by
1636 // space. [tm_mday]
1637 if (__ctype.is(ctype_base::space, *__beg))
1638 _M_extract_num(++__beg, __end, __tm->tm_mday, 1, 9, 1,
1639 __ctype, __err);
1640 else
1641 _M_extract_num(__beg, __end, __tm->tm_mday, 10, 31, 2,
1642 __ctype, __err);
1643 break;
1644 case 'D':
1645 // Equivalent to %m/%d/%y.[tm_mon, tm_mday, tm_year]
1646 __cs = "%m/%d/%y";
1647 __ctype.widen(__cs, __cs + 9, __wcs);
1648 _M_extract_via_format(__beg, __end, __io, __err, __tm,
1649 __wcs);
1650 break;
1651 case 'H':
1652 // Hour [00, 23]. [tm_hour]
1653 _M_extract_num(__beg, __end, __tm->tm_hour, 0, 23, 2,
1654 __ctype, __err);
1655 break;
1656 case 'I':
1657 // Hour [01, 12]. [tm_hour]
1658 _M_extract_num(__beg, __end, __tm->tm_hour, 1, 12, 2,
1659 __ctype, __err);
1660 break;
1661 case 'm':
1662 // Month [01, 12]. [tm_mon]
1663 _M_extract_num(__beg, __end, __mem, 1, 12, 2, __ctype,
1664 __err);
1665 if (!__err)
1666 __tm->tm_mon = __mem - 1;
1667 break;
1668 case 'M':
1669 // Minute [00, 59]. [tm_min]
1670 _M_extract_num(__beg, __end, __tm->tm_min, 0, 59, 2,
1671 __ctype, __err);
1672 break;
1673 case 'n':
1674 if (__ctype.narrow(*__beg, 0) == '\n')
1675 ++__beg;
1676 else
1677 __err |= ios_base::failbit;
1678 break;
1679 case 'R':
1680 // Equivalent to (%H:%M).
1681 __cs = "%H:%M";
1682 __ctype.widen(__cs, __cs + 6, __wcs);
1683 _M_extract_via_format(__beg, __end, __io, __err, __tm,
1684 __wcs);
1685 break;
1686 case 'S':
1687 // Seconds.
1688 _M_extract_num(__beg, __end, __tm->tm_sec, 0, 59, 2,
1689 __ctype, __err);
1690 break;
1691 case 't':
1692 if (__ctype.narrow(*__beg, 0) == '\t')
1693 ++__beg;
1694 else
1695 __err |= ios_base::failbit;
1696 break;
1697 case 'T':
1698 // Equivalent to (%H:%M:%S).
1699 __cs = "%H:%M:%S";
1700 __ctype.widen(__cs, __cs + 9, __wcs);
1701 _M_extract_via_format(__beg, __end, __io, __err, __tm,
1702 __wcs);
1703 break;
1704 case 'x':
1705 // Locale's date.
1706 const char_type* __dates[2];
1707 __tp._M_date_formats(__dates);
1708 _M_extract_via_format(__beg, __end, __io, __err, __tm,
1709 __dates[0]);
1710 break;
1711 case 'X':
1712 // Locale's time.
1713 const char_type* __times[2];
1714 __tp._M_time_formats(__times);
1715 _M_extract_via_format(__beg, __end, __io, __err, __tm,
1716 __times[0]);
1717 break;
1718 case 'y':
1719 case 'C': // C99
1720 // Two digit year. [tm_year]
1721 _M_extract_num(__beg, __end, __tm->tm_year, 0, 99, 2,
1722 __ctype, __err);
1723 break;
1724 case 'Y':
1725 // Year [1900). [tm_year]
1726 _M_extract_num(__beg, __end, __mem, 0, 9999, 4,
1727 __ctype, __err);
1728 if (!__err)
1729 __tm->tm_year = __mem - 1900;
1730 break;
1731 case 'Z':
1732 // Timezone info.
1733 if (__ctype.is(ctype_base::upper, *__beg))
1734 {
1735 int __tmp;
1736 _M_extract_name(__beg, __end, __tmp,
1737 __timepunct_cache<_CharT>::_S_timezones,
1738 14, __ctype, __err);
1739
1740 // GMT requires special effort.
1741 if (__beg != __end && !__err && __tmp == 0
1742 && (*__beg == __ctype.widen('-')
1743 || *__beg == __ctype.widen('+')))
1744 {
1745 _M_extract_num(__beg, __end, __tmp, 0, 23, 2,
1746 __ctype, __err);
1747 _M_extract_num(__beg, __end, __tmp, 0, 59, 2,
1748 __ctype, __err);
1749 }
1750 }
1751 else
1752 __err |= ios_base::failbit;
1753 break;
1754 default:
1755 // Not recognized.
1756 __err |= ios_base::failbit;
1757 }
1758 }
1759 else
1760 {
1761 // Verify format and input match, extract and discard.
1762 if (__format[__i] == *__beg)
1763 ++__beg;
1764 else
1765 __err |= ios_base::failbit;
1766 }
1767 }
1768 }
1769
1770 template<typename _CharT, typename _InIter>
1771 void
1772 time_get<_CharT, _InIter>::
1773 _M_extract_num(iter_type& __beg, iter_type& __end, int& __member,
1774 int __min, int __max, size_t __len,
1775 const ctype<_CharT>& __ctype,
1776 ios_base::iostate& __err) const
1777 {
1778 // As-is works for __len = 1, 2, 4, the values actually used.
1779 int __mult = __len == 2 ? 10 : (__len == 4 ? 1000 : 1);
1780
1781 ++__min;
1782 size_t __i = 0;
1783 int __value = 0;
1784 for (; __beg != __end && __i < __len; ++__beg, ++__i)
1785 {
1786 const char __c = __ctype.narrow(*__beg, '*');
1787 if (__c >= '0' && __c <= '9')
1788 {
1789 __value = __value * 10 + (__c - '0');
1790 const int __valuec = __value * __mult;
1791 if (__valuec > __max || __valuec + __mult < __min)
1792 break;
1793 __mult /= 10;
1794 }
1795 else
1796 break;
1797 }
1798 if (__i == __len)
1799 __member = __value;
1800 else
1801 __err |= ios_base::failbit;
1802 }
1803
1804 // Assumptions:
1805 // All elements in __names are unique.
1806 template<typename _CharT, typename _InIter>
1807 void
1808 time_get<_CharT, _InIter>::
1809 _M_extract_name(iter_type& __beg, iter_type& __end, int& __member,
1810 const _CharT** __names, size_t __indexlen,
1811 const ctype<_CharT>& __ctype,
1812 ios_base::iostate& __err) const
1813 {
1814 typedef char_traits<_CharT> __traits_type;
1815 int* __matches = static_cast<int*>(__builtin_alloca(sizeof(int)
1816 * __indexlen));
1817 size_t __nmatches = 0;
1818 size_t __pos = 0;
1819 bool __testvalid = true;
1820 const char_type* __name;
1821
1822 // Look for initial matches.
1823 // NB: Some of the locale data is in the form of all lowercase
1824 // names, and some is in the form of initially-capitalized
1825 // names. Look for both.
1826 if (__beg != __end)
1827 {
1828 const char_type __c = *__beg;
1829 for (size_t __i1 = 0; __i1 < __indexlen; ++__i1)
1830 if (__c == __names[__i1][0]
1831 || __c == __ctype.toupper(__names[__i1][0]))
1832 __matches[__nmatches++] = __i1;
1833 }
1834
1835 while (__nmatches > 1)
1836 {
1837 // Find smallest matching string.
1838 size_t __minlen = 10;
1839 for (size_t __i2 = 0; __i2 < __nmatches; ++__i2)
1840 __minlen = std::min(__minlen,
1841 __traits_type::length(__names[__matches[__i2]]));
1842 ++__beg;
1843 if (__pos < __minlen && __beg != __end)
1844 {
1845 ++__pos;
1846 for (size_t __i3 = 0; __i3 < __nmatches; ++__i3)
1847 {
1848 __name = __names[__matches[__i3]];
1849 if (__name[__pos] != *__beg)
1850 __matches[__i3] = __matches[--__nmatches];
1851 }
1852 }
1853 else
1854 break;
1855 }
1856
1857 if (__nmatches == 1)
1858 {
1859 // If there was only one match, the first compare is redundant.
1860 if (__pos == 0)
1861 {
1862 ++__pos;
1863 ++__beg;
1864 }
1865
1866 // Make sure found name is completely extracted.
1867 __name = __names[__matches[0]];
1868 const size_t __len = __traits_type::length(__name);
1869 while (__pos < __len && __beg != __end && __name[__pos] == *__beg)
1870 ++__beg, ++__pos;
1871
1872 if (__len == __pos)
1873 __member = __matches[0];
1874 else
1875 __testvalid = false;
1876 }
1877 else
1878 __testvalid = false;
1879 if (!__testvalid)
1880 __err |= ios_base::failbit;
1881 }
1882
1883 template<typename _CharT, typename _InIter>
1884 _InIter
1885 time_get<_CharT, _InIter>::
1886 do_get_time(iter_type __beg, iter_type __end, ios_base& __io,
1887 ios_base::iostate& __err, tm* __tm) const
1888 {
1889 _CharT __wcs[3];
1890 const char* __cs = "%X";
1891 const locale __loc = __io.getloc();
1892 ctype<_CharT> const& __ctype = use_facet<ctype<_CharT> >(__loc);
1893 __ctype.widen(__cs, __cs + 3, __wcs);
1894 _M_extract_via_format(__beg, __end, __io, __err, __tm, __wcs);
1895 if (__beg == __end)
1896 __err |= ios_base::eofbit;
1897 return __beg;
1898 }
1899
1900 template<typename _CharT, typename _InIter>
1901 _InIter
1902 time_get<_CharT, _InIter>::
1903 do_get_date(iter_type __beg, iter_type __end, ios_base& __io,
1904 ios_base::iostate& __err, tm* __tm) const
1905 {
1906 _CharT __wcs[3];
1907 const char* __cs = "%x";
1908 const locale __loc = __io.getloc();
1909 ctype<_CharT> const& __ctype = use_facet<ctype<_CharT> >(__loc);
1910 __ctype.widen(__cs, __cs + 3, __wcs);
1911 _M_extract_via_format(__beg, __end, __io, __err, __tm, __wcs);
1912 if (__beg == __end)
1913 __err |= ios_base::eofbit;
1914 return __beg;
1915 }
1916
1917 template<typename _CharT, typename _InIter>
1918 _InIter
1919 time_get<_CharT, _InIter>::
1920 do_get_weekday(iter_type __beg, iter_type __end, ios_base& __io,
1921 ios_base::iostate& __err, tm* __tm) const
1922 {
1923 typedef char_traits<_CharT> __traits_type;
1924 const locale __loc = __io.getloc();
1925 const __timepunct<_CharT>& __tp = use_facet<__timepunct<_CharT> >(__loc);
1926 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
1927 const char_type* __days[7];
1928 __tp._M_days_abbreviated(__days);
1929 int __tmpwday;
1930 _M_extract_name(__beg, __end, __tmpwday, __days, 7, __ctype, __err);
1931
1932 // Check to see if non-abbreviated name exists, and extract.
1933 // NB: Assumes both _M_days and _M_days_abbreviated organized in
1934 // exact same order, first to last, such that the resulting
1935 // __days array with the same index points to a day, and that
1936 // day's abbreviated form.
1937 // NB: Also assumes that an abbreviated name is a subset of the name.
1938 if (!__err)
1939 {
1940 size_t __pos = __traits_type::length(__days[__tmpwday]);
1941 __tp._M_days(__days);
1942 const char_type* __name = __days[__tmpwday];
1943 if (__name[__pos] == *__beg)
1944 {
1945 // Extract the rest of it.
1946 const size_t __len = __traits_type::length(__name);
1947 while (__pos < __len && __beg != __end
1948 && __name[__pos] == *__beg)
1949 ++__beg, ++__pos;
1950 if (__len != __pos)
1951 __err |= ios_base::failbit;
1952 }
1953 if (!__err)
1954 __tm->tm_wday = __tmpwday;
1955 }
1956 if (__beg == __end)
1957 __err |= ios_base::eofbit;
1958 return __beg;
1959 }
1960
1961 template<typename _CharT, typename _InIter>
1962 _InIter
1963 time_get<_CharT, _InIter>::
1964 do_get_monthname(iter_type __beg, iter_type __end,
1965 ios_base& __io, ios_base::iostate& __err, tm* __tm) const
1966 {
1967 typedef char_traits<_CharT> __traits_type;
1968 const locale __loc = __io.getloc();
1969 const __timepunct<_CharT>& __tp = use_facet<__timepunct<_CharT> >(__loc);
1970 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
1971 const char_type* __months[12];
1972 __tp._M_months_abbreviated(__months);
1973 int __tmpmon;
1974 _M_extract_name(__beg, __end, __tmpmon, __months, 12, __ctype, __err);
1975
1976 // Check to see if non-abbreviated name exists, and extract.
1977 // NB: Assumes both _M_months and _M_months_abbreviated organized in
1978 // exact same order, first to last, such that the resulting
1979 // __months array with the same index points to a month, and that
1980 // month's abbreviated form.
1981 // NB: Also assumes that an abbreviated name is a subset of the name.
1982 if (!__err)
1983 {
1984 size_t __pos = __traits_type::length(__months[__tmpmon]);
1985 __tp._M_months(__months);
1986 const char_type* __name = __months[__tmpmon];
1987 if (__name[__pos] == *__beg)
1988 {
1989 // Extract the rest of it.
1990 const size_t __len = __traits_type::length(__name);
1991 while (__pos < __len && __beg != __end
1992 && __name[__pos] == *__beg)
1993 ++__beg, ++__pos;
1994 if (__len != __pos)
1995 __err |= ios_base::failbit;
1996 }
1997 if (!__err)
1998 __tm->tm_mon = __tmpmon;
1999 }
2000
2001 if (__beg == __end)
2002 __err |= ios_base::eofbit;
2003 return __beg;
2004 }
2005
2006 template<typename _CharT, typename _InIter>
2007 _InIter
2008 time_get<_CharT, _InIter>::
2009 do_get_year(iter_type __beg, iter_type __end, ios_base& __io,
2010 ios_base::iostate& __err, tm* __tm) const
2011 {
2012 const locale __loc = __io.getloc();
2013 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
2014
2015 size_t __i = 0;
2016 int __value = 0;
2017 for (; __beg != __end && __i < 4; ++__beg, ++__i)
2018 {
2019 const char __c = __ctype.narrow(*__beg, '*');
2020 if (__c >= '0' && __c <= '9')
2021 __value = __value * 10 + (__c - '0');
2022 else
2023 break;
2024 }
2025 if (__i == 2 || __i == 4)
2026 __tm->tm_year = __i == 2 ? __value : __value - 1900;
2027 else
2028 __err |= ios_base::failbit;
2029 if (__beg == __end)
2030 __err |= ios_base::eofbit;
2031 return __beg;
2032 }
2033
2034 template<typename _CharT, typename _OutIter>
2035 _OutIter
2036 time_put<_CharT, _OutIter>::
2037 put(iter_type __s, ios_base& __io, char_type __fill, const tm* __tm,
2038 const _CharT* __beg, const _CharT* __end) const
2039 {
2040 const locale __loc = __io.getloc();
2041 ctype<_CharT> const& __ctype = use_facet<ctype<_CharT> >(__loc);
2042 for (; __beg != __end; ++__beg)
2043 if (__ctype.narrow(*__beg, 0) != '%')
2044 {
2045 *__s = *__beg;
2046 ++__s;
2047 }
2048 else if (++__beg != __end)
2049 {
2050 char __format;
2051 char __mod = 0;
2052 const char __c = __ctype.narrow(*__beg, 0);
2053 if (__c != 'E' && __c != 'O')
2054 __format = __c;
2055 else if (++__beg != __end)
2056 {
2057 __mod = __c;
2058 __format = __ctype.narrow(*__beg, 0);
2059 }
2060 else
2061 break;
2062 __s = this->do_put(__s, __io, __fill, __tm,
2063 __format, __mod);
2064 }
2065 else
2066 break;
2067 return __s;
2068 }
2069
2070 template<typename _CharT, typename _OutIter>
2071 _OutIter
2072 time_put<_CharT, _OutIter>::
2073 do_put(iter_type __s, ios_base& __io, char_type, const tm* __tm,
2074 char __format, char __mod) const
2075 {
2076 const locale __loc = __io.getloc();
2077 ctype<_CharT> const& __ctype = use_facet<ctype<_CharT> >(__loc);
2078 __timepunct<_CharT> const& __tp = use_facet<__timepunct<_CharT> >(__loc);
2079
2080 // NB: This size is arbitrary. Should this be a data member,
2081 // initialized at construction?
2082 const size_t __maxlen = 64;
2083 char_type* __res = static_cast<char_type*>(__builtin_alloca(sizeof(char_type)
2084 * __maxlen));
2085
2086 // NB: In IEE 1003.1-200x, and perhaps other locale models, it
2087 // is possible that the format character will be longer than one
2088 // character. Possibilities include 'E' or 'O' followed by a
2089 // format character: if __mod is not the default argument, assume
2090 // it's a valid modifier.
2091 char_type __fmt[4];
2092 __fmt[0] = __ctype.widen('%');
2093 if (!__mod)
2094 {
2095 __fmt[1] = __format;
2096 __fmt[2] = char_type();
2097 }
2098 else
2099 {
2100 __fmt[1] = __mod;
2101 __fmt[2] = __format;
2102 __fmt[3] = char_type();
2103 }
2104
2105 __tp._M_put(__res, __maxlen, __fmt, __tm);
2106
2107 // Write resulting, fully-formatted string to output iterator.
2108 return std::__write(__s, __res, char_traits<char_type>::length(__res));
2109 }
2110
2111
2112 // Generic version does nothing.
2113 template<typename _CharT>
2114 int
2115 collate<_CharT>::_M_compare(const _CharT*, const _CharT*) const
2116 { return 0; }
2117
2118 // Generic version does nothing.
2119 template<typename _CharT>
2120 size_t
2121 collate<_CharT>::_M_transform(_CharT*, const _CharT*, size_t) const
2122 { return 0; }
2123
2124 template<typename _CharT>
2125 int
2126 collate<_CharT>::
2127 do_compare(const _CharT* __lo1, const _CharT* __hi1,
2128 const _CharT* __lo2, const _CharT* __hi2) const
2129 {
2130 // strcoll assumes zero-terminated strings so we make a copy
2131 // and then put a zero at the end.
2132 const string_type __one(__lo1, __hi1);
2133 const string_type __two(__lo2, __hi2);
2134
2135 const _CharT* __p = __one.c_str();
2136 const _CharT* __pend = __one.data() + __one.length();
2137 const _CharT* __q = __two.c_str();
2138 const _CharT* __qend = __two.data() + __two.length();
2139
2140 // strcoll stops when it sees a nul character so we break
2141 // the strings into zero-terminated substrings and pass those
2142 // to strcoll.
2143 for (;;)
2144 {
2145 const int __res = _M_compare(__p, __q);
2146 if (__res)
2147 return __res;
2148
2149 __p += char_traits<_CharT>::length(__p);
2150 __q += char_traits<_CharT>::length(__q);
2151 if (__p == __pend && __q == __qend)
2152 return 0;
2153 else if (__p == __pend)
2154 return -1;
2155 else if (__q == __qend)
2156 return 1;
2157
2158 __p++;
2159 __q++;
2160 }
2161 }
2162
2163 template<typename _CharT>
2164 typename collate<_CharT>::string_type
2165 collate<_CharT>::
2166 do_transform(const _CharT* __lo, const _CharT* __hi) const
2167 {
2168 // strxfrm assumes zero-terminated strings so we make a copy
2169 string_type __str(__lo, __hi);
2170
2171 const _CharT* __p = __str.c_str();
2172 const _CharT* __pend = __str.data() + __str.length();
2173
2174 size_t __len = (__hi - __lo) * 2;
2175
2176 string_type __ret;
2177
2178 // strxfrm stops when it sees a nul character so we break
2179 // the string into zero-terminated substrings and pass those
2180 // to strxfrm.
2181 for (;;)
2182 {
2183 // First try a buffer perhaps big enough.
2184 _CharT* __c =
2185 static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) * __len));
2186 size_t __res = _M_transform(__c, __p, __len);
2187 // If the buffer was not large enough, try again with the
2188 // correct size.
2189 if (__res >= __len)
2190 {
2191 __len = __res + 1;
2192 __c = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT)
2193 * __len));
2194 __res = _M_transform(__c, __p, __res + 1);
2195 }
2196
2197 __ret.append(__c, __res);
2198 __p += char_traits<_CharT>::length(__p);
2199 if (__p == __pend)
2200 return __ret;
2201
2202 __p++;
2203 __ret.push_back(_CharT());
2204 }
2205 }
2206
2207 template<typename _CharT>
2208 long
2209 collate<_CharT>::
2210 do_hash(const _CharT* __lo, const _CharT* __hi) const
2211 {
2212 unsigned long __val = 0;
2213 for (; __lo < __hi; ++__lo)
2214 __val = *__lo + ((__val << 7) |
2215 (__val >> (numeric_limits<unsigned long>::digits - 7)));
2216 return static_cast<long>(__val);
2217 }
2218
2219 // Construct correctly padded string, as per 22.2.2.2.2
2220 // Assumes
2221 // __newlen > __oldlen
2222 // __news is allocated for __newlen size
2223 // Used by both num_put and ostream inserters: if __num,
2224 // internal-adjusted objects are padded according to the rules below
2225 // concerning 0[xX] and +-, otherwise, exactly as right-adjusted
2226 // ones are.
2227
2228 // NB: Of the two parameters, _CharT can be deduced from the
2229 // function arguments. The other (_Traits) has to be explicitly specified.
2230 template<typename _CharT, typename _Traits>
2231 void
2232 __pad<_CharT, _Traits>::_S_pad(ios_base& __io, _CharT __fill,
2233 _CharT* __news, const _CharT* __olds,
2234 const streamsize __newlen,
2235 const streamsize __oldlen, const bool __num)
2236 {
2237 const size_t __plen = static_cast<size_t>(__newlen - __oldlen);
2238 const ios_base::fmtflags __adjust = __io.flags() & ios_base::adjustfield;
2239
2240 // Padding last.
2241 if (__adjust == ios_base::left)
2242 {
2243 _Traits::copy(__news, const_cast<_CharT*>(__olds), __oldlen);
2244 _Traits::assign(__news + __oldlen, __plen, __fill);
2245 return;
2246 }
2247
2248 size_t __mod = 0;
2249 if (__adjust == ios_base::internal && __num)
2250 {
2251 // Pad after the sign, if there is one.
2252 // Pad after 0[xX], if there is one.
2253 // Who came up with these rules, anyway? Jeeze.
2254 const locale& __loc = __io._M_getloc();
2255 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
2256 const _CharT __minus = __ctype.widen('-');
2257 const _CharT __plus = __ctype.widen('+');
2258 const bool __testsign = _Traits::eq(__olds[0], __minus)
2259 || _Traits::eq(__olds[0], __plus);
2260
2261 const bool __testhex = _Traits::eq(__ctype.widen('0'), __olds[0])
2262 && (_Traits::eq(__ctype.widen('x'), __olds[1])
2263 || _Traits::eq(__ctype.widen('X'), __olds[1]));
2264 if (__testhex)
2265 {
2266 __news[0] = __olds[0];
2267 __news[1] = __olds[1];
2268 __mod = 2;
2269 __news += 2;
2270 }
2271 else if (__testsign)
2272 {
2273 __news[0] = __olds[0];
2274 __mod = 1;
2275 ++__news;
2276 }
2277 // else Padding first.
2278 }
2279 _Traits::assign(__news, __plen, __fill);
2280 _Traits::copy(__news + __plen, const_cast<_CharT*>(__olds + __mod),
2281 __oldlen - __mod);
2282 }
2283
2284 bool
2285 __verify_grouping(const char* __grouping, size_t __grouping_size,
2286 const string& __grouping_tmp)
2287 {
2288 const size_t __n = __grouping_tmp.size() - 1;
2289 const size_t __min = std::min(__n, __grouping_size - 1);
2290 size_t __i = __n;
2291 bool __test = true;
2292
2293 // Parsed number groupings have to match the
2294 // numpunct::grouping string exactly, starting at the
2295 // right-most point of the parsed sequence of elements ...
2296 for (size_t __j = 0; __j < __min && __test; --__i, ++__j)
2297 __test = __grouping_tmp[__i] == __grouping[__j];
2298 for (; __i && __test; --__i)
2299 __test = __grouping_tmp[__i] == __grouping[__min];
2300 // ... but the last parsed grouping can be <= numpunct
2301 // grouping.
2302 __test &= __grouping_tmp[0] <= __grouping[__min];
2303 return __test;
2304 }
2305
2306 template<typename _CharT>
2307 _CharT*
2308 __add_grouping(_CharT* __s, _CharT __sep,
2309 const char* __gbeg, size_t __gsize,
2310 const _CharT* __first, const _CharT* __last)
2311 {
2312 if (__last - __first > *__gbeg)
2313 {
2314 const bool __bump = __gsize != 1;
2315 __s = std::__add_grouping(__s, __sep, __gbeg + __bump,
2316 __gsize - __bump, __first,
2317 __last - *__gbeg);
2318 __first = __last - *__gbeg;
2319 *__s++ = __sep;
2320 }
2321 do
2322 *__s++ = *__first++;
2323 while (__first != __last);
2324 return __s;
2325 }
2326
2327 // Inhibit implicit instantiations for required instantiations,
2328 // which are defined via explicit instantiations elsewhere.
2329 // NB: This syntax is a GNU extension.
2330 #if _GLIBCXX_EXTERN_TEMPLATE
2331 extern template class moneypunct<char, false>;
2332 extern template class moneypunct<char, true>;
2333 extern template class moneypunct_byname<char, false>;
2334 extern template class moneypunct_byname<char, true>;
2335 extern template class money_get<char>;
2336 extern template class money_put<char>;
2337 extern template class numpunct<char>;
2338 extern template class numpunct_byname<char>;
2339 extern template class num_get<char>;
2340 extern template class num_put<char>;
2341 extern template class __timepunct<char>;
2342 extern template class time_put<char>;
2343 extern template class time_put_byname<char>;
2344 extern template class time_get<char>;
2345 extern template class time_get_byname<char>;
2346 extern template class messages<char>;
2347 extern template class messages_byname<char>;
2348 extern template class ctype_byname<char>;
2349 extern template class codecvt_byname<char, char, mbstate_t>;
2350 extern template class collate<char>;
2351 extern template class collate_byname<char>;
2352
2353 extern template
2354 const codecvt<char, char, mbstate_t>&
2355 use_facet<codecvt<char, char, mbstate_t> >(const locale&);
2356
2357 extern template
2358 const collate<char>&
2359 use_facet<collate<char> >(const locale&);
2360
2361 extern template
2362 const numpunct<char>&
2363 use_facet<numpunct<char> >(const locale&);
2364
2365 extern template
2366 const num_put<char>&
2367 use_facet<num_put<char> >(const locale&);
2368
2369 extern template
2370 const num_get<char>&
2371 use_facet<num_get<char> >(const locale&);
2372
2373 extern template
2374 const moneypunct<char, true>&
2375 use_facet<moneypunct<char, true> >(const locale&);
2376
2377 extern template
2378 const moneypunct<char, false>&
2379 use_facet<moneypunct<char, false> >(const locale&);
2380
2381 extern template
2382 const money_put<char>&
2383 use_facet<money_put<char> >(const locale&);
2384
2385 extern template
2386 const money_get<char>&
2387 use_facet<money_get<char> >(const locale&);
2388
2389 extern template
2390 const __timepunct<char>&
2391 use_facet<__timepunct<char> >(const locale&);
2392
2393 extern template
2394 const time_put<char>&
2395 use_facet<time_put<char> >(const locale&);
2396
2397 extern template
2398 const time_get<char>&
2399 use_facet<time_get<char> >(const locale&);
2400
2401 extern template
2402 const messages<char>&
2403 use_facet<messages<char> >(const locale&);
2404
2405 extern template
2406 bool
2407 has_facet<ctype<char> >(const locale&);
2408
2409 extern template
2410 bool
2411 has_facet<codecvt<char, char, mbstate_t> >(const locale&);
2412
2413 extern template
2414 bool
2415 has_facet<collate<char> >(const locale&);
2416
2417 extern template
2418 bool
2419 has_facet<numpunct<char> >(const locale&);
2420
2421 extern template
2422 bool
2423 has_facet<num_put<char> >(const locale&);
2424
2425 extern template
2426 bool
2427 has_facet<num_get<char> >(const locale&);
2428
2429 extern template
2430 bool
2431 has_facet<moneypunct<char> >(const locale&);
2432
2433 extern template
2434 bool
2435 has_facet<money_put<char> >(const locale&);
2436
2437 extern template
2438 bool
2439 has_facet<money_get<char> >(const locale&);
2440
2441 extern template
2442 bool
2443 has_facet<__timepunct<char> >(const locale&);
2444
2445 extern template
2446 bool
2447 has_facet<time_put<char> >(const locale&);
2448
2449 extern template
2450 bool
2451 has_facet<time_get<char> >(const locale&);
2452
2453 extern template
2454 bool
2455 has_facet<messages<char> >(const locale&);
2456
2457 #ifdef _GLIBCXX_USE_WCHAR_T
2458 extern template class moneypunct<wchar_t, false>;
2459 extern template class moneypunct<wchar_t, true>;
2460 extern template class moneypunct_byname<wchar_t, false>;
2461 extern template class moneypunct_byname<wchar_t, true>;
2462 extern template class money_get<wchar_t>;
2463 extern template class money_put<wchar_t>;
2464 extern template class numpunct<wchar_t>;
2465 extern template class numpunct_byname<wchar_t>;
2466 extern template class num_get<wchar_t>;
2467 extern template class num_put<wchar_t>;
2468 extern template class __timepunct<wchar_t>;
2469 extern template class time_put<wchar_t>;
2470 extern template class time_put_byname<wchar_t>;
2471 extern template class time_get<wchar_t>;
2472 extern template class time_get_byname<wchar_t>;
2473 extern template class messages<wchar_t>;
2474 extern template class messages_byname<wchar_t>;
2475 extern template class ctype_byname<wchar_t>;
2476 extern template class codecvt_byname<wchar_t, char, mbstate_t>;
2477 extern template class collate<wchar_t>;
2478 extern template class collate_byname<wchar_t>;
2479
2480 extern template
2481 const codecvt<wchar_t, char, mbstate_t>&
2482 use_facet<codecvt<wchar_t, char, mbstate_t> >(locale const&);
2483
2484 extern template
2485 const collate<wchar_t>&
2486 use_facet<collate<wchar_t> >(const locale&);
2487
2488 extern template
2489 const numpunct<wchar_t>&
2490 use_facet<numpunct<wchar_t> >(const locale&);
2491
2492 extern template
2493 const num_put<wchar_t>&
2494 use_facet<num_put<wchar_t> >(const locale&);
2495
2496 extern template
2497 const num_get<wchar_t>&
2498 use_facet<num_get<wchar_t> >(const locale&);
2499
2500 extern template
2501 const moneypunct<wchar_t, true>&
2502 use_facet<moneypunct<wchar_t, true> >(const locale&);
2503
2504 extern template
2505 const moneypunct<wchar_t, false>&
2506 use_facet<moneypunct<wchar_t, false> >(const locale&);
2507
2508 extern template
2509 const money_put<wchar_t>&
2510 use_facet<money_put<wchar_t> >(const locale&);
2511
2512 extern template
2513 const money_get<wchar_t>&
2514 use_facet<money_get<wchar_t> >(const locale&);
2515
2516 extern template
2517 const __timepunct<wchar_t>&
2518 use_facet<__timepunct<wchar_t> >(const locale&);
2519
2520 extern template
2521 const time_put<wchar_t>&
2522 use_facet<time_put<wchar_t> >(const locale&);
2523
2524 extern template
2525 const time_get<wchar_t>&
2526 use_facet<time_get<wchar_t> >(const locale&);
2527
2528 extern template
2529 const messages<wchar_t>&
2530 use_facet<messages<wchar_t> >(const locale&);
2531
2532 extern template
2533 bool
2534 has_facet<ctype<wchar_t> >(const locale&);
2535
2536 extern template
2537 bool
2538 has_facet<codecvt<wchar_t, char, mbstate_t> >(const locale&);
2539
2540 extern template
2541 bool
2542 has_facet<collate<wchar_t> >(const locale&);
2543
2544 extern template
2545 bool
2546 has_facet<numpunct<wchar_t> >(const locale&);
2547
2548 extern template
2549 bool
2550 has_facet<num_put<wchar_t> >(const locale&);
2551
2552 extern template
2553 bool
2554 has_facet<num_get<wchar_t> >(const locale&);
2555
2556 extern template
2557 bool
2558 has_facet<moneypunct<wchar_t> >(const locale&);
2559
2560 extern template
2561 bool
2562 has_facet<money_put<wchar_t> >(const locale&);
2563
2564 extern template
2565 bool
2566 has_facet<money_get<wchar_t> >(const locale&);
2567
2568 extern template
2569 bool
2570 has_facet<__timepunct<wchar_t> >(const locale&);
2571
2572 extern template
2573 bool
2574 has_facet<time_put<wchar_t> >(const locale&);
2575
2576 extern template
2577 bool
2578 has_facet<time_get<wchar_t> >(const locale&);
2579
2580 extern template
2581 bool
2582 has_facet<messages<wchar_t> >(const locale&);
2583 #endif
2584 #endif
2585 } // namespace std
2586
2587 #endif