-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathparser.y
More file actions
executable file
·540 lines (470 loc) · 10.8 KB
/
Copy pathparser.y
File metadata and controls
executable file
·540 lines (470 loc) · 10.8 KB
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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
// A parser for PipeScript
// Generate using:
// goyacc -o parser.go -p parser parser.y
%{
package pipescript
import (
"fmt"
"errors"
"strconv"
)
type scriptFunc struct {
transform string
args []*Pipe
}
%}
%union{
script *Pipe
sfunc scriptFunc
scriptArray []*Pipe
objBuilder map[string]*Pipe
strVal string // This is how variables are passed in: by their string value
}
%type <script> script pipescript constant algebraic simpletransform transform statement parensvalue
%type <sfunc> function simplefunction
%type <scriptArray> script_array
%type <objBuilder> object_builder
%token <strVal> pNUMBER pSTRING pBOOL pIDENTIFIER pIDENTIFIER_SPACE
%token <strVal> pAND pOR pNOT pCOMPARISON pPLUS pMINUS pMULTIPLY pDIVIDE pMODULO pPOW pCOMMA
%token <strVal> pRPARENS pLPARENS pRSQUARE pLSQUARE pRBRACKET pLBRACKET pPIPE pCOLON
%nonassoc pNOARGS
%nonassoc pLPARENS pLBRACKET pLSQUARE
%nonassoc pARGS
%left pCOMMA
/* Order of operations for algebraic expressions */
%left pOR
%left pAND
%left pNOT
%left pCOMPARISON
%left pPLUS pMINUS
%left pMULTIPLY pDIVIDE
%left pMODULO pPOW
%left pUMINUS /* supplies precedence for unary minus */
%left pCOLON
//%nonassoc pSUPER
%%
script:
pipescript
{
$$ = $1
parserlex.(*parserLex).output = $$
}
;
/*************************************************************************************
Set up the scripts that are separated by pipe. Pipescript uses full transforms as its elements
Input: transform | transform | transform
Output: pipescript
*************************************************************************************/
pipescript: transform
|
pipescript pPIPE transform
{
$1.Join($3)
$$ = $1
}
;
/*************************************************************************************
Handle functions (transforms). transforms are bash-like arguments
Input: statement
Output: algebraic
*************************************************************************************/
transform: algebraic // Algebraic HAS to be first
|
function
{
s,err := parserGetScript($1)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
;
function:
function algebraic %prec pARGS
{
$$.transform = $1.transform
$$.args = append($1.args,$2)
}
|
pIDENTIFIER_SPACE algebraic %prec pARGS
{
$$.transform = $1
$$.args = []*Pipe{$2}
}
;
/*************************************************************************************
Handle algebra and comparisons. Note that order of operations is defined above by
prescedence.
Input: statement
Output: algebraic
*************************************************************************************/
algebraic: statement
|
algebraic pCOLON algebraic
{
$1.Join($3)
$$ = $1
}
|
pNOT algebraic
{
s,err := notScript($2)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
/* Comparisons are: ==,>=,<=,>,<,!= */
algebraic pCOMPARISON algebraic
{
s,err := comparisonScript($2,$1,$3)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
algebraic pAND algebraic
{
s,err := andScript($1,$3)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
algebraic pOR algebraic
{
s,err := orScript($1,$3)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
algebraic pMODULO algebraic
{
s,err := modScript($1,$3)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
algebraic pPOW algebraic
{
s,err := powScript($1,$3)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
algebraic pMULTIPLY algebraic
{
s,err := mulScript($1,$3)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
algebraic pDIVIDE algebraic
{
s,err := divScript($1,$3)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
algebraic pPLUS algebraic
{
s,err := addScript($1,$3)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
/* The parser has difficulty handling subtraction of IDENTIFIER_SPACE, since we have conflict with bash/function style transforms.
pIDENTIFIER_SPACE pMINUS algebraic -> pIDENTIFIER_SPACE (pMINUS algebraic) by default (unary minus)
We want it to work as normal subtraction. Resolve this here. */
pIDENTIFIER_SPACE pMINUS algebraic //%prec pSUPER
{
// First get the script of this function
sf := scriptFunc{
transform: $1,
args: []*Pipe{},
}
s,err := parserGetScript(sf)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
// Now subtract the two
s,err = subtractScript(s,$3)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
algebraic pMINUS algebraic %prec pMINUS
{
s,err := subtractScript($1,$3)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
pMINUS algebraic %prec pUMINUS
{
s,err := negativeScript($2)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
;
/*************************************************************************************
Create the statement!
Output: statement
*************************************************************************************/
statement:
simpletransform
|
constant
|
/* Set up the handlers of parentheses */
parensvalue
;
parensvalue:
/* Set up the handlers of parentheses */
pLPARENS pipescript pRPARENS { $$ = $2 }
|
pLSQUARE pipescript pRSQUARE { $$ = $2 }
;
/*************************************************************************************
simplefunction/transform combines script_array and identifier to form function: f(a,b,c,d)
*************************************************************************************/
simpletransform:
simplefunction
{
s,err := parserGetScript($1)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = s
}
|
object_builder pSTRING pCOLON algebraic pRBRACKET
{
if _,ok := $1[$2]; ok {
parserlex.Error(fmt.Sprintf("Key %s found multiple times in json object",$2))
goto ret1
}
$1[$2] = $4
// Now generate the objectScript
$$ = MustPipe(NewObjectTransform($1),nil)
}
;
simplefunction:
/* Set up the handlers of parentheses - we need to match correct type of parens */
pIDENTIFIER pLPARENS script_array pRPARENS //%prec pARGS
{
$$.transform = $1
$$.args = $3
}
|
pIDENTIFIER pLSQUARE script_array pRSQUARE //%prec pARGS
{
$$.transform = $1
$$.args = $3
}
|
pIDENTIFIER pLPARENS algebraic pRPARENS //%prec pARGS
{
$$.transform = $1
$$.args = []*Pipe{$3}
}
|
pIDENTIFIER pLSQUARE algebraic pRSQUARE //%prec pARGS
{
$$.transform = $1
$$.args = []*Pipe{$3}
}
|
pIDENTIFIER pLPARENS pRPARENS
{
// Allows calling as a function
$$.transform = $1
$$.args = []*Pipe{}
}
|
pIDENTIFIER %prec pNOARGS
{
$$.transform = $1
$$.args = []*Pipe{}
}
|
pIDENTIFIER_SPACE %prec pNOARGS
{
$$.transform = $1
$$.args = []*Pipe{}
}
;
/*************************************************************************************
script_array allows us to prepare the args of a function f(a,b,c,d)
*************************************************************************************/
script_array:
script_array pCOMMA algebraic
{
$$ = append($1,$3)
}
|
algebraic pCOMMA algebraic
{
$$ = []*Pipe{$1,$3}
}
;
/*************************************************************************************
object_builder allows us to read in a json-formatted object which includes transforms as values
*************************************************************************************/
object_builder:
pLBRACKET
{
$$ = make(map[string]*Pipe)
}
|
object_builder pSTRING pCOLON algebraic pCOMMA
{
if _,ok := $1[$2]; ok {
parserlex.Error(fmt.Sprintf("Key %s found multiple times in json object",$2))
goto ret1
}
$1[$2] = $4
$$ = $1
}
;
/*************************************************************************************
Prepare constant values. The lexed values are all strings, so convert to correct type
and convert into NewConstTransform
Input: lexed values
Output: constant
*************************************************************************************/
constant:
pNUMBER
{
num, err := strconv.ParseFloat($1, 64)
if err!=nil {
parserlex.Error(err.Error())
goto ret1
}
$$ = MustPipe(NewConstTransform(num),nil)
}
|
pSTRING
{
$$ = MustPipe(NewConstTransform($1),nil)
}
|
pBOOL
{
if $1=="true" {
$$ = MustPipe(NewConstTransform(true),nil)
} else {
$$ = MustPipe(NewConstTransform(false),nil)
}
}
;
%%
func parserGetScript(sf scriptFunc) (*Pipe,error) {
return NewTransformPipe(sf.transform,sf.args)
}
func comparisonScript(comparison string, a1, a2 *Pipe) (*Pipe, error) {
var ti *Transform
switch comparison {
case "==":
ti = EqTransform
case "!=":
ti = NeTransform
case "<":
ti = LtTransform
case "<=":
ti = LteTransform
case ">":
ti = GtTransform
case ">=":
ti = GteTransform
default:
return nil, errors.New("Invalid comparison")
}
return NewElementPipe(ti,[]*Pipe{a1,a2})
}
func addScript(a1,a2 *Pipe) (*Pipe,error) {
ti := AddTransform
return NewElementPipe(ti,[]*Pipe{a1,a2})
}
func divScript(a1,a2 *Pipe) (*Pipe,error) {
ti := DivTransform
return NewElementPipe(ti,[]*Pipe{a1,a2})
}
func subtractScript(a1,a2 *Pipe) (*Pipe,error) {
ti := SubTransform
return NewElementPipe(ti,[]*Pipe{a1,a2})
}
func mulScript(a1,a2 *Pipe) (*Pipe,error) {
ti := MulTransform
return NewElementPipe(ti,[]*Pipe{a1,a2})
}
func powScript(a1,a2 *Pipe) (*Pipe,error) {
ti := PowTransform
return NewElementPipe(ti,[]*Pipe{a1,a2})
}
func modScript(a1,a2 *Pipe) (*Pipe,error) {
ti := ModTransform
return NewElementPipe(ti,[]*Pipe{a1,a2})
}
func orScript(a1,a2 *Pipe) (*Pipe,error) {
ti := OrTransform
return NewElementPipe(ti,[]*Pipe{a1,a2})
}
func andScript(a1,a2 *Pipe) (*Pipe,error) {
ti := AndTransform
return NewElementPipe(ti,[]*Pipe{a1,a2})
}
func notScript(a1 *Pipe) (*Pipe,error) {
ti := NotTransform
pe,err := NewPipeElement(ti,nil)
if err!=nil {
return nil,err
}
a1.Append(pe)
return a1,nil
}
func negativeScript(a1 *Pipe) (*Pipe,error) {
ti := NegTransform
pe,err := NewPipeElement(ti,nil)
if err!=nil {
return nil,err
}
a1.Append(pe)
return a1,nil
}