2022-12-15 14:55:40 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <ctype.h>
|
2022-12-20 12:52:41 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define NOTUSED(V) ((void) V)
|
2022-12-15 14:55:40 +01:00
|
|
|
|
|
|
|
/* =========================== Data structures ============================== */
|
|
|
|
|
|
|
|
/* This describes our Aocla object type. It can be used to represent
|
|
|
|
* lists (and code: they are the same type in Aocla), integers, strings
|
2022-12-21 21:52:08 +01:00
|
|
|
* and so forth.
|
|
|
|
*
|
|
|
|
* Type are defined so that each type ID is a different set bit, this way
|
|
|
|
* in checkStackType() we may ask the function to check if some argument
|
|
|
|
* is one among a list of types just bitwise-oring the type IDs together. */
|
|
|
|
#define OBJ_TYPE_INT (1<<0)
|
|
|
|
#define OBJ_TYPE_LIST (1<<1)
|
|
|
|
#define OBJ_TYPE_TUPLE (1<<2)
|
|
|
|
#define OBJ_TYPE_STRING (1<<3)
|
|
|
|
#define OBJ_TYPE_SYMBOL (1<<4)
|
|
|
|
#define OBJ_TYPE_BOOL (1<<5)
|
2022-12-21 22:27:49 +01:00
|
|
|
#define OBJ_TYPE_ANY INT_MAX /* All bits set. For checkStackType(). */
|
2022-12-15 14:55:40 +01:00
|
|
|
typedef struct obj {
|
|
|
|
int type; /* OBJ_TYPE_... */
|
2022-12-19 15:53:44 +01:00
|
|
|
int refcount; /* Reference count. */
|
2022-12-21 15:27:17 +01:00
|
|
|
int line; /* Source code line number where this was defined, or 0. */
|
2022-12-15 14:55:40 +01:00
|
|
|
union {
|
|
|
|
int i; /* Integer. Literal: 1234 */
|
2023-01-30 18:08:49 +01:00
|
|
|
int istrue; /* Boolean. Literal: #t or #f */
|
2022-12-23 12:02:09 +01:00
|
|
|
struct { /* List or Tuple: Literal: [1 2 3 4] or (a b c) */
|
2022-12-15 14:55:40 +01:00
|
|
|
struct obj **ele;
|
|
|
|
size_t len;
|
2022-12-23 12:02:09 +01:00
|
|
|
int quoted; /* Used for quoted tuples. Don't capture vars if true.
|
|
|
|
Just push the tuple on stack. */
|
2022-12-15 14:55:40 +01:00
|
|
|
} l;
|
2022-12-20 12:52:41 +01:00
|
|
|
struct { /* Mutable string & unmutable symbol. */
|
2022-12-15 14:55:40 +01:00
|
|
|
char *ptr;
|
|
|
|
size_t len;
|
2022-12-20 22:12:45 +01:00
|
|
|
int quoted; /* Used for quoted symbols: when quoted they are
|
|
|
|
not executed, but just pushed on the stack by
|
|
|
|
eval(). */
|
2022-12-15 14:55:40 +01:00
|
|
|
} str;
|
|
|
|
};
|
|
|
|
} obj;
|
|
|
|
|
2022-12-19 11:20:38 +01:00
|
|
|
/* Procedures. They are just lists with associated names. There are also
|
|
|
|
* procedures implemented in C. In this case proc is NULL and cproc has
|
|
|
|
* the value of the function pointer implementing the procedure. */
|
|
|
|
struct aoclactx;
|
2022-12-15 14:55:40 +01:00
|
|
|
typedef struct aproc {
|
|
|
|
const char *name;
|
2022-12-19 11:20:38 +01:00
|
|
|
obj *proc; /* If not NULL it's an Aocla procedure (list object). */
|
2022-12-21 08:26:54 +01:00
|
|
|
int (*cproc)(struct aoclactx *); /* C procedure. */
|
2022-12-15 14:55:40 +01:00
|
|
|
struct aproc *next;
|
|
|
|
} aproc;
|
|
|
|
|
|
|
|
/* We have local vars, so we need a stack frame. We start with a top level
|
|
|
|
* stack frame. Each time a procedure is called, we create a new stack frame
|
|
|
|
* and free it once the procedure returns. */
|
2022-12-20 22:08:02 +01:00
|
|
|
#define AOCLA_NUMVARS 256
|
2022-12-15 14:55:40 +01:00
|
|
|
typedef struct stackframe {
|
2022-12-15 22:40:24 +01:00
|
|
|
obj *locals[AOCLA_NUMVARS];/* Local var names are limited to a,b,c,...,z. */
|
2022-12-19 17:14:55 +01:00
|
|
|
aproc *curproc; /* Current procedure executing or NULL. */
|
2022-12-21 15:27:17 +01:00
|
|
|
int curline; /* Current line number during execution. */
|
|
|
|
struct stackframe *prev; /* Upper level stack frame or NULL. */
|
2022-12-15 14:55:40 +01:00
|
|
|
} stackframe;
|
|
|
|
|
|
|
|
/* Interpreter state. */
|
2022-12-21 15:27:17 +01:00
|
|
|
#define ERRSTR_LEN 256
|
2022-12-15 22:40:24 +01:00
|
|
|
typedef struct aoclactx {
|
2022-12-19 15:53:44 +01:00
|
|
|
size_t stacklen; /* Stack current len. */
|
2022-12-15 14:55:40 +01:00
|
|
|
obj **stack;
|
2022-12-19 17:14:55 +01:00
|
|
|
aproc *proc; /* Defined procedures. */
|
2022-12-15 14:55:40 +01:00
|
|
|
stackframe *frame; /* Stack frame with locals. */
|
2022-12-19 15:53:44 +01:00
|
|
|
/* Syntax error context. */
|
|
|
|
char errstr[ERRSTR_LEN]; /* Syntax error or execution error string. */
|
2022-12-15 22:40:24 +01:00
|
|
|
} aoclactx;
|
2022-12-15 14:55:40 +01:00
|
|
|
|
2022-12-19 15:53:44 +01:00
|
|
|
void setError(aoclactx *ctx, const char *ptr, const char *msg);
|
|
|
|
aproc *lookupProc(aoclactx *ctx, const char *name);
|
|
|
|
void loadLibrary(aoclactx *ctx);
|
|
|
|
|
2022-12-15 14:55:40 +01:00
|
|
|
/* ================================= Utils ================================== */
|
|
|
|
|
|
|
|
/* Life is too short to handle OOM. alloc() and realloc() that
|
|
|
|
* abort on OOM. free() is the same, so no wrapper. */
|
|
|
|
void *myalloc(size_t size) {
|
|
|
|
void *p = malloc(size);
|
|
|
|
if (!p) {
|
|
|
|
fprintf(stderr,"Out of memory allocating %zu bytes\n", size);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *myrealloc(void *ptr, size_t size) {
|
|
|
|
void *p = realloc(ptr,size);
|
|
|
|
if (!p) {
|
|
|
|
fprintf(stderr,"Out of memory allocating %zu bytes\n", size);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* =============================== Objects ================================== */
|
|
|
|
|
2022-12-19 15:53:44 +01:00
|
|
|
/* Recursively free an Aocla object, if the refcount just dropped to zero. */
|
|
|
|
void release(obj *o) {
|
|
|
|
if (o == NULL) return;
|
2022-12-19 17:14:55 +01:00
|
|
|
assert(o->refcount >= 0);
|
2022-12-19 15:53:44 +01:00
|
|
|
if (--o->refcount == 0) {
|
|
|
|
switch(o->type) {
|
|
|
|
case OBJ_TYPE_LIST:
|
2022-12-21 08:57:29 +01:00
|
|
|
case OBJ_TYPE_TUPLE:
|
2022-12-19 15:53:44 +01:00
|
|
|
for (size_t j = 0; j < o->l.len; j++)
|
|
|
|
release(o->l.ele[j]);
|
|
|
|
free(o->l.ele);
|
|
|
|
break;
|
2022-12-21 08:57:29 +01:00
|
|
|
case OBJ_TYPE_SYMBOL:
|
|
|
|
case OBJ_TYPE_STRING:
|
|
|
|
free(o->str.ptr);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
/* Nothing special to free. */
|
2022-12-19 15:53:44 +01:00
|
|
|
}
|
|
|
|
free(o);
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
2022-12-19 15:53:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Increment the object ref count. Use when a new reference is created. */
|
|
|
|
void retain(obj *o) {
|
|
|
|
o->refcount++;
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
|
2022-12-21 15:27:17 +01:00
|
|
|
/* Allocate a new object of type 'type. */
|
|
|
|
obj *newObject(int type) {
|
|
|
|
obj *o = myalloc(sizeof(*o));
|
|
|
|
o->refcount = 1;
|
|
|
|
o->type = type;
|
|
|
|
o->line = 0;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2022-12-15 22:40:24 +01:00
|
|
|
/* Return true if the character 'c' is within the Aocla symbols charset. */
|
|
|
|
int issymbol(int c) {
|
|
|
|
if (isalpha(c)) return 1;
|
|
|
|
switch(c) {
|
2022-12-21 22:27:49 +01:00
|
|
|
case '@':
|
2022-12-20 12:52:41 +01:00
|
|
|
case '$':
|
2022-12-15 22:40:24 +01:00
|
|
|
case '+':
|
|
|
|
case '-':
|
|
|
|
case '*':
|
|
|
|
case '/':
|
|
|
|
case '=':
|
|
|
|
case '?':
|
|
|
|
case '%':
|
2022-12-20 22:08:02 +01:00
|
|
|
case '>':
|
|
|
|
case '<':
|
|
|
|
case '_':
|
2022-12-20 22:12:45 +01:00
|
|
|
case '\'':
|
2022-12-15 22:40:24 +01:00
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-22 10:54:52 +01:00
|
|
|
/* Utility function for parseObject(). It just consumes spaces and comments
|
|
|
|
* and return the new pointer after the consumed part of the string. */
|
|
|
|
const char *parserConsumeSpace(const char *s, int *line) {
|
|
|
|
while(1) {
|
|
|
|
while(isspace(s[0])) {
|
|
|
|
if (s[0] == '\n' && line) (*line)++;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
if (s[0] != '/' || s[1] != '/') break; /* // style comments. */
|
|
|
|
while(s[0] && s[0] != '\n') s++; /* Seek newline after comment. */
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2022-12-15 14:55:40 +01:00
|
|
|
/* Given the string 's' return the obj representing the list or
|
|
|
|
* NULL on syntax error. '*next' is set to the next byte to parse, after
|
2022-12-19 15:53:44 +01:00
|
|
|
* the current e was completely parsed.
|
2022-12-20 22:08:02 +01:00
|
|
|
*
|
|
|
|
* The 'ctx' argument is only used to set an error in the context in case
|
|
|
|
* of parse error, it is possible to pass NULL.
|
2022-12-19 15:53:44 +01:00
|
|
|
*
|
|
|
|
* Returned object has a ref count of 1. */
|
2022-12-21 15:27:17 +01:00
|
|
|
obj *parseObject(aoclactx *ctx, const char *s, const char **next, int *line) {
|
|
|
|
obj *o = newObject(-1);
|
2022-12-21 12:45:29 +01:00
|
|
|
|
|
|
|
/* Consume empty space and comments. */
|
2022-12-22 10:54:52 +01:00
|
|
|
s = parserConsumeSpace(s,line);
|
2022-12-21 15:27:17 +01:00
|
|
|
if (line)
|
|
|
|
o->line = *line; /* Set line number where this object is defined. */
|
2022-12-21 12:45:29 +01:00
|
|
|
|
2022-12-21 08:57:29 +01:00
|
|
|
if ((s[0] == '-' && isdigit(s[1])) || isdigit(s[0])) { /* Integer. */
|
2022-12-15 14:55:40 +01:00
|
|
|
char buf[64];
|
|
|
|
size_t len = 0;
|
|
|
|
while((*s == '-' || isdigit(*s)) && len < sizeof(buf)-1)
|
|
|
|
buf[len++] = *s++;
|
|
|
|
buf[len] = 0;
|
|
|
|
o->type = OBJ_TYPE_INT;
|
|
|
|
o->i = atoi(buf);
|
|
|
|
if (next) *next = s;
|
2022-12-23 12:02:09 +01:00
|
|
|
} else if (s[0] == '[' || /* List, tuple or quoted tuple. */
|
|
|
|
s[0] == '(' ||
|
|
|
|
(s[0] == '\'' && s[1] == '('))
|
|
|
|
{
|
|
|
|
if (s[0] == '\'') {
|
|
|
|
o->l.quoted = 1;
|
|
|
|
s++;
|
|
|
|
} else {
|
|
|
|
o->l.quoted = 0;
|
|
|
|
}
|
2022-12-19 11:20:38 +01:00
|
|
|
o->type = s[0] == '[' ? OBJ_TYPE_LIST : OBJ_TYPE_TUPLE;
|
2022-12-15 14:55:40 +01:00
|
|
|
o->l.len = 0;
|
|
|
|
o->l.ele = NULL;
|
|
|
|
s++;
|
|
|
|
/* Parse comma separated elements. */
|
|
|
|
while(1) {
|
|
|
|
/* The list may be empty, so we need to parse for "]"
|
|
|
|
* ASAP. */
|
2022-12-22 10:54:52 +01:00
|
|
|
s = parserConsumeSpace(s,line);
|
2022-12-19 11:20:38 +01:00
|
|
|
if ((o->type == OBJ_TYPE_LIST && s[0] == ']') ||
|
2022-12-21 15:27:17 +01:00
|
|
|
(o->type == OBJ_TYPE_TUPLE && s[0] == ')'))
|
|
|
|
{
|
2022-12-15 14:55:40 +01:00
|
|
|
if (next) *next = s+1;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse the current sub-element recursively. */
|
|
|
|
const char *nextptr;
|
2022-12-21 15:27:17 +01:00
|
|
|
obj *element = parseObject(ctx,s,&nextptr,line);
|
2022-12-15 14:55:40 +01:00
|
|
|
if (element == NULL) {
|
2022-12-19 15:53:44 +01:00
|
|
|
release(o);
|
2022-12-15 14:55:40 +01:00
|
|
|
return NULL;
|
2022-12-19 11:20:38 +01:00
|
|
|
} else if (o->type == OBJ_TYPE_TUPLE &&
|
|
|
|
(element->type != OBJ_TYPE_SYMBOL ||
|
2022-12-20 22:08:02 +01:00
|
|
|
element->str.len != 1))
|
2022-12-19 11:20:38 +01:00
|
|
|
{
|
|
|
|
/* Tuples can be only composed of one character symbols. */
|
2022-12-19 15:53:44 +01:00
|
|
|
release(element);
|
|
|
|
release(o);
|
2022-12-20 22:08:02 +01:00
|
|
|
setError(ctx,s,
|
|
|
|
"Tuples can only contain single character symbols");
|
2022-12-19 11:20:38 +01:00
|
|
|
return NULL;
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
o->l.ele = myrealloc(o->l.ele, sizeof(obj*)*(o->l.len+1));
|
|
|
|
o->l.ele[o->l.len++] = element;
|
|
|
|
s = nextptr; /* Continue from first byte not parsed. */
|
|
|
|
|
2022-12-15 22:40:24 +01:00
|
|
|
continue; /* Parse next element. */
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
/* Syntax error (list not closed). */
|
2022-12-19 15:53:44 +01:00
|
|
|
setError(ctx,s,"List never closed");
|
|
|
|
release(o);
|
2022-12-15 14:55:40 +01:00
|
|
|
return NULL;
|
2022-12-15 22:40:24 +01:00
|
|
|
} else if (issymbol(s[0])) { /* Symbol. */
|
2022-12-15 14:55:40 +01:00
|
|
|
o->type = OBJ_TYPE_SYMBOL;
|
2022-12-20 22:12:45 +01:00
|
|
|
if (s[0] == '\'') {
|
|
|
|
o->str.quoted = 1;
|
|
|
|
s++;
|
|
|
|
} else {
|
|
|
|
o->str.quoted = 0;
|
|
|
|
}
|
2022-12-15 14:55:40 +01:00
|
|
|
const char *end = s;
|
2022-12-15 22:40:24 +01:00
|
|
|
while(issymbol(*end)) end++;
|
2022-12-20 12:52:41 +01:00
|
|
|
o->str.len = end-s;
|
|
|
|
char *dest = myalloc(o->str.len+1);
|
|
|
|
o->str.ptr = dest;
|
|
|
|
memcpy(dest,s,o->str.len);
|
|
|
|
dest[o->str.len] = 0;
|
2022-12-21 08:57:29 +01:00
|
|
|
if (next) *next = end;
|
|
|
|
} else if (s[0]=='#') { /* Boolean. */
|
|
|
|
if (s[1] != 't' && s[1] != 'f') {
|
|
|
|
setError(ctx,s,"Booelans are either #t or #f");
|
|
|
|
release(o);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
o->type = OBJ_TYPE_BOOL;
|
|
|
|
o->istrue = s[1] == 't' ? 1 : 0;
|
|
|
|
s += 2;
|
|
|
|
if (next) *next = s;
|
2022-12-15 22:40:24 +01:00
|
|
|
} else if (s[0] == '"') { /* String. */
|
2022-12-21 12:45:29 +01:00
|
|
|
s++; /* Skip " */
|
|
|
|
o->type = OBJ_TYPE_STRING;
|
|
|
|
o->str.ptr = myalloc(1); /* We need at least space for nullterm. */
|
|
|
|
o->str.len = 0;
|
|
|
|
while(s[0] && s[0] != '"') {
|
|
|
|
int c = s[0];
|
|
|
|
switch(c) {
|
|
|
|
case '\\':
|
|
|
|
s++;
|
|
|
|
int q = s[0];
|
|
|
|
switch(q) {
|
|
|
|
case 'n': c = '\n'; break;
|
|
|
|
case 'r': c = '\r'; break;
|
|
|
|
case 't': c = '\t'; break;
|
|
|
|
default: c = q; break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Here we abuse realloc() ability to overallocate for us
|
|
|
|
* in order to avoid complexity. We allocate len+2 because we
|
|
|
|
* need 1 byte for the current char, 1 for the nullterm. */
|
|
|
|
o->str.ptr = myrealloc(o->str.ptr,o->str.len+2);
|
|
|
|
o->str.ptr[o->str.len++] = c;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
if (s[0] != '"') {
|
|
|
|
setError(ctx,s,"Quotation marks never closed in string");
|
|
|
|
release(o);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
o->str.ptr[o->str.len] = 0; /* nullterm. */
|
|
|
|
s++;
|
|
|
|
if (next) *next = s;
|
2022-12-15 14:55:40 +01:00
|
|
|
} else {
|
2022-12-15 22:40:24 +01:00
|
|
|
/* Syntax error. */
|
2022-12-19 22:06:02 +01:00
|
|
|
setError(ctx,s,"No object type starts like this");
|
2022-12-21 08:57:29 +01:00
|
|
|
release(o);
|
2022-12-15 14:55:40 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compare the two objects 'a' and 'b' and return:
|
|
|
|
* -1 if a<b; 0 if a==b; 1 if a>b. */
|
2022-12-20 12:52:41 +01:00
|
|
|
#define COMPARE_TYPE_MISMATCH INT_MIN
|
2022-12-15 14:55:40 +01:00
|
|
|
int compare(obj *a, obj *b) {
|
2022-12-20 12:52:41 +01:00
|
|
|
/* Int VS Int */
|
2022-12-15 14:55:40 +01:00
|
|
|
if (a->type == OBJ_TYPE_INT && b->type == OBJ_TYPE_INT) {
|
|
|
|
if (a->i < b->i) return -1;
|
|
|
|
else if (a->i > b->i) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-21 08:57:29 +01:00
|
|
|
/* Bool vs Bool. */
|
|
|
|
if (a->type == OBJ_TYPE_BOOL && b->type == OBJ_TYPE_BOOL) {
|
|
|
|
if (a->istrue < b->istrue) return -1;
|
|
|
|
else if (a->istrue > b->istrue) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-20 12:52:41 +01:00
|
|
|
/* String|Symbol VS String|Symbol. */
|
|
|
|
if ((a->type == OBJ_TYPE_STRING || a->type == OBJ_TYPE_SYMBOL) &&
|
|
|
|
(b->type == OBJ_TYPE_STRING || b->type == OBJ_TYPE_SYMBOL))
|
|
|
|
{
|
|
|
|
int cmp = strcmp(a->str.ptr,b->str.ptr);
|
|
|
|
/* Normalize. */
|
|
|
|
if (cmp < 0) return -1;
|
|
|
|
if (cmp > 0) return 1;
|
|
|
|
return 0;
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
|
2022-12-20 12:52:41 +01:00
|
|
|
/* List|Tuple vs List|Tuple. */
|
|
|
|
if ((a->type == OBJ_TYPE_LIST || a->type == OBJ_TYPE_TUPLE) &&
|
|
|
|
(b->type == OBJ_TYPE_LIST || b->type == OBJ_TYPE_TUPLE))
|
|
|
|
{
|
|
|
|
/* Len wins. */
|
|
|
|
if (a->l.len < b->l.len) return -1;
|
|
|
|
else if (a->l.len > b->l.len) return 1;
|
|
|
|
return 0;
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
|
2022-12-20 12:52:41 +01:00
|
|
|
/* Comparison impossible. */
|
|
|
|
return COMPARE_TYPE_MISMATCH;
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* qsort() helper to sort arrays of obj pointers. */
|
2022-12-20 12:52:41 +01:00
|
|
|
int qsort_obj_cmp(const void *a, const void *b) {
|
2022-12-15 14:55:40 +01:00
|
|
|
obj **obja = (obj**)a, **objb = (obj**)b;
|
|
|
|
return compare(obja[0],objb[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Output an object human readable representation .*/
|
2022-12-21 12:45:29 +01:00
|
|
|
#define PRINT_RAW 0 /* Nothing special. */
|
|
|
|
#define PRINT_COLOR (1<<0) /* Colorized by type. */
|
|
|
|
#define PRINT_REPR (1<<1) /* Print in Aocla literal form. */
|
|
|
|
void printobj(obj *obj, int flags) {
|
2022-12-19 22:06:02 +01:00
|
|
|
const char *escape;
|
2022-12-21 12:45:29 +01:00
|
|
|
int color = flags & PRINT_COLOR;
|
|
|
|
int repr = flags & PRINT_REPR;
|
|
|
|
|
2022-12-19 22:06:02 +01:00
|
|
|
if (color) {
|
|
|
|
switch(obj->type) {
|
|
|
|
case OBJ_TYPE_LIST: escape = "\033[33;1m"; break; /* Yellow. */
|
|
|
|
case OBJ_TYPE_TUPLE: escape = "\033[34;1m"; break; /* Blue. */
|
|
|
|
case OBJ_TYPE_SYMBOL: escape = "\033[36;1m"; break; /* Cyan. */
|
|
|
|
case OBJ_TYPE_STRING: escape = "\033[32;1m"; break; /* Green. */
|
|
|
|
case OBJ_TYPE_INT: escape = "\033[37;1m"; break; /* Gray. */
|
2022-12-21 08:57:29 +01:00
|
|
|
case OBJ_TYPE_BOOL: escape = "\033[35;1m"; break; /* Gray. */
|
2022-12-19 22:06:02 +01:00
|
|
|
}
|
|
|
|
printf("%s",escape); /* Set color. */
|
|
|
|
}
|
|
|
|
|
2022-12-15 14:55:40 +01:00
|
|
|
switch(obj->type) {
|
|
|
|
case OBJ_TYPE_INT:
|
|
|
|
printf("%d",obj->i);
|
|
|
|
break;
|
2022-12-15 22:40:24 +01:00
|
|
|
case OBJ_TYPE_SYMBOL:
|
2022-12-20 12:52:41 +01:00
|
|
|
printf("%s",obj->str.ptr);
|
2022-12-15 22:40:24 +01:00
|
|
|
break;
|
2022-12-21 12:45:29 +01:00
|
|
|
case OBJ_TYPE_STRING:
|
|
|
|
if (!repr) {
|
|
|
|
fwrite(obj->str.ptr,obj->str.len,1,stdout);
|
|
|
|
} else {
|
|
|
|
printf("\"");
|
|
|
|
for (size_t j = 0; j < obj->str.len; j++) {
|
|
|
|
int c = obj->str.ptr[j];
|
|
|
|
switch(c) {
|
|
|
|
case '\n': printf("\\n"); break;
|
|
|
|
case '\r': printf("\\r"); break;
|
|
|
|
case '\t': printf("\\t"); break;
|
|
|
|
case '"': printf("\\\""); break;
|
|
|
|
default: printf("%c", c); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("\"");
|
|
|
|
}
|
|
|
|
break;
|
2022-12-21 08:57:29 +01:00
|
|
|
case OBJ_TYPE_BOOL:
|
|
|
|
printf("#%c",obj->istrue ? 't' : 'f');
|
|
|
|
break;
|
2022-12-15 14:55:40 +01:00
|
|
|
case OBJ_TYPE_LIST:
|
2022-12-19 15:53:44 +01:00
|
|
|
case OBJ_TYPE_TUPLE:
|
2022-12-21 12:45:29 +01:00
|
|
|
if (repr) printf("%c",obj->type == OBJ_TYPE_LIST ? '[' : '(');
|
2022-12-19 15:53:44 +01:00
|
|
|
for (size_t j = 0; j < obj->l.len; j++) {
|
2022-12-21 12:45:29 +01:00
|
|
|
printobj(obj->l.ele[j],flags);
|
2023-01-30 11:35:42 +01:00
|
|
|
if (j != obj->l.len-1) printf(" ");
|
2022-12-19 15:53:44 +01:00
|
|
|
}
|
2022-12-19 22:06:02 +01:00
|
|
|
if (color) printf("%s",escape); /* Restore upper level color. */
|
2022-12-21 12:45:29 +01:00
|
|
|
if (repr) printf("%c",obj->type == OBJ_TYPE_LIST ? ']' : ')');
|
2022-12-19 15:53:44 +01:00
|
|
|
break;
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
2022-12-19 22:06:02 +01:00
|
|
|
if (color) printf("\033[0m"); /* Color off. */
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
|
2022-12-19 15:53:44 +01:00
|
|
|
/* Allocate an int object with value 'i'. */
|
|
|
|
obj *newInt(int i) {
|
|
|
|
obj *o = newObject(OBJ_TYPE_INT);
|
|
|
|
o->i = i;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2022-12-21 08:57:29 +01:00
|
|
|
/* Allocate a boolean object with value 'b' (1 true, 0 false). */
|
|
|
|
obj *newBool(int b) {
|
|
|
|
obj *o = newObject(OBJ_TYPE_BOOL);
|
|
|
|
o->istrue = b;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2022-12-22 18:30:57 +01:00
|
|
|
/* Allocate a string object initialized with the content at 's' for
|
|
|
|
* 'len' bytes. */
|
|
|
|
obj *newString(const char *s, size_t len) {
|
|
|
|
obj *o = newObject(OBJ_TYPE_STRING);
|
|
|
|
o->str.len = len;
|
|
|
|
o->str.ptr = myalloc(len+1);
|
|
|
|
memcpy(o->str.ptr,s,len);
|
|
|
|
o->str.ptr[len] = 0;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2022-12-20 14:10:45 +01:00
|
|
|
/* Deep copy the passed object. Return an object with refcount = 1. */
|
|
|
|
obj *deepCopy(obj *o) {
|
|
|
|
if (o == NULL) return NULL;
|
2022-12-21 22:27:49 +01:00
|
|
|
obj *c = newObject(o->type);
|
|
|
|
switch(o->type) {
|
|
|
|
case OBJ_TYPE_INT: c->i = o->i; break;
|
|
|
|
case OBJ_TYPE_BOOL: c->istrue = o->istrue; break;
|
|
|
|
case OBJ_TYPE_LIST:
|
|
|
|
case OBJ_TYPE_TUPLE:
|
|
|
|
c->l.len = o->l.len;
|
|
|
|
c->l.ele = myalloc(sizeof(obj*)*o->l.len);
|
|
|
|
for (size_t j = 0; j < o->l.len; j++)
|
|
|
|
c->l.ele[j] = deepCopy(o->l.ele[j]);
|
|
|
|
break;
|
|
|
|
case OBJ_TYPE_STRING:
|
|
|
|
case OBJ_TYPE_SYMBOL:
|
|
|
|
c->str.len = o->str.len;
|
|
|
|
c->str.quoted = o->str.quoted; /* Only useful for symbols. */
|
|
|
|
c->str.ptr = myalloc(o->str.len+1);
|
|
|
|
memcpy(c->str.ptr,o->str.ptr,o->str.len+1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return c;
|
2022-12-20 14:10:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This function performs a deep copy of the object if it has a refcount > 1.
|
|
|
|
* The copy is returned. Otherwise if refcount is 1, the function returns
|
|
|
|
* the same object we passed as argument. This is useful when we want to
|
2023-01-31 12:57:11 +01:00
|
|
|
* modify a shared object.
|
|
|
|
*
|
|
|
|
* When the function returns a copy, the reference count of the original
|
|
|
|
* object is decremented, as the object logically lost one reference. */
|
2022-12-20 14:10:45 +01:00
|
|
|
obj *getUnsharedObject(obj *o) {
|
|
|
|
if (o->refcount > 1) {
|
2023-01-31 12:57:11 +01:00
|
|
|
release(o);
|
2022-12-20 14:10:45 +01:00
|
|
|
return deepCopy(o);
|
|
|
|
} else {
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-15 22:40:24 +01:00
|
|
|
/* ========================== Interpreter state ============================= */
|
|
|
|
|
2022-12-19 15:53:44 +01:00
|
|
|
/* Set the syntax or runtime error, if the context is not NULL. */
|
|
|
|
void setError(aoclactx *ctx, const char *ptr, const char *msg) {
|
|
|
|
if (!ctx) return;
|
2022-12-20 12:52:41 +01:00
|
|
|
if (!ptr) ptr = ctx->frame->curproc ?
|
|
|
|
ctx->frame->curproc->name : "unknown context";
|
2022-12-21 15:27:17 +01:00
|
|
|
size_t len =
|
|
|
|
snprintf(ctx->errstr,ERRSTR_LEN,"%s: '%.30s%s'",
|
|
|
|
msg,ptr,strlen(ptr)>30 ? "..." :"");
|
|
|
|
|
|
|
|
stackframe *sf = ctx->frame;
|
|
|
|
while(sf && len < ERRSTR_LEN) {
|
|
|
|
len += snprintf(ctx->errstr+len,ERRSTR_LEN-len," in %s:%d ",
|
|
|
|
sf->curproc ? sf->curproc->name : "unknown",
|
|
|
|
sf->curline);
|
|
|
|
sf = sf->prev;
|
|
|
|
}
|
2022-12-19 15:53:44 +01:00
|
|
|
}
|
|
|
|
|
2022-12-15 22:40:24 +01:00
|
|
|
/* Create a new stack frame. */
|
2022-12-21 15:27:17 +01:00
|
|
|
stackframe *newStackFrame(aoclactx *ctx) {
|
2022-12-15 22:40:24 +01:00
|
|
|
stackframe *sf = myalloc(sizeof(*sf));
|
|
|
|
memset(sf->locals,0,sizeof(sf->locals));
|
2022-12-19 17:14:55 +01:00
|
|
|
sf->curproc = NULL;
|
2022-12-21 15:27:17 +01:00
|
|
|
sf->prev = ctx ? ctx->frame : NULL;
|
2022-12-15 22:40:24 +01:00
|
|
|
return sf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free a stack frame. */
|
|
|
|
void freeStackFrame(stackframe *sf) {
|
2022-12-20 14:10:45 +01:00
|
|
|
for (int j = 0; j < AOCLA_NUMVARS; j++) release(sf->locals[j]);
|
2022-12-15 22:40:24 +01:00
|
|
|
free(sf);
|
|
|
|
}
|
|
|
|
|
|
|
|
aoclactx *newInterpreter(void) {
|
|
|
|
aoclactx *i = myalloc(sizeof(*i));
|
2022-12-19 15:53:44 +01:00
|
|
|
i->stacklen = 0;
|
|
|
|
i->stack = NULL; /* Will be allocated on push of new elements. */
|
2022-12-15 22:40:24 +01:00
|
|
|
i->proc = NULL; /* That's a linked list. Starts empty. */
|
2022-12-21 21:32:48 +01:00
|
|
|
i->frame = newStackFrame(NULL);
|
2022-12-19 15:53:44 +01:00
|
|
|
loadLibrary(i);
|
2022-12-15 22:40:24 +01:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2022-12-19 15:53:44 +01:00
|
|
|
/* Push an object on the interpreter stack. No refcount change. */
|
|
|
|
void stackPush(aoclactx *ctx, obj *o) {
|
|
|
|
ctx->stack = myrealloc(ctx->stack,sizeof(obj*) * (ctx->stacklen+1));
|
|
|
|
ctx->stack[ctx->stacklen++] = o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pop an object from the stack without modifying its refcount.
|
|
|
|
* Return NULL if stack is empty. */
|
|
|
|
obj *stackPop(aoclactx *ctx) {
|
2022-12-20 12:52:41 +01:00
|
|
|
if (ctx->stacklen == 0) return NULL;
|
2022-12-19 15:53:44 +01:00
|
|
|
return ctx->stack[--ctx->stacklen];
|
|
|
|
}
|
|
|
|
|
2022-12-21 22:27:49 +01:00
|
|
|
/* Return the pointer to the last object (if offset == 0) on the stack
|
|
|
|
* or NULL. Offset of 1 means penultimate and so forth. */
|
|
|
|
obj *stackPeek(aoclactx *ctx, size_t offset) {
|
|
|
|
if (ctx->stacklen <= offset) return NULL;
|
|
|
|
return ctx->stack[ctx->stacklen-1-offset];
|
2022-12-20 12:52:41 +01:00
|
|
|
}
|
|
|
|
|
2023-01-31 12:57:11 +01:00
|
|
|
/* Like stack peek, but instead of returning the object sets it. */
|
|
|
|
void stackSet(aoclactx *ctx, size_t offset, obj *o) {
|
|
|
|
assert(ctx->stacklen > offset);
|
|
|
|
ctx->stack[ctx->stacklen-1-offset] = o;
|
|
|
|
}
|
|
|
|
|
2022-12-19 15:53:44 +01:00
|
|
|
/* Show the current content of the stack. */
|
2022-12-19 22:06:02 +01:00
|
|
|
#define STACK_SHOW_MAX_ELE 10
|
2022-12-19 15:53:44 +01:00
|
|
|
void stackShow(aoclactx *ctx) {
|
2022-12-19 22:06:02 +01:00
|
|
|
ssize_t j = ctx->stacklen - STACK_SHOW_MAX_ELE;
|
|
|
|
if (j < 0) j = 0;
|
|
|
|
while(j < (ssize_t)ctx->stacklen) {
|
|
|
|
obj *o = ctx->stack[j];
|
2022-12-21 12:45:29 +01:00
|
|
|
printobj(o,PRINT_COLOR|PRINT_REPR); printf(" ");
|
2022-12-19 22:06:02 +01:00
|
|
|
j++;
|
2022-12-19 15:53:44 +01:00
|
|
|
}
|
2022-12-19 22:06:02 +01:00
|
|
|
if (ctx->stacklen > STACK_SHOW_MAX_ELE)
|
|
|
|
printf("[... %zu more object ...]", j);
|
|
|
|
if (ctx->stacklen) printf("\n");
|
2022-12-19 15:53:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ================================ Eval ==================================== */
|
|
|
|
|
|
|
|
/* Evaluate the program in the list 'l' in the specified context 'ctx'.
|
|
|
|
* Expects a list object. Evaluation uses the following rules:
|
|
|
|
*
|
|
|
|
* 1. List elements are scanned from left to right.
|
|
|
|
* 2. If an element is a symbol, a function bound to such symbol is
|
|
|
|
* searched and executed. If no function is found with such a name
|
|
|
|
* an error is raised.
|
|
|
|
* 3. If an element is a tuple, the stack elements are captured into the
|
|
|
|
* local variables with the same names as the tuple elements. If we
|
|
|
|
* run out of stack, an error is raised.
|
|
|
|
* 4. Any other object type is just pushed on the stack.
|
|
|
|
*
|
|
|
|
* Return 1 on runtime erorr. Otherwise 0 is returned.
|
|
|
|
*/
|
|
|
|
int eval(aoclactx *ctx, obj *l) {
|
|
|
|
assert (l->type == OBJ_TYPE_LIST);
|
|
|
|
|
|
|
|
for (size_t j = 0; j < l->l.len; j++) {
|
|
|
|
obj *o = l->l.ele[j];
|
|
|
|
aproc *proc;
|
2022-12-21 15:27:17 +01:00
|
|
|
ctx->frame->curline = o->line;
|
2022-12-19 15:53:44 +01:00
|
|
|
|
|
|
|
switch(o->type) {
|
2022-12-20 22:08:02 +01:00
|
|
|
case OBJ_TYPE_TUPLE: /* Capture variables. */
|
2022-12-23 12:02:09 +01:00
|
|
|
/* Quoted tuples just get pushed on the stack, losing
|
|
|
|
* their quoted status. */
|
|
|
|
if (o->l.quoted) {
|
|
|
|
obj *notq = deepCopy(o);
|
|
|
|
notq->l.quoted = 0;
|
|
|
|
stackPush(ctx,notq);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-12-20 14:10:45 +01:00
|
|
|
if (ctx->stacklen < o->l.len) {
|
2022-12-21 15:27:17 +01:00
|
|
|
setError(ctx,o->l.ele[ctx->stacklen]->str.ptr,
|
|
|
|
"Out of stack while capturing local");
|
2022-12-20 14:10:45 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2023-01-31 22:36:20 +01:00
|
|
|
/* Bind each variable to the corresponding locals array,
|
|
|
|
* removing it from the stack. */
|
2022-12-20 14:10:45 +01:00
|
|
|
ctx->stacklen -= o->l.len;
|
|
|
|
for (size_t i = 0; i < o->l.len; i++) {
|
2022-12-20 22:08:02 +01:00
|
|
|
int idx = o->l.ele[i]->str.ptr[0];
|
2022-12-20 14:10:45 +01:00
|
|
|
release(ctx->frame->locals[idx]);
|
|
|
|
ctx->frame->locals[idx] =
|
2022-12-20 14:20:38 +01:00
|
|
|
ctx->stack[ctx->stacklen+i];
|
2022-12-20 14:10:45 +01:00
|
|
|
}
|
|
|
|
break;
|
2022-12-20 14:20:38 +01:00
|
|
|
case OBJ_TYPE_SYMBOL:
|
2022-12-20 22:12:45 +01:00
|
|
|
/* Quoted symbols don't generate a procedure call, but like
|
|
|
|
* any other object they get pushed on the stack. */
|
|
|
|
if (o->str.quoted) {
|
2022-12-21 22:27:49 +01:00
|
|
|
obj *notq = deepCopy(o);
|
|
|
|
notq->str.quoted = 0;
|
|
|
|
stackPush(ctx,notq);
|
2022-12-20 22:12:45 +01:00
|
|
|
break;
|
|
|
|
}
|
2022-12-21 22:27:49 +01:00
|
|
|
|
|
|
|
/* Not quoted symbols get looked up and executed if they
|
|
|
|
* don't start with "$". Otherwise are handled as locals
|
|
|
|
* push on the stack. */
|
2022-12-20 22:08:02 +01:00
|
|
|
if (o->str.ptr[0] == '$') { /* Push local var. */
|
|
|
|
int idx = o->str.ptr[1];
|
2022-12-20 14:20:38 +01:00
|
|
|
if (ctx->frame->locals[idx] == NULL) {
|
|
|
|
setError(ctx,o->str.ptr, "Unbound local var");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
stackPush(ctx,ctx->frame->locals[idx]);
|
|
|
|
retain(ctx->frame->locals[idx]);
|
2022-12-20 22:08:02 +01:00
|
|
|
} else { /* Call procedure. */
|
2022-12-20 14:20:38 +01:00
|
|
|
proc = lookupProc(ctx,o->str.ptr);
|
|
|
|
if (proc == NULL) {
|
|
|
|
setError(ctx,o->str.ptr,
|
|
|
|
"Symbol not bound to procedure");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (proc->cproc) {
|
|
|
|
/* Call a procedure implemented in C. */
|
|
|
|
aproc *prev = ctx->frame->curproc;
|
|
|
|
ctx->frame->curproc = proc;
|
2022-12-21 08:26:54 +01:00
|
|
|
int err = proc->cproc(ctx);
|
2022-12-20 14:20:38 +01:00
|
|
|
ctx->frame->curproc = prev;
|
|
|
|
if (err) return err;
|
|
|
|
} else {
|
|
|
|
/* Call a procedure implemented in Aocla. */
|
|
|
|
stackframe *oldsf = ctx->frame;
|
2022-12-21 15:27:17 +01:00
|
|
|
ctx->frame = newStackFrame(ctx);
|
2022-12-20 14:20:38 +01:00
|
|
|
ctx->frame->curproc = proc;
|
|
|
|
int err = eval(ctx,proc->proc);
|
|
|
|
freeStackFrame(ctx->frame);
|
|
|
|
ctx->frame = oldsf;
|
|
|
|
if (err) return err;
|
|
|
|
}
|
2022-12-19 15:53:44 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
stackPush(ctx,o);
|
2022-12-21 08:57:29 +01:00
|
|
|
retain(o);
|
2022-12-19 15:53:44 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-21 21:52:08 +01:00
|
|
|
/* ============================== Library ===================================
|
|
|
|
* Here we implement a number of things useful to play with the language.
|
|
|
|
* Performance is not really a concern here, so certain core things are
|
|
|
|
* implemented in Aocla itself for the sake of brevity.
|
|
|
|
* ========================================================================== */
|
2022-12-19 15:53:44 +01:00
|
|
|
|
2022-12-20 12:52:41 +01:00
|
|
|
/* Make sure the stack len is at least 'min' or set an error and return 1.
|
|
|
|
* If there are enough elements 0 is returned. */
|
|
|
|
int checkStackLen(aoclactx *ctx, size_t min) {
|
|
|
|
if (ctx->stacklen < min) {
|
|
|
|
setError(ctx,NULL,"Out of stack");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that the stack elements contain at least 'count' elements of
|
|
|
|
* the specified type. Otherwise set an error and return 1.
|
|
|
|
* The function returns 0 if there are enough elements of the right type. */
|
|
|
|
int checkStackType(aoclactx *ctx, size_t count, ...) {
|
|
|
|
if (checkStackLen(ctx,count)) return 1;
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, count);
|
|
|
|
for (size_t i = 0; i < count; i++) {
|
|
|
|
int type = va_arg(ap,int);
|
2022-12-21 21:52:08 +01:00
|
|
|
if (!(type & ctx->stack[ctx->stacklen-count+i]->type)) {
|
2022-12-20 12:52:41 +01:00
|
|
|
setError(ctx,NULL,"Type mismatch");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-19 11:20:38 +01:00
|
|
|
/* Search for a procedure with that name. Return NULL if not found. */
|
|
|
|
aproc *lookupProc(aoclactx *ctx, const char *name) {
|
|
|
|
aproc *this = ctx->proc;
|
|
|
|
while(this) {
|
|
|
|
if (!strcmp(this->name,name)) return this;
|
|
|
|
this = this->next;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2022-12-19 15:53:44 +01:00
|
|
|
/* Allocate a new procedure object and link it to 'ctx'.
|
|
|
|
* It's up to the caller to to fill the actual C or Aocla procedure pointer. */
|
|
|
|
aproc *newProc(aoclactx *ctx, const char *name) {
|
|
|
|
aproc *ap = myalloc(sizeof(*ap));
|
|
|
|
ap->name = myalloc(strlen(name)+1);
|
|
|
|
memcpy((char*)ap->name,name,strlen(name)+1);
|
|
|
|
ap->next = ctx->proc;
|
|
|
|
ctx->proc = ap;
|
|
|
|
return ap;
|
2022-12-15 22:40:24 +01:00
|
|
|
}
|
|
|
|
|
2022-12-19 15:53:44 +01:00
|
|
|
/* Add a procedure to the specified context. Either cproc or list should
|
2022-12-20 22:08:02 +01:00
|
|
|
* not be null, depending on the fact the new procedure is implemented as
|
|
|
|
* a C function or natively in Aocla. If the procedure already exists it
|
|
|
|
* is replaced with the new one. */
|
2022-12-21 08:26:54 +01:00
|
|
|
void addProc(aoclactx *ctx, const char *name, int(*cproc)(aoclactx *), obj *list) {
|
2022-12-19 15:53:44 +01:00
|
|
|
assert((cproc != NULL) + (list != NULL) == 1);
|
2022-12-20 22:08:02 +01:00
|
|
|
aproc *ap = lookupProc(ctx, name);
|
|
|
|
if (ap) {
|
|
|
|
if (ap->proc != NULL) {
|
|
|
|
release(ap->proc);
|
|
|
|
ap->proc = NULL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ap = newProc(ctx,name);
|
|
|
|
}
|
2022-12-19 15:53:44 +01:00
|
|
|
ap->proc = list;
|
|
|
|
ap->cproc = cproc;
|
|
|
|
}
|
2022-12-15 14:55:40 +01:00
|
|
|
|
2022-12-20 22:08:02 +01:00
|
|
|
/* Add a procedure represented by the Aocla code 'prog', that must
|
|
|
|
* be a valid list. On error (not valid list) 1 is returned, otherwise 0. */
|
|
|
|
int addProcString(aoclactx *ctx, const char *name, const char *prog) {
|
2022-12-21 15:27:17 +01:00
|
|
|
obj *list = parseObject(NULL,prog,NULL,NULL);
|
2022-12-20 22:08:02 +01:00
|
|
|
if (prog == NULL) return 1;
|
|
|
|
addProc(ctx,name,NULL,list);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-20 12:52:41 +01:00
|
|
|
/* Implements +, -, *, %, ... */
|
2022-12-21 08:26:54 +01:00
|
|
|
int procBasicMath(aoclactx *ctx) {
|
2022-12-20 12:52:41 +01:00
|
|
|
if (checkStackType(ctx,2,OBJ_TYPE_INT,OBJ_TYPE_INT)) return 1;
|
2022-12-19 15:53:44 +01:00
|
|
|
obj *b = stackPop(ctx);
|
2023-01-30 18:08:49 +01:00
|
|
|
obj *a = stackPop(ctx);
|
2022-12-20 12:52:41 +01:00
|
|
|
|
2022-12-19 15:53:44 +01:00
|
|
|
int res;
|
2022-12-21 08:26:54 +01:00
|
|
|
const char *fname = ctx->frame->curproc->name;
|
2022-12-19 15:53:44 +01:00
|
|
|
if (fname[0] == '+' && fname[1] == 0) res = a->i + b->i;
|
|
|
|
if (fname[0] == '-' && fname[1] == 0) res = a->i - b->i;
|
|
|
|
if (fname[0] == '*' && fname[1] == 0) res = a->i * b->i;
|
|
|
|
if (fname[0] == '/' && fname[1] == 0) res = a->i / b->i;
|
|
|
|
stackPush(ctx,newInt(res));
|
2022-12-21 09:05:52 +01:00
|
|
|
release(a);
|
|
|
|
release(b);
|
2022-12-19 15:53:44 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-20 12:52:41 +01:00
|
|
|
/* Implements ==, >=, <=, !=. */
|
2022-12-21 08:26:54 +01:00
|
|
|
int procCompare(aoclactx *ctx) {
|
2022-12-20 12:52:41 +01:00
|
|
|
if (checkStackLen(ctx,2)) return 1;
|
|
|
|
obj *b = stackPop(ctx);
|
2022-12-21 11:44:47 +01:00
|
|
|
obj *a = stackPop(ctx);
|
2022-12-20 12:52:41 +01:00
|
|
|
int cmp = compare(a,b);
|
|
|
|
if (cmp == COMPARE_TYPE_MISMATCH) {
|
|
|
|
stackPush(ctx,b);
|
|
|
|
stackPush(ctx,a);
|
|
|
|
setError(ctx,NULL,"Type mismatch in comparison");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int res;
|
2022-12-21 08:26:54 +01:00
|
|
|
const char *fname = ctx->frame->curproc->name;
|
2022-12-20 12:52:41 +01:00
|
|
|
if (fname[1] == '=') {
|
|
|
|
switch(fname[0]) {
|
|
|
|
case '=': res = cmp == 0; break;
|
|
|
|
case '!': res = cmp != 0; break;
|
|
|
|
case '>': res = cmp >= 0; break;
|
|
|
|
case '<': res = cmp <= 0; break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch(fname[0]) {
|
|
|
|
case '>': res = cmp > 0; break;
|
|
|
|
case '<': res = cmp < 0; break;
|
|
|
|
}
|
|
|
|
}
|
2022-12-21 08:57:29 +01:00
|
|
|
stackPush(ctx,newBool(res));
|
2022-12-21 09:05:52 +01:00
|
|
|
release(a);
|
|
|
|
release(b);
|
2022-12-20 12:52:41 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implements sort. Sorts a list in place. */
|
2022-12-21 08:26:54 +01:00
|
|
|
int procSortList(aoclactx *ctx) {
|
2022-12-20 12:52:41 +01:00
|
|
|
if (checkStackType(ctx,1,OBJ_TYPE_LIST)) return 1;
|
2022-12-20 14:10:45 +01:00
|
|
|
obj *l = stackPop(ctx);
|
|
|
|
l = getUnsharedObject(l);
|
2022-12-20 12:52:41 +01:00
|
|
|
qsort(l->l.ele,l->l.len,sizeof(obj*),qsort_obj_cmp);
|
2022-12-20 14:10:45 +01:00
|
|
|
stackPush(ctx,l);
|
2022-12-20 12:52:41 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-20 22:24:22 +01:00
|
|
|
/* "def" let Aocla define new procedures, binding a list to a
|
|
|
|
* symbol in the procedure table. */
|
2022-12-21 08:26:54 +01:00
|
|
|
int procDef(aoclactx *ctx) {
|
2022-12-20 22:24:22 +01:00
|
|
|
if (checkStackType(ctx,2,OBJ_TYPE_LIST,OBJ_TYPE_SYMBOL)) return 1;
|
|
|
|
obj *sym = stackPop(ctx);
|
|
|
|
obj *code = stackPop(ctx);
|
|
|
|
addProc(ctx,sym->str.ptr,NULL,code);
|
|
|
|
release(sym);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-21 21:52:08 +01:00
|
|
|
/* if, ifelse, while.
|
2022-12-21 22:27:49 +01:00
|
|
|
*
|
|
|
|
* (list) => (result) // if
|
|
|
|
* (list list) => (result) // ifelse and while
|
2022-12-21 21:52:08 +01:00
|
|
|
*
|
|
|
|
* We could implement while in AOCLA itself, once we have ifelse, however
|
|
|
|
* this way we would build everything on a recursive implementation (still
|
|
|
|
* we don't have tail recursion implemented), making every other thing
|
|
|
|
* using while a issue with the stack length. Also stack trace on error
|
|
|
|
* is a mess. And if you see the implementation, while is mostly an obvious
|
|
|
|
* result of the ifelse implementation itself. */
|
2022-12-21 11:44:47 +01:00
|
|
|
int procIf(aoclactx *ctx) {
|
2022-12-21 21:32:48 +01:00
|
|
|
int w = ctx->frame->curproc->name[0] == 'w'; /* while? */
|
|
|
|
int e = ctx->frame->curproc->name[2] == 'e'; /* ifelse? */
|
|
|
|
int retval = 1;
|
2022-12-21 11:44:47 +01:00
|
|
|
if (e) {
|
|
|
|
if (checkStackType(ctx,3,OBJ_TYPE_LIST,OBJ_TYPE_LIST,OBJ_TYPE_LIST))
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
if (checkStackType(ctx,2,OBJ_TYPE_LIST,OBJ_TYPE_LIST))
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
obj *elsebranch, *ifbranch, *cond;
|
|
|
|
elsebranch = e ? stackPop(ctx) : NULL;
|
|
|
|
ifbranch = stackPop(ctx);
|
|
|
|
cond = stackPop(ctx);
|
|
|
|
|
2022-12-22 10:40:31 +01:00
|
|
|
while(1) {
|
2022-12-21 21:32:48 +01:00
|
|
|
/* Evaluate the conditional program. */
|
|
|
|
if (eval(ctx,cond)) goto rterr;
|
|
|
|
if (checkStackType(ctx,1,OBJ_TYPE_BOOL)) goto rterr;
|
|
|
|
obj *condres = stackPop(ctx);
|
|
|
|
int res = condres->istrue;
|
|
|
|
release(condres);
|
|
|
|
|
|
|
|
/* Now eval the true or false branch depending on the
|
|
|
|
* result. */
|
2022-12-22 10:40:31 +01:00
|
|
|
if (res) { /* True branch (if, ifelse, while). */
|
2022-12-21 21:32:48 +01:00
|
|
|
if (eval(ctx,ifbranch)) goto rterr;
|
2022-12-22 10:40:31 +01:00
|
|
|
if (w) continue;
|
|
|
|
} else if (e) { /* False branch (ifelse). */
|
2022-12-21 21:32:48 +01:00
|
|
|
if (eval(ctx,elsebranch)) goto rterr;
|
|
|
|
}
|
2022-12-22 10:40:31 +01:00
|
|
|
break;
|
2022-12-21 11:44:47 +01:00
|
|
|
}
|
2022-12-21 21:32:48 +01:00
|
|
|
retval = 0; /* Success. */
|
2022-12-21 11:44:47 +01:00
|
|
|
|
2022-12-21 21:32:48 +01:00
|
|
|
rterr: /* Cleanup. We jump here on error with retval = 1. */
|
2022-12-21 11:44:47 +01:00
|
|
|
release(cond);
|
|
|
|
release(ifbranch);
|
|
|
|
release(elsebranch);
|
2022-12-21 21:32:48 +01:00
|
|
|
return retval;
|
2022-12-21 11:44:47 +01:00
|
|
|
}
|
|
|
|
|
2022-12-21 22:27:49 +01:00
|
|
|
/* Evaluate the given list, consuming it. */
|
2022-12-21 15:27:17 +01:00
|
|
|
int procEval(aoclactx *ctx) {
|
|
|
|
if (checkStackType(ctx,1,OBJ_TYPE_LIST)) return 1;
|
|
|
|
obj *l = stackPop(ctx);
|
|
|
|
int retval = eval(ctx,l);
|
|
|
|
release(l);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2022-12-22 18:30:57 +01:00
|
|
|
/* Like eval, but the code is evaluated in the stack frame of the calling
|
|
|
|
* procedure, if any. */
|
|
|
|
int procUpeval(aoclactx *ctx) {
|
|
|
|
if (checkStackType(ctx,1,OBJ_TYPE_LIST)) return 1;
|
|
|
|
obj *l = stackPop(ctx);
|
|
|
|
stackframe *saved = NULL;
|
|
|
|
if (ctx->frame->prev) {
|
|
|
|
saved = ctx->frame;
|
|
|
|
ctx->frame = ctx->frame->prev;
|
|
|
|
}
|
|
|
|
int retval = eval(ctx,l);
|
|
|
|
if (saved) ctx->frame = saved;
|
|
|
|
release(l);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2022-12-21 22:27:49 +01:00
|
|
|
/* Print the top object to stdout, consuming it */
|
2022-12-21 12:45:29 +01:00
|
|
|
int procPrint(aoclactx *ctx) {
|
|
|
|
if (checkStackLen(ctx,1)) return 1;
|
|
|
|
obj *o = stackPop(ctx);
|
|
|
|
printobj(o,PRINT_RAW);
|
|
|
|
release(o);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-22 18:30:57 +01:00
|
|
|
/* Like print but also prints a newline at the end. */
|
|
|
|
int procPrintnl(aoclactx *ctx) {
|
|
|
|
if (checkStackLen(ctx,1)) return 1;
|
|
|
|
int ret = procPrint(ctx); printf("\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2022-12-21 22:27:49 +01:00
|
|
|
/* Len -- gets object len. Works with many types.
|
|
|
|
* (object) => (len) */
|
2022-12-21 21:52:08 +01:00
|
|
|
int procLen(aoclactx *ctx) {
|
|
|
|
if (checkStackType(ctx,1,OBJ_TYPE_LIST|OBJ_TYPE_TUPLE|OBJ_TYPE_STRING|
|
|
|
|
OBJ_TYPE_SYMBOL)) return 1;
|
|
|
|
|
|
|
|
obj *o = stackPop(ctx);
|
|
|
|
int len;
|
|
|
|
switch(o->type) {
|
|
|
|
case OBJ_TYPE_LIST: case OBJ_TYPE_TUPLE: len = o->l.len; break;
|
|
|
|
case OBJ_TYPE_STRING: case OBJ_TYPE_SYMBOL: len = o->str.len; break;
|
|
|
|
}
|
|
|
|
release(o);
|
|
|
|
stackPush(ctx,newInt(len));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-21 22:27:49 +01:00
|
|
|
/* Implements -> and <-, appending element x in list with stack
|
|
|
|
*
|
2023-01-30 11:31:57 +01:00
|
|
|
* (x [1 2 3]) => ([1 2 3 x]) | ([x 1 2 3])
|
2022-12-21 22:27:49 +01:00
|
|
|
*
|
|
|
|
* <- is very inefficient as it memmoves all N elements. */
|
|
|
|
int procListAppend(aoclactx *ctx) {
|
|
|
|
int tail = ctx->frame->curproc->name[0] == '-'; /* Append on tail? */
|
|
|
|
if (checkStackType(ctx,2,OBJ_TYPE_ANY,OBJ_TYPE_LIST)) return 1;
|
|
|
|
obj *l = getUnsharedObject(stackPop(ctx));
|
|
|
|
obj *ele = stackPop(ctx);
|
|
|
|
l->l.ele = myrealloc(l->l.ele,sizeof(obj*)*(l->l.len+1));
|
|
|
|
if (tail) {
|
|
|
|
l->l.ele[l->l.len] = ele;
|
|
|
|
} else {
|
|
|
|
memmove(l->l.ele+1,l->l.ele,sizeof(obj*)*l->l.len);
|
|
|
|
l->l.ele[0] = ele;
|
|
|
|
}
|
|
|
|
l->l.len++;
|
|
|
|
stackPush(ctx,l);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-01-30 11:31:57 +01:00
|
|
|
/* get@ -- get element at index. Works for lists, strings, tuples.
|
2022-12-22 18:30:57 +01:00
|
|
|
* (object index) => (element). */
|
2022-12-21 22:27:49 +01:00
|
|
|
int procListGetAt(aoclactx *ctx) {
|
2022-12-22 18:30:57 +01:00
|
|
|
if (checkStackType(ctx,2,OBJ_TYPE_LIST|OBJ_TYPE_STRING|OBJ_TYPE_TUPLE,
|
|
|
|
OBJ_TYPE_INT)) return 1;
|
2022-12-21 22:27:49 +01:00
|
|
|
obj *idx = stackPop(ctx);
|
2022-12-22 18:30:57 +01:00
|
|
|
obj *o = stackPop(ctx);
|
2022-12-21 22:27:49 +01:00
|
|
|
int i = idx->i;
|
2022-12-22 18:30:57 +01:00
|
|
|
size_t len = o->type == OBJ_TYPE_STRING ? o->str.len : o->l.len;
|
|
|
|
if (i < 0) i = len+i; /* -1 is last element, and so forth. */
|
2022-12-21 22:27:49 +01:00
|
|
|
release(idx);
|
2022-12-22 18:30:57 +01:00
|
|
|
if (i < 0 || (size_t)i >= len) {
|
2022-12-21 22:27:49 +01:00
|
|
|
stackPush(ctx,newBool(0)); // Out of index? Just push false.
|
|
|
|
} else {
|
2022-12-22 18:30:57 +01:00
|
|
|
if (o->type == OBJ_TYPE_STRING) {
|
|
|
|
stackPush(ctx,newString(o->str.ptr+i,1));
|
|
|
|
} else {
|
|
|
|
stackPush(ctx,o->l.ele[i]);
|
|
|
|
retain(o->l.ele[i]);
|
|
|
|
}
|
2022-12-21 22:27:49 +01:00
|
|
|
}
|
2022-12-22 18:30:57 +01:00
|
|
|
release(o);
|
2022-12-22 10:40:31 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-01-31 12:22:21 +01:00
|
|
|
/* cat -- Concatenates lists, tuples, strings.
|
|
|
|
* (a b) => (a#b) */
|
|
|
|
int procCat(aoclactx *ctx) {
|
|
|
|
if (checkStackLen(ctx,2)) return 1;
|
|
|
|
if (ctx->stack[ctx->stacklen-1]->type !=
|
|
|
|
ctx->stack[ctx->stacklen-2]->type)
|
|
|
|
{
|
|
|
|
setError(ctx,NULL,"cat expects two objects of the same type");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (checkStackType(ctx,2,OBJ_TYPE_LIST|OBJ_TYPE_STRING|
|
|
|
|
OBJ_TYPE_TUPLE|OBJ_TYPE_SYMBOL,
|
|
|
|
OBJ_TYPE_LIST|OBJ_TYPE_STRING|
|
|
|
|
OBJ_TYPE_TUPLE|OBJ_TYPE_SYMBOL))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
obj *src = stackPop(ctx);
|
|
|
|
obj *dst = stackPeek(ctx,0);
|
|
|
|
dst = getUnsharedObject(dst);
|
2023-01-31 12:57:11 +01:00
|
|
|
stackSet(ctx,0,dst);
|
2023-01-31 12:22:21 +01:00
|
|
|
|
|
|
|
if (src->type & (OBJ_TYPE_STRING|OBJ_TYPE_SYMBOL)) {
|
|
|
|
dst->str.ptr = myrealloc(dst->str.ptr,dst->str.len+src->str.len+1);
|
|
|
|
memcpy(dst->str.ptr+dst->str.len,src->str.ptr,src->str.len+1);
|
|
|
|
dst->str.len += src->str.len;
|
|
|
|
} else {
|
|
|
|
for (size_t j = 0; j < src->l.len; j++) retain(src->l.ele[j]);
|
|
|
|
dst->l.ele = myrealloc(dst->l.ele,(dst->l.len+src->l.len)*sizeof(obj*));
|
|
|
|
memcpy(dst->l.ele+dst->l.len,src->l.ele,src->l.len*sizeof(obj*));
|
|
|
|
dst->l.len += src->l.len;
|
|
|
|
}
|
|
|
|
release(src);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-01-31 12:57:11 +01:00
|
|
|
// Turns the list on the stack into a tuple.
|
|
|
|
int procMakeTuple(aoclactx *ctx) {
|
|
|
|
if (checkStackType(ctx,1,OBJ_TYPE_LIST)) return 1;
|
|
|
|
obj *l = stackPop(ctx);
|
|
|
|
l = getUnsharedObject(l);
|
|
|
|
l->type = OBJ_TYPE_TUPLE;
|
2023-01-31 13:22:12 +01:00
|
|
|
l->l.quoted = 0;
|
2023-01-31 12:57:11 +01:00
|
|
|
stackPush(ctx,l);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-22 10:40:31 +01:00
|
|
|
/* Show the current stack. Useful for debugging. */
|
|
|
|
int procShowStack(aoclactx *ctx) {
|
|
|
|
stackShow(ctx);
|
2022-12-21 22:27:49 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-22 18:30:57 +01:00
|
|
|
/* Load the "standard library" of Aocla in the specified context. */
|
2022-12-19 15:53:44 +01:00
|
|
|
void loadLibrary(aoclactx *ctx) {
|
|
|
|
addProc(ctx,"+",procBasicMath,NULL);
|
|
|
|
addProc(ctx,"-",procBasicMath,NULL);
|
|
|
|
addProc(ctx,"*",procBasicMath,NULL);
|
|
|
|
addProc(ctx,"/",procBasicMath,NULL);
|
2022-12-20 12:52:41 +01:00
|
|
|
addProc(ctx,"==",procCompare,NULL);
|
|
|
|
addProc(ctx,">=",procCompare,NULL);
|
|
|
|
addProc(ctx,">",procCompare,NULL);
|
|
|
|
addProc(ctx,"<=",procCompare,NULL);
|
|
|
|
addProc(ctx,"<",procCompare,NULL);
|
|
|
|
addProc(ctx,"!=",procCompare,NULL);
|
|
|
|
addProc(ctx,"sort",procSortList,NULL);
|
2022-12-20 22:24:22 +01:00
|
|
|
addProc(ctx,"def",procDef,NULL);
|
2022-12-21 11:44:47 +01:00
|
|
|
addProc(ctx,"if",procIf,NULL);
|
|
|
|
addProc(ctx,"ifelse",procIf,NULL);
|
2022-12-21 21:32:48 +01:00
|
|
|
addProc(ctx,"while",procIf,NULL);
|
2022-12-21 15:27:17 +01:00
|
|
|
addProc(ctx,"eval",procEval,NULL);
|
2022-12-22 18:30:57 +01:00
|
|
|
addProc(ctx,"upeval",procUpeval,NULL);
|
2022-12-21 12:45:29 +01:00
|
|
|
addProc(ctx,"print",procPrint,NULL);
|
2022-12-22 18:30:57 +01:00
|
|
|
addProc(ctx,"printnl",procPrintnl,NULL);
|
2022-12-21 21:52:08 +01:00
|
|
|
addProc(ctx,"len",procLen,NULL);
|
2022-12-21 22:27:49 +01:00
|
|
|
addProc(ctx,"->",procListAppend,NULL);
|
|
|
|
addProc(ctx,"<-",procListAppend,NULL);
|
|
|
|
addProc(ctx,"get@",procListGetAt,NULL);
|
2022-12-22 10:40:31 +01:00
|
|
|
addProc(ctx,"showstack",procShowStack,NULL);
|
2023-01-31 12:22:21 +01:00
|
|
|
addProc(ctx,"cat",procCat,NULL);
|
2023-01-31 12:57:11 +01:00
|
|
|
addProc(ctx,"make-tuple",procMakeTuple,NULL);
|
2022-12-22 18:30:57 +01:00
|
|
|
|
|
|
|
/* Since the point of this interpreter to be a short and understandable
|
|
|
|
* programming example, we implement as much as possible in Aocla itself
|
|
|
|
* without caring much about performances. */
|
2022-12-20 22:08:02 +01:00
|
|
|
addProcString(ctx,"dup","[(x) $x $x]");
|
|
|
|
addProcString(ctx,"swap","[(x y) $y $x]");
|
|
|
|
addProcString(ctx,"drop","[(_)]");
|
2023-01-30 11:18:37 +01:00
|
|
|
|
|
|
|
/* [1 2 3] [dup *] map => [1 4 9] */
|
2023-01-30 11:45:55 +01:00
|
|
|
addProcString(ctx,"map", "[(l f) $l len (e) 0 (j) [] [$j $e <] [$l $j get@ $f upeval swap -> $j 1 + (j)] while]");
|
2023-01-30 11:18:37 +01:00
|
|
|
|
|
|
|
/* [1 2 3] [printnl] foreach */
|
|
|
|
addProcString(ctx,"foreach"," [(l f) $l len (e) 0 (j) [$j $e <] [$l $j get@ $f upeval $j 1 + (j)] while]");
|
|
|
|
|
|
|
|
/* [1 2 3] first => 1 */
|
|
|
|
addProcString(ctx,"first","[0 get@]");
|
|
|
|
|
|
|
|
/* [1 2 3] rest => [2 3] */
|
|
|
|
addProcString(ctx,"rest","[#t (f) [] (n) [[$f] [#f (f) drop] [$n -> (n)] ifelse] foreach $n]");
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
|
2022-12-19 15:53:44 +01:00
|
|
|
/* ================================ CLI ===================================== */
|
|
|
|
|
2022-12-15 22:40:24 +01:00
|
|
|
/* Real Eval Print Loop. */
|
2022-12-15 14:55:40 +01:00
|
|
|
void repl(void) {
|
2022-12-15 22:40:24 +01:00
|
|
|
char buf[1024];
|
|
|
|
aoclactx *ctx = newInterpreter();
|
|
|
|
while(1) {
|
|
|
|
printf("aocla> "); fflush(stdout);
|
|
|
|
|
|
|
|
/* Aocla programs are Aocla lists, so when users just write
|
|
|
|
* in the REPL we need to surround with []. */
|
|
|
|
buf[0] = '[';
|
2022-12-19 11:20:38 +01:00
|
|
|
|
|
|
|
if (fgets(buf+1,sizeof(buf)-2,stdin) == NULL) break;
|
|
|
|
size_t l = strlen(buf);
|
|
|
|
if (l && buf[l-1] == '\n') buf[--l] = 0;
|
|
|
|
if (l == 0) continue;
|
|
|
|
|
|
|
|
/* Add closing ]. */
|
|
|
|
buf[l] = ']';
|
|
|
|
buf[l+1] = 0;
|
2022-12-15 22:40:24 +01:00
|
|
|
|
2022-12-21 15:27:17 +01:00
|
|
|
obj *list = parseObject(ctx,buf,NULL,NULL);
|
2022-12-15 22:40:24 +01:00
|
|
|
if (!list) {
|
2022-12-21 11:44:47 +01:00
|
|
|
printf("Parsing program: %s\n", ctx->errstr);
|
2022-12-15 22:40:24 +01:00
|
|
|
continue;
|
|
|
|
}
|
2022-12-19 15:53:44 +01:00
|
|
|
if (eval(ctx,list)) {
|
|
|
|
printf("%s\n", ctx->errstr);
|
|
|
|
} else {
|
|
|
|
stackShow(ctx);
|
|
|
|
}
|
|
|
|
release(list);
|
2022-12-15 22:40:24 +01:00
|
|
|
}
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
|
2022-12-21 11:44:47 +01:00
|
|
|
/* Execute the program contained in the specified filename.
|
|
|
|
* Return 1 on error, 0 otherwise. */
|
|
|
|
int evalFile(const char *filename, char **argv, int argc) {
|
|
|
|
FILE *fp = fopen(filename,"r");
|
|
|
|
if (!fp) {
|
|
|
|
perror("Opening file");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read file into buffer. */
|
|
|
|
int incrlen = 1024; /* How much to allocate when we are out of buffer. */
|
|
|
|
char *buf = myalloc(incrlen);
|
|
|
|
size_t buflen = 1, nread;
|
|
|
|
size_t leftspace = incrlen-buflen;
|
|
|
|
buf[0] = '[';
|
|
|
|
while((nread = fread(buf+buflen,1,leftspace,fp)) > 0) {
|
|
|
|
buflen += nread;
|
|
|
|
leftspace -= nread;
|
|
|
|
if (leftspace == 0) {
|
|
|
|
buf = myrealloc(buf,buflen+incrlen);
|
|
|
|
leftspace += incrlen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (leftspace < 2) buf = myrealloc(buf,buflen+2);
|
|
|
|
buf[buflen++] = ']';
|
|
|
|
buf[buflen++] = 0;
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
/* Parse the program before eval(). */
|
|
|
|
aoclactx *ctx = newInterpreter();
|
2022-12-21 15:27:17 +01:00
|
|
|
int line = 1;
|
|
|
|
obj *l = parseObject(ctx,buf,NULL,&line);
|
2022-12-21 11:44:47 +01:00
|
|
|
free(buf);
|
2022-12-21 12:45:29 +01:00
|
|
|
if (!l) {
|
2022-12-21 11:44:47 +01:00
|
|
|
printf("Parsing program: %s\n", ctx->errstr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Before evaluating the program, let's push on the arguments
|
|
|
|
* we received on the stack. */
|
|
|
|
for (int j = 0; j < argc; j++) {
|
2022-12-21 15:27:17 +01:00
|
|
|
obj *o = parseObject(NULL,argv[j],NULL,0);
|
2022-12-21 11:44:47 +01:00
|
|
|
if (!o) {
|
|
|
|
printf("Parsing command line argument: %s\n", ctx->errstr);
|
2022-12-21 12:45:29 +01:00
|
|
|
release(l);
|
2022-12-21 11:44:47 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
stackPush(ctx,o);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Run the program. */
|
2022-12-21 12:45:29 +01:00
|
|
|
int retval = eval(ctx,l);
|
2022-12-21 15:27:17 +01:00
|
|
|
if (retval) printf("Runtime error: %s\n", ctx->errstr);
|
2022-12-21 12:45:29 +01:00
|
|
|
release(l);
|
2022-12-21 11:44:47 +01:00
|
|
|
return retval;
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
if (argc == 1) {
|
|
|
|
repl();
|
|
|
|
} else if (argc >= 2) {
|
2022-12-22 18:30:57 +01:00
|
|
|
if (evalFile(argv[1],argv+2,argc-2)) return 1;
|
2022-12-15 14:55:40 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|