OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / src / locale-inst.cc
1 // Locale support -*- C++ -*-
2
3 // Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING.  If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
21
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction.  Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License.  This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
30
31 //
32 // ISO C++ 14882: 22.1  Locales
33 //
34
35 #include <locale>
36
37 // Instantiation configuration.
38 #ifndef C
39 # define C char
40 # define C_is_char
41 #endif
42
43 _GLIBCXX_BEGIN_NAMESPACE(std)
44
45   // moneypunct, money_get, and money_put
46   template class moneypunct<C, false>;
47   template class moneypunct<C, true>;
48   template struct __moneypunct_cache<C, false>;
49   template struct __moneypunct_cache<C, true>;
50   template class moneypunct_byname<C, false>;
51   template class moneypunct_byname<C, true>;
52 _GLIBCXX_BEGIN_LDBL_NAMESPACE
53   template class money_get<C, istreambuf_iterator<C> >;
54   template class money_put<C, ostreambuf_iterator<C> >;
55   template
56     istreambuf_iterator<C>
57     money_get<C, istreambuf_iterator<C> >::
58     _M_extract<true>(istreambuf_iterator<C>, istreambuf_iterator<C>,
59                      ios_base&, ios_base::iostate&, string&) const;
60
61   template
62     istreambuf_iterator<C>
63     money_get<C, istreambuf_iterator<C> >::
64     _M_extract<false>(istreambuf_iterator<C>, istreambuf_iterator<C>,
65                       ios_base&, ios_base::iostate&, string&) const;
66
67   template
68     ostreambuf_iterator<C>
69     money_put<C, ostreambuf_iterator<C> >::
70     _M_insert<true>(ostreambuf_iterator<C>, ios_base&, C, 
71                     const string_type&) const;
72
73   template
74     ostreambuf_iterator<C>
75     money_put<C, ostreambuf_iterator<C> >::
76     _M_insert<false>(ostreambuf_iterator<C>, ios_base&, C, 
77                      const string_type&) const;
78 _GLIBCXX_END_LDBL_NAMESPACE
79
80   // numpunct, numpunct_byname, num_get, and num_put
81   template class numpunct<C>;
82   template struct __numpunct_cache<C>;
83   template class numpunct_byname<C>;
84 _GLIBCXX_BEGIN_LDBL_NAMESPACE
85   template class num_get<C, istreambuf_iterator<C> >;
86   template class num_put<C, ostreambuf_iterator<C> >; 
87   template
88     istreambuf_iterator<C>
89     num_get<C, istreambuf_iterator<C> >::
90     _M_extract_int(istreambuf_iterator<C>, istreambuf_iterator<C>,
91                    ios_base&, ios_base::iostate&,
92                    long&) const;
93
94   template
95     istreambuf_iterator<C>
96     num_get<C, istreambuf_iterator<C> >::
97     _M_extract_int(istreambuf_iterator<C>, istreambuf_iterator<C>,
98                    ios_base&, ios_base::iostate&, 
99                    unsigned short&) const;
100
101   template
102     istreambuf_iterator<C>
103     num_get<C, istreambuf_iterator<C> >::
104     _M_extract_int(istreambuf_iterator<C>, istreambuf_iterator<C>,
105                    ios_base&, ios_base::iostate&,
106                    unsigned int&) const;
107
108   template
109     istreambuf_iterator<C>
110     num_get<C, istreambuf_iterator<C> >::
111     _M_extract_int(istreambuf_iterator<C>, istreambuf_iterator<C>,
112                    ios_base&, ios_base::iostate&,
113                    unsigned long&) const;
114
115 #ifdef _GLIBCXX_USE_LONG_LONG
116   template
117     istreambuf_iterator<C>
118     num_get<C, istreambuf_iterator<C> >::
119     _M_extract_int(istreambuf_iterator<C>, istreambuf_iterator<C>,
120                    ios_base&, ios_base::iostate&,
121                    long long&) const;
122
123   template
124     istreambuf_iterator<C>
125     num_get<C, istreambuf_iterator<C> >::
126     _M_extract_int(istreambuf_iterator<C>, istreambuf_iterator<C>,
127                    ios_base&, ios_base::iostate&,
128                    unsigned long long&) const;
129 #endif
130
131   template
132     ostreambuf_iterator<C>
133     num_put<C, ostreambuf_iterator<C> >::
134     _M_insert_int(ostreambuf_iterator<C>, ios_base&, C, 
135                   long) const;
136
137   template
138     ostreambuf_iterator<C>
139     num_put<C, ostreambuf_iterator<C> >::
140     _M_insert_int(ostreambuf_iterator<C>, ios_base&, C, 
141                   unsigned long) const;
142
143 #ifdef _GLIBCXX_USE_LONG_LONG
144   template
145     ostreambuf_iterator<C>
146     num_put<C, ostreambuf_iterator<C> >::
147     _M_insert_int(ostreambuf_iterator<C>, ios_base&, C, 
148                   long long) const;
149
150   template
151     ostreambuf_iterator<C>
152     num_put<C, ostreambuf_iterator<C> >::
153     _M_insert_int(ostreambuf_iterator<C>, ios_base&, C, 
154                   unsigned long long) const;
155 #endif
156
157   template
158     ostreambuf_iterator<C>
159     num_put<C, ostreambuf_iterator<C> >::
160     _M_insert_float(ostreambuf_iterator<C>, ios_base&, C, char, 
161                     double) const;
162
163   template
164     ostreambuf_iterator<C>
165     num_put<C, ostreambuf_iterator<C> >::
166     _M_insert_float(ostreambuf_iterator<C>, ios_base&, C, char, 
167                     long double) const;
168 _GLIBCXX_END_LDBL_NAMESPACE
169
170   // time_get and time_put
171   template class __timepunct<C>;
172   template struct __timepunct_cache<C>;
173   template class time_put<C, ostreambuf_iterator<C> >;
174   template class time_put_byname<C, ostreambuf_iterator<C> >;
175   template class time_get<C, istreambuf_iterator<C> >;
176   template class time_get_byname<C, istreambuf_iterator<C> >;
177
178   // messages
179   template class messages<C>;
180   template class messages_byname<C>;
181   
182   // ctype
183   inline template class __ctype_abstract_base<C>;
184   template class ctype_byname<C>;
185   
186   // codecvt
187   inline template class __codecvt_abstract_base<C, char, mbstate_t>;
188   template class codecvt_byname<C, char, mbstate_t>;
189
190   // collate
191   template class collate<C>;
192   template class collate_byname<C>;
193     
194   // use_facet
195   template
196     const ctype<C>& 
197     use_facet<ctype<C> >(const locale&);
198
199   template
200     const codecvt<C, char, mbstate_t>& 
201     use_facet<codecvt<C, char, mbstate_t> >(const locale&);
202
203   template
204     const collate<C>& 
205     use_facet<collate<C> >(const locale&);
206
207   template
208     const numpunct<C>& 
209     use_facet<numpunct<C> >(const locale&);
210
211   template 
212     const num_put<C>& 
213     use_facet<num_put<C> >(const locale&);
214
215   template 
216     const num_get<C>& 
217     use_facet<num_get<C> >(const locale&);
218
219   template
220     const moneypunct<C, true>& 
221     use_facet<moneypunct<C, true> >(const locale&);
222
223   template
224     const moneypunct<C, false>& 
225     use_facet<moneypunct<C, false> >(const locale&);
226
227   template 
228     const money_put<C>& 
229     use_facet<money_put<C> >(const locale&);
230
231   template 
232     const money_get<C>& 
233     use_facet<money_get<C> >(const locale&);
234
235   template
236     const __timepunct<C>& 
237     use_facet<__timepunct<C> >(const locale&);
238
239   template 
240     const time_put<C>& 
241     use_facet<time_put<C> >(const locale&);
242
243   template 
244     const time_get<C>& 
245     use_facet<time_get<C> >(const locale&);
246
247   template 
248     const messages<C>& 
249     use_facet<messages<C> >(const locale&);
250
251   // has_facet
252   template 
253     bool
254     has_facet<ctype<C> >(const locale&);
255
256   template 
257     bool
258     has_facet<codecvt<C, char, mbstate_t> >(const locale&);
259
260   template 
261     bool
262     has_facet<collate<C> >(const locale&);
263
264   template 
265     bool
266     has_facet<numpunct<C> >(const locale&);
267
268   template 
269     bool
270     has_facet<num_put<C> >(const locale&);
271
272   template 
273     bool
274     has_facet<num_get<C> >(const locale&);
275
276   template 
277     bool
278     has_facet<moneypunct<C> >(const locale&);
279
280   template 
281     bool
282     has_facet<money_put<C> >(const locale&);
283
284   template 
285     bool
286     has_facet<money_get<C> >(const locale&);
287
288   template 
289     bool
290     has_facet<__timepunct<C> >(const locale&);
291
292   template 
293     bool
294     has_facet<time_put<C> >(const locale&);
295
296   template 
297     bool
298     has_facet<time_get<C> >(const locale&);
299
300   template 
301     bool
302     has_facet<messages<C> >(const locale&);
303
304
305   // locale functions.
306   template
307     C*
308     __add_grouping<C>(C*, C, char const*, size_t, 
309                          C const*, C const*);
310
311   template class __pad<C, char_traits<C> >;
312
313   template
314     int
315     __int_to_char(C*, unsigned long, const C*,
316                   ios_base::fmtflags, bool);
317
318 #ifdef _GLIBCXX_USE_LONG_LONG
319   template
320     int
321     __int_to_char(C*, unsigned long long, const C*, 
322                   ios_base::fmtflags, bool);
323 #endif
324
325 _GLIBCXX_END_NAMESPACE
326
327 // XXX GLIBCXX_ABI Deprecated
328 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined C_is_char
329
330 #define _GLIBCXX_LDBL_COMPAT(dbl, ldbl) \
331   extern "C" void ldbl (void) __attribute__ ((alias (#dbl), weak))
332
333 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIjEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_,
334                      _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIjEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_);
335 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIlEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_,
336                      _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIlEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_);
337 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intImEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_,
338                      _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intImEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_);
339 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intItEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_,
340                      _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intItEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_);
341 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIxEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_,
342                      _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIxEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_);
343 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIyEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRT_,
344                      _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14_M_extract_intIyEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRT_);
345 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIlEES4_S4_RSt8ios_basecT_,
346                      _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIlEES3_S3_RSt8ios_basecT_);
347 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intImEES4_S4_RSt8ios_basecT_,
348                      _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intImEES3_S3_RSt8ios_basecT_);
349 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIxEES4_S4_RSt8ios_basecT_,
350                      _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIxEES3_S3_RSt8ios_basecT_);
351 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIyEES4_S4_RSt8ios_basecT_,
352                      _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIyEES3_S3_RSt8ios_basecT_);
353 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1287num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES4_S4_RSt8ios_baseccT_,
354                      _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_);
355 _GLIBCXX_LDBL_COMPAT(_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_,
356                      _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIeEES3_S3_RSt8ios_baseccT_);
357 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb0EEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRSs,
358                      _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb0EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs);
359 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1289money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb1EEES4_S4_S4_RSt8ios_baseRSt12_Ios_IostateRSs,
360                      _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10_M_extractILb1EEES3_S3_S3_RSt8ios_baseRSt12_Ios_IostateRSs);
361 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb0EEES4_S4_RSt8ios_basecRKSs,
362                      _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb0EEES3_S3_RSt8ios_basecRKSs);
363 _GLIBCXX_LDBL_COMPAT(_ZNKSt17__gnu_cxx_ldbl1289money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb1EEES4_S4_RSt8ios_basecRKSs,
364                      _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE9_M_insertILb1EEES3_S3_RSt8ios_basecRKSs);
365
366 #endif // _GLIBCXX_LONG_DOUBLE_COMPAT