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