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
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
|
/*
* Name: unix2dos
* Documentation:
* Convert lf ('\x0a') characters in a file to cr lf ('\x0d' '\x0a')
* combinations.
*
* The dos2unix package is distributed under FreeBSD style license.
* See also http://www.freebsd.org/copyright/freebsd-license.html
* --------
*
* Copyright (C) 2009-2013 Erwin Waterlander
* Copyright (C) 1994-1995 Benjamin Lin.
* 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.
*
* == 1.0 == 1989.10.04 == John Birchfield (jb@koko.csustan.edu)
* == 1.1 == 1994.12.20 == Benjamin Lin (blin@socs.uts.edu.au)
* Cleaned up for Borland C/C++ 4.02
* == 1.2 == 1995.03.09 == Benjamin Lin (blin@socs.uts.edu.au)
* Fixed minor typo error
* == 1.3 == 1995.03.16 == Benjamin Lin (blin@socs.uts.edu.au)
* Modified to more conform to UNIX style.
* == 2.0 == 1995.03.19 == Benjamin Lin (blin@socs.uts.edu.au)
* Rewritten from scratch.
* == 2.2 == 1995.03.30 == Benjamin Lin (blin@socs.uts.edu.au)
* Conversion from SunOS charset implemented.
*
* See ChangeLog.txt for complete version history.
*
*/
/* #define DEBUG 1 */
#include "common.h"
#include "unix2dos.h"
#include "querycp.h"
#ifdef D2U_UNICODE
#if !defined(__MSDOS__) && !defined(_WIN32) && !defined(__OS2__) /* Unix, Cygwin */
# include <langinfo.h>
#endif
#endif
void PrintLicense(void)
{
fprintf(stderr, "%s", _("\
Copyright (C) 2009-2013 Erwin Waterlander\n\
Copyright (C) 1994-1995 Benjamin Lin\n\
All rights reserved.\n\n"));
PrintBSDLicense();
}
#ifdef D2U_UNICODE
void AddDOSNewLineW(FILE* ipOutF, CFlag *ipFlag, wint_t CurChar, wint_t PrevChar)
{
if (ipFlag->NewLine) { /* add additional CR-LF? */
/* Don't add line ending if it is a DOS line ending. Only in case of Unix line ending. */
if ((CurChar == 0x0a) && (PrevChar != 0x0d)) {
d2u_putwc(0x0d, ipOutF, ipFlag);
d2u_putwc(0x0a, ipOutF, ipFlag);
}
}
}
#endif
void AddDOSNewLine(FILE* ipOutF, CFlag *ipFlag, int CurChar, int PrevChar)
{
if (ipFlag->NewLine) { /* add additional CR-LF? */
/* Don't add line ending if it is a DOS line ending. Only in case of Unix line ending. */
if ((CurChar == '\x0a') && (PrevChar != '\x0d')) {
fputc('\x0d', ipOutF);
fputc('\x0a', ipOutF);
}
}
}
/* converts stream ipInF to DOS format text and write to stream ipOutF
* RetVal: 0 if success
* -1 otherwise
*/
#ifdef D2U_UNICODE
int ConvertUnixToDosW(FILE* ipInF, FILE* ipOutF, CFlag *ipFlag, char *progname)
{
int RetVal = 0;
wint_t TempChar;
wint_t PreviousChar = 0;
int line_nr = 1;
char *errstr;
ipFlag->status = 0;
/* LF -> CR-LF */
/* CR-LF -> CR-LF, in case the input file is a DOS text file */
/* \x0a = Newline/Line Feed (LF) */
/* \x0d = Carriage Return (CR) */
switch (ipFlag->FromToMode)
{
case FROMTO_UNIX2DOS: /* unix2dos */
while ((TempChar = d2u_getwc(ipInF, ipFlag->bomtype)) != WEOF) { /* get character */
if ((ipFlag->Force == 0) &&
(TempChar < 32) &&
(TempChar != 0x0a) && /* Not an LF */
(TempChar != 0x0d) && /* Not a CR */
(TempChar != 0x09) && /* Not a TAB */
(TempChar != 0x0c)) { /* Not a form feed */
RetVal = -1;
ipFlag->status |= BINARY_FILE ;
if (!ipFlag->Quiet)
{
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("Binary symbol 0x00%02X found at line %d\n"),TempChar, line_nr);
}
break;
}
if (TempChar == 0x0a)
{
d2u_putwc(0x0d, ipOutF, ipFlag); /* got LF, put extra CR */
} else {
if (TempChar == 0x0d) /* got CR */
{
if ((TempChar = d2u_getwc(ipInF, ipFlag->bomtype)) == WEOF) /* get next char (possibly LF) */
TempChar = 0x0d; /* Read error, or end of file. */
else
{
d2u_putwc(0x0d, ipOutF, ipFlag); /* put CR */
PreviousChar = 0x0d;
}
}
}
if (TempChar == 0x0a) /* Count all DOS and Unix line breaks */
++line_nr;
if (d2u_putwc(TempChar, ipOutF, ipFlag) == WEOF)
{
RetVal = -1;
if (!ipFlag->Quiet)
{
if (!(ipFlag->status & UNICODE_CONVERSION_ERROR))
{
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("can not write to output file: %s\n"), errstr);
}
}
break;
} else {
AddDOSNewLineW( ipOutF, ipFlag, TempChar, PreviousChar);
}
PreviousChar = TempChar;
}
break;
case FROMTO_UNIX2MAC: /* unix2mac */
while ((TempChar = d2u_getwc(ipInF, ipFlag->bomtype)) != WEOF) {
if ((ipFlag->Force == 0) &&
(TempChar < 32) &&
(TempChar != 0x0a) && /* Not an LF */
(TempChar != 0x0d) && /* Not a CR */
(TempChar != 0x09) && /* Not a TAB */
(TempChar != 0x0c)) { /* Not a form feed */
RetVal = -1;
ipFlag->status |= BINARY_FILE ;
if (!ipFlag->Quiet)
{
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("Binary symbol 0x00%02X found at line %d\n"),TempChar, line_nr);
}
break;
}
if ((TempChar != 0x0a)) /* Not an LF */
{
if(d2u_putwc(TempChar, ipOutF, ipFlag) == WEOF){
RetVal = -1;
if (!ipFlag->Quiet)
{
if (!(ipFlag->status & UNICODE_CONVERSION_ERROR))
{
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("can not write to output file: %s\n"), errstr);
}
}
break;
}
PreviousChar = TempChar;
}
else{
/* TempChar is an LF */
++line_nr;
/* Don't touch this delimiter if it's a CR,LF pair. */
if ( PreviousChar == 0x0d ) {
if (d2u_putwc(0x0a, ipOutF, ipFlag) == WEOF) /* CR,LF pair. Put LF */
{
RetVal = -1;
if (!ipFlag->Quiet)
{
if (!(ipFlag->status & UNICODE_CONVERSION_ERROR))
{
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("can not write to output file: %s\n"), errstr);
}
}
break;
}
PreviousChar = TempChar;
continue;
}
PreviousChar = TempChar;
if (d2u_putwc(0x0d, ipOutF, ipFlag) == WEOF) /* Unix line end (LF). Put CR */
{
RetVal = -1;
if (!ipFlag->Quiet)
{
if (!(ipFlag->status & UNICODE_CONVERSION_ERROR))
{
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("can not write to output file: %s\n"), errstr);
}
}
break;
}
if (ipFlag->NewLine) { /* add additional CR? */
d2u_putwc(0x0d, ipOutF, ipFlag);
}
}
}
break;
default: /* unknown FromToMode */
;
#if DEBUG
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("program error, invalid conversion mode %d\n"),ipFlag->FromToMode);
exit(1);
#endif
}
return RetVal;
}
#endif
/* converts stream ipInF to DOS format text and write to stream ipOutF
* RetVal: 0 if success
* -1 otherwise
*/
int ConvertUnixToDos(FILE* ipInF, FILE* ipOutF, CFlag *ipFlag, char *progname)
{
int RetVal = 0;
int TempChar;
int PreviousChar = 0;
int *ConvTable;
int line_nr = 1;
char *errstr;
ipFlag->status = 0;
switch (ipFlag->ConvMode)
{
case CONVMODE_ASCII: /* ascii */
case CONVMODE_UTF16LE: /* Assume UTF-16LE */
case CONVMODE_UTF16BE: /* Assume UTF-16BE */
ConvTable = U2DAsciiTable;
break;
case CONVMODE_7BIT: /* 7bit */
ConvTable = U2D7BitTable;
break;
case CONVMODE_437: /* iso */
ConvTable = U2DIso437Table;
break;
case CONVMODE_850: /* iso */
ConvTable = U2DIso850Table;
break;
case CONVMODE_860: /* iso */
ConvTable = U2DIso860Table;
break;
case CONVMODE_863: /* iso */
ConvTable = U2DIso863Table;
break;
case CONVMODE_865: /* iso */
ConvTable = U2DIso865Table;
break;
case CONVMODE_1252: /* iso */
ConvTable = U2DIso1252Table;
break;
default: /* unknown convmode */
ipFlag->status |= WRONG_CODEPAGE ;
return(-1);
}
if ((ipFlag->ConvMode > 1) && (!ipFlag->Quiet)) /* not ascii or 7bit */
{
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("using code page %d.\n"), ipFlag->ConvMode);
}
/* LF -> CR-LF */
/* CR-LF -> CR-LF, in case the input file is a DOS text file */
/* \x0a = Newline/Line Feed (LF) */
/* \x0d = Carriage Return (CR) */
switch (ipFlag->FromToMode)
{
case FROMTO_UNIX2DOS: /* unix2dos */
while ((TempChar = fgetc(ipInF)) != EOF) { /* get character */
if ((ipFlag->Force == 0) &&
(TempChar < 32) &&
(TempChar != '\x0a') && /* Not an LF */
(TempChar != '\x0d') && /* Not a CR */
(TempChar != '\x09') && /* Not a TAB */
(TempChar != '\x0c')) { /* Not a form feed */
RetVal = -1;
ipFlag->status |= BINARY_FILE ;
if (!ipFlag->Quiet)
{
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("Binary symbol 0x%02X found at line %d\n"),TempChar, line_nr);
}
break;
}
if (TempChar == '\x0a')
{
fputc('\x0d', ipOutF); /* got LF, put extra CR */
} else {
if (TempChar == '\x0d') /* got CR */
{
if ((TempChar = fgetc(ipInF)) == EOF) /* get next char (possibly LF) */
TempChar = '\x0d'; /* Read error, or end of file. */
else
{
fputc('\x0d', ipOutF); /* put CR */
PreviousChar = '\x0d';
}
}
}
if (TempChar == '\x0a') /* Count all DOS and Unix line breaks */
++line_nr;
if (fputc(ConvTable[TempChar], ipOutF) == EOF) /* put LF or other char */
{
RetVal = -1;
if (!ipFlag->Quiet)
{
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("can not write to output file: %s\n"), errstr);
}
break;
} else {
AddDOSNewLine( ipOutF, ipFlag, TempChar, PreviousChar);
}
PreviousChar = TempChar;
}
break;
case FROMTO_UNIX2MAC: /* unix2mac */
while ((TempChar = fgetc(ipInF)) != EOF) {
if ((ipFlag->Force == 0) &&
(TempChar < 32) &&
(TempChar != '\x0a') && /* Not an LF */
(TempChar != '\x0d') && /* Not a CR */
(TempChar != '\x09') && /* Not a TAB */
(TempChar != '\x0c')) { /* Not a form feed */
RetVal = -1;
ipFlag->status |= BINARY_FILE ;
if (!ipFlag->Quiet)
{
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("Binary symbol 0x%02X found at line %d\n"),TempChar, line_nr);
}
break;
}
if ((TempChar != '\x0a')) /* Not an LF */
{
if(fputc(ConvTable[TempChar], ipOutF) == EOF){
RetVal = -1;
if (!ipFlag->Quiet)
{
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("can not write to output file: %s\n"), errstr);
}
break;
}
PreviousChar = TempChar;
}
else{
/* TempChar is an LF */
++line_nr;
/* Don't touch this delimiter if it's a CR,LF pair. */
if ( PreviousChar == '\x0d' ) {
if (fputc('\x0a', ipOutF) == EOF) /* CR,LF pair. Put LF */
{
RetVal = -1;
if (!ipFlag->Quiet)
{
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("can not write to output file: %s\n"), errstr);
}
break;
}
PreviousChar = TempChar;
continue;
}
PreviousChar = TempChar;
if (fputc('\x0d', ipOutF) == EOF) /* Unix line end (LF). Put CR */
{
RetVal = -1;
if (!ipFlag->Quiet)
{
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("can not write to output file: %s\n"), errstr);
}
break;
}
if (ipFlag->NewLine) { /* add additional CR? */
fputc('\x0d', ipOutF);
}
}
}
break;
default: /* unknown FromToMode */
;
#if DEBUG
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("program error, invalid conversion mode %d\n"),ipFlag->FromToMode);
exit(1);
#endif
}
return RetVal;
}
/* convert file ipInFN to DOS format text and write to file ipOutFN
* RetVal: 0 if success
* -1 otherwise
*/
int ConvertUnixToDosNewFile(char *ipInFN, char *ipOutFN, CFlag *ipFlag, char *progname)
{
int RetVal = 0;
FILE *InF = NULL;
FILE *TempF = NULL;
char *TempPath;
char *errstr;
struct stat StatBuf;
struct utimbuf UTimeBuf;
#ifndef NO_CHMOD
mode_t mask;
#endif
#ifdef NO_MKSTEMP
FILE* fd;
#else
int fd;
#endif
char *TargetFN = NULL;
int ResolveSymlinkResult = 0;
ipFlag->status = 0 ;
/* Test if output file is a symbolic link */
if (symbolic_link(ipOutFN) && !ipFlag->Follow)
{
ipFlag->status |= OUTPUTFILE_SYMLINK ;
/* Not a failure, skipping input file according spec. (keep symbolic link unchanged) */
return -1;
}
/* Test if input file is a regular file or symbolic link */
if (regfile(ipInFN, 1, ipFlag, progname))
{
ipFlag->status |= NO_REGFILE ;
/* Not a failure, skipping non-regular input file according spec. */
return -1;
}
/* Test if input file target is a regular file */
if (symbolic_link(ipInFN) && regfile_target(ipInFN, ipFlag,progname))
{
ipFlag->status |= INPUT_TARGET_NO_REGFILE ;
/* Not a failure, skipping non-regular input file according spec. */
return -1;
}
/* Test if output file target is a regular file */
if (symbolic_link(ipOutFN) && (ipFlag->Follow == SYMLINK_FOLLOW) && regfile_target(ipOutFN, ipFlag,progname))
{
ipFlag->status |= OUTPUT_TARGET_NO_REGFILE ;
/* Failure, input is regular, cannot produce output. */
if (!ipFlag->error) ipFlag->error = 1;
return -1;
}
/* retrieve ipInFN file date stamp */
if (stat(ipInFN, &StatBuf))
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, ipInFN, errstr);
}
RetVal = -1;
}
#ifdef NO_MKSTEMP
if((fd = MakeTempFileFrom(ipOutFN, &TempPath))==NULL) {
#else
if((fd = MakeTempFileFrom (ipOutFN, &TempPath)) < 0) {
#endif
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("Failed to open temporary output file: %s\n"), errstr);
}
RetVal = -1;
}
#if DEBUG
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("using %s as temporary file\n"), TempPath);
#endif
/* can open in file? */
if (!RetVal)
{
InF=OpenInFile(ipInFN);
if (InF == NULL)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, ipInFN, errstr);
RetVal = -1;
}
}
/* can open output file? */
if ((!RetVal) && (InF))
{
#ifdef NO_MKSTEMP
if ((TempF=fd) == NULL)
{
#else
if ((TempF=OpenOutFile(fd)) == NULL)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: %s\n", progname, errstr);
#endif
fclose (InF);
InF = NULL;
RetVal = -1;
}
}
InF = read_bom(InF, &ipFlag->bomtype);
#ifdef D2U_UNICODE
if ((ipFlag->bomtype == FILE_MBS) && (ipFlag->ConvMode == CONVMODE_UTF16LE))
ipFlag->bomtype = FILE_UTF16LE;
if ((ipFlag->bomtype == FILE_MBS) && (ipFlag->ConvMode == CONVMODE_UTF16BE))
ipFlag->bomtype = FILE_UTF16BE;
#endif
#ifdef D2U_UNICODE
#if !defined(__MSDOS__) && !defined(_WIN32) && !defined(__OS2__) /* Unix, Cygwin */
if ((ipFlag->bomtype == FILE_UTF16LE) || (ipFlag->bomtype == FILE_UTF16BE))
{
if (strcmp(nl_langinfo(CODESET), "UTF-8") != 0)
{
/* Don't convert UTF-16 files when the locale encoding is not UTF-8
* to prevent loss of characters. */
ipFlag->status |= LOCALE_NOT_UTF8 ;
if (!ipFlag->error) ipFlag->error = 1;
RetVal = -1;
}
}
#endif
#if !defined(_WIN32) && !defined(__CYGWIN__) /* Not Windows or Cygwin */
if ((ipFlag->bomtype == FILE_UTF16LE) || (ipFlag->bomtype == FILE_UTF16BE))
{
if (sizeof(wchar_t) < 4)
{
/* A decoded UTF-16 surrogate pair must fit in a wchar_t */
ipFlag->status |= WCHAR_T_TOO_SMALL ;
if (!ipFlag->error) ipFlag->error = 1;
RetVal = -1;
}
}
#endif
#endif
if ((ipFlag->add_bom) || (ipFlag->bomtype > 0))
fprintf(TempF, "%s", "\xEF\xBB\xBF"); /* UTF-8 BOM */
/* Turn off ISO and 7-bit conversion for Unicode text files */
/* When we assume UTF16, don't change the conversion mode. We need to remember it. */
if ((ipFlag->bomtype > 0) && (ipFlag->ConvMode != CONVMODE_UTF16LE) && (ipFlag->ConvMode != CONVMODE_UTF16BE))
ipFlag->ConvMode = CONVMODE_ASCII;
/* conversion sucessful? */
#ifdef D2U_UNICODE
if ((ipFlag->bomtype == FILE_UTF16LE) || (ipFlag->bomtype == FILE_UTF16BE))
{
if ((!RetVal) && (ConvertUnixToDosW(InF, TempF, ipFlag, progname)))
RetVal = -1;
if (ipFlag->status & UNICODE_CONVERSION_ERROR)
{
if (!ipFlag->error) ipFlag->error = 1;
RetVal = -1;
}
} else {
if ((!RetVal) && (ConvertUnixToDos(InF, TempF, ipFlag, progname)))
RetVal = -1;
}
#else
if ((!RetVal) && (ConvertUnixToDos(InF, TempF, ipFlag, progname)))
RetVal = -1;
#endif
/* can close in file? */
if ((InF) && (fclose(InF) == EOF))
RetVal = -1;
/* can close output file? */
if (TempF)
{
if (fclose(TempF) == EOF)
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("Failed to write to temporary output file %s: %s\n"), TempPath, errstr);
}
RetVal = -1;
}
}
#ifdef NO_MKSTEMP
if(fd!=NULL)
fclose(fd);
#else
if(fd>=0)
close(fd);
#endif
#ifndef NO_CHMOD
if (!RetVal)
{
if (ipFlag->NewFile == 0) /* old file mode */
{
RetVal = chmod (TempPath, StatBuf.st_mode); /* set original permissions */
}
else
{
mask = umask(0); /* get process's umask */
umask(mask); /* set umask back to original */
RetVal = chmod(TempPath, StatBuf.st_mode & ~mask); /* set original permissions, minus umask */
}
if (RetVal)
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("Failed to change the permissions of temporary output file %s: %s\n"), TempPath, errstr);
}
}
}
#endif
#ifndef NO_CHOWN
if (!RetVal && (ipFlag->NewFile == 0)) /* old file mode */
{
/* Change owner and group of the the tempory output file to the original file's uid and gid. */
/* Required when a different user (e.g. root) has write permission on the original file. */
/* Make sure that the original owner can still access the file. */
if (chown(TempPath, StatBuf.st_uid, StatBuf.st_gid))
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("Failed to change the owner and group of temporary output file %s: %s\n"), TempPath, errstr);
}
RetVal = -1;
}
}
#endif
if ((!RetVal) && (ipFlag->KeepDate))
{
UTimeBuf.actime = StatBuf.st_atime;
UTimeBuf.modtime = StatBuf.st_mtime;
/* can change output file time to in file time? */
if (utime(TempPath, &UTimeBuf) == -1)
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, TempPath, errstr);
}
RetVal = -1;
}
}
/* any error? cleanup the temp file */
if (RetVal && (TempPath != NULL))
{
if (unlink(TempPath) && (errno != ENOENT))
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, TempPath, errstr);
}
RetVal = -1;
}
}
/* If output file is a symbolic link, optional resolve the link and modify */
/* the target, instead of removing the link and creating a new regular file */
TargetFN = ipOutFN;
if (symbolic_link(ipOutFN) && !RetVal)
{
ResolveSymlinkResult = 0; /* indicates that TargetFN need not be freed */
if (ipFlag->Follow == SYMLINK_FOLLOW)
{
ResolveSymlinkResult = ResolveSymbolicLink(ipOutFN, &TargetFN, ipFlag, progname);
if (ResolveSymlinkResult < 0)
{
if (!ipFlag->Quiet)
{
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("problems resolving symbolic link '%s'\n"), ipOutFN);
fprintf(stderr, _(" output file remains in '%s'\n"), TempPath);
}
RetVal = -1;
}
}
}
/* can rename temporary file to output file? */
if (!RetVal)
{
#ifdef NEED_REMOVE
if (unlink(TargetFN) && (errno != ENOENT))
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: %s: %s\n", progname, TargetFN, errstr);
}
RetVal = -1;
}
#endif
if (rename(TempPath, TargetFN) == -1)
{
if (!ipFlag->Quiet)
{
ipFlag->error = errno;
errstr = strerror(errno);
fprintf(stderr, "%s: ", progname);
fprintf(stderr, _("problems renaming '%s' to '%s': %s\n"), TempPath, TargetFN, errstr);
#ifdef S_ISLNK
if (ResolveSymlinkResult > 0)
fprintf(stderr, _(" which is the target of symbolic link '%s'\n"), ipOutFN);
#endif
fprintf(stderr, _(" output file remains in '%s'\n"), TempPath);
}
RetVal = -1;
}
if (ResolveSymlinkResult > 0)
free(TargetFN);
}
free(TempPath);
return RetVal;
}
/* convert stdin to DOS format text and write to stdout
* RetVal: 0 if success
* -1 otherwise
*/
int ConvertUnixToDosStdio(CFlag *ipFlag, char *progname)
{
ipFlag->NewFile = 1;
ipFlag->Quiet = 1;
ipFlag->KeepDate = 0;
ipFlag->Force = 1;
#if defined(_WIN32) && !defined(__CYGWIN__)
/* stdin and stdout are by default text streams. We need
* to set them to binary mode. Otherwise an LF will
* automatically be converted to CR-LF on DOS/Windows.
* Erwin */
/* POSIX 'setmode' was deprecated by MicroSoft since
* Visual C++ 2005. Use ISO C++ conformant '_setmode' instead. */
_setmode(_fileno(stdout), _O_BINARY);
_setmode(_fileno(stdin), _O_BINARY);
#elif defined(__MSDOS__) || defined(__CYGWIN__) || defined(__OS2__)
setmode(fileno(stdout), O_BINARY);
setmode(fileno(stdin), O_BINARY);
#endif
read_bom(stdin, &ipFlag->bomtype);
#ifdef D2U_UNICODE
if ((ipFlag->bomtype == FILE_MBS) && (ipFlag->ConvMode == CONVMODE_UTF16LE))
ipFlag->bomtype = FILE_UTF16LE;
if ((ipFlag->bomtype == FILE_MBS) && (ipFlag->ConvMode == CONVMODE_UTF16BE))
ipFlag->bomtype = FILE_UTF16BE;
#endif
if ((ipFlag->add_bom) || (ipFlag->bomtype > 0))
fprintf(stdout, "%s", "\xEF\xBB\xBF"); /* UTF-8 BOM */
#ifdef D2U_UNICODE
if ((ipFlag->bomtype == FILE_UTF16LE) || (ipFlag->bomtype == FILE_UTF16BE))
{
return (ConvertUnixToDosW(stdin, stdout, ipFlag, progname));
} else {
return (ConvertUnixToDos(stdin, stdout, ipFlag, progname));
}
#else
return (ConvertUnixToDos(stdin, stdout, ipFlag, progname));
#endif
}
int main (int argc, char *argv[])
{
/* variable declarations */
char progname[9];
int ArgIdx;
int CanSwitchFileMode;
int ShouldExit;
int RetVal = 0;
int process_options = 1;
CFlag *pFlag;
char *ptr;
#ifdef ENABLE_NLS
char localedir[1024];
#endif
# ifdef __MINGW64__
int _dowildcard = -1; /* enable wildcard expansion for Win64 */
# endif
progname[8] = '\0';
strcpy(progname,"unix2dos");
#ifdef ENABLE_NLS
ptr = getenv("DOS2UNIX_LOCALEDIR");
if (ptr == NULL)
strcpy(localedir,LOCALEDIR);
else
{
if (strlen(ptr) < sizeof(localedir))
strcpy(localedir,ptr);
else
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, "%s", _("error: Value of environment variable DOS2UNIX_LOCALEDIR is too long.\n"));
strcpy(localedir,LOCALEDIR);
}
}
#endif
#if defined(ENABLE_NLS) || (defined(D2U_UNICODE) && !defined(__MSDOS__) && !defined(_WIN32) && !defined(__OS2__))
/* setlocale() is also needed for nl_langinfo() */
setlocale (LC_ALL, "");
#endif
#ifdef ENABLE_NLS
bindtextdomain (PACKAGE, localedir);
textdomain (PACKAGE);
#endif
/* variable initialisations */
ArgIdx = 0;
CanSwitchFileMode = 1;
ShouldExit = 0;
pFlag = (CFlag*)malloc(sizeof(CFlag));
pFlag->NewFile = 0;
pFlag->Quiet = 0;
pFlag->KeepDate = 0;
pFlag->ConvMode = CONVMODE_ASCII; /* default ascii */
pFlag->FromToMode = FROMTO_UNIX2DOS; /* default unix2dos */
pFlag->NewLine = 0;
pFlag->Force = 0;
pFlag->Follow = SYMLINK_SKIP;
pFlag->status = 0;
pFlag->stdio_mode = 1;
pFlag->error = 0;
#ifdef D2U_UNICODE
pFlag->bomtype = FILE_MBS;
#endif
pFlag->add_bom = 0;
if ( ((ptr=strrchr(argv[0],'/')) == NULL) && ((ptr=strrchr(argv[0],'\\')) == NULL) )
ptr = argv[0];
else
ptr++;
if ((strcmpi("unix2mac", ptr) == 0) || (strcmpi("unix2mac.exe", ptr) == 0))
{
pFlag->FromToMode = FROMTO_UNIX2MAC;
strcpy(progname,"unix2mac");
}
while ((++ArgIdx < argc) && (!ShouldExit))
{
/* is it an option? */
if ((argv[ArgIdx][0] == '-') && process_options)
{
/* an option */
if (strcmp(argv[ArgIdx],"--") == 0)
process_options = 0;
else if ((strcmp(argv[ArgIdx],"-h") == 0) || (strcmp(argv[ArgIdx],"--help") == 0))
{
PrintUsage(progname);
return(pFlag->error);
}
else if ((strcmp(argv[ArgIdx],"-k") == 0) || (strcmp(argv[ArgIdx],"--keepdate") == 0))
pFlag->KeepDate = 1;
else if ((strcmp(argv[ArgIdx],"-f") == 0) || (strcmp(argv[ArgIdx],"--force") == 0))
pFlag->Force = 1;
else if ((strcmp(argv[ArgIdx],"-s") == 0) || (strcmp(argv[ArgIdx],"--safe") == 0))
pFlag->Force = 0;
else if ((strcmp(argv[ArgIdx],"-q") == 0) || (strcmp(argv[ArgIdx],"--quiet") == 0))
pFlag->Quiet = 1;
else if ((strcmp(argv[ArgIdx],"-l") == 0) || (strcmp(argv[ArgIdx],"--newline") == 0))
pFlag->NewLine = 1;
else if ((strcmp(argv[ArgIdx],"-m") == 0) || (strcmp(argv[ArgIdx],"--add-bom") == 0))
pFlag->add_bom = 1;
else if ((strcmp(argv[ArgIdx],"-S") == 0) || (strcmp(argv[ArgIdx],"--skip-symlink") == 0))
pFlag->Follow = SYMLINK_SKIP;
else if ((strcmp(argv[ArgIdx],"-F") == 0) || (strcmp(argv[ArgIdx],"--follow-symlink") == 0))
pFlag->Follow = SYMLINK_FOLLOW;
else if ((strcmp(argv[ArgIdx],"-R") == 0) || (strcmp(argv[ArgIdx],"--replace-symlink") == 0))
pFlag->Follow = SYMLINK_REPLACE;
else if ((strcmp(argv[ArgIdx],"-V") == 0) || (strcmp(argv[ArgIdx],"--version") == 0))
{
PrintVersion(progname);
#ifdef ENABLE_NLS
PrintLocaledir(localedir);
#endif
return(pFlag->error);
}
else if ((strcmp(argv[ArgIdx],"-L") == 0) || (strcmp(argv[ArgIdx],"--license") == 0))
{
PrintLicense();
return(pFlag->error);
}
else if (strcmp(argv[ArgIdx],"-ascii") == 0) /* SunOS compatible options */
pFlag->ConvMode = CONVMODE_ASCII;
else if (strcmp(argv[ArgIdx],"-7") == 0)
pFlag->ConvMode = CONVMODE_7BIT;
else if (strcmp(argv[ArgIdx],"-iso") == 0)
{
pFlag->ConvMode = (int)query_con_codepage();
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr,_("active code page: %d\n"), pFlag->ConvMode);
}
if (pFlag->ConvMode < 2)
pFlag->ConvMode = CONVMODE_437;
}
else if (strcmp(argv[ArgIdx],"-437") == 0)
pFlag->ConvMode = CONVMODE_437;
else if (strcmp(argv[ArgIdx],"-850") == 0)
pFlag->ConvMode = CONVMODE_850;
else if (strcmp(argv[ArgIdx],"-860") == 0)
pFlag->ConvMode = CONVMODE_860;
else if (strcmp(argv[ArgIdx],"-863") == 0)
pFlag->ConvMode = CONVMODE_863;
else if (strcmp(argv[ArgIdx],"-865") == 0)
pFlag->ConvMode = CONVMODE_865;
else if (strcmp(argv[ArgIdx],"-1252") == 0)
pFlag->ConvMode = CONVMODE_1252;
#ifdef D2U_UNICODE
else if ((strcmp(argv[ArgIdx],"-ul") == 0) || (strcmp(argv[ArgIdx],"--assume-utf16le") == 0))
pFlag->ConvMode = CONVMODE_UTF16LE;
else if ((strcmp(argv[ArgIdx],"-ub") == 0) || (strcmp(argv[ArgIdx],"--assume-utf16be") == 0))
pFlag->ConvMode = CONVMODE_UTF16BE;
#endif
else if ((strcmp(argv[ArgIdx],"-c") == 0) || (strcmp(argv[ArgIdx],"--convmode") == 0))
{
if (++ArgIdx < argc)
{
if (strcmpi(argv[ArgIdx],"ascii") == 0) /* Benjamin Lin's legacy options */
pFlag->ConvMode = CONVMODE_ASCII;
else if (strcmpi(argv[ArgIdx], "7bit") == 0)
pFlag->ConvMode = CONVMODE_7BIT;
else if (strcmpi(argv[ArgIdx], "iso") == 0)
{
pFlag->ConvMode = (int)query_con_codepage();
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr,_("active code page: %d\n"), pFlag->ConvMode);
}
if (pFlag->ConvMode < 2)
pFlag->ConvMode = CONVMODE_437;
}
else if (strcmpi(argv[ArgIdx], "mac") == 0)
pFlag->FromToMode = FROMTO_UNIX2MAC;
else
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("invalid %s conversion mode specified\n"),argv[ArgIdx]);
pFlag->error = 1;
ShouldExit = 1;
pFlag->stdio_mode = 0;
}
}
else
{
ArgIdx--;
fprintf(stderr,"%s: ",progname);
fprintf(stderr,_("option '%s' requires an argument\n"),argv[ArgIdx]);
pFlag->error = 1;
ShouldExit = 1;
pFlag->stdio_mode = 0;
}
}
else if ((strcmp(argv[ArgIdx],"-o") == 0) || (strcmp(argv[ArgIdx],"--oldfile") == 0))
{
/* last convert not paired */
if (!CanSwitchFileMode)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("target of file %s not specified in new file mode\n"), argv[ArgIdx-1]);
pFlag->error = 1;
ShouldExit = 1;
pFlag->stdio_mode = 0;
}
pFlag->NewFile = 0;
}
else if ((strcmp(argv[ArgIdx],"-n") == 0) || (strcmp(argv[ArgIdx],"--newfile") == 0))
{
/* last convert not paired */
if (!CanSwitchFileMode)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("target of file %s not specified in new file mode\n"), argv[ArgIdx-1]);
pFlag->error = 1;
ShouldExit = 1;
pFlag->stdio_mode = 0;
}
pFlag->NewFile = 1;
}
else { /* wrong option */
PrintUsage(progname);
ShouldExit = 1;
pFlag->error = 1;
pFlag->stdio_mode = 0;
}
}
else
{
pFlag->stdio_mode = 0;
/* not an option */
if (pFlag->NewFile)
{
if (CanSwitchFileMode)
CanSwitchFileMode = 0;
else
{
RetVal = ConvertUnixToDosNewFile(argv[ArgIdx-1], argv[ArgIdx], pFlag, progname);
if (pFlag->status & NO_REGFILE)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping %s, not a regular file.\n"), argv[ArgIdx-1]);
}
} else if (pFlag->status & OUTPUTFILE_SYMLINK)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping %s, output file %s is a symbolic link.\n"), argv[ArgIdx-1], argv[ArgIdx]);
}
} else if (pFlag->status & INPUT_TARGET_NO_REGFILE)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping symbolic link %s, target is not a regular file.\n"), argv[ArgIdx-1]);
}
} else if (pFlag->status & OUTPUT_TARGET_NO_REGFILE)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping %s, target of symbolic link %s is not a regular file.\n"), argv[ArgIdx-1], argv[ArgIdx]);
}
} else if (pFlag->status & BINARY_FILE)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping binary file %s\n"), argv[ArgIdx-1]);
}
} else if (pFlag->status & WRONG_CODEPAGE)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("code page %d is not supported.\n"), pFlag->ConvMode);
}
} else if (pFlag->status & LOCALE_NOT_UTF8)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping UTF-16 file %s, the current locale character encoding is not UTF-8.\n"), argv[ArgIdx-1]);
}
} else if (pFlag->status & WCHAR_T_TOO_SMALL)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping UTF-16 file %s, the size of wchar_t is %d bytes.\n"), argv[ArgIdx-1], (int)sizeof(wchar_t));
}
} else if (pFlag->status & UNICODE_CONVERSION_ERROR)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping UTF-16 file %s, an UTF-16 conversion error occurred.\n"), argv[ArgIdx-1]);
}
} else {
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
if (pFlag->FromToMode == FROMTO_UNIX2MAC)
fprintf(stderr, _("converting file %s to file %s in Mac format ...\n"), argv[ArgIdx-1], argv[ArgIdx]);
else
fprintf(stderr, _("converting file %s to file %s in DOS format ...\n"), argv[ArgIdx-1], argv[ArgIdx]);
}
if (RetVal)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("problems converting file %s to file %s\n"), argv[ArgIdx-1], argv[ArgIdx]);
}
}
}
CanSwitchFileMode = 1;
}
}
else
{
RetVal = ConvertUnixToDosNewFile(argv[ArgIdx], argv[ArgIdx], pFlag, progname);
if (pFlag->status & NO_REGFILE)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping %s, not a regular file.\n"), argv[ArgIdx]);
}
} else if (pFlag->status & OUTPUTFILE_SYMLINK)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping symbolic link %s.\n"), argv[ArgIdx]);
}
} else if (pFlag->status & INPUT_TARGET_NO_REGFILE)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping symbolic link %s, target is not a regular file.\n"), argv[ArgIdx]);
}
} else if (pFlag->status & BINARY_FILE)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping binary file %s\n"), argv[ArgIdx]);
}
} else if (pFlag->status & WRONG_CODEPAGE)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("code page %d is not supported.\n"), pFlag->ConvMode);
}
} else if (pFlag->status & LOCALE_NOT_UTF8)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping UTF-16 file %s, the current locale character encoding is not UTF-8.\n"), argv[ArgIdx]);
}
} else if (pFlag->status & WCHAR_T_TOO_SMALL)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping UTF-16 file %s, the size of wchar_t is %d bytes.\n"), argv[ArgIdx], (int)sizeof(wchar_t));
}
} else if (pFlag->status & UNICODE_CONVERSION_ERROR)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("Skipping UTF-16 file %s, an UTF-16 conversion error occurred.\n"), argv[ArgIdx]);
}
} else {
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
if (pFlag->FromToMode == FROMTO_UNIX2MAC)
fprintf(stderr, _("converting file %s to Mac format ...\n"), argv[ArgIdx]);
else
fprintf(stderr, _("converting file %s to DOS format ...\n"), argv[ArgIdx]);
}
if (RetVal)
{
if (!pFlag->Quiet)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("problems converting file %s\n"), argv[ArgIdx]);
}
}
}
}
}
}
/* no file argument, use stdin and stdout */
if (pFlag->stdio_mode)
{
exit(ConvertUnixToDosStdio(pFlag, progname));
}
if (!CanSwitchFileMode)
{
fprintf(stderr,"%s: ",progname);
fprintf(stderr, _("target of file %s not specified in new file mode\n"), argv[ArgIdx-1]);
pFlag->error = 1;
}
return (pFlag->error);
}
|