2014-08-25 00:38:09 -04:00
|
|
|
/**
|
|
|
|
* See Copyright Notice in picrin.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "picrin.h"
|
|
|
|
|
2015-06-24 18:34:10 -04:00
|
|
|
KHASH_DEFINE(read, int, pic_value, kh_int_hash_func, kh_int_hash_equal)
|
|
|
|
|
2014-08-25 00:38:09 -04:00
|
|
|
static pic_value read(pic_state *pic, struct pic_port *port, int c);
|
|
|
|
static pic_value read_nullable(pic_state *pic, struct pic_port *port, int c);
|
|
|
|
|
2015-01-25 22:22:38 -05:00
|
|
|
PIC_NORETURN static void
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic_state *pic, const char *msg, pic_value irritant)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-04 00:23:20 -04:00
|
|
|
struct pic_error *e;
|
|
|
|
|
2015-10-06 01:04:48 -04:00
|
|
|
e = pic_make_error(pic, pic_intern(pic, "read"), msg, irritant);
|
2015-06-04 00:23:20 -04:00
|
|
|
|
|
|
|
pic_raise(pic, pic_obj_value(e));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-06-18 13:05:56 -04:00
|
|
|
skip(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
while (isspace(c)) {
|
2015-06-18 13:05:56 -04:00
|
|
|
c = xfgetc(pic, port->file);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-06-18 13:05:56 -04:00
|
|
|
next(pic_state *pic, struct pic_port *port)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
return xfgetc(pic, port->file);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-06-18 13:05:56 -04:00
|
|
|
peek(pic_state *pic, struct pic_port *port)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
xungetc((c = xfgetc(pic, port->file)), port->file);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2015-06-18 13:05:56 -04:00
|
|
|
expect(pic_state *pic, struct pic_port *port, const char *str)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
|
|
|
while ((c = (int)*str++) != 0) {
|
2015-06-18 13:05:56 -04:00
|
|
|
if (c != peek(pic, port))
|
2014-08-25 00:38:09 -04:00
|
|
|
return false;
|
2015-06-18 13:05:56 -04:00
|
|
|
next(pic, port);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
isdelim(int c)
|
|
|
|
{
|
|
|
|
return c == EOF || strchr("();,|\" \t\n\r", c) != NULL; /* ignores "#", "'" */
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
strcaseeq(const char *s1, const char *s2)
|
|
|
|
{
|
|
|
|
char a, b;
|
|
|
|
|
|
|
|
while ((a = *s1++) * (b = *s2++)) {
|
|
|
|
if (tolower(a) != tolower(b))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return a == b;
|
|
|
|
}
|
|
|
|
|
2015-01-26 00:33:48 -05:00
|
|
|
static int
|
|
|
|
case_fold(pic_state *pic, int c)
|
|
|
|
{
|
2015-06-18 14:14:55 -04:00
|
|
|
if (pic->reader.typecase == PIC_CASE_FOLD) {
|
2015-01-26 00:33:48 -05:00
|
|
|
c = tolower(c);
|
|
|
|
}
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2014-08-25 00:38:09 -04:00
|
|
|
static pic_value
|
2015-05-28 04:06:41 -04:00
|
|
|
read_comment(pic_state PIC_UNUSED(*pic), struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
do {
|
2015-06-18 13:05:56 -04:00
|
|
|
c = next(pic, port);
|
2014-08-25 00:38:09 -04:00
|
|
|
} while (! (c == EOF || c == '\n'));
|
|
|
|
|
2015-06-09 03:02:23 -04:00
|
|
|
return pic_invalid_value();
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-05-28 04:06:41 -04:00
|
|
|
read_block_comment(pic_state PIC_UNUSED(*pic), struct pic_port *port, int PIC_UNUSED(c))
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
int i = 1;
|
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
y = next(pic, port);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
while (y != EOF && i > 0) {
|
|
|
|
x = y;
|
2015-06-18 13:05:56 -04:00
|
|
|
y = next(pic, port);
|
2014-08-25 00:38:09 -04:00
|
|
|
if (x == '|' && y == '#') {
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
if (x == '#' && y == '|') {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-09 03:02:23 -04:00
|
|
|
return pic_invalid_value();
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-05-28 04:06:41 -04:00
|
|
|
read_datum_comment(pic_state *pic, struct pic_port *port, int PIC_UNUSED(c))
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
read(pic, port, next(pic, port));
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-06-09 03:02:23 -04:00
|
|
|
return pic_invalid_value();
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_directive(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
switch (peek(pic, port)) {
|
2014-08-25 00:38:09 -04:00
|
|
|
case 'n':
|
2015-06-18 13:05:56 -04:00
|
|
|
if (expect(pic, port, "no-fold-case")) {
|
2015-06-18 14:14:55 -04:00
|
|
|
pic->reader.typecase = PIC_CASE_DEFAULT;
|
2015-06-09 03:02:23 -04:00
|
|
|
return pic_invalid_value();
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'f':
|
2015-06-18 13:05:56 -04:00
|
|
|
if (expect(pic, port, "fold-case")) {
|
2015-06-18 14:14:55 -04:00
|
|
|
pic->reader.typecase = PIC_CASE_FOLD;
|
2015-06-09 03:02:23 -04:00
|
|
|
return pic_invalid_value();
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-01-22 02:53:11 -05:00
|
|
|
return read_comment(pic, port, c);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-05-28 04:06:41 -04:00
|
|
|
read_quote(pic_state *pic, struct pic_port *port, int PIC_UNUSED(c))
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
return pic_list2(pic, pic_obj_value(pic->sQUOTE), read(pic, port, next(pic, port)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-05-28 04:06:41 -04:00
|
|
|
read_quasiquote(pic_state *pic, struct pic_port *port, int PIC_UNUSED(c))
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
return pic_list2(pic, pic_obj_value(pic->sQUASIQUOTE), read(pic, port, next(pic, port)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-05-28 04:06:41 -04:00
|
|
|
read_unquote(pic_state *pic, struct pic_port *port, int PIC_UNUSED(c))
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-01-22 02:53:11 -05:00
|
|
|
pic_sym *tag = pic->sUNQUOTE;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
if (peek(pic, port) == '@') {
|
2015-01-22 02:53:11 -05:00
|
|
|
tag = pic->sUNQUOTE_SPLICING;
|
2015-06-18 13:05:56 -04:00
|
|
|
next(pic, port);
|
2015-01-22 02:53:11 -05:00
|
|
|
}
|
2015-06-18 13:05:56 -04:00
|
|
|
return pic_list2(pic, pic_obj_value(tag), read(pic, port, next(pic, port)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
2015-06-10 02:18:03 -04:00
|
|
|
static pic_value
|
|
|
|
read_syntax_quote(pic_state *pic, struct pic_port *port, int PIC_UNUSED(c))
|
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
return pic_list2(pic, pic_obj_value(pic->sSYNTAX_QUOTE), read(pic, port, next(pic, port)));
|
2015-06-10 02:18:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
read_syntax_quasiquote(pic_state *pic, struct pic_port *port, int PIC_UNUSED(c))
|
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
return pic_list2(pic, pic_obj_value(pic->sSYNTAX_QUASIQUOTE), read(pic, port, next(pic, port)));
|
2015-06-10 02:18:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
read_syntax_unquote(pic_state *pic, struct pic_port *port, int PIC_UNUSED(c))
|
|
|
|
{
|
|
|
|
pic_sym *tag = pic->sSYNTAX_UNQUOTE;
|
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
if (peek(pic, port) == '@') {
|
2015-06-10 02:18:03 -04:00
|
|
|
tag = pic->sSYNTAX_UNQUOTE_SPLICING;
|
2015-06-18 13:05:56 -04:00
|
|
|
next(pic, port);
|
2015-06-10 02:18:03 -04:00
|
|
|
}
|
2015-06-18 13:05:56 -04:00
|
|
|
return pic_list2(pic, pic_obj_value(tag), read(pic, port, next(pic, port)));
|
2015-06-10 02:18:03 -04:00
|
|
|
}
|
|
|
|
|
2014-08-25 00:38:09 -04:00
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_symbol(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-08-26 06:04:27 -04:00
|
|
|
int len;
|
2014-08-25 00:38:09 -04:00
|
|
|
char *buf;
|
2015-01-20 02:02:28 -05:00
|
|
|
pic_sym *sym;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-01-22 02:53:11 -05:00
|
|
|
len = 1;
|
2015-05-28 03:42:16 -04:00
|
|
|
buf = pic_malloc(pic, len + 1);
|
2015-01-26 00:33:48 -05:00
|
|
|
buf[0] = case_fold(pic, c);
|
2015-01-22 02:53:11 -05:00
|
|
|
buf[1] = 0;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
while (! isdelim(peek(pic, port))) {
|
|
|
|
c = next(pic, port);
|
2014-08-25 00:38:09 -04:00
|
|
|
len += 1;
|
|
|
|
buf = pic_realloc(pic, buf, len + 1);
|
2015-01-26 00:33:48 -05:00
|
|
|
buf[len - 1] = case_fold(pic, c);
|
2015-01-22 02:53:11 -05:00
|
|
|
buf[len] = 0;
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
2015-07-12 19:16:04 -04:00
|
|
|
sym = pic_intern(pic, buf);
|
2014-08-25 00:38:09 -04:00
|
|
|
pic_free(pic, buf);
|
|
|
|
|
2015-01-18 21:08:27 -05:00
|
|
|
return pic_obj_value(sym);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
2015-05-27 10:40:01 -04:00
|
|
|
static unsigned
|
|
|
|
read_uinteger(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-05-27 10:40:01 -04:00
|
|
|
unsigned u = 0;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
if (! isdigit(c)) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "expected one or more digits", pic_list1(pic, pic_char_value(c)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
2015-05-27 10:40:01 -04:00
|
|
|
u = c - '0';
|
2015-06-18 13:05:56 -04:00
|
|
|
while (isdigit(c = peek(pic, port))) {
|
|
|
|
u = u * 10 + next(pic, port) - '0';
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
2015-05-27 10:40:01 -04:00
|
|
|
return u;
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
read_unsigned(pic_state *pic, struct pic_port *port, int c)
|
|
|
|
{
|
2016-01-08 15:55:00 -05:00
|
|
|
#define ATOF_BUF_SIZE (64)
|
|
|
|
char buf[ATOF_BUF_SIZE];
|
|
|
|
double flt;
|
|
|
|
int idx = 0; /* index into buffer */
|
|
|
|
int dpe = 0; /* the number of '.' or 'e' characters seen */
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2016-01-08 15:55:00 -05:00
|
|
|
if (! isdigit(c)) {
|
|
|
|
read_error(pic, "expected one or more digits", pic_list1(pic, pic_char_value(c)));
|
2015-07-04 04:32:16 -04:00
|
|
|
}
|
2016-01-08 15:55:00 -05:00
|
|
|
buf[idx++] = (char )c;
|
|
|
|
while (isdigit(c = peek(pic, port)) && idx < ATOF_BUF_SIZE) {
|
|
|
|
buf[idx++] = (char )next(pic, port);
|
|
|
|
}
|
|
|
|
if ('.' == peek(pic, port) && idx < ATOF_BUF_SIZE) {
|
|
|
|
dpe++;
|
|
|
|
buf[idx++] = (char )next(pic, port);
|
|
|
|
while (isdigit(c = peek(pic, port)) && idx < ATOF_BUF_SIZE) {
|
|
|
|
buf[idx++] = (char )next(pic, port);
|
2015-05-27 10:40:01 -04:00
|
|
|
}
|
2016-01-08 15:55:00 -05:00
|
|
|
}
|
|
|
|
c = peek(pic, port);
|
2015-05-27 10:40:01 -04:00
|
|
|
|
2016-01-08 15:55:00 -05:00
|
|
|
if ((c == 'e' || c == 'E') && idx < (ATOF_BUF_SIZE - 2)) {
|
|
|
|
dpe++;
|
|
|
|
buf[idx++] = (char )next(pic, port);
|
|
|
|
switch ((c = peek(pic, port))) {
|
|
|
|
case '-':
|
|
|
|
case '+':
|
|
|
|
buf[idx++] = (char )next(pic, port);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2015-05-27 10:40:01 -04:00
|
|
|
}
|
2016-01-08 15:55:00 -05:00
|
|
|
if (! isdigit(peek(pic, port))) {
|
|
|
|
read_error(pic, "expected one or more digits", pic_list1(pic, pic_char_value(c)));
|
2015-05-27 10:40:01 -04:00
|
|
|
}
|
2016-01-08 15:55:00 -05:00
|
|
|
while (isdigit(c = peek(pic, port)) && idx < ATOF_BUF_SIZE) {
|
|
|
|
buf[idx++] = (char )next(pic, port);
|
2015-05-27 10:40:01 -04:00
|
|
|
}
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
2016-01-08 15:55:00 -05:00
|
|
|
if (idx >= ATOF_BUF_SIZE)
|
|
|
|
read_error(pic, "number too large",
|
|
|
|
pic_obj_value(pic_make_str(pic, (const char *)buf, ATOF_BUF_SIZE)));
|
2016-01-10 14:56:44 -05:00
|
|
|
|
|
|
|
if (! isdelim(c))
|
|
|
|
read_error(pic, "non-delimiter character given after number", pic_list1(pic, pic_char_value(c)));
|
|
|
|
|
2016-01-08 15:55:00 -05:00
|
|
|
buf[idx] = 0;
|
2016-01-08 23:06:14 -05:00
|
|
|
flt = PIC_CSTRING_TO_DOUBLE(buf);
|
2016-01-08 15:55:00 -05:00
|
|
|
|
|
|
|
if (dpe == 0 && pic_valid_int(flt))
|
|
|
|
return pic_int_value((int )flt);
|
|
|
|
return pic_float_value(flt);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_number(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-01-22 02:53:11 -05:00
|
|
|
return read_unsigned(pic, port, c);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
negate(pic_value n)
|
|
|
|
{
|
2016-01-08 15:55:00 -05:00
|
|
|
if (pic_int_p(n) && (INT_MIN != pic_int(n))) {
|
2014-08-25 00:38:09 -04:00
|
|
|
return pic_int_value(-pic_int(n));
|
|
|
|
} else {
|
|
|
|
return pic_float_value(-pic_float(n));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_minus(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
pic_value sym;
|
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
if (isdigit(peek(pic, port))) {
|
|
|
|
return negate(read_unsigned(pic, port, next(pic, port)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
else {
|
2015-01-22 02:53:11 -05:00
|
|
|
sym = read_symbol(pic, port, c);
|
2015-01-20 01:31:17 -05:00
|
|
|
if (strcaseeq(pic_symbol_name(pic, pic_sym_ptr(sym)), "-inf.0")) {
|
2015-07-19 13:19:41 -04:00
|
|
|
return pic_float_value(-(1.0 / 0.0));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
2015-01-20 01:31:17 -05:00
|
|
|
if (strcaseeq(pic_symbol_name(pic, pic_sym_ptr(sym)), "-nan.0")) {
|
2015-07-19 13:19:41 -04:00
|
|
|
return pic_float_value(-(0.0 / 0.0));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
return sym;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_plus(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
pic_value sym;
|
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
if (isdigit(peek(pic, port))) {
|
|
|
|
return read_unsigned(pic, port, next(pic, port));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
else {
|
2015-01-22 02:53:11 -05:00
|
|
|
sym = read_symbol(pic, port, c);
|
2015-01-20 01:31:17 -05:00
|
|
|
if (strcaseeq(pic_symbol_name(pic, pic_sym_ptr(sym)), "+inf.0")) {
|
2015-07-19 13:19:41 -04:00
|
|
|
return pic_float_value(1.0 / 0.0);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
2015-01-20 01:31:17 -05:00
|
|
|
if (strcaseeq(pic_symbol_name(pic, pic_sym_ptr(sym)), "+nan.0")) {
|
2015-07-19 13:19:41 -04:00
|
|
|
return pic_float_value(0.0 / 0.0);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
return sym;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_true(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
if ((c = peek(pic, port)) == 'r') {
|
|
|
|
if (! expect(pic, port, "rue")) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "unexpected character while reading #true", pic_nil_value());
|
2015-01-22 02:53:11 -05:00
|
|
|
}
|
|
|
|
} else if (! isdelim(c)) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "non-delimiter character given after #t", pic_list1(pic, pic_char_value(c)));
|
2015-01-22 02:53:11 -05:00
|
|
|
}
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
return pic_true_value();
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_false(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
if ((c = peek(pic, port)) == 'a') {
|
|
|
|
if (! expect(pic, port, "alse")) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "unexpected character while reading #false", pic_nil_value());
|
2015-01-22 02:53:11 -05:00
|
|
|
}
|
|
|
|
} else if (! isdelim(c)) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "non-delimiter character given after #f", pic_list1(pic, pic_char_value(c)));
|
2015-01-22 02:53:11 -05:00
|
|
|
}
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
return pic_false_value();
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_char(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
c = next(pic, port);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
if (! isdelim(peek(pic, port))) {
|
2014-08-25 00:38:09 -04:00
|
|
|
switch (c) {
|
2015-10-06 01:04:48 -04:00
|
|
|
default: read_error(pic, "unexpected character after char literal", pic_list1(pic, pic_char_value(c)));
|
2015-07-22 10:06:46 -04:00
|
|
|
case 'a': c = '\a'; if (! expect(pic, port, "larm")) goto fail; break;
|
2015-06-18 13:05:56 -04:00
|
|
|
case 'b': c = '\b'; if (! expect(pic, port, "ackspace")) goto fail; break;
|
|
|
|
case 'd': c = 0x7F; if (! expect(pic, port, "elete")) goto fail; break;
|
|
|
|
case 'e': c = 0x1B; if (! expect(pic, port, "scape")) goto fail; break;
|
2014-08-25 00:38:09 -04:00
|
|
|
case 'n':
|
2015-06-18 13:05:56 -04:00
|
|
|
if ((c = peek(pic, port)) == 'e') {
|
2014-08-25 00:38:09 -04:00
|
|
|
c = '\n';
|
2015-06-18 13:05:56 -04:00
|
|
|
if (! expect(pic, port, "ewline"))
|
2014-08-25 00:38:09 -04:00
|
|
|
goto fail;
|
|
|
|
} else {
|
|
|
|
c = '\0';
|
2015-06-18 13:05:56 -04:00
|
|
|
if (! expect(pic, port, "ull"))
|
2014-08-25 00:38:09 -04:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
break;
|
2015-06-18 13:05:56 -04:00
|
|
|
case 'r': c = '\r'; if (! expect(pic, port, "eturn")) goto fail; break;
|
|
|
|
case 's': c = ' '; if (! expect(pic, port, "pace")) goto fail; break;
|
|
|
|
case 't': c = '\t'; if (! expect(pic, port, "ab")) goto fail; break;
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-27 07:43:31 -04:00
|
|
|
return pic_char_value((char)c);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
fail:
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "unexpected character while reading character literal", pic_list1(pic, pic_char_value(c)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_string(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
char *buf;
|
2015-08-26 06:04:27 -04:00
|
|
|
int size, cnt;
|
2014-08-25 00:38:09 -04:00
|
|
|
pic_str *str;
|
|
|
|
|
|
|
|
size = 256;
|
2015-05-28 03:42:16 -04:00
|
|
|
buf = pic_malloc(pic, size);
|
2014-08-25 00:38:09 -04:00
|
|
|
cnt = 0;
|
|
|
|
|
|
|
|
/* TODO: intraline whitespaces */
|
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
while ((c = next(pic, port)) != '"') {
|
2014-08-25 00:38:09 -04:00
|
|
|
if (c == '\\') {
|
2015-06-18 13:05:56 -04:00
|
|
|
switch (c = next(pic, port)) {
|
2014-08-25 00:38:09 -04:00
|
|
|
case 'a': c = '\a'; break;
|
|
|
|
case 'b': c = '\b'; break;
|
|
|
|
case 't': c = '\t'; break;
|
|
|
|
case 'n': c = '\n'; break;
|
|
|
|
case 'r': c = '\r'; break;
|
|
|
|
}
|
|
|
|
}
|
2014-09-27 07:43:31 -04:00
|
|
|
buf[cnt++] = (char)c;
|
2014-08-25 00:38:09 -04:00
|
|
|
if (cnt >= size) {
|
|
|
|
buf = pic_realloc(pic, buf, size *= 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf[cnt] = '\0';
|
|
|
|
|
2014-09-12 06:52:49 -04:00
|
|
|
str = pic_make_str(pic, buf, cnt);
|
2014-08-25 00:38:09 -04:00
|
|
|
pic_free(pic, buf);
|
|
|
|
return pic_obj_value(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_pipe(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
char *buf;
|
2015-08-26 06:04:27 -04:00
|
|
|
int size, cnt;
|
2015-01-20 02:02:28 -05:00
|
|
|
pic_sym *sym;
|
2014-08-25 00:38:09 -04:00
|
|
|
/* Currently supports only ascii chars */
|
|
|
|
char HEX_BUF[3];
|
|
|
|
size_t i = 0;
|
|
|
|
|
|
|
|
size = 256;
|
2015-05-28 03:42:16 -04:00
|
|
|
buf = pic_malloc(pic, size);
|
2014-08-25 00:38:09 -04:00
|
|
|
cnt = 0;
|
2015-06-18 13:05:56 -04:00
|
|
|
while ((c = next(pic, port)) != '|') {
|
2014-08-25 00:38:09 -04:00
|
|
|
if (c == '\\') {
|
2015-06-18 13:05:56 -04:00
|
|
|
switch ((c = next(pic, port))) {
|
2014-08-25 00:38:09 -04:00
|
|
|
case 'a': c = '\a'; break;
|
|
|
|
case 'b': c = '\b'; break;
|
|
|
|
case 't': c = '\t'; break;
|
|
|
|
case 'n': c = '\n'; break;
|
|
|
|
case 'r': c = '\r'; break;
|
|
|
|
case 'x':
|
|
|
|
i = 0;
|
2015-06-18 13:05:56 -04:00
|
|
|
while ((HEX_BUF[i++] = (char)next(pic, port)) != ';') {
|
2014-08-25 00:38:09 -04:00
|
|
|
if (i >= sizeof HEX_BUF)
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "expected ';'", pic_list1(pic, pic_char_value(HEX_BUF[sizeof(HEX_BUF) - 1])));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
2014-09-27 07:43:31 -04:00
|
|
|
c = (char)strtol(HEX_BUF, NULL, 16);
|
2014-08-25 00:38:09 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-09-27 07:43:31 -04:00
|
|
|
buf[cnt++] = (char)c;
|
2014-08-25 00:38:09 -04:00
|
|
|
if (cnt >= size) {
|
|
|
|
buf = pic_realloc(pic, buf, size *= 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf[cnt] = '\0';
|
|
|
|
|
2015-07-12 19:16:04 -04:00
|
|
|
sym = pic_intern(pic, buf);
|
2014-08-25 00:38:09 -04:00
|
|
|
pic_free(pic, buf);
|
|
|
|
|
2015-01-18 21:08:27 -05:00
|
|
|
return pic_obj_value(sym);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_blob(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-01-22 02:53:11 -05:00
|
|
|
int nbits, n;
|
2015-08-26 06:04:27 -04:00
|
|
|
int len, i;
|
2014-09-27 07:43:31 -04:00
|
|
|
unsigned char *dat;
|
2014-08-25 00:38:09 -04:00
|
|
|
pic_blob *blob;
|
|
|
|
|
|
|
|
nbits = 0;
|
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
while (isdigit(c = next(pic, port))) {
|
2014-08-25 00:38:09 -04:00
|
|
|
nbits = 10 * nbits + c - '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nbits != 8) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "unsupported bytevector bit width", pic_list1(pic, pic_int_value(nbits)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (c != '(') {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "expected '(' character", pic_list1(pic, pic_char_value(c)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
len = 0;
|
|
|
|
dat = NULL;
|
2015-06-18 13:05:56 -04:00
|
|
|
c = next(pic, port);
|
|
|
|
while ((c = skip(pic, port, c)) != ')') {
|
2015-05-27 10:40:01 -04:00
|
|
|
n = read_uinteger(pic, port, c);
|
2014-08-25 00:38:09 -04:00
|
|
|
if (n < 0 || (1 << nbits) <= n) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "invalid element in bytevector literal", pic_list1(pic, pic_int_value(n)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
len += 1;
|
|
|
|
dat = pic_realloc(pic, dat, len);
|
2014-09-27 07:43:31 -04:00
|
|
|
dat[len - 1] = (unsigned char)n;
|
2015-06-18 13:05:56 -04:00
|
|
|
c = next(pic, port);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
2014-09-12 06:36:24 -04:00
|
|
|
blob = pic_make_blob(pic, len);
|
2014-08-25 00:38:09 -04:00
|
|
|
for (i = 0; i < len; ++i) {
|
|
|
|
blob->data[i] = dat[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
pic_free(pic, dat);
|
|
|
|
return pic_obj_value(blob);
|
|
|
|
}
|
|
|
|
|
2015-06-09 03:19:57 -04:00
|
|
|
static pic_value
|
|
|
|
read_undef_or_blob(pic_state *pic, struct pic_port *port, int c)
|
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
if ((c = peek(pic, port)) == 'n') {
|
|
|
|
if (! expect(pic, port, "ndefined")) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "unexpected character while reading #undefined", pic_nil_value());
|
2015-06-09 03:19:57 -04:00
|
|
|
}
|
|
|
|
return pic_undef_value();
|
|
|
|
}
|
|
|
|
if (! isdigit(c)) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "expect #undefined or #u8(...), but illegal character given", pic_list1(pic, pic_char_value(c)));
|
2015-06-09 03:19:57 -04:00
|
|
|
}
|
|
|
|
return read_blob(pic, port, 'u');
|
|
|
|
}
|
|
|
|
|
2014-08-25 00:38:09 -04:00
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_pair(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-01-25 22:29:29 -05:00
|
|
|
static const int tCLOSE = ')';
|
2014-08-25 00:38:09 -04:00
|
|
|
pic_value car, cdr;
|
|
|
|
|
|
|
|
retry:
|
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
c = skip(pic, port, ' ');
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
if (c == tCLOSE) {
|
|
|
|
return pic_nil_value();
|
|
|
|
}
|
2015-06-18 13:05:56 -04:00
|
|
|
if (c == '.' && isdelim(peek(pic, port))) {
|
|
|
|
cdr = read(pic, port, next(pic, port));
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
closing:
|
2015-06-18 13:05:56 -04:00
|
|
|
if ((c = skip(pic, port, ' ')) != tCLOSE) {
|
2015-06-09 03:02:23 -04:00
|
|
|
if (pic_invalid_p(read_nullable(pic, port, c))) {
|
2014-08-25 00:38:09 -04:00
|
|
|
goto closing;
|
|
|
|
}
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "unmatched parenthesis", pic_nil_value());
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
return cdr;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
car = read_nullable(pic, port, c);
|
|
|
|
|
2015-06-09 03:02:23 -04:00
|
|
|
if (pic_invalid_p(car)) {
|
2014-08-25 00:38:09 -04:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
2015-01-25 22:29:29 -05:00
|
|
|
cdr = read_pair(pic, port, '(');
|
2014-08-25 00:38:09 -04:00
|
|
|
return pic_cons(pic, car, cdr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_vector(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-07-12 19:28:21 -04:00
|
|
|
pic_value list, it, elem;
|
|
|
|
pic_vec *vec;
|
2015-08-26 06:04:27 -04:00
|
|
|
int i = 0;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-01-22 02:53:11 -05:00
|
|
|
list = read(pic, port, c);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-07-12 19:28:21 -04:00
|
|
|
vec = pic_make_vec(pic, pic_length(pic, list));
|
|
|
|
|
|
|
|
pic_for_each (elem, list, it) {
|
|
|
|
vec->data[i++] = elem;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pic_obj_value(vec);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
read_label_set(pic_state *pic, struct pic_port *port, int i)
|
|
|
|
{
|
2015-06-24 18:34:10 -04:00
|
|
|
khash_t(read) *h = &pic->reader.labels;
|
2014-08-25 00:38:09 -04:00
|
|
|
pic_value val;
|
2015-06-24 18:34:10 -04:00
|
|
|
int c, ret;
|
|
|
|
khiter_t it;
|
|
|
|
|
|
|
|
it = kh_put(read, h, i, &ret);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
switch ((c = skip(pic, port, ' '))) {
|
2015-01-25 22:29:29 -05:00
|
|
|
case '(':
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
pic_value tmp;
|
|
|
|
|
2015-06-24 18:34:10 -04:00
|
|
|
kh_val(h, it) = val = pic_cons(pic, pic_undef_value(), pic_undef_value());
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
tmp = read(pic, port, c);
|
|
|
|
pic_pair_ptr(val)->car = pic_car(pic, tmp);
|
|
|
|
pic_pair_ptr(val)->cdr = pic_cdr(pic, tmp);
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
case '#':
|
|
|
|
{
|
|
|
|
bool vect;
|
|
|
|
|
2015-06-18 13:05:56 -04:00
|
|
|
if (peek(pic, port) == '(') {
|
2014-08-25 00:38:09 -04:00
|
|
|
vect = true;
|
|
|
|
} else {
|
|
|
|
vect = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vect) {
|
|
|
|
pic_vec *tmp;
|
|
|
|
|
2015-06-24 18:34:10 -04:00
|
|
|
kh_val(h, it) = val = pic_obj_value(pic_make_vec(pic, 0));
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
tmp = pic_vec_ptr(read(pic, port, c));
|
2015-01-07 16:11:48 -05:00
|
|
|
PIC_SWAP(pic_value *, tmp->data, pic_vec_ptr(val)->data);
|
2015-08-26 06:04:27 -04:00
|
|
|
PIC_SWAP(int, tmp->len, pic_vec_ptr(val)->len);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2015-01-07 16:11:48 -05:00
|
|
|
PIC_FALLTHROUGH;
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
2015-06-24 18:34:10 -04:00
|
|
|
kh_val(h, it) = val = read(pic, port, c);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-05-28 04:06:41 -04:00
|
|
|
read_label_ref(pic_state *pic, struct pic_port PIC_UNUSED(*port), int i)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-24 18:34:10 -04:00
|
|
|
khash_t(read) *h = &pic->reader.labels;
|
|
|
|
khiter_t it;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-06-24 18:34:10 -04:00
|
|
|
it = kh_get(read, h, i);
|
|
|
|
if (it == kh_end(h)) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "label of given index not defined", pic_list1(pic, pic_int_value(i)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
2015-06-24 18:34:10 -04:00
|
|
|
return kh_val(h, it);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_label(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-01-22 02:53:11 -05:00
|
|
|
int i;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
i = 0;
|
|
|
|
do {
|
2015-01-22 02:53:11 -05:00
|
|
|
i = i * 10 + c - '0';
|
2015-06-18 13:05:56 -04:00
|
|
|
} while (isdigit(c = next(pic, port)));
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
if (c == '=') {
|
|
|
|
return read_label_set(pic, port, i);
|
|
|
|
}
|
|
|
|
if (c == '#') {
|
|
|
|
return read_label_ref(pic, port, i);
|
|
|
|
}
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "broken label expression", pic_nil_value());
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-05-28 04:06:41 -04:00
|
|
|
read_unmatch(pic_state *pic, struct pic_port PIC_UNUSED(*port), int PIC_UNUSED(c))
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "unmatched parenthesis", pic_nil_value());
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
2015-01-22 02:53:11 -05:00
|
|
|
read_dispatch(pic_state *pic, struct pic_port *port, int c)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
c = next(pic, port);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
if (c == EOF) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "unexpected EOF", pic_nil_value());
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
2015-06-18 14:14:55 -04:00
|
|
|
if (pic->reader.dispatch[c] == NULL) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "invalid character at the seeker head", pic_list1(pic, pic_char_value(c)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
2015-06-18 14:14:55 -04:00
|
|
|
return pic->reader.dispatch[c](pic, port, c);
|
2015-01-22 02:53:11 -05:00
|
|
|
}
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-01-22 02:53:11 -05:00
|
|
|
static pic_value
|
|
|
|
read_nullable(pic_state *pic, struct pic_port *port, int c)
|
|
|
|
{
|
2015-06-18 13:05:56 -04:00
|
|
|
c = skip(pic, port, c);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-01-22 02:53:11 -05:00
|
|
|
if (c == EOF) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "unexpected EOF", pic_nil_value());
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
2015-06-18 14:14:55 -04:00
|
|
|
if (pic->reader.table[c] == NULL) {
|
2015-10-06 01:04:48 -04:00
|
|
|
read_error(pic, "invalid character at the seeker head", pic_list1(pic, pic_char_value(c)));
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
2015-01-22 02:53:11 -05:00
|
|
|
|
2015-06-18 14:14:55 -04:00
|
|
|
return pic->reader.table[c](pic, port, c);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
read(pic_state *pic, struct pic_port *port, int c)
|
|
|
|
{
|
|
|
|
pic_value val;
|
|
|
|
|
|
|
|
retry:
|
|
|
|
val = read_nullable(pic, port, c);
|
|
|
|
|
2015-06-09 03:02:23 -04:00
|
|
|
if (pic_invalid_p(val)) {
|
2015-06-18 13:05:56 -04:00
|
|
|
c = next(pic, port);
|
2014-08-25 00:38:09 -04:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2015-01-22 03:18:38 -05:00
|
|
|
static void
|
2015-06-18 14:14:55 -04:00
|
|
|
reader_table_init(pic_reader *reader)
|
2014-08-25 00:38:09 -04:00
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
2015-01-22 03:18:38 -05:00
|
|
|
reader->table[0] = NULL;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-01-22 02:53:11 -05:00
|
|
|
/* default reader */
|
|
|
|
for (c = 1; c < 256; ++c) {
|
2015-01-22 03:18:38 -05:00
|
|
|
reader->table[c] = read_symbol;
|
|
|
|
}
|
|
|
|
|
|
|
|
reader->table[')'] = read_unmatch;
|
|
|
|
reader->table[';'] = read_comment;
|
|
|
|
reader->table['\''] = read_quote;
|
|
|
|
reader->table['`'] = read_quasiquote;
|
|
|
|
reader->table[','] = read_unquote;
|
|
|
|
reader->table['"'] = read_string;
|
|
|
|
reader->table['|'] = read_pipe;
|
|
|
|
reader->table['+'] = read_plus;
|
|
|
|
reader->table['-'] = read_minus;
|
|
|
|
reader->table['('] = read_pair;
|
|
|
|
reader->table['#'] = read_dispatch;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
|
|
|
/* read number */
|
2015-01-22 02:53:11 -05:00
|
|
|
for (c = '0'; c <= '9'; ++c) {
|
2015-01-22 03:18:38 -05:00
|
|
|
reader->table[c] = read_number;
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
2015-01-22 03:18:38 -05:00
|
|
|
reader->dispatch['!'] = read_directive;
|
|
|
|
reader->dispatch['|'] = read_block_comment;
|
|
|
|
reader->dispatch[';'] = read_datum_comment;
|
|
|
|
reader->dispatch['t'] = read_true;
|
|
|
|
reader->dispatch['f'] = read_false;
|
2015-06-10 02:18:03 -04:00
|
|
|
reader->dispatch['\''] = read_syntax_quote;
|
|
|
|
reader->dispatch['`'] = read_syntax_quasiquote;
|
|
|
|
reader->dispatch[','] = read_syntax_unquote;
|
2015-01-22 03:18:38 -05:00
|
|
|
reader->dispatch['\\'] = read_char;
|
|
|
|
reader->dispatch['('] = read_vector;
|
2015-06-09 03:19:57 -04:00
|
|
|
reader->dispatch['u'] = read_undef_or_blob;
|
2015-01-22 02:53:11 -05:00
|
|
|
|
|
|
|
/* read labels */
|
|
|
|
for (c = '0'; c <= '9'; ++c) {
|
2015-01-22 03:18:38 -05:00
|
|
|
reader->dispatch[c] = read_label;
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-18 14:14:55 -04:00
|
|
|
void
|
|
|
|
pic_reader_init(pic_state *pic)
|
2015-01-22 03:18:38 -05:00
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
2015-06-18 14:14:55 -04:00
|
|
|
pic->reader.typecase = PIC_CASE_DEFAULT;
|
2015-06-24 18:34:10 -04:00
|
|
|
kh_init(read, &pic->reader.labels);
|
2015-01-22 03:18:38 -05:00
|
|
|
|
|
|
|
for (c = 0; c < 256; ++c) {
|
2015-06-18 14:14:55 -04:00
|
|
|
pic->reader.table[c] = NULL;
|
2015-01-22 03:18:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for (c = 0; c < 256; ++c) {
|
2015-06-18 14:14:55 -04:00
|
|
|
pic->reader.dispatch[c] = NULL;
|
2015-01-22 03:18:38 -05:00
|
|
|
}
|
|
|
|
|
2015-06-18 14:14:55 -04:00
|
|
|
reader_table_init(&pic->reader);
|
2015-01-22 03:18:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-06-18 14:14:55 -04:00
|
|
|
pic_reader_destroy(pic_state *pic)
|
2015-01-22 03:18:38 -05:00
|
|
|
{
|
2015-06-24 18:34:10 -04:00
|
|
|
kh_destroy(read, &pic->reader.labels);
|
2015-01-22 03:18:38 -05:00
|
|
|
}
|
|
|
|
|
2014-08-25 00:38:09 -04:00
|
|
|
pic_value
|
|
|
|
pic_read(pic_state *pic, struct pic_port *port)
|
|
|
|
{
|
2015-06-27 15:47:41 -04:00
|
|
|
size_t ai = pic_gc_arena_preserve(pic);
|
2014-08-25 00:38:09 -04:00
|
|
|
pic_value val;
|
2015-06-28 13:04:55 -04:00
|
|
|
int c;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-06-28 13:04:55 -04:00
|
|
|
while ((c = skip(pic, port, next(pic, port))) != EOF) {
|
|
|
|
val = read_nullable(pic, port, c);
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-06-28 13:04:55 -04:00
|
|
|
if (! pic_invalid_p(val)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pic_gc_arena_restore(pic, ai);
|
|
|
|
}
|
2014-08-25 00:38:09 -04:00
|
|
|
if (c == EOF) {
|
|
|
|
return pic_eof_object();
|
|
|
|
}
|
|
|
|
|
2015-06-27 15:47:41 -04:00
|
|
|
pic_gc_arena_restore(pic, ai);
|
|
|
|
return pic_gc_protect(pic, val);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pic_value
|
|
|
|
pic_read_cstr(pic_state *pic, const char *str)
|
|
|
|
{
|
2015-05-28 10:28:55 -04:00
|
|
|
struct pic_port *port = pic_open_input_string(pic, str);
|
|
|
|
pic_value form;
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-06-26 10:45:56 -04:00
|
|
|
pic_try {
|
|
|
|
form = pic_read(pic, port);
|
|
|
|
}
|
|
|
|
pic_catch {
|
|
|
|
pic_close_port(pic, port);
|
|
|
|
pic_raise(pic, pic->err);
|
|
|
|
}
|
2014-08-25 00:38:09 -04:00
|
|
|
|
2015-05-28 10:28:55 -04:00
|
|
|
pic_close_port(pic, port);
|
|
|
|
|
|
|
|
return form;
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
pic_read_read(pic_state *pic)
|
|
|
|
{
|
|
|
|
struct pic_port *port = pic_stdin(pic);
|
|
|
|
|
|
|
|
pic_get_args(pic, "|p", &port);
|
|
|
|
|
|
|
|
return pic_read(pic, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pic_init_read(pic_state *pic)
|
|
|
|
{
|
2014-08-31 22:37:52 -04:00
|
|
|
pic_defun(pic, "read", pic_read_read);
|
2014-08-25 00:38:09 -04:00
|
|
|
}
|