summaryrefslogtreecommitdiff
path: root/tables.c
blob: e0c2a517912afd444208585acdc2251c1d0c9f13 (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
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
/*  tables.h - tables serialization code
 *
 *  Copyright (c) 1990 The Regents of the University of California.
 *  All rights reserved.
 *
 *  This code is derived from software contributed to Berkeley by
 *  Vern Paxson.
 *
 *  The United States Government has rights in this work pursuant
 *  to contract no. DE-AC03-76SF00098 between the United States
 *  Department of Energy and the University of California.
 *
 *  This file is part of flex.
 *
 *  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, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *
 *  Neither the name of the University nor the names of its contributors
 *  may be used to endorse or promote products derived from this software
 *  without specific prior written permission.
 *
 *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 *  IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 *  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 *  PURPOSE.
 */


#include "flexdef.h"

#define yypad64(n) ((8-((n)%8))%8)
#define TFLAGS2BYTES(flags)\
        (((flags) & YYT_DATA8)\
            ? sizeof(int8_t)\
            :(((flags) & YYT_DATA16)\
                ? sizeof(int16_t)\
                :sizeof(int32_t)))

int     yytbl_fwrite32 (FILE * out, uint32_t v);
int     yytbl_fwrite16 (FILE * out, uint16_t v);
int     yytbl_fwrite8 (FILE * out, uint8_t v);

/** Initialize a table header.
 *  @param th  The uninitialized structure
 *  @param version_str the  version string
 *  @param name the name of this table set
 */
void yytbl_hdr_init (struct yytbl_hdr *th, const char *version_str,
		     const char *name)
{
	memset (th, 0, sizeof (struct yytbl_hdr));

	th->th_magic = 0xF13C57B1;
	th->th_hsize =
		yypad64 (20 + strlen (version_str) + 1 + strlen (name) +
			 1);
	th->th_ssize = 0;	// Not known at this point.
	th->th_flags = 0;
	th->th_version = copy_string (version_str);
	th->th_name = copy_string (name);
}

/** Allocate and initialize a table data structure.
 * @param id  the table identifier
 * @return a flex_alloc'd structure. Caller must flex_free it.
 */
struct yytbl_data *yytbl_data_create (enum yytbl_id id)
{
	struct yytbl_data *td;

	td = (struct yytbl_data *) flex_alloc (sizeof (struct yytbl_data));
	memset (td, 0, sizeof (struct yytbl_data));

	td->t_id = id;
	return td;
}

/** write the header.
 *  @param out the output stream
 *  @param th table header to be written
 *  @return -1 on error, or bytes written on success.
 */
int yytbl_hdr_fwrite (FILE * out, const struct yytbl_hdr *th)
{
	size_t  sz, rv;
	int     pad, bwritten = 0;

	if (yytbl_fwrite32 (out, th->th_magic) < 0
	    || yytbl_fwrite32 (out, th->th_hsize) < 0
	    || yytbl_fwrite32 (out, th->th_ssize) < 0
	    || yytbl_fwrite16 (out, th->th_flags) < 0)
		return -1;
	else
		bwritten += 3 * 4 + 2;

	sz = strlen (th->th_version) + 1;
	if ((rv = fwrite (th->th_version, 1, sz, out)) != sz)
		return -1;
	bwritten += rv;

	sz = strlen (th->th_name) + 1;
	if ((rv = fwrite (th->th_name, 1, sz, out)) != sz)
		return 1;
	bwritten += rv;

	/* add padding */
	pad = yypad64 (bwritten) - bwritten;
	while (pad-- > 0)
		if (yytbl_fwrite8 (out, 0) < 0)
			return -1;
		else
			bwritten++;

	/* Sanity check */
	if (bwritten != th->th_hsize) {
		/* Oops. */
		return -1;
	}

	return bwritten;
}

/** Write four bytes in network byte order
 * @param  out  the output stream
 * @param  v    a dword in host byte order
 * @return  -1 on error. number of bytes written on success.
 */
int yytbl_fwrite32 (FILE * out, uint32_t v)
{
	uint32_t vnet;
	size_t  bytes, rv;

	vnet = htonl (v);
	bytes = sizeof (uint32_t);
	rv = fwrite (&vnet, bytes, 1, out);
	if (rv != bytes)
		return -1;
	return bytes;
}

/** Write two bytes in network byte order.
 * @param  out  the output stream
 * @param  v    a word in host byte order
 * @return  -1 on error. number of bytes written on success.
 */
int yytbl_fwrite16 (FILE * out, uint16_t v)
{
	uint16_t vnet;
	size_t  bytes, rv;

	vnet = htons (v);
	bytes = sizeof (uint16_t);
	rv = fwrite (&vnet, bytes, 1, out);
	if (rv != bytes)
		return -1;
	return bytes;
}

/** Write a byte.
 * @param  out  the output stream
 * @param  v    the value to be written
 * @return  -1 on error. number of bytes written on success.
 */
int yytbl_fwrite8 (FILE * out, uint8_t v)
{
	size_t  bytes, rv;

	bytes = sizeof (uint8_t);
	rv = fwrite (&v, bytes, 1, out);
	if (rv != bytes)
		return -1;
	return bytes;
}

/** Calculate the number of bytes  needed to hold the largest
 *  absolute value in this array.
 * @param arr  array
 * @param len  number of elements in array
 * @param sz   sizeof individual element
 * @return 1,2, or 4
 */
static int min_int_size (const void *arr, int32_t len, int sz)
{
	int32_t curr, max = 0, i;

	for (i = 0; i < len; i++) {
		switch (sz) {
		case 1:
			curr = abs (((int8_t *) arr)[i]);
			break;
		case 2:
			curr = abs (((int16_t *) arr)[i]);
			break;
		case 4:
			curr = abs (((int32_t *) arr)[i]);
			break;
		default:
			fprintf (stderr,
				 "Illegal size (%d) in min_int_size\n",
				 sz);
			return 32;
		}
		if (curr > max)
			max = curr;
	}
	if (max < INT8_MAX)
		return sizeof (int8_t);
	else if (max < INT16_MAX)
		return sizeof (int16_t);
	else
		return sizeof (int32_t);
}


/* Extract data element [i][j] from int array data tables. 
 * @param tbl data table
 * @param i index into major array. i is zero for one-dimensional arrays.
 * @param j index into 
 * @return data[i][j]
 */
static int32_t yytbl_data_geti (const struct yytbl_data *tbl, int i, int j)
{
	/* TODO */
	return 0;
}

/* Transform data to smallest possible of (int32, int16, int8).
 * For example, we may generate an int32 array due to user options
 * (e.g., %option align) but if the maximum value in that array
 * is 80, then we serialize it with 1 byte per int.
 *
 * @param tbl the table to be compressed
 */
void yytbl_data_compress (struct yytbl_data *tbl)
{
	int32_t i, sz;
	void   *newdata = 0;

	if (tbl->t_id != YYT_ID_TRANSITION
	    && tbl->t_id != YYT_ID_START_STATE_LIST) {
		if (tbl->t_hilen == 0) {
			/* Data is a single-dimensional array of ints */
			sz = min_int_size (tbl->t_data, tbl->t_lolen,
					   TFLAGS2BYTES (tbl->t_flags));
			if (sz == TFLAGS2BYTES (tbl->t_flags))
				/* No change in this table needed. */
				return;

			if (sz > TFLAGS2BYTES (tbl->t_flags)) {
				/* TODO: ERROR. The code is wrong somewhere. */
				return;
			}

			newdata = flex_alloc (sz * tbl->t_lolen);
			for (i = 0; i < tbl->t_lolen; i++) {
				int32_t n;

				n = yytbl_data_geti (tbl, 0, i);
				switch (sz) {
				case sizeof (int8_t):
					((int8_t *) newdata)[i] =
						(int8_t) n;
					break;
				case sizeof (int16_t):

					((int16_t *) newdata)[i] =
						(int16_t) n;
					break;
				case sizeof (int32_t):

					((int32_t *) newdata)[i] =
						(int32_t) n;
					break;
				default:	/* TODO: ERROR: unknown 'sz' */
					break;
				}
			}
			free (tbl->t_data);
			tbl->t_data = newdata;

		}
		else {
			/* Data is a two-dimensional array of ints */
		}
	}
	else if (tbl->t_id == YYT_ID_TRANSITION) {
		/* Data is an array of structs */
	}
	else if (tbl->t_id == YYT_ID_START_STATE_LIST) {
		/* Data is an array of pointers */
	}
}

/* vim:set expandtab cindent tabstop=4 softtabstop=4 shiftwidth=4 textwidth=0: */