picrin/tools/main.c

214 lines
3.6 KiB
C
Raw Normal View History

2013-10-09 03:58:35 -04:00
#include <stdio.h>
2013-10-24 06:06:31 -04:00
#include <unistd.h>
2013-10-09 03:58:35 -04:00
2013-10-10 03:15:41 -04:00
#include "picrin.h"
#include "picrin/pair.h"
2013-10-10 03:15:41 -04:00
2013-10-17 04:08:33 -04:00
#if PIC_ENABLE_READLINE
2013-10-17 04:57:12 -04:00
# include <string.h>
# include <stdlib.h>
2013-10-17 04:08:33 -04:00
# include <readline/readline.h>
# include <readline/history.h>
#endif
2013-10-17 07:48:50 -04:00
#define CODE_MAX_LENGTH 1024
2013-10-09 04:14:48 -04:00
#define LINE_MAX_LENGTH 256
static char *fname;
2013-10-24 06:06:31 -04:00
void
print_help(void)
{
const char *help =
"picrin scheme\n"
"\n"
"Usage: picrin [options] [file]\n"
2013-10-24 06:06:31 -04:00
"\n"
"Options:\n"
" -h show this help";
puts(help);
}
bool
2013-10-24 06:06:31 -04:00
parse_opt(int argc, char *argv[])
{
int r;
while (~(r = getopt(argc, argv, "h"))) {
switch (r) {
case 'h':
print_help();
exit(0);
}
}
argc -= optind;
argv += optind;
if (argc == 0) {
return 1;
}
else {
fname = argv[0];
return 0;
}
2013-10-24 06:06:31 -04:00
}
2013-10-09 03:58:35 -04:00
int
repl(pic_state *pic)
2013-10-09 03:58:35 -04:00
{
2013-10-17 07:48:50 -04:00
char code[CODE_MAX_LENGTH] = "", line[LINE_MAX_LENGTH];
2013-10-19 14:05:42 -04:00
char *read_line, *prompt;
pic_value v, vs;
2013-10-11 23:55:05 -04:00
struct pic_proc *proc;
int ai, n, i;
2013-10-19 14:05:42 -04:00
#if ! PIC_ENABLE_READLINE
char last_char;
int char_index;
#endif
ai = pic_gc_arena_preserve(pic);
while (1) {
2013-10-17 07:48:50 -04:00
prompt = code[0] == '\0' ? "> " : "* ";
2013-10-17 04:08:33 -04:00
#if PIC_ENABLE_READLINE
2013-10-17 07:48:50 -04:00
read_line = readline(prompt);
2013-10-17 04:08:33 -04:00
if (read_line == NULL) {
2013-10-19 23:57:15 -04:00
goto eof;
2013-10-17 04:08:33 -04:00
}
else {
strncpy(line, read_line, LINE_MAX_LENGTH - 1);
add_history(read_line);
free(read_line);
}
#else
2013-10-17 07:48:50 -04:00
printf(prompt);
char_index = 0;
while ((last_char = getchar()) != '\n') {
if (last_char == EOF)
goto eof;
2013-10-09 04:14:48 -04:00
if (char_index == LINE_MAX_LENGTH)
goto overflow;
line[char_index++] = last_char;
}
line[char_index] = '\0';
2013-10-17 04:08:33 -04:00
#endif
2013-10-17 07:48:50 -04:00
if (strlen(code) + strlen(line) >= CODE_MAX_LENGTH)
goto overflow;
strcat(code, line);
2013-10-12 00:06:02 -04:00
/* read */
n = pic_parse_cstr(pic, code, &vs);
if (n == 0) { /* wait for more input */
goto next;
2013-10-17 07:48:50 -04:00
}
code[0] = '\0';
if (n == -1) { /* parse error */
goto next;
2013-10-17 07:48:50 -04:00
}
for (i = 0; i < n; ++i) {
v = pic_car(pic, vs);
2013-10-14 20:08:10 -04:00
#if DEBUG
printf("[read: ");
pic_debug(pic, v);
printf("]\n");
#endif
/* eval */
proc = pic_codegen(pic, v);
if (proc == NULL) {
printf("compilation error: %s\n", pic->errmsg);
pic->errmsg = NULL;
goto next;
}
v = pic_apply(pic, proc, pic_nil_value());
if (pic_undef_p(v)) {
printf("runtime error: %s\n", pic->errmsg);
pic->errmsg = NULL;
goto next;
}
/* print */
printf("=> ");
pic_debug(pic, v);
printf("\n");
vs = pic_cdr(pic, vs);
2013-10-20 10:30:01 -04:00
}
2013-10-12 00:06:02 -04:00
next:
pic_gc_arena_restore(pic, ai);
}
eof:
puts("");
return 0;
2013-10-09 04:14:48 -04:00
overflow:
puts("** [fatal] line input overflow");
return 1;
}
int
exec_file(pic_state *pic, const char *fname)
{
FILE *file;
bool r;
pic_value v;
struct pic_proc *proc;
file = fopen(fname, "r");
if (file == NULL) {
fprintf(stderr, "fatal error: could not read %s\n", fname);
return 1;
}
r = pic_parse_file(pic, file, &v);
if (! r) {
fprintf(stderr, "fatal error: %s broken\n", fname);
return 1;
}
proc = pic_codegen(pic, v);
if (proc == NULL) {
fputs(pic->errmsg, stderr);
fprintf(stderr, "fatal error: %s compilation failure\n", fname);
return 1;
}
v = pic_apply(pic, proc, pic_nil_value());
if (pic_undef_p(v)) {
fputs(pic->errmsg, stderr);
fprintf(stderr, "fatal error: %s evaluation failure\n", fname);
return 1;
}
2013-10-10 03:15:41 -04:00
2013-10-09 03:58:35 -04:00
return 0;
}
int
main(int argc, char *argv[], char **envp)
{
pic_state *pic;
int res;
pic = pic_open(argc, argv, envp);
if (parse_opt(argc, argv)) {
res = repl(pic);
}
else {
res = exec_file(pic, fname);
}
pic_close(pic);
return res;
}