summaryrefslogtreecommitdiffstats
path: root/parsing/parse.sh
blob: 654199b50be19d57bdb9e34dfe29ace0734a1221 (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
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
HT="$(printf '\t.')";   HT="${HT%.}"
LF="$(printf '\n.')";   LF="${LF%.}"
RS="$(printf '\036.')"; RS="${RS%.}"
US="$(printf '\037.')"; US="${US%.}"

dbg()
{
	dbg=true
	#dbg=false
	if ${dbg}; then
		printf 'DEBUG: %s\n' "${@}" >&2
	fi
}

. ./tokens.sh
. ./lexer.sh

complete_command()
{
	if list; then
		separator
		return 0
	fi
	return 1
}

list()
{
	dbg 'list()'
	if and_or; then
		while separator_op; do
			if ! and_or; then
				return 1
			fi
		done
		return 0
	fi
	return 1
}
and_or()
{
	dbg 'and_or()'
	if pipeline; then
		while accept T_AND_IF || accept T_OR_IF; do
			if ! linebreak || ! pipeline; then
				return 1
			fi
		done
		return 0
	fi
	return 1
}
pipeline()
{
	dbg 'pipeline()'
	accept T_BANG
	if pipe_sequence; then
		return 0
	fi
	return 1
}

pipe_sequence()
{
	dbg 'pipe_sequence()'
	if command; then
		while accept T_PIPE; do
			if ! linebreak || ! command; then
				return 1
			fi
		done
		return 0
	fi
	return 1
}

command()
{
	dbg 'command()'
	if compound_command; then
		redirect_list
		return 0
	elif function_defn; then
		return 0
	elif simple_command; then
		return 0
	fi
	return 1
}

compound_command()
{
	dbg 'compound_command()'
	if brace_group; then
		return 0
	elif subshell; then
		return 0
	elif for_clause; then
		return 0
	elif case_clause; then
		return 0
	elif if_clause; then
		return 0
	elif while_clause; then
		return 0
	elif until_clause; then
		return 0
	fi
	return 1
}

subshell()
{
	dbg 'subshell()'
	if accept T_LPAREN && compound_list && expect T_RPAREN; then
		return 0
	fi
	return 1
}

compound_list()
{
	dbg 'compound_list()'
	newline_list
	if term; then
		dbg FOUND TERM
		separator
		return 0
	fi
	return 1
}

term()
{
	dbg 'term()'
	if and_or; then
		while separator; do
			and_or
		done
		return 0
	fi
	return 1
}

for_clause()
{
	dbg 'for_clause()'
	if accept T_FOR; then
		if expect T_NAME && linebreak; then
			if accept T_IN; then
				wordlist
				if ! sequential_sep; then
					return 1
				fi
			fi
			if do_group; then
				return 0
			fi
		fi
	fi
	return 1
}

wordlist()
{
	dbg 'wordlist()'
	if accept T_WORD; then
		while accept T_WORD; do :; done
		return 0
	fi
	return 1
}

case_clause()
{
	: TODO: Implement
	return 1
}

case_list_ns()
{
	: TODO: Implement
	return 1
}

case_list()
{
	: TODO: Implement
	return 1
}

case_item_ns()
{
	: TODO: Implement
	return 1
}

case_item()
{
	: TODO: Implement
	return 1
}

pattern()
{
	: TODO: Implement
	return 1
}

if_clause()
{
	: TODO: Implement
	return 1
}

else_part()
{
	: TODO: Implement
	return 1
}

while_clause()
{
	: TODO: Implement
	return 1
}

until_clause()
{
	: TODO: Implement
	return 1
}

function_defn()
{
	: TODO: Implement
	return 1
}

function_body()
{
	: TODO: Implement
	return 1
}

brace_group()
{
	dbg 'brace_group()'
	if accept T_LBRACE && compound_list && expect T_RBRACE; then
		return 0
	fi
	return 1
}

do_group()
{
	dbg 'do_group()'
	if accept T_DO && compound_list && expect T_DONE; then
		return 0
	fi
	return 1
}

simple_command()
{
	dbg 'simple_command()'
	if cmd_prefix; then
		if cmd_word; then
			cmd_suffix
		fi
		return 0
	elif cmd_name; then
		cmd_suffix
		return 0
	fi
	return 1
}

cmd_name()
{
	dbg 'cmd_name()'
	# TODO: Assignment
	if accept T_CMDNAME; then
		return 0
	fi
	return 1
}

cmd_word()
{
	dbg 'cmd_word()'
	# TODO: Assignment
	if accept T_WORD; then
		return 0
	fi
	return 1
}

cmd_prefix()
{
	: TODO: Implement
	return 1
}

cmd_suffix()
{
	: TODO: Implement
	return 1
}

redirect_list()
{
	: TODO: Implement
	return 1
}

io_redirect()
{
	: TODO: Implement
	return 1
}

io_file()
{
	: TODO: Implement
	return 1
}

filename()
{
	: TODO: Implement
	return 1
}

io_here()
{
	: TODO: Implement
	return 1
}

here_end()
{
	: TODO: Implement
	return 1
}

newline_list()
{
	if accept T_NEWLINE; then
		while accept T_NEWLINE; do
			:
		done
		return 0
	fi
	return 1
}

linebreak()
{
	newline_list
	return 0
}

separator_op()
{
	if accept T_AND || accept T_SEMI; then
		return 0
	fi
	return 1
}

separator()
{
	if separator_op && linebreak; then
		return 0
	elif newline_list; then
		return 0
	fi
	return 1
}

sequential_sep()
{
	dbg 'sequential_sep()'
	if accept T_SEMI; then
		if linebreak; then
			return 0
		fi
	elif newline_list; then
		return 0
	fi
	return 1
}

parse()
{
	local fn="${1}"
	shift 1

	init_lexer "${fn}"

	# If this returns (does not exit), there are no errors.
	while complete_command; do :; done
	if ! accept T_EOF; then
		synexp ''
	fi

	get_tokens

	return 0
}

try()
{
	local tokens=
	local t=

	printf 'Trying script:\n'
	printf '\t%s\n' "${@}"
	if tokens="$(printf '%s\n' "${@}" | parse -)"; then
		IFS="${RS}"
		for t in ${tokens}; do
			printf 'Token: %s\n' "$(tokname "${t}")"
			case "${t%${US}*}" in T_WORD)
				printf '       "%s"\n' "${t#T_WORD${US}}"
				;;
			esac
		done
		unset IFS
	else
		printf 'FAIL\n'
	fi
	printf '\n\n'
}

#try '"foo bar" && $baz || qux' '${quux%uux  quuux'
#try '"foo bar" && $baz || qux' '${quux%uux } quuux'
#try 'foo ${bar}'
#try 'foo ${#bar}'
#try 'foo ${bar#baz}'
#try 'foo ${#bar#}'
#try 'foo ${^}'
#try 'foo `bar`'
#try 'foo &&'
try '{ foo; }'
#try '( foo )'
#try 'for i in 1 2 3; do stuff; done'