In gcc/objc/: 2010-12-29 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git] / libstdc++-v3 / include / ext / codecvt_specializations.h
blob53295891bac42a2ca61290414c22ad7b675524b2
1 // Locale support (codecvt) -*- C++ -*-
3 // Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 // 2008, 2009, 2010
5 // Free Software Foundation, Inc.
6 //
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
11 // any later version.
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // Under Section 7 of GPL version 3, you are granted additional
19 // permissions described in the GCC Runtime Library Exception, version
20 // 3.1, as published by the Free Software Foundation.
22 // You should have received a copy of the GNU General Public License and
23 // a copy of the GCC Runtime Library Exception along with this program;
24 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 // <http://www.gnu.org/licenses/>.
28 // ISO C++ 14882: 22.2.1.5 Template class codecvt
31 // Written by Benjamin Kosnik <bkoz@redhat.com>
33 /** @file ext/codecvt_specializations.h
34 * This file is a GNU extension to the Standard C++ Library.
37 #ifndef _EXT_CODECVT_SPECIALIZATIONS_H
38 #define _EXT_CODECVT_SPECIALIZATIONS_H 1
40 #include <bits/c++config.h>
41 #include <locale>
42 #include <iconv.h>
44 _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
46 /// Extension to use iconv for dealing with character encodings.
47 // This includes conversions and comparisons between various character
48 // sets. This object encapsulates data that may need to be shared between
49 // char_traits, codecvt and ctype.
50 class encoding_state
52 public:
53 // Types:
54 // NB: A conversion descriptor subsumes and enhances the
55 // functionality of a simple state type such as mbstate_t.
56 typedef iconv_t descriptor_type;
58 protected:
59 // Name of internal character set encoding.
60 std::string _M_int_enc;
62 // Name of external character set encoding.
63 std::string _M_ext_enc;
65 // Conversion descriptor between external encoding to internal encoding.
66 descriptor_type _M_in_desc;
68 // Conversion descriptor between internal encoding to external encoding.
69 descriptor_type _M_out_desc;
71 // The byte-order marker for the external encoding, if necessary.
72 int _M_ext_bom;
74 // The byte-order marker for the internal encoding, if necessary.
75 int _M_int_bom;
77 // Number of external bytes needed to construct one complete
78 // character in the internal encoding.
79 // NB: -1 indicates variable, or stateful, encodings.
80 int _M_bytes;
82 public:
83 explicit
84 encoding_state()
85 : _M_in_desc(0), _M_out_desc(0), _M_ext_bom(0), _M_int_bom(0), _M_bytes(0)
86 { }
88 explicit
89 encoding_state(const char* __int, const char* __ext,
90 int __ibom = 0, int __ebom = 0, int __bytes = 1)
91 : _M_int_enc(__int), _M_ext_enc(__ext), _M_in_desc(0), _M_out_desc(0),
92 _M_ext_bom(__ebom), _M_int_bom(__ibom), _M_bytes(__bytes)
93 { init(); }
95 // 21.1.2 traits typedefs
96 // p4
97 // typedef STATE_T state_type
98 // requires: state_type shall meet the requirements of
99 // CopyConstructible types (20.1.3)
100 // NB: This does not preserve the actual state of the conversion
101 // descriptor member, but it does duplicate the encoding
102 // information.
103 encoding_state(const encoding_state& __obj) : _M_in_desc(0), _M_out_desc(0)
104 { construct(__obj); }
106 // Need assignment operator as well.
107 encoding_state&
108 operator=(const encoding_state& __obj)
110 construct(__obj);
111 return *this;
114 ~encoding_state()
115 { destroy(); }
117 bool
118 good() const throw()
120 const descriptor_type __err = (iconv_t)(-1);
121 bool __test = _M_in_desc && _M_in_desc != __err;
122 __test &= _M_out_desc && _M_out_desc != __err;
123 return __test;
127 character_ratio() const
128 { return _M_bytes; }
130 const std::string
131 internal_encoding() const
132 { return _M_int_enc; }
134 int
135 internal_bom() const
136 { return _M_int_bom; }
138 const std::string
139 external_encoding() const
140 { return _M_ext_enc; }
142 int
143 external_bom() const
144 { return _M_ext_bom; }
146 const descriptor_type&
147 in_descriptor() const
148 { return _M_in_desc; }
150 const descriptor_type&
151 out_descriptor() const
152 { return _M_out_desc; }
154 protected:
155 void
156 init()
158 const descriptor_type __err = (iconv_t)(-1);
159 const bool __have_encodings = _M_int_enc.size() && _M_ext_enc.size();
160 if (!_M_in_desc && __have_encodings)
162 _M_in_desc = iconv_open(_M_int_enc.c_str(), _M_ext_enc.c_str());
163 if (_M_in_desc == __err)
164 std::__throw_runtime_error(__N("encoding_state::_M_init "
165 "creating iconv input descriptor failed"));
167 if (!_M_out_desc && __have_encodings)
169 _M_out_desc = iconv_open(_M_ext_enc.c_str(), _M_int_enc.c_str());
170 if (_M_out_desc == __err)
171 std::__throw_runtime_error(__N("encoding_state::_M_init "
172 "creating iconv output descriptor failed"));
176 void
177 construct(const encoding_state& __obj)
179 destroy();
180 _M_int_enc = __obj._M_int_enc;
181 _M_ext_enc = __obj._M_ext_enc;
182 _M_ext_bom = __obj._M_ext_bom;
183 _M_int_bom = __obj._M_int_bom;
184 _M_bytes = __obj._M_bytes;
185 init();
188 void
189 destroy() throw()
191 const descriptor_type __err = (iconv_t)(-1);
192 if (_M_in_desc && _M_in_desc != __err)
194 iconv_close(_M_in_desc);
195 _M_in_desc = 0;
197 if (_M_out_desc && _M_out_desc != __err)
199 iconv_close(_M_out_desc);
200 _M_out_desc = 0;
205 /// encoding_char_traits
206 // Custom traits type with encoding_state for the state type, and the
207 // associated fpos<encoding_state> for the position type, all other
208 // bits equivalent to the required char_traits instantiations.
209 template<typename _CharT>
210 struct encoding_char_traits : public std::char_traits<_CharT>
212 typedef encoding_state state_type;
213 typedef typename std::fpos<state_type> pos_type;
216 _GLIBCXX_END_NAMESPACE
219 _GLIBCXX_BEGIN_NAMESPACE(std)
221 using __gnu_cxx::encoding_state;
223 /// codecvt<InternT, _ExternT, encoding_state> specialization.
224 // This partial specialization takes advantage of iconv to provide
225 // code conversions between a large number of character encodings.
226 template<typename _InternT, typename _ExternT>
227 class codecvt<_InternT, _ExternT, encoding_state>
228 : public __codecvt_abstract_base<_InternT, _ExternT, encoding_state>
230 public:
231 // Types:
232 typedef codecvt_base::result result;
233 typedef _InternT intern_type;
234 typedef _ExternT extern_type;
235 typedef __gnu_cxx::encoding_state state_type;
236 typedef state_type::descriptor_type descriptor_type;
238 // Data Members:
239 static locale::id id;
241 explicit
242 codecvt(size_t __refs = 0)
243 : __codecvt_abstract_base<intern_type, extern_type, state_type>(__refs)
246 explicit
247 codecvt(state_type& __enc, size_t __refs = 0)
248 : __codecvt_abstract_base<intern_type, extern_type, state_type>(__refs)
251 protected:
252 virtual
253 ~codecvt() { }
255 virtual result
256 do_out(state_type& __state, const intern_type* __from,
257 const intern_type* __from_end, const intern_type*& __from_next,
258 extern_type* __to, extern_type* __to_end,
259 extern_type*& __to_next) const;
261 virtual result
262 do_unshift(state_type& __state, extern_type* __to,
263 extern_type* __to_end, extern_type*& __to_next) const;
265 virtual result
266 do_in(state_type& __state, const extern_type* __from,
267 const extern_type* __from_end, const extern_type*& __from_next,
268 intern_type* __to, intern_type* __to_end,
269 intern_type*& __to_next) const;
271 virtual int
272 do_encoding() const throw();
274 virtual bool
275 do_always_noconv() const throw();
277 virtual int
278 do_length(state_type&, const extern_type* __from,
279 const extern_type* __end, size_t __max) const;
281 virtual int
282 do_max_length() const throw();
285 template<typename _InternT, typename _ExternT>
286 locale::id
287 codecvt<_InternT, _ExternT, encoding_state>::id;
289 // This adaptor works around the signature problems of the second
290 // argument to iconv(): SUSv2 and others use 'const char**', but glibc 2.2
291 // uses 'char**', which matches the POSIX 1003.1-2001 standard.
292 // Using this adaptor, g++ will do the work for us.
293 template<typename _Tp>
294 inline size_t
295 __iconv_adaptor(size_t(*__func)(iconv_t, _Tp, size_t*, char**, size_t*),
296 iconv_t __cd, char** __inbuf, size_t* __inbytes,
297 char** __outbuf, size_t* __outbytes)
298 { return __func(__cd, (_Tp)__inbuf, __inbytes, __outbuf, __outbytes); }
300 template<typename _InternT, typename _ExternT>
301 codecvt_base::result
302 codecvt<_InternT, _ExternT, encoding_state>::
303 do_out(state_type& __state, const intern_type* __from,
304 const intern_type* __from_end, const intern_type*& __from_next,
305 extern_type* __to, extern_type* __to_end,
306 extern_type*& __to_next) const
308 result __ret = codecvt_base::error;
309 if (__state.good())
311 const descriptor_type& __desc = __state.out_descriptor();
312 const size_t __fmultiple = sizeof(intern_type);
313 size_t __fbytes = __fmultiple * (__from_end - __from);
314 const size_t __tmultiple = sizeof(extern_type);
315 size_t __tbytes = __tmultiple * (__to_end - __to);
317 // Argument list for iconv specifies a byte sequence. Thus,
318 // all to/from arrays must be brutally casted to char*.
319 char* __cto = reinterpret_cast<char*>(__to);
320 char* __cfrom;
321 size_t __conv;
323 // Some encodings need a byte order marker as the first item
324 // in the byte stream, to designate endian-ness. The default
325 // value for the byte order marker is NULL, so if this is
326 // the case, it's not necessary and we can just go on our
327 // merry way.
328 int __int_bom = __state.internal_bom();
329 if (__int_bom)
331 size_t __size = __from_end - __from;
332 intern_type* __cfixed = static_cast<intern_type*>
333 (__builtin_alloca(sizeof(intern_type) * (__size + 1)));
334 __cfixed[0] = static_cast<intern_type>(__int_bom);
335 char_traits<intern_type>::copy(__cfixed + 1, __from, __size);
336 __cfrom = reinterpret_cast<char*>(__cfixed);
337 __conv = __iconv_adaptor(iconv, __desc, &__cfrom,
338 &__fbytes, &__cto, &__tbytes);
340 else
342 intern_type* __cfixed = const_cast<intern_type*>(__from);
343 __cfrom = reinterpret_cast<char*>(__cfixed);
344 __conv = __iconv_adaptor(iconv, __desc, &__cfrom, &__fbytes,
345 &__cto, &__tbytes);
348 if (__conv != size_t(-1))
350 __from_next = reinterpret_cast<const intern_type*>(__cfrom);
351 __to_next = reinterpret_cast<extern_type*>(__cto);
352 __ret = codecvt_base::ok;
354 else
356 if (__fbytes < __fmultiple * (__from_end - __from))
358 __from_next = reinterpret_cast<const intern_type*>(__cfrom);
359 __to_next = reinterpret_cast<extern_type*>(__cto);
360 __ret = codecvt_base::partial;
362 else
363 __ret = codecvt_base::error;
366 return __ret;
369 template<typename _InternT, typename _ExternT>
370 codecvt_base::result
371 codecvt<_InternT, _ExternT, encoding_state>::
372 do_unshift(state_type& __state, extern_type* __to,
373 extern_type* __to_end, extern_type*& __to_next) const
375 result __ret = codecvt_base::error;
376 if (__state.good())
378 const descriptor_type& __desc = __state.in_descriptor();
379 const size_t __tmultiple = sizeof(intern_type);
380 size_t __tlen = __tmultiple * (__to_end - __to);
382 // Argument list for iconv specifies a byte sequence. Thus,
383 // all to/from arrays must be brutally casted to char*.
384 char* __cto = reinterpret_cast<char*>(__to);
385 size_t __conv = __iconv_adaptor(iconv,__desc, 0, 0,
386 &__cto, &__tlen);
388 if (__conv != size_t(-1))
390 __to_next = reinterpret_cast<extern_type*>(__cto);
391 if (__tlen == __tmultiple * (__to_end - __to))
392 __ret = codecvt_base::noconv;
393 else if (__tlen == 0)
394 __ret = codecvt_base::ok;
395 else
396 __ret = codecvt_base::partial;
398 else
399 __ret = codecvt_base::error;
401 return __ret;
404 template<typename _InternT, typename _ExternT>
405 codecvt_base::result
406 codecvt<_InternT, _ExternT, encoding_state>::
407 do_in(state_type& __state, const extern_type* __from,
408 const extern_type* __from_end, const extern_type*& __from_next,
409 intern_type* __to, intern_type* __to_end,
410 intern_type*& __to_next) const
412 result __ret = codecvt_base::error;
413 if (__state.good())
415 const descriptor_type& __desc = __state.in_descriptor();
416 const size_t __fmultiple = sizeof(extern_type);
417 size_t __flen = __fmultiple * (__from_end - __from);
418 const size_t __tmultiple = sizeof(intern_type);
419 size_t __tlen = __tmultiple * (__to_end - __to);
421 // Argument list for iconv specifies a byte sequence. Thus,
422 // all to/from arrays must be brutally casted to char*.
423 char* __cto = reinterpret_cast<char*>(__to);
424 char* __cfrom;
425 size_t __conv;
427 // Some encodings need a byte order marker as the first item
428 // in the byte stream, to designate endian-ness. The default
429 // value for the byte order marker is NULL, so if this is
430 // the case, it's not necessary and we can just go on our
431 // merry way.
432 int __ext_bom = __state.external_bom();
433 if (__ext_bom)
435 size_t __size = __from_end - __from;
436 extern_type* __cfixed = static_cast<extern_type*>
437 (__builtin_alloca(sizeof(extern_type) * (__size + 1)));
438 __cfixed[0] = static_cast<extern_type>(__ext_bom);
439 char_traits<extern_type>::copy(__cfixed + 1, __from, __size);
440 __cfrom = reinterpret_cast<char*>(__cfixed);
441 __conv = __iconv_adaptor(iconv, __desc, &__cfrom,
442 &__flen, &__cto, &__tlen);
444 else
446 extern_type* __cfixed = const_cast<extern_type*>(__from);
447 __cfrom = reinterpret_cast<char*>(__cfixed);
448 __conv = __iconv_adaptor(iconv, __desc, &__cfrom,
449 &__flen, &__cto, &__tlen);
453 if (__conv != size_t(-1))
455 __from_next = reinterpret_cast<const extern_type*>(__cfrom);
456 __to_next = reinterpret_cast<intern_type*>(__cto);
457 __ret = codecvt_base::ok;
459 else
461 if (__flen < static_cast<size_t>(__from_end - __from))
463 __from_next = reinterpret_cast<const extern_type*>(__cfrom);
464 __to_next = reinterpret_cast<intern_type*>(__cto);
465 __ret = codecvt_base::partial;
467 else
468 __ret = codecvt_base::error;
471 return __ret;
474 template<typename _InternT, typename _ExternT>
475 int
476 codecvt<_InternT, _ExternT, encoding_state>::
477 do_encoding() const throw()
479 int __ret = 0;
480 if (sizeof(_ExternT) <= sizeof(_InternT))
481 __ret = sizeof(_InternT) / sizeof(_ExternT);
482 return __ret;
485 template<typename _InternT, typename _ExternT>
486 bool
487 codecvt<_InternT, _ExternT, encoding_state>::
488 do_always_noconv() const throw()
489 { return false; }
491 template<typename _InternT, typename _ExternT>
492 int
493 codecvt<_InternT, _ExternT, encoding_state>::
494 do_length(state_type&, const extern_type* __from,
495 const extern_type* __end, size_t __max) const
496 { return std::min(__max, static_cast<size_t>(__end - __from)); }
498 // _GLIBCXX_RESOLVE_LIB_DEFECTS
499 // 74. Garbled text for codecvt::do_max_length
500 template<typename _InternT, typename _ExternT>
501 int
502 codecvt<_InternT, _ExternT, encoding_state>::
503 do_max_length() const throw()
504 { return 1; }
506 _GLIBCXX_END_NAMESPACE
508 #endif