OSDN Git Service

c67dd040b15d426e4271993e9c239daa41bc6929
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / src / locale-inst.cc
1 // Locale support -*- C++ -*-
2
3 // Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING.  If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction.  Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License.  This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
29
30 //
31 // ISO C++ 14882: 22.1  Locales
32 //
33
34 #include <bits/std_clocale.h>
35 #include <bits/std_cstring.h>
36 #include <bits/std_cassert.h>
37 #include <bits/std_limits.h>
38 #include <exception>
39 #include <bits/std_stdexcept.h>
40 #include <bits/std_locale.h>
41 #include <bits/locale_facets.tcc>
42 #include <bits/std_istream.h>
43 #include <bits/std_ostream.h>
44
45 namespace std {
46
47   typedef ostreambuf_iterator<char, char_traits<char> > obuf_iterator;
48   typedef istreambuf_iterator<char, char_traits<char> > ibuf_iterator;
49   typedef ostreambuf_iterator<wchar_t, char_traits<wchar_t> > wobuf_iterator;
50   typedef istreambuf_iterator<wchar_t, char_traits<wchar_t> > wibuf_iterator;
51
52   // moneypunct, money_get, and money_put
53   template class moneypunct<char, false>;
54   template class moneypunct<char, true>;
55   template class moneypunct_byname<char, false>;
56   template class moneypunct_byname<char, true>;
57   template class money_get<char, obuf_iterator>;
58   template class money_put<char, obuf_iterator>;
59   template class money_get<char, ibuf_iterator>;
60   template class money_put<char, ibuf_iterator>;
61   template class _Format_cache<char>;
62
63 #ifdef _GLIBCPP_USE_WCHAR_T
64   template class moneypunct<wchar_t, false>;
65   template class moneypunct<wchar_t, true>;
66   template class moneypunct_byname<wchar_t, false>;
67   template class moneypunct_byname<wchar_t, true>;
68   template class money_get<wchar_t, wobuf_iterator>;
69   template class money_put<wchar_t, wobuf_iterator>;
70   template class money_get<wchar_t, wibuf_iterator>;
71   template class money_put<wchar_t, wibuf_iterator>;
72   template class _Format_cache<wchar_t>;
73 #endif
74
75   // numpunct, numpunct_byname, num_get, and num_put
76   template class numpunct<char>;
77   template class numpunct_byname<char>;
78   template class num_get<char, ibuf_iterator>;
79   template class num_put<char, obuf_iterator>;
80 #ifdef _GLIBCPP_USE_WCHAR_T
81   template class numpunct<wchar_t>;
82   template class numpunct_byname<wchar_t>;
83   template class num_get<wchar_t, wibuf_iterator>;
84   template class num_put<wchar_t, wobuf_iterator>;
85 #endif
86
87   // time_get and time_put
88   template class time_put<char, obuf_iterator>;
89   template class time_put_byname<char, obuf_iterator>;
90   template class time_get<char, ibuf_iterator>;
91   template class time_get_byname<char, ibuf_iterator>;
92
93 #ifdef _GLIBCPP_USE_WCHAR_T
94   template class time_put<wchar_t, wobuf_iterator>;
95   template class time_put_byname<wchar_t, wobuf_iterator>;
96   template class time_get<wchar_t, wibuf_iterator>;
97   template class time_get_byname<wchar_t, wibuf_iterator>;
98 #endif
99
100   // messages
101   template class messages<char>;
102   template class messages_byname<char>;
103 #ifdef _GLIBCPP_USE_WCHAR_T
104   template class messages<wchar_t>;
105   template class messages_byname<wchar_t>;
106 #endif
107   
108   // ctype
109   template class __ctype_abstract_base<char>;
110   template class ctype_byname<char>;
111 #ifdef _GLIBCPP_USE_WCHAR_T
112   template class __ctype_abstract_base<wchar_t>;
113   template class ctype_byname<wchar_t>;
114 #endif
115   
116   // codecvt
117   template class __codecvt_abstract_base<char, char, mbstate_t>;
118   template class __codecvt_abstract_base<wchar_t, char, mbstate_t>;
119   template class codecvt_byname<char, char, mbstate_t>;
120 #ifdef _GLIBCPP_USE_WCHAR_T
121   template class codecvt_byname<wchar_t, char, mbstate_t>;
122 #endif
123
124   // collate
125   template class collate<char>;
126   template class collate_byname<char>;
127   template class _Weekdaynames<char, int>;
128   template class _Monthnames<char, int>;
129 #ifdef _GLIBCPP_USE_WCHAR_T
130   template class collate<wchar_t>;
131   template class collate_byname<wchar_t>;
132   template class _Weekdaynames<wchar_t, int>;
133   template class _Monthnames<wchar_t, int>;
134 #endif
135     
136   // use_facet
137   template 
138     const num_put<char, obuf_iterator >& 
139     use_facet<num_put<char, obuf_iterator> >(const locale &);
140   template 
141     const num_get<char, ibuf_iterator >& 
142     use_facet<num_get<char, ibuf_iterator> >(const locale &);
143   template
144     const codecvt<char, char, mbstate_t>& 
145     use_facet<codecvt<char, char, mbstate_t> >(const locale&);
146 #ifdef _GLIBCPP_USE_WCHAR_T
147   template 
148     const num_put<wchar_t, wobuf_iterator>& 
149     use_facet<num_put<wchar_t, wobuf_iterator> >(const locale &);
150   template 
151     const num_get<wchar_t, wibuf_iterator>& 
152     use_facet<num_get<wchar_t, wibuf_iterator> >(const locale &);
153   template
154     const codecvt<wchar_t, char, mbstate_t>& 
155     use_facet<codecvt<wchar_t, char, mbstate_t> >(locale const &);
156 #endif
157
158   // has_facet
159   template 
160     bool
161     has_facet<numpunct<char> >(const locale &);
162 #ifdef _GLIBCPP_USE_WCHAR_T
163   template 
164     bool
165     has_facet<numpunct<wchar_t> >(const locale &);
166 #endif
167
168   //
169   // iterator
170   //
171   typedef vector<locale::facet*> vec_pfacet;
172   template 
173     void 
174     vec_pfacet::
175     insert(vec_pfacet::iterator, vec_pfacet::size_type, 
176            const vec_pfacet::value_type&);
177   template 
178     void 
179     vec_pfacet::
180     _M_fill_insert(vec_pfacet::iterator, vec_pfacet::size_type, 
181                    const vec_pfacet::value_type&);
182
183
184   typedef istreambuf_iterator<char, char_traits<char> > istreambuf_iter;
185   typedef ostreambuf_iterator<char, char_traits<char> > ostreambuf_iter;
186
187
188   template 
189     istreambuf_iter 
190     __match_parallel<istreambuf_iter, char>
191     (istreambuf_iter, istreambuf_iter, int, const string*, int*, int&, bool&);
192
193
194 #ifdef _GLIBCPP_USE_WCHAR_T
195   typedef istreambuf_iterator<wchar_t,char_traits<wchar_t> > wistreambuf_iter;
196   typedef ostreambuf_iterator<wchar_t,char_traits<wchar_t> > wostreambuf_iter;
197
198   template 
199     wistreambuf_iter 
200     __match_parallel<wistreambuf_iter, wchar_t>
201    (wistreambuf_iter, wistreambuf_iter, int, const wstring*, int*, int&, bool&);
202 #endif
203
204
205   //
206   // locale
207   //
208   template 
209     bool
210     locale::operator()(const string&, const string&) const;
211
212   template
213     ostreambuf_iter
214     _S_fill<char, ostreambuf_iter, output_iterator_tag>
215     (ostreambuf_iter, char, int, output_iterator_tag);
216
217   template 
218     ostreambuf_iter
219     _S_pad_numeric<char, ostreambuf_iter>
220     (ostreambuf_iter, ios_base::fmtflags, char, int, char const*, char const*, 
221      char const*);
222
223   template
224     char*
225     _S_group_digits<char>(char*, char, char const*, char const*, 
226                           char const*, char const*);
227
228   template 
229     ostreambuf_iter
230     _S_format<char, ostreambuf_iter, unsigned long>
231     (ostreambuf_iter, ios_base &, char, bool, unsigned long);
232
233 #ifdef _GLIBCPP_USE_LONG_LONG
234   template
235     ostreambuf_iter
236     _S_format<char, ostreambuf_iter, unsigned long long>
237     (ostreambuf_iter, ios_base &, char, bool, unsigned long long);
238 #endif
239
240 #ifdef _GLIBCPP_USE_WCHAR_T
241   template 
242     bool
243     locale::operator()(const wstring&, const wstring&) const;
244
245   typedef ostreambuf_iterator<wchar_t> wostreambuf_iter;
246
247   template
248     wostreambuf_iter
249     _S_fill<wchar_t, wostreambuf_iter, output_iterator_tag>
250     (wostreambuf_iter, wchar_t, int, output_iterator_tag);
251
252   template 
253     wostreambuf_iter
254     _S_pad_numeric<wchar_t, wostreambuf_iter>
255     (wostreambuf_iter, ios_base::fmtflags, wchar_t __fill, int, wchar_t const*, 
256      wchar_t const*, wchar_t const*);
257
258   template
259     wchar_t*
260     _S_group_digits<wchar_t>(wchar_t*, wchar_t, char const*, char const*, 
261                              wchar_t const*, wchar_t const*);
262
263   template 
264     wostreambuf_iter
265     _S_format<wchar_t, wostreambuf_iter, unsigned long>
266     (wostreambuf_iter, ios_base &, wchar_t, bool, unsigned long);
267
268 #ifdef _GLIBCPP_USE_LONG_LONG
269   template
270     wostreambuf_iter
271     _S_format<wchar_t, wostreambuf_iter, unsigned long long>
272     (wostreambuf_iter, ios_base &, wchar_t, bool, unsigned long long);
273 #endif
274 #endif // _GLIBCPP_USE_WCHAR_T
275
276   template 
277     locale::facet** 
278     fill_n<locale::facet**, unsigned int, locale::facet*>
279     (locale::facet**, unsigned int, locale::facet* const&);
280
281   template 
282     locale::facet** 
283     fill_n<locale::facet**, unsigned long, locale::facet*>
284     (locale::facet**, unsigned long, locale::facet* const&);
285 } //std
286