-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.cpp
executable file
·432 lines (313 loc) · 10.8 KB
/
functions.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
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
427
428
429
430
431
432
/**
* \file functions.cpp
*
* Implementation of function.hpp
*
*/
#include "functions.hpp"
#include "cons.hpp"
#include "eval.hpp"
#include "parse.hpp"
#include "DefinitionManager.hpp"
#include <cmath>
#include <ctime>
#include <cstring>
////////////////////////////////////////////////////////////////////////////////
/// Helpers
Cell* single_argument_eval(const SymbolCell* func, Cell* args) throw (runtime_error) {
if (ConsCell::get_list_size(args) != 1) {
string msg = "NoOfArguments: "
+ string(func->get_symbol()) // provides function name for
+ " accepts exactly 1 argument"; // backtracking bugs
throw runtime_error(msg);
}
return eval(car(args));
}
Cell* bool_2_cell(bool b) {
if(b) {
return make_int(1);
}
return make_int(0);
}
////////////////////////////////////////////////////////////////////////////////
/// Actual implementations of *_func functions
////////////////////////////////////////////////////////////////////////////////
Cell* ceiling_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
int res = (int) ceil(get_double(argument_cell));
return make_int(res);
}
Cell* floor_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
int res = (int) floor(get_double(argument_cell));
return make_int(res);
}
////////////////////////////////////////////////////////////////////////////////
Cell* cons_func(const FunctionCell* func, Cell* args) throw (runtime_error) {
if (ConsCell::get_list_size(args) != 2) {
throw runtime_error("NoOfArguments: cons only accepts exactly 2 arguments");
}
// For readability create tmp vars
Cell* my_car = eval(car(args));
Cell* my_cdr = eval(car(cdr(args)));
/*if (!listp(my_cdr)) {
delete my_car;
delete my_cdr;
throw runtime_error("IncorrectList: Are you trying to use dotted pairs?");
}*/
return cons(my_car, my_cdr);
}
////////////////////////////////////////////////////////////////////////////////
Cell* car_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
return car(argument_cell);
}
Cell* cdr_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
return cdr(argument_cell);
}
////////////////////////////////////////////////////////////////////////////////
Cell* quote_func(const FunctionCell* func, Cell* args) throw (runtime_error) {
if (ConsCell::get_list_size(args) != 1) {
throw runtime_error("NoOfArgumentError: quote only takes 1 argument");
}
return car(args);
}
////////////////////////////////////////////////////////////////////////////////
/// \todo try to turn this into templates!
Cell* intp_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
return bool_2_cell(intp(argument_cell));
}
Cell* doublep_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
return bool_2_cell(doublep(argument_cell));
}
Cell* symbolp_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
return bool_2_cell(symbolp(argument_cell));
}
Cell* nullp_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
return bool_2_cell(nullp(argument_cell));
}
Cell* listp_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
return bool_2_cell(listp(argument_cell));
}
////////////////////////////////////////////////////////////////////////////////
Cell* if_func(const FunctionCell* func, Cell* args) {
int num_args = ConsCell::get_list_size(args);
if (num_args < 2 || num_args > 3) {
throw runtime_error("NoOfArguments: if requires at least 2 and not more than 3 arguments");
}
Cell* curr_cell = eval(car(args));
// if, then
if (symbolp(curr_cell) || ( intp(curr_cell) && get_int(curr_cell) )
|| ( doublep(curr_cell) && get_double(curr_cell) ) )
return eval( car(cdr(args)) );
// else, no then
if (cdr(cdr(args)) == nil) {
return nil; // unspecified
}
// else
return eval( car(cdr(cdr(args))) );
}
////////////////////////////////////////////////////////////////////////////////
Cell* define_func(const FunctionCell* func, Cell* args) {
if (ConsCell::get_list_size(args) != 2) {
throw runtime_error("NoOfArguments: define only accepts exactly 2 arguments");
}
Cell* symbol = car(args);
Cell* def = eval(car(cdr(args)));
SymbolCell::add_definition(symbol->get_symbol(), def);
return nil; /// always return nil according to specs
}
////////////////////////////////////////////////////////////////////////////////
/**
* \brief Weird, but is equivalent to a "not equal"
*
* \todo verfiy!
*/
bool string_compare(Cell* const args) {
Cell* pos = args;
string s1;
string s2;
bool is_true = true;
while (!nullp(cdr(pos))) {
s1 = eval(car(pos))->get_symbol();
s2 = eval(car(cdr(pos)))->get_symbol();
if (s1.compare(s2) == 0) {
/// can return false here, but need to check the syntax of following args
is_true = false;
}
pos = cdr(pos);
}
return is_true;
}
bool numeral_compare(Cell* const args) {
Cell* pos = args;
double num1;
double num2;
bool is_true = true;
while (!nullp(cdr(pos))) {
num1 = eval(car(pos))->get_numeral();
num2 = eval(car(cdr(pos)))->get_numeral();
if (! (num1 < num2) ) {
/// can return false here, but need to check the syntax of following args
is_true = false;
}
pos = cdr(pos);
}
return is_true;
}
Cell* less_than_func(const FunctionCell* func, Cell* args) {
int num_args = ConsCell::get_list_size(args);
if (num_args < 2) {
return make_int(1);
}
bool is_true;
if (symbolp(eval(car(args)))) {
is_true = string_compare(args);
}
else {
is_true = numeral_compare(args); // automatically throws error if
// type is wrong
}
return bool_2_cell(is_true);
}
////////////////////////////////////////////////////////////////////////////////
Cell* not_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
if (argument_cell->is_int() || argument_cell->is_double()) {
if (argument_cell->get_numeral() == 0) {
return make_int(1);
}
}
return make_int(0);
}
////////////////////////////////////////////////////////////////////////////////
Cell* print_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
cout << *argument_cell;
cout << endl;
return nil; /// always return nil according to specs
}
////////////////////////////////////////////////////////////////////////////////
Cell* eval_func(const FunctionCell* func, Cell* args) {
return eval(single_argument_eval(func, args));
}
////////////////////////////////////////////////////////////////////////////////
Cell* lambda_func(const FunctionCell* func, Cell* args) {
if (ConsCell::get_list_size(args) < 2) {
throw runtime_error("lambda need at least 2 arguments");
}
Cell* _args = car(args);
Cell* _body = cdr(args);
/// checks if all args are symbols for both cases: fixed and
/// variable numbers of arguments
if (listp(_args)) {
Cell* pos = _args;
while (!nullp(pos)) {
if (!symbolp(car(pos))) {
throw runtime_error("arguments have to be symbols!");
}
pos = cdr(pos);
}
}
else if (!symbolp(_args)) {
throw runtime_error("arguments have to be symbols!");
}
return lambda(_args, _body);
}
////////////////////////////////////////////////////////////////////////////////
Cell* apply_func(const FunctionCell* func, Cell* args) {
if (nullp(args) || nullp(cdr(args))) {
throw runtime_error("Number of arguments mismatch");
}
Cell* proc = eval(car(args));
Cell* arguments = eval(car(cdr(args)));
return proc->apply(arguments);
}
////////////////////////////////////////////////////////////////////////////////
Cell* let_func(const FunctionCell* func, Cell* args) {
if (ConsCell::get_list_size(args) != 2) {
throw runtime_error("let need exactly 2 arguments");
}
DefinitionManager::Instance()->add_stackframe();
try {
Cell* pos = car(args);
Cell* func = car(cdr(args));
/// create local variables
while (!nullp (pos)) {
string key = car(car(pos))->get_symbol();
Cell* c = eval(car(cdr(car(pos))));
DefinitionManager::Instance()->add_definition(key, c);
pos = cdr(pos);
}
Cell* res = eval(func);
DefinitionManager::Instance()->pop_stackframe();
return res;
}
catch (runtime_error) {
/// makes sure stackframe gets pop in case of an error
DefinitionManager::Instance()->pop_stackframe();
throw;
}
}
////////////////////////////////////////////////////////////////////////////////
Cell* rand_func(const FunctionCell* func, Cell* args) {
if (ConsCell::get_list_size(args) != 2) {
throw runtime_error("let need exactly 2 arguments");
}
int num1 = get_int(eval(car(args)));
int num2 = get_int(eval(car(cdr(args))));
int res = rand() % abs(num1 - num2);
if (num1 < num2) {
res += num1;
}
else {
res += num2;
}
return make_int(res);
}
////////////////////////////////////////////////////////////////////////////////
Cell* str_func(const FunctionCell* func, Cell* args) {
if (!nullp(cdr(args))) {
throw runtime_error("str expects exactly 1 argument");
}
Cell* argument_cell = eval(car(args));
stringstream ss;
argument_cell->print(ss);
return make_symbol(ss.str().c_str());
}
Cell* substr_func(const FunctionCell* func, Cell* args) {
if (ConsCell::get_list_size(args) != 3) {
throw runtime_error("substr needs exactly 3 arguments");
}
Cell* symbolCell = eval(car(args));
Cell* startCell = eval(car(cdr(args)));
Cell* endCell = eval(car(cdr(cdr(args))));
int start = get_int(startCell);
int end = get_int(endCell);
string sub = get_symbol(symbolCell).substr(start, end);
return make_symbol(sub.c_str());
}
Cell* appstr_func(const FunctionCell* func, Cell* args) {
if (ConsCell::get_list_size(args) != 2) {
throw runtime_error("substr needs exactly 2 arguments");
}
string s1 = get_symbol(eval(car(args)));
string s2 = get_symbol(eval(car(cdr(args))));
return make_symbol(s1.append(s2).c_str());
}
Cell* parse_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
Cell* root = parse(get_symbol(argument_cell));
return root;
}
Cell* parse_eval_func(const FunctionCell* func, Cell* args) {
Cell* argument_cell = single_argument_eval(func, args);
Cell* root = parse(get_symbol(argument_cell));
return eval(root);
}