Update.
[platform/upstream/glibc.git] / wcsmbs / wmemrtombs.c
1 /* Copyright (C) 1997 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Ulrich Drepper <drepper@gnu.org>, 1997.
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 <wchar.h>
22
23 #ifndef EILSEQ
24 #define EILSEQ EINVAL
25 #endif
26
27
28 static const wchar_t encoding_mask[] =
29 {
30   ~0x7ff, ~0xffff, ~0x1fffff, ~0x3ffffff
31 };
32
33 static const unsigned char encoding_byte[] =
34 {
35   0xc0, 0xe0, 0xf0, 0xf8, 0xfc
36 };
37
38 /* We don't need the state really because we don't have shift states
39    to maintain between calls to this function.  */
40 static mbstate_t internal;
41
42 /* This is a non-standard function but it is very useful in the
43    implementation of stdio because we have to deal with unterminated
44    buffers.  At most NWC wide character will be converted.  */
45 size_t
46 __wmemrtombs (dst, src, nwc, len, ps)
47      char *dst;
48      const wchar_t **src;
49      size_t nwc;
50      size_t len;
51      mbstate_t *ps;
52 {
53   size_t written = 0;
54   const wchar_t *run = *src;
55
56   if (ps == NULL)
57     ps = &internal;
58
59   if (dst == NULL)
60     /* The LEN parameter has to be ignored if we don't actually write
61        anything.  */
62     len = ~0;
63
64   while (written < len && nwc-- > 0)
65     {
66       wchar_t wc = *run++;
67
68       if (wc < 0 || wc > 0x7fffffff)
69         {
70           /* This is no correct ISO 10646 character.  */
71           __set_errno (EILSEQ);
72           return (size_t) -1;
73         }
74
75       if (wc < 0x80)
76         {
77           /* It's an one byte sequence.  */
78           if (dst != NULL)
79             *dst++ = (char) wc;
80           ++written;
81         }
82       else
83         {
84           size_t step;
85
86           for (step = 2; step < 6; ++step)
87             if ((wc & encoding_mask[step - 2]) == 0)
88               break;
89
90           if (written + step >= len)
91             /* Too long.  */
92             break;
93
94           if (dst != NULL)
95             {
96               size_t cnt = step;
97
98               dst[0] = encoding_byte[cnt - 2];
99
100               --cnt;
101               do
102                 {
103                   dst[cnt] = 0x80 | (wc & 0x3f);
104                   wc >>= 6;
105                 }
106               while (--cnt > 0);
107               dst[0] |= wc;
108
109               dst += step;
110             }
111
112           written += step;
113         }
114     }
115
116   /* Store position of first unprocessed word.  */
117   *src = run;
118
119   return written;
120 }
121 weak_alias (__wmemrtombs, wmemrtombs)