forked from jrincayc/ucblogo-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paren.c
480 lines (430 loc) · 13.9 KB
/
paren.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
/*
* paren.c logo parenthesizing module dko
*
* Copyright (C) 1993 by the Regents of the University of California
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#define WANT_EVAL_REGS 1
#include "logo.h"
#include "globals.h"
#include <ctype.h>
#ifdef OBJECTS
#undef procnode__caseobj
#define procnode__caseobj procValue
#endif
NODE *the_generation;
void check_library(NODE *first) {
if (procnode__caseobj(first) == UNDEFINED && NOT_THROWING &&
first != Null_Word)
silent_load(first, NULL); /* try ./<first>.lg */
if (procnode__caseobj(first) == UNDEFINED && NOT_THROWING &&
first != Null_Word){
silent_load(first, logolib); /* try <logolib>/<first> */
}
}
/* Set the line pointer for a tree.
*/
void make_line(NODE *tree, NODE *line) {
setobject(tree, line);
settype(tree, LINE);
}
void untreeify(NODE *node) {
if (node==NIL) return;
settreepair__tree(node, NIL);
settype(node, CONS);
}
void untreeify_line(NODE *line) {
if (line != NIL && is_list(line)) {
untreeify_line(car(line));
untreeify_line(cdr(line));
untreeify(line);
}
}
void untreeify_body(NODE *body) {
NODE *body_ptr;
for (body_ptr = body; body_ptr != NIL; body_ptr = cdr(body_ptr)) {
untreeify_line(car(body_ptr));
}
untreeify(body);
}
void untreeify_proc(NODE *tproc) {
untreeify_body(bodylist__procnode(tproc));
}
/* Treeify a body by appending the trees of the lines.
*/
void make_tree_from_body(NODE *body) {
NODE *body_ptr, *end_ptr = NIL, *tree = NIL;
if (body == NIL ||
(is_tree(body) && generation__tree(body) == the_generation))
return;
if (is_tree(body)) untreeify_body(body);
for (body_ptr = body; body_ptr != NIL; body_ptr = cdr(body_ptr)) {
tree = car(body_ptr);
if (tree == NIL) continue; /* skip blank line */
this_line = tree;
make_tree(tree);
if (is_tree(tree)) {
tree = tree__tree(tree);
make_line(tree, car(body_ptr));
if (end_ptr == NIL)
settree__tree(body, tree);
else
setcdr(end_ptr, tree);
if (generation__tree(car(body_ptr)) == UNBOUND)
setgeneration__tree(body, UNBOUND);
/* untreeify(car(body_ptr)); */
while (cdr(tree) != NIL)
tree = cdr(tree);
end_ptr = tree;
} else { /* error while treeifying */
untreeify(body);
return;
}
}
settype(body, TREE);
}
NODE *tree_dk_how;
/* Treeify a list of tokens (runparsed or not).
*/
void make_tree(NODE *list) {
NODE *tree = NIL;
NODE *paren_line(NODE *);
if (list == NIL ||
(is_tree(list) && generation__tree(list) == the_generation))
return;
if (!runparsed(list)) make_runparse(list);
tree_dk_how = NIL;
tree = paren_line(parsed__runparse(list));
if (tree != NIL && tree != UNBOUND) {
settype(list, TREE);
settree__tree(list, tree);
if (tree_dk_how != NIL || stopping_flag==THROWING)
setgeneration__tree(list, UNBOUND);
}
}
NODE *gather_args(NODE *, NODE *, NODE **, BOOLEAN, NODE **);
NODE *paren_infix(NODE *, NODE **, int, BOOLEAN);
NODE *gather_some_args(int, int, NODE **, BOOLEAN, NODE **);
/* Fully parenthesize a complete line, i.e. transform it from a flat list
* to a tree.
*/
NODE *paren_line(NODE *line) {
NODE *retval = NIL;
NODE *paren_expr(NODE **expr, BOOLEAN inparen);
NODE *paren_infix(NODE *left, NODE **rest, int old_pri, BOOLEAN inparen);
if (line == NIL) return line;
retval = paren_expr(&line, FALSE);
if (NOT_THROWING && retval != UNBOUND) {
retval = paren_infix(retval, &line, -1, FALSE);
retval = cons(retval, paren_line(line));
}
return retval;
}
/* See if an unknown procedure name starts with SET */
int is_setter(NODE *name) {
NODE *string = cnv_node_to_strnode(name);
if (getstrlen(string) < 4) return FALSE;
// check to see if name begins with "set"
return !low_strncmp(getstrptr(string), "set", 3);
}
#ifdef OBJECTS
/* See if procedure name starts with Usual
this is used in OOP to explicitly call a parents
methods, Usual.Foo */
int is_usual(NODE *name) {
NODE *string = cnv_node_to_strnode(name);
// first rule out all words shorter than 8 chars
if (getstrlen(string) < 8) return FALSE;
// check to see if name begins with "usual."
return !low_strncmp(getstrptr(string), "usual.", 6);
}
#endif // OBJECTS
/* Check for FD100, give warning, insert space
FD100 is assumed to be a typo, that is, we
think the user meant FD 100, not FD100
*/
NODE *missing_alphabetic, *missing_numeric;
int missing_space(NODE *name) {
NODE *str = strnode__caseobj(name);
char *s = getstrptr(str);
FIXNUM len = getstrlen(str);
char *t;
char ch;
char alpha[100], numer[100];
int i;
NODE *first;
t = s+len-1;
ch = *t;
if (!isdigit(ch)) return 0;
i = 1;
while ((t>s) && (isdigit(*--t))) i++;
if (t<=s) return 0;
strncpy(numer,t+1,i);
numer[i] = '\0';
strncpy(alpha,s,len-i);
alpha[len-i] = '\0';
first = intern(make_strnode(alpha, 0, len-i, STRING, strnzcpy));
check_library(first);
if (procnode__caseobj(first) == UNDEFINED) return 0;
missing_alphabetic = first;
missing_numeric = make_intnode(atoi(numer));
err_logo(MISSING_SPACE,
cons_list(0, cons_list(0, missing_alphabetic, missing_numeric,
END_OF_LIST),
name, END_OF_LIST));
return 1;
}
/* Parenthesize an expression. Set expr to the node after the first full
* expression.
*/
NODE *paren_expr(NODE **expr, BOOLEAN inparen) {
NODE *first = NIL, *tree = NIL, *pproc, *retval;
NODE **ifnode = (NODE **)NIL;
#ifdef OBJECT
NODE *old_usual_parent = usual_parent;
#endif
// no expression given
if (*expr == NIL) {
// check if we are in a paren, if so error
if (inparen) err_logo(PAREN_MISMATCH, NIL);
return *expr;
}
// get the first element in the expression,
// and pop if off the stack
first = car(*expr);
pop(*expr);
if (nodetype(first) == CASEOBJ && !numberp(first)) {
if (first == Left_Paren) {
tree = paren_expr(expr, TRUE);
tree = paren_infix(tree, expr, -1, TRUE);
if (*expr == NIL)
err_logo(PAREN_MISMATCH, NIL);
else if (car(*expr) != Right_Paren) { /* throw the rest away */
int parens;
for (parens = 0; *expr; pop(*expr)) {
if (car(*expr) == Left_Paren)
parens++;
else if (car(*expr) == Right_Paren)
if (parens-- == 0) {
pop(*expr);
break;
}
}
first = tree /* car(tree) */ ; /* 6.0 */
tree = cons(Not_Enough_Node, NIL); /* tell eval */
tree_dk_how=UNBOUND;
if (is_list(first))
first = car(first);
if (nodetype(first) != CASEOBJ ||
procnode__caseobj(first) == UNDEFINED)
err_logo(DK_HOW, first);
else
err_logo(TOO_MUCH, first);
}
else
pop(*expr);
retval = tree;
} else if (first == Right_Paren) {
err_logo(UNEXPECTED_PAREN, NIL);
if (inparen) push(first, *expr);
retval = NIL;
} else if (first == Minus_Sign) {
push(Minus_Tight, *expr);
retval = paren_infix(make_intnode((FIXNUM) 0), expr, -1, inparen);
} else { /* it must be a procedure */
check_library(first);
pproc = procnode__caseobj(first);
if (pproc == UNDEFINED) {
if (missing_space(first)) {
push(missing_numeric, *expr);
first = missing_alphabetic;
pproc = procnode__caseobj(first);
retval = gather_args(first, pproc, expr, inparen, ifnode);
if (retval != UNBOUND) {
retval = cons(first, retval);
}
} else if (is_setter(first)) {
retval = gather_some_args(0, 1, expr, inparen, ifnode);
if (retval != UNBOUND) {
retval = cons(first, retval);
}
#ifdef OBJECTS
} else if (is_usual(first)) {
#define MINARGS(x) (CONS == nodetype(x) ? \
getint(minargs__procnode(proc)) : \
getprimmin(proc))
#define MAXARGS(x) (CONS == nodetype(proc) ? \
getint(maxargs__procnode(proc)) : \
getprimmax(proc))
// the proc starts with "usual.", so chop it off and
// try to find the proc name after the dot
NODE *name = cnv_node_to_strnode(first);
NODE *parent = (NODE*)0;
if (usual_parent == NIL)
usual_parent = current_object;
#ifdef DEB_USUAL_PARENT
dbUsual("paren BEFORE");
#endif
proc = getInheritedProcWithParentList(intern(
make_strnode(getstrptr(name) + 6,
getstrhead(name),
getstrlen(name) - 6,
nodetype(name),
strnzcpy)),
usual_parent,
&parent);
if (proc != UNDEFINED) {
usual_parent = parent;
#ifdef DEB_USUAL_PARENT
dbUsual("paren AFTER");
#endif
}
usual_parent = old_usual_parent;
if (proc == UNDEFINED) {
err_logo(DK_HOW, name);
return cons(first, NIL);
} else {
retval = gather_some_args(MINARGS(proc), MAXARGS(proc),
expr,
inparen,
ifnode);
usual_parent = old_usual_parent;
return cons(first, retval);
}
#endif /* OBJECTS */
} else {
retval = cons(first, NIL);
tree_dk_how = first;
}
} else if (nodetype(pproc) == INFIX && NOT_THROWING) {
err_logo(NOT_ENOUGH, first);
retval = cons(first, NIL);
} else {
/* Kludge follows to turn IF to IFELSE sometimes. */
if (isName(first, Name_if)) {
ifnode = &first;
}
retval = gather_args(first, pproc, expr, inparen, ifnode);
if (retval != UNBOUND) {
retval = cons(first, retval);
}
}
}
} else if (is_list(first)) { /* quoted list */
retval = make_quote(first);
} else {
return first;
}
return retval;
}
/* Gather the correct number of arguments to proc into a list. Set args to
* immediately after the last arg.
*/
NODE *gather_args(NODE *newfun, NODE *pproc, NODE **args, BOOLEAN inparen,
NODE **ifnode) {
int min, max;
NODE /* *oldfun, */ *result;
if (nodetype(pproc) == CONS) {
min = (inparen ? getint(minargs__procnode(pproc))
: getint(dfltargs__procnode(pproc)));
max = (inparen ? getint(maxargs__procnode(pproc))
: getint(dfltargs__procnode(pproc)));
} else { /* primitive */
min = (inparen ? getprimmin(pproc) : getprimdflt(pproc));
if (min < 0) { /* special form */
result = *args;
*args = NIL;
return result;
/*
oldfun = fun;
fun = newfun;
result = (*getprimfun(pproc))(*args);
fun = oldfun;
return result;
*/
}
/* Kludge follows to allow EDIT and CO without input without paren */
if (getprimmin(pproc) == OK_NO_ARG) min = 0;
max = (inparen ? getprimmax(pproc) : getprimdflt(pproc));
}
return gather_some_args(min, max, args, inparen, ifnode);
}
/* Make a list of the next n expressions, where n is between min and max.
* Set args to immediately after the last expression.
*/
NODE *gather_some_args(int min, int max, NODE **args, BOOLEAN inparen,
NODE **ifnode) {
NODE *paren_infix(NODE *left, NODE **rest, int old_pri, BOOLEAN inparen);
if (*args == NIL || car(*args) == Right_Paren ||
(nodetype(car(*args)) == CASEOBJ &&
nodetype(procnode__caseobj(car(*args))) == INFIX)) {
if (min > 0) return cons(Not_Enough_Node, NIL);
} else if (max == 0) {
if (ifnode != (NODE **)NIL && is_list(car(*args))) {
/* if -> ifelse kludge */
NODE *retval;
err_logo(IF_WARNING, NIL);
*ifnode = theName(Name_ifelse);
retval = paren_expr(args, FALSE);
retval = paren_infix(retval, args, -1, inparen);
return cons(retval, gather_some_args(min, max, args,
inparen, (NODE **)NIL));
}
} else {
if (max < 0) max = 0; /* negative max means unlimited */
if (car(*args) != Right_Paren &&
(nodetype(car(*args)) != CASEOBJ ||
nodetype(procnode__caseobj(car(*args))) != INFIX)) {
NODE *retval = paren_expr(args, FALSE);
retval = paren_infix(retval, args, -1, inparen);
return cons(retval, gather_some_args(min - 1, max - 1, args,
inparen, ifnode));
}
}
return NIL;
}
/* Calculate the priority of a procedure.
*/
int priority(NODE *proc_obj) {
NODE *pproc;
if (proc_obj == Minus_Tight) return PREFIX_PRIORITY+4;
if (nodetype(proc_obj) != CASEOBJ ||
(pproc = procnode__caseobj(proc_obj)) == UNDEFINED ||
nodetype(pproc) != INFIX)
return 0;
return getprimpri(pproc);
}
/* Parenthesize an infix expression. left_arg is the expression on the left
* (already parenthesized), and rest is a pointer to the list starting with the
* infix procedure, if it's there. Set rest to after the right end of the
* infix expression.
*/
NODE *paren_infix(NODE *left_arg, NODE **rest, int old_pri, BOOLEAN inparen) {
NODE *infix_proc, *retval;
int pri;
// check to make sure we really got an infix expression
if (*rest == NIL || !(pri = priority(infix_proc = car(*rest)))
|| pri <= old_pri)
return left_arg;
pop(*rest);
retval = paren_expr(rest, inparen);
retval = paren_infix(retval, rest, pri, inparen);
retval = cons_list(0,infix_proc, left_arg, retval, END_OF_LIST);
return paren_infix(retval, rest, old_pri, inparen);
}