]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/config/locale/generic/codecvt_members.cc
Merge basic-improvements-branch to trunk
[thirdparty/gcc.git] / libstdc++-v3 / config / locale / generic / codecvt_members.cc
1 // std::codecvt implementation details, generic version -*- C++ -*-
2
3 // Copyright (C) 2002 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.2.1.5 - Template class codecvt
32 //
33
34 // Written by Benjamin Kosnik <bkoz@redhat.com>
35
36 #include <locale>
37 #include "c++locale_internal.h"
38
39 namespace std
40 {
41 // Specializations.
42 #ifdef _GLIBCPP_USE_WCHAR_T
43 codecvt_base::result
44 codecvt<wchar_t, char, mbstate_t>::
45 do_out(state_type& __state, const intern_type* __from,
46 const intern_type* __from_end, const intern_type*& __from_next,
47 extern_type* __to, extern_type* __to_end,
48 extern_type*& __to_next) const
49 {
50 result __ret = error;
51 size_t __len = std::min(__from_end - __from, __to_end - __to);
52 size_t __conv = wcsrtombs(__to, &__from, __len, &__state);
53
54 if (__conv == __len)
55 {
56 __from_next = __from;
57 __to_next = __to + __conv;
58 __ret = ok;
59 }
60 else if (__conv > 0 && __conv < __len)
61 {
62 __from_next = __from;
63 __to_next = __to + __conv;
64 __ret = partial;
65 }
66 else
67 __ret = error;
68
69 return __ret;
70 }
71
72 codecvt_base::result
73 codecvt<wchar_t, char, mbstate_t>::
74 do_in(state_type& __state, const extern_type* __from,
75 const extern_type* __from_end, const extern_type*& __from_next,
76 intern_type* __to, intern_type* __to_end,
77 intern_type*& __to_next) const
78 {
79 result __ret = error;
80 size_t __len = std::min(__from_end - __from, __to_end - __to);
81 size_t __conv = mbsrtowcs(__to, &__from, __len, &__state);
82
83 if (__conv == __len)
84 {
85 __from_next = __from;
86 __to_next = __to + __conv;
87 __ret = ok;
88 }
89 else if (__conv > 0 && __conv < __len)
90 {
91 __from_next = __from;
92 __to_next = __to + __conv;
93 __ret = partial;
94 }
95 else
96 __ret = error;
97
98 return __ret;
99 }
100 #endif
101 }