1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
|
/*
* Copyright (C) 2009-2014 Erwin Waterlander
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice in the documentation and/or other materials provided with
* the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "common.h"
#if defined(D2U_UNICODE)
#if defined(_WIN32) || defined(__CYGWIN__)
#include <windows.h>
#endif
#endif
#if defined(__GLIBC__)
/* on glibc, canonicalize_file_name() broken prior to 2.4 (06-Mar-2006) */
# if __GNUC_PREREQ (2,4)
# define USE_CANONICALIZE_FILE_NAME 1
# endif
#elif defined(__CYGWIN__)
/* on cygwin, canonicalize_file_name() available since api 0/213 */
/* (1.7.0beta61, 25-Sep-09) */
# include <cygwin/version.h>
# if (CYGWIN_VERSION_DLL_COMBINED >= 213) && (CYGWIN_VERSION_DLL_MAJOR >= 1007)
# define USE_CANONICALIZE_FILE_NAME 1
# endif
#endif
/******************************************************************
*
* int symbolic_link(char *path)
*
* test if *path points to a file that exists and is a symbolic link
*
* returns 1 on success, 0 when it fails.
*
******************************************************************/
#if (defined(_WIN32) && !defined(__CYGWIN__))
int symbolic_link(const char *path)
{
DWORD attrs;
attrs = GetFileAttributes(path);
if (attrs == INVALID_FILE_ATTRIBUTES)
return(0);
return ((attrs & FILE_ATTRIBUTE_REPARSE_POINT) != 0);
}
#else
int symbolic_link(const char *path)
{
#ifdef S_ISLNK
struct stat buf;
if (STAT(path, &buf) == 0)
{
if (S_ISLNK(buf.st_mode))
return(1);
}
#endif
return(0);
}
#endif
/******************************************************************
*
* int regfile(char *path, int allowSymlinks)
*
* test if *path points to a regular file (or is a symbolic link,
* if allowSymlinks != 0).
*
* returns 0 on success, -1 when it fails.
*
******************************************************************/
int regfile(char *path, int allowSymlinks, CFlag *ipFlag, char *progname)
{
struct stat buf;
char *errstr;
if (STAT(path, &buf) == 0)
{
#if DEBUG
fprintf(stderr, "%s: %s MODE 0%o ", progname, path, buf.st_mode);
#ifdef S_ISSOCK
if (S_ISSOCK(buf.st_mode))
fprintf(stderr, " (socket)");
#endif
#ifdef S_ISLNK
if (S_ISLNK(buf.st_mode))
fprintf(stderr, " (symbolic link)");
#endif
if (S_ISREG(buf.st_mode))
fprintf(stderr, " (regular file)");
#ifdef S_ISBLK
if (S_ISBLK(buf.st_mode))
fprintf(stderr, " (block device)");
#endif
if (S_ISDIR(buf.st_mode))
fprintf(stderr, " (directory)");
if (S_ISCHR(buf.st_mode))
fprintf(stderr, " (character device)");
if (S_ISFIFO(buf.st_mode))
fprintf(stderr, " (FIFO)");
fprintf(stderr, "\n");
#endif
if ((S_ISREG(buf.st_mode))
#ifdef S_ISLNK
|| (S_ISLNK(buf.st_mode) && allowSymlinks)
#endif
)
return(0);
else
return(-1);
}
else
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, path, errstr);
}
return(-1);
}
}
/******************************************************************
*
* int regfile_target(char *path)
*
* test if *path points to a regular file (follow symbolic link)
*
* returns 0 on success, -1 when it fails.
*
******************************************************************/
int regfile_target(char *path, CFlag *ipFlag, char *progname)
{
struct stat buf;
char *errstr;
if (stat(path, &buf) == 0)
{
if (S_ISREG(buf.st_mode))
return(0);
else
return(-1);
}
else
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, path, errstr);
}
return(-1);
}
}
void PrintBSDLicense(void)
{
printf("%s", _("\
Redistribution and use in source and binary forms, with or without\n\
modification, are permitted provided that the following conditions\n\
are met:\n\
1. Redistributions of source code must retain the above copyright\n\
notice, this list of conditions and the following disclaimer.\n\
2. Redistributions in binary form must reproduce the above copyright\n\
notice in the documentation and/or other materials provided with\n\
the distribution.\n\n\
"));
printf("%s", _("\
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY\n\
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\n\
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE\n\
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n\
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT\n\
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n\
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n\
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n\
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n\
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\
"));
}
void PrintUsage(char *progname)
{
printf(_("Usage: %s [options] [file ...] [-n infile outfile ...]\n"), progname);
printf(_(" -ascii convert only line breaks (default)\n"));
printf(_(" -iso conversion between DOS and ISO-8859-1 character set\n"));
printf(_(" -1252 use Windows code page 1252 (Western European)\n"));
printf(_(" -437 use DOS code page 437 (US) (default)\n"));
printf(_(" -850 use DOS code page 850 (Western European)\n"));
printf(_(" -860 use DOS code page 860 (Portuguese)\n"));
printf(_(" -863 use DOS code page 863 (French Canadian)\n"));
printf(_(" -865 use DOS code page 865 (Nordic)\n"));
printf(_(" -7 convert 8 bit characters to 7 bit space\n"));
if ((strncmp(progname, "dos2unix", sizeof("mac2unix")) == 0) || (strncmp(progname, "dos2unix", sizeof("dos2unix")) == 0))
printf(_(" -b, --keep-bom keep Byte Order Mark\n"));
else
printf(_(" -b, --keep-bom keep Byte Order Mark (default)\n"));
printf(_(" -c, --convmode conversion mode\n\
convmode ascii, 7bit, iso, mac, default to ascii\n"));
printf(_(" -f, --force force conversion of binary files\n"));
printf(_(" -h, --help display this help text\n"));
printf(_(" -k, --keepdate keep output file date\n"));
printf(_(" -L, --license display software license\n"));
printf(_(" -l, --newline add additional newline\n"));
printf(_(" -m, --add-bom add UTF-8 Byte Order Mark\n"));
printf(_(" -n, --newfile write to new file\n\
infile original file in new-file mode\n\
outfile output file in new-file mode\n"));
printf(_(" -o, --oldfile write to old file (default)\n\
file ... files to convert in old-file mode\n"));
printf(_(" -q, --quiet quiet mode, suppress all warnings\n\
(always on in stdio mode)\n"));
if ((strncmp(progname, "dos2unix", sizeof("mac2unix")) == 0) || (strncmp(progname, "dos2unix", sizeof("dos2unix")) == 0))
printf(_(" -r, --remove-bom remove Byte Order Mark (default)\n"));
else
printf(_(" -r, --remove-bom remove Byte Order Mark\n"));
printf(_(" -s, --safe skip binary files (default)\n"));
#ifdef D2U_UNICODE
printf(_(" -ul, --assume-utf16le assume that the input format is UTF-16LE\n"));
printf(_(" -ub, --assume-utf16be assume that the input format is UTF-16BE\n"));
#endif
#ifdef S_ISLNK
printf(_(" -F, --follow-symlink follow symbolic links and convert the targets\n"));
#endif
#if defined(S_ISLNK) || (defined(_WIN32) && !defined(__CYGWIN__))
printf(_(" -R, --replace-symlink replace symbolic links with converted files\n\
(original target files remain unchanged)\n"));
printf(_(" -S, --skip-symlink keep symbolic links and targets unchanged (default)\n"));
#endif
printf(_(" -V, --version display version number\n"));
}
#define MINGW32_W64 1
void PrintVersion(char *progname)
{
printf("%s %s (%s)\n", progname, VER_REVISION, VER_DATE);
#if DEBUG
printf("VER_AUTHOR: %s\n", VER_AUTHOR);
#endif
#if defined(__WATCOMC__) && defined(__I86__)
printf("%s", _("DOS 16 bit version (WATCOMC).\n"));
#elif defined(__TURBOC__) && defined(__MSDOS__)
printf("%s", _("DOS 16 bit version (TURBOC).\n"));
#elif defined(__WATCOMC__) && defined(__DOS__)
printf("%s", _("DOS 32 bit version (WATCOMC).\n"));
#elif defined(__DJGPP__)
printf("%s", _("DOS 32 bit version (DJGPP).\n"));
#elif defined(__MSYS__)
printf("%s", _("MSYS version.\n"));
#elif defined(__CYGWIN__)
printf("%s", _("Cygwin version.\n"));
#elif defined(__WIN64__) && defined(__MINGW64__)
printf("%s", _("Windows 64 bit version (MinGW-w64).\n"));
#elif defined(__WATCOMC__) && defined(__NT__)
printf("%s", _("Windows 32 bit version (WATCOMC).\n"));
#elif defined(_WIN32) && defined(__MINGW32__) && (D2U_COMPILER == MINGW32_W64)
printf("%s", _("Windows 32 bit version (MinGW-w64).\n"));
#elif defined(_WIN32) && defined(__MINGW32__)
printf("%s", _("Windows 32 bit version (MinGW).\n"));
#elif defined(_WIN64) && defined(_MSC_VER)
printf(_("Windows 64 bit version (MSVC %d).\n"),_MSC_VER);
#elif defined(_WIN32) && defined(_MSC_VER)
printf(_("Windows 32 bit version (MSVC %d).\n"),_MSC_VER);
#elif defined (__OS2__) && defined(__WATCOMC__) /* OS/2 Warp */
printf("%s", _("OS/2 version (WATCOMC).\n"));
#elif defined (__OS2__) && defined(__EMX__) /* OS/2 Warp */
printf("%s", _("OS/2 version (EMX).\n"));
#endif
#ifdef D2U_UNICODE
printf("%s", _("With Unicode UTF-16 support.\n"));
#else
printf("%s", _("Without Unicode UTF-16 support.\n"));
#endif
#ifdef ENABLE_NLS
printf("%s", _("With native language support.\n"));
#else
printf("%s", "Without native language support.\n");
#endif
}
#ifdef ENABLE_NLS
void PrintLocaledir(char *localedir)
{
printf("LOCALEDIR: %s\n", localedir);
}
#endif
/* opens file of name ipFN in read only mode
* RetVal: NULL if failure
* file stream otherwise
*/
FILE* OpenInFile(char *ipFN)
{
return (fopen(ipFN, R_CNTRL));
}
/* opens file of name ipFN in write only mode
* RetVal: NULL if failure
* file stream otherwise
*/
FILE* OpenOutFile(int fd)
{
return (fdopen(fd, W_CNTRL));
}
#if defined(__TURBOC__) || defined(__MSYS__) || defined(_MSC_VER)
char *dirname(char *path)
{
char *ptr;
if (( path == NULL) || (((ptr=strrchr(path,'/')) == NULL) && ((ptr=strrchr(path,'\\')) == NULL)) )
return ".";
else
{
*ptr = '\0';
return(path);
}
}
#endif
#ifdef NO_MKSTEMP
FILE* MakeTempFileFrom(const char *OutFN, char **fname_ret)
#else
int MakeTempFileFrom(const char *OutFN, char **fname_ret)
#endif
{
char *cpy = strdup(OutFN);
char *dir = NULL;
size_t fname_len = 0;
char *fname_str = NULL;
#ifdef NO_MKSTEMP
char *name;
FILE *fd = NULL;
#else
int fd = -1;
#endif
*fname_ret = NULL;
if (!cpy)
goto make_failed;
dir = dirname(cpy);
fname_len = strlen(dir) + strlen("/d2utmpXXXXXX") + sizeof (char);
if (!(fname_str = malloc(fname_len)))
goto make_failed;
sprintf(fname_str, "%s%s", dir, "/d2utmpXXXXXX");
*fname_ret = fname_str;
free(cpy);
#ifdef NO_MKSTEMP
name = mktemp(fname_str);
*fname_ret = name;
if ((fd = fopen(fname_str, W_CNTRL)) == NULL)
goto make_failed;
#else
if ((fd = mkstemp(fname_str)) == -1)
goto make_failed;
#endif
return (fd);
make_failed:
free(*fname_ret);
*fname_ret = NULL;
#ifdef NO_MKSTEMP
return (NULL);
#else
return (-1);
#endif
}
/* Test if *lFN is the name of a symbolic link. If not, set *rFN equal
* to lFN, and return 0. If so, then use canonicalize_file_name or
* realpath to determine the pointed-to file; the resulting name is
* stored in newly allocated memory, *rFN is set to point to that value,
* and 1 is returned. On error, -1 is returned and errno is set as
* appropriate.
*
* Note that if symbolic links are not supported, then 0 is always returned
* and *rFN = lFN.
*
* RetVal: 0 if success, and *lFN is not a symlink
* 1 if success, and *lFN is a symlink
* -1 otherwise
*/
int ResolveSymbolicLink(char *lFN, char **rFN, CFlag *ipFlag, char *progname)
{
int RetVal = 0;
#ifdef S_ISLNK
struct stat StatBuf;
char *errstr;
char *targetFN = NULL;
if (STAT(lFN, &StatBuf))
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, lFN, errstr);
}
RetVal = -1;
}
else if (S_ISLNK(StatBuf.st_mode))
{
#if USE_CANONICALIZE_FILE_NAME
targetFN = canonicalize_file_name(lFN);
if (!targetFN)
{
if (!ipFlag->Quiet)
{
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, lFN, errstr);
ipFlag->error = 1;
}
RetVal = -1;
}
else
{
*rFN = targetFN;
RetVal = 1;
}
#else
/* Sigh. Use realpath, but realize that it has a fatal
* flaw: PATH_MAX isn't necessarily the maximum path
* length -- so realpath() might fail. */
targetFN = (char *) malloc(PATH_MAX * sizeof(char));
if (!targetFN)
{
if (!ipFlag->Quiet)
{
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, lFN, errstr);
ipFlag->error = 1;
}
RetVal = -1;
}
else
{
/* is there any platform with S_ISLNK that does not have realpath? */
char *rVal = realpath(lFN, targetFN);
if (!rVal)
{
if (!ipFlag->Quiet)
{
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, lFN, errstr);
ipFlag->error = 1;
}
free(targetFN);
RetVal = -1;
}
else
{
*rFN = rVal;
RetVal = 1;
}
}
#endif /* !USE_CANONICALIZE_FILE_NAME */
}
else
*rFN = lFN;
#else /* !S_ISLNK */
*rFN = lFN;
#endif /* !S_ISLNK */
return RetVal;
}
FILE *read_bom (FILE *f, int *bomtype)
{
int bom[3];
/* BOMs
* UTF16-LE ff fe
* UTF16-BE fe ff
* UTF-8 ef bb bf
*/
*bomtype = FILE_MBS;
/* Check for BOM */
if (f != NULL)
{
if ((bom[0] = fgetc(f)) == EOF)
{
ungetc(bom[0], f);
*bomtype = FILE_MBS;
return(f);
}
if ((bom[0] != 0xff) && (bom[0] != 0xfe) && (bom[0] != 0xef))
{
ungetc(bom[0], f);
*bomtype = FILE_MBS;
return(f);
}
if ((bom[1] = fgetc(f)) == EOF)
{
ungetc(bom[1], f);
ungetc(bom[0], f);
*bomtype = FILE_MBS;
return(f);
}
if ((bom[0] == 0xff) && (bom[1] == 0xfe)) /* UTF16-LE */
{
*bomtype = FILE_UTF16LE;
return(f);
}
if ((bom[0] == 0xfe) && (bom[1] == 0xff)) /* UTF16-BE */
{
*bomtype = FILE_UTF16BE;
return(f);
}
if ((bom[2] = fgetc(f)) == EOF)
{
ungetc(bom[2], f);
ungetc(bom[1], f);
ungetc(bom[0], f);
*bomtype = FILE_MBS;
return(f);
}
if ((bom[0] == 0xef) && (bom[1] == 0xbb) && (bom[2]== 0xbf)) /* UTF-8 */
{
*bomtype = FILE_UTF8;
return(f);
}
ungetc(bom[2], f);
ungetc(bom[1], f);
ungetc(bom[0], f);
*bomtype = FILE_MBS;
return(f);
}
return(f);
}
#ifdef D2U_UNICODE
wint_t d2u_getwc(FILE *f, int bomtype)
{
int c_trail, c_lead;
wint_t wc;
if (((c_lead=fgetc(f)) == EOF) || ((c_trail=fgetc(f)) == EOF))
return(WEOF);
if (bomtype == FILE_UTF16LE) /* UTF16 little endian */
{
c_trail <<=8;
wc = (wint_t)(c_trail + c_lead) ;
} else { /* UTF16 big endian */
c_lead <<=8;
wc = (wint_t)(c_trail + c_lead) ;
}
return(wc);
}
wint_t d2u_ungetwc(wint_t wc, FILE *f, int bomtype)
{
int c_trail, c_lead;
if (bomtype == FILE_UTF16LE) /* UTF16 little endian */
{
c_trail = (int)(wc & 0xff00);
c_trail >>=8;
c_lead = (int)(wc & 0xff);
} else { /* UTF16 big endian */
c_lead = (int)(wc & 0xff00);
c_lead >>=8;
c_trail = (int)(wc & 0xff);
}
/* push back in reverse order */
if ((ungetc(c_trail,f) == EOF) || (ungetc(c_lead,f) == EOF))
return(WEOF);
return(wc);
}
/* Put wide character */
wint_t d2u_putwc(wint_t wc, FILE *f, CFlag *ipFlag)
{
static char mbs[8];
static wchar_t lead, trail;
static wchar_t wstr[3];
size_t i,len;
if ((wc >= 0xd800) && (wc < 0xdc00))
{
/* fprintf(stderr, "UTF-16 lead %x\n",wc); */
lead = (wchar_t)wc; /* lead (high) surrogate */
return(wc);
}
if ((wc >= 0xdc00) && (wc < 0xe000))
{
/* fprintf(stderr, "UTF-16 trail %x\n",wc); */
trail = (wchar_t)wc; /* trail (low) surrogate */
#if defined(_WIN32) || defined(__CYGWIN__)
/* On Windows (including Cygwin) wchar_t is 16 bit */
/* We cannot decode an UTF-16 surrogate pair, because it will
not fit in a 16 bit wchar_t. */
wstr[0] = lead;
wstr[1] = trail;
wstr[2] = L'\0';
#else
/* On Unix wchar_t is 32 bit */
/* When we don't decode the UTF-16 surrogate pair, wcstombs() does not
* produce the same UTF-8 as WideCharToMultiByte(). The UTF-8 output
* produced by wcstombs() is bigger, because it just translates the wide
* characters in the range 0xD800..0xDBFF individually to UTF-8 sequences
* (although these code points are reserved for use only as surrogate
* pairs in UTF-16).
*
* Some smart viewers can still display this UTF-8 correctly (like Total
* Commander lister), however the UTF-8 is not readable by Windows
* Notepad (on Windows 7). When we decode the UTF-16 surrogate pairs
* ourselves the wcstombs() UTF-8 output is identical to what
* WideCharToMultiByte() produces, and is readable by Notepad.
*
* Surrogate halves in UTF-8 are invalid. See also
* http://en.wikipedia.org/wiki/UTF-8#Invalid_code_points
* http://tools.ietf.org/html/rfc3629#page-5
* It is a bug in (some implemenatations of) wcstombs().
* On Cygwin 1.7 wcstombs() produces correct UTF-8 from UTF-16 surrogate pairs.
*/
/* Decode UTF-16 surrogate pair */
wstr[0] = 0x10000;
wstr[0] += (lead & 0x03FF) << 10;
wstr[0] += (trail & 0x03FF);
wstr[1] = L'\0';
/* fprintf(stderr, "UTF-32 %x\n",wstr[0]); */
#endif
} else {
wstr[0] = (wchar_t)wc;
wstr[1] = L'\0';
}
#if defined(_WIN32) || defined(__CYGWIN__)
/* On Windows we convert UTF-16 always to UTF-8 */
len = (size_t)(WideCharToMultiByte(CP_UTF8, 0, wstr, -1, mbs, sizeof(mbs), NULL, NULL) -1);
#else
/* On Unix we convert UTF-16 to the locale encoding */
len = wcstombs(mbs, wstr, sizeof(mbs));
/* fprintf(stderr, "len %d\n",len); */
#endif
if ( len == (size_t)(-1) )
{ /* Stop when there is a conversion error */
ipFlag->status |= UNICODE_CONVERSION_ERROR ;
return(WEOF);
} else {
for (i=0; i<len; i++)
{
if (fputc(mbs[i], f) == EOF)
return(WEOF);
}
}
return(wc);
}
#endif
|