#include "pebblisp.h" #include "tokens.h" #include #include #include #ifndef STANDALONE #define printf(...) copySlice(NULL, NULL) #endif void copySlice(char * dest, struct Slice *src) { if(!dest || !src) return; strncpy(dest, src->text, src->length); dest[(int)src->length] = '\0'; } void debugSlice(struct Slice *s) { printf("Debug Slice\n text:'"); for(int i = 0; i < s->length; i++) { printf("%c", s->text[i]); } printf("'\n"); printf(" length: %d\n", s->length); } Object fetchFromEnvironment(const char *name, struct Environment *env) { if(!env) return errorObject(NULL_ENV); printf("Fetching '%s' from env\n", name); printEnv(env); int i = 0; const char *next = env->strings[i]; while(next != NULL) { if(strcmp(name, next) == 0) { return env->objects[i]; } next = env->strings[++i]; } printf("Trying outer\n"); if(env->outer) { return fetchFromEnvironment(name, env->outer); } printf("DID NOT FIND SYMBOL\n"); Object o; o.type = TYPE_ERROR; return o; } Result parse(struct Slice *slices) { struct Slice *token = slices; struct Slice *rest; if(token->text != NULL) { rest = &slices[1]; } else { printf("Assigning null...\n"); return R(errorObject(NULL_PARSE), NULL); } if(token->text[0] == '(') { // todo check for null rest return readSeq(rest); } else { // todo error on closed paren return R(parseAtom(token), rest); } } Result readSeq(struct Slice *tokens) { Object res = listObject(); for(;;) { struct Slice *next = &tokens[0]; struct Slice *rest = next->text? &next[1] : NULL; if(next->text[0] == ')') { return R(res, rest); } Result r = parse(tokens); addToList(&res, r.obj); tokens = r.slices; } } Object parseAtom(struct Slice *s) { Object o; o.forward = NULL; if(isDigit(s->text[0])) { o.type = TYPE_NUMBER; o.number = 0; for(int i = 0; i < s->length; i++) { o.number *= 10; o.number += s->text[i] - '0'; } } else if (s->text[0] == 'T' && s->text[1] == '\0') { o.type = TYPE_BOOL; o.number = 1; } else if (s->text[0] == 'F' && s->text[1] == '\0') { o.type = TYPE_BOOL; o.number = 0; } else { o.type = TYPE_SYMBOL; copySlice(o.name, s); } return o; } Object evalDefArgs(const Object *arg_forms, struct Environment *env) { const Object *first_form = &arg_forms[0]; const char *name = first_form->name; Object second_eval = eval(first_form->forward, env); addToEnv(env, name, second_eval); return *first_form; } Object evalIfArgs(const Object *arg_forms, struct Environment *env) { return eval(arg_forms, env).number? eval(arg_forms->forward, env) : eval(arg_forms->forward->forward, env); } Object evalLambdaArgs(const Object *arg_forms) { const Object *params_expr = &arg_forms[0]; const Object *body_expr = &arg_forms[1]; Object o = lambdaObject(); o.lambda->params = listObject(); copyList(&o.lambda->params, params_expr); o.lambda->body = listObject(); copyList(&o.lambda->body, arg_forms->forward); return o; } void parseListOfSymbolStrings(const Object *form, const char **symbolStrings, int len) { if(!form || form->type != TYPE_LIST) return; for(int i = 0; i < len; i++) symbolStrings[i] = itemAt(form, i)->name; } struct Environment envForLambda(const Object *params, const Object *arg_forms, struct Environment *outer) { printf("\n#####################\nenvForLambda()\n"); printObj(arg_forms); struct Environment env; env.outer = outer; env.strings = NULL; env.objects = NULL; int length = listLength(params); if(length == 0) return env; env.strings = calloc(sizeof(char*), length); env.objects = malloc(sizeof(Object) * length); Object vs[length]; eval_forms(vs, arg_forms, outer); for(int i = 0; i < length; i++) { const char *n = itemAt(params, i)->name; addToEnv(&env, n, eval(&arg_forms[i], outer)); // May not need eval? } // Something is segfaulting, anyway env.strings[length] = NULL; printf("envForLambda env IT BROKE HERE()\n"); printf("envForLambda length=%d\n", length); printEnv(&env); printf("END envForLambda()\n\n"); return env; } Object evalBuiltIns(const Object *first, const Object *rest, struct Environment *env) { if(strcmp(first->name, "def") == 0) { return evalDefArgs(rest, env); }else if(strcmp(first->name, "if") == 0) { return evalIfArgs(rest, env); }else if(strcmp(first->name, "fn") == 0) { // printf("EVALBUILTINS first:\n"); // printObj(first); // printf("\nEVALBUILTINS rest:\n"); // printObj(rest); return evalLambdaArgs(rest); } return errorObject(BUILT_IN_NOT_FOUND); } void eval_forms(Object *destList, const Object *src, struct Environment *env) { int length = listLength(src) - 1; // Not counting first_form for(int i = 0; i < length; i++) { // Evaluates all in list destList[i] = eval(itemAt(src, i + 1), env); // Skip the first } } Object eval(const Object *obj, struct Environment *env) { printf("eval():\n"); printObj(obj); switch(obj->type) { case TYPE_NUMBER: case TYPE_BOOL: return *obj; case TYPE_SYMBOL: return fetchFromEnvironment(obj->name, env); case TYPE_LIST: { if(listLength(obj) == 0) { printf("empty list\n"); return *obj; } if(listLength(obj) == 1) return eval(obj->list, env); Object *first_form = obj->list; { // Try to eval built-ins Object built_in = evalBuiltIns(first_form, first_form->forward, env); if(built_in.type != TYPE_ERROR) return built_in; } Object first_eval = eval(first_form, env); if(first_eval.type == TYPE_FUNC) { int length = listLength(obj) - 1; // Not counting first_form Object rest[length]; eval_forms(rest, obj, env); printf("Evaluating func\n"); Object func_eval = first_eval.func(rest[0], rest[1]); // deleteList(obj); return func_eval; } else if (first_eval.type == TYPE_LAMBDA) { printf("lammy\n"); struct Environment newEnv = envForLambda(&first_eval.lambda->params, first_form->forward, env); return eval(&first_eval.lambda->body, &newEnv); } else { return errorObject(TYPE_LIST_NOT_CAUGHT); } } case TYPE_LAMBDA: { Object o; o.type = TYPE_ERROR; printf("UNEXPECTED FORM\n"); return o; } default: ; } return *obj; } Result resultFromObjAndSlices(Object obj, struct Slice *slices) { Result r; r.obj = obj; r.slices = slices; return r; } // todo could include and return a starting index for faster multi-adds void addToEnv(struct Environment *env, const char *name, const Object obj) { int i; for(i = 0; i < MAX_ENV_ELM; i++) { if(env->strings[i] == NULL) { env->strings[i] = malloc(sizeof(name)); strncpy(env->strings[i], name, MAX_TOK_LEN); env->objects[i] = obj; break; } if(strcmp(env->strings[i], name) == 0) { env->objects[i] = obj; break; } } } void printEnv(struct Environment *env) { for(int i = 0; i < MAX_ENV_ELM; i++) { if(env->strings[i] == NULL) return; printf("env[%d]: '%s'\n ", i, env->strings[i]); printObj(&env->objects[i]); } } Object basicOp(Object *obj1, Object *obj2, const char op) { Object o; o.forward = NULL; o.type = TYPE_NUMBER; const int n1 = obj1->number; const int n2 = obj2->number; switch(op){ case '+': o.number = n1 + n2; return o; case '-': o.number = n1 - n2; return o; case '*': o.number = n1 * n2; return o; case '/': o.number = n1 / n2; return o; } o.type = TYPE_BOOL; switch(op) { case '=': o.number = n1 == n2; return o; case '>': o.number = n1 > n2; return o; case '<': o.number = n1 < n2; return o; } o = *obj1; return o; } #define bopf(_name, _char) \ Object _name(Object obj1, Object obj2) \ { \ return basicOp(&obj1, &obj2, _char); \ } bopf(add, '+'); bopf(sub, '-'); bopf(mul, '*'); bopf(dvi, '/'); bopf(equ, '='); bopf(gth, '>'); bopf(lth, '<'); void addFunc(const char *name, Object (*func)(Object, Object), struct Environment *env) { Object o; o.type = TYPE_FUNC; o.forward = NULL; o.func = func; addToEnv(env, name, o); } void deleteEnv(struct Environment *e) { int i = 0; while(e->strings[i]) { free(e->strings[i]); i++; } free(e->strings); e->strings = NULL; free(e->objects); e->objects = NULL; } struct Environment defaultEnv() { struct Environment e; e.outer = NULL; e.strings = malloc(sizeof(char*) * MAX_ENV_ELM); for(int i = 0; i < MAX_ENV_ELM; i++) { e.strings[i] = NULL; } e.objects = malloc(sizeof(Object) * MAX_ENV_ELM); addFunc("+", &add, &e); addFunc("-", &sub, &e); addFunc("*", &mul, &e); addFunc("/", &dvi, &e); addFunc("=", &equ, &e); addFunc(">", >h, &e); addFunc("<", <h, &e); return e; } Object parseEval(const char *input, struct Environment *env) { struct Slice *tokens = nf_tokenize(input); #ifdef STANDALONE struct Slice *debug = tokens; if(debug) { while(debug->text) { char tok[MAX_TOK_LEN]; copySlice(tok, debug); //printf("slice: '%s'\n", tok); debug++; } } #endif Object parsed = parse(tokens).obj; // printf("PARSEEVAL() PRINTLIST():\n"); // printObj(&parsed); // printf("end PARSEEVAL() PRINTLIST():\n\n"); free(tokens); return eval(&parsed, env); } #ifdef STANDALONE int repl(struct Environment *env) { char input[100] = ""; while(input[0] != 'q') { printf("pebblisp>> "); fgets(input, 100, stdin); Object obj = parseEval(input, env); printObj(&obj); // printEnv(env); } } int main(void) { struct Environment env = defaultEnv(); #ifndef NO_REPL repl(&env); #else struct Slice *tokens = nf_tokenize("(+ 10 5)"); struct Slice *debug = tokens; if(debug) { while(debug->text) { char tok[10]; copySlice(tok, debug); printf("'%s', ", tok); debug++; } printf("\n"); } else { printf("parse error\n"); } parse(tokens); free(tokens); #endif deleteEnv(&env); } #endif