1 /* Convert characters in input buffer using conversion descriptor to
3 Copyright (C) 1997-2023 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C 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 GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <https://www.gnu.org/licenses/>. */
23 #include <sys/param.h>
25 #include <gconv_int.h>
26 #include <pointer_guard.h>
30 __gconv (__gconv_t cd
, const unsigned char **inbuf
,
31 const unsigned char *inbufend
, unsigned char **outbuf
,
32 unsigned char *outbufend
, size_t *irreversible
)
37 if (cd
== (__gconv_t
) -1L)
38 return __GCONV_ILLEGAL_DESCRIPTOR
;
40 last_step
= cd
->__nsteps
- 1;
42 assert (irreversible
!= NULL
);
45 cd
->__data
[last_step
].__outbuf
= outbuf
!= NULL
? *outbuf
: NULL
;
46 cd
->__data
[last_step
].__outbufend
= outbufend
;
48 __gconv_fct fct
= cd
->__steps
->__fct
;
49 if (cd
->__steps
->__shlib_handle
!= NULL
)
52 if (inbuf
== NULL
|| *inbuf
== NULL
)
55 result
= DL_CALL_FCT (fct
,
56 (cd
->__steps
, cd
->__data
, NULL
, NULL
, NULL
,
58 cd
->__data
[last_step
].__outbuf
== NULL
? 2 : 1,
61 /* If the flush was successful clear the rest of the state. */
62 if (result
== __GCONV_OK
)
63 for (size_t cnt
= 0; cnt
<= last_step
; ++cnt
)
64 cd
->__data
[cnt
].__invocation_counter
= 0;
68 const unsigned char *last_start
;
70 assert (outbuf
!= NULL
&& *outbuf
!= NULL
);
75 result
= DL_CALL_FCT (fct
,
76 (cd
->__steps
, cd
->__data
, inbuf
, inbufend
,
77 NULL
, irreversible
, 0, 0));
79 while (result
== __GCONV_EMPTY_INPUT
&& last_start
!= *inbuf
80 && *inbuf
+ cd
->__steps
->__min_needed_from
<= inbufend
);
83 if (outbuf
!= NULL
&& *outbuf
!= NULL
)
84 *outbuf
= cd
->__data
[last_step
].__outbuf
;