OSDN Git Service

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