-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreader.cpp
170 lines (154 loc) · 3.58 KB
/
reader.cpp
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
#include <string>
#include <iostream>
#include <assert.h>
#include <error.h>
#include "reader.h"
#include "pair.h"
#include "scanner.h"
#include "fixnum.h"
#include "special.h"
#include "symbol.h"
#include "string.h"
#include "character.h"
static
value_t read_list(void);
static
value_t read_quote_shortcut(void);
static
value_t read_quasiquote_shortcut(void);
static
value_t read_unquote_splicing_shortcut(void);
static
value_t read_unquote_shortcut(void);
value_t read(void) {
value_t result;
token_t input;
input = peek_token();
// TODO: Swap this switch for a dynamic dispatching schema later?
switch (input.type) {
case TK_BOOLEAN_TRUE:
get_token();
result = BOOLEAN_TRUE;
break;
case TK_BOOLEAN_FALSE:
get_token();
result = BOOLEAN_FALSE;
break;
case TK_INTEGER:
get_token();
result = fixnum_preprocess(input.lexeme);
break;
case TK_LPAREN:
get_token(); // consume TK_LPAREN;
// FIXME: Protect memory from collection.
result = read_list();
break;
case TK_QUOTE:
get_token(); // consume TK_QUOTE;
result = read_quote_shortcut();
break;
case TK_QUASIQUOTE:
get_token();
result = read_quasiquote_shortcut();
break;
case TK_UNQUOTE_SPLICING:
get_token();
result = read_unquote_splicing_shortcut();
break;
case TK_UNQUOTE:
get_token();
result = read_unquote_shortcut();
break;
case TK_EOF:
get_token(); // consume TK_EOF;
result = END_OF_FILE;
break;
case TK_STRING:
get_token();
result = string_preprocess(input.lexeme);
break;
case TK_SYMBOL:
get_token();
result = make_symbol(input.lexeme);
break;
case TK_UNSPECIFIED:
get_token();
result = UNSPECIFIED;
break;
case TK_CHARACTER:
get_token();
result = character_preprocess(input.lexeme);
break;
default:
error(1, 0, "Unknown token with lexeme: %s\n",
input.lexeme.c_str());
}
return result;
}
static
value_t read_list(void) {
token_t next = peek_token();
value_t result;
if (next.type == TK_RPAREN) {
get_token();
result = EMPTY_LIST;
}
else {
// Don't consume anything. read() will take care of it.
value_t x = read();
protect_value(x);
next = peek_token();
if (next.type == TK_DOT) {
get_token();
value_t xs = read();
protect_value(xs);
next = get_token();
assert(next.type == TK_RPAREN);
result = make_pair(x, xs);
unprotect_storage(2);
}
else {
value_t y = read_list();
protect_value(y);
result = make_pair(x, y);
unprotect_storage(2);
}
}
return result;
}
static
value_t read_quote_shortcut(void) {
value_t quote = make_symbol("quote");
value_t next = read();
protect_value(next);
value_t result = make_list(quote, next, 0);
unprotect_storage(1);
return result;
}
static
value_t read_quasiquote_shortcut(void) {
value_t quasiquote = make_symbol("quasiquote");
value_t next = read();
protect_value(next);
value_t result = make_list(quasiquote, next, 0);
unprotect_storage(1);
return result;
}
static
value_t read_unquote_splicing_shortcut(void) {
value_t unquote_splicing = make_symbol("unquote-splicing");
value_t next = read();
protect_value(next);
value_t result = make_list(unquote_splicing, next, 0);
unprotect_storage(1);
return result;
}
static
value_t read_unquote_shortcut(void) {
value_t unquote = make_symbol("unquote");
value_t next = read();
protect_value(next);
value_t result = make_list(unquote, next, 0);
unprotect_storage(1);
return result;
}