mes/mes.c

1235 lines
25 KiB
C
Raw Normal View History

/*
* Mes --- Maxwell Equations of Software
* Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
*
* This file is part of Mes.
*
* Mes is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* Mes is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
*/
// (setq comment-start "//")
// (setq comment-end "")
/*
* The Maxwell Equations of Software -- John McCarthy page 13
* http://www.softwarepreservation.org/projects/LISP/book/LISP%201.5%20Programmers%20Manual.pdf
*/
#define _GNU_SOURCE
#include <assert.h>
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
#define DEBUG 0
2016-07-08 17:02:06 +01:00
#define MACROS 1
#define QUASIQUOTE 1
2016-07-08 17:02:06 +01:00
#ifndef QUOTE_SUGAR
#define QUOTE_SUGAR 1
#endif
2016-07-11 18:32:11 +01:00
enum type {CHAR, NUMBER, PAIR, STRING, SYMBOL, VALUES, VECTOR,
2016-07-10 21:43:23 +01:00
FUNCTION0, FUNCTION1, FUNCTION2, FUNCTION3, FUNCTIONn};
struct scm_t;
typedef struct scm_t* (*function0_t) (void);
typedef struct scm_t* (*function1_t) (struct scm_t*);
typedef struct scm_t* (*function2_t) (struct scm_t*, struct scm_t*);
typedef struct scm_t* (*function3_t) (struct scm_t*, struct scm_t*, struct scm_t*);
2016-07-10 21:43:23 +01:00
typedef struct scm_t* (*functionn_t) (struct scm_t*);
typedef struct scm_t {
enum type type;
union {
char *name;
struct scm_t* car;
2016-07-11 09:38:02 +01:00
int length;
};
union {
int value;
function0_t function0;
function1_t function1;
2016-05-29 12:44:03 +01:00
function2_t function2;
function3_t function3;
2016-07-10 21:43:23 +01:00
functionn_t functionn;
struct scm_t* cdr;
2016-07-11 09:38:02 +01:00
struct scm_t** vector;
};
} scm;
2016-07-09 22:12:25 +01:00
#define MES 1
#include "mes.h"
scm *display_helper (scm*, bool, char*, bool);
2016-07-10 09:43:26 +01:00
bool
symbol_eq (scm *x, char *s)
{
2016-07-10 21:43:23 +01:00
return x->type == SYMBOL && !strcmp (x->name, s);
2016-07-10 09:43:26 +01:00
}
2016-07-09 22:12:25 +01:00
2016-07-10 21:43:23 +01:00
scm scm_nil = {SYMBOL, "()"};
scm scm_dot = {SYMBOL, "."};
scm scm_t = {SYMBOL, "#t"};
scm scm_f = {SYMBOL, "#f"};
scm scm_lambda = {SYMBOL, "lambda"};
scm scm_label = {SYMBOL, "label"};
scm scm_unspecified = {SYMBOL, "*unspecified*"};
scm scm_symbol_cond = {SYMBOL, "cond"};
scm scm_symbol_quote = {SYMBOL, "quote"};
#if QUASIQUOTE
2016-07-10 21:43:23 +01:00
scm scm_symbol_quasiquote = {SYMBOL, "quasiquote"};
scm scm_symbol_unquote = {SYMBOL, "unquote"};
#endif
#if MACROS
2016-07-10 21:43:23 +01:00
scm scm_macro = {SYMBOL, "*macro*"};
#endif
2016-07-10 09:43:26 +01:00
2016-07-10 21:43:23 +01:00
scm scm_symbol_EOF = {SYMBOL, "EOF"};
scm scm_symbol_EOF2 = {SYMBOL, "EOF2"};
2016-07-11 18:32:11 +01:00
scm scm_symbol_call_with_values = {SYMBOL, "call-with-values"};
2016-07-10 21:43:23 +01:00
scm scm_symbol_current_module = {SYMBOL, "current-module"};
scm scm_symbol_define = {SYMBOL, "define"};
scm scm_symbol_define_macro = {SYMBOL, "define-macro"};
scm scm_symbol_eval = {SYMBOL, "eval"};
scm scm_symbol_loop2 = {SYMBOL, "loop2"};
scm scm_symbol_set_x = {SYMBOL, "set!"};
2016-07-11 18:32:11 +01:00
scm scm_symbol_values = {SYMBOL, "values"};
// PRIMITIVES
scm *
2016-05-29 12:44:03 +01:00
atom_p (scm *x)
{
return x->type == PAIR ? &scm_f : &scm_t;
}
scm *
car (scm *x)
{
assert (x->type == PAIR);
return x->car;
}
scm *
cdr (scm *x)
{
assert (x->type == PAIR);
return x->cdr;
}
scm *
cons (scm *x, scm *y)
{
scm *p = malloc (sizeof (scm));
p->type = PAIR;
p->car = x;
p->cdr = y;
return p;
}
scm *
eq_p (scm *x, scm *y)
{
return (x == y
2016-07-10 23:15:28 +01:00
|| (x->type == CHAR && y->type == CHAR
&& x->value == y->value)
|| (x->type == NUMBER && y->type == NUMBER
&& x->value == y->value)
// FIXME: alist lookup symbols
2016-05-29 12:44:03 +01:00
|| (atom_p (x) == &scm_t
2016-07-10 23:15:28 +01:00
&& x->type != CHAR
&& y->type != CHAR
&& x->type != NUMBER
2016-05-29 12:44:03 +01:00
&& y->type != NUMBER
2016-07-11 09:38:02 +01:00
&& x->type != VECTOR
&& y->type != VECTOR
2016-05-29 12:44:03 +01:00
&& atom_p (y) == &scm_t
&& !strcmp (x->name, y->name)))
? &scm_t : &scm_f;
}
scm *
null_p (scm *x)
{
return eq_p (x, &scm_nil);
}
scm *
pair_p (scm *x)
{
return x->type == PAIR ? &scm_t : &scm_f;
}
2016-07-10 09:43:26 +01:00
scm *
set_cdr_x (scm *x, scm *e)
{
assert (x->type == PAIR);
x->cdr = e;
2016-07-10 12:47:56 +01:00
return &scm_unspecified;
}
scm *
set_x (scm *x, scm *e, scm *a)
{
2016-07-11 09:48:25 +01:00
return set_cdr_x (assq (x, a), e);
2016-07-10 09:43:26 +01:00
}
2016-07-10 09:43:26 +01:00
scm *
set_env_x (scm *x, scm *e, scm *a)
{
2016-07-11 09:48:25 +01:00
return set_cdr_x (assq (x, a), e);
2016-07-10 09:43:26 +01:00
}
scm *
quote (scm *x)
{
2016-07-09 22:12:25 +01:00
return cons (&scm_symbol_quote, x);
}
#if QUASIQUOTE
scm *
unquote (scm *x)
{
2016-07-09 22:12:25 +01:00
return cons (&scm_symbol_unquote, x);
}
scm *
quasiquote (scm *x)
{
2016-07-09 22:12:25 +01:00
return cons (&scm_symbol_quasiquote, x);
}
#endif
//Library functions
// Derived, non-primitives
scm *caar (scm *x) {return car (car (x));}
scm *cadr (scm *x) {return car (cdr (x));}
scm *cdar (scm *x) {return cdr (car (x));}
scm *cddr (scm *x) {return cdr (cdr (x));}
scm *caadr (scm *x) {return car (car (cdr (x)));}
scm *caddr (scm *x) {return car (cdr (cdr (x)));}
scm *cdadr (scm *x) {return cdr (car (cdr (x)));}
scm *cadar (scm *x) {return car (cdr (car (x)));}
scm *cddar (scm *x) {return cdr (cdr (car (x)));}
scm *cdddr (scm *x) {return cdr (cdr (cdr (x)));}
scm *
pairlis (scm *x, scm *y, scm *a)
{
2016-07-08 17:02:06 +01:00
#if DEBUG
2016-05-29 12:44:03 +01:00
printf ("pairlis x=");
display (x);
printf (" y=");
display (y);
puts ("");
#endif
if (x == &scm_nil)
return a;
2016-07-08 17:02:06 +01:00
if (atom_p (x) == &scm_t)
return cons (cons (x, y), a);
return cons (cons (car (x), car (y)),
pairlis (cdr (x), cdr (y), a));
}
scm *
2016-07-11 09:48:25 +01:00
assq (scm *x, scm *a)
{
if (a == &scm_nil) {
#if DEBUG
printf ("alist miss: %s\n", x->name);
#endif
return &scm_f;
}
if (eq_p (caar (a), x) == &scm_t)
return car (a);
2016-07-11 09:48:25 +01:00
return assq (x, cdr (a));
}
scm *
apply_env_ (scm *fn, scm *x, scm *a)
{
#if DEBUG
printf ("apply_env fn=");
display (fn);
2016-07-08 17:02:06 +01:00
printf (" x=");
display (x);
puts ("");
#endif
2016-05-29 12:44:03 +01:00
if (atom_p (fn) != &scm_f)
{
2016-07-09 13:58:37 +01:00
if (fn == &scm_symbol_current_module) // FIXME
return a;
2016-07-11 18:32:11 +01:00
if (eq_p (fn, &scm_symbol_call_with_values) == &scm_t)
2016-07-11 20:50:59 +01:00
return call (&scm_call_with_values_env, append2 (x, cons (a, &scm_nil)));
if (builtin_p (fn) == &scm_t)
return call (fn, x);
return apply_env (eval (fn, a), x, a);
}
2016-07-10 12:45:54 +01:00
else if (car (fn) == &scm_lambda)
return begin_env (cddr (fn), pairlis (cadr (fn), x, a));
else if (car (fn) == &scm_label)
return apply_env (caddr (fn), x, cons (cons (cadr (fn), caddr (fn)), a));
return &scm_unspecified;
}
2016-07-10 12:45:54 +01:00
scm *
begin_env (scm *body, scm *a)
{
if (body == &scm_nil) return &scm_unspecified;
scm *result = eval (car (body), a);
if (cdr (body) == &scm_nil)
return result;
return begin_env (cdr (body), a);
}
scm *
2016-05-29 12:44:03 +01:00
eval_ (scm *e, scm *a)
{
2016-07-08 17:02:06 +01:00
#if DEBUG
printf ("eval e=");
display (e);
puts ("");
#endif
2016-07-10 23:15:28 +01:00
if (e->type == CHAR)
return e;
else if (e->type == NUMBER)
return e;
2016-07-10 21:43:23 +01:00
else if (e->type == STRING)
return e;
2016-07-11 09:38:02 +01:00
else if (e->type == VECTOR)
return e;
2016-05-29 12:44:03 +01:00
else if (atom_p (e) == &scm_t) {
2016-07-11 09:48:25 +01:00
scm *y = assq (e, a);
if (y == &scm_f) {
printf ("eval: no such symbol: %s\n", e->name);
exit (1);
}
return cdr (y);
}
if (builtin_p (e) == &scm_t)
return e;
2016-05-29 12:44:03 +01:00
else if (atom_p (car (e)) == &scm_t)
{
2016-07-08 17:02:06 +01:00
#if MACROS
scm *macro;
#endif // MACROS
2016-05-29 12:44:03 +01:00
if (car (e) == &scm_symbol_quote)
return cadr (e);
2016-07-09 21:47:36 +01:00
if (car (e) == &scm_lambda)
return e;
2016-07-10 09:43:26 +01:00
if (car (e) == &scm_symbol_set_x)
return set_env_x (cadr (e), eval (caddr (e), a), a);
#if QUASIQUOTE
else if (car (e) == &scm_symbol_unquote)
return eval (cadr (e), a);
else if (car (e) == &scm_symbol_quasiquote) {
#if DEBUG
printf ("cadr e:");
display (cadr (e));
puts ("");
printf ("qq:");
display (eval_quasiquote (cadr (e), a));
puts ("");
#endif // DEBUG
return eval_quasiquote (cadr (e), a);
}
#endif // QUASIQUOTE
2016-05-29 12:44:03 +01:00
else if (car (e) == &scm_symbol_cond)
return evcon (cdr (e), a);
2016-07-08 17:02:06 +01:00
#if MACROS
2016-07-11 09:48:25 +01:00
else if ((macro = assq (car (e), cdr (assq (&scm_macro, a)))) != &scm_f)
return eval (apply_env_ (cdr (macro), cdr (e), a), a);
2016-07-08 17:02:06 +01:00
#endif // MACROS
return apply_env (car (e), evlis (cdr (e), a), a);
}
return apply_env (car (e), evlis (cdr (e), a), a);
}
scm *
2016-05-29 12:44:03 +01:00
evcon_ (scm *c, scm *a)
{
2016-05-29 12:44:03 +01:00
#if DEBUG
printf ("evcon_ clause=");
display (car (c));
puts ("");
#endif
if (c == &scm_nil) return &scm_unspecified;
if (eval (caar (c), a) != &scm_f) {
2016-05-29 12:44:03 +01:00
#if DEBUG
//if (fn != &scm_display && fn != &scm_call)
//if (fn != &scm_call)
printf ("#t clause=");
display (car (c));
printf (" cddar=");
display (cddar (c));
printf (" nil=%d", cddar (c) == &scm_nil);
puts ("");
#endif
if (cddar (c) == &scm_nil)
return eval (cadar (c), a);
eval (cadar (c), a);
2016-05-29 12:44:03 +01:00
return evcon_ (cons (cons (&scm_t, cddar (c)), &scm_nil), a);
}
2016-05-29 12:44:03 +01:00
return evcon_ (cdr (c), a);
}
scm *
evcon (scm *c, scm *a)
{
#if DEBUG
printf ("\n****evcon=");
display (c);
puts ("");
#endif
return evcon_ (c, a);
}
2016-05-29 12:44:03 +01:00
scm *
evlis (scm *m, scm *a)
{
2016-07-08 17:02:06 +01:00
#if DEBUG
printf ("evlis m=");
display (m);
puts ("");
#endif
if (m == &scm_nil)
return &scm_nil;
2016-07-09 21:01:00 +01:00
scm *e = eval (car (m), a);
return cons (e, evlis (cdr (m), a));
}
2016-05-29 12:44:03 +01:00
//Helpers
scm *
builtin_p (scm *x)
{
return (x->type == FUNCTION0
|| x->type == FUNCTION1
|| x->type == FUNCTION2
2016-07-10 21:43:23 +01:00
|| x->type == FUNCTION3
|| x->type == FUNCTIONn)
? &scm_t : &scm_f;
}
2016-07-10 23:15:28 +01:00
scm *
char_p (scm *x)
{
return x->type == CHAR ? &scm_t : &scm_f;
}
scm *
number_p (scm *x)
{
return x->type == NUMBER ? &scm_t : &scm_f;
}
2016-05-29 12:44:03 +01:00
2016-07-10 21:43:23 +01:00
scm *
string_p (scm *x)
{
return x->type == STRING ? &scm_t : &scm_f;
}
scm *
symbol_p (scm *x)
{
//TODO: #f,#t,nil also `symbols' atm
return x->type == SYMBOL ? &scm_t : &scm_f;
}
2016-07-11 09:38:02 +01:00
scm *
vector_p (scm *x)
{
return x->type == VECTOR ? &scm_t : &scm_f;
}
2016-05-29 12:44:03 +01:00
scm *
display (scm *x)
{
return display_helper (x, false, "", false);
}
scm *
call (scm *fn, scm *x)
{
2016-05-29 12:44:03 +01:00
#if DEBUG
//if (fn != &scm_display && fn != &scm_call)
//if (fn != &scm_call)
{
printf ("\ncall fn=");
display (fn);
printf (" x=");
display (x);
puts ("");
}
#endif
if (fn->type == FUNCTION0)
return fn->function0 ();
2016-07-11 18:32:11 +01:00
if (x->car->type == VALUES)
x = cons (x->car->cdr->car, &scm_nil);
2016-05-29 12:44:03 +01:00
if (fn->type == FUNCTION1)
return fn->function1 (car (x));
if (fn->type == FUNCTION2)
return fn->function2 (car (x), cadr (x));
if (fn->type == FUNCTION3)
return fn->function3 (car (x), cadr (x), caddr (x));
2016-07-10 21:43:23 +01:00
if (fn->type == FUNCTIONn)
return fn->functionn (x);
return &scm_unspecified;
}
scm *
2016-07-11 20:50:59 +01:00
append2 (scm *x, scm *y)
{
if (x == &scm_nil) return y;
assert (x->type == PAIR);
2016-07-11 20:50:59 +01:00
return cons (car (x), append2 (cdr (x), y));
}
2016-07-11 20:50:59 +01:00
scm *
append (scm *x/*...*/)
{
if (x == &scm_nil) return &scm_nil;
return append2 (car (x), append (cdr (x)));
}
2016-07-10 23:15:28 +01:00
scm *
make_char (int x)
{
scm *p = malloc (sizeof (scm));
p->type = CHAR;
p->value = x;
return p;
}
scm *
2016-07-10 21:43:23 +01:00
make_number (int x)
{
scm *p = malloc (sizeof (scm));
2016-07-10 21:43:23 +01:00
p->type = NUMBER;
p->value = x;
return p;
}
scm *
make_string (char const *s)
{
scm *p = malloc (sizeof (scm));
p->type = STRING;
p->name = strdup (s);
return p;
}
scm *
2016-07-10 21:43:23 +01:00
make_symbol (char const *s)
{
2016-07-10 21:43:23 +01:00
// TODO: alist lookup symbols
scm *p = malloc (sizeof (scm));
2016-07-10 21:43:23 +01:00
p->type = SYMBOL;
p->name = strdup (s);
return p;
}
2016-07-11 09:38:02 +01:00
scm *
make_vector (int n)
{
scm *p = malloc (sizeof (scm));
p->type = VECTOR;
p->length = n;
p->vector = malloc (n * sizeof (scm*));
return p;
}
2016-07-10 23:15:28 +01:00
scm *
string (scm *x/*...*/)
{
char buf[256] = "";
char *p = buf;
while (x != &scm_nil)
{
scm *s = car (x);
assert (s->type == CHAR);
*p++ = s->value;
x = cdr (x);
}
return make_string (buf);
}
2016-07-10 21:43:23 +01:00
scm *
string_append (scm *x/*...*/)
{
char buf[256] = "";
while (x != &scm_nil)
{
scm *s = car (x);
assert (s->type == STRING);
strcat (buf, s->name);
x = cdr (x);
}
return make_string (buf);
}
scm *
string_length (scm *x)
{
assert (x->type == STRING);
return make_number (strlen (x->name));
}
2016-07-10 23:21:45 +01:00
scm *
length (scm *x)
{
int n = 0;
while (x != &scm_nil)
{
n++;
x = cdr (x);
}
return make_number (n);
}
2016-07-11 09:38:02 +01:00
#if 0
scm *
builtin_list (scm *x/*...*/) // int
{
return x;
}
scm *
vector (scm *x/*...*/) // int
{
return list_to_vector (x);
}
#endif
2016-07-11 18:32:11 +01:00
scm *
values (scm *x/*...*/)
{
scm *v = cons (0, x);
v->type = VALUES;
return v;
}
scm *
call_with_values_env (scm *producer, scm *consumer, scm *a)
{
scm *v = apply_env_ (producer, &scm_nil, a);
2016-07-11 18:32:11 +01:00
if (v->type == VALUES)
v = v->cdr;
return apply_env_ (consumer, v, a);
2016-07-11 18:32:11 +01:00
}
2016-07-11 09:38:02 +01:00
scm *
vector_length (scm *x)
{
assert (x->type == VECTOR);
return make_number (x->length);
}
scm *
vector_ref (scm *x, scm *i)
{
assert (x->type == VECTOR);
assert (i->value < x->length);
return x->vector[i->value];
}
scm *
vector_set_x (scm *x, scm *i, scm *e)
{
assert (x->type == VECTOR);
assert (i->value < x->length);
x->vector[i->value] = e;
return &scm_unspecified;
}
scm *
lookup (char *x, scm *a)
{
if (isdigit (*x) || (*x == '-' && isdigit (*(x+1))))
return make_number (atoi (x));
2016-05-29 12:44:03 +01:00
if (*x == '\'') return &scm_symbol_quote;
2016-07-11 21:47:12 +01:00
if (!strcmp (x, scm_unspecified.name)) return &scm_unspecified;
2016-05-29 12:44:03 +01:00
if (!strcmp (x, scm_symbol_cond.name)) return &scm_symbol_cond;
if (!strcmp (x, scm_symbol_quote.name)) return &scm_symbol_quote;
if (!strcmp (x, scm_lambda.name)) return &scm_lambda;
if (!strcmp (x, scm_label.name)) return &scm_label;
if (!strcmp (x, scm_nil.name)) return &scm_nil;
2016-07-10 12:47:56 +01:00
if (!strcmp (x, scm_symbol_set_x.name)) return &scm_symbol_set_x;
2016-05-29 12:44:03 +01:00
#if QUASIQUOTE
if (*x == '`') return &scm_symbol_quasiquote;
if (*x == ',') return &scm_symbol_unquote;
if (!strcmp (x, scm_symbol_unquote.name)) return &scm_symbol_unquote;
if (!strcmp (x, scm_symbol_quasiquote.name)) return &scm_symbol_quasiquote;
#endif
2016-07-10 21:43:23 +01:00
return make_symbol (x);
2016-05-29 12:44:03 +01:00
}
scm *
lookup_char (int c, scm *a)
{
char buf[2];
buf[0] = c;
buf[1] = 0;
return lookup (buf, a);
}
2016-05-29 12:44:03 +01:00
char *
2016-07-11 20:50:59 +01:00
list2str (scm *l) // char*
2016-05-29 12:44:03 +01:00
{
static char buf[256];
char *p = buf;
while (l != &scm_nil) {
scm *c = car (l);
assert (c->type == NUMBER);
*p++ = c->value;
l = cdr (l);
}
2016-05-29 12:44:03 +01:00
*p = 0;
return buf;
}
2016-07-11 09:38:02 +01:00
scm*
list_to_vector (scm *x)
{
int n = length (x)->value;
scm *v = make_vector (n);
scm **p = v->vector;
while (x != &scm_nil)
{
*p++ = car (x);
x = cdr (x);
}
return v;
}
scm*
number_to_string (scm *x)
{
assert (x->type == NUMBER);
char buf[256];
sprintf (buf,"%d", x->value);
return make_string (buf);
}
scm*
string_to_symbol (scm *x)
{
assert (x->type == STRING);
return make_symbol (x->name);
}
scm*
symbol_to_string (scm *x)
{
assert (x->type == SYMBOL);
return make_string (x->name);
}
2016-07-11 09:38:02 +01:00
scm*
vector_to_list (scm *v)
{
scm *x = &scm_nil;
for (int i = 0; i < v->length; i++)
2016-07-11 20:50:59 +01:00
x = append2 (x, cons (v->vector[i], &scm_nil));
2016-07-11 09:38:02 +01:00
return x;
}
2016-05-29 12:44:03 +01:00
scm *
builtin_lookup (scm *l, scm *a)
{
return lookup (list2str (l), a);
}
scm *
cossa (scm *x, scm *a)
{
if (a == &scm_nil) return &scm_f;
if (eq_p (cdar (a), x) == &scm_t)
return car (a);
return cossa (x, cdr (a));
}
scm *
newline ()
{
puts ("");
return &scm_unspecified;
}
scm *
display_helper (scm *x, bool cont, char *sep, bool quote)
{
scm *r;
2016-05-29 12:44:03 +01:00
printf ("%s", sep);
2016-07-10 23:15:28 +01:00
if (x->type == CHAR && x->value == 10) printf ("#\\%s", "newline");
else if (x->type == CHAR && x->value == 32) printf ("#\\%s", "space");
else if (x->type == CHAR) printf ("#\\%c", x->value);
else if (x->type == NUMBER) printf ("%d", x->value);
else if (x->type == PAIR) {
#if QUOTE_SUGAR
if (car (x) == &scm_quote) {
printf ("'");
return display_helper (car (cdr (x)), cont, "", true);
}
#if QUASIQUOTE
2016-07-10 23:17:12 +01:00
if (car (x) == &scm_quasiquote) {
printf ("`");
return display_helper (car (cdr (x)), cont, "", true);
}
2016-07-10 23:17:12 +01:00
if (car (x) == &scm_unquote) {
printf (",");
return display_helper (car (cdr (x)), cont, "", true);
}
#endif
#endif
if (!cont) printf ("(");
display (car (x));
if (cdr (x)->type == PAIR)
display_helper (cdr (x), true, " ", false);
else if (cdr (x) != &scm_nil) {
printf (" . ");
display (cdr (x));
}
if (!cont) printf (")");
}
2016-07-11 09:38:02 +01:00
else if (x->type == VECTOR) {
printf ("#(");
for (int i = 0; i < x->length; i++)
display_helper (x->vector[i], true, i ? " " : "", false);
printf (")");
}
2016-05-29 12:44:03 +01:00
else if (atom_p (x) == &scm_t) printf ("%s", x->name);
return &scm_unspecified;
}
// READ
2016-05-29 12:44:03 +01:00
int
2016-07-09 22:12:25 +01:00
ungetchar (int c) //int
{
return ungetc (c, stdin);
}
int
2016-07-09 22:12:25 +01:00
peekchar () //int
{
int c = getchar ();
ungetchar (c);
return c;
}
scm*
builtin_getchar ()
{
return make_number (getchar ());
}
scm*
builtin_peekchar ()
{
return make_number (peekchar ());
}
scm*
2016-07-09 22:12:25 +01:00
builtin_ungetchar (scm *c)
{
assert (c->type == NUMBER);
ungetchar (c->value);
return c;
}
int
readcomment (int c)
{
if (c == '\n') return c;
return readcomment (getchar ());
}
int
readblock (int c)
{
if (c == '!' && peekchar () == '#') return getchar ();
return readblock (getchar ());
}
scm *
readword (int c, char* w, scm *a)
{
if (c == EOF && !w) return &scm_nil;
if (c == '\n' && !w) return readword (getchar (), w, a);
2016-07-08 17:02:06 +01:00
if (c == '\n' && *w == '.' && w[1] == 0) return &scm_dot;
if (c == EOF || c == '\n') return lookup (w, a);
if (c == ' ') return readword ('\n', w, a);
2016-07-10 21:43:23 +01:00
if (c == '"' && !w) return readstring ();
if (c == '"') {ungetchar (c); return lookup (w, a);}
2016-07-11 09:38:02 +01:00
if (c == '(' && !w) return readlist (a);
if (c == '(') {ungetchar (c); return lookup (w, a);}
if (c == ')' && !w) {ungetchar (c); return &scm_nil;}
if (c == ')') {ungetchar (c); return lookup (w, a);}
if ((c == '\''
#if QUASIQUOTE
|| c == '`'
|| c == ','
#endif
)
&& !w) {return cons (lookup_char (c, a),
cons (readword (getchar (), w, a),
&scm_nil));}
if (c == ';') {readcomment (c); return readword ('\n', w, a);}
2016-07-10 23:15:28 +01:00
if (c == '#' && peekchar () == '\\') {getchar (); return readchar ();}
2016-07-11 09:38:02 +01:00
if (c == '#' && !w && peekchar () == '(') {getchar (); return list_to_vector (readlist (a));}
if (c == '#' && peekchar () == '(') {ungetchar (c); return lookup (w, a);}
if (c == '#' && peekchar () == '!') {getchar (); readblock (getchar ()); return readword (getchar (), w, a);}
2016-05-29 12:44:03 +01:00
char buf[256] = {0};
char ch = c;
return readword (getchar (), strncat (w ? w : buf, &ch, 1), a);
}
2016-07-10 23:15:28 +01:00
scm *
readchar ()
{
int c = getchar ();
if (c >= '0' && c <= '7'
&& peekchar () >= '0' && peekchar () <= '7') {
c = c - '0';
while (peekchar () >= '0' && peekchar () <= '7') {
c <<= 3;
c += getchar () - '0';
}
}
else if (c >= 'a' && c <= 'z'
&& peekchar () >= 'a' && peekchar () <= 'z') {
char buf[256];
char *p = buf;
*p++ = c;
while (peekchar () >= 'a' && peekchar () <= 'z') {
*p++ = getchar ();
}
*p = 0;
if (!strcmp (buf, "newline")) c = 10;
else if (!strcmp (buf, "space")) c = 32;
else {
printf ("char not supported: %s", buf);
assert (!"char not supported");
}
}
return make_char (c);
}
2016-07-10 21:43:23 +01:00
scm *
readstring ()
{
char buf[256];
char *p = buf;
int c = getchar ();
while (true) {
if (c == '"') break;
*p++ = c;
if (c == '\\' && peekchar () == '"') *p++ = getchar ();
if (c == EOF) assert (!"EOF in string");
c = getchar ();
}
*p = 0;
return make_string (buf);
}
int
eat_whitespace (int c)
{
while (c == ' ' || c == '\n') c = getchar ();
if (c == ';') return eat_whitespace (readcomment (c));
if (c == '#' && peekchar () == '!') {getchar (); readblock (getchar ()); return eat_whitespace (getchar ());}
return c;
}
scm *
2016-07-11 09:38:02 +01:00
readlist (scm *a)
{
int c = getchar ();
c = eat_whitespace (c);
if (c == ')') return &scm_nil;
scm *w = readword (c, 0, a);
2016-07-08 17:02:06 +01:00
if (w == &scm_dot)
2016-07-11 09:38:02 +01:00
return car (readlist (a));
return cons (w, readlist (a));
}
scm *
readenv (scm *a)
{
return readword (getchar (), 0, a);
}
2016-05-29 12:44:03 +01:00
// Extras to make interesting program
scm *
2016-05-29 12:44:03 +01:00
hello_world ()
{
2016-05-29 12:44:03 +01:00
puts ("c: hello world");
return &scm_unspecified;
}
scm *
less_p (scm *a, scm *b)
{
assert (a->type == NUMBER);
assert (b->type == NUMBER);
return a->value < b->value ? &scm_t : &scm_f;
}
scm *
2016-07-11 19:58:30 +01:00
minus (scm *x/*...*/)
{
2016-07-11 19:58:30 +01:00
scm *a = car (x);
assert (a->type == NUMBER);
2016-07-11 19:58:30 +01:00
int n = a->value;
x = cdr (x);
if (x == &scm_nil)
n = -n;
while (x != &scm_nil)
{
assert (x->car->type == NUMBER);
n -= x->car->value;
x = cdr (x);
}
return make_number (n);
2016-07-10 11:52:53 +01:00
}
scm *
2016-07-11 19:58:30 +01:00
plus (scm *x/*...*/)
2016-07-10 11:52:53 +01:00
{
2016-07-11 19:58:30 +01:00
int n = 0;
while (x != &scm_nil)
{
assert (x->car->type == NUMBER);
n += x->car->value;
x = cdr (x);
}
return make_number (n);
2016-07-10 11:52:53 +01:00
}
scm *
2016-07-11 19:58:30 +01:00
divide (scm *x/*...*/)
2016-07-10 11:52:53 +01:00
{
2016-07-11 19:58:30 +01:00
int n = 1;
while (x != &scm_nil)
{
assert (x->car->type == NUMBER);
n /= x->car->value;
x = cdr (x);
}
return make_number (n);
2016-07-10 11:52:53 +01:00
}
scm *
2016-07-11 19:58:30 +01:00
multiply (scm *x/*...*/)
2016-07-10 11:52:53 +01:00
{
2016-07-11 19:58:30 +01:00
int n = 1;
while (x != &scm_nil)
{
assert (x->car->type == NUMBER);
n *= x->car->value;
x = cdr (x);
}
return make_number (n);
2016-07-10 11:52:53 +01:00
}
scm *
is_p (scm *a, scm *b)
{
assert (a->type == NUMBER);
assert (b->type == NUMBER);
return a->value == b->value ? &scm_t : &scm_f;
}
#if QUASIQUOTE
scm *
eval_quasiquote (scm *e, scm *a)
{
#if DEBUG
printf ("\nc:eval_quasiquote e=");
display (e);
if (pair_p (e) == &scm_t) {
printf ("\ncar (e)=");
display (car (e));
printf (" atom=");
display (atom_p (car (e)));
}
puts ("");
#endif
if (e == &scm_nil) return e;
else if (atom_p (e) == &scm_t) return e;
else if (atom_p (car (e)) == &scm_t)
return cons (car (e), eval_quasiquote (cdr (e), a));
else if (eq_p (caar (e), &scm_symbol_unquote) == &scm_t)
return cons (eval (cadar (e), a), &scm_nil);
else if (eq_p (caar (e), &scm_symbol_quote) == &scm_t)
return cons (cadar (e), &scm_nil);
else if (eq_p (caar (e), &scm_symbol_quasiquote) == &scm_t)
return cdar (e);
return cons (car (e), eval_quasiquote (cdr (e), a));
}
#endif
scm *
2016-07-09 22:12:25 +01:00
add_environment (scm *a, char *name, scm *x)
{
2016-07-10 21:43:23 +01:00
return cons (cons (make_symbol (name), x), a);
}
scm *
2016-07-09 22:12:25 +01:00
mes_environment ()
{
scm *a = &scm_nil;
a = add_environment (a, "()", &scm_nil);
a = add_environment (a, "#t", &scm_t);
a = add_environment (a, "#f", &scm_f);
a = add_environment (a, "*unspecified*", &scm_unspecified);
a = add_environment (a, "label", &scm_label);
a = add_environment (a, "lambda", &scm_lambda);
2016-07-09 22:12:25 +01:00
a = add_environment (a, "*macro*", &scm_nil);
a = add_environment (a, "*dot*", &scm_dot);
a = add_environment (a, "current-module", &scm_symbol_current_module);
a = add_environment (a, "'", &scm_quote);
#if QUASIQUOTE
a = add_environment (a, ",", &scm_unquote);
a = add_environment (a, "`", &scm_quasiquote);
#endif
2016-07-09 22:12:25 +01:00
#include "environment.i"
2016-07-09 13:58:37 +01:00
return a;
}
scm *
2016-07-09 21:47:36 +01:00
define_lambda (scm *x)
{
return cons (caadr (x), cons (&scm_lambda, cons (cdadr (x), cddr (x))));
}
scm *
define (scm *x, scm *a)
{
2016-05-29 12:44:03 +01:00
if (atom_p (cadr (x)) != &scm_f)
return cons (cadr (x), eval (caddr (x), a));
2016-07-09 21:47:36 +01:00
return define_lambda (x);
}
2016-07-08 17:02:06 +01:00
scm *
define_macro (scm *x, scm *a)
{
2016-07-09 13:58:37 +01:00
#if DEBUG
printf ("\nc:define_macro a=");
scm *aa =cons (&scm_macro,
2016-07-09 21:47:36 +01:00
cons (define_lambda (x),
2016-07-11 09:48:25 +01:00
cdr (assq (&scm_macro, a))));
2016-07-09 13:58:37 +01:00
display (aa);
puts ("");
#endif
if (atom_p (cadr (x)) != &scm_f)
return cons (&scm_macro,
cons (cons (cadr (x), eval (caddr (x), a)),
cdr (assq (&scm_macro, a))));
2016-07-08 17:02:06 +01:00
return cons (&scm_macro,
2016-07-09 21:47:36 +01:00
cons (define_lambda (x),
2016-07-11 09:48:25 +01:00
cdr (assq (&scm_macro, a))));
2016-07-08 17:02:06 +01:00
}
scm *
loop (scm *r, scm *e, scm *a)
{
2016-07-09 21:47:36 +01:00
#if 0//DEBUG
2016-07-08 17:02:06 +01:00
printf ("\nc:loop e=");
display (e);
puts ("");
#endif
2016-05-29 12:44:03 +01:00
if (e == &scm_nil)
return r;
2016-07-10 09:43:26 +01:00
else if (eq_p (e, &scm_symbol_EOF) == &scm_t)
return apply_env (cdr (assq (&scm_symbol_loop2, a)),
cons (&scm_unspecified, cons (&scm_t, cons (a, &scm_nil))), a);
2016-07-10 09:43:26 +01:00
else if (eq_p (e, &scm_symbol_EOF2) == &scm_t)
2016-05-29 12:44:03 +01:00
return r;
else if (atom_p (e) == &scm_t)
return loop (eval (e, a), readenv (a), a);
2016-07-10 09:43:26 +01:00
else if (eq_p (car (e), &scm_symbol_define) == &scm_t)
return loop (&scm_unspecified,
readenv (a),
cons (define (e, a), a));
2016-07-10 09:43:26 +01:00
else if (eq_p (car (e), &scm_symbol_define_macro) == &scm_t)
2016-07-08 17:02:06 +01:00
return loop (&scm_unspecified,
readenv (a),
cons (define_macro (e, a), a));
2016-07-10 09:43:26 +01:00
else if (eq_p (car (e), &scm_symbol_set_x) == &scm_t)
return loop (set_env_x (cadr (e), eval (caddr (e), a), a), readenv (a), a);
return loop (eval (e, a), readenv (a), a);
}
int
main (int argc, char *argv[])
{
2016-07-09 22:12:25 +01:00
scm *a = mes_environment ();
2016-05-29 12:44:03 +01:00
display (loop (&scm_unspecified, readenv (a), a));
newline ();
return 0;
}
scm *
apply_env (scm *fn, scm *x, scm *a)
2016-05-29 12:44:03 +01:00
{
#if DEBUG
printf ("\nc:apply_env fn=");
2016-05-29 12:44:03 +01:00
display (fn);
printf (" x=");
display (x);
puts ("");
#endif
if (fn == &scm_apply_env_)
2016-05-29 12:44:03 +01:00
return eval_ (x, a);
return apply_env_ (fn, x, a);
2016-05-29 12:44:03 +01:00
}
bool evalling_p = false;
scm *
eval (scm *e, scm *a)
{
#if DEBUG
printf ("\nc:eval e=");
display (e);
puts ("");
#endif
2016-07-11 09:48:25 +01:00
scm *eval__ = assq (&scm_symbol_eval, a);
2016-05-29 12:44:03 +01:00
assert (eval__ != &scm_f);
eval__ = cdr (eval__);
if (builtin_p (eval__) == &scm_t
|| evalling_p)
return eval_ (e, a);
evalling_p = true;
scm *r = apply_env (eval__, cons (e, cons (a, &scm_nil)), a);
2016-05-29 12:44:03 +01:00
evalling_p = false;
return r;
}