2016-10-22 18:51:32 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
|
|
|
* Mes --- Maxwell Equations of Software
|
2018-01-01 14:53:13 +00:00
|
|
|
* Copyright © 2016,2017,2018 Jan Nieuwenhuizen <janneke@gnu.org>
|
2016-10-22 18:51:32 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
mini-mes: Merge with mes.c: lib.c, math.c, posix.c.
* mes.c: Include math.c after posix.c.
(assert_defined, check_formals, check_apply, load_env,
bload_env): Move from lib.c
* scaffold/mini-mes.c: Include mini-lib.h, lib.c., mini-math.h,
math.c, mini-posix.h, posix.c.
(greater_p, less_p, is_p, minus, plus, divide, modulo, multiply,
logior, ash): Remove.
(ungetchar, peekchar, peek_byte, read_byte, write_byte,
string_to_cstring, getenv_, open_input_file, current_input_port,
set_current_input_port, force_output): Remove.
(mes_builtins): include mini-lib.i, mini-lib.environment.i.
mini-math.i, mini-math.environment.i mini-posix.i,
mini-posix.environment.i.
* GNUmakefile (guile-mini-mes): Add dependencies.
2017-04-08 13:01:24 +00:00
|
|
|
int g_depth;
|
2018-01-01 20:10:15 +00:00
|
|
|
SCM fdisplay_ (SCM, int, int);
|
2017-05-23 05:16:08 +00:00
|
|
|
|
2017-03-25 14:58:44 +00:00
|
|
|
SCM
|
2018-01-01 20:10:15 +00:00
|
|
|
display_helper (SCM x, int cont, char* sep, int fd, int write_p)
|
2017-03-25 14:58:44 +00:00
|
|
|
{
|
|
|
|
fputs (sep, fd);
|
|
|
|
if (g_depth == 0) return cell_unspecified;
|
|
|
|
g_depth = g_depth - 1;
|
mini-mes: Merge with mes.c: lib.c, math.c, posix.c.
* mes.c: Include math.c after posix.c.
(assert_defined, check_formals, check_apply, load_env,
bload_env): Move from lib.c
* scaffold/mini-mes.c: Include mini-lib.h, lib.c., mini-math.h,
math.c, mini-posix.h, posix.c.
(greater_p, less_p, is_p, minus, plus, divide, modulo, multiply,
logior, ash): Remove.
(ungetchar, peekchar, peek_byte, read_byte, write_byte,
string_to_cstring, getenv_, open_input_file, current_input_port,
set_current_input_port, force_output): Remove.
(mes_builtins): include mini-lib.i, mini-lib.environment.i.
mini-math.i, mini-math.environment.i mini-posix.i,
mini-posix.environment.i.
* GNUmakefile (guile-mini-mes): Add dependencies.
2017-04-08 13:01:24 +00:00
|
|
|
|
2017-03-25 14:58:44 +00:00
|
|
|
switch (TYPE (x))
|
|
|
|
{
|
|
|
|
case TCHAR:
|
|
|
|
{
|
2018-01-22 22:45:46 +00:00
|
|
|
if (!write_p)
|
|
|
|
fputc (VALUE (x), fd);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fputs ("#\\", fd);
|
|
|
|
switch (VALUE (x))
|
|
|
|
{
|
|
|
|
case '\0': fputs ("nul", fd); break;
|
|
|
|
case '\a': fputs ("alarm", fd); break;
|
|
|
|
case '\b': fputs ("backspace", fd); break;
|
|
|
|
case '\t': fputs ("tab", fd); break;
|
|
|
|
case '\n': fputs ("newline", fd); break;
|
|
|
|
case '\v': fputs ("vtab", fd); break;
|
|
|
|
case '\f': fputs ("page", fd); break;
|
|
|
|
case '\r': fputs ("return", fd); break;
|
|
|
|
case ' ': fputs ("space", fd); break;
|
|
|
|
default: fputc (VALUE (x), fd);
|
|
|
|
}
|
|
|
|
}
|
2017-03-25 14:58:44 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-12-11 06:06:21 +00:00
|
|
|
case TCLOSURE:
|
|
|
|
{
|
|
|
|
fputs ("#<closure ", fd);
|
2017-12-09 07:33:50 +00:00
|
|
|
//display_helper (CDR (x), cont, "", fd, 0);
|
2017-12-11 06:06:21 +00:00
|
|
|
fputs (">", fd);
|
|
|
|
break;
|
|
|
|
}
|
2017-03-25 14:58:44 +00:00
|
|
|
case TFUNCTION:
|
|
|
|
{
|
|
|
|
fputs ("#<procedure ", fd);
|
2017-04-02 15:01:22 +00:00
|
|
|
char const *p = "?";
|
2017-03-25 14:58:44 +00:00
|
|
|
if (FUNCTION (x).name != 0)
|
|
|
|
p = FUNCTION (x).name;
|
|
|
|
fputs (p, fd);
|
|
|
|
fputs ("[", fd);
|
|
|
|
fputs (itoa (CDR (x)), fd);
|
|
|
|
fputs (",", fd);
|
|
|
|
fputs (itoa (x), fd);
|
|
|
|
fputs ("]>", fd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TMACRO:
|
|
|
|
{
|
|
|
|
fputs ("#<macro ", fd);
|
2018-01-01 20:10:15 +00:00
|
|
|
display_helper (CDR (x), cont, "", fd, 0);
|
2017-03-25 14:58:44 +00:00
|
|
|
fputs (">", fd);
|
|
|
|
break;
|
|
|
|
}
|
2017-12-09 07:33:50 +00:00
|
|
|
case TVARIABLE:
|
|
|
|
{
|
|
|
|
fputs ("#<variable ", fd);
|
|
|
|
if (VARIABLE_GLOBAL_P (x) == cell_t)
|
|
|
|
fputs ("*global* ", fd);
|
|
|
|
display_helper (CAR (VARIABLE (x)), cont, "", fd, 0);
|
|
|
|
fputs (">", fd);
|
|
|
|
break;
|
|
|
|
}
|
2017-03-25 14:58:44 +00:00
|
|
|
case TNUMBER:
|
|
|
|
{
|
|
|
|
fputs (itoa (VALUE (x)), fd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TPAIR:
|
|
|
|
{
|
|
|
|
if (!cont) fputs ("(", fd);
|
2017-12-09 07:33:50 +00:00
|
|
|
if (CAR (x) == cell_closure)
|
|
|
|
fputs ("*closure* ", fd);
|
|
|
|
else
|
|
|
|
if (CAAR (x) == cell_closure)
|
|
|
|
fputs ("(*closure* ...) ", fd);
|
|
|
|
else
|
2017-12-11 06:06:21 +00:00
|
|
|
if (CAR (x) == cell_circular)
|
2018-01-14 08:11:19 +00:00
|
|
|
{
|
|
|
|
fputs ("(*circ* . ", fd);
|
|
|
|
int i = 0;
|
|
|
|
x = CDR (x);
|
|
|
|
while (x != cell_nil && i++ < 10)
|
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
g_depth = 1;
|
2017-12-09 07:33:50 +00:00
|
|
|
display_helper (CAAR (x), 0, "", fd, write_p); fputs (" ", fd);
|
|
|
|
//fdisplay_ (CAAR (x), fd, write_p); fputs (" ", fd);
|
2018-01-14 08:11:19 +00:00
|
|
|
x = CDR (x);
|
|
|
|
}
|
|
|
|
fputs (" ...)", fd);
|
|
|
|
}
|
2017-12-11 06:06:21 +00:00
|
|
|
else
|
2017-03-25 14:58:44 +00:00
|
|
|
{
|
2018-01-01 20:10:15 +00:00
|
|
|
if (x && x != cell_nil) fdisplay_ (CAR (x), fd, write_p);
|
2017-12-11 06:06:21 +00:00
|
|
|
if (CDR (x) && TYPE (CDR (x)) == TPAIR)
|
2018-01-01 20:10:15 +00:00
|
|
|
display_helper (CDR (x), 1, " ", fd, write_p);
|
2017-12-11 06:06:21 +00:00
|
|
|
else if (CDR (x) && CDR (x) != cell_nil)
|
|
|
|
{
|
|
|
|
if (TYPE (CDR (x)) != TPAIR)
|
|
|
|
fputs (" . ", fd);
|
2018-01-01 20:10:15 +00:00
|
|
|
fdisplay_ (CDR (x), fd, write_p);
|
2017-12-11 06:06:21 +00:00
|
|
|
}
|
2017-03-25 14:58:44 +00:00
|
|
|
}
|
|
|
|
if (!cont) fputs (")", fd);
|
|
|
|
break;
|
|
|
|
}
|
2018-02-03 20:57:30 +00:00
|
|
|
case TKEYWORD:
|
2017-03-25 14:58:44 +00:00
|
|
|
case TSPECIAL:
|
|
|
|
case TSTRING:
|
|
|
|
case TSYMBOL:
|
|
|
|
{
|
2018-02-03 20:57:30 +00:00
|
|
|
if (TYPE (x) == TKEYWORD) fputs ("#:", fd);
|
2018-01-01 20:10:15 +00:00
|
|
|
if (write_p && TYPE (x) == TSTRING) fputc ('"', fd);
|
2017-03-25 14:58:44 +00:00
|
|
|
SCM t = CAR (x);
|
|
|
|
while (t && t != cell_nil)
|
|
|
|
{
|
2018-01-22 22:45:46 +00:00
|
|
|
switch (write_p ? VALUE (CAR (t)) : 0)
|
|
|
|
{
|
|
|
|
case '\t': fputs ("\\t", fd); break;
|
|
|
|
case '\n': fputs ("\\n", fd); break;
|
|
|
|
case '\\': fputs ("\\\\", fd); break;
|
|
|
|
case '"': fputs ("\\\"", fd); break;
|
|
|
|
default: fputc (VALUE (CAR (t)), fd);
|
|
|
|
}
|
2017-03-25 14:58:44 +00:00
|
|
|
t = CDR (t);
|
|
|
|
}
|
2018-01-01 20:10:15 +00:00
|
|
|
if (write_p && TYPE (x) == TSTRING) fputc ('"', fd);
|
2017-03-25 14:58:44 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-01-12 17:24:42 +00:00
|
|
|
case TVECTOR:
|
|
|
|
{
|
|
|
|
fputs ("#(", fd);
|
|
|
|
SCM t = CAR (x);
|
|
|
|
for (int i = 0; i < LENGTH (x); i++)
|
|
|
|
{
|
|
|
|
if (i) fputc (' ', fd);
|
|
|
|
fdisplay_ (VECTOR (x) + i, fd, write_p);
|
|
|
|
}
|
|
|
|
fputc (')', fd);
|
|
|
|
break;
|
|
|
|
}
|
2017-03-25 14:58:44 +00:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
fputs ("<", fd);
|
|
|
|
fputs (itoa (TYPE (x)), fd);
|
|
|
|
fputs (":", fd);
|
|
|
|
fputs (itoa (x), fd);
|
|
|
|
fputs (">", fd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
|
|
|
display_ (SCM x)
|
|
|
|
{
|
|
|
|
g_depth = 5;
|
2018-01-01 20:10:15 +00:00
|
|
|
return display_helper (x, 0, "", g_stdout, 0);
|
2017-03-25 14:58:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
|
|
|
display_error_ (SCM x)
|
|
|
|
{
|
|
|
|
g_depth = 5;
|
2018-01-01 20:10:15 +00:00
|
|
|
return display_helper (x, 0, "", STDERR, 0);
|
2017-03-25 14:58:44 +00:00
|
|
|
}
|
|
|
|
|
2018-01-01 14:53:13 +00:00
|
|
|
SCM
|
|
|
|
display_port_ (SCM x, SCM p)
|
|
|
|
{
|
|
|
|
assert (TYPE (p) == TNUMBER);
|
2018-01-01 20:10:15 +00:00
|
|
|
return fdisplay_ (x, VALUE (p), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SCM
|
|
|
|
write_ (SCM x)
|
|
|
|
{
|
|
|
|
g_depth = 5;
|
|
|
|
return display_helper (x, 0, "", g_stdout, 1);
|
|
|
|
}
|
|
|
|
|
2018-01-07 15:08:11 +00:00
|
|
|
SCM
|
|
|
|
write_error_ (SCM x)
|
|
|
|
{
|
|
|
|
g_depth = 5;
|
|
|
|
return display_helper (x, 0, "", STDERR, 1);
|
|
|
|
}
|
|
|
|
|
2018-01-01 20:10:15 +00:00
|
|
|
SCM
|
|
|
|
write_port_ (SCM x, SCM p)
|
|
|
|
{
|
|
|
|
assert (TYPE (p) == TNUMBER);
|
|
|
|
return fdisplay_ (x, VALUE (p), 1);
|
2018-01-01 14:53:13 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 14:58:44 +00:00
|
|
|
SCM
|
2018-01-01 20:10:15 +00:00
|
|
|
fdisplay_ (SCM x, int fd, int write_p) ///((internal))
|
2017-03-25 14:58:44 +00:00
|
|
|
{
|
|
|
|
g_depth = 5;
|
2018-01-01 20:10:15 +00:00
|
|
|
return display_helper (x, 0, "", fd, write_p);
|
2017-03-25 14:58:44 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
SCM
|
2016-12-23 19:31:45 +00:00
|
|
|
exit_ (SCM x) ///((name . "exit"))
|
2016-10-22 18:51:32 +00:00
|
|
|
{
|
core+mini-mes: Replace manual snippets by snarfed includes.
* build-aux/mes-snarf.scm (symbol->source, function->header,
function->source, function->environment): Add workarounds to
avoid struct-copy initializers.
* GNUmakefile (mini-mes): Snarf symbols and functions.
* scaffold/mini-mes.c: Include mini-mes.h, mini-mes.symbols.h,
mini-mes.symbols.i, mini-mes.i, mini-mes.environment.i.
Add snarfable symbol/special definitions.
(type_t): Prefix all types with `T', update users.
(assert_defined, gc_push_frame, gc_peek_frame, gc_init_cells): Mark
as internal.
* mes.c (type_t): Prefix all types with `T', update users.
* scaffold/mini-mes.c (eq_p, type_, car_, cdr_,
list_of_char_equal_p, lookup_macro, write_byte): New functions (from
mes.c).
(assq): Add debugging, workaround.
2017-03-10 19:56:18 +00:00
|
|
|
assert (TYPE (x) == TNUMBER);
|
2016-11-21 08:30:59 +00:00
|
|
|
exit (VALUE (x));
|
2016-10-22 18:51:32 +00:00
|
|
|
}
|
2016-12-24 00:23:50 +00:00
|
|
|
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
SCM
|
|
|
|
xassq (SCM x, SCM a) ///for speed in core only
|
|
|
|
{
|
|
|
|
while (a != cell_nil && x != CDAR (a)) a = CDR (a);
|
|
|
|
return a != cell_nil ? CAR (a) : cell_f;
|
|
|
|
}
|
2018-04-05 09:03:09 +00:00
|
|
|
|
|
|
|
SCM
|
|
|
|
memq (SCM x, SCM a)
|
|
|
|
{
|
|
|
|
switch (TYPE (x))
|
|
|
|
{
|
|
|
|
case TCHAR:
|
|
|
|
case TNUMBER:
|
|
|
|
{
|
|
|
|
SCM v = VALUE (x);
|
|
|
|
while (a != cell_nil && v != VALUE (CAR (a))) a = CDR (a); break;
|
|
|
|
}
|
|
|
|
case TKEYWORD:
|
|
|
|
{
|
|
|
|
SCM v = STRING (x);
|
|
|
|
while (a != cell_nil && v != STRING (CAR (a))) a = CDR (a); break;
|
|
|
|
}
|
|
|
|
// case TSYMBOL:
|
|
|
|
// case TSPECIAL:
|
|
|
|
default:
|
|
|
|
while (a != cell_nil && x != CAR (a)) a = CDR (a); break;
|
|
|
|
}
|
|
|
|
return a != cell_nil ? a : cell_f;
|
|
|
|
}
|
|
|
|
|