OSDN Git Service

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