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
|
#include <errno.h>
#include <assert.h>
#include <stdbool.h>
#include <string.h>
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
#include <lyn/lyn.h>
#include <lyn/ast.h>
#include <lyn/parser.h>
#include <lyn/debug.h>
int eval_group(struct lyn *lyn, struct lyn_value value)
{
fprintf(lyn->output, "(begin");
lyn->depth++;
foreach_vec(gi, value.args) {
fprintf(lyn->output, "\n%*s(", 2 * lyn->depth, " ");
struct lyn_value arg = lyn_at(value.args, gi);
if (lyn_eval(lyn, arg))
return -1;
fprintf(lyn->output, ")");
}
fprintf(lyn->output, "\n%*s)", 2 * lyn->depth, " ");
lyn->depth--;
return 0;
}
int eval_apply(struct lyn *lyn, struct lyn_value value)
{
fprintf(lyn->output, "(");
foreach_vec(ai, value.args) {
struct lyn_value arg = lyn_at(value.args, ai);
if (lyn_eval(lyn, arg))
return -1;
}
fprintf(lyn->output, ")");
return 0;
}
int eval_cmd(struct lyn *lyn, struct lyn_value value)
{
foreach_vec(ci, value.args) {
struct lyn_value arg = lyn_at(value.args, ci);
if (lyn_eval(lyn, arg))
return -1;
/* don't print a space after the last argument */
if (ci < vec_len(&value.args) - 1)
fprintf(lyn->output, " ");
}
return 0;
}
int eval_str(struct lyn *lyn, struct lyn_value value)
{
fprintf(lyn->output, "%s", value.s);
return 0;
}
int eval_int(struct lyn *lyn, struct lyn_value value)
{
fprintf(lyn->output, "%lld", value.i);
return 0;
}
int eval_float(struct lyn *lyn, struct lyn_value value)
{
fprintf(lyn->output, "%f", value.d);
return 0;
}
int eval_id(struct lyn *lyn, struct lyn_value value)
{
fprintf(lyn->output, "%s", value.s);
return 0;
}
int lyn_eval(struct lyn *lyn, struct lyn_value value)
{
switch (value.kind) {
case LYN_GROUP: return eval_group(lyn, value);
case LYN_APPLY: return eval_apply(lyn, value);
case LYN_STR: return eval_str(lyn, value);
case LYN_CMD: return eval_cmd(lyn, value);
case LYN_INT: return eval_int(lyn, value);
case LYN_ID: return eval_id(lyn, value);
default: error("unhandled case during 'eval'"); break;
}
return -1;
}
int lyn_eval_str(struct lyn *lyn, const char *name, const char *str)
{
struct parser *p = create_parser();
if (!p)
return -1;
parse(p, name, str);
struct lyn_value ast = p->tree;
bool failed = p->failed;
destroy_parser(p);
if (failed)
return -1;
ast_dump(0, ast);
lyn->output = fopen("/tmp/output.scm", "w");
if (!lyn->output) {
error("failed opening output file\n");
return -1;
}
fprintf(lyn->output, "(define-syntax-rule (expand expr) expr)\n");
fprintf(lyn->output, "(define (get expr) expr)\n");
int ret = 0;
foreach_vec(ii, ast.args) {
fprintf(lyn->output, "(");
struct lyn_value v = lyn_at(ast.args, ii);
if ((ret = lyn_eval(lyn, v)))
break;
fprintf(lyn->output, ")\n");
}
fclose(lyn->output);
if (ret)
return ret;
return system("guile /tmp/output.scm");
}
/**
* Read whole file into a buffer and return pointer to buffer.
* Possibly kind of silly to have both \p file and \p f.
* Apparently there's no standardized way to get the file name of a
* file pointer.
*
* @param file Name of file to read.
* @param f File pointer.
* @return Pointer to buffer with file contents.
*/
static char *read_file(const char *file, FILE *f)
{
fseek(f, 0, SEEK_END);
/** @todo check how well standardized this actually is */
long s = ftell(f);
if (s == LONG_MAX) {
error("%s might be a directory", file);
return NULL;
}
fseek(f, 0, SEEK_SET);
char *buf = malloc((size_t)(s + 1));
if (!buf)
return NULL;
fread(buf, (size_t)(s + 1), 1, f);
/* remember terminating null */
buf[s] = 0;
return buf;
}
int lyn_eval_file(struct lyn *lyn, const char *fname)
{
FILE *f = fopen(fname, "rb");
if (!f) {
error("failed opening %s: %s\n", fname, strerror(errno));
return -1;
}
char *buf = read_file(fname, f);
fclose(f);
if (!buf)
return -1;
int ret = lyn_eval_str(lyn, fname, buf);
free(buf);
return ret;
}
struct lyn lyn_create()
{
return (struct lyn){};
}
void lyn_destroy(struct lyn *lyn)
{
}
|