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
|
#include <string.h>
#include <stdlib.h>
#include <algds/tree_map.h>
#include <algds/basic_traits.h>
#include <bamboo_lisp/interp.h>
#include <bamboo_lisp/sexp.h>
TREE_MAP_DEF(String, SExpRef);
TREE_MAP_IMPL(String, SExpRef);
typedef String2SExpRefTreeMap DictMap;
typedef String2SExpRefTreeMapIter DictIter;
typedef String2SExpRefTreeMapNode DictNode;
LispUserdataMeta bamboo_lisp_dict_meta;
#define DICT_TYPEID "ext.core.dict"
static bool is_dict_impl(Interp *interp, SExpRef obj) {
if (VALTYPE(obj) == kUserDataSExp && strcmp(DICT_TYPEID, REF(obj)->userdata_meta->type) == 0) {
return true;
}
return false;
}
static void dict_free(void *vself) {
DictMap *map = (DictMap *)vself;
DictIter it = String2SExpRefTreeMap_min(map);
while (it != NULL) {
if (it->key) {
free((void*)it->key);
it->key = NULL;
}
it = String2SExpRefTreeMap_next(map, it);
}
String2SExpRefTreeMap_free(map);
free(map);
}
static void dict_gcmark(Interp *interp, SExpPtrVector *gcstack, void *vself) {
DictMap *map = (DictMap *)vself;
DictIter it = String2SExpRefTreeMap_min(map);
while (it != NULL) {
SExpRef val = it->value;
SExpPtr ptr = REF(val);
if (ptr && !ptr->marked) {
SExpPtrVector_push_back(gcstack, ptr);
}
it = String2SExpRefTreeMap_next(map, it);
}
}
static SExpRef lisp_is_dict(Interp* interp, SExpRef args) {
if (LENGTH(args) != 1) return new_error(interp, "dict?: wrongs args num.\n");
return new_boolean(interp, is_dict_impl(interp, CAR(args)));
}
// (make-dict)
static SExpRef lisp_make_dict(Interp* interp, SExpRef args) {
if (LENGTH(args) != 0) return new_error(interp, "make-dict: expects no args.\n");
SExpRef ret = new_sexp(interp);
REF(ret)->type = kUserDataSExp;
REF(ret)->userdata_meta = &bamboo_lisp_dict_meta;
DictMap *map = malloc(sizeof(DictMap));
if (!map) return new_error(interp, "make-dict: out of memory.\n");
String2SExpRefTreeMap_init(map);
REF(ret)->userdata = map;
return ret;
}
// (dict-set dict key value)
static SExpRef lisp_dict_set(Interp* interp, SExpRef args) {
if (LENGTH(args) != 3) return new_error(interp, "dict-set: wrong args num.\n");
SExpRef r_dict = CAR(args);
SExpRef r_key = CADR(args);
SExpRef r_val = CADDR(args);
if (!is_dict_impl(interp, r_dict)) return new_error(interp, "dict-set: first arg not a dict.\n");
if (REF(r_key)->type != kStringSExp) return new_error(interp, "dict-set: key must be a string.\n");
DictMap *map = REF(r_dict)->userdata;
const char *key_str = REF(r_key)->str;
DictIter it = String2SExpRefTreeMap_find(map, key_str);
if (it != NULL) {
it->value = r_val;
} else {
char *key_dup = strdup(key_str);
String2SExpRefTreeMap_insert(map, key_dup, r_val);
}
return NIL;
}
// (dict-get dict key) -> value or nil
static SExpRef lisp_dict_get(Interp* interp, SExpRef args) {
if (LENGTH(args) != 2) return new_error(interp, "dict-get: wrong args num.\n");
SExpRef r_dict = CAR(args);
SExpRef r_key = CADR(args);
if (!is_dict_impl(interp, r_dict)) return new_error(interp, "dict-get: first arg not a dict.\n");
if (REF(r_key)->type != kStringSExp) return new_error(interp, "dict-get: key must be a string.\n");
DictMap *map = REF(r_dict)->userdata;
const char *key_str = REF(r_key)->str;
SExpRef *val_ptr = String2SExpRefTreeMap_get(map, key_str);
if (val_ptr == NULL) {
return NIL;
}
return *val_ptr;
}
// (dict-remove dict key)
static SExpRef lisp_dict_remove(Interp* interp, SExpRef args) {
if (LENGTH(args) != 2) return new_error(interp, "dict-remove: wrong args num.\n");
SExpRef r_dict = CAR(args);
SExpRef r_key = CADR(args);
if (!is_dict_impl(interp, r_dict)) return new_error(interp, "dict-remove: first arg not a dict.\n");
if (REF(r_key)->type != kStringSExp) return new_error(interp, "dict-remove: key must be a string.\n");
DictMap *map = REF(r_dict)->userdata;
const char *key_str = REF(r_key)->str;
DictIter it = String2SExpRefTreeMap_find(map, key_str);
if (it != NULL) {
const char *owned_key = it->key;
String2SExpRefTreeMap_remove(map, it);
if (owned_key) free((void*)owned_key);
free(it);
}
return NIL;
}
int bamboo_lisp_dict_ext_init(Interp *interp) {
bamboo_lisp_dict_meta.type = DICT_TYPEID;
bamboo_lisp_dict_meta.free = &dict_free;
bamboo_lisp_dict_meta.gcmark = &dict_gcmark;
Interp_add_userfunc(interp, "dict?", &lisp_is_dict);
Interp_add_userfunc(interp, "make-dict", &lisp_make_dict);
Interp_add_userfunc(interp, "dict-get", &lisp_dict_get);
Interp_add_userfunc(interp, "dict-set", &lisp_dict_set);
Interp_add_userfunc(interp, "dict-remove", &lisp_dict_remove);
// TODO dict-keys
return 1;
}
|