-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply.c
436 lines (396 loc) · 14.1 KB
/
apply.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
/*
Apply a procedure to arguments.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "alisp.h"
/*
--------------------------------------
apply
Apply a procedure to arguments.
--------------------------------------
*/
atom_t* apply(atom_t* expr, atom_t* proc, atom_t* args) {
int argc = list_len(args);
atom_t** argv = args->val.list->items;
atom_t* env = active_env;
// -------------------------------------
// standard operator
if (proc->type == STD_OP) {
return apply_op(expr, proc, argc, argv);
// -------------------------------------
// function
} else if (proc->type == FUNCTION) {
if (argc != list_len(proc->val.func->params)) {
errmsg("Syntax", "wrong number of arguments", NULL, NULL);
list_print(expr, 0);
return NULL;
}
#ifdef DEBUG
printf(".... apply: Creating function environment\n");
#endif
// Create function environment
atom_t* fenv = dict(argc, proc->val.func->env);
atom_t** par = proc->val.func->params->val.list->items;
for (int i = 0; i < argc; ++i)
dict_add(fenv, par[i]->val.sym, argv[i]);
#ifdef DEBUG
char* dbg_s = atom_tostr(fenv);
char* dbg_s2 = atom_tostr(proc->val.func->body);
printf(".... apply: --> eval %s in %s\n", dbg_s2, dbg_s);
safe_free(dbg_s);
safe_free(dbg_s2);
#endif
// Evaluate body in the environment
atom_t* v = eval(proc->val.func->body, fenv, NULL);
active_env = env;
#ifdef DEBUG
dbg_s = atom_tostr(v);
printf(".... apply: %s <-- eval\n", dbg_s);
printf(".... apply: Deallocating function environment\n");
safe_free(dbg_s);
#endif
if (v)
atom_bind(v, env); // protect returned value
atom_del(fenv);
if (v)
atom_unbind(v, env);
return v;
}
char* o = atom_tostr(proc);
errmsg("Semantic", "object is not callable", o, o);
safe_free(o);
return NULL;
}
/*
--------------------------------------
apply_op
Apply a standard operator to arguments.
--------------------------------------
*/
atom_t* apply_op(atom_t* expr, atom_t* proc, int argc, atom_t** argv) {
operator_t* oper = proc->val.oper;
char optype = oper->type;
// -------------------------------------
// print, println
if (optype == PRINT || optype == PRINTLN) {
char* s;
for (int i = 0; i < argc; ++i) {
if (argv[i]->type != SYMBOL || argv[i]->val.sym[0] != '"')
s = atom_tostr(argv[i]);
else
s = strip_quotes(argv[i]->val.sym);
printf("%s", s);
safe_free(s);
}
if (optype == PRINTLN)
putchar('\n');
return &nilobj;
// -------------------------------------
// math unary
} else if (optype == MATH1 || // no mutation
optype == MATH1_M ) { // with mutation
if (argc == 0) {
errmsg("Syntax", "no arguments", NULL, NULL);
list_print(expr, 0);
return NULL;
} else if (argc > 1) {
errmsg("Syntax", "too many arguments", NULL, NULL);
list_print(expr, 0);
return NULL;
} else if (argv[0]->type != NUMBER) {
errmsg("Semantic", "wrong type of argument", NULL, NULL);
list_print(expr, 0);
return NULL;
}
if (optype == MATH1) {
return num(oper->val.math1(*argv[0]->val.num));
} else {
*argv[0]->val.num = oper->val.math1(*argv[0]->val.num);
return num(*argv[0]->val.num);
}
// -------------------------------------
// math binary, strict
} else if (optype == MATH2) {
if (argc != 2) {
errmsg("Syntax", "wrong number of arguments", NULL, NULL);
list_print(expr, 0);
return NULL;
} else if (argv[0]->type != NUMBER || argv[1]->type != NUMBER) {
errmsg("Semantic", "wrong type of argument", NULL, NULL);
list_print(expr, 0);
return NULL;
}
return num(oper->val.math2(*argv[0]->val.num, *argv[1]->val.num));
// -------------------------------------
// math binary, with reduction
} else if (optype == MATH2_R) {
if (argc == 0) {
errmsg("Syntax", "no arguments", NULL, NULL);
list_print(expr, 0);
return NULL;
}
int i;
for (i = 0; i < argc; ++i)
if (argv[i]->type != NUMBER) {
errmsg("Semantic", "wrong type of argument", NULL, NULL);
list_print(expr, 0);
return NULL;
}
// One argument: treat as (0, arg)
if (argc == 1)
return num(oper->val.math2(0, *argv[0]->val.num));
// Multiple arguments: reduce
double res = *argv[0]->val.num;
for (int i = 1; i < argc; ++i)
res = oper->val.math2(res, *argv[i]->val.num);
return num(res);
// -------------------------------------
// relation
} else if (optype == REL) {
if (argc != 2 ) {
errmsg("Syntax", "wrong number of arguments", NULL, NULL);
list_print(expr, 0);
return NULL;
} else if ((argv[0]->type != NUMBER || argv[1]->type != NUMBER) &&
(argv[0]->type != SYMBOL || argv[1]->type != SYMBOL)) {
errmsg("Semantic", "wrong type of argument", NULL, NULL);
list_print(expr, 0);
return NULL;
}
if (argv[0]->type == NUMBER)
return num(oper->val.rel(NUMBER, argv[0]->val.num, argv[1]->val.num));
else
return num(oper->val.rel(SYMBOL, argv[0]->val.sym, argv[1]->val.sym));
// -------------------------------------
// copy (copy object)
} else if (optype == COPY) {
if (argc != 1) {
errmsg("Syntax", "wrong number of arguments: (copy object)", NULL, NULL);
list_print(expr, 0);
return NULL;
}
return atom_copy(argv[0]);
// -------------------------------------
// type (type object)
} else if (optype == TYPE) {
if (argc != 1) {
errmsg("Syntax", "wrong number of arguments: (type object)", NULL, NULL);
list_print(expr, 0);
return NULL;
}
char* s = add_quotes(atom_type(argv[0]));
atom_t* v = sym(s);
safe_free(s);
return v;
// -------------------------------------
// list (list [items...])
} else if (optype == LIST_NEW) {
atom_t* v = list();
// Assemble list
for (int i = 0; i < argc; ++i)
list_add(v, argv[i]);
return v;
// -------------------------------------
// list_get (list_get list index [index2])
} else if (optype == LIST_GET) {
if (argc < 2 || argc > 3) {
errmsg("Syntax", "wrong number of arguments: (list_get list index [index2])",
NULL, NULL);
list_print(expr, 0);
return NULL;
} else if (argv[0]->type != LIST) {
errmsg("Semantic", "not a list", NULL, NULL);
list_print(expr, 0);
return NULL;
}
atom_t* obj = argv[0];
int llen = list_len(obj);
// Return single item
if (argc == 2) {
// Evaluate index
atom_t* index = argv[1];
if (index->type != NUMBER) {
errmsg("Semantic", "index is not a number", NULL, NULL);
list_print(expr, 0);
return NULL;
}
int idx = (int)*index->val.num < 0 ? llen + (int)(*index->val.num) :
(int)(*index->val.num);
if (idx < 0 || idx >= llen) {
errmsg("Semantic", "index is out of range", NULL, NULL);
list_print(expr, 0);
return NULL;
}
return obj->val.list->items[idx];
}
// Return list, that is sublist in range [index, index2)
// Evaluate index
atom_t* index = argv[1];
if (index->type != NUMBER) {
errmsg("Semantic", "index is not a number", NULL, NULL);
list_print(expr, 0);
return NULL;
}
int idx = (int)*index->val.num < 0 ? llen + (int)(*index->val.num) :
(int)(*index->val.num);
if (idx < 0)
idx = 0;
// Evaluate index2
atom_t* index2 = argv[2];
if (index2->type != NUMBER) {
errmsg("Semantic", "index2 is not a number", NULL, NULL);
list_print(expr, 0);
return NULL;
}
int idx2 = (int)*index2->val.num < 0 ? llen + (int)(*index2->val.num) :
(int)(*index2->val.num);
if (idx2 > llen)
idx2 = llen;
// Assemble new list
atom_t* v = list();
for (int i = idx; i < idx2; ++i)
list_add(v, obj->val.list->items[i]);
return v;
// -------------------------------------
// list_set (list_set list index item)
} else if (optype == LIST_SET) {
if (argc != 3) {
errmsg("Syntax", "wrong number of arguments: (list_set list index item)", NULL, NULL);
list_print(expr, 0);
return NULL;
} else if (argv[0]->type != LIST) {
errmsg("Semantic", "not a list", NULL, NULL);
list_print(expr, 0);
return NULL;
}
atom_t* obj = argv[0];
atom_t* index = argv[1];
atom_t* item = argv[2];
if (index->type != NUMBER) {
errmsg("Semantic", "index is not a number", NULL, NULL);
list_print(expr, 0);
return NULL;
}
int idx = (int)*index->val.num < 0 ? list_len(obj) + (int)(*index->val.num) :
(int)(*index->val.num);
if (idx < 0 || idx >= list_len(obj)) {
errmsg("Semantic", "index is out of range", NULL, NULL);
list_print(expr, 0);
return NULL;
}
list_rem(obj, idx);
list_ins(obj, idx, item);
return item;
// -------------------------------------
// list_len (list_len list)
} else if (optype == LIST_LEN) {
if (argc != 1) {
errmsg("Syntax", "wrong number of arguments: (list_len list)", NULL, NULL);
list_print(expr, 0);
return NULL;
} else if (argv[0]->type != LIST) {
errmsg("Semantic", "not a list", NULL, NULL);
list_print(expr, 0);
return NULL;
}
return num(list_len(argv[0]));
// -------------------------------------
// list_add (list_add list item [...])
} else if (optype == LIST_ADD) {
if (argc < 2) {
errmsg("Syntax", "too few arguments: (list_add list item [...])", NULL, NULL);
list_print(expr, 0);
return NULL;
} else if (argv[0]->type != LIST) {
errmsg("Semantic", "not a list", NULL, NULL);
list_print(expr, 0);
return NULL;
}
for (int i = 1; i < argc; ++i)
list_add(argv[0], argv[i]);
return argv[0];
// -------------------------------------
// list_ins (list_ins list index item)
} else if (optype == LIST_INS) {
if (argc != 3) {
errmsg("Syntax", "wrong number of arguments: (list_ins list index item)", NULL, NULL);
list_print(expr, 0);
return NULL;
} else if (argv[0]->type != LIST) {
errmsg("Semantic", "not a list", NULL, NULL);
list_print(expr, 0);
return NULL;
}
int llen = list_len(argv[0]);
// Evaluate index
atom_t* index = argv[1];
if (index->type != NUMBER) {
errmsg("Semantic", "index is not a number", NULL, NULL);
list_print(expr, 0);
return NULL;
}
int idx = (int)*index->val.num < 0 ? llen + (int)(*index->val.num) :
(int)(*index->val.num);
if (idx < 0)
idx = 0;
// Insert item to list
list_ins(argv[0], idx, argv[2]);
return argv[0];
// -------------------------------------
// list_rem (list_rem list index)
} else if (optype == LIST_REM) {
if (argc != 2) {
errmsg("Syntax", "wrong number of arguments: (list_rem list index)", NULL, NULL);
list_print(expr, 0);
return NULL;
} else if (argv[0]->type != LIST) {
errmsg("Semantic", "not a list", NULL, NULL);
list_print(expr, 0);
return NULL;
}
int llen = list_len(argv[0]);
// Evaluate index
atom_t* index = argv[1];
if (index->type != NUMBER) {
errmsg("Semantic", "index is not a number", NULL, NULL);
list_print(expr, 0);
return NULL;
}
int idx = (int)*index->val.num < 0 ? llen + (int)(*index->val.num) :
(int)(*index->val.num);
if (idx < 0 || idx >= llen) {
errmsg("Semantic", "index is out of range", NULL, NULL);
list_print(expr, 0);
return NULL;
}
// Delete item from list
list_rem(argv[0], idx);
return argv[0];
// -------------------------------------
// list_merge (list_merge list1 list2 [...])
} else if (optype == LIST_MERGE) {
if (argc < 2) {
errmsg("Syntax", "too few arguments: (list_merge list1 list2 [...])", NULL, NULL);
list_print(expr, 0);
return NULL;
}
int i, j;
for (i = 0; i < argc; ++i)
if (argv[i]->type != LIST) {
errmsg("Semantic", "not a list", NULL, NULL);
list_print(expr, 0);
return NULL;
}
// Merge
atom_t* v = list();
for (i = 0; i < argc; ++i)
for (j = 0; j < list_len(argv[i]); ++j)
list_add(v, argv[i]->val.list->items[j]);
return v;
}
printf("\x1b[95m" "Fatal error: apply_op: unknown operator!\n" "\x1b[0m");
list_print(expr, 0);
exit(EXIT_FAILURE);
}