summaryrefslogtreecommitdiff
path: root/app/tools/addcrlf.c
blob: d36310eab23578bb4b479b1890d7addc779e5105 (plain)
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
/**
 * \file addcrlf.c Convert text between DOS, UNIX and MAC
 *
 * $Header: /home/dmarkle/xtrkcad-fork-cvs/xtrkcad/app/tools/addcrlf.c,v 1.7 2007-02-13 19:46:25 m_fischer Exp $
 *
 * This is heavily based on flip by Craig Stuart Sapp <craig@ccrma.stanford.edu>
 * Web Address:   http://www-ccrma.stanford.edu/~craig/utility/flip/flip.cpp 
 */

/*  XTrkCad - Model Railroad CAD
 *  Copyright (C) Marin Fischer 2006
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include <stdlib.h>
#include <stdio.h>

void exitUsage( char *cmd );
void translateToDos( char *infile, char *outfile );
void translateToUnix(char* infilename, char *outfilename);
void determineType(char* filename);

int 
main( int argc, char ** argv)
{
	char option;
	
	if( argc < 2 ) 
		exitUsage(argv[0]);

   if( argv[1][0] != '-' &&argv[1][0] != '/' ) 
   	exitUsage(argv[0]);
		
   option = argv[1][1];
	
   if (!(option == 'u' || option == 'd' || option == 't' || option =='h' )) {
      exitUsage(argv[0]);
   }

	if( !((option == 't' && argc == 3)||(option !='t' && argc==4)||( option =='h' ))) {
      exitUsage(argv[0]);
	}
   switch( option )
	{
		case 'd':
			translateToDos(argv[2], argv[3]);
			break;
		case 'u':	
			translateToUnix(argv[2], argv[3]);
			break;
		case 'm':	
/*			translateToMacintosh(argv[i+2]); */
			break;
		case 'h':
			exitUsage(argv[0]);
			break;
	   default:
			determineType(argv[2]); 
			break;
   }
   return 0;	
}



void 
translateToDos(char* infilename, char *outfilename)
{
	FILE *in, *out;
   char ch, lastch;
   int peekch;
	
	in = fopen( infilename, "rb" );
   if (!in) {
      printf( "Error: cannot find file: %s\n", infilename );
      return;
   }

	out = fopen( outfilename, "wb" );
   if (!out) {
      printf( "Error: cannot open file: %s\n", outfilename );
      return;
   }

   ch = getc( in );
   lastch = ch;

   while( !feof( in ))
	{
      if (ch == 0x0a && lastch != 0x0d) {
		   // convert newline from Unix to MS-DOS
         putc( (char)0x0d, out );
         putc( ch, out );
         lastch = ch;
      } else {
			if (ch == 0x0d) {             // convert newline from Mac to MS-DOS
         	peekch = getc( in );			// lookahead for following character
				ungetc( peekch, in );

         	if (peekch != 0x0a) {
            	putc( ch, out );
            	putc( (char)0x0a, out );
            	lastch = 0x0a;
         	} else {
            	lastch = 0x0d;
            	// Bug fix here reported by Shelley Adams: running -d
            	// twice in a row was generating Unix style newlines
            	// without the following statement:
            	putc( 0x0d, out );
         	}

      	} else {
         	putc( ch, out );
         	lastch = ch;
			}	
      }
      ch = getc( in );
   }
     
   fclose( in );
	fclose( out );
}

void 
translateToUnix(char* infilename, char *outfilename)
{
	FILE *in, *out;
   char ch, lastch;
   	
	in = fopen( infilename, "rb" );
   if (!in) {
      printf( "Error: cannot find file: %s\n", infilename );
      return;
   }

	out = fopen( outfilename, "wb" );
   if (!out) {
      printf( "Error: cannot open file: %s\n", outfilename );
      return;
   }

   ch = getc( in );
   lastch = ch;

   while( !feof( in ))
	{
		if (ch == 0x0d) {
         putc( (char)0x0a, out );
      } else {
			if (ch == 0x0a) {
         	if (lastch == 0x0d) {
            	// do nothing: already converted MSDOS newline to Unix form
	         } else {
   		      putc( (char)0x0a, out );
	         }
   	   } else {
      	   putc( ch, out );
	      }
		}	
      lastch = ch;
      ch = getc( in );      			
   }
     
   fclose( in );
	fclose( out );
}

void 
determineType(char* filename) 
{
	FILE *in;
   int ch;
	int crcount = 0;
	int lfcount = 0;
	
	in = fopen( filename, "rb" );
   if (!in) {
      printf( "Error: cannot find file: %s\n", filename );
      return;
   }

   ch = getc( in );
	if( ch == EOF ) {
		printf( "Error: file could not be read: %s\n", filename );
		return;
	}	

   while( !feof( in ))
	{
		if (ch == 0x0d) {
         crcount ++;
      } else {
			if (ch == 0x0a) {
				lfcount++;
   	   } 
		}	
      ch = getc( in );      			
   }
     
   fclose( in );

   if ((lfcount == crcount) && (crcount != 0)) {
      printf("%s : DOS\n", filename );
   } else if ((lfcount > 0) && (crcount == 0)) {
      printf("%s : UNIX\n", filename );
   } else if ((lfcount == 0) && (crcount > 0)) {
      printf("%s : MAC\n", filename );
   } else if ((lfcount > 0) && (crcount > 0)) {
      printf("%s : MIXED\n", filename );
   } else {
      printf("%s : UNKNOWN\n", filename );
   }
}

void 
exitUsage( char* commandName ) 
{
   printf( "\nUsage: %s [-h] | [-t infile] | [[-u|-d|-m] infile outfile]\n"
           "   Converts an ASCII file between Unix, MS-DOS/Windows, or Macintosh newline formats\n\n"
           "   Options: \n"
           "      -u  =  convert file to Unix newline format (newline)\n"
           "      -d  =  convert file to MS-DOS/Windows newline format (linefeed + newline)\n"
           "      -m  =  convert file to Macintosh newline format (linefeed)\n"
           "      -t  =  display current file type, no file modifications\n"
	   "      -h  =  show this help\n", 
	   commandName );

   exit(1);
}