-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.c
426 lines (350 loc) · 9.6 KB
/
atom.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
/*
Atomic object: basic Alisp data type.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "alisp.h"
atom_t nilobj = {{}, NIL, 1};
/*
--------------------------------------
num
Make a number.
--------------------------------------
*/
atom_t* num(double x) {
atom_t* obj = malloc(sizeof(atom_t));
obj->val.num = malloc(sizeof(double));
*obj->val.num = x;
obj->type = NUMBER;
obj->bindings = 0;
return obj;
}
/*
--------------------------------------
sym
Make a symbol.
--------------------------------------
*/
atom_t* sym(const char* s) {
atom_t* obj = malloc(sizeof(atom_t));
obj->val.sym = malloc(strlen(s) + 1);
strcpy(obj->val.sym, s);
obj->type = SYMBOL;
obj->bindings = 0;
return obj;
}
/*
--------------------------------------
func
Make a function.
--------------------------------------
*/
atom_t* func(atom_t* params, atom_t* body, atom_t* env) {
if (!(params && body && env)) {
printf("\x1b[95m" "Fatal error: func: bad argument(s)!\n" "\x1b[0m");
exit(EXIT_FAILURE);
}
// Make a function
function_t* function = malloc(sizeof(function_t));
function->bindlist = NULL;
function->lock = 0; // mutex to prevent recurrent deallocation
function->params = atom_copy(params);
function->body = atom_copy(body);
function->env = env;
// Make an object
atom_t* obj = malloc(sizeof(atom_t));
obj->val.func = function;
obj->type = FUNCTION;
obj->bindings = 0;
// Bind members
atom_bind(function->params, obj);
atom_bind(function->body, obj);
// Bind enclosing environments
for (atom_t* e = env; e && e != global_env; e = e->val.dict->parent)
atom_bind(e, obj);
return obj;
}
/*
--------------------------------------
func_del
Deallocate a function.
--------------------------------------
*/
void func_del(atom_t* obj) {
if (!(obj && obj->type == FUNCTION)) {
printf("\x1b[95m" "Fatal error: func_del: not a function!\n" "\x1b[0m");
exit(EXIT_FAILURE);
}
#ifdef DEBUG
char* dbg_s = atom_tostr(obj);
printf(".... func_del: Deallocating %s\n", dbg_s);
safe_free(dbg_s);
#endif
function_t* f = obj->val.func;
atom_t *env, *tmp;
f->lock = 1; // lock current object
// Deallocate enclosing environments
for (env = f->env; env && env != global_env;) {
atom_unbind(env, obj);
if (!env->val.dict->lock) {
tmp = env;
env = env->val.dict->parent;
atom_del(tmp);
} else
env = env->val.dict->parent;
}
// Deallocate the rest
atom_unbind(f->params, obj);
atom_del(f->params);
atom_unbind(f->body, obj);
atom_del(f->body);
list_free(f->bindlist);
safe_free(f);
safe_free(obj);
}
/*
--------------------------------------
atom_del
Deallocate an object.
--------------------------------------
*/
void atom_del(atom_t* a) {
assert_arg(a, "atom_del");
// Check if object is good for deletion
if ((a->type == NIL) || (atom_is_container(a) && a->val.list->lock) ||
(a->bindings && (!atom_is_container(a) || atom_bound_in(a, active_env))))
return;
#ifdef DEBUG
char* dbg_s = atom_tostr(a);
#endif
switch (a->type) {
case LIST:
list_del(a);
break;
case DICTIONARY:
dict_del(a);
break;
case FUNCTION:
func_del(a);
break;
default:
safe_free(a->val.num);
safe_free(a);
break;
}
#ifdef DEBUG
printf(".... atom_del: %s -- deleted\n", dbg_s);
safe_free(dbg_s);
#endif
}
/*
--------------------------------------
atom_tostr
Return a string representing an object.
--------------------------------------
*/
char* atom_tostring(atom_t* obj, int depth) {
assert_arg(obj, "atom_tostr");
char tmp[64];
char* s;
switch (obj->type) {
case NIL:
strcpy(tmp, "<Null object>");
break;
case NUMBER:
sprintf(tmp, "%g", *obj->val.num);
break;
case SYMBOL:
s = malloc(strlen(obj->val.sym) + 1);
strcpy(s, obj->val.sym);
return s;
break;
case LIST:
if (depth)
return list_tostr(obj, depth);
else
strcpy(tmp, "(...)");
break;
case DICTIONARY:
if (depth)
return dict_tostr(obj, depth);
else
strcpy(tmp, "{...}");
break;
case FUNCTION:
sprintf(tmp, "<Function at 0x%lx>", (size_t)obj);
break;
case STD_OP:
strcpy(tmp, "<Operator>");
break;
default:
sprintf(tmp, "<Object at 0x%lx>", (size_t)obj);
break;
}
s = malloc(strlen(tmp) + 1);
strcpy(s, tmp);
return s;
}
/*
--------------------------------------
atom_copy
Return a deep copy of an object.
--------------------------------------
*/
atom_t* atom_copy(atom_t* obj) {
assert_arg(obj, "atom_copy");
atom_t* objects = list();
atom_t* copies = list();
atom_t* copy = atom_cp(obj, objects, copies);
list_free(objects);
list_free(copies);
return copy;
}
/* Recursively copy object. */
atom_t* atom_cp(atom_t* obj, atom_t* objects, atom_t* copies) {
switch(obj->type) {
case NIL:
return &nilobj;
case NUMBER:
return num(*obj->val.num);
case SYMBOL:
return sym(obj->val.sym);
case LIST:
return list_cp(obj, objects, copies);
case DICTIONARY:
return dict_cp(obj, objects, copies);
case FUNCTION:
return func(obj->val.func->params, obj->val.func->body, obj->val.func->env);
case STD_OP:
errmsg("Semantic", "copying protected object", NULL, NULL);
return NULL;
default:
errmsg("Semantic", "copying unrecognized object type", NULL, NULL);
return NULL;
}
}
/*
--------------------------------------
atom_type
Return string with the type of an object.
--------------------------------------
*/
char* atom_type(atom_t* obj) {
assert_arg(obj, "atom_type");
switch(obj->type) {
case 0: return "NIL";
case 1: return "NUMBER";
case 2: return "SYMBOL";
case 3: return "LIST";
case 4: return "DICTIONARY";
case 5: return "FUNCTION";
case 6: return "STD_OP";
default: return "UNRECOGNIZED";
}
}
/*
--------------------------------------
atom_bind
Add a binding to an object.
--------------------------------------
*/
void atom_bind(atom_t* obj, atom_t* container) {
++obj->bindings;
if (atom_is_container(obj)) {
if (!obj->val.list->bindlist)
obj->val.list->bindlist = list();
list_add_h(obj->val.list->bindlist, container);
}
}
/*
--------------------------------------
atom_unbind
Remove a binding from an object.
--------------------------------------
*/
void atom_unbind(atom_t* obj, atom_t* container) {
--obj->bindings;
if (atom_is_container(obj) && obj->val.list->bindlist) {
int idx = list_idx(obj->val.list->bindlist, container);
if (idx == -1) {
printf("\x1b[95m" "Fatal error: unbind: container is not in bind list!\n" "\x1b[0m");
exit(EXIT_FAILURE);
}
list_rem_h(obj->val.list->bindlist, idx);
}
}
/*
--------------------------------------
atom_bound_in
Search if an object is reachable via a chain of enclosed environments.
--------------------------------------
*/
int atom_bound_in(atom_t* obj, atom_t* env) {
if (!obj || !atom_is_container(obj)) {
printf("\x1b[95m" "Fatal error: bound_in: bad object!\n" "\x1b[0m");
exit(EXIT_FAILURE);
} else if (!env || env->type != DICTIONARY) {
printf("\x1b[95m" "Fatal error: bound_in: bad environment!\n" "\x1b[0m");
exit(EXIT_FAILURE);
}
atom_t* owners = list();
atom_get_owners_r(obj, owners);
int bound = 0;
atom_t* e;
for (int i = 0; !bound && i < owners->val.list->len; ++i)
for (e = env; e; e = e->val.dict->parent)
if (owners->val.list->items[i] == e) {
bound = 1;
break;
}
list_free(owners);
return bound;
}
/*
--------------------------------------
atom_get_owners_r
Create a list of all objects through which a given object can be reached.
--------------------------------------
*/
void atom_get_owners_r(atom_t* obj, atom_t* ownlist) {
if (!(obj && atom_is_container(obj))) {
printf("\x1b[95m" "Fatal error: get_owners: bad object!\n" "\x1b[0m");
exit(EXIT_FAILURE);
} else if (!(ownlist && ownlist->type == LIST)) {
printf("\x1b[95m" "Fatal error: get_owners: bad list!\n" "\x1b[0m");
exit(EXIT_FAILURE);
}
if (!obj->val.list->bindlist)
return;
list_t* bl = obj->val.list->bindlist->val.list;
atom_t* item;
for (int i = 0; i < bl->len; ++i) {
item = bl->items[i];
if (list_idx(ownlist, item) == -1) {
list_add_h(ownlist, item); // add item itself
atom_get_owners_r(item, ownlist); // add item owners
}
}
}
/*
--------------------------------------
atom_is_container
Check if an object is of container type.
--------------------------------------
*/
int atom_is_container(atom_t* obj) {
return obj->type == LIST || obj->type == DICTIONARY || obj->type == FUNCTION;
}
/*
--------------------------------------
assert_arg
Assert argument is not NULL.
--------------------------------------
*/
void assert_arg(atom_t* obj, const char* fname) {
if (!obj) {
printf("\x1b[95m" "Fatal error: %s: bad argument!\n" "\x1b[0m", fname);
exit(EXIT_FAILURE);
}
}