-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathexpr.c
More file actions
227 lines (200 loc) · 3.98 KB
/
expr.c
File metadata and controls
227 lines (200 loc) · 3.98 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
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include "expr.h"
#define EXPR_TEST 0 // set to zero to include test main()
// can use expr.test for vectors
/*
* Simple recursive descent parser for numerical expressions
*
* int errcode = parse_exp( double *retval, char * expression);
*
* expr : mulexp
* | expr + mulexp
* | expr - mulexp
*
* mulexp : unary
* | mulexp + unary
* | mulexp / unary
*
* unary : primary
* | + unary
* | - unary
*
* primary : NUMBER
* ( expr )
*
* tolerates leading/trailing blank spaces, returns 0 on success
* non-zero on any errors. It is an error to have any trailing
* non-converted non-space characters in the expression.
*
*/
double expr(void);
double mulexp(void);
double unary(void);
double primary(void);
double getval();
int getnext(int eatblanks);
void ungetnext();
static int offset=0;
static int errflag=0;
static char *pc;
#if EXPR_TEST
static char buf[1024];
int main()
{ // testing stub
double val;
int retval;
for (;;) {
// printf("> ");
if (fgets(buf, 1024, stdin) == NULL) {
exit(1);
}
if (buf[strlen(buf)-1] == '\n') {
buf[strlen(buf)-1] = '\0';
}
retval=parse_exp(&val, buf);
if (retval) {
printf("%-20s: ERROR\n",buf);
} else {
printf("%-20s: %g\n",buf, val);
}
}
exit(0);
}
#endif
int getnext(int eatblanks) {
int c;
while ((((c = pc[offset++]) == ' ') && eatblanks ) && c!= '\0') {
;
}
if (c !='\0') {
return(c);
} else {
return(EOF);
}
}
void ungetnext() {
if (offset > 0) {
offset--;
} else {
errflag++;
}
}
int parse_exp(double *val, char * expression) {
pc = expression; // save calling string
errflag=0;
offset=0;
*val = expr();
// printf("called with %s, %g %d %d\n", expression, *val, errflag, strlen(pc)-offset);
if (strlen(pc)-offset) errflag++;
if (errflag) {
*val = 0.0;
}
return(errflag);
}
double expr(void)
{
double val;
int c;
val = mulexp();
for (;;) {
switch (c = getnext(1)) {
case '+':
val += mulexp();
break;
case '-':
val -= mulexp();
break;
default:
ungetnext();
return (val);
break;
}
}
}
double mulexp(void)
{
double val;
int c;
val = unary();
for (;;) {
switch (c = getnext(1)) {
case '*':
val *= unary();
break;
case '/':
val /= unary();
break;
default:
ungetnext();
return (val);
break;
}
}
}
double unary(void)
{
double val;
int c;
switch (c = getnext(1)) {
case '+':
val = unary();
break;
case '-':
val = -unary();
break;
default:
ungetnext();
val = primary();
break;
}
return (val);
}
double primary(void)
{
double val=0.0;
int c;
int debug=0;
c = getnext(1);
if ((c >= '0' && c <= '9') || c == '.') {
ungetnext();
val = getval();
} else if (c == '(') {
val = expr();
if ((c=getnext(1)) != ')') { // eat closing ')'
errflag++;
}
} else {
ungetnext();
if (debug) printf("error: primary read <%c> = %d\n", c, c);
errflag++;
}
return (val);
}
// parses floating point number (no exponential notation)
// with optional decimal point
// called with nextchar pointing at a digit or a decimal pt.
//
double getval()
{
double val = 0.0;
double power = 1.0;
int c;
int sawpoint = 0;
c = getnext(0);
for (val = 0; (c >= '0' && c <= '9') || c == '.'; c = getnext(0)) {
if (sawpoint) {
power *= 10.0;
}
if (c == '.') {
power = 1.0;
sawpoint++;
} else {
val = 10 * val + (double) (c - '0');
}
}
if (c != '\0') { ungetnext(); }
return (val / power);
}