File: string.c

package info (click to toggle)
glimpse 4.18.7-12
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,832 kB
  • sloc: ansic: 37,606; makefile: 847; sh: 242; perl: 142
file content (280 lines) | stat: -rw-r--r-- 7,705 bytes parent folder | download | duplicates (8)
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
/* Copyright (c) 1994 Burra Gopal, Udi Manber.  All Rights Reserved. */

/*
 * string.c:	String table manipulation routines. Can be used to compute
 *		the dictionary as well as uncompress files.
 */

#include "defs.h"

extern int MAX_WORDS;
extern int RESERVED_CHARS;

int next_free_strtable = 0;
char *free_strtable = NULL; /*[DEF_MAX_WORDS * AVG_WORD_LEN]; */

extern int usemalloc;

/* debugging only */
int
dump_string(string_table, string_file, index_file)
	char	**string_table;
	unsigned char	*string_file, *index_file;
{
	FILE	*stringfp;
	FILE	*indexfp;
	int	i;

	if ((stringfp = fopen(string_file, "w")) == NULL) {
		fprintf(stderr, "cannot open for writing: %s\n", string_file);
		return 0;
	}
	if ((indexfp = fopen(index_file, "r")) == NULL) {
		fprintf(stderr, "cannot open for reading: %s\n", index_file);
		fclose(stringfp);
		return 0;
	}

	for(i=0; i<MAX_WORDS; i++) fprintf(stringfp, "%s\n", string_table[i]);

	fflush(stringfp);
	fclose(stringfp);
	fclose(indexfp);
	return 1;
}

/*
 * VERY particular to the format of the string-table file: which is a series
 * of words separated by newlines -- this does an fscanf+strlen in one scan.
 */
int
mystringread(fp, str)
	FILE	*fp;
	char	*str;
{
	int	numread = 0;
	int	c;

	while((numread <= MAX_WORD_LEN) && ((c = getc(fp)) != EOF)) {
		if (c == '\n') {
			if (numread==0) break;	/* first char '\n' => in padded area */
			c = '\0';
			str[numread++] = c;
			return numread;
		}
		else str[numread++] = c;
	}
	str[numread] = '\0';
	if (c == EOF) return -1;
	return numread;
}

int
build_string(string_table, stringfp, bytestoread, initialwordindex)
	char	*string_table[DEF_MAX_WORDS]; /*[MAX_WORD_LEN+2]; */
	FILE	*stringfp;
	int	bytestoread;
	int	initialwordindex;
{
	int	wordindex = initialwordindex;
	int	numread = 0;
	int	ret;
	char	dummybuf[MAX_WORD_BUF];
	char	*word;

	if (bytestoread == -1) {	/* read until end of file */
		while (wordindex < MAX_WORDS) {
			if (usemalloc) word = dummybuf;
			else {
				if (free_strtable == NULL) free_strtable = (char *)malloc(AVG_WORD_LEN * DEF_MAX_WORDS);
				if (free_strtable == NULL) break;
				word = &free_strtable[next_free_strtable];
			}
			if ((ret = mystringread(stringfp, word)) == 0) continue;
			if (ret == -1) break;
			if (usemalloc) {
				if ((word = (char *)malloc(ret + 2)) == NULL) break;
				strcpy(word, dummybuf);
			}
			else next_free_strtable += ret + 2;
			string_table[wordindex] = word;
#if	0
			printf("word=%s index=%d\n", string_table[wordindex], wordindex);
#endif	/*0*/
			wordindex ++;
		}
	}
	else {	/* read only the specified number of bytes */
		while((wordindex < MAX_WORDS) && (bytestoread > numread)) {
			if (usemalloc) word = dummybuf;
			else {
				if (free_strtable == NULL) free_strtable = (char *)malloc(AVG_WORD_LEN * DEF_MAX_WORDS);
				if (free_strtable == NULL) break;
				word = &free_strtable[next_free_strtable];
			}
			if ((ret = mystringread(stringfp, word)) <= 0) break;	/* quit if EOF OR if padded area */
			if (usemalloc) {
				if ((word = (char *)malloc(ret + 2)) == NULL) break;
				strcpy(word, dummybuf);
			}
			else next_free_strtable += ret + 2;
			string_table[wordindex] = word;
#if	0
			printf("word=%s index=%d\n", string_table[wordindex], wordindex);
#endif	/*0*/
			wordindex ++;
			numread += ret;
		}
	}
	return wordindex;
}

/*
 * Interprets srcbuf as a set of srclen/2 short integers. It looks for all the
 * short-integers encoding words in the matched line and loads only those blocks
 * of the string table. Note: srcbuf must be aligned on a short-int boundary.
 */
int
build_partial_string(string_table, stringfp, srcbuf, srclen, linebuf, linelen, blocksize, loaded_string_table)
	char	*string_table[DEF_MAX_WORDS]; /* [MAX_WORD_LEN+2]; */
	FILE	*stringfp;
	unsigned char	*srcbuf;
	int	srclen;
	unsigned char	*linebuf;
	int	linelen;
	int	blocksize;
	char	loaded_string_table[STRING_FILE_BLOCKS];
{
	unsigned char	*srcpos;
	int		blockindex = 0;
	unsigned short	srcinit, srcend;
	unsigned short	wordnums[MAX_NAME_LEN];	/* maximum pattern length */
	int	numwordnums = 0;
	int	i;

	/*
	 * Find all the relevant wordnums in the line.
	 */
	i = 0;
	while(i<linelen) {
		if (linebuf[i] < RESERVED_CHARS) {
			if (linebuf[i] == BEGIN_VERBATIM) {
				if (ISASCII(linebuf[i+1])) {
					while ((linebuf[i] != END_VERBATIM) && (i <linelen)) i ++;
				}
				else i ++;	/* skip over the BEGIN_VERBATIM of non-ascii character */
				i ++;		/* skip over the non-ascii character OR END_VERBATIM: let it overshoot linelen...its ok */
			}
			else i ++;		/* skip over the character encoding a special word OR a special character */
		}
		else {
			wordnums[numwordnums] = (unsigned char)linebuf[i];		/* always big-endian compression */
			wordnums[numwordnums] <<= 8;
			wordnums[numwordnums] |= (unsigned char)linebuf[i+1];
			wordnums[numwordnums] = decode_index(wordnums[numwordnums]);	/* roundabout to avoid buserr */
			numwordnums ++;
			i += sizeof(short);
		}
	}

#if	0
	for (i=0; i<numwordnums; i++) printf("num%d=%d\n", i, wordnums[i]);
	getchar();
#endif	/*0*/

	srcpos = srcbuf;
	srcend = *((unsigned short *)srcpos);
	srcpos += sizeof(short);
	while (srcpos < srcbuf + srclen) {
		srcinit = srcend;
		srcend = *((unsigned short *)srcpos);
		srcpos += sizeof(short);
#if	0
		printf("%d -- %d\n", srcinit, srcend);
#endif	/*0*/
		for (i=0; i<numwordnums; i++)
			if ((wordnums[i] >= srcinit) && (wordnums[i] <= srcend)) goto include_page;

		blockindex++;
		continue;

	include_page:	/* Include it if any of the word-indices fit within this range */
		if (loaded_string_table[blockindex++]) continue;
#if	0
		printf("build_partial_string: hashing words in page# %d\n", blockindex);
#endif	/*0*/
		loaded_string_table[blockindex - 1] = 1;
		fseek(stringfp, (blockindex-1)*blocksize, 0);
		build_string(string_table, stringfp, blocksize, srcinit);
	}
	return 0;
}

pad_string_file(filename, FILEBLOCKSIZE)
	unsigned char *filename;
	int FILEBLOCKSIZE;
{
	FILE	*outfp, *infp, *indexfp;
	int	offset = 0, len;
	unsigned char buf[MAX_NAME_LEN];
	int	pid = getpid();
	int	i;
	unsigned short	wordindex = 0;
	char	es1[MAX_LINE_LEN], es2[MAX_LINE_LEN];

	if ((infp = fopen(filename, "r")) == NULL) {
		fprintf(stderr, "cannot open for reading: %s\n", filename);
		exit(2);
	}
	sprintf(buf, "%s.index", filename);
	if ((indexfp = fopen(buf, "w")) == NULL) {
		fprintf(stderr, "cannot open for writing: %s\n", buf);
		fclose(infp);
		exit(2);
	}
	sprintf(buf, "%s.%d", filename, pid);
	if ((outfp = fopen(buf, "w")) == NULL) {
		fprintf(stderr, "cannot open for writing: %s\n", buf);
		fclose(infp);
		fclose(indexfp);
		exit(2);
	}
	if ((FILEBLOCKSIZE % MIN_BLOCKSIZE) != 0) {
		fprintf(stderr, "invalid block size %d: changing to %d\n", FILEBLOCKSIZE, MIN_BLOCKSIZE);
		FILEBLOCKSIZE = MIN_BLOCKSIZE;
	}
	fprintf(indexfp, "%d\n", FILEBLOCKSIZE);

	buf[0] = '\0';
	if ((char *)buf != fgets(buf, MAX_NAME_LEN, infp)) goto end_of_input;
	len = strlen((char *)buf);
	fputs(buf, outfp);
	fprintf(indexfp, "%d\n", wordindex);
	offset += len;
	wordindex ++;

	while(fgets(buf, MAX_NAME_LEN, infp) == (char *)buf) {
		len = strlen((char *)buf);
		if (offset + len > FILEBLOCKSIZE) {
			for (i=0; i<FILEBLOCKSIZE-offset; i++)	/* fill up with so many newlines until the next block size */
				putc('\n', outfp);
			fputs(buf, outfp);
			fprintf(indexfp, "%d\n", wordindex);
			offset = 0;
		}
		else fputs(buf, outfp);
		offset += len;
		wordindex ++;
	}
	fprintf(indexfp, "%d\n", wordindex);

end_of_input:
	fclose(infp);
	fflush(outfp);
	fclose(outfp);
	fflush(indexfp);
	fclose(indexfp);
	sprintf(buf, "exec %s %s.%d %s\n", SYSTEM_MV, tescapesinglequote(filename, es1), pid, tescapesinglequote(filename, es2));
	system(buf);
	return 0;
}