-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathobject.c
61 lines (51 loc) · 1.23 KB
/
object.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
#include <stdio.h>
#include <stdlib.h>
#include "cons.h"
#include "gc.h"
#include "number.h"
#include "object.h"
#include "symbol.h"
int object_new_count;
int object_free_count;
pobject object_true;
pobject symbol_parent_env;
pobject symbol_quote;
pobject object_new(char type)
{
pobject o = malloc(sizeof(struct object));
o->flags = type;
object_new_count++;
return o;
}
void object_free(pobject o)
{
if (is_symbol(o))
free(o->data.symbol.value);
free(o);
object_free_count++;
}
int object_equal(pobject o1, pobject o2)
{
if (o1 == o2)
return 1;
if (object_type(o1) == object_type(o2)) {
if (is_number(o1)) {
return number_value(o1) == number_value(o2);
} else if (is_cons(o1)) {
do {
if (!object_equal(cons_car(o1), cons_car(o2)))
return 0;
o1 = cons_cdr(o1);
o2 = cons_cdr(o2);
} while (is_cons(o1) && is_cons(o2));
return object_equal(o1, o2);
}
}
return 0;
}
pobject object_prepend_begin(pobject o)
{
static pobject begin = NIL;
if (!begin) begin = symbol_intern("begin");
return is_cons(o) ? gc_add( cons_new(begin, o) ) : o;
}