blob: a015d4e473aa7c813bc81f6b25578ef1d604e9ed [file] [log] [blame]
#include "lisp.h"
#include "plat/plat.h"
#include <ctype.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct alloc *first_a = NULL, *last_a = NULL;
value_t nil = 0b00101111; // magic ;)
value_t t = 1 << 3;
void err(const char *msg)
{
fprintf(stderr, "ERROR: %s\n", msg);
exit(1);
}
value_t intval(int i)
{
i <<= 2;
i |= INT_TAG;
return i;
}
value_t cons(value_t car, value_t cdr)
{
struct cons_alloc *item = malloc_aligned(sizeof(struct cons_alloc));
struct cons *c = &item->cons;
c->car = car;
c->cdr = cdr;
item->alloc.type_tag = CONS_TAG;
if (last_a)
{
item->alloc.prev = last_a;
last_a->next = item;
item->alloc.next = NULL;
last_a = item;
}
else
{
item->alloc.prev = item->alloc.next = NULL;
first_a = last_a = item;
}
value_t v = (value_t)c;
v |= CONS_TAG;
return v;
}
void skipws(struct istream *is)
{
while (isspace(is->peek(is)))
is->get(is);
}
bool isallowedchar(char c)
{
return (c >= '#' && c <= '\'') || (c >= '*' && c <= '/') ||
(c >= '>' && c <= '@');
}
bool issymstart(char c)
{
return isalpha(c) || isallowedchar(c);
}
bool issym(char c)
{
return isalpha(c) || isallowedchar(c) || isdigit(c);
}
bool readsym(struct istream *is, value_t *val)
{
skipws(is);
if (!issymstart(is->peek(is)))
return false;
int size = 8;
char *s = malloc_aligned(size);
s[0] = is->get(is);
for (int i = 1;; i++)
{
if (issym(is->peek(is)))
{
if (i >= size)
{
size *= 2;
s = realloc_aligned(s, size);
}
s[i] = is->get(is);
}
else
{
s[i] = 0;
*val = (value_t)s;
*val |= SYMBOL_TAG;
return true;
}
}
}
bool readstr(struct istream *is, value_t *val)
{
skipws(is);
if (is->peek(is) != '"')
return false;
bool escape = false;
int size = 8;
char *s = malloc_aligned(size);
(void)is->get(is);
for (int i = 0;; i++)
{
if (is->peek(is) != '"')
{
if (i >= size)
{
size *= 2;
s = realloc_aligned(s, size);
}
char c = is->get(is);
if (escape && c == 'n')
c = '\n';
else if (escape && c == '\\')
c = '\\';
if (c == '\\' && !escape)
{
escape = true;
i--; // will be incremented again, UGLY.
}
else
{
escape = false;
s[i] = c;
}
}
else
{
is->get(is);
*val = (value_t)s;
*val |= STRING_TAG;
return true;
}
}
}
void printval(value_t v, int depth)
{
for (int i = 0; i < depth; i++)
printf(" ");
if (symbolp(v))
{
printf("'%s\n", (char *)(v ^ SYMBOL_TAG));
}
else if (stringp(v))
{
printf("\"%s\"\n", (char *)(v ^ STRING_TAG));
}
else if (integerp(v))
{
printf("%d\n", v >> 2);
}
else if (consp(v))
{
if (listp(v))
{
printf("list:\n");
for (value_t n = v; !nilp(n); n = cdr(n))
{
printval(car(n), depth + 1);
}
}
else
{
printf("cons:\n");
printval(car(v), depth + 1);
printval(cdr(v), depth + 1);
}
}
else if (nilp(v))
{
printf("nil\n");
}
else
{
printf("<unknown %d>\n", v);
}
}
bool readlist(struct istream *is, value_t *val)
{
skipws(is);
if (is->peek(is) != '(')
return false;
is->get(is);
*val = readn(is);
if (is->peek(is) != ')')
{
is->showpos(is, stderr);
err("Unterminated list");
return false;
}
is->get(is);
return true;
}
bool readint(struct istream *is, value_t *val)
{
int number = 0;
if (!isdigit(is->peek(is)))
return false;
while (isdigit(is->peek(is)))
{
number *= 10;
number += is->get(is) - '0';
}
*val = intval(number);
return true;
}
bool read1(struct istream *is, value_t *val)
{
if (readsym(is, val))
return true;
if (readstr(is, val))
return true;
if (readint(is, val))
return true;
if (readlist(is, val))
return true;
return false;
}
value_t readn(struct istream *is)
{
value_t first = nil;
value_t *last = &first;
value_t read_val;
while (read1(is, &read_val))
{
*last = cons(read_val, nil);
last = cdrref(*last);
}
return first;
}
bool startswith(struct istream *s, char *pattern)
{
char *check = strdup(pattern);
s->read(s, check, strlen(pattern));
bool res = strcmp(check, pattern) == 0;
free(check);
return res;
}
value_t strval(char *str)
{
value_t v;
char *a = malloc_aligned(strlen(str) + 1);
v = (value_t)a;
v |= STRING_TAG;
return v;
}
bool integerp(value_t v)
{
return (v & INT_MASK) == INT_TAG;
}
bool symbolp(value_t v)
{
return (v & HEAP_MASK) == SYMBOL_TAG;
}
bool stringp(value_t v)
{
return (v & HEAP_MASK) == STRING_TAG;
}
bool consp(value_t v)
{
return (v & HEAP_MASK) == CONS_TAG;
}
bool heapp(value_t v)
{
return consp(v) || stringp(v) || symbolp(v);
}
bool listp(value_t v)
{
value_t next = v;
while (consp(next))
{
next = cdr(next);
}
return nilp(next);
}
value_t car(value_t v)
{
if (!consp(v))
return nil;
return *carref(v);
}
value_t cdr(value_t v)
{
if (!consp(v))
return nil;
return *cdrref(v);
}
value_t *carref(value_t v)
{
if (!consp(v))
return NULL;
struct cons *c = (void *)(v ^ CONS_TAG);
return &c->car;
}
value_t *cdrref(value_t v)
{
if (!consp(v))
return NULL;
struct cons *c = (void *)(v ^ CONS_TAG);
return &c->cdr;
}
bool nilp(value_t v)
{
return v == nil;
}
int length(value_t v)
{
int i = 0;
for (; !nilp(v); v = cdr(v))
i++;
return i;
}
value_t elt(value_t v, int index)
{
for (int i = 0; i < index; i++)
{
v = cdr(v);
}
return car(v);
}
bool symstreq(value_t sym, char *str)
{
if ((sym & HEAP_MASK) != SYMBOL_TAG)
return false;
return strcmp((char *)(sym ^ SYMBOL_TAG), str) == 0;
}