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