summaryrefslogtreecommitdiffstats
path: root/gencat/gencat.c
blob: d1a7c316cc394b51c74b06bc1ca9465560b97fd5 (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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265

/***********************************************************
Copyright 1990, by Alfalfa Software Incorporated, Cambridge, Massachusetts.

                        All Rights Reserved

Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that Alfalfa's name not be used in
advertising or publicity pertaining to distribution of the software
without specific, written prior permission.

ALPHALPHA DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
ALPHALPHA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.

If you make any modifications, bugfixes or other changes to this software
we'd appreciate it if you could send a copy to us so we can keep things
up-to-date.  Many thanks.
				Kee Hinckley
				Alfalfa Software, Inc.
				267 Allston St., #3
				Cambridge, MA 02139  USA
				nazgul@alfalfa.com
    
******************************************************************/

/* Edit History

01/18/91   3 hamilton	#if not reparsed
01/12/91   2 schulert	conditionally use prototypes
12/23/90   2 hamilton	Fix fd == NULL to fd < 0
11/03/90   1 hamilton	Alphalpha->Alfalfa & OmegaMail->Poste
08/13/90   1 schulert	move from ua to omu
*/

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#ifdef SYSV
#include <sys/fcntl.h>
#include <string.h>
#else
#include <strings.h>
#endif
#ifdef __linux__
#include <string.h>
#include <unistd.h>
#endif
#include <sys/file.h>
#include <sys/stat.h>
#include "gencat.h"

#ifndef L_SET
#define L_SET SEEK_SET
#endif

#ifndef L_INCR
#define L_INCR SEEK_CUR
#endif

/*
 * The spec says the syntax is "gencat catfile msgfile...".
 * We extend it to:
 * 	gencat [-new] [-or] [-lang C|C++|ANSIC] catfile msgfile
 *	       [-h <header-file>]...
 * Flags are order dependant, we'll take whatever lang was most recently chosen
 * and use it to generate the next header file.  The header files are generated
 * at the point in the command line they are listed.  Thus the sequence:
 *	gencat -lang C foo.cat foo.mcs -h foo.h -lang C++ bar.mcs -h bar.H
 * will put constants from foo.mcs into foo.h and constants from bar.mcs into
 * bar.h.  Constants are not saved in the catalog file, so nothing will come
 * from that, even if things have been defined before.  The constants in foo.h
 * will be in C syntax, in bar.H in C++ syntax.
 */

static void writeIfChanged(
#if defined(__STDC__) || defined(__cplusplus)
		char *fname, int lang, int orConsts
#endif
);

void usage() {
    fprintf(stderr, "Use: gencat [-new] [-or] [-lang C|C++|ANSIC] catfile msgfile [-h <header-file>]...\n");
}

int main(
#if defined(__STDC__) || defined(__cplusplus)
		int argc, char *argv[])
#else
		argc, argv)
int argc;
char *argv[];
#endif
{
    int		ofd, ifd, i;
    FILE	*fptr;
    char	*catfile = NULL;
    char	*input = NULL;
    int		lang = MCLangC;
    int		new = False;
    int		orConsts = False;
    
    for (i = 1; i < argc; ++i) {
	if (argv[i][0] == '-') {
	    if (strcmp(argv[i], "-lang") == 0) {
		++i;
		if (strcmp(argv[i], "C") == 0) lang = MCLangC;
		else if (strcmp(argv[i], "C++") == 0) lang = MCLangCPlusPlus;
		else if (strcmp(argv[i], "ANSIC") == 0) lang = MCLangANSIC;
		else {
		    fprintf(stderr, "gencat: Unrecognized language: %s\n", argv[i]);
		    exit(1);
		} 
	    } else if (strncmp(argv[i], "-h", 2) == 0) {
		if (!input) {
		    fprintf(stderr, "gencat: Can't write to a header before reading something.\n");
		    exit(1);
		}
		++i;
		writeIfChanged(argv[i], lang, orConsts);
	    } else if (strncmp(argv[i], "-new", 4) == 0) {
		if (catfile) {
		    fprintf(stderr, "gencat: You must specify -new before the catalog file name\n");
		    exit(1);
		}
		new = True;
	    } else if (strncmp(argv[i], "-or", 3) == 0) {
		orConsts = ~orConsts;
	    } else {
		usage();
		exit(1);
	    }
        } else {
	    if (!catfile) {
		catfile = argv[i];
		if (new) {
		    if ((ofd = open(catfile, O_WRONLY|O_TRUNC|O_CREAT, 0666)) < 0) {
			fprintf(stderr, "gencat: Unable to create a new %s.\n", catfile);
			exit(1);
		    }
		} else if ((ofd = open(catfile, O_RDONLY)) < 0) {
		    if ((ofd = open(catfile, O_WRONLY|O_CREAT, 0666)) < 0) {
			fprintf(stderr, "gencat: Unable to create %s.\n", catfile);
			exit(1);
		    }
		} else {
		    MCReadCat(ofd);
		    close(ofd);
		    if ((ofd = open(catfile, O_WRONLY|O_TRUNC)) < 0) {
			fprintf(stderr, "gencat: Unable to truncate %s.\n", catfile);
			exit(1);
		    }
		}
	    } else {
		input = argv[i];
		if ((ifd = open(input, O_RDONLY)) < 0) {
		    fprintf(stderr, "gencat: Unable to read %s\n", input);
		    exit(1);
		}
		MCParse(ifd);
		close(ifd);
	    }
	}
    }
    if (catfile) {
	MCWriteCat(ofd);
	exit(0);
    } else {
	usage();
	exit(1);
    }
    return 0; /* just for gcc */
}

static void writeIfChanged(
#if defined(__STDC__) || defined(__cplusplus)
		char *fname, int lang, int orConsts)
#else
		fname, lang, orConsts)
char *fname;
int lang;
int orConsts;
#endif
{
    char	tmpname[32];
    char	buf[BUFSIZ], tbuf[BUFSIZ], *cptr, *tptr;
    int		fd, tfd;
    int		diff = False;
    int		c, len, tlen;
    struct stat	sbuf;

    /* If it doesn't exist, just create it */
    if (stat(fname, &sbuf)) {
	if ((fd = open(fname, O_WRONLY|O_CREAT, 0666)) < 0) {
	    fprintf(stderr, "gencat: Unable to create header file %s.\n", fname);
	    exit(1);
	}
	MCWriteConst(fd, lang, orConsts);
	close(fd);
	return;
    }

    /* If it does exist, create a temp file for now */
    sprintf(tmpname, "/tmp/gencat.%d", (int) getpid());
    if ((tfd = open(tmpname, O_RDWR|O_CREAT, 0666)) < 0) {
	fprintf(stderr, "gencat: Unable to open temporary file: %s\n", tmpname);
	exit(1);
    }
    unlink(tmpname);

    /* Write to the temp file and rewind */
    MCWriteConst(tfd, lang, orConsts);

    /* Open the real header file */
    if ((fd = open(fname, O_RDONLY)) < 0) {
	fprintf(stderr, "gencat: Unable to read header file: %s\n", fname);
	exit(1);
    }

    /* Backup to the start of the temp file */
    if (lseek(tfd, 0L, L_SET) < 0) {
	fprintf(stderr, "gencat: Unable to seek in tempfile: %s\n", tmpname);
	exit(1);
    }

    /* Now compare them */
    while ((tlen = read(tfd, tbuf, BUFSIZ)) > 0) {
	if ((len = read(fd, buf, BUFSIZ)) != tlen) {
	    diff = True;
	    goto done;
	}
	for (cptr = buf, tptr = tbuf; cptr < buf+len; ++cptr, ++tptr) {
	    if (*tptr != *cptr) {
		diff = True;
		goto done;
	    }
	}
    }
done:    
    if (diff) {
	if (lseek(tfd, 0L, L_SET) < 0) {
	    fprintf(stderr, "gencat: Unable to seek in tempfile: %s\n", tmpname);
	    exit(1);
	}
	close(fd);
	if ((fd = open(fname, O_WRONLY|O_TRUNC)) < 0) {
	    fprintf(stderr, "gencat: Unable to truncate header file: %s\n", fname);
	    exit(1);
	}
	while ((len = read(tfd, buf, BUFSIZ)) > 0) {
	    if (write(fd, buf, len) != len) {
		fprintf(stderr, "gencat: Error writing to header file: %s\n", fname);
	    }
	}
    }
    close(fd);
    close(tfd);
}