2017-04-18 02:40:39 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Calvin Rose
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* 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:
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* 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-04-17 22:46:28 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
/* Wrapper functions wrap a data type that is used from C into a
|
|
|
|
* gst value, which can then be used in gst. */
|
|
|
|
|
|
|
|
GstValue gst_wrap_nil() {
|
|
|
|
GstValue y;
|
|
|
|
y.type = GST_NIL;
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
2017-04-19 16:56:29 +00:00
|
|
|
int gst_check_nil(Gst *vm, uint32_t i) {
|
|
|
|
GstValue a = gst_arg(vm, i);
|
|
|
|
return a.type == GST_NIL;
|
|
|
|
}
|
|
|
|
|
2017-04-17 22:46:28 +00:00
|
|
|
#define GST_WRAP_DEFINE(NAME, TYPE, GTYPE, UM)\
|
|
|
|
GstValue gst_wrap_##NAME(TYPE x) {\
|
|
|
|
GstValue y;\
|
|
|
|
y.type = GTYPE;\
|
|
|
|
y.data.UM = x;\
|
|
|
|
return y;\
|
2017-04-19 16:56:29 +00:00
|
|
|
}\
|
|
|
|
\
|
|
|
|
int gst_check_##NAME(Gst *vm, uint32_t i, TYPE (*out)) {\
|
|
|
|
GstValue a = gst_arg(vm, i);\
|
|
|
|
if (a.type != GTYPE) return 0;\
|
|
|
|
*out = a.data.UM;\
|
|
|
|
return 1;\
|
|
|
|
}\
|
2017-04-17 22:46:28 +00:00
|
|
|
|
2017-04-24 20:02:54 +00:00
|
|
|
GST_WRAP_DEFINE(real, GstReal, GST_REAL, real)
|
|
|
|
GST_WRAP_DEFINE(integer, GstInteger, GST_INTEGER, integer)
|
2017-04-17 22:46:28 +00:00
|
|
|
GST_WRAP_DEFINE(boolean, int, GST_BOOLEAN, boolean)
|
|
|
|
GST_WRAP_DEFINE(string, const uint8_t *, GST_STRING, string)
|
2017-07-02 21:17:24 +00:00
|
|
|
GST_WRAP_DEFINE(symbol, const uint8_t *, GST_SYMBOL, string)
|
2017-04-17 22:46:28 +00:00
|
|
|
GST_WRAP_DEFINE(array, GstArray *, GST_ARRAY, array)
|
|
|
|
GST_WRAP_DEFINE(tuple, const GstValue *, GST_TUPLE, tuple)
|
|
|
|
GST_WRAP_DEFINE(struct, const GstValue *, GST_STRUCT, st)
|
|
|
|
GST_WRAP_DEFINE(thread, GstThread *, GST_THREAD, thread)
|
|
|
|
GST_WRAP_DEFINE(buffer, GstBuffer *, GST_BYTEBUFFER, buffer)
|
|
|
|
GST_WRAP_DEFINE(function, GstFunction *, GST_FUNCTION, function)
|
|
|
|
GST_WRAP_DEFINE(cfunction, GstCFunction, GST_CFUNCTION, cfunction)
|
2017-04-25 01:00:56 +00:00
|
|
|
GST_WRAP_DEFINE(table, GstTable *, GST_TABLE, table)
|
2017-04-17 22:46:28 +00:00
|
|
|
GST_WRAP_DEFINE(funcenv, GstFuncEnv *, GST_FUNCENV, env)
|
|
|
|
GST_WRAP_DEFINE(funcdef, GstFuncDef *, GST_FUNCDEF, def)
|
|
|
|
|
|
|
|
#undef GST_WRAP_DEFINE
|
|
|
|
|
2017-04-26 14:21:03 +00:00
|
|
|
GstValue gst_wrap_userdata(void *x) {
|
|
|
|
GstValue ret;
|
|
|
|
ret.type = GST_USERDATA;
|
|
|
|
ret.data.pointer = x;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *gst_check_userdata(Gst *vm, uint32_t i, const GstUserType *type) {
|
|
|
|
GstValue x = gst_arg(vm, i);
|
|
|
|
GstUserdataHeader *h;
|
|
|
|
if (x.type != GST_USERDATA) return NULL;
|
2017-05-06 03:33:36 +00:00
|
|
|
h = gst_udata_header(x.data.pointer);
|
2017-04-26 14:21:03 +00:00
|
|
|
if (h->type != type) return NULL;
|
|
|
|
return x.data.pointer;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:51:52 +00:00
|
|
|
/****/
|
|
|
|
/* Parsing utils */
|
|
|
|
/****/
|
|
|
|
|
|
|
|
/* Get an integer power of 10 */
|
|
|
|
static double exp10(int power) {
|
|
|
|
if (power == 0) return 1;
|
|
|
|
if (power > 0) {
|
|
|
|
double result = 10;
|
|
|
|
int currentPower = 1;
|
|
|
|
while (currentPower * 2 <= power) {
|
|
|
|
result = result * result;
|
|
|
|
currentPower *= 2;
|
|
|
|
}
|
|
|
|
return result * exp10(power - currentPower);
|
|
|
|
} else {
|
|
|
|
return 1 / exp10(-power);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int gst_read_integer(const uint8_t *string, const uint8_t *end, int64_t *ret) {
|
|
|
|
int sign = 1, x = 0;
|
|
|
|
int64_t accum = 0;
|
|
|
|
if (*string == '-') {
|
|
|
|
sign = -1;
|
|
|
|
++string;
|
|
|
|
} else if (*string == '+') {
|
|
|
|
++string;
|
|
|
|
}
|
|
|
|
if (string >= end) return 0;
|
|
|
|
while (string < end) {
|
|
|
|
x = *string;
|
|
|
|
if (x < '0' || x > '9') return 0;
|
|
|
|
x -= '0';
|
|
|
|
accum = accum * 10 + x;
|
|
|
|
++string;
|
|
|
|
}
|
|
|
|
*ret = accum * sign;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read a real from a string. Returns if successfuly
|
|
|
|
* parsed a real from the enitre input string.
|
|
|
|
* If returned 1, output is int ret.*/
|
|
|
|
int gst_read_real(const uint8_t *string, const uint8_t *end, double *ret, int forceInt) {
|
|
|
|
int sign = 1, x = 0;
|
|
|
|
double accum = 0, exp = 1, place = 1;
|
|
|
|
/* Check the sign */
|
|
|
|
if (*string == '-') {
|
|
|
|
sign = -1;
|
|
|
|
++string;
|
|
|
|
} else if (*string == '+') {
|
|
|
|
++string;
|
|
|
|
}
|
|
|
|
if (string >= end) return 0;
|
|
|
|
while (string < end) {
|
|
|
|
if (*string == '.' && !forceInt) {
|
|
|
|
place = 0.1;
|
|
|
|
} else if (!forceInt && (*string == 'e' || *string == 'E')) {
|
|
|
|
/* Read the exponent */
|
|
|
|
++string;
|
|
|
|
if (string >= end) return 0;
|
|
|
|
if (!gst_read_real(string, end, &exp, 1))
|
|
|
|
return 0;
|
|
|
|
exp = exp10(exp);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
x = *string;
|
|
|
|
if (x < '0' || x > '9') return 0;
|
|
|
|
x -= '0';
|
|
|
|
if (place < 1) {
|
|
|
|
accum += x * place;
|
|
|
|
place *= 0.1;
|
|
|
|
} else {
|
|
|
|
accum *= 10;
|
|
|
|
accum += x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++string;
|
|
|
|
}
|
|
|
|
*ret = accum * sign * exp;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-04-24 17:12:55 +00:00
|
|
|
/* Utilities for manipulating different types with the same semantics */
|
|
|
|
|
|
|
|
/* Read both tuples and arrays as c pointers + uint32_t length. Return 1 if the
|
|
|
|
* view can be constructed, 0 if an invalid type. */
|
|
|
|
int gst_seq_view(GstValue seq, const GstValue **data, uint32_t *len) {
|
|
|
|
if (seq.type == GST_ARRAY) {
|
|
|
|
*data = seq.data.array->data;
|
|
|
|
*len = seq.data.array->count;
|
|
|
|
return 1;
|
|
|
|
} else if (seq.type == GST_TUPLE) {
|
|
|
|
*data = seq.data.st;
|
|
|
|
*len = gst_tuple_length(seq.data.st);
|
|
|
|
return 1;
|
2017-07-02 01:51:16 +00:00
|
|
|
}
|
2017-04-24 17:12:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read both strings and buffer as unsigned character array + uint32_t len.
|
|
|
|
* Returns 1 if the view can be constructed and 0 if the type is invalid. */
|
|
|
|
int gst_chararray_view(GstValue str, const uint8_t **data, uint32_t *len) {
|
2017-07-02 21:17:24 +00:00
|
|
|
if (str.type == GST_STRING || str.type == GST_SYMBOL) {
|
2017-04-24 17:12:55 +00:00
|
|
|
*data = str.data.string;
|
|
|
|
*len = gst_string_length(str.data.string);
|
|
|
|
return 1;
|
|
|
|
} else if (str.type == GST_BYTEBUFFER) {
|
|
|
|
*data = str.data.buffer->data;
|
|
|
|
*len = str.data.buffer->count;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-25 01:00:56 +00:00
|
|
|
/* Read both structs and tables as the entries of a hashtable with
|
2017-04-24 17:12:55 +00:00
|
|
|
* identical structure. Returns 1 if the view can be constructed and
|
|
|
|
* 0 if the type is invalid. */
|
|
|
|
int gst_hashtable_view(GstValue tab, const GstValue **data, uint32_t *cap) {
|
2017-04-25 01:00:56 +00:00
|
|
|
if (tab.type == GST_TABLE) {
|
|
|
|
*data = tab.data.table->data;
|
|
|
|
*cap = tab.data.table->capacity;
|
2017-04-24 17:12:55 +00:00
|
|
|
return 1;
|
|
|
|
} else if (tab.type == GST_STRUCT) {
|
|
|
|
*data = tab.data.st;
|
|
|
|
*cap = gst_struct_capacity(tab.data.st);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-24 20:02:54 +00:00
|
|
|
GstReal gst_integer_to_real(GstInteger x) {
|
|
|
|
return (GstReal) x;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstInteger gst_real_to_integer(GstReal x) {
|
|
|
|
return (GstInteger) x;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstInteger gst_startrange(GstInteger raw, uint32_t len) {
|
2017-05-03 23:57:06 +00:00
|
|
|
if (raw >= len)
|
2017-04-19 16:56:29 +00:00
|
|
|
return -1;
|
2017-04-24 20:02:54 +00:00
|
|
|
if (raw < 0)
|
|
|
|
return len + raw;
|
|
|
|
return raw;
|
2017-04-19 16:56:29 +00:00
|
|
|
}
|
|
|
|
|
2017-04-24 20:02:54 +00:00
|
|
|
GstInteger gst_endrange(GstInteger raw, uint32_t len) {
|
|
|
|
if (raw > len)
|
2017-04-19 16:56:29 +00:00
|
|
|
return -1;
|
2017-04-24 20:02:54 +00:00
|
|
|
if (raw < 0)
|
|
|
|
return len + raw + 1;
|
|
|
|
return raw;
|
2017-04-19 16:56:29 +00:00
|
|
|
}
|
2017-06-20 03:01:34 +00:00
|
|
|
|
|
|
|
int gst_callc(Gst *vm, GstCFunction fn, int numargs, ...) {
|
|
|
|
int result, i;
|
|
|
|
va_list args;
|
|
|
|
GstValue *stack;
|
|
|
|
va_start(args, numargs);
|
|
|
|
stack = gst_thread_beginframe(vm, vm->thread, gst_wrap_cfunction(fn), numargs);
|
|
|
|
for (i = 0; i < numargs; ++i) {
|
|
|
|
stack[i] = va_arg(args, GstValue);
|
|
|
|
}
|
|
|
|
va_end(args);
|
|
|
|
result = fn(vm);
|
|
|
|
gst_thread_popframe(vm, vm->thread);
|
|
|
|
return result;
|
2017-06-25 20:36:20 +00:00
|
|
|
}
|