2017-04-18 02:40:39 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Calvin Rose
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2017-03-16 00:56:37 +00:00
|
|
|
#include <gst/gst.h>
|
2017-03-22 04:27:18 +00:00
|
|
|
#include <gst/parse.h>
|
|
|
|
#include <gst/compile.h>
|
|
|
|
#include <gst/stl.h>
|
2017-03-08 22:34:25 +00:00
|
|
|
|
2017-04-24 17:12:55 +00:00
|
|
|
#include <gst/disasm.h>
|
|
|
|
|
2017-04-24 20:02:54 +00:00
|
|
|
static const char GST_EXPECTED_INTEGER[] = "expected integer";
|
2017-04-12 14:31:50 +00:00
|
|
|
static const char GST_EXPECTED_STRING[] = "expected string";
|
|
|
|
|
|
|
|
/***/
|
|
|
|
/* Arithmetic */
|
|
|
|
/***/
|
|
|
|
|
2017-04-24 20:02:54 +00:00
|
|
|
#define MAKE_BINOP(name, op)\
|
|
|
|
GstValue gst_stl_binop_##name(GstValue lhs, GstValue rhs) {\
|
|
|
|
if (lhs.type == GST_INTEGER)\
|
|
|
|
if (rhs.type == GST_INTEGER)\
|
|
|
|
return gst_wrap_integer(lhs.data.integer op rhs.data.integer);\
|
|
|
|
else if (rhs.type == GST_REAL)\
|
|
|
|
return gst_wrap_real(lhs.data.integer op rhs.data.real);\
|
|
|
|
else\
|
|
|
|
return gst_wrap_nil();\
|
|
|
|
else if (lhs.type == GST_REAL)\
|
|
|
|
if (rhs.type == GST_INTEGER)\
|
|
|
|
return gst_wrap_real(lhs.data.real op rhs.data.integer);\
|
|
|
|
else if (rhs.type == GST_REAL)\
|
|
|
|
return gst_wrap_real(lhs.data.real op rhs.data.real);\
|
|
|
|
else\
|
|
|
|
return gst_wrap_nil();\
|
|
|
|
else\
|
|
|
|
return gst_wrap_nil();\
|
2017-04-12 14:31:50 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 20:02:54 +00:00
|
|
|
#define SIMPLE_ACCUM_FUNCTION(name, start, op)\
|
|
|
|
MAKE_BINOP(name, op)\
|
2017-04-12 14:31:50 +00:00
|
|
|
int gst_stl_##name(Gst* vm) {\
|
2017-04-24 20:02:54 +00:00
|
|
|
GstValue lhs, rhs;\
|
2017-04-12 14:31:50 +00:00
|
|
|
uint32_t j, count;\
|
|
|
|
count = gst_count_args(vm);\
|
2017-04-24 20:02:54 +00:00
|
|
|
lhs = gst_arg(vm, 0);\
|
2017-04-12 14:31:50 +00:00
|
|
|
for (j = 1; j < count; ++j) {\
|
2017-04-24 20:02:54 +00:00
|
|
|
rhs = gst_arg(vm, j);\
|
|
|
|
lhs = gst_stl_binop_##name(lhs, rhs);\
|
2017-04-12 14:31:50 +00:00
|
|
|
}\
|
2017-04-24 20:02:54 +00:00
|
|
|
gst_c_return(vm, lhs);\
|
2017-04-12 14:31:50 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 20:02:54 +00:00
|
|
|
SIMPLE_ACCUM_FUNCTION(add, 0, +)
|
|
|
|
SIMPLE_ACCUM_FUNCTION(mul, 1, *)
|
|
|
|
SIMPLE_ACCUM_FUNCTION(sub, 0, -)
|
|
|
|
SIMPLE_ACCUM_FUNCTION(div, 1, /)
|
2017-04-12 14:31:50 +00:00
|
|
|
|
2017-04-24 20:02:54 +00:00
|
|
|
#undef SIMPLE_ACCUM_FUNCTION
|
2017-04-12 14:31:50 +00:00
|
|
|
|
|
|
|
#define COMPARE_FUNCTION(name, check)\
|
|
|
|
int gst_stl_##name(Gst *vm) {\
|
|
|
|
GstValue ret;\
|
|
|
|
uint32_t i, count;\
|
|
|
|
count = gst_count_args(vm);\
|
|
|
|
ret.data.boolean = 1;\
|
|
|
|
ret.type = GST_BOOLEAN;\
|
|
|
|
if (count < 2) {\
|
|
|
|
gst_c_return(vm, ret);\
|
|
|
|
}\
|
|
|
|
for (i = 1; i < count; ++i) {\
|
|
|
|
GstValue lhs = gst_arg(vm, i - 1);\
|
|
|
|
GstValue rhs = gst_arg(vm, i);\
|
|
|
|
if (!(check)) {\
|
|
|
|
ret.data.boolean = 0;\
|
|
|
|
break;\
|
|
|
|
}\
|
|
|
|
}\
|
|
|
|
gst_c_return(vm, ret);\
|
|
|
|
}
|
|
|
|
|
|
|
|
COMPARE_FUNCTION(lessthan, gst_compare(lhs, rhs) < 0)
|
|
|
|
COMPARE_FUNCTION(greaterthan, gst_compare(lhs, rhs) > 0)
|
|
|
|
COMPARE_FUNCTION(equal, gst_equals(lhs, rhs))
|
|
|
|
COMPARE_FUNCTION(lessthaneq, gst_compare(lhs, rhs) <= 0)
|
|
|
|
COMPARE_FUNCTION(greaterthaneq, gst_compare(lhs, rhs) >= 0)
|
|
|
|
|
|
|
|
#undef COMPARE_FUNCTION
|
|
|
|
|
2017-04-24 22:09:23 +00:00
|
|
|
/* Boolean not */
|
|
|
|
int gst_stl_not(Gst *vm) {
|
|
|
|
gst_c_return(vm, gst_wrap_boolean(!gst_truthy(gst_arg(vm, 0))));
|
|
|
|
}
|
|
|
|
|
2017-03-08 22:34:25 +00:00
|
|
|
/****/
|
2017-03-09 18:49:46 +00:00
|
|
|
/* Core */
|
2017-03-08 22:34:25 +00:00
|
|
|
/****/
|
|
|
|
|
2017-04-12 14:31:50 +00:00
|
|
|
/* Get length of object */
|
|
|
|
int gst_stl_length(Gst *vm) {
|
|
|
|
uint32_t count = gst_count_args(vm);
|
|
|
|
if (count == 0) {
|
2017-04-25 01:00:56 +00:00
|
|
|
gst_c_return(vm, gst_wrap_nil());
|
|
|
|
} else {
|
|
|
|
GstValue ret;
|
2017-04-24 20:02:54 +00:00
|
|
|
ret.type = GST_INTEGER;
|
2017-04-12 14:31:50 +00:00
|
|
|
GstValue x = gst_arg(vm, 0);
|
|
|
|
switch (x.type) {
|
|
|
|
default:
|
|
|
|
gst_c_throwc(vm, "cannot get length");
|
|
|
|
case GST_STRING:
|
2017-04-24 20:02:54 +00:00
|
|
|
ret.data.integer = gst_string_length(x.data.string);
|
2017-04-12 14:31:50 +00:00
|
|
|
break;
|
|
|
|
case GST_ARRAY:
|
2017-04-24 20:02:54 +00:00
|
|
|
ret.data.integer = x.data.array->count;
|
2017-04-12 14:31:50 +00:00
|
|
|
break;
|
|
|
|
case GST_BYTEBUFFER:
|
2017-04-24 20:02:54 +00:00
|
|
|
ret.data.integer = x.data.buffer->count;
|
2017-04-12 14:31:50 +00:00
|
|
|
break;
|
|
|
|
case GST_TUPLE:
|
2017-04-24 20:02:54 +00:00
|
|
|
ret.data.integer = gst_tuple_length(x.data.tuple);
|
2017-04-12 14:31:50 +00:00
|
|
|
break;
|
2017-04-25 01:00:56 +00:00
|
|
|
case GST_TABLE:
|
|
|
|
ret.data.integer = x.data.table->count;
|
2017-04-12 14:31:50 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-04-25 01:00:56 +00:00
|
|
|
gst_c_return(vm, ret);
|
2017-04-12 14:31:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-25 16:26:58 +00:00
|
|
|
/* Get hash of a value */
|
|
|
|
int gst_stl_hash(Gst *vm) {
|
|
|
|
GstInteger h = gst_hash(gst_arg(vm, 0));
|
|
|
|
gst_c_return(vm, gst_wrap_integer(h));
|
|
|
|
}
|
|
|
|
|
2017-04-24 20:02:54 +00:00
|
|
|
/* Convert to integer */
|
|
|
|
int gst_stl_to_int(Gst *vm) {
|
|
|
|
GstValue x = gst_arg(vm, 0);
|
|
|
|
if (x.type == GST_INTEGER) gst_c_return(vm, x);
|
|
|
|
if (x.type == GST_REAL)
|
|
|
|
gst_c_return(vm, gst_wrap_integer((GstInteger) x.data.real));
|
|
|
|
else
|
|
|
|
gst_c_throwc(vm, "expected number");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert to integer */
|
|
|
|
int gst_stl_to_real(Gst *vm) {
|
|
|
|
GstValue x = gst_arg(vm, 0);
|
|
|
|
if (x.type == GST_REAL) gst_c_return(vm, x);
|
|
|
|
if (x.type == GST_INTEGER)
|
|
|
|
gst_c_return(vm, gst_wrap_real((GstReal) x.data.integer));
|
|
|
|
else
|
|
|
|
gst_c_throwc(vm, "expected number");
|
2017-04-12 14:31:50 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 16:56:29 +00:00
|
|
|
/* Get a slice of a sequence */
|
|
|
|
int gst_stl_slice(Gst *vm) {
|
|
|
|
uint32_t count = gst_count_args(vm);
|
|
|
|
int32_t from, to;
|
|
|
|
GstValue x;
|
|
|
|
const GstValue *data;
|
|
|
|
uint32_t length;
|
|
|
|
uint32_t newlength;
|
2017-04-24 20:02:54 +00:00
|
|
|
GstInteger num;
|
2017-04-19 16:56:29 +00:00
|
|
|
|
|
|
|
/* Get data */
|
2017-04-24 17:12:55 +00:00
|
|
|
x = gst_arg(vm, 0);
|
|
|
|
if (!gst_seq_view(x, &data, &length))
|
2017-04-19 16:56:29 +00:00
|
|
|
gst_c_throwc(vm, "expected array or tuple");
|
|
|
|
|
|
|
|
/* Get from index */
|
|
|
|
if (count < 2) {
|
|
|
|
from = 0;
|
|
|
|
} else {
|
2017-04-24 20:02:54 +00:00
|
|
|
if (!gst_check_integer(vm, 1, &num))
|
|
|
|
gst_c_throwc(vm, GST_EXPECTED_INTEGER);
|
|
|
|
from = gst_startrange(num, length);
|
2017-04-19 16:56:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get to index */
|
|
|
|
if (count < 3) {
|
|
|
|
to = length;
|
|
|
|
} else {
|
2017-04-24 20:02:54 +00:00
|
|
|
if (!gst_check_integer(vm, 2, &num))
|
|
|
|
gst_c_throwc(vm, GST_EXPECTED_INTEGER);
|
|
|
|
to = gst_endrange(num, length);
|
2017-04-19 16:56:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check from bad bounds */
|
|
|
|
if (from < 0 || to < 0)
|
|
|
|
gst_c_throwc(vm, "index out of bounds");
|
|
|
|
|
|
|
|
/* Build slice */
|
|
|
|
newlength = to - from;
|
|
|
|
if (x.type == GST_TUPLE) {
|
|
|
|
GstValue *tup = gst_tuple_begin(vm, newlength);
|
|
|
|
gst_memcpy(tup, data + from, newlength * sizeof(GstValue));
|
|
|
|
gst_c_return(vm, gst_wrap_tuple(gst_tuple_end(vm, tup)));
|
|
|
|
} else {
|
|
|
|
GstArray *arr = gst_array(vm, newlength);
|
|
|
|
arr->count = newlength;
|
|
|
|
gst_memcpy(arr->data, data + from, newlength * sizeof(GstValue));
|
|
|
|
gst_c_return(vm, gst_wrap_array(arr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 14:31:50 +00:00
|
|
|
/* Get type of object */
|
|
|
|
int gst_stl_type(Gst *vm) {
|
|
|
|
GstValue x;
|
|
|
|
const char *typestr = "nil";
|
|
|
|
uint32_t count = gst_count_args(vm);
|
|
|
|
if (count == 0)
|
|
|
|
gst_c_throwc(vm, "expected at least 1 argument");
|
|
|
|
x = gst_arg(vm, 0);
|
|
|
|
switch (x.type) {
|
|
|
|
default:
|
|
|
|
break;
|
2017-04-24 20:02:54 +00:00
|
|
|
case GST_REAL:
|
|
|
|
typestr = "real";
|
|
|
|
break;
|
|
|
|
case GST_INTEGER:
|
|
|
|
typestr = "integer";
|
2017-04-12 14:31:50 +00:00
|
|
|
break;
|
|
|
|
case GST_BOOLEAN:
|
|
|
|
typestr = "boolean";
|
|
|
|
break;
|
|
|
|
case GST_STRING:
|
|
|
|
typestr = "string";
|
|
|
|
break;
|
|
|
|
case GST_ARRAY:
|
|
|
|
typestr = "array";
|
|
|
|
break;
|
|
|
|
case GST_TUPLE:
|
|
|
|
typestr = "tuple";
|
|
|
|
break;
|
|
|
|
case GST_THREAD:
|
|
|
|
typestr = "thread";
|
|
|
|
break;
|
|
|
|
case GST_BYTEBUFFER:
|
|
|
|
typestr = "buffer";
|
|
|
|
break;
|
|
|
|
case GST_FUNCTION:
|
|
|
|
typestr = "function";
|
|
|
|
break;
|
|
|
|
case GST_CFUNCTION:
|
|
|
|
typestr = "cfunction";
|
|
|
|
break;
|
2017-04-25 01:00:56 +00:00
|
|
|
case GST_TABLE:
|
|
|
|
typestr = "table";
|
2017-04-12 14:31:50 +00:00
|
|
|
break;
|
|
|
|
case GST_USERDATA:
|
|
|
|
typestr = "userdata";
|
|
|
|
break;
|
|
|
|
case GST_FUNCENV:
|
|
|
|
typestr = "funcenv";
|
|
|
|
break;
|
|
|
|
case GST_FUNCDEF:
|
|
|
|
typestr = "funcdef";
|
|
|
|
break;
|
2017-03-08 22:34:25 +00:00
|
|
|
}
|
2017-04-15 20:05:59 +00:00
|
|
|
gst_c_return(vm, gst_string_cv(vm, typestr));
|
2017-03-08 22:34:25 +00:00
|
|
|
}
|
|
|
|
|
2017-04-12 14:31:50 +00:00
|
|
|
/* Create array */
|
|
|
|
int gst_stl_array(Gst *vm) {
|
|
|
|
uint32_t i;
|
|
|
|
uint32_t count = gst_count_args(vm);
|
|
|
|
GstArray *array = gst_array(vm, count);
|
2017-04-17 22:46:28 +00:00
|
|
|
for (i = 0; i < count; ++i)
|
2017-04-12 14:31:50 +00:00
|
|
|
array->data[i] = gst_arg(vm, i);
|
2017-04-17 22:46:28 +00:00
|
|
|
gst_c_return(vm, gst_wrap_array(array));
|
2017-03-09 18:49:46 +00:00
|
|
|
}
|
|
|
|
|
2017-04-12 14:31:50 +00:00
|
|
|
/* Create tuple */
|
|
|
|
int gst_stl_tuple(Gst *vm) {
|
|
|
|
uint32_t i;
|
|
|
|
uint32_t count = gst_count_args(vm);
|
2017-04-15 20:05:59 +00:00
|
|
|
GstValue *tuple= gst_tuple_begin(vm, count);
|
2017-04-17 22:46:28 +00:00
|
|
|
for (i = 0; i < count; ++i)
|
2017-04-12 14:31:50 +00:00
|
|
|
tuple[i] = gst_arg(vm, i);
|
2017-04-17 22:46:28 +00:00
|
|
|
gst_c_return(vm, gst_wrap_tuple(gst_tuple_end(vm, tuple)));
|
2017-04-12 14:31:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create object */
|
2017-04-25 01:00:56 +00:00
|
|
|
int gst_stl_table(Gst *vm) {
|
2017-04-12 14:31:50 +00:00
|
|
|
uint32_t i;
|
|
|
|
uint32_t count = gst_count_args(vm);
|
2017-04-25 01:00:56 +00:00
|
|
|
GstTable *table;
|
2017-04-17 22:46:28 +00:00
|
|
|
if (count % 2 != 0)
|
2017-04-12 14:31:50 +00:00
|
|
|
gst_c_throwc(vm, "expected even number of arguments");
|
2017-04-25 01:00:56 +00:00
|
|
|
table = gst_table(vm, 4 * count);
|
2017-04-17 22:46:28 +00:00
|
|
|
for (i = 0; i < count; i += 2)
|
2017-04-25 01:00:56 +00:00
|
|
|
gst_table_put(vm, table, gst_arg(vm, i), gst_arg(vm, i + 1));
|
|
|
|
gst_c_return(vm, gst_wrap_table(table));
|
2017-03-09 18:49:46 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 20:05:59 +00:00
|
|
|
/* Create struct */
|
|
|
|
int gst_stl_struct(Gst *vm) {
|
|
|
|
uint32_t i;
|
|
|
|
uint32_t count = gst_count_args(vm);
|
|
|
|
GstValue *st;
|
2017-04-17 22:46:28 +00:00
|
|
|
if (count % 2 != 0)
|
2017-04-15 20:05:59 +00:00
|
|
|
gst_c_throwc(vm, "expected even number of arguments");
|
2017-04-16 13:39:41 +00:00
|
|
|
st = gst_struct_begin(vm, count * 2);
|
2017-04-17 22:46:28 +00:00
|
|
|
for (i = 0; i < count; i += 2)
|
2017-04-15 20:05:59 +00:00
|
|
|
gst_struct_put(st, gst_arg(vm, i), gst_arg(vm, i + 1));
|
2017-04-17 22:46:28 +00:00
|
|
|
gst_c_return(vm, gst_wrap_struct(gst_struct_end(vm, st)));
|
2017-04-15 20:05:59 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 03:06:38 +00:00
|
|
|
/* Create a buffer */
|
2017-04-12 14:31:50 +00:00
|
|
|
int gst_stl_buffer(Gst *vm) {
|
2017-03-21 03:06:38 +00:00
|
|
|
uint32_t i, count;
|
2017-04-17 22:46:28 +00:00
|
|
|
GstBuffer *buf = gst_buffer(vm, 10);
|
2017-03-21 03:06:38 +00:00
|
|
|
count = gst_count_args(vm);
|
|
|
|
for (i = 0; i < count; ++i) {
|
2017-03-22 22:35:54 +00:00
|
|
|
const uint8_t *string = gst_to_string(vm, gst_arg(vm, i));
|
2017-04-17 22:46:28 +00:00
|
|
|
gst_buffer_append(vm, buf, string, gst_string_length(string));
|
2017-03-21 03:06:38 +00:00
|
|
|
}
|
2017-04-17 22:46:28 +00:00
|
|
|
gst_c_return(vm, gst_wrap_buffer(buf));
|
2017-03-21 03:06:38 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 17:12:55 +00:00
|
|
|
/* Concatenate strings */
|
2017-04-12 14:31:50 +00:00
|
|
|
int gst_stl_strcat(Gst *vm) {
|
2017-04-24 17:12:55 +00:00
|
|
|
uint32_t j;
|
|
|
|
uint32_t count = gst_count_args(vm);
|
|
|
|
uint32_t length = 0;
|
|
|
|
uint32_t index = 0;
|
2017-04-12 14:31:50 +00:00
|
|
|
uint8_t *str;
|
2017-04-24 17:12:55 +00:00
|
|
|
const uint8_t *dat;
|
|
|
|
uint32_t slen;
|
2017-04-12 14:31:50 +00:00
|
|
|
/* Find length and assert string arguments */
|
|
|
|
for (j = 0; j < count; ++j) {
|
2017-04-24 17:12:55 +00:00
|
|
|
if (gst_chararray_view(gst_arg(vm, j), &dat, &slen))
|
|
|
|
length += slen;
|
|
|
|
else
|
2017-04-12 14:31:50 +00:00
|
|
|
gst_c_throwc(vm, GST_EXPECTED_STRING);
|
|
|
|
}
|
|
|
|
/* Make string */
|
|
|
|
str = gst_string_begin(vm, length);
|
|
|
|
for (j = 0; j < count; ++j) {
|
2017-04-24 17:12:55 +00:00
|
|
|
gst_chararray_view(gst_arg(vm, j), &dat, &slen);
|
|
|
|
gst_memcpy(str + index, dat, slen);
|
2017-04-12 14:31:50 +00:00
|
|
|
index += slen;
|
|
|
|
}
|
2017-04-17 22:46:28 +00:00
|
|
|
gst_c_return(vm, gst_wrap_string(gst_string_end(vm, str)));
|
2017-03-21 03:06:38 +00:00
|
|
|
}
|
|
|
|
|
2017-04-12 14:31:50 +00:00
|
|
|
/* Associative rawget */
|
|
|
|
int gst_stl_rawget(Gst *vm) {
|
|
|
|
GstValue ret;
|
|
|
|
uint32_t count;
|
|
|
|
const char *err;
|
|
|
|
count = gst_count_args(vm);
|
2017-04-24 17:12:55 +00:00
|
|
|
if (count != 2)
|
2017-04-12 14:31:50 +00:00
|
|
|
gst_c_throwc(vm, "expects 2 arguments");
|
|
|
|
err = gst_get(gst_arg(vm, 0), gst_arg(vm, 1), &ret);
|
|
|
|
if (err != NULL)
|
|
|
|
gst_c_throwc(vm, err);
|
|
|
|
else
|
|
|
|
gst_c_return(vm, ret);
|
2017-03-22 04:27:18 +00:00
|
|
|
}
|
|
|
|
|
2017-04-12 14:31:50 +00:00
|
|
|
/* Associative rawset */
|
|
|
|
int gst_stl_rawset(Gst *vm) {
|
|
|
|
uint32_t count;
|
|
|
|
const char *err;
|
|
|
|
count = gst_count_args(vm);
|
2017-04-24 17:12:55 +00:00
|
|
|
if (count != 3)
|
2017-04-12 14:31:50 +00:00
|
|
|
gst_c_throwc(vm, "expects 3 arguments");
|
|
|
|
err = gst_set(vm, gst_arg(vm, 0), gst_arg(vm, 1), gst_arg(vm, 2));
|
2017-04-24 17:12:55 +00:00
|
|
|
if (err != NULL)
|
2017-04-12 14:31:50 +00:00
|
|
|
gst_c_throwc(vm, err);
|
2017-04-24 17:12:55 +00:00
|
|
|
else
|
2017-04-15 20:05:59 +00:00
|
|
|
gst_c_return(vm, gst_arg(vm, 0));
|
2017-04-24 17:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Push to end of array */
|
|
|
|
int gst_stl_push(Gst *vm) {
|
|
|
|
GstValue ds = gst_arg(vm, 0);
|
|
|
|
if (ds.type != GST_ARRAY)
|
|
|
|
gst_c_throwc(vm, "expected array");
|
|
|
|
gst_array_push(vm, ds.data.array, gst_arg(vm, 1));
|
|
|
|
gst_c_return(vm, ds);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pop from end of array */
|
|
|
|
int gst_stl_pop(Gst *vm) {
|
|
|
|
GstValue ds = gst_arg(vm, 0);
|
|
|
|
if (ds.type != GST_ARRAY)
|
|
|
|
gst_c_throwc(vm, "expected array");
|
|
|
|
gst_c_return(vm, gst_array_pop(ds.data.array));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Peek at end of array */
|
|
|
|
int gst_stl_peek(Gst *vm) {
|
|
|
|
GstValue ds = gst_arg(vm, 0);
|
|
|
|
if (ds.type != GST_ARRAY)
|
|
|
|
gst_c_throwc(vm, "expected array");
|
|
|
|
gst_c_return(vm, gst_array_peek(ds.data.array));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure array capacity */
|
|
|
|
int gst_stl_ensure(Gst *vm) {
|
|
|
|
GstValue ds = gst_arg(vm, 0);
|
|
|
|
GstValue cap = gst_arg(vm, 1);
|
|
|
|
if (ds.type != GST_ARRAY)
|
|
|
|
gst_c_throwc(vm, "expected array");
|
2017-04-24 20:02:54 +00:00
|
|
|
if (cap.type != GST_INTEGER)
|
|
|
|
gst_c_throwc(vm, GST_EXPECTED_INTEGER);
|
|
|
|
gst_array_ensure(vm, ds.data.array, (uint32_t) cap.data.integer);
|
2017-04-24 17:12:55 +00:00
|
|
|
gst_c_return(vm, ds);
|
2017-03-22 04:27:18 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 01:00:56 +00:00
|
|
|
/* Get next key in struct or table */
|
2017-04-16 13:39:41 +00:00
|
|
|
int gst_stl_next(Gst *vm) {
|
|
|
|
GstValue ds = gst_arg(vm, 0);
|
|
|
|
GstValue key = gst_arg(vm, 1);
|
2017-04-25 01:00:56 +00:00
|
|
|
if (ds.type == GST_TABLE) {
|
|
|
|
gst_c_return(vm, gst_table_next(ds.data.table, key));
|
2017-04-16 13:39:41 +00:00
|
|
|
} else if (ds.type == GST_STRUCT) {
|
2017-04-24 17:12:55 +00:00
|
|
|
gst_c_return(vm, gst_struct_next(ds.data.st, key));
|
2017-04-16 13:39:41 +00:00
|
|
|
} else {
|
2017-04-25 01:00:56 +00:00
|
|
|
gst_c_throwc(vm, "expected table or struct");
|
2017-04-16 13:39:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 14:31:50 +00:00
|
|
|
/* 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;
|
|
|
|
const 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);
|
2017-04-17 04:15:18 +00:00
|
|
|
if (j < count - 1)
|
|
|
|
fputc(' ', stdout);
|
2017-03-08 22:34:25 +00:00
|
|
|
}
|
2017-04-17 04:15:18 +00:00
|
|
|
fputc('\n', stdout);
|
2017-04-12 14:31:50 +00:00
|
|
|
return GST_RETURN_OK;
|
2017-03-08 22:34:25 +00:00
|
|
|
}
|
|
|
|
|
2017-04-12 14:31:50 +00:00
|
|
|
/* To string */
|
|
|
|
int gst_stl_tostring(Gst *vm) {
|
|
|
|
const uint8_t *string = gst_to_string(vm, gst_arg(vm, 0));
|
2017-04-17 22:46:28 +00:00
|
|
|
gst_c_return(vm, gst_wrap_string(string));
|
2017-03-09 18:49:46 +00:00
|
|
|
}
|
|
|
|
|
2017-04-12 14:31:50 +00:00
|
|
|
/* Exit */
|
|
|
|
int gst_stl_exit(Gst *vm) {
|
|
|
|
int ret;
|
2017-04-24 20:02:54 +00:00
|
|
|
GstValue x = gst_arg(vm, 0);
|
|
|
|
ret = x.type == GST_INTEGER ? x.data.integer : (x.type == GST_REAL ? x.data.real : 0);
|
2017-04-12 14:31:50 +00:00
|
|
|
exit(ret);
|
|
|
|
return GST_RETURN_OK;
|
2017-03-08 22:34:25 +00:00
|
|
|
}
|
|
|
|
|
2017-04-12 14:31:50 +00:00
|
|
|
/* Throw error */
|
|
|
|
int gst_stl_error(Gst *vm) {
|
2017-04-24 17:12:55 +00:00
|
|
|
gst_c_throw(vm, gst_arg(vm, 0));
|
2017-03-09 18:49:46 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 03:06:38 +00:00
|
|
|
/****/
|
|
|
|
/* Serialization */
|
|
|
|
/****/
|
|
|
|
|
|
|
|
/* Serialize data into buffer */
|
|
|
|
int gst_stl_serialize(Gst *vm) {
|
|
|
|
const char *err;
|
|
|
|
uint32_t i;
|
|
|
|
GstValue buffer = gst_arg(vm, 0);
|
|
|
|
if (buffer.type != GST_BYTEBUFFER)
|
|
|
|
gst_c_throwc(vm, "expected buffer");
|
|
|
|
for (i = 1; i < gst_count_args(vm); ++i) {
|
|
|
|
err = gst_serialize(vm, buffer.data.buffer, gst_arg(vm, i));
|
|
|
|
if (err != NULL)
|
|
|
|
gst_c_throwc(vm, err);
|
|
|
|
}
|
|
|
|
gst_c_return(vm, buffer);
|
|
|
|
}
|
|
|
|
|
2017-04-24 17:12:55 +00:00
|
|
|
/****/
|
|
|
|
/* Registry */
|
|
|
|
/****/
|
|
|
|
|
|
|
|
int gst_stl_global(Gst *vm) {
|
2017-04-25 01:00:56 +00:00
|
|
|
gst_c_return(vm, gst_table_get(vm->registry, gst_arg(vm, 0)));
|
2017-04-24 17:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int gst_stl_setglobal(Gst *vm) {
|
2017-04-25 01:00:56 +00:00
|
|
|
gst_table_put(vm, vm->registry, gst_arg(vm, 0), gst_arg(vm, 1));
|
2017-04-24 17:12:55 +00:00
|
|
|
gst_c_return(vm, gst_wrap_nil());
|
|
|
|
}
|
|
|
|
|
2017-03-08 22:34:25 +00:00
|
|
|
/****/
|
|
|
|
/* IO */
|
|
|
|
/****/
|
|
|
|
|
|
|
|
/* TODO - add userdata to allow for manipulation of FILE pointers. */
|
2017-03-09 18:49:46 +00:00
|
|
|
|
2017-04-24 17:12:55 +00:00
|
|
|
/* Open a a file and return a userdata wrapper arounf the C file API. */
|
2017-04-18 02:14:35 +00:00
|
|
|
int gst_stl_open(Gst *vm) {
|
|
|
|
const uint8_t *fname = gst_to_string(vm, gst_arg(vm, 0));
|
|
|
|
const uint8_t *fmode = gst_to_string(vm, gst_arg(vm, 1));
|
|
|
|
FILE *f;
|
2017-04-18 20:55:03 +00:00
|
|
|
FILE **fp;
|
|
|
|
GstValue *st;
|
2017-04-24 17:12:55 +00:00
|
|
|
if (gst_count_args(vm) < 2 || gst_arg(vm, 0).type != GST_STRING
|
|
|
|
|| gst_arg(vm, 1).type != GST_STRING)
|
2017-04-18 02:14:35 +00:00
|
|
|
gst_c_throwc(vm, "expected filename and filemode");
|
|
|
|
f = fopen((const char *)fname, (const char *)fmode);
|
|
|
|
if (!f)
|
|
|
|
gst_c_throwc(vm, "could not open file");
|
2017-04-18 20:55:03 +00:00
|
|
|
st = gst_struct_begin(vm, 0);
|
|
|
|
fp = gst_userdata(vm, sizeof(FILE *), gst_struct_end(vm, st));
|
2017-04-24 17:12:55 +00:00
|
|
|
*fp = f;
|
2017-04-18 20:55:03 +00:00
|
|
|
gst_c_return(vm, gst_wrap_userdata(fp));
|
2017-04-18 02:14:35 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 17:12:55 +00:00
|
|
|
/* Write a string to a file in one go. Overwrites an existing file. */
|
|
|
|
|
|
|
|
/****/
|
|
|
|
/* Temporary */
|
|
|
|
/****/
|
|
|
|
|
2017-04-24 22:09:23 +00:00
|
|
|
/* These functions should definitely be moved to a different module, removed, or
|
2017-04-24 17:12:55 +00:00
|
|
|
* rewritten in gst when the language is complete enough. This is not to say
|
|
|
|
* that functions in other section need not be moved. */
|
|
|
|
|
|
|
|
/* Print disassembly for a function */
|
|
|
|
int gst_stl_dasm(Gst *vm) {
|
|
|
|
GstValue x = gst_arg(vm, 0);
|
|
|
|
if (x.type == GST_FUNCTION) {
|
|
|
|
printf("%c[31m===== Begin Disassembly =====\n", 27);
|
|
|
|
gst_dasm_function(stdout, x.data.function);
|
|
|
|
printf("===== End Disassembly =====%c[0m\n", 27);
|
|
|
|
} else {
|
|
|
|
gst_c_throwc(vm, "expected function");
|
|
|
|
}
|
|
|
|
return GST_RETURN_OK;
|
|
|
|
}
|
|
|
|
|
2017-03-09 18:49:46 +00:00
|
|
|
/****/
|
|
|
|
/* Bootstraping */
|
|
|
|
/****/
|
|
|
|
|
2017-04-13 01:21:46 +00:00
|
|
|
static const GstModuleItem const std_module[] = {
|
2017-04-12 14:31:50 +00:00
|
|
|
{"+", gst_stl_add},
|
|
|
|
{"*", gst_stl_mul},
|
|
|
|
{"-", gst_stl_sub},
|
|
|
|
{"/", gst_stl_div},
|
|
|
|
{"<", gst_stl_lessthan},
|
|
|
|
{">", gst_stl_greaterthan},
|
|
|
|
{"=", gst_stl_equal},
|
|
|
|
{"<=", gst_stl_lessthaneq},
|
|
|
|
{">=", gst_stl_greaterthaneq},
|
2017-04-24 22:09:23 +00:00
|
|
|
{"not", gst_stl_not},
|
2017-04-12 14:31:50 +00:00
|
|
|
{"length", gst_stl_length},
|
2017-04-25 16:26:58 +00:00
|
|
|
{"hash", gst_stl_hash},
|
2017-04-24 20:02:54 +00:00
|
|
|
{"to-integer", gst_stl_to_int},
|
|
|
|
{"to-real", gst_stl_to_real},
|
2017-04-12 14:31:50 +00:00
|
|
|
{"type", gst_stl_type},
|
2017-04-19 16:56:29 +00:00
|
|
|
{"slice", gst_stl_slice},
|
2017-04-12 14:31:50 +00:00
|
|
|
{"array", gst_stl_array},
|
|
|
|
{"tuple", gst_stl_tuple},
|
2017-04-25 01:00:56 +00:00
|
|
|
{"table", gst_stl_table},
|
2017-04-15 20:05:59 +00:00
|
|
|
{"struct", gst_stl_struct},
|
2017-04-12 14:31:50 +00:00
|
|
|
{"buffer", gst_stl_buffer},
|
|
|
|
{"strcat", gst_stl_strcat},
|
|
|
|
{"print", gst_stl_print},
|
|
|
|
{"tostring", gst_stl_tostring},
|
|
|
|
{"exit", gst_stl_exit},
|
|
|
|
{"rawget", gst_stl_rawget},
|
|
|
|
{"rawset", gst_stl_rawset},
|
2017-04-19 13:02:12 +00:00
|
|
|
{"next", gst_stl_next},
|
2017-04-12 14:31:50 +00:00
|
|
|
{"error", gst_stl_error},
|
|
|
|
{"serialize", gst_stl_serialize},
|
2017-04-24 17:12:55 +00:00
|
|
|
{"global", gst_stl_global},
|
|
|
|
{"setglobal", gst_stl_setglobal},
|
|
|
|
{"push", gst_stl_push},
|
|
|
|
{"pop", gst_stl_pop},
|
|
|
|
{"peek", gst_stl_peek},
|
|
|
|
{"ensure", gst_stl_ensure},
|
2017-04-18 02:14:35 +00:00
|
|
|
{"open", gst_stl_open},
|
2017-04-24 17:12:55 +00:00
|
|
|
{"dasm", gst_stl_dasm},
|
2017-04-12 14:31:50 +00:00
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
2017-03-09 18:49:46 +00:00
|
|
|
/* Load all libraries */
|
2017-04-13 01:21:46 +00:00
|
|
|
void gst_stl_load(Gst *vm) {
|
2017-04-18 20:55:03 +00:00
|
|
|
gst_module_put(vm, "std", gst_cmodule_struct(vm, std_module));
|
2017-03-09 18:49:46 +00:00
|
|
|
}
|