aboutsummaryrefslogtreecommitdiffstats
path: root/kconf2h_parser.c
blob: 6a25dbc3d4c06d99ff26e02cc05c9c7cf9f22a8a (plain) (blame)
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327

#line 1 "kconf2h_parser.ragel"
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>

#include "kconf2h.h"

#define TYPE_YM  1
#define TYPE_HEX 2
#define TYPE_STR 3
#define TYPE_DEC 4

char *new_string( const char *start, const char *end )
{
	int str_s = end-start+1;
	char *new_str=malloc( str_s+1 );
	memcpy( new_str, start, str_s );
	if ( new_str != NULL )
		new_str[str_s]=0x0;
	return new_str;
}

int o_head_def( FILE *f, int type, const char *s_define, const char *e_define, 
    const char *s_value, const char *e_value )
{
	if ( f != NULL )
	{
		if ( (s_define != NULL) && (e_define != NULL) && (s_define <= e_define) &&
			(s_value != NULL) && ( e_value != NULL ) && ( s_value <= e_value ))
		{
			char *def = new_string( s_define, e_define );
			char *val = NULL;
			//printf( "%s\n", def );
			fprintf( f, "#define %s", def );
			free( def );
			
			if ( type != TYPE_YM )
			{
				val = new_string( s_value, e_value );
				fprintf( f, " %s", val );
				free( val );
			}
			/*
			switch ( type )
			{
				case TYPE_HEX:
					fprintf( f, " %s", val );
					break;
				case TYPE_STR:
					fprintf( f, " %s", val );
					break;
				case TYPE_DEC:
					fprintf( f, " %s", val );
					break;
				default:
					printf("Unknown Kconfig type %d\n", type);
			}
			*/

			fprintf( f, "\n" );
			return 1;
		}
	}
	return 0;
}


#line 71 "kconf2h_parser.c"
static const char _k2h_actions[] = {
	0, 1, 0, 1, 2, 1, 7, 1, 
	11, 2, 9, 1, 4, 3, 8, 10, 
	11, 4, 4, 8, 10, 11, 4, 5, 
	8, 10, 11, 4, 6, 8, 10, 11
	
};

static const char _k2h_key_offsets[] = {
	0, 0, 3, 6, 7, 8, 9, 10, 
	11, 12, 17, 23, 30, 33, 37, 39, 
	42, 46, 52, 59, 60
};

static const char _k2h_trans_keys[] = {
	10, 35, 67, 10, 32, 126, 79, 78, 
	70, 73, 71, 95, 95, 48, 57, 65, 
	90, 61, 95, 48, 57, 65, 90, 34, 
	45, 48, 109, 121, 49, 57, 34, 32, 
	126, 10, 34, 32, 126, 48, 57, 10, 
	48, 57, 10, 120, 48, 57, 48, 57, 
	65, 70, 97, 102, 10, 48, 57, 65, 
	70, 97, 102, 10, 10, 35, 67, 0
};

static const char _k2h_single_lengths[] = {
	0, 3, 1, 1, 1, 1, 1, 1, 
	1, 1, 2, 5, 1, 2, 0, 1, 
	2, 0, 1, 1, 3
};

static const char _k2h_range_lengths[] = {
	0, 0, 1, 0, 0, 0, 0, 0, 
	0, 2, 2, 1, 1, 1, 1, 1, 
	1, 3, 3, 0, 0
};

static const char _k2h_index_offsets[] = {
	0, 0, 4, 7, 9, 11, 13, 15, 
	17, 19, 23, 28, 35, 38, 42, 44, 
	47, 51, 55, 60, 62
};

static const char _k2h_indicies[] = {
	0, 2, 3, 1, 0, 4, 1, 5, 
	1, 6, 1, 7, 1, 8, 1, 9, 
	1, 10, 1, 11, 11, 11, 1, 12, 
	11, 11, 11, 1, 13, 14, 15, 17, 
	17, 16, 1, 19, 18, 1, 20, 19, 
	18, 1, 21, 1, 22, 21, 1, 22, 
	23, 21, 1, 24, 24, 24, 1, 25, 
	24, 24, 24, 1, 26, 1, 0, 2, 
	3, 1, 0
};

static const char _k2h_trans_targs[] = {
	20, 0, 2, 3, 2, 4, 5, 6, 
	7, 8, 9, 10, 11, 12, 14, 16, 
	15, 19, 12, 13, 20, 15, 20, 17, 
	18, 20, 20
};

static const char _k2h_trans_actions[] = {
	7, 0, 1, 9, 0, 0, 0, 0, 
	0, 0, 0, 0, 3, 5, 5, 5, 
	5, 5, 0, 0, 22, 0, 17, 0, 
	0, 27, 12
};

static const int k2h_start = 1;
static const int k2h_first_final = 20;
static const int k2h_error = 0;

static const int k2h_en_main = 1;


#line 87 "kconf2h_parser.ragel"


int parse_kconf2h( const char *str, FILE *outf )
{

	

	static uint8_t cs;
	const int stacksize = 10;
	int res=0, *top=0, *stack=NULL;
	stack = malloc( sizeof(stack)*stacksize );
	char *p=(char *)str, *pe = (char *)str + strlen( str ), *eof=NULL;

	/*
	variables used in state machine
	*/
	char *token_s=NULL, *token_e=NULL;
	char *value_s=NULL, *value_e=NULL;
	int token_type=0;
	fprintf( outf, "#ifndef __CONFIG_H\n" );
	fprintf( outf, "#define __CONFIG_H\n" );

	
#line 172 "kconf2h_parser.c"
	{
	cs = k2h_start;
	}

#line 110 "kconf2h_parser.ragel"
	
#line 179 "kconf2h_parser.c"
	{
	int _klen;
	unsigned int _trans;
	const char *_acts;
	unsigned int _nacts;
	const char *_keys;

	if ( p == pe )
		goto _test_eof;
	if ( cs == 0 )
		goto _out;
_resume:
	_keys = _k2h_trans_keys + _k2h_key_offsets[cs];
	_trans = _k2h_index_offsets[cs];

	_klen = _k2h_single_lengths[cs];
	if ( _klen > 0 ) {
		const char *_lower = _keys;
		const char *_mid;
		const char *_upper = _keys + _klen - 1;
		while (1) {
			if ( _upper < _lower )
				break;

			_mid = _lower + ((_upper-_lower) >> 1);
			if ( (*p) < *_mid )
				_upper = _mid - 1;
			else if ( (*p) > *_mid )
				_lower = _mid + 1;
			else {
				_trans += (unsigned int)(_mid - _keys);
				goto _match;
			}
		}
		_keys += _klen;
		_trans += _klen;
	}

	_klen = _k2h_range_lengths[cs];
	if ( _klen > 0 ) {
		const char *_lower = _keys;
		const char *_mid;
		const char *_upper = _keys + (_klen<<1) - 2;
		while (1) {
			if ( _upper < _lower )
				break;

			_mid = _lower + (((_upper-_lower) >> 1) & ~1);
			if ( (*p) < _mid[0] )
				_upper = _mid - 2;
			else if ( (*p) > _mid[1] )
				_lower = _mid + 2;
			else {
				_trans += (unsigned int)((_mid - _keys)>>1);
				goto _match;
			}
		}
		_trans += _klen;
	}

_match:
	_trans = _k2h_indicies[_trans];
	cs = _k2h_trans_targs[_trans];

	if ( _k2h_trans_actions[_trans] == 0 )
		goto _again;

	_acts = _k2h_actions + _k2h_trans_actions[_trans];
	_nacts = (unsigned int) *_acts++;
	while ( _nacts-- > 0 )
	{
		switch ( *_acts++ )
		{
	case 0:
#line 72 "kconf2h_parser.ragel"
	{}
	break;
	case 1:
#line 73 "kconf2h_parser.ragel"
	{token_s = p;}
	break;
	case 2:
#line 73 "kconf2h_parser.ragel"
	{token_e = p-1;}
	break;
	case 3:
#line 76 "kconf2h_parser.ragel"
	{token_type=TYPE_YM;}
	break;
	case 4:
#line 77 "kconf2h_parser.ragel"
	{token_type=TYPE_DEC;}
	break;
	case 5:
#line 78 "kconf2h_parser.ragel"
	{token_type=TYPE_STR;}
	break;
	case 6:
#line 79 "kconf2h_parser.ragel"
	{token_type=TYPE_HEX;}
	break;
	case 7:
#line 79 "kconf2h_parser.ragel"
	{value_s = p;}
	break;
	case 8:
#line 79 "kconf2h_parser.ragel"
	{value_e = p-1;}
	break;
	case 9:
#line 80 "kconf2h_parser.ragel"
	{}
	break;
	case 10:
#line 80 "kconf2h_parser.ragel"
	{ o_head_def( outf, token_type, token_s, token_e, value_s, value_e ); }
	break;
	case 11:
#line 82 "kconf2h_parser.ragel"
	{}
	break;
#line 301 "kconf2h_parser.c"
		}
	}

_again:
	if ( cs == 0 )
		goto _out;
	if ( ++p != pe )
		goto _resume;
	_test_eof: {}
	_out: {}
	}

#line 111 "kconf2h_parser.ragel"

	if ( cs == k2h_error )
	{
		printf("ERR state [%d] pos[%d]:[%s]\n", res, p-str, p);
		res = -1;
	}

	fprintf( outf, "#endif\n" );

	return res;
}