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