![Jan (janneke) Nieuwenhuizen](/assets/img/avatar_default.png)
Rewrite C-constructs not supported by M2-Planet if (foo) -> if (foo != 0) * src/posix.c: Rewrite C-constructs not supported by M2-Planet. (current_input_port): Likewise. * src/display.c (display_helper): : Likewise. * src/eval-apply.c (expand_variable_): : Likewise. (eval_apply): : Likewise. * src/mes.c (open_boot): : Likewise. * src/reader.c (reader_read_identifier_or_number): : Likewise. * src/symbols.c (init_symbol): : Likewise.
311 lines
7.1 KiB
C
311 lines
7.1 KiB
C
/* -*-comment-start: "//";comment-end:""-*-
|
|
* GNU Mes --- Maxwell Equations of Software
|
|
* Copyright © 2016,2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
*
|
|
* This file is part of GNU Mes.
|
|
*
|
|
* GNU 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.
|
|
*
|
|
* GNU 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 GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "mes/lib.h"
|
|
#include "mes/mes.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
int g_depth;
|
|
|
|
void
|
|
fdwrite_char (char v, int fd)
|
|
{
|
|
if (v == '\0')
|
|
fdputs ("\\nul", fd);
|
|
else if (v == '\a')
|
|
fdputs ("\\alarm", fd);
|
|
else if (v == '\b')
|
|
fdputs ("\\backspace", fd);
|
|
else if (v == '\t')
|
|
fdputs ("\\tab", fd);
|
|
else if (v == '\n')
|
|
fdputs ("\\newline", fd);
|
|
else if (v == '\v')
|
|
fdputs ("\\vtab", fd);
|
|
else if (v == '\f')
|
|
fdputs ("\\page", fd);
|
|
//Nyacc bug
|
|
// else if (v == '\r') fdputs ("return", fd);
|
|
else if (v == 13)
|
|
fdputs ("\\return", fd);
|
|
else if (v == ' ')
|
|
fdputs ("\\space", fd);
|
|
else
|
|
{
|
|
if (v >= 32 && v <= 127)
|
|
fdputc ('\\', fd);
|
|
fdputc (v, fd);
|
|
}
|
|
}
|
|
|
|
void
|
|
fdwrite_string_char (char v, int fd)
|
|
{
|
|
if (v == '\0')
|
|
fdputs ("\\0", fd);
|
|
else if (v == '\a')
|
|
fdputs ("\\a", fd);
|
|
else if (v == '\b')
|
|
fdputs ("\\b", fd);
|
|
else if (v == '\t')
|
|
fdputs ("\\t", fd);
|
|
else if (v == '\v')
|
|
fdputs ("\\v", fd);
|
|
else if (v == '\n')
|
|
fdputs ("\\n", fd);
|
|
else if (v == '\f')
|
|
fdputs ("\\f", fd);
|
|
#if 1 //__MESC__
|
|
//Nyacc bug
|
|
else if (v == 13)
|
|
fdputs ("\\r", fd);
|
|
else if (v == 27)
|
|
fdputs ("\\e", fd);
|
|
#else
|
|
//else if (v == '\r') fdputs ("\\r", fd);
|
|
//Nyacc crash
|
|
//else if (v == '\e') fdputs ("\\e", fd);
|
|
#endif
|
|
else if (v == '\\')
|
|
fdputs ("\\\\", fd);
|
|
else if (v == '"')
|
|
fdputs ("\\\"", fd);
|
|
else
|
|
fdputc (v, fd);
|
|
}
|
|
|
|
void
|
|
fdwrite_string (char *s, int length, int fd)
|
|
{
|
|
int i;
|
|
for (i = 0; i < length; i = i + 1)
|
|
fdwrite_string_char (s[i], fd);
|
|
}
|
|
|
|
SCM display_helper (SCM x, int cont, char *sep, int fd, int write_p);
|
|
|
|
SCM
|
|
display_helper (SCM x, int cont, char *sep, int fd, int write_p)
|
|
{
|
|
fdputs (sep, fd);
|
|
if (g_depth == 0)
|
|
return cell_unspecified;
|
|
g_depth = g_depth - 1;
|
|
|
|
int t = TYPE (x);
|
|
if (t == TCHAR)
|
|
{
|
|
if (write_p == 0)
|
|
fdputc (VALUE (x), fd);
|
|
else
|
|
{
|
|
fdputs ("#", fd);
|
|
fdwrite_char (VALUE (x), fd);
|
|
}
|
|
}
|
|
else if (t == TCLOSURE)
|
|
{
|
|
fdputs ("#<closure ", fd);
|
|
SCM circ = CADR (x);
|
|
SCM name = CADR (circ);
|
|
SCM args = CAR (CDDR (x));
|
|
display_helper (CAR (name), 0, "", fd, 0);
|
|
fdputc (' ', fd);
|
|
display_helper (args, 0, "", fd, 0);
|
|
fdputs (">", fd);
|
|
}
|
|
else if (t == TMACRO)
|
|
{
|
|
fdputs ("#<macro ", fd);
|
|
display_helper (CDR (x), cont, "", fd, 0);
|
|
fdputs (">", fd);
|
|
}
|
|
else if (t == TVARIABLE)
|
|
{
|
|
fdputs ("#<variable ", fd);
|
|
display_helper (CAR (VARIABLE (x)), cont, "", fd, 0);
|
|
fdputs (">", fd);
|
|
}
|
|
else if (t == TNUMBER)
|
|
{
|
|
fdputs (itoa (VALUE (x)), fd);
|
|
}
|
|
else if (t == TPAIR)
|
|
{
|
|
if (cont == 0)
|
|
fdputs ("(", fd);
|
|
if (CAR (x) == cell_circular && CADR (x) != cell_closure)
|
|
{
|
|
fdputs ("(*circ* . ", fd);
|
|
int i = 0;
|
|
x = CDR (x);
|
|
while (x != cell_nil && i < 10)
|
|
{
|
|
i = i + 1;
|
|
fdisplay_ (CAAR (x), fd, write_p);
|
|
fdputs (" ", fd);
|
|
x = CDR (x);
|
|
}
|
|
fdputs (" ...)", fd);
|
|
}
|
|
else
|
|
{
|
|
if (x && x != cell_nil)
|
|
fdisplay_ (CAR (x), fd, write_p);
|
|
if (CDR (x) && TYPE (CDR (x)) == TPAIR)
|
|
display_helper (CDR (x), 1, " ", fd, write_p);
|
|
else if (CDR (x) && CDR (x) != cell_nil)
|
|
{
|
|
if (TYPE (CDR (x)) != TPAIR)
|
|
fdputs (" . ", fd);
|
|
fdisplay_ (CDR (x), fd, write_p);
|
|
}
|
|
}
|
|
if (cont == 0)
|
|
fdputs (")", fd);
|
|
}
|
|
else if (t == TPORT)
|
|
{
|
|
fdputs ("#<port ", fd);
|
|
fdputs (itoa (PORT (x)), fd);
|
|
fdputs (" ", fd);
|
|
x = STRING (x);
|
|
fdputc ('"', fd);
|
|
fdwrite_string (cell_bytes (STRING (x)), LENGTH (x), fd);
|
|
fdputc ('"', fd);
|
|
fdputs (">", fd);
|
|
}
|
|
else if (t == TKEYWORD)
|
|
{
|
|
fdputs ("#:", fd);
|
|
fdwrite_string (cell_bytes (STRING (x)), LENGTH (x), fd);
|
|
}
|
|
else if (t == TSTRING)
|
|
{
|
|
if (write_p == 1)
|
|
{
|
|
fdputc ('"', fd);
|
|
fdwrite_string (cell_bytes (STRING (x)), LENGTH (x), fd);
|
|
fdputc ('"', fd);
|
|
}
|
|
else
|
|
fdputs (cell_bytes (STRING (x)), fd);
|
|
}
|
|
else if (t == TSPECIAL || t == TSYMBOL)
|
|
fdwrite_string (cell_bytes (STRING (x)), LENGTH (x), fd);
|
|
else if (t == TREF)
|
|
fdisplay_ (REF (x), fd, write_p);
|
|
else if (t == TSTRUCT)
|
|
{
|
|
//SCM printer = STRUCT (x) + 1;
|
|
SCM printer = struct_ref_ (x, STRUCT_PRINTER);
|
|
if (TYPE (printer) == TREF)
|
|
printer = REF (printer);
|
|
if (TYPE (printer) == TCLOSURE || builtin_p (printer) == cell_t)
|
|
apply (printer, cons (x, cell_nil), R0);
|
|
else
|
|
{
|
|
fdputs ("#<", fd);
|
|
fdisplay_ (STRUCT (x), fd, write_p);
|
|
SCM t = CAR (x);
|
|
long size = LENGTH (x);
|
|
long i;
|
|
for (i = 2; i < size; i = i + 1)
|
|
{
|
|
fdputc (' ', fd);
|
|
fdisplay_ (STRUCT (x) + i, fd, write_p);
|
|
}
|
|
fdputc ('>', fd);
|
|
}
|
|
}
|
|
else if (t == TVECTOR)
|
|
{
|
|
fdputs ("#(", fd);
|
|
SCM t = CAR (x);
|
|
long i;
|
|
for (i = 0; i < LENGTH (x); i = i + 1)
|
|
{
|
|
if (i != 0)
|
|
fdputc (' ', fd);
|
|
fdisplay_ (VECTOR (x) + i, fd, write_p);
|
|
}
|
|
fdputc (')', fd);
|
|
}
|
|
else
|
|
{
|
|
fdputs ("<", fd);
|
|
fdputs (itoa (t), fd);
|
|
fdputs (":", fd);
|
|
fdputs (itoa (x), fd);
|
|
fdputs (">", fd);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
SCM
|
|
display_ (SCM x)
|
|
{
|
|
g_depth = 5;
|
|
return display_helper (x, 0, "", __stdout, 0);
|
|
}
|
|
|
|
SCM
|
|
display_error_ (SCM x)
|
|
{
|
|
g_depth = 5;
|
|
return display_helper (x, 0, "", __stderr, 0);
|
|
}
|
|
|
|
SCM
|
|
display_port_ (SCM x, SCM p)
|
|
{
|
|
assert_msg (TYPE (p) == TNUMBER, "TYPE (p) == TNUMBER");
|
|
return fdisplay_ (x, VALUE (p), 0);
|
|
}
|
|
|
|
SCM
|
|
write_ (SCM x)
|
|
{
|
|
g_depth = 5;
|
|
return display_helper (x, 0, "", __stdout, 1);
|
|
}
|
|
|
|
SCM
|
|
write_error_ (SCM x)
|
|
{
|
|
g_depth = 5;
|
|
return display_helper (x, 0, "", __stderr, 1);
|
|
}
|
|
|
|
SCM
|
|
write_port_ (SCM x, SCM p)
|
|
{
|
|
assert_msg (TYPE (p) == TNUMBER, "TYPE (p) == TNUMBER");
|
|
return fdisplay_ (x, VALUE (p), 1);
|
|
}
|
|
|
|
SCM
|
|
fdisplay_ (SCM x, int fd, int write_p) /*:((internal)) */
|
|
{
|
|
g_depth = 5;
|
|
return display_helper (x, 0, "", fd, write_p);
|
|
}
|