Update.
[platform/upstream/glibc.git] / wcsmbs / wcrtomb.c
1 /* Copyright (C) 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Library General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
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    Library General Public License for more details.
14
15    You should have received a copy of the GNU Library General Public
16    License along with the GNU C Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18    Boston, MA 02111-1307, USA.  */
19
20 #include <errno.h>
21 #include <gconv.h>
22 #include <stdlib.h>
23 #include <wchar.h>
24 #include <wcsmbsload.h>
25
26 #include <assert.h>
27
28 #ifndef EILSEQ
29 # define EILSEQ EINVAL
30 #endif
31
32
33 /* This is the private state used if PS is NULL.  */
34 static mbstate_t state;
35
36 size_t
37 __wcrtomb (char *s, wchar_t wc, mbstate_t *ps)
38 {
39   mbstate_t temp_state;
40   char buf[MB_CUR_MAX];
41   struct __gconv_step_data data;
42   int status;
43   size_t result;
44   size_t dummy;
45
46   /* Tell where we want the result.  */
47   data.__outbuf = s;
48   data.__outbufend = s + MB_CUR_MAX;
49   data.__invocation_counter = 0;
50   data.__internal_use = 1;
51   data.__is_last = 1;
52   data.__statep = ps ?: &state;
53
54   /* A first special case is if S is NULL.  This means put PS in the
55      initial state.  */
56   if (s == NULL)
57     {
58       data.__outbuf = buf;
59       wc = L'\0';
60       temp_state = *data.__statep;
61       data.__statep = &temp_state;
62     }
63
64   /* Make sure we use the correct function.  */
65   update_conversion_ptrs ();
66
67   /* If WC is the NUL character we write into the output buffer the byte
68      sequence necessary for PS to get into the initial state, followed
69      by a NUL byte.  */
70   if (wc == L'\0')
71     {
72       status = (*__wcsmbs_gconv_fcts.tomb->__fct) (__wcsmbs_gconv_fcts.tomb,
73                                                    &data, NULL, NULL,
74                                                    &dummy, 1);
75
76       if (status == __GCONV_OK || status == __GCONV_EMPTY_INPUT)
77         *data.__outbuf++ = '\0';
78     }
79   else
80     {
81       /* Do a normal conversion.  */
82       const unsigned char *inbuf = (const unsigned char *) &wc;
83
84       status = (*__wcsmbs_gconv_fcts.tomb->__fct) (__wcsmbs_gconv_fcts.tomb,
85                                                    &data, &inbuf,
86                                                    inbuf + sizeof (wchar_t),
87                                                    &dummy, 0);
88     }
89
90   /* There must not be any problems with the conversion but illegal input
91      characters.  The output buffer must be large enough, otherwise the
92      definition of MB_CUR_MAX is not correct.  All the other possible
93      errors also must not happen.  */
94   assert (status == __GCONV_OK || status == __GCONV_EMPTY_INPUT
95           || status == __GCONV_ILLEGAL_INPUT
96           || status == __GCONV_INCOMPLETE_INPUT
97           || status == __GCONV_FULL_OUTPUT);
98
99   if (status == __GCONV_OK || status == __GCONV_EMPTY_INPUT
100       || status == __GCONV_FULL_OUTPUT)
101     result = data.__outbuf - (unsigned char *) (s ?: buf);
102   else
103     {
104       result = (size_t) -1;
105       __set_errno (EILSEQ);
106     }
107
108   return result;
109 }
110 weak_alias (__wcrtomb, wcrtomb)