strfile.c revision 53209
1/*-
2 * Copyright (c) 1989, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Ken Arnold.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 *    must display the following acknowledgement:
18 *	This product includes software developed by the University of
19 *	California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 *    may be used to endorse or promote products derived from this software
22 *    without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * $FreeBSD: head/games/fortune/strfile/strfile.c 53209 1999-11-16 02:45:03Z billf $
37 */
38
39#ifndef lint
40static const char copyright[] =
41"@(#) Copyright (c) 1989, 1993\n\
42	The Regents of the University of California.  All rights reserved.\n";
43#endif /* not lint */
44
45#ifndef lint
46#if 0
47static const char sccsid[] = "@(#)strfile.c   8.1 (Berkeley) 5/31/93";
48#else
49static const char rcsid[] =
50  "$FreeBSD: head/games/fortune/strfile/strfile.c 53209 1999-11-16 02:45:03Z billf $";
51#endif
52#endif /* not lint */
53
54# include	<sys/param.h>
55# include	<stdio.h>
56# include       <stdlib.h>
57# include	<ctype.h>
58# include       <string.h>
59# include       <time.h>
60# include       <locale.h>
61# include       <unistd.h>
62# include	"strfile.h"
63
64/*
65 *	This program takes a file composed of strings seperated by
66 * lines starting with two consecutive delimiting character (default
67 * character is '%') and creates another file which consists of a table
68 * describing the file (structure from "strfile.h"), a table of seek
69 * pointers to the start of the strings, and the strings, each terminated
70 * by a null byte.  Usage:
71 *
72 *	% strfile [-iorsx] [ -cC ] sourcefile [ datafile ]
73 *
74 *	C - Allow comments marked by a double delimiter at line's beginning
75 *	c - Change delimiting character from '%' to 'C'
76 *	s - Silent.  Give no summary of data processed at the end of
77 *	    the run.
78 *	o - order the strings in alphabetic order
79 *	i - if ordering, ignore case
80 *	r - randomize the order of the strings
81 *	x - set rotated bit
82 *
83 *		Ken Arnold	Sept. 7, 1978 --
84 *
85 *	Added ordering options.
86 */
87
88# define	TRUE	1
89# define	FALSE	0
90
91# define	STORING_PTRS	(Oflag || Rflag)
92# define	CHUNKSIZE	512
93
94# define        ALLOC(ptr,sz) { \
95			if (ptr == NULL) \
96				ptr = malloc((unsigned int) (CHUNKSIZE * sizeof *ptr)); \
97			else if (((sz) + 1) % CHUNKSIZE == 0) \
98				ptr = realloc((void *) ptr, ((unsigned int) ((sz) + CHUNKSIZE) * sizeof *ptr)); \
99			if (ptr == NULL) { \
100				fprintf(stderr, "out of space\n"); \
101				exit(1); \
102			} \
103		}
104
105#ifdef NO_VOID
106# define	void	char
107#endif
108
109typedef struct {
110	char	first;
111	long    pos;
112} STR;
113
114char	*Infile		= NULL,		/* input file name */
115	Outfile[MAXPATHLEN] = "",	/* output file name */
116	Delimch		= '%';		/* delimiting character */
117
118int	Cflag		= FALSE;	/* embedded comments */
119int	Sflag		= FALSE;	/* silent run flag */
120int	Oflag		= FALSE;	/* ordering flag */
121int	Iflag		= FALSE;	/* ignore case flag */
122int	Rflag		= FALSE;	/* randomize order flag */
123int	Xflag		= FALSE;	/* set rotated bit */
124long	Num_pts		= 0;		/* number of pointers/strings */
125
126long    *Seekpts;
127
128FILE	*Sort_1, *Sort_2;		/* pointers for sorting */
129
130STRFILE	Tbl;				/* statistics table */
131
132STR	*Firstch;			/* first chars of each string */
133
134void getargs(), add_offset(), do_order(), randomize(), usage();
135int cmp_str();
136
137/*
138 * main:
139 *	Drive the sucker.  There are two main modes -- either we store
140 *	the seek pointers, if the table is to be sorted or randomized,
141 *	or we write the pointer directly to the file, if we are to stay
142 *	in file order.  If the former, we allocate and re-allocate in
143 *	CHUNKSIZE blocks; if the latter, we just write each pointer,
144 *	and then seek back to the beginning to write in the table.
145 */
146int main(ac, av)
147int	ac;
148char	**av;
149{
150	register char		*sp, dc;
151	register FILE		*inf, *outf;
152	register long           last_off, length, pos, *p;
153	register int		first, cnt;
154	register char		*nsp;
155	register STR		*fp;
156	static char		string[257];
157
158	(void) setlocale(LC_ALL, "");
159
160	getargs(ac, av);		/* evalute arguments */
161	dc = Delimch;
162	if ((inf = fopen(Infile, "r")) == NULL) {
163		perror(Infile);
164		exit(1);
165	}
166
167	if ((outf = fopen(Outfile, "w")) == NULL) {
168		perror(Outfile);
169		exit(1);
170	}
171	if (!STORING_PTRS)
172		(void) fseek(outf, (long) sizeof Tbl, 0);
173
174	/*
175	 * Write the strings onto the file
176	 */
177
178	Tbl.str_longlen = 0;
179	Tbl.str_shortlen = ~((unsigned long) 0);
180	Tbl.str_delim = dc;
181	Tbl.str_version = VERSION;
182	first = Oflag;
183	add_offset(outf, ftell(inf));
184	last_off = 0;
185	do {
186		sp = fgets(string, 256, inf);
187		if (sp == NULL || (sp[0] == dc && sp[1] == '\n')) {
188			pos = ftell(inf);
189			length = pos - last_off - (sp ? strlen(sp) : 0);
190			last_off = pos;
191			if (!length)
192				continue;
193			add_offset(outf, pos);
194			if (Tbl.str_longlen < length)
195				Tbl.str_longlen = length;
196			if (Tbl.str_shortlen > length)
197				Tbl.str_shortlen = length;
198			first = Oflag;
199		}
200		else if (first) {
201			for (nsp = sp; !isalnum((unsigned char)*nsp); nsp++)
202				continue;
203			ALLOC(Firstch, Num_pts);
204			fp = &Firstch[Num_pts - 1];
205			if (Iflag && isupper((unsigned char)*nsp))
206				fp->first = tolower((unsigned char)*nsp);
207			else
208				fp->first = *nsp;
209			fp->pos = Seekpts[Num_pts - 1];
210			first = FALSE;
211		}
212	} while (sp != NULL);
213
214	/*
215	 * write the tables in
216	 */
217
218	(void) fclose(inf);
219	Tbl.str_numstr = Num_pts - 1;
220
221	if (Cflag)
222		Tbl.str_flags |= STR_COMMENTS;
223
224	if (Oflag)
225		do_order();
226	else if (Rflag)
227		randomize();
228
229	if (Xflag)
230		Tbl.str_flags |= STR_ROTATED;
231
232	if (!Sflag) {
233		printf("\"%s\" created\n", Outfile);
234		if (Num_pts == 2)
235			puts("There was 1 string");
236		else
237			printf("There were %ld strings\n", Num_pts - 1);
238		printf("Longest string: %lu byte%s\n", Tbl.str_longlen,
239		       Tbl.str_longlen == 1 ? "" : "s");
240		printf("Shortest string: %lu byte%s\n", Tbl.str_shortlen,
241		       Tbl.str_shortlen == 1 ? "" : "s");
242	}
243
244	rewind(outf);
245	Tbl.str_version = htonl(Tbl.str_version);
246	Tbl.str_numstr = htonl(Tbl.str_numstr);
247	Tbl.str_longlen = htonl(Tbl.str_longlen);
248	Tbl.str_shortlen = htonl(Tbl.str_shortlen);
249	Tbl.str_flags = htonl(Tbl.str_flags);
250	(void) fwrite((char *) &Tbl, sizeof Tbl, 1, outf);
251	if (STORING_PTRS) {
252		for (p = Seekpts, cnt = Num_pts; cnt--; ++p)
253			*p = htonl(*p);
254		(void) fwrite((char *) Seekpts, sizeof *Seekpts, (int) Num_pts, outf);
255	}
256	(void) fclose(outf);
257	exit(0);
258}
259
260/*
261 *	This routine evaluates arguments from the command line
262 */
263void getargs(argc, argv)
264int	argc;
265char	**argv;
266{
267	extern char	*optarg;
268	extern int	optind;
269	int	ch;
270
271	while ((ch = getopt(argc, argv, "Cc:iorsx")) != EOF)
272		switch(ch) {
273		case 'C':			/* embedded comments */
274			Cflag++;
275			break;
276		case 'c':			/* new delimiting char */
277			Delimch = *optarg;
278			if (!isascii(Delimch)) {
279				printf("bad delimiting character: '\\%o\n'",
280				       (unsigned char)Delimch);
281			}
282			break;
283		case 'i':			/* ignore case in ordering */
284			Iflag++;
285			break;
286		case 'o':			/* order strings */
287			Oflag++;
288			break;
289		case 'r':			/* randomize pointers */
290			Rflag++;
291			break;
292		case 's':			/* silent */
293			Sflag++;
294			break;
295		case 'x':			/* set the rotated bit */
296			Xflag++;
297			break;
298		case '?':
299		default:
300			usage();
301		}
302	argv += optind;
303
304	if (*argv) {
305		Infile = *argv;
306		if (*++argv)
307			(void) strcpy(Outfile, *argv);
308	}
309	if (!Infile) {
310		puts("No input file name");
311		usage();
312	}
313	if (*Outfile == '\0') {
314		(void) strcpy(Outfile, Infile);
315		(void) strcat(Outfile, ".dat");
316	}
317}
318
319void usage()
320{
321	(void) fprintf(stderr,
322	    "strfile [-Ciorsx] [-c char] sourcefile [datafile]\n");
323	exit(1);
324}
325
326/*
327 * add_offset:
328 *	Add an offset to the list, or write it out, as appropriate.
329 */
330void add_offset(fp, off)
331FILE	*fp;
332long    off;
333{
334	long net;
335
336	if (!STORING_PTRS) {
337		net = htonl(off);
338		fwrite(&net, 1, sizeof net, fp);
339	} else {
340		ALLOC(Seekpts, Num_pts + 1);
341		Seekpts[Num_pts] = off;
342	}
343	Num_pts++;
344}
345
346/*
347 * do_order:
348 *	Order the strings alphabetically (possibly ignoring case).
349 */
350void do_order()
351{
352	register int	i;
353	register long   *lp;
354	register STR	*fp;
355
356	Sort_1 = fopen(Infile, "r");
357	Sort_2 = fopen(Infile, "r");
358	qsort((char *) Firstch, (int) Tbl.str_numstr, sizeof *Firstch, cmp_str);
359	i = Tbl.str_numstr;
360	lp = Seekpts;
361	fp = Firstch;
362	while (i--)
363		*lp++ = fp++->pos;
364	(void) fclose(Sort_1);
365	(void) fclose(Sort_2);
366	Tbl.str_flags |= STR_ORDERED;
367}
368
369static int collate_range_cmp (c1, c2)
370	int c1, c2;
371{
372	static char s1[2], s2[2];
373	int ret;
374
375	c1 &= UCHAR_MAX;
376	c2 &= UCHAR_MAX;
377	if (c1 == c2)
378		return (0);
379	s1[0] = c1;
380	s2[0] = c2;
381	if ((ret = strcoll(s1, s2)) != 0)
382		return (ret);
383	return (c1 - c2);
384}
385
386/*
387 * cmp_str:
388 *	Compare two strings in the file
389 */
390int cmp_str(p1, p2)
391STR	*p1, *p2;
392{
393	register int	c1, c2;
394	register int	n1, n2;
395	int r;
396
397# define	SET_N(nf,ch)	(nf = (ch == '\n'))
398# define        IS_END(ch,nf)   (ch == EOF || (ch == (unsigned char) Delimch && nf))
399
400	c1 = (unsigned char) p1->first;
401	c2 = (unsigned char) p2->first;
402	if ((r = collate_range_cmp(c1, c2)) != 0)
403		return r;
404
405	(void) fseek(Sort_1, p1->pos, 0);
406	(void) fseek(Sort_2, p2->pos, 0);
407
408	n1 = FALSE;
409	n2 = FALSE;
410	while (!isalnum(c1 = getc(Sort_1)) && c1 != '\0' && c1 != EOF)
411		SET_N(n1, c1);
412	while (!isalnum(c2 = getc(Sort_2)) && c2 != '\0' && c2 != EOF)
413		SET_N(n2, c2);
414
415	while (!IS_END(c1, n1) && !IS_END(c2, n2)) {
416		if (Iflag) {
417			if (isupper(c1))
418				c1 = tolower(c1);
419			if (isupper(c2))
420				c2 = tolower(c2);
421		}
422		if ((r = collate_range_cmp(c1, c2)) != 0)
423			return r;
424		SET_N(n1, c1);
425		SET_N(n2, c2);
426		c1 = getc(Sort_1);
427		c2 = getc(Sort_2);
428	}
429	if (IS_END(c1, n1))
430		c1 = 0;
431	if (IS_END(c2, n2))
432		c2 = 0;
433	return collate_range_cmp(c1, c2);
434}
435
436/*
437 * randomize:
438 *	Randomize the order of the string table.  We must be careful
439 *	not to randomize across delimiter boundaries.  All
440 *	randomization is done within each block.
441 */
442void randomize()
443{
444	register int	cnt, i;
445	register long   tmp;
446	register long   *sp;
447
448	srandomdev();
449
450	Tbl.str_flags |= STR_RANDOM;
451	cnt = Tbl.str_numstr;
452
453	/*
454	 * move things around randomly
455	 */
456
457	for (sp = Seekpts; cnt > 0; cnt--, sp++) {
458		i = random() % cnt;
459		tmp = sp[0];
460		sp[0] = sp[i];
461		sp[i] = tmp;
462	}
463}
464