2017-05-21 12:47:09 +02:00
|
|
|
/*
|
|
|
|
* interpreter.c: test interpreter
|
|
|
|
*
|
2018-06-24 03:49:07 +02:00
|
|
|
* Copyright (c) 2017, Přemysl Janouch <p@janouch.name>
|
2017-05-21 12:47:09 +02:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
2018-06-24 03:49:07 +02:00
|
|
|
* purpose with or without fee is hereby granted.
|
2017-05-21 12:47:09 +02:00
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ell.c"
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char *argv[]) {
|
|
|
|
FILE *fp = stdin;
|
|
|
|
if (argc > 1 && !(fp = fopen (argv[1], "rb"))) {
|
|
|
|
fprintf (stderr, "%s: %s\n", argv[1], strerror (errno));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int c;
|
2017-06-22 16:14:11 +02:00
|
|
|
struct ell_buffer buf = ell_buffer_make ();
|
2017-05-21 12:47:09 +02:00
|
|
|
while ((c = fgetc (fp)) != EOF)
|
2017-05-30 02:43:42 +02:00
|
|
|
ell_buffer_append_c (&buf, c);
|
|
|
|
ell_buffer_append_c (&buf, 0);
|
2017-05-21 12:47:09 +02:00
|
|
|
fclose (fp);
|
|
|
|
|
2017-06-22 16:14:11 +02:00
|
|
|
struct ell_parser p = ell_parser_make (buf.s, buf.len - 1);
|
2017-05-21 12:47:09 +02:00
|
|
|
const char *e = NULL;
|
2017-05-30 02:43:42 +02:00
|
|
|
struct ell_v *program = ell_parser_run (&p, &e);
|
2017-05-21 12:47:09 +02:00
|
|
|
free (buf.s);
|
|
|
|
if (e) {
|
|
|
|
printf ("%s: %s\n", "parse error", e);
|
|
|
|
return 1;
|
|
|
|
}
|
2017-05-30 02:43:42 +02:00
|
|
|
ell_parser_free (&p);
|
2017-05-21 12:47:09 +02:00
|
|
|
|
2017-06-22 16:14:11 +02:00
|
|
|
struct ell ell = ell_make ();
|
2017-05-30 02:43:42 +02:00
|
|
|
if (!ell_std_initialize (&ell))
|
2017-05-21 12:47:09 +02:00
|
|
|
printf ("%s\n", "runtime library initialization failed");
|
|
|
|
|
2017-05-26 20:25:02 +02:00
|
|
|
// In this one place we optimistically expect allocation to succeed
|
2017-05-30 02:43:42 +02:00
|
|
|
struct ell_v *args = NULL, **tail = &args;
|
2017-05-26 20:25:02 +02:00
|
|
|
for (int i = 2; i < argc; i++)
|
2017-05-30 02:43:42 +02:00
|
|
|
tail = &(*tail = ell_string (argv[i], strlen (argv[i])))->next;
|
2017-05-26 20:25:02 +02:00
|
|
|
|
2017-05-30 02:43:42 +02:00
|
|
|
struct ell_v *result = NULL;
|
|
|
|
(void) ell_eval_block (&ell, program, args, &result);
|
|
|
|
ell_free_seq (result);
|
|
|
|
ell_free_seq (program);
|
2017-05-21 12:47:09 +02:00
|
|
|
|
2017-05-30 02:43:42 +02:00
|
|
|
const char *failure = ell.error;
|
|
|
|
if (ell.memory_failure)
|
2017-05-21 12:47:09 +02:00
|
|
|
failure = "memory allocation failure";
|
|
|
|
if (failure)
|
|
|
|
printf ("%s: %s\n", "runtime error", failure);
|
2017-05-30 02:43:42 +02:00
|
|
|
ell_free (&ell);
|
2017-05-21 12:47:09 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|