1 /* Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@gnu.org>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
22 #include "wcsmbsload.h"
29 #include <wcsmbsload.h>
34 # define EILSEQ EINVAL
40 __mbsrtowcs_l (dst
, src
, len
, ps
, l
)
47 struct __gconv_step_data data
;
50 struct __gconv_step
*towc
;
51 size_t non_reversible
;
52 const struct gconv_fcts
*fcts
;
54 /* Tell where we want the result. */
55 data
.__invocation_counter
= 0;
56 data
.__internal_use
= 1;
57 data
.__flags
= __GCONV_IS_LAST
;
61 /* Get the conversion functions. */
62 fcts
= get_gconv_fcts (l
->__locales
[LC_CTYPE
]);
64 /* Get the structure with the function pointers. */
66 __gconv_fct fct
= towc
->__fct
;
68 if (towc
->__shlib_handle
!= NULL
)
72 /* We have to handle DST == NULL special. */
76 wchar_t buf
[64]; /* Just an arbitrary size. */
77 const unsigned char *inbuf
= (const unsigned char *) *src
;
78 const unsigned char *srcend
= inbuf
+ strlen (*src
) + 1;
80 temp_state
= *data
.__statep
;
81 data
.__statep
= &temp_state
;
84 data
.__outbufend
= (unsigned char *) buf
+ sizeof (buf
);
87 data
.__outbuf
= (unsigned char *) buf
;
89 status
= DL_CALL_FCT (fct
, (towc
, &data
, &inbuf
, srcend
, NULL
,
90 &non_reversible
, 0, 1));
92 result
+= (wchar_t *) data
.__outbuf
- buf
;
94 while (status
== __GCONV_FULL_OUTPUT
);
96 if (status
== __GCONV_OK
|| status
== __GCONV_EMPTY_INPUT
)
98 /* There better should be a NUL wide char at the end. */
99 assert (((wchar_t *) data
.__outbuf
)[-1] == L
'\0');
100 /* Don't count the NUL character in. */
106 /* This code is based on the safe assumption that all internal
107 multi-byte encodings use the NUL byte only to mark the end
109 const unsigned char *srcp
= (const unsigned char *) *src
;
110 const unsigned char *srcend
;
112 data
.__outbuf
= (unsigned char *) dst
;
113 data
.__outbufend
= data
.__outbuf
+ len
* sizeof (wchar_t);
115 status
= __GCONV_FULL_OUTPUT
;
119 /* Pessimistic guess as to how much input we can use. In the
120 worst case we need one input byte for one output wchar_t. */
121 srcend
= srcp
+ __strnlen ((const char *) srcp
, len
) + 1;
123 status
= DL_CALL_FCT (fct
, (towc
, &data
, &srcp
, srcend
, NULL
,
124 &non_reversible
, 0, 1));
125 if ((status
!= __GCONV_EMPTY_INPUT
126 && status
!= __GCONV_INCOMPLETE_INPUT
)
127 /* Not all input read. */
129 /* Reached the end of the input. */
130 || srcend
[-1] == '\0')
133 len
= (wchar_t *) data
.__outbufend
- (wchar_t *) data
.__outbuf
;
136 /* Make the end if the input known to the caller. */
137 *src
= (const char *) srcp
;
139 result
= (wchar_t *) data
.__outbuf
- dst
;
141 /* We have to determine whether the last character converted
142 is the NUL character. */
143 if ((status
== __GCONV_OK
|| status
== __GCONV_EMPTY_INPUT
)
144 && ((wchar_t *) dst
)[result
- 1] == L
'\0')
147 assert (__mbsinit (data
.__statep
));
153 /* There must not be any problems with the conversion but illegal input
155 assert (status
== __GCONV_OK
|| status
== __GCONV_EMPTY_INPUT
156 || status
== __GCONV_ILLEGAL_INPUT
157 || status
== __GCONV_INCOMPLETE_INPUT
158 || status
== __GCONV_FULL_OUTPUT
);
160 if (status
!= __GCONV_OK
&& status
!= __GCONV_FULL_OUTPUT
161 && status
!= __GCONV_EMPTY_INPUT
&& status
!= __GCONV_INCOMPLETE_INPUT
)
163 result
= (size_t) -1;
164 __set_errno (EILSEQ
);