mirror of
https://github.com/janet-lang/janet
synced 2024-11-10 10:49:54 +00:00
9f09a19feb
provides global variables.
149 lines
3.6 KiB
C
149 lines
3.6 KiB
C
/* This implements a standard library in gst. Some of this
|
|
* will eventually be ported over to gst if possible */
|
|
#include "stl.h"
|
|
#include "gst.h"
|
|
|
|
/****/
|
|
/* Core */
|
|
/****/
|
|
|
|
/* Print values for inspection */
|
|
int gst_stl_print(Gst *vm) {
|
|
uint32_t j, count;
|
|
count = gst_count_args(vm);
|
|
for (j = 0; j < count; ++j) {
|
|
uint32_t i;
|
|
uint8_t *string = gst_to_string(vm, gst_arg(vm, j));
|
|
uint32_t len = gst_string_length(string);
|
|
for (i = 0; i < len; ++i)
|
|
fputc(string[i], stdout);
|
|
fputc('\n', stdout);
|
|
}
|
|
return GST_RETURN_OK;
|
|
}
|
|
|
|
/* Get class value */
|
|
int gst_stl_getclass(Gst *vm) {
|
|
GstValue class = gst_get_class(gst_arg(vm, 0));
|
|
gst_c_return(vm, class);
|
|
}
|
|
|
|
/* Set class value */
|
|
int gst_stl_setclass(Gst *vm) {
|
|
GstValue x = gst_arg(vm, 0);
|
|
GstValue class = gst_arg(vm, 1);
|
|
const char *err = gst_set_class(x, class);
|
|
if (err != NULL)
|
|
gst_c_throwc(vm, err);
|
|
gst_c_return(vm, x);
|
|
}
|
|
|
|
/* Call a function */
|
|
int gst_stl_callforeach(Gst *vm) {
|
|
GstValue func = gst_arg(vm, 0);
|
|
uint32_t argCount = gst_count_args(vm);
|
|
uint32_t i;
|
|
if (argCount) {
|
|
for (i = 1; i < argCount; ++i)
|
|
gst_call(vm, func, 1, vm->thread->data + vm->thread->count + i);
|
|
vm->ret.type = GST_NIL;
|
|
return GST_RETURN_OK;
|
|
} else {
|
|
gst_c_throwc(vm, "expected at least one argument");
|
|
}
|
|
}
|
|
|
|
/* Exit */
|
|
int gst_stl_exit(Gst *vm) {
|
|
int ret;
|
|
GstValue exitValue = gst_arg(vm, 0);
|
|
ret = (exitValue.type == GST_NUMBER) ? exitValue.data.number : 0;
|
|
exit(ret);
|
|
return GST_RETURN_OK;
|
|
}
|
|
|
|
/* Load core */
|
|
void gst_stl_load_core(GstCompiler *c) {
|
|
gst_compiler_add_global_cfunction(c, "print", gst_stl_print);
|
|
gst_compiler_add_global_cfunction(c, "get-class", gst_stl_getclass);
|
|
gst_compiler_add_global_cfunction(c, "set-class", gst_stl_setclass);
|
|
gst_compiler_add_global_cfunction(c, "call-for-each", gst_stl_callforeach);
|
|
gst_compiler_add_global_cfunction(c, "exit", gst_stl_exit);
|
|
}
|
|
|
|
/****/
|
|
/* Parsing */
|
|
/****/
|
|
|
|
/* Parse a source string into an AST */
|
|
int gst_stl_parse(Gst *vm) {
|
|
uint8_t *source = gst_to_string(vm, gst_arg(vm, 0));
|
|
GstParser p;
|
|
/* init state */
|
|
gst_parser(&p, vm);
|
|
|
|
/* Get and parse input until we have a full form */
|
|
gst_parse_string(&p, source);
|
|
if (p.status == GST_PARSER_PENDING) {
|
|
gst_c_throwc(vm, "incomplete source");
|
|
} else if (p.status == GST_PARSER_ERROR) {
|
|
gst_c_throwc(vm, p.error);
|
|
} else {
|
|
gst_c_return(vm, p.value);
|
|
}
|
|
}
|
|
|
|
/* Load parsing */
|
|
void gst_stl_load_parse(GstCompiler *c) {
|
|
gst_compiler_add_global_cfunction(c, "parse", gst_stl_parse);
|
|
}
|
|
|
|
/****/
|
|
/* Compiling */
|
|
/****/
|
|
|
|
/* Compile an ast */
|
|
int gst_stl_compile(Gst *vm) {
|
|
GstValue ast = gst_arg(vm, 0);
|
|
GstValue env = gst_arg(vm, 1);
|
|
GstValue ret;
|
|
GstCompiler c;
|
|
/* init state */
|
|
if (env.type == GST_NIL) {
|
|
env = vm->rootenv;
|
|
}
|
|
gst_compiler(&c, vm);
|
|
gst_compiler_env(&c, env);
|
|
/* Prepare return value */
|
|
ret.type = GST_FUNCTION;
|
|
ret.data.function = gst_compiler_compile(&c, ast);
|
|
/* Check for errors */
|
|
if (c.error == NULL) {
|
|
gst_c_return(vm, ret);
|
|
} else {
|
|
gst_c_throwc(vm, c.error);
|
|
}
|
|
}
|
|
|
|
/* Load compilation */
|
|
void gst_stl_load_compile(GstCompiler *c) {
|
|
gst_compiler_add_global_cfunction(c, "compile", gst_stl_compile);
|
|
}
|
|
|
|
/****/
|
|
/* IO */
|
|
/****/
|
|
|
|
/* TODO - add userdata to allow for manipulation of FILE pointers. */
|
|
|
|
/****/
|
|
/* Bootstraping */
|
|
/****/
|
|
|
|
/* Load all libraries */
|
|
void gst_stl_load(GstCompiler *c) {
|
|
gst_stl_load_core(c);
|
|
gst_stl_load_parse(c);
|
|
gst_stl_load_compile(c);
|
|
}
|