]> git.proxmox.com Git - mirror_edk2.git/blob - StdLib/LibC/Locale/multibyte_Utf8.c
StdLib: Fix printf issues with floating point and wide character strings. Also resol...
[mirror_edk2.git] / StdLib / LibC / Locale / multibyte_Utf8.c
1 /** @file
2 Copyright (c) 2012, Intel Corporation. All rights reserved.<BR>
3 This program and the accompanying materials
4 are licensed and made available under the terms and conditions of the BSD License
5 which accompanies this distribution. The full text of the license may be found at
6 http://opensource.org/licenses/bsd-license.php
7
8 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
9 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
10 **/
11 #include <assert.h>
12 #include <string.h>
13 #include <errno.h>
14 #include <stdlib.h>
15 #include <wchar.h>
16 #include <sys/types.h>
17 #include <limits.h>
18
19 typedef int ch_UCS4;
20
21 static mbstate_t LocalConvState = {0};
22
23 /** Map a UTF-8 encoded prefix byte to a sequence length.
24 Zero means illegal prefix, but valid surrogate if < 0xC0.
25 One indicates an ASCII-7 equivalent character.
26 Two, three, and four are the first byte for 2, 3, and 4 byte sequences, respectively.
27 See RFC 3629 for details.
28
29 TABLE ENCODING:
30 Low Nibble decodes the first byte into the number of bytes in the sequence.
31 A value of zero indicates an invalid byte.
32 The High Nibble encodes a bit mask to be used to match against the high nibble of the second byte.
33
34 example:
35 SequenceLength = code[c0] & 0x0F;
36 Mask = 0x80 | code[c0];
37
38 Surrogate bytes are valid if: code[cX] & Mask > 0x80;
39
40 */
41 static
42 UINT8 utf8_code_length[256] = {
43 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, /* 00-0F */
44 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
45 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
46 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
47 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
48 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
49 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
50 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, /* 70-7F */
51 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, /* 80-8F */
52 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, 0xA0, /* 90-9F */
53 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, /* A0-AF */
54 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, /* B0-BF */
55 0x00, 0x00, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, /* C0-C1 + C2-CF */
56 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, /* D0-DF */
57 0x43, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x33, 0x73, 0x73, /* E0-EF */
58 0x64, 0x74, 0x74, 0x74, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* F0-F4 + F5-FF */
59 };
60
61 /** Process one byte of a multibyte character.
62
63 @param[in] ch One byte of a multibyte character.
64 @param[in,out] ps Pointer to a conversion state object.
65
66 @retval -2 ch is an incomplete but potentially valid character.
67 @retval -1 ch is not valid in this context.
68 @retval 1:4 The length, in bytes, of the character ch just completed.
69 **/
70 static
71 int
72 ProcessOneByte(unsigned char ch, mbstate_t *ps)
73 {
74 UINT32 Mask;
75 UINT32 Length;
76 int RetVal = 0;
77
78 if(ps->A > 3) {
79 // We are in an invalid state
80 ps->A = 0; // Initial State
81 }
82 ps->C[ps->A] = ch; // Save the current character
83 Mask = utf8_code_length[ch];
84
85 if(ps->A == 0) { // Initial State. First byte of sequence.
86 ps->E = Mask | 0x80;
87 Length = Mask & 0xF;
88 switch(Length) {
89 case 0: // State 0, Code 0
90 errno = EILSEQ;
91 RetVal = -1;
92 ps->E = 1; // Consume this character
93 break;
94 case 1: // State 0, Code 1
95 // ASCII-7 Character
96 ps->B = ps->D[0] = ch;
97 RetVal = 1;
98 break;
99 default: // State 0, Code 2, 3, 4
100 ps->A = 1; // Next state is State-1
101 RetVal = -2; // Incomplete but potentially valid character
102 break;
103 }
104 }
105 else {
106 // We are in state 1, 2, or 3 and processing a surrogate byte
107 Length = ps->E & 0xF;
108 if((Mask & ps->E) > 0x80) {
109 // This byte is valid
110 switch(ps->A) { // Process based upon our current state
111 case 1: // Second byte of the sequence.
112 if(Length == 2) { // State 1, Code 2
113 Length = ((ps->C[0] & 0x1f) << 6) + (ps->C[1] & 0x3f);
114 assert ((Length > 0x007F) && (Length <= 0x07FF));
115 ps->B = ps->D[0] = (UINT16)Length;
116 ps->A = 0; // Next state is State-0
117 RetVal = 2;
118 }
119 else { // This isn't the last character, get more. State 1, Code 3 or 4
120 ps->A = 2;
121 RetVal = -2;
122 }
123 break;
124 case 2: // Third byte of the sequence
125 if(Length == 3) {
126 Length = ((ps->C[0] & 0x0f) << 12) + ((ps->C[1] & 0x3f) << 6) + (ps->C[2] & 0x3f);
127 assert ((Length > 0x07FF) && (Length <= 0xFFFF));
128 ps->B = ps->D[0] = (UINT16)Length;
129 ps->A = 0; // Next state is State-0
130 RetVal = 3;
131 }
132 else {
133 ps->A = 3;
134 RetVal = -2;
135 }
136 break;
137 case 3: // Fourth byte of the sequence
138 if(Length == 4) {
139 Length = ((ps->C[0] & 0x7) << 18) + ((ps->C[1] & 0x3f) << 12) +
140 ((ps->C[2] & 0x3f) << 6) + (ps->C[3] & 0x3f);
141 ps->B = Length;
142 assert ((Length > 0xFFFF) && (Length <= 0x10ffff));
143
144 /* compute and append the two surrogates: */
145
146 /* translate from 10000..10FFFF to 0..FFFF */
147 Length -= 0x10000;
148
149 /* high surrogate = top 10 bits added to D800 */
150 ps->D[0] = (UINT16)(0xD800 + (Length >> 10));
151
152 /* low surrogate = bottom 10 bits added to DC00 */
153 ps->D[1] = (UINT16)(0xDC00 + (Length & 0x03FF));
154 ps->A = 0; // Next state is State-0
155 RetVal = 4;
156 }
157 else {
158 errno = EILSEQ;
159 ps->A = 0;
160 RetVal = -1;
161 ps->E = 4; // Can't happen, but consume this character anyway
162 }
163 break;
164 }
165 }
166 else { // Invalid surrogate character
167 errno = EILSEQ;
168 ps->A = 0; // Next is State-0
169 RetVal = -1;
170 ps->E = 0; // Don't Consume, it may be an initial byte
171 }
172 }
173 return RetVal;
174 }
175
176 /** Convert one Multibyte sequence.
177
178 @param[out] Dest Pointer to output location, or NULL
179 @param[in] Src Multibyte Source (UTF8)
180 @param[in] Len Max Number of bytes to convert
181 @param[in] pS Pointer to State struct., or NULL
182
183 @retval -2 Bytes processed comprise an incomplete, but potentially valid, character.
184 @retval -1 An encoding error was encountered. ps->E indicates the number of bytes consumed.
185 @retval 0 Either Src is NULL or it points to a NUL character.
186 @retval 1:N N bytes were consumed producing a valid wide character.
187 **/
188 int
189 DecodeOneStateful(
190 wchar_t *Dest, // Pointer to output location, or NULL
191 const char *Src, // Multibyte Source (UTF8)
192 ssize_t Len, // Max Number of bytes to convert
193 mbstate_t *pS // Pointer to State struct., or NULL
194 )
195 {
196 const char *SrcEnd;
197 int NumConv;
198 unsigned char ch;
199
200 if((Src == NULL) || (*Src == '\0')) {
201 return 0;
202 }
203 if(pS == NULL) {
204 pS = &LocalConvState;
205 }
206 SrcEnd = Src + Len;
207 NumConv = 0;
208 while(Src < SrcEnd) {
209 ch = (unsigned char)*Src++;
210 NumConv = ProcessOneByte(ch, pS);
211 if(NumConv != -2)
212 break;
213 }
214 if((NumConv > 0) && (Dest != NULL)) {
215 Dest[0] = pS->D[0];
216 if(NumConv == 4) {
217 Dest[1] = pS->D[1];
218 }
219 }
220 return NumConv;
221 }
222
223 /* Determine the number of bytes needed to represent a Wide character
224 as a MBCS character.
225
226 A single wide character may convert into a one, two, three, or four byte
227 narrow (MBCS or UTF-8) character. The number of MBCS bytes can be determined
228 as follows.
229
230 If WCS char < 0x00000080 One Byte
231 Else if WCS char < 0x0000D800 Two Bytes
232 Else Three Bytes
233
234 Since UEFI only supports the Unicode Base Multilingual Plane (BMP),
235 Four-byte characters are not supported.
236
237 @param[in] InCh Wide character to test.
238
239 @retval -1 Improperly formed character
240 @retval 0 InCh is 0x0000
241 @retval >0 Number of bytes needed for the MBCS character
242 */
243 int
244 EFIAPI
245 OneWcToMcLen(const wchar_t InCh)
246 {
247 ssize_t NumBytes;
248
249 if(InCh == 0) { // Is this a NUL, 0x0000 ?
250 NumBytes = 0;
251 }
252 else if(InCh < 0x0080) { // Is this a 1-byte character?
253 NumBytes = 1;
254 }
255 else if(InCh < 0x0800) { // Is this a 2-byte character?
256 NumBytes = 2;
257 }
258 else if((InCh >= 0xD800) && (InCh < 0xE000)) { // Is this a surrogate?
259 NumBytes = -1;
260 }
261 else {
262 NumBytes = 3; // Otherwise, it must be a 3-byte character.
263 }
264 return (int)NumBytes; // Return extimate of required bytes.
265 }
266
267 /* Determine the number of bytes needed to represent a Wide character string
268 as a MBCS string of given maximum length. Will optionally return the number
269 of wide characters that would be consumed.
270
271 A single wide character may convert into a one, two, three, or four byte
272 narrow (MBCS or UTF-8) character. The number of MBCS bytes can be determined
273 as follows.
274
275 If WCS char < 0x00000080 One Byte
276 Else if WCS char < 0x00000800 Two Bytes
277 Else if WCS char < 0x00010000 Three Bytes
278 Else Four Bytes
279
280 Since UEFI only supports the Unicode Base Multilingual Plane (BMP),
281 Four-byte characters should not be encountered.
282
283 @param[in] Src Pointer to a wide character string.
284 @param[in] Limit Maximum number of bytes the converted string may occupy.
285 @param[out] NumChar Pointer to where to store the number of wide characters, or NULL.
286
287 @return The number of bytes required to convert Src to MBCS,
288 not including the terminating NUL. If NumChar is not NULL, the number
289 of characters represented by the return value will be written to
290 where it points.
291 */
292 size_t
293 EFIAPI
294 EstimateWtoM(const wchar_t * Src, size_t Limit, size_t *NumChar)
295 {
296 ssize_t Estimate;
297 size_t CharCount;
298 ssize_t NumBytes;
299 wchar_t EChar;
300
301 Estimate = 0;
302 CharCount = 0;
303 EChar = *Src++; // Get the initial character and point to next
304 while(((NumBytes = OneWcToMcLen(EChar)) > 0) &&
305 ((size_t)(Estimate + NumBytes) < Limit))
306 { // Until one of the source characters is NUL
307 ++CharCount; // Count this character.
308 Estimate += NumBytes; // Count the Bytes for this character
309 EChar = *Src++; // Get the next source character and point to the next.
310 }
311 if(NumChar != NULL) {
312 *NumChar = CharCount;
313 }
314 return (size_t)Estimate; // Return esimate of required bytes.
315 }
316
317 /* Determine the number of characters in a MBCS string.
318 MBCS characters are one to four bytes long. By examining the first byte
319 of a MBCS character, one can determine the number of bytes comprising the
320 character.
321
322 0x00 - 0x7F One
323 0xC0 - 0xDF Two
324 0xE0 - 0xEF Three
325 0xF0 - 0xF7 Four
326
327 Since UEFI only supports the Unicode Base Multilingual Plane (BMP),
328 Four-byte characters should not be encountered.
329
330 @param[in] Src The string to examine
331
332 @return The number of characters represented by the MBCS string.
333 **/
334 size_t
335 EFIAPI
336 CountMbcsChars(const char *Src)
337 {
338 size_t Count;
339 char EChar;
340
341 Count = 0;
342 EChar = *Src++;
343 while(EChar != 0) {
344 if(EChar < 0x80) {
345 ++Count;
346 }
347 else if(EChar < 0xE0) {
348 Count += 2;
349 ++Src;
350 }
351 else if(EChar < 0xF0) {
352 Count += 3;
353 Src += 2;
354 }
355 else {
356 // Ill-formed character
357 break;
358 }
359 }
360 return Count;
361 }
362
363 /** Convert a wide character (UTF16) into a multibyte character (UTF8)
364
365 Converts a wide character into a corresponding multibyte character that
366 begins in the conversion state described by the object pointed to by ps.
367 If dst is not a null pointer, the converted character is then stored into
368 the array pointed to by dst.
369
370 It is the caller's responsibility to ensure that Dest is large enough to
371 hold the resulting MBCS sequence.
372
373 @param s Pointer to the wide-character string to convert
374 @param Dest Pointer to the buffer in which to place the converted sequence, or NULL.
375
376 @retval -1 An error occurred. The error reason is in errno.
377 @retval >=0 The number of bytes stored into Dest.
378 **/
379 ssize_t
380 EncodeUtf8(char *Dest, wchar_t ch)
381 {
382 char *p; /* next free byte in build buffer */
383 int NumInBuff; // number of bytes in Buff
384 char Buff[4]; // Buffer into which each character is built
385
386 p = Buff;
387
388 NumInBuff = 0;
389 if (ch < 0x80) {
390 /* Encode ASCII -- One Byte */
391 *p++ = (char) ch;
392 NumInBuff = 1;
393 }
394 else if (ch < 0x0800) {
395 /* Encode Latin-1 -- Two Byte */
396 *p++ = (char)(0xc0 | (ch >> 6));
397 *p++ = (char)(0x80 | (ch & 0x3f));
398 NumInBuff = 2;
399 }
400 else {
401 /* Encode UCS2 Unicode ordinals -- Three Byte */
402 /* Special case: check for surrogate -- Shouldn't happen in UEFI */
403 if (0xD800 <= ch && ch < 0xE000) {
404 errno = EILSEQ;
405 return -1;
406 }
407 else {
408 *p++ = (char)(0xe0 | (ch >> 12));
409 *p++ = (char)(0x80 | ((ch >> 6) & 0x3f));
410 *p++ = (char)(0x80 | (ch & 0x3f));
411 NumInBuff = 3;
412 }
413 }
414 /* At this point, Buff holds the converted character which is NumInBuff bytes long.
415 NumInBuff is the value 1, 2, 3, or 4
416 */
417 if(Dest != NULL) { // Save character if Dest is not NULL
418 memcpy(Dest, Buff, NumInBuff);
419
420 if(ch != 0) {
421 // Terminate the destination string.
422 Dest[NumInBuff] = '\0';
423 }
424 else {
425 NumInBuff = 0;
426 }
427 }
428 return NumInBuff; // Tell the caller
429 }
430
431 // ######################## Narrow to Wide Conversions #######################
432
433 /** If ps is not a null pointer, the mbsinit function determines whether the
434 pointed-to mbstate_t object describes an initial conversion state.
435
436 @param[in] ps Pointer to the conversion state object to test.
437
438 @return The mbsinit function returns nonzero if ps is a null pointer
439 or if the pointed-to object describes an initial conversion
440 state; otherwise, it returns zero.
441
442 Declared in: wchar.h
443 **/
444 int
445 mbsinit(const mbstate_t *ps)
446 {
447 if((ps == NULL) || (ps->A == 0)) {
448 return 1;
449 }
450 return 0;
451 }
452
453 /** The mbrlen function is equivalent to the call:<BR>
454 @verbatim
455 mbrtowc(NULL, s, n, ps != NULL ? ps : &internal)
456 @endverbatim
457 where internal is the mbstate_t object for the mbrlen function, except that
458 the expression designated by ps is evaluated only once.
459
460 @param[in] s Pointer to a multibyte character sequence.
461 @param[in] n Maximum number of bytes to examine.
462 @param[in] pS Pointer to the conversion state object.
463
464 @retval 0 The next n or fewer characters complete a NUL.
465 @retval 1..n The number of bytes that complete the multibyte character.
466 @retval -2 The next n bytes contribute to an incomplete (but potentially valid) multibyte character.
467 @retval -1 An encoding error occurred.
468
469 Declared in: wchar.h
470 **/
471 size_t
472 mbrlen(
473 const char *s,
474 size_t n,
475 mbstate_t *pS
476 )
477 {
478 return mbrtowc(NULL, s, n, pS);
479 }
480
481 /** Determine the number of bytes comprising a multibyte character.
482
483 If S is not a null pointer, the mblen function determines the number of bytes
484 contained in the multibyte character pointed to by S. Except that the
485 conversion state of the mbtowc function is not affected, it is equivalent to
486 mbtowc((wchar_t *)0, S, N);
487
488 @param[in] S NULL to query whether multibyte characters have
489 state-dependent encodings. Otherwise, points to a
490 multibyte character.
491 @param[in] N The maximum number of bytes in a multibyte character.
492
493 @return If S is a null pointer, the mblen function returns a nonzero or
494 zero value, if multibyte character encodings, respectively, do
495 or do not have state-dependent encodings. If S is not a null
496 pointer, the mblen function either returns 0 (if S points to the
497 null character), or returns the number of bytes that are contained
498 in the multibyte character (if the next N or fewer bytes form a
499 valid multibyte character), or returns -1 (if they do not form a
500 valid multibyte character).
501
502 Declared in: stdlib.h
503 **/
504 int
505 mblen(
506 const char *s,
507 size_t n
508 )
509 {
510 return (int)mbrlen(s, n, NULL);
511 }
512
513 /**
514 If S is a null pointer, the mbrtowc function is equivalent to the call:<BR>
515 @verbatim
516 mbrtowc(NULL, "", 1, ps)
517 @endverbatim
518
519 In this case, the values of the parameters pwc and n are ignored.
520
521 If S is not a null pointer, the mbrtowc function inspects at most n bytes beginning with
522 the byte pointed to by S to determine the number of bytes needed to complete the next
523 multibyte character (including any shift sequences). If the function determines that the
524 next multibyte character is complete and valid, it determines the value of the
525 corresponding wide character and then, if pwc is not a null pointer, stores that value in
526 the object pointed to by pwc. If the corresponding wide character is the null wide
527 character, the resulting state described is the initial conversion state.
528
529 @param[out] pwc Pointer to where the resulting wide character is to be stored.
530 @param[in] s Pointer to a multibyte character "string".
531 @param[in] n The maximum number of bytes to inspect.
532 @param[in] ps Pointer to a conversion state object.
533
534 @retval 0 if the next n or fewer bytes complete the multibyte
535 character that corresponds to the null wide
536 character (which is the value stored).
537 @retval between_1_and_n_inclusive if the next n or fewer bytes complete
538 a valid multibyte character (which is the value
539 stored); the value returned is the number of bytes
540 that complete the multibyte character.
541 @retval (size_t)(-2) if the next n bytes contribute to an incomplete
542 (but potentially valid) multibyte character, and
543 all n bytes have been processed (no value is stored).
544 @retval (size_t)(-1) if an encoding error occurs, in which case the next
545 n or fewer bytes do not contribute to a complete and
546 valid multibyte character (no value is stored); the
547 value of the macro EILSEQ is stored in errno, and
548 the conversion state is unspecified.
549
550 Declared in: wchar.h
551 **/
552 size_t
553 mbrtowc(
554 wchar_t *pwc,
555 const char *s,
556 size_t n,
557 mbstate_t *ps
558 )
559 {
560 int RetVal;
561
562 RetVal = DecodeOneStateful(pwc, s, (ssize_t)n, ps);
563 return (size_t)RetVal;
564 }
565
566 /** Convert a multibyte character into a wide character.
567
568 If S is not a null pointer, the mbtowc function inspects at most N bytes
569 beginning with the byte pointed to by S to determine the number of bytes
570 needed to complete the next multibyte character (including any shift
571 sequences). If the function determines that the next multibyte character
572 is complete and valid, it determines the value of the corresponding wide
573 character and then, if Pwc is not a null pointer, stores that value in
574 the object pointed to by Pwc. If the corresponding wide character is the
575 null wide character, the function is left in the initial conversion state.
576
577 @param[out] Pwc Pointer to a wide-character object to receive the converted character.
578 @param[in] S Pointer to a multibyte character to convert.
579 @param[in] N Maximum number of bytes in a multibyte character.
580
581 @return If S is a null pointer, the mbtowc function returns a nonzero or
582 zero value, if multibyte character encodings, respectively, do
583 or do not have state-dependent encodings. If S is not a null
584 pointer, the mbtowc function either returns 0 (if S points to
585 the null character), or returns the number of bytes that are
586 contained in the converted multibyte character (if the next N or
587 fewer bytes form a valid multibyte character), or returns -1
588 (if they do not form a valid multibyte character).
589
590 In no case will the value returned be greater than N or the value
591 of the MB_CUR_MAX macro.
592
593 Declared in: stdlib.h
594 **/
595 int
596 mbtowc(
597 wchar_t *pwc,
598 const char *s,
599 size_t n
600 )
601 {
602 return (int)mbrtowc(pwc, s, n, NULL);
603 }
604
605 /**
606 The mbsrtowcs function converts a sequence of multibyte characters that begins in the
607 conversion state described by the object pointed to by ps, from the array indirectly
608 pointed to by src into a sequence of corresponding wide characters. If dst is not a null
609 pointer, the converted characters are stored into the array pointed to by dst. Conversion
610 continues up to and including a terminating null character, which is also stored.
611 Conversion stops earlier in two cases: when a sequence of bytes is encountered that does
612 not form a valid multibyte character, or (if dst is not a null pointer) when len wide
613 characters have been stored into the array pointed to by dst. Each conversion takes
614 place as if by a call to the mbrtowc function.
615
616 If dst is not a null pointer, the pointer object pointed to by src is assigned either a null
617 pointer (if conversion stopped due to reaching a terminating null character) or the address
618 just past the last multibyte character converted (if any). If conversion stopped due to
619 reaching a terminating null character and if dst is not a null pointer, the resulting state
620 described is the initial conversion state.
621
622 @param[out] dst Pointer to where the resulting wide character sequence is stored.
623 @param[in] src Pointer to a pointer to the multibyte character sequence to convert.
624 @param[in] len Maximum number of wide characters to be stored into dst.
625 @param[in] ps Pointer to a conversion state object.
626
627 @return If the input conversion encounters a sequence of bytes that do
628 not form a valid multibyte character, an encoding error occurs:
629 the mbsrtowcs function stores the value of the macro EILSEQ in
630 errno and returns (size_t)(-1); the conversion state is
631 unspecified. Otherwise, it returns the number of multibyte
632 characters successfully converted, not including the terminating
633 null character (if any).
634
635 Declared in: wchar.h
636 **/
637 size_t
638 mbsrtowcs(
639 wchar_t *dst,
640 const char **src,
641 size_t len,
642 mbstate_t *ps
643 )
644 {
645 int x;
646 size_t RetVal = 0;
647 const char *MySrc;
648
649 if((src == NULL) || (*src == NULL) || (**src == '\0')) {
650 return 0;
651 }
652
653 MySrc = *src;
654 for(x = 1 ; (len != 0) && (x > 0); --len) {
655 x = DecodeOneStateful(dst, MySrc, MB_LEN_MAX, ps);
656 switch(x) {
657 case -2: // Incomplete character
658 case -1: // Encoding error
659 RetVal = (size_t)x;
660 break;
661 case 0: // Encountered NUL character: done.
662 if(dst != NULL) {
663 *dst = 0;
664 *src = NULL;
665 }
666 break;
667 default: // Successfully decoded a character, continue with next
668 MySrc += x;
669 if(dst != NULL) {
670 ++dst;
671 if(x == 4) {
672 ++dst;
673 }
674 *src = MySrc;
675 }
676 ++RetVal;
677 break;
678 }
679 }
680 return RetVal;
681 }
682
683 /** Convert a multibyte character string into a wide-character string.
684
685 The mbstowcs function converts a sequence of multibyte characters that
686 begins in the initial shift state from the array pointed to by Src into
687 a sequence of corresponding wide characters and stores not more than limit
688 wide characters into the array pointed to by Dest. No multibyte
689 characters that follow a null character (which is converted into a null
690 wide character) will be examined or converted. Each multibyte character
691 is converted as if by a call to the mbtowc function, except that the
692 conversion state of the mbtowc function is not affected.
693
694 No more than Limit elements will be modified in the array pointed to by Dest.
695 If copying takes place between objects that overlap,
696 the behavior is undefined.
697
698 @param[out] Dest Pointer to the array to receive the converted string.
699 @param[in] Src Pointer to the string to be converted.
700 @param[in] Limit Maximum number of elements to be written to Dest.
701
702 @return If an invalid multibyte character is encountered, the mbstowcs
703 function returns (size_t)(-1). Otherwise, the mbstowcs function
704 returns the number of array elements modified, not including a
705 terminating null wide character, if any.
706
707 Declared in: stdlib.h
708 **/
709 size_t
710 mbstowcs(
711 wchar_t *Dest,
712 const char *Src,
713 size_t Limit
714 )
715 {
716
717 /* Dest may be NULL */
718 /* Src may be NULL */
719
720 return mbsrtowcs(Dest, &Src, Limit, NULL);
721 }
722
723 /** The btowc function determines whether C constitutes a valid single-byte
724 character in the initial shift state.
725
726 @param[in] C A narrow character to test or convert to wide.
727
728 @return The btowc function returns WEOF if c has the value EOF or if
729 (unsigned char)C does not constitute a valid single-byte
730 character in the initial shift state. Otherwise, it returns the
731 wide character representation of that character.
732
733 Declared in: wchar.h
734 **/
735 wint_t
736 btowc(int c)
737 {
738 int x;
739 wchar_t Dest;
740 wint_t RetVal = WEOF;
741
742 if (c == EOF)
743 return WEOF;
744 x = DecodeOneStateful(&Dest, (const char *)&c, 1, NULL);
745 if(x == 0) {
746 RetVal = 0;
747 }
748 else if(x == 1) {
749 RetVal = (wint_t)Dest;
750 }
751 return RetVal;
752 }
753
754 // ######################## Wide to Narrow Conversions #######################
755
756 /**
757 If S is a null pointer, the wcrtomb function is equivalent to the call:<BR>
758 @verbatim
759 wcrtomb(buf, L'\0', ps)
760 @endverbatim
761 where buf is an internal buffer.
762
763 If S is not a null pointer, the wcrtomb function determines the number of bytes needed
764 to represent the multibyte character that corresponds to the wide character given by wc
765 (including any shift sequences), and stores the multibyte character representation in the
766 array whose first element is pointed to by S. At most MB_CUR_MAX bytes are stored. If
767 wc is a null wide character, a null byte is stored, preceded by any shift sequence needed
768 to restore the initial shift state; the resulting state described is the initial conversion state.
769
770 @param[out] Dest Pointer to the location in which to store the resulting
771 multibyte character. Otherwise, NULL to reset the
772 conversion state.
773 @param[in] wchar The wide character to convert.
774 @param[in,out] pS Pointer to a conversion state object, or NULL.
775
776 @return The wcrtomb function returns the number of bytes stored in the
777 array object (including any shift sequences). When wc is not a
778 valid wide character, an encoding error occurs: the function
779 stores the value of the macro EILSEQ in errno and
780 returns (size_t)(-1); the conversion state is unspecified.
781
782 Declared in: wchar.h
783 **/
784 size_t
785 wcrtomb(
786 char *Dest,
787 wchar_t wchar,
788 mbstate_t *pS
789 )
790 {
791 size_t RetVal;
792
793 /* Dest may be NULL */
794 if (Dest == NULL) {
795 RetVal = 1;
796 }
797 else {
798 if (wchar == L'\0') {
799 *Dest = '\0';
800 RetVal = 1;
801 }
802 else {
803 RetVal = EncodeUtf8(Dest, wchar);
804 }
805 }
806 if(pS == NULL) {
807 pS = &LocalConvState;
808 }
809 pS->A = 0; // Set ps to the initial conversion state
810
811 return RetVal;
812 }
813
814 /** Convert a wide character into a multibyte character.
815
816 The wctomb function determines the number of bytes needed to represent the
817 multibyte character corresponding to the wide character given by WC
818 (including any shift sequences), and stores the multibyte character
819 representation in the array whose first element is pointed to by S (if S is
820 not a null pointer). At most MB_CUR_MAX characters are stored. If WC is a
821 null wide character, a null byte is stored, preceded by any shift sequence
822 needed to restore the initial shift state, and the function is left in the
823 initial conversion state.
824
825 @param[out] S Pointer to the object to receive the converted multibyte character.
826 @param[in] WC Wide character to be converted.
827
828 @return If S is a null pointer, the wctomb function returns a nonzero or
829 zero value, if multibyte character encodings, respectively, do or
830 do not have state-dependent encodings. If S is not a null pointer,
831 the wctomb function returns -1 if the value of WC does not
832 correspond to a valid multibyte character, or returns the number
833 of bytes that are contained in the multibyte character
834 corresponding to the value of WC.
835
836 In no case will the value returned be greater than the value of
837 the MB_CUR_MAX macro.
838
839 Declared in: stdlib.h
840 **/
841 int
842 wctomb(
843 char *s,
844 wchar_t wchar
845 )
846 {
847 /*
848 If s is NULL just return whether MB Characters have state
849 dependent encodings -- they don't.
850 */
851 if (s == NULL)
852 return 0;
853
854 return (int)wcrtomb(s, wchar, NULL);
855 }
856
857 /** The wcsrtombs function converts a sequence of wide characters from the array
858 indirectly pointed to by Dest into a sequence of corresponding multibyte
859 characters that begins in the conversion state described by the object
860 pointed to by ps.
861
862 If Dest is not a null pointer, the converted characters are stored into the
863 array pointed to by Dest. Conversion continues up to and including a
864 terminating null wide character, which is also stored. Conversion stops
865 earlier in two cases: when a wide character is reached that does not
866 correspond to a valid multibyte character, or (if Dest is not a null
867 pointer) when the next multibyte character would exceed the limit of Limit
868 total bytes to be stored into the array pointed to by Dest. Each conversion
869 takes place as if by a call to the wcrtomb function.)
870
871 If Dest is not a null pointer, the pointer object pointed to by Src is
872 assigned either a null pointer (if conversion stopped due to reaching
873 a terminating null wide character) or the address just past the last wide
874 character converted (if any). If conversion stopped due to reaching a
875 terminating null wide character, the resulting state described is the
876 initial conversion state.
877
878 @param[in] Dest
879 @param[in,out] Src
880 @param[in] Limit Max number of bytes to store in Dest.
881 @param[in,out] ps
882
883 @return If conversion stops because a wide character is reached that
884 does not correspond to a valid multibyte character, an
885 encoding error occurs: the wcsrtombs function stores the
886 value of the macro EILSEQ in errno and returns (size_t)(-1);
887 the conversion state is unspecified. Otherwise, it returns
888 the number of bytes in the resulting multibyte character
889 sequence, not including the terminating null character (if any).
890
891 Declared in: wchar.h
892 **/
893 size_t
894 wcsrtombs(
895 char *Dest,
896 const wchar_t **Src,
897 size_t Limit,
898 mbstate_t *ps
899 )
900 {
901 size_t NumStored;
902 ssize_t MaxBytes;
903 int count;
904 wchar_t InCh;
905
906 NumStored = 0;
907 MaxBytes = (ssize_t)Limit;
908
909 /* Dest may be NULL */
910 /* Src may be NULL */
911 /* ps appears to be unused */
912
913 if (Src == NULL || *Src == NULL)
914 return (0);
915
916 if (Dest == NULL) {
917 if(MaxBytes <= 0) {
918 MaxBytes = ASCII_STRING_MAX;
919 }
920 NumStored = EstimateWtoM(*Src, MaxBytes, NULL);
921 }
922 else {
923 while (OneWcToMcLen(InCh = *(*Src)++) <= MaxBytes) {
924 if(InCh == 0) {
925 *Src = NULL;
926 break;
927 }
928 count = (int)wcrtomb(Dest, InCh, NULL);
929 if(count >= 0) {
930 Dest += count;
931 MaxBytes -= count;
932 NumStored += count;
933 }
934 else {
935 NumStored = (size_t)(-1);
936 }
937 }
938 }
939
940
941 return NumStored;
942 }
943
944 /** Convert a wide-character string into a multibyte character string.
945
946 The wcstombs function converts a sequence of wide characters from the
947 array pointed to by Src into a sequence of corresponding multibyte
948 characters that begins in the initial shift state, and stores these
949 multibyte characters into the array pointed to by Dest, stopping if a
950 multibyte character would exceed the limit of Limit total bytes or if a
951 null character is stored. Each wide character is converted as if by
952 a call to the wctomb function, except that the conversion state of
953 the wctomb function is not affected.
954
955 No more than Limit bytes will be modified in the array pointed to by Dest.
956 If copying takes place between objects that overlap,
957 the behavior is undefined.
958
959 @param[out] Dest Pointer to the array to receive the converted string.
960 @param[in] Src Pointer to the string to be converted.
961 @param[in] Limit Maximum number of elements to be written to Dest.
962
963 @return If a wide character is encountered that does not correspond to a
964 valid multibyte character, the wcstombs function returns
965 (size_t)(-1). Otherwise, the wcstombs function returns the number
966 of bytes modified, not including a terminating null character,
967 if any.
968
969 Declared in: stdlib.h
970 **/
971 size_t
972 wcstombs(
973 char *Dest,
974 const wchar_t *Src,
975 size_t Limit
976 )
977 {
978 /* Dest may be NULL */
979 return wcsrtombs(Dest, &Src, Limit, NULL);
980 }
981
982 /** The wctob function determines whether C corresponds to a member of the extended
983 character set whose multibyte character representation is a single byte when in the initial
984 shift state.
985
986 wctob needs to be consistent with wcrtomb.
987 If wcrtomb says that a character is representable in 1 byte,
988 then wctob needs to also represent the character as 1 byte.
989
990 @return The wctob function returns EOF if C does not correspond to a multibyte
991 character with length one in the initial shift state. Otherwise, it
992 returns the single-byte representation of that character as an
993 unsigned char converted to an int.
994
995 Declared in: wchar.h
996 **/
997 int
998 wctob(wint_t c)
999 {
1000 int RetVal;
1001
1002 RetVal = EOF;
1003 if(c == 0) {
1004 RetVal = 0;
1005 }
1006 else if (OneWcToMcLen((const wchar_t)c) == 1) {
1007 RetVal = (int)(c & 0xFF);
1008 }
1009 return RetVal;
1010 }