-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathexpression_parser.c
741 lines (621 loc) · 19.9 KB
/
expression_parser.c
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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
#include<math.h>
#include<ctype.h>
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
/**
@file expression_parser.c
@author James Gregson ([email protected])
@brief implementation of the mathematical expression parser, see expression_parser.h for more information and license terms.
*/
#include"expression_parser.h"
double parse_expression( const char *expr ){
return parse_expression_with_callbacks( expr, NULL, NULL, NULL );
}
double parse_expression_with_callbacks( const char *expr, parser_variable_callback variable_cb, parser_function_callback function_cb, void *user_data ){
double val;
parser_data pd;
parser_data_init( &pd, expr, variable_cb, function_cb, user_data );
val = parser_parse( &pd );
if( pd.error ){
printf("Error: %s\n", pd.error );
printf("Expression '%s' failed to parse, returning nan\n", expr );
}
return val;
}
parser_data *parser_data_new( const char *str, parser_variable_callback variable_cb, parser_function_callback function_cb, void *user_data ){
parser_data *pd = malloc( sizeof( parser_data ) );
if( !pd ) return NULL;
pd->str = str;
pd->len = strlen( str )+1;
pd->pos = 0;
pd->error = NULL;
pd->user_data = user_data;
pd->variable_cb = variable_cb;
pd->function_cb = function_cb;
return pd;
}
int parser_data_init( parser_data *pd, const char *str, parser_variable_callback variable_cb, parser_function_callback function_cb, void *user_data ){
pd->str = str;
pd->len = strlen( str )+1;
pd->pos = 0;
pd->error = NULL;
pd->user_data = user_data;
pd->variable_cb = variable_cb;
pd->function_cb = function_cb;
return PARSER_TRUE;
}
void parser_data_free( parser_data *pd ){
free( pd );
}
double parser_parse( parser_data *pd ){
double result = 0.0;
// set the jump position and launch the parser
if( !setjmp( pd->err_jmp_buf ) ){
#if !defined(PARSER_EXCLUDE_BOOLEAN_OPS)
result = parser_read_boolean_or( pd );
#else
result = parser_read_expr( pd );
#endif
parser_eat_whitespace( pd );
if( pd->pos < pd->len-1 ){
parser_error( pd, "Failed to reach end of input expression, likely malformed input" );
} else return result;
} else {
// error was returned, output a nan silently
return sqrt( -1.0 );
}
return sqrt(-1.0);
}
void parser_error( parser_data *pd, const char *err ){
pd->error = err;
longjmp( pd->err_jmp_buf, 1);
}
char parser_peek( parser_data *pd ){
if( pd->pos < pd->len )
return pd->str[pd->pos];
parser_error( pd, "Tried to read past end of string!" );
return '\0';
}
char parser_peek_n( parser_data *pd, int n ){
if( pd->pos+n < pd->len )
return pd->str[pd->pos+n];
parser_error( pd, "Tried to read past end of string!" );
return '\0';
}
char parser_eat( parser_data *pd ){
if( pd->pos < pd->len )
return pd->str[pd->pos++];
parser_error( pd, "Tried to read past end of string!" );
return '\0';
}
void parser_eat_whitespace( parser_data *pd ){
while( isspace( parser_peek( pd ) ) )
parser_eat( pd );
}
double parser_read_double( parser_data *pd ){
char c, token[PARSER_MAX_TOKEN_SIZE];
int pos=0;
double val=0.0;
// read a leading sign
c = parser_peek( pd );
if( c == '+' || c == '-' )
token[pos++] = parser_eat( pd );
// read optional digits leading the decimal point
while( isdigit(parser_peek(pd)) )
token[pos++] = parser_eat( pd );
// read the optional decimal point
c = parser_peek( pd );
if( c == '.' )
token[pos++] = parser_eat( pd );
// read optional digits after the decimal point
while( isdigit(parser_peek(pd)) )
token[pos++] = parser_eat( pd );
// read the exponent delimiter
c = parser_peek( pd );
if( c == 'e' || c == 'E' ){
token[pos++] = parser_eat( pd );
// check if the expoentn has a sign,
// if so, read it
c = parser_peek( pd );
if( c == '+' || c == '-' ){
token[pos++] = parser_eat( pd );
}
}
// read the exponent delimiter
while( isdigit(parser_peek(pd) ) )
token[pos++] = parser_eat( pd );
// remove any trailing whitespace
parser_eat_whitespace( pd );
// null-terminate the string
token[pos] = '\0';
// check that a double-precision was read, otherwise throw an error
if( pos == 0 || sscanf( token, "%lf", &val ) != 1 )
parser_error( pd, "Failed to read real number" );
// return the parsed value
return val;
}
double parser_read_argument( parser_data *pd ){
char c;
double val;
// eat leading whitespace
parser_eat_whitespace( pd );
// read the argument
val = parser_read_expr( pd );
// read trailing whitespace
parser_eat_whitespace( pd );
// check if there's a comma
c = parser_peek( pd );
if( c == ',' )
parser_eat( pd );
// eat trailing whitespace
parser_eat_whitespace( pd );
// return result
return val;
}
int parser_read_argument_list( parser_data *pd, int *num_args, double *args ){
char c;
// set the initial number of arguments to zero
*num_args = 0;
// eat any leading whitespace
parser_eat_whitespace( pd );
while( parser_peek( pd ) != ')' ){
// check that we haven't read too many arguments
if( *num_args >= PARSER_MAX_ARGUMENT_COUNT )
parser_error( pd, "Exceeded maximum argument count for function call, increase PARSER_MAX_ARGUMENT_COUNT and recompile!" );
// read the argument and add it to the list of arguments
args[*num_args] = parser_read_expr( pd );
*num_args = *num_args+1;
// eat any following whitespace
parser_eat_whitespace( pd );
// check the next character
c = parser_peek( pd );
if( c == ')' ){
// closing parenthesis, end of argument list, return
// and allow calling function to match the character
break;
} else if( c == ',' ){
// comma, indicates another argument follows, match
// the comma, eat any remaining whitespace and continue
// parsing arguments
parser_eat( pd );
parser_eat_whitespace( pd );
} else {
// invalid character, print an error and return
parser_error( pd, "Expected ')' or ',' in function argument list!" );
return PARSER_FALSE;
}
}
return PARSER_TRUE;
}
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
// This is a C99 compiler - use the built-in round function.
#else
// This is not a C99-compliant compiler - roll our own round function.
// We'll use a name different from round in case this compiler has a non-standard implementation.
int parser_round(double x){
int i = (int) x;
if (x >= 0.0) {
return ((x-i) >= 0.5) ? (i + 1) : (i);
} else {
return (-x+i >= 0.5) ? (i - 1) : (i);
}
}
#endif
double parser_read_builtin( parser_data *pd ){
double v0=0.0, v1=0.0, args[PARSER_MAX_ARGUMENT_COUNT];
char c, token[PARSER_MAX_TOKEN_SIZE];
int num_args, pos=0;
c = parser_peek( pd );
if( isalpha(c) || c == '_' ){
// alphabetic character or underscore, indicates that either a function
// call or variable follows
while( isalpha(c) || isdigit(c) || c == '_' ){
token[pos++] = parser_eat( pd );
c = parser_peek( pd );
}
token[pos] = '\0';
// check for an opening bracket, which indicates a function call
if( parser_peek(pd) == '(' ){
// eat the bracket
parser_eat(pd);
// start handling the specific built-in functions
if( strcmp( token, "pow" ) == 0 ){
v0 = parser_read_argument( pd );
v1 = parser_read_argument( pd );
v0 = pow( v0, v1 );
} else if( strcmp( token, "sqrt" ) == 0 ){
v0 = parser_read_argument( pd );
if( v0 < 0.0 )
parser_error( pd, "sqrt(x) undefined for x < 0!" );
v0 = sqrt( v0 );
} else if( strcmp( token, "log" ) == 0 ){
v0 = parser_read_argument( pd );
if( v0 <= 0 )
parser_error( pd, "log(x) undefined for x <= 0!" );
v0 = log( v0 );
} else if( strcmp( token, "exp" ) == 0 ){
v0 = parser_read_argument( pd );
v0 = exp( v0 );
} else if( strcmp( token, "sin" ) == 0 ){
v0 = parser_read_argument( pd );
v0 = sin( v0 );
} else if( strcmp( token, "asin" ) == 0 ){
v0 = parser_read_argument( pd );
if( fabs(v0) > 1.0 )
parser_error( pd, "asin(x) undefined for |x| > 1!" );
v0 = asin( v0 );
} else if( strcmp( token, "cos" ) == 0 ){
v0 = parser_read_argument( pd );
v0 = cos( v0 );
} else if( strcmp( token, "acos" ) == 0 ){
v0 = parser_read_argument( pd );
if( fabs(v0 ) > 1.0 )
parser_error( pd, "acos(x) undefined for |x| > 1!" );
v0 = acos( v0 );
} else if( strcmp( token, "tan" ) == 0 ){
v0 = parser_read_argument( pd );
v0 = tan( v0 );
} else if( strcmp( token, "atan" ) == 0 ){
v0 = parser_read_argument( pd );
v0 = atan( v0 );
} else if( strcmp( token, "atan2" ) == 0 ){
v0 = parser_read_argument( pd );
v1 = parser_read_argument( pd );
v0 = atan2( v0, v1 );
} else if( strcmp( token, "abs" ) == 0 ){
v0 = parser_read_argument( pd );
v0 = abs( (int)v0 );
} else if( strcmp( token, "fabs" ) == 0 ){
v0 = parser_read_argument( pd );
v0 = fabs( v0 );
} else if( strcmp( token, "floor" ) == 0 ){
v0 = parser_read_argument( pd );
v0 = floor( v0 );
} else if( strcmp( token, "ceil" ) == 0 ){
v0 = parser_read_argument( pd );
v0 = floor( v0 );
} else if( strcmp( token, "round" ) == 0 ){
v0 = parser_read_argument( pd );
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
// This is a C99 compiler - use the built-in round function.
v0 = round( v0 );
#else
// This is not a C99-compliant compiler - use our own round function.
v0 = parser_round( v0 );
#endif
} else {
parser_read_argument_list( pd, &num_args, args );
if( pd->function_cb && pd->function_cb( pd->user_data, token, num_args, args, &v1 ) ){
v0 = v1;
} else {
parser_error( pd, "Tried to call unknown built-in function!" );
}
}
// eat closing bracket of function call
if( parser_eat( pd ) != ')' )
parser_error( pd, "Expected ')' in built-in call!" );
} else {
// no opening bracket, indicates a variable lookup
if( pd->variable_cb != NULL && pd->variable_cb( pd->user_data, token, &v1 ) ){
v0 = v1;
} else {
parser_error( pd, "Could not look up value for variable!" );
}
}
} else {
// not a built-in function call, just read a literal double
v0 = parser_read_double( pd );
}
// consume whitespace
parser_eat_whitespace( pd );
// return the value
return v0;
}
double parser_read_paren( parser_data *pd ){
double val;
// check if the expression has a parenthesis
if( parser_peek( pd ) == '(' ){
// eat the character
parser_eat( pd );
// eat remaining whitespace
parser_eat_whitespace( pd );
// if there is a parenthesis, read it
// and then read an expression, then
// match the closing brace
val = parser_read_boolean_or( pd );
// consume remaining whitespace
parser_eat_whitespace( pd );
// match the closing brace
if( parser_peek(pd) != ')' )
parser_error( pd, "Expected ')'!" );
parser_eat(pd);
} else {
// otherwise just read a literal value
val = parser_read_builtin( pd );
}
// eat following whitespace
parser_eat_whitespace( pd );
// return the result
return val;
}
double parser_read_unary( parser_data *pd ){
char c;
double v0;
c = parser_peek( pd );
if( c == '!' ){
// if the first character is a '!', perform a boolean not operation
#if !defined(PARSER_EXCLUDE_BOOLEAN_OPS)
parser_eat(pd);
parser_eat_whitespace(pd);
v0 = parser_read_paren(pd);
v0 = fabs(v0) >= PARSER_BOOLEAN_EQUALITY_THRESHOLD ? 0.0 : 1.0;
#else
parser_error( pd, "Expected '+' or '-' for unary expression, got '!'" );
#endif
} else if( c == '-' ){
// perform unary negation
parser_eat(pd);
parser_eat_whitespace(pd);
v0 = -parser_read_paren(pd);
} else if( c == '+' ){
// consume extra '+' sign and continue reading
parser_eat( pd );
parser_eat_whitespace(pd);
v0 = parser_read_paren(pd);
} else {
v0 = parser_read_paren(pd);
}
parser_eat_whitespace(pd);
return v0;
}
double parser_read_power( parser_data *pd ){
double v0, v1=1.0, s=1.0;
// read the first operand
v0 = parser_read_unary( pd );
// eat remaining whitespace
parser_eat_whitespace( pd );
// attempt to read the exponentiation operator
while( parser_peek(pd) == '^' ){
parser_eat(pd );
// eat remaining whitespace
parser_eat_whitespace( pd );
// handles case of a negative immediately
// following exponentiation but leading
// the parenthetical exponent
if( parser_peek( pd ) == '-' ){
parser_eat( pd );
s = -1.0;
parser_eat_whitespace( pd );
}
// read the second operand
v1 = s*parser_read_power( pd );
// perform the exponentiation
v0 = pow( v0, v1 );
// eat remaining whitespace
parser_eat_whitespace( pd );
}
// return the result
return v0;
}
double parser_read_term( parser_data *pd ){
double v0;
char c;
// read the first operand
v0 = parser_read_power( pd );
// eat remaining whitespace
parser_eat_whitespace( pd );
// check to see if the next character is a
// multiplication or division operand
c = parser_peek( pd );
while( c == '*' || c == '/' ){
// eat the character
parser_eat( pd );
// eat remaining whitespace
parser_eat_whitespace( pd );
// perform the appropriate operation
if( c == '*' ){
v0 *= parser_read_power( pd );
} else if( c == '/' ){
v0 /= parser_read_power( pd );
}
// eat remaining whitespace
parser_eat_whitespace( pd );
// update the character
c = parser_peek( pd );
}
return v0;
}
double parser_read_expr( parser_data *pd ){
double v0 = 0.0;
char c;
// handle unary minus
c = parser_peek( pd );
if( c == '+' || c == '-' ){
parser_eat( pd );
parser_eat_whitespace( pd );
if( c == '+' )
v0 += parser_read_term( pd );
else if( c == '-' )
v0 -= parser_read_term( pd );
} else {
v0 = parser_read_term( pd );
}
parser_eat_whitespace( pd );
// check if there is an addition or
// subtraction operation following
c = parser_peek( pd );
while( c == '+' || c == '-' ){
// advance the input
parser_eat( pd );
// eat any extra whitespace
parser_eat_whitespace( pd );
// perform the operation
if( c == '+' ){
v0 += parser_read_term( pd );
} else if( c == '-' ){
v0 -= parser_read_term( pd );
}
// eat whitespace
parser_eat_whitespace( pd );
// update the character being tested in the while loop
c = parser_peek( pd );
}
// return expression result
return v0;
}
double parser_read_boolean_comparison( parser_data *pd ){
char c, oper[] = { '\0', '\0', '\0' };
double v0, v1;
// eat whitespace
parser_eat_whitespace( pd );
// read the first value
v0 = parser_read_expr( pd );
// eat trailing whitespace
parser_eat_whitespace( pd );
// try to perform boolean comparison operator. Unlike the other operators
// like the arithmetic operations and the boolean and/or operations, we
// only allow one operation to be performed. This is done since cascading
// operations would have unintended results: 2.0 < 3.0 < 1.5 would
// evaluate to true, since (2.0 < 3.0) == 1.0, which is less than 1.5, even
// though the 3.0 < 1.5 does not hold.
c = parser_peek( pd );
if( c == '>' || c == '<' ){
// read the operation
oper[0] = parser_eat( pd );
c = parser_peek( pd );
if( c == '=' )
oper[1] = parser_eat( pd );
// eat trailing whitespace
parser_eat_whitespace( pd );
// try to read the next term
v1 = parser_read_expr( pd );
// perform the boolean operations
if( strcmp( oper, "<" ) == 0 ){
v0 = (v0 < v1) ? 1.0 : 0.0;
} else if( strcmp( oper, ">" ) == 0 ){
v0 = (v0 > v1) ? 1.0 : 0.0;
} else if( strcmp( oper, "<=" ) == 0 ){
v0 = (v0 <= v1) ? 1.0 : 0.0;
} else if( strcmp( oper, ">=" ) == 0 ){
v0 = (v0 >= v1) ? 1.0 : 0.0;
} else {
parser_error( pd, "Unknown operation!" );
}
// read trailing whitespace
parser_eat_whitespace( pd );
}
return v0;
}
double parser_read_boolean_equality( parser_data *pd ){
char c, oper[] = { '\0', '\0', '\0' };
double v0, v1;
// eat whitespace
parser_eat_whitespace( pd );
// read the first value
v0 = parser_read_boolean_comparison( pd );
// eat trailing whitespace
parser_eat_whitespace( pd );
// try to perform boolean equality operator
c = parser_peek( pd );
if( c == '=' || c == '!' ){
if( c == '!' ){
// try to match '!=' without advancing input to not clobber unary not
if( parser_peek_n( pd, 1 ) == '=' ){
oper[0] = parser_eat( pd );
oper[1] = parser_eat( pd );
} else {
return v0;
}
} else {
// try to match '=='
oper[0] = parser_eat( pd );
c = parser_peek( pd );
if( c != '=' )
parser_error( pd, "Expected a '=' for boolean '==' operator!" );
oper[1] = parser_eat( pd );
}
// eat trailing whitespace
parser_eat_whitespace( pd );
// try to read the next term
v1 = parser_read_boolean_comparison( pd );
// perform the boolean operations
if( strcmp( oper, "==" ) == 0 ){
v0 = ( fabs(v0 - v1) < PARSER_BOOLEAN_EQUALITY_THRESHOLD ) ? 1.0 : 0.0;
} else if( strcmp( oper, "!=" ) == 0 ){
v0 = ( fabs(v0 - v1) > PARSER_BOOLEAN_EQUALITY_THRESHOLD ) ? 1.0 : 0.0;
} else {
parser_error( pd, "Unknown operation!" );
}
// read trailing whitespace
parser_eat_whitespace( pd );
}
return v0;
}
double parser_read_boolean_and( parser_data *pd ){
char c;
double v0, v1;
// tries to read a boolean comparison operator ( <, >, <=, >= )
// as the first operand of the expression
v0 = parser_read_boolean_equality( pd );
// consume any whitespace befor the operator
parser_eat_whitespace( pd );
// grab the next character and check if it matches an 'and'
// operation. If so, match and perform and operations until
// there are no more to perform
c = parser_peek( pd );
while( c == '&' ){
// eat the first '&'
parser_eat( pd );
// check for and eat the second '&'
c = parser_peek( pd );
if( c != '&' )
parser_error( pd, "Expected '&' to follow '&' in logical and operation!" );
parser_eat( pd );
// eat any remaining whitespace
parser_eat_whitespace( pd );
// read the second operand of the
v1 = parser_read_boolean_equality( pd );
// perform the operation, returning 1.0 for TRUE and 0.0 for FALSE
v0 = ( fabs(v0) >= PARSER_BOOLEAN_EQUALITY_THRESHOLD && fabs(v1) >= PARSER_BOOLEAN_EQUALITY_THRESHOLD ) ? 1.0 : 0.0;
// eat any following whitespace
parser_eat_whitespace( pd );
// grab the next character to continue trying to perform 'and' operations
c = parser_peek( pd );
}
return v0;
}
double parser_read_boolean_or( parser_data *pd ){
char c;
double v0, v1;
// read the first term
v0 = parser_read_boolean_and( pd );
// eat whitespace
parser_eat_whitespace( pd );
// grab the next character and check if it matches an 'or'
// operation. If so, match and perform and operations until
// there are no more to perform
c = parser_peek( pd );
while( c == '|' ){
// match the first '|' character
parser_eat( pd );
// check for and match the second '|' character
c = parser_peek( pd );
if( c != '|' )
parser_error( pd, "Expected '|' to follow '|' in logical or operation!" );
parser_eat( pd );
// eat any following whitespace
parser_eat_whitespace( pd );
// read the second operand
v1 = parser_read_boolean_and( pd );
// perform the 'or' operation
v0 = ( fabs(v0) >= PARSER_BOOLEAN_EQUALITY_THRESHOLD || fabs(v1) >= PARSER_BOOLEAN_EQUALITY_THRESHOLD ) ? 1.0 : 0.0;
// eat any following whitespace
parser_eat_whitespace( pd );
// grab the next character to continue trying to match
// 'or' operations
c = parser_peek( pd );
}
// return the resulting value
return v0;
}