2018-06-12 18:24:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 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.
|
|
|
|
*/
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#include <janet/janet.h>
|
2018-06-12 18:24:45 +00:00
|
|
|
#include <setjmp.h>
|
|
|
|
|
2018-08-20 00:21:27 +00:00
|
|
|
#include "state.h"
|
|
|
|
#include "vector.h"
|
|
|
|
#include "gc.h"
|
|
|
|
|
2018-06-12 18:24:45 +00:00
|
|
|
typedef struct {
|
|
|
|
jmp_buf err;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetBuffer *buf;
|
|
|
|
JanetTable seen;
|
2018-10-21 05:35:07 +00:00
|
|
|
JanetTable *rreg;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFuncEnv **seen_envs;
|
|
|
|
JanetFuncDef **seen_defs;
|
2018-06-12 18:24:45 +00:00
|
|
|
int32_t nextid;
|
|
|
|
} MarshalState;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
MR_OK,
|
|
|
|
MR_STACKOVERFLOW,
|
|
|
|
MR_NYI,
|
2018-08-20 00:21:27 +00:00
|
|
|
MR_NRV,
|
2018-08-23 01:41:25 +00:00
|
|
|
MR_C_STACKFRAME,
|
2018-06-12 18:24:45 +00:00
|
|
|
MR_OVERFLOW
|
|
|
|
} MarshalResult;
|
|
|
|
|
|
|
|
const char *mr_strings[] = {
|
|
|
|
"",
|
|
|
|
"stack overflow",
|
|
|
|
"type NYI",
|
2018-08-20 00:21:27 +00:00
|
|
|
"no registry value",
|
2018-08-23 01:41:25 +00:00
|
|
|
"fiber has c stack frame",
|
2018-06-12 18:24:45 +00:00
|
|
|
"buffer overflow"
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Lead bytes in marshaling protocol */
|
|
|
|
enum {
|
|
|
|
LB_NIL = 200,
|
|
|
|
LB_FALSE,
|
|
|
|
LB_TRUE,
|
|
|
|
LB_FIBER,
|
|
|
|
LB_INTEGER,
|
|
|
|
LB_REAL,
|
|
|
|
LB_STRING,
|
|
|
|
LB_SYMBOL,
|
|
|
|
LB_ARRAY,
|
|
|
|
LB_TUPLE,
|
|
|
|
LB_TABLE,
|
|
|
|
LB_TABLE_PROTO,
|
|
|
|
LB_STRUCT,
|
|
|
|
LB_BUFFER,
|
|
|
|
LB_FUNCTION,
|
2018-08-20 00:21:27 +00:00
|
|
|
LB_REGISTRY,
|
2018-06-12 18:24:45 +00:00
|
|
|
LB_ABSTRACT,
|
2018-08-20 00:21:27 +00:00
|
|
|
LB_REFERENCE,
|
|
|
|
LB_FUNCENV_REF,
|
|
|
|
LB_FUNCDEF_REF
|
2018-06-12 18:24:45 +00:00
|
|
|
} LeadBytes;
|
|
|
|
|
2018-10-21 05:35:07 +00:00
|
|
|
/* Helper to look inside an entry in an environment */
|
|
|
|
static Janet entry_getval(Janet env_entry) {
|
|
|
|
if (janet_checktype(env_entry, JANET_TABLE)) {
|
|
|
|
JanetTable *entry = janet_unwrap_table(env_entry);
|
|
|
|
Janet checkval = janet_table_get(entry, janet_csymbolv(":value"));
|
|
|
|
if (janet_checktype(checkval, JANET_NIL)) {
|
|
|
|
checkval = janet_table_get(entry, janet_csymbolv(":ref"));
|
|
|
|
}
|
|
|
|
return checkval;
|
|
|
|
} else if (janet_checktype(env_entry, JANET_STRUCT)) {
|
|
|
|
const JanetKV *entry = janet_unwrap_struct(env_entry);
|
|
|
|
Janet checkval = janet_struct_get(entry, janet_csymbolv(":value"));
|
|
|
|
if (janet_checktype(checkval, JANET_NIL)) {
|
|
|
|
checkval = janet_struct_get(entry, janet_csymbolv(":ref"));
|
|
|
|
}
|
|
|
|
return checkval;
|
|
|
|
} else {
|
|
|
|
return janet_wrap_nil();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make a reverse lookup table for an environment (for marshaling) */
|
|
|
|
JanetTable *janet_env_rreg(JanetTable *env) {
|
|
|
|
JanetTable *renv = janet_table(env->count);
|
|
|
|
while (env) {
|
|
|
|
for (int32_t i = 0; i < env->capacity; i++) {
|
|
|
|
if (janet_checktype(env->data[i].key, JANET_SYMBOL)) {
|
|
|
|
janet_table_put(renv,
|
|
|
|
entry_getval(env->data[i].value),
|
|
|
|
env->data[i].key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
env = env->proto;
|
|
|
|
}
|
|
|
|
return renv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make a forward lookup table from an environment (for unmarshaling) */
|
|
|
|
JanetTable *janet_env_reg(JanetTable *env) {
|
|
|
|
JanetTable *renv = janet_table(env->count);
|
|
|
|
while (env) {
|
|
|
|
for (int32_t i = 0; i < env->capacity; i++) {
|
|
|
|
if (janet_checktype(env->data[i].key, JANET_SYMBOL)) {
|
|
|
|
janet_table_put(renv,
|
|
|
|
env->data[i].key,
|
|
|
|
entry_getval(env->data[i].value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
env = env->proto;
|
|
|
|
}
|
|
|
|
return renv;
|
|
|
|
}
|
|
|
|
|
2018-06-12 18:24:45 +00:00
|
|
|
/* Marshal an integer onto the buffer */
|
2018-08-20 00:21:27 +00:00
|
|
|
static void pushint(MarshalState *st, int32_t x) {
|
2018-06-12 18:24:45 +00:00
|
|
|
if (x >= 0 && x < 200) {
|
2018-09-06 02:18:42 +00:00
|
|
|
if (janet_buffer_push_u8(st->buf, x)) longjmp(st->err, MR_OVERFLOW);
|
2018-06-12 18:24:45 +00:00
|
|
|
} else {
|
|
|
|
uint8_t intbuf[5];
|
|
|
|
intbuf[0] = LB_INTEGER;
|
|
|
|
intbuf[1] = x & 0xFF;
|
|
|
|
intbuf[2] = (x >> 8) & 0xFF;
|
|
|
|
intbuf[3] = (x >> 16) & 0xFF;
|
|
|
|
intbuf[4] = (x >> 24) & 0xFF;
|
2018-09-06 02:18:42 +00:00
|
|
|
if (janet_buffer_push_bytes(st->buf, intbuf, 5)) longjmp(st->err, MR_OVERFLOW);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-20 00:21:27 +00:00
|
|
|
static void pushbyte(MarshalState *st, uint8_t b) {
|
2018-09-06 02:18:42 +00:00
|
|
|
if (janet_buffer_push_u8(st->buf, b)) longjmp(st->err, MR_OVERFLOW);
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-06-12 18:24:45 +00:00
|
|
|
|
2018-08-20 00:21:27 +00:00
|
|
|
static void pushbytes(MarshalState *st, const uint8_t *bytes, int32_t len) {
|
2018-09-06 02:18:42 +00:00
|
|
|
if (janet_buffer_push_bytes(st->buf, bytes, len)) longjmp(st->err, MR_OVERFLOW);
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-06-12 18:24:45 +00:00
|
|
|
|
2018-08-20 00:21:27 +00:00
|
|
|
/* Forward declaration to enable mutual recursion. */
|
2018-09-06 02:18:42 +00:00
|
|
|
static void marshal_one(MarshalState *st, Janet x, int flags);
|
|
|
|
static void marshal_one_fiber(MarshalState *st, JanetFiber *fiber, int flags);
|
|
|
|
static void marshal_one_def(MarshalState *st, JanetFuncDef *def, int flags);
|
|
|
|
static void marshal_one_env(MarshalState *st, JanetFuncEnv *env, int flags);
|
2018-06-12 18:24:45 +00:00
|
|
|
|
2018-08-20 00:21:27 +00:00
|
|
|
/* Marshal a function env */
|
2018-09-06 02:18:42 +00:00
|
|
|
static void marshal_one_env(MarshalState *st, JanetFuncEnv *env, int flags) {
|
|
|
|
if ((flags & 0xFFFF) > JANET_RECURSION_GUARD)
|
2018-08-23 01:41:25 +00:00
|
|
|
longjmp(st->err, MR_STACKOVERFLOW);
|
2018-09-06 02:18:42 +00:00
|
|
|
for (int32_t i = 0; i < janet_v_count(st->seen_envs); i++) {
|
2018-08-20 00:21:27 +00:00
|
|
|
if (st->seen_envs[i] == env) {
|
|
|
|
pushbyte(st, LB_FUNCENV_REF);
|
|
|
|
pushint(st, i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_v_push(st->seen_envs, env);
|
2018-08-20 00:21:27 +00:00
|
|
|
pushint(st, env->offset);
|
|
|
|
pushint(st, env->length);
|
2018-08-23 01:41:25 +00:00
|
|
|
if (env->offset) {
|
2018-08-20 00:21:27 +00:00
|
|
|
/* On stack variant */
|
2018-08-24 15:35:08 +00:00
|
|
|
marshal_one_fiber(st, env->as.fiber, flags + 1);
|
2018-08-20 00:21:27 +00:00
|
|
|
} else {
|
|
|
|
/* Off stack variant */
|
|
|
|
for (int32_t i = 0; i < env->length; i++)
|
2018-08-24 15:35:08 +00:00
|
|
|
marshal_one(st, env->as.values[i], flags + 1);
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-12 18:24:45 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Add function flags to janet functions */
|
|
|
|
static void janet_func_addflags(JanetFuncDef *def) {
|
|
|
|
if (def->name) def->flags |= JANET_FUNCDEF_FLAG_HASNAME;
|
|
|
|
if (def->source) def->flags |= JANET_FUNCDEF_FLAG_HASSOURCE;
|
|
|
|
if (def->defs) def->flags |= JANET_FUNCDEF_FLAG_HASDEFS;
|
|
|
|
if (def->environments) def->flags |= JANET_FUNCDEF_FLAG_HASENVS;
|
|
|
|
if (def->sourcemap) def->flags |= JANET_FUNCDEF_FLAG_HASSOURCEMAP;
|
2018-08-21 19:07:37 +00:00
|
|
|
}
|
|
|
|
|
2018-08-20 00:21:27 +00:00
|
|
|
/* Marshal a function def */
|
2018-09-06 02:18:42 +00:00
|
|
|
static void marshal_one_def(MarshalState *st, JanetFuncDef *def, int flags) {
|
|
|
|
if ((flags & 0xFFFF) > JANET_RECURSION_GUARD)
|
2018-08-23 01:41:25 +00:00
|
|
|
longjmp(st->err, MR_STACKOVERFLOW);
|
2018-09-06 02:18:42 +00:00
|
|
|
for (int32_t i = 0; i < janet_v_count(st->seen_defs); i++) {
|
2018-08-20 00:21:27 +00:00
|
|
|
if (st->seen_defs[i] == def) {
|
|
|
|
pushbyte(st, LB_FUNCDEF_REF);
|
|
|
|
pushint(st, i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_func_addflags(def);
|
2018-08-21 18:16:55 +00:00
|
|
|
/* Add to lookup */
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_v_push(st->seen_defs, def);
|
2018-08-20 00:21:27 +00:00
|
|
|
pushint(st, def->flags);
|
|
|
|
pushint(st, def->slotcount);
|
|
|
|
pushint(st, def->arity);
|
|
|
|
pushint(st, def->constants_length);
|
|
|
|
pushint(st, def->bytecode_length);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASENVS)
|
2018-08-20 00:21:27 +00:00
|
|
|
pushint(st, def->environments_length);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASDEFS)
|
2018-08-20 00:21:27 +00:00
|
|
|
pushint(st, def->defs_length);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASNAME)
|
|
|
|
marshal_one(st, janet_wrap_string(def->name), flags);
|
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASSOURCE)
|
|
|
|
marshal_one(st, janet_wrap_string(def->source), flags);
|
2018-08-20 00:21:27 +00:00
|
|
|
|
|
|
|
/* marshal constants */
|
|
|
|
for (int32_t i = 0; i < def->constants_length; i++)
|
|
|
|
marshal_one(st, def->constants[i], flags);
|
|
|
|
|
|
|
|
/* marshal the bytecode */
|
|
|
|
for (int32_t i = 0; i < def->bytecode_length; i++) {
|
|
|
|
pushbyte(st, def->bytecode[i] & 0xFF);
|
|
|
|
pushbyte(st, (def->bytecode[i] >> 8) & 0xFF);
|
|
|
|
pushbyte(st, (def->bytecode[i] >> 16) & 0xFF);
|
|
|
|
pushbyte(st, (def->bytecode[i] >> 24) & 0xFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* marshal the environments if needed */
|
|
|
|
for (int32_t i = 0; i < def->environments_length; i++)
|
|
|
|
pushint(st, def->environments[i]);
|
|
|
|
|
|
|
|
/* marshal the sub funcdefs if needed */
|
|
|
|
for (int32_t i = 0; i < def->defs_length; i++)
|
|
|
|
marshal_one_def(st, def->defs[i], flags);
|
|
|
|
|
|
|
|
/* marshal source maps if needed */
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASSOURCEMAP) {
|
2018-08-20 00:21:27 +00:00
|
|
|
for (int32_t i = 0; i < def->bytecode_length; i++) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetSourceMapping map = def->sourcemap[i];
|
2018-08-20 00:21:27 +00:00
|
|
|
pushint(st, map.line);
|
|
|
|
pushint(st, map.column);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-12 18:24:45 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#define JANET_FIBER_FLAG_HASCHILD (1 << 29)
|
|
|
|
#define JANET_STACKFRAME_HASENV 2
|
2018-08-23 01:41:25 +00:00
|
|
|
|
|
|
|
/* Marshal a fiber */
|
2018-09-06 02:18:42 +00:00
|
|
|
static void marshal_one_fiber(MarshalState *st, JanetFiber *fiber, int flags) {
|
|
|
|
if ((flags & 0xFFFF) > JANET_RECURSION_GUARD)
|
2018-08-23 01:41:25 +00:00
|
|
|
longjmp(st->err, MR_STACKOVERFLOW);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (fiber->child) fiber->flags |= JANET_FIBER_FLAG_HASCHILD;
|
|
|
|
janet_table_put(&st->seen, janet_wrap_fiber(fiber), janet_wrap_integer(st->nextid++));
|
2018-08-23 01:41:25 +00:00
|
|
|
pushint(st, fiber->flags);
|
|
|
|
pushint(st, fiber->frame);
|
|
|
|
pushint(st, fiber->stackstart);
|
|
|
|
pushint(st, fiber->stacktop);
|
|
|
|
pushint(st, fiber->maxstack);
|
2018-09-06 02:18:42 +00:00
|
|
|
marshal_one(st, janet_wrap_function(fiber->root), flags + 1);
|
2018-08-23 01:41:25 +00:00
|
|
|
/* Do frames */
|
|
|
|
int32_t i = fiber->frame;
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t j = fiber->stackstart - JANET_FRAME_SIZE;
|
2018-08-23 01:41:25 +00:00
|
|
|
while (i > 0) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetStackFrame *frame = (JanetStackFrame *)(fiber->data + i - JANET_FRAME_SIZE);
|
|
|
|
if (frame->env) frame->flags |= JANET_STACKFRAME_HASENV;
|
2018-08-23 01:41:25 +00:00
|
|
|
pushint(st, frame->flags);
|
|
|
|
pushint(st, frame->prevframe);
|
|
|
|
if (!frame->func) longjmp(st->err, MR_C_STACKFRAME);
|
|
|
|
int32_t pcdiff = frame->pc - frame->func->def->bytecode;
|
|
|
|
pushint(st, pcdiff);
|
2018-09-06 02:18:42 +00:00
|
|
|
marshal_one(st, janet_wrap_function(frame->func), flags + 1);
|
2018-08-23 01:41:25 +00:00
|
|
|
if (frame->env) marshal_one_env(st, frame->env, flags + 1);
|
|
|
|
/* Marshal all values in the stack frame */
|
|
|
|
for (int32_t k = i; k < j; k++)
|
|
|
|
marshal_one(st, fiber->data[k], flags + 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
j = i - JANET_FRAME_SIZE;
|
2018-08-23 01:41:25 +00:00
|
|
|
i = frame->prevframe;
|
|
|
|
}
|
|
|
|
if (fiber->child)
|
|
|
|
marshal_one_fiber(st, fiber->child, flags + 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
fiber->flags &= ~JANET_FIBER_FLAG_HASCHILD;
|
2018-08-23 01:41:25 +00:00
|
|
|
}
|
|
|
|
|
2018-06-12 18:24:45 +00:00
|
|
|
/* The main body of the marshaling function. Is the main
|
|
|
|
* entry point for the mutually recursive functions. */
|
2018-09-06 02:18:42 +00:00
|
|
|
static void marshal_one(MarshalState *st, Janet x, int flags) {
|
|
|
|
JanetType type = janet_type(x);
|
|
|
|
if ((flags & 0xFFFF) > JANET_RECURSION_GUARD)
|
2018-06-12 18:24:45 +00:00
|
|
|
longjmp(st->err, MR_STACKOVERFLOW);
|
|
|
|
|
|
|
|
/* Check simple primitvies (non reference types, no benefit from memoization) */
|
|
|
|
switch (type) {
|
|
|
|
default:
|
|
|
|
break;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_NIL:
|
|
|
|
case JANET_FALSE:
|
|
|
|
case JANET_TRUE:
|
2018-08-20 00:21:27 +00:00
|
|
|
pushbyte(st, 200 + type);
|
2018-06-12 18:24:45 +00:00
|
|
|
return;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_INTEGER:
|
|
|
|
pushint(st, janet_unwrap_integer(x));
|
2018-06-12 18:24:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-21 05:35:07 +00:00
|
|
|
#define MARK_SEEN() \
|
|
|
|
janet_table_put(&st->seen, x, janet_wrap_integer(st->nextid++))
|
|
|
|
|
|
|
|
/* Check reference and registry value */
|
2018-06-12 18:24:45 +00:00
|
|
|
{
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet check = janet_table_get(&st->seen, x);
|
|
|
|
if (janet_checktype(check, JANET_INTEGER)) {
|
2018-08-20 00:21:27 +00:00
|
|
|
pushbyte(st, LB_REFERENCE);
|
2018-09-06 02:18:42 +00:00
|
|
|
pushint(st, janet_unwrap_integer(check));
|
2018-06-12 18:24:45 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-10-21 05:35:07 +00:00
|
|
|
if (st->rreg) {
|
|
|
|
check = janet_table_get(st->rreg, x);
|
|
|
|
if (janet_checktype(check, JANET_SYMBOL)) {
|
|
|
|
MARK_SEEN();
|
|
|
|
const uint8_t *regname = janet_unwrap_symbol(check);
|
|
|
|
pushbyte(st, LB_REGISTRY);
|
|
|
|
pushint(st, janet_string_length(regname));
|
|
|
|
pushbytes(st, regname, janet_string_length(regname));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Reference types */
|
|
|
|
switch (type) {
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_REAL:
|
2018-06-12 18:24:45 +00:00
|
|
|
{
|
|
|
|
union {
|
|
|
|
double d;
|
|
|
|
uint8_t bytes[8];
|
|
|
|
} u;
|
2018-09-06 02:18:42 +00:00
|
|
|
u.d = janet_unwrap_real(x);
|
|
|
|
#ifdef JANET_BIG_ENDIAN
|
2018-06-12 18:24:45 +00:00
|
|
|
/* Swap byte order */
|
|
|
|
uint8_t temp;
|
|
|
|
temp = u.bytes[7]; u.bytes[7] = u.bytes[0]; u.bytes[0] = temp;
|
|
|
|
temp = u.bytes[6]; u.bytes[6] = u.bytes[1]; u.bytes[1] = temp;
|
|
|
|
temp = u.bytes[5]; u.bytes[5] = u.bytes[2]; u.bytes[2] = temp;
|
|
|
|
temp = u.bytes[4]; u.bytes[4] = u.bytes[3]; u.bytes[3] = temp;
|
|
|
|
#endif
|
2018-08-20 00:21:27 +00:00
|
|
|
pushbyte(st, LB_REAL);
|
|
|
|
pushbytes(st, u.bytes, 8);
|
2018-06-12 18:24:45 +00:00
|
|
|
MARK_SEEN();
|
|
|
|
}
|
|
|
|
return;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_STRING:
|
|
|
|
case JANET_SYMBOL:
|
2018-06-12 18:24:45 +00:00
|
|
|
{
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *str = janet_unwrap_string(x);
|
|
|
|
int32_t length = janet_string_length(str);
|
2018-06-12 18:24:45 +00:00
|
|
|
/* Record reference */
|
|
|
|
MARK_SEEN();
|
2018-09-06 02:18:42 +00:00
|
|
|
uint8_t lb = (type == JANET_STRING) ? LB_STRING : LB_SYMBOL;
|
2018-08-20 00:21:27 +00:00
|
|
|
pushbyte(st, lb);
|
|
|
|
pushint(st, length);
|
|
|
|
pushbytes(st, str, length);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
return;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_BUFFER:
|
2018-06-12 18:24:45 +00:00
|
|
|
{
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetBuffer *buffer = janet_unwrap_buffer(x);
|
2018-06-12 18:24:45 +00:00
|
|
|
/* Record reference */
|
|
|
|
MARK_SEEN();
|
2018-08-20 00:21:27 +00:00
|
|
|
pushbyte(st, LB_BUFFER);
|
|
|
|
pushint(st, buffer->count);
|
|
|
|
pushbytes(st, buffer->data, buffer->count);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
return;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_ARRAY:
|
2018-06-12 18:24:45 +00:00
|
|
|
{
|
|
|
|
int32_t i;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetArray *a = janet_unwrap_array(x);
|
2018-06-12 18:24:45 +00:00
|
|
|
MARK_SEEN();
|
2018-08-20 00:21:27 +00:00
|
|
|
pushbyte(st, LB_ARRAY);
|
|
|
|
pushint(st, a->count);
|
|
|
|
for (i = 0; i < a->count; i++)
|
|
|
|
marshal_one(st, a->data[i], flags + 1);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
return;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_TUPLE:
|
2018-06-12 18:24:45 +00:00
|
|
|
{
|
|
|
|
int32_t i, count;
|
2018-09-06 02:18:42 +00:00
|
|
|
const Janet *tup = janet_unwrap_tuple(x);
|
|
|
|
count = janet_tuple_length(tup);
|
2018-08-20 00:21:27 +00:00
|
|
|
pushbyte(st, LB_TUPLE);
|
|
|
|
pushint(st, count);
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
marshal_one(st, tup[i], flags + 1);
|
2018-06-12 18:24:45 +00:00
|
|
|
/* Mark as seen AFTER marshaling */
|
|
|
|
MARK_SEEN();
|
|
|
|
}
|
|
|
|
return;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_TABLE:
|
2018-06-12 18:24:45 +00:00
|
|
|
{
|
2018-09-06 02:18:42 +00:00
|
|
|
const JanetKV *kv = NULL;
|
|
|
|
JanetTable *t = janet_unwrap_table(x);
|
2018-06-12 18:24:45 +00:00
|
|
|
MARK_SEEN();
|
2018-08-20 00:21:27 +00:00
|
|
|
pushbyte(st, t->proto ? LB_TABLE_PROTO : LB_TABLE);
|
|
|
|
pushint(st, t->count);
|
|
|
|
if (t->proto)
|
2018-09-06 02:18:42 +00:00
|
|
|
marshal_one(st, janet_wrap_table(t->proto), flags + 1);
|
|
|
|
while ((kv = janet_table_next(t, kv))) {
|
2018-08-20 00:21:27 +00:00
|
|
|
marshal_one(st, kv->key, flags + 1);
|
|
|
|
marshal_one(st, kv->value, flags + 1);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_STRUCT:
|
2018-06-12 18:24:45 +00:00
|
|
|
{
|
|
|
|
int32_t count;
|
2018-09-06 02:18:42 +00:00
|
|
|
const JanetKV *kv = NULL;
|
|
|
|
const JanetKV *struct_ = janet_unwrap_struct(x);
|
|
|
|
count = janet_struct_length(struct_);
|
2018-08-20 00:21:27 +00:00
|
|
|
pushbyte(st, LB_STRUCT);
|
|
|
|
pushint(st, count);
|
2018-09-06 02:18:42 +00:00
|
|
|
while ((kv = janet_struct_next(struct_, kv))) {
|
2018-08-20 00:21:27 +00:00
|
|
|
marshal_one(st, kv->key, flags + 1);
|
|
|
|
marshal_one(st, kv->value, flags + 1);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
/* Mark as seen AFTER marshaling */
|
|
|
|
MARK_SEEN();
|
|
|
|
}
|
|
|
|
return;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_ABSTRACT:
|
|
|
|
case JANET_CFUNCTION:
|
2018-10-21 05:35:07 +00:00
|
|
|
goto noregval;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_FUNCTION:
|
2018-08-20 00:21:27 +00:00
|
|
|
{
|
|
|
|
pushbyte(st, LB_FUNCTION);
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFunction *func = janet_unwrap_function(x);
|
2018-08-20 00:21:27 +00:00
|
|
|
marshal_one_def(st, func->def, flags);
|
|
|
|
/* Mark seen after reading def, but before envs */
|
|
|
|
MARK_SEEN();
|
|
|
|
for (int32_t i = 0; i < func->def->environments_length; i++)
|
2018-08-21 20:36:49 +00:00
|
|
|
marshal_one_env(st, func->envs[i], flags + 1);
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
|
|
|
return;
|
2018-09-06 02:18:42 +00:00
|
|
|
case JANET_FIBER:
|
2018-08-21 20:36:49 +00:00
|
|
|
{
|
|
|
|
pushbyte(st, LB_FIBER);
|
2018-09-06 02:18:42 +00:00
|
|
|
marshal_one_fiber(st, janet_unwrap_fiber(x), flags + 1);
|
2018-08-21 20:36:49 +00:00
|
|
|
}
|
|
|
|
return;
|
2018-06-12 18:24:45 +00:00
|
|
|
default:
|
|
|
|
goto nyi;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef MARK_SEEN
|
|
|
|
|
|
|
|
/* Errors */
|
|
|
|
|
|
|
|
nyi:
|
|
|
|
longjmp(st->err, MR_NYI);
|
2018-08-20 00:21:27 +00:00
|
|
|
|
|
|
|
noregval:
|
|
|
|
longjmp(st->err, MR_NRV);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
|
2018-10-21 05:35:07 +00:00
|
|
|
int janet_marshal(JanetBuffer *buf, Janet x, JanetTable *rreg, int flags) {
|
2018-06-12 18:24:45 +00:00
|
|
|
int status;
|
|
|
|
MarshalState st;
|
|
|
|
st.buf = buf;
|
|
|
|
st.nextid = 0;
|
2018-08-20 00:21:27 +00:00
|
|
|
st.seen_defs = NULL;
|
|
|
|
st.seen_envs = NULL;
|
2018-10-21 05:35:07 +00:00
|
|
|
st.rreg = rreg;
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_table_init(&st.seen, 0);
|
2018-06-12 18:24:45 +00:00
|
|
|
if (!(status = setjmp(st.err)))
|
2018-08-20 00:21:27 +00:00
|
|
|
marshal_one(&st, x, flags);
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_table_deinit(&st.seen);
|
2018-10-04 21:33:44 +00:00
|
|
|
janet_v_free(st.seen_envs);
|
|
|
|
janet_v_free(st.seen_defs);
|
2018-06-12 18:24:45 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
jmp_buf err;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetArray lookup;
|
2018-10-21 05:35:07 +00:00
|
|
|
JanetTable *reg;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFuncEnv **lookup_envs;
|
|
|
|
JanetFuncDef **lookup_defs;
|
2018-06-12 18:24:45 +00:00
|
|
|
const uint8_t *end;
|
|
|
|
} UnmarshalState;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
UMR_OK,
|
|
|
|
UMR_STACKOVERFLOW,
|
|
|
|
UMR_EOS,
|
|
|
|
UMR_UNKNOWN,
|
|
|
|
UMR_EXPECTED_INTEGER,
|
|
|
|
UMR_EXPECTED_TABLE,
|
2018-08-20 00:21:27 +00:00
|
|
|
UMR_EXPECTED_FIBER,
|
|
|
|
UMR_EXPECTED_STRING,
|
|
|
|
UMR_INVALID_REFERENCE,
|
2018-08-24 12:22:43 +00:00
|
|
|
UMR_INVALID_BYTECODE,
|
|
|
|
UMR_INVALID_FIBER
|
2018-06-12 18:24:45 +00:00
|
|
|
} UnmarshalResult;
|
|
|
|
|
|
|
|
const char *umr_strings[] = {
|
|
|
|
"",
|
|
|
|
"stack overflow",
|
|
|
|
"unexpected end of source",
|
2018-08-24 12:22:43 +00:00
|
|
|
"unmarshal error",
|
2018-06-12 18:24:45 +00:00
|
|
|
"expected integer",
|
|
|
|
"expected table",
|
2018-08-20 00:21:27 +00:00
|
|
|
"expected fiber",
|
|
|
|
"expected string",
|
|
|
|
"invalid reference",
|
2018-08-24 12:22:43 +00:00
|
|
|
"invalid bytecode",
|
|
|
|
"invalid fiber"
|
2018-06-12 18:24:45 +00:00
|
|
|
};
|
|
|
|
|
2018-08-20 00:21:27 +00:00
|
|
|
/* Helper to read a 32 bit integer from an unmarshal state */
|
|
|
|
static int32_t readint(UnmarshalState *st, const uint8_t **atdata) {
|
|
|
|
const uint8_t *data = *atdata;
|
|
|
|
int32_t ret;
|
|
|
|
if (data >= st->end) longjmp(st->err, UMR_EOS);
|
|
|
|
if (*data < 200) {
|
|
|
|
ret = *data++;
|
|
|
|
} else if (*data == LB_INTEGER) {
|
|
|
|
if (data + 5 > st->end) longjmp(st->err, UMR_EOS);
|
|
|
|
ret = (data[1]) |
|
|
|
|
(data[2] << 8) |
|
|
|
|
(data[3] << 16) |
|
|
|
|
(data[4] << 24);
|
|
|
|
data += 5;
|
|
|
|
} else {
|
|
|
|
longjmp(st->err, UMR_EXPECTED_INTEGER);
|
|
|
|
}
|
|
|
|
*atdata = data;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-08-24 15:35:08 +00:00
|
|
|
/* Forward declarations for mutual recursion */
|
2018-08-20 00:21:27 +00:00
|
|
|
static const uint8_t *unmarshal_one(
|
|
|
|
UnmarshalState *st,
|
|
|
|
const uint8_t *data,
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet *out,
|
2018-08-20 00:21:27 +00:00
|
|
|
int flags);
|
2018-08-24 15:35:08 +00:00
|
|
|
static const uint8_t *unmarshal_one_env(
|
|
|
|
UnmarshalState *st,
|
|
|
|
const uint8_t *data,
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFuncEnv **out,
|
2018-08-24 15:35:08 +00:00
|
|
|
int flags);
|
|
|
|
static const uint8_t *unmarshal_one_def(
|
|
|
|
UnmarshalState *st,
|
|
|
|
const uint8_t *data,
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFuncDef **out,
|
2018-08-24 15:35:08 +00:00
|
|
|
int flags);
|
|
|
|
static const uint8_t *unmarshal_one_fiber(
|
|
|
|
UnmarshalState *st,
|
|
|
|
const uint8_t *data,
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFiber **out,
|
2018-08-24 15:35:08 +00:00
|
|
|
int flags);
|
2018-08-20 00:21:27 +00:00
|
|
|
|
|
|
|
/* Unmarshal a funcenv */
|
|
|
|
static const uint8_t *unmarshal_one_env(
|
|
|
|
UnmarshalState *st,
|
|
|
|
const uint8_t *data,
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFuncEnv **out,
|
2018-08-20 00:21:27 +00:00
|
|
|
int flags) {
|
|
|
|
const uint8_t *end = st->end;
|
|
|
|
if (data >= end) longjmp(st->err, UMR_EOS);
|
|
|
|
if (*data == LB_FUNCENV_REF) {
|
2018-08-21 17:09:01 +00:00
|
|
|
data++;
|
2018-08-20 00:21:27 +00:00
|
|
|
int32_t index = readint(st, &data);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (index < 0 || index >= janet_v_count(st->lookup_envs))
|
2018-08-20 00:21:27 +00:00
|
|
|
longjmp(st->err, UMR_INVALID_REFERENCE);
|
|
|
|
*out = st->lookup_envs[index];
|
|
|
|
} else {
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFuncEnv *env = janet_gcalloc(JANET_MEMORY_FUNCENV, sizeof(JanetFuncEnv));
|
2018-08-24 12:22:43 +00:00
|
|
|
env->length = 0;
|
|
|
|
env->offset = 0;
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_v_push(st->lookup_envs, env);
|
2018-08-24 12:22:43 +00:00
|
|
|
int32_t offset = readint(st, &data);
|
|
|
|
int32_t length = readint(st, &data);
|
|
|
|
if (offset) {
|
2018-08-20 00:21:27 +00:00
|
|
|
/* On stack variant */
|
2018-08-24 15:35:08 +00:00
|
|
|
data = unmarshal_one_fiber(st, data, &(env->as.fiber), flags);
|
2018-08-24 12:22:43 +00:00
|
|
|
/* Unmarshaling fiber may set values */
|
|
|
|
if (env->offset != 0 && env->offset != offset) longjmp(st->err, UMR_UNKNOWN);
|
|
|
|
if (env->length != 0 && env->length != length) longjmp(st->err, UMR_UNKNOWN);
|
2018-08-20 00:21:27 +00:00
|
|
|
} else {
|
|
|
|
/* Off stack variant */
|
2018-09-06 02:18:42 +00:00
|
|
|
env->as.values = malloc(sizeof(Janet) * length);
|
2018-08-20 00:21:27 +00:00
|
|
|
if (!env->as.values) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-08-24 15:35:08 +00:00
|
|
|
for (int32_t i = 0; i < length; i++)
|
2018-08-20 00:21:27 +00:00
|
|
|
data = unmarshal_one(st, data, env->as.values + i, flags);
|
|
|
|
}
|
2018-08-24 12:22:43 +00:00
|
|
|
env->offset = offset;
|
|
|
|
env->length = length;
|
2018-08-21 17:09:01 +00:00
|
|
|
*out = env;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unmarshal a funcdef */
|
|
|
|
static const uint8_t *unmarshal_one_def(
|
|
|
|
UnmarshalState *st,
|
|
|
|
const uint8_t *data,
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFuncDef **out,
|
2018-08-20 00:21:27 +00:00
|
|
|
int flags) {
|
|
|
|
const uint8_t *end = st->end;
|
|
|
|
if (data >= end) longjmp(st->err, UMR_EOS);
|
|
|
|
if (*data == LB_FUNCDEF_REF) {
|
2018-08-21 17:09:01 +00:00
|
|
|
data++;
|
2018-08-20 00:21:27 +00:00
|
|
|
int32_t index = readint(st, &data);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (index < 0 || index >= janet_v_count(st->lookup_defs))
|
2018-08-20 00:21:27 +00:00
|
|
|
longjmp(st->err, UMR_INVALID_REFERENCE);
|
|
|
|
*out = st->lookup_defs[index];
|
|
|
|
} else {
|
2018-08-23 01:41:25 +00:00
|
|
|
/* Initialize with values that will not break garbage collection
|
|
|
|
* if unmarshaling fails. */
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFuncDef *def = janet_gcalloc(JANET_MEMORY_FUNCDEF, sizeof(JanetFuncDef));
|
2018-08-21 18:16:55 +00:00
|
|
|
def->environments_length = 0;
|
|
|
|
def->defs_length = 0;
|
2018-08-23 01:41:25 +00:00
|
|
|
def->constants_length = 0;
|
|
|
|
def->bytecode_length = 0;
|
2018-08-21 18:16:55 +00:00
|
|
|
def->name = NULL;
|
|
|
|
def->source = NULL;
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_v_push(st->lookup_defs, def);
|
2018-08-23 01:41:25 +00:00
|
|
|
|
|
|
|
/* Set default lengths to zero */
|
|
|
|
int32_t bytecode_length = 0;
|
|
|
|
int32_t constants_length = 0;
|
|
|
|
int32_t environments_length = 0;
|
|
|
|
int32_t defs_length = 0;
|
2018-08-20 00:21:27 +00:00
|
|
|
|
|
|
|
/* Read flags and other fixed values */
|
2018-08-21 18:16:55 +00:00
|
|
|
def->flags = readint(st, &data);
|
|
|
|
def->slotcount = readint(st, &data);
|
|
|
|
def->arity = readint(st, &data);
|
2018-08-23 01:41:25 +00:00
|
|
|
|
|
|
|
/* Read some lengths */
|
|
|
|
constants_length = readint(st, &data);
|
|
|
|
bytecode_length = readint(st, &data);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASENVS)
|
2018-08-23 01:41:25 +00:00
|
|
|
environments_length = readint(st, &data);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASDEFS)
|
2018-08-23 01:41:25 +00:00
|
|
|
defs_length = readint(st, &data);
|
|
|
|
|
|
|
|
/* Check name and source (optional) */
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASNAME) {
|
|
|
|
Janet x;
|
2018-08-20 00:21:27 +00:00
|
|
|
data = unmarshal_one(st, data, &x, flags + 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (!janet_checktype(x, JANET_STRING)) longjmp(st->err, UMR_EXPECTED_STRING);
|
|
|
|
def->name = janet_unwrap_string(x);
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASSOURCE) {
|
|
|
|
Janet x;
|
2018-08-20 00:21:27 +00:00
|
|
|
data = unmarshal_one(st, data, &x, flags + 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (!janet_checktype(x, JANET_STRING)) longjmp(st->err, UMR_EXPECTED_STRING);
|
|
|
|
def->source = janet_unwrap_string(x);
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Unmarshal constants */
|
2018-08-23 01:41:25 +00:00
|
|
|
if (constants_length) {
|
2018-09-06 02:18:42 +00:00
|
|
|
def->constants = malloc(sizeof(Janet) * constants_length);
|
2018-08-21 18:16:55 +00:00
|
|
|
if (!def->constants) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-08-23 01:41:25 +00:00
|
|
|
for (int32_t i = 0; i < constants_length; i++)
|
2018-08-21 18:16:55 +00:00
|
|
|
data = unmarshal_one(st, data, def->constants + i, flags + 1);
|
2018-08-20 00:21:27 +00:00
|
|
|
} else {
|
2018-08-21 18:16:55 +00:00
|
|
|
def->constants = NULL;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-08-23 01:41:25 +00:00
|
|
|
def->constants_length = constants_length;
|
2018-08-20 00:21:27 +00:00
|
|
|
|
|
|
|
/* Unmarshal bytecode */
|
2018-08-23 01:41:25 +00:00
|
|
|
def->bytecode = malloc(sizeof(uint32_t) * bytecode_length);
|
2018-08-21 18:16:55 +00:00
|
|
|
if (!def->bytecode) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-08-23 01:41:25 +00:00
|
|
|
for (int32_t i = 0; i < bytecode_length; i++) {
|
|
|
|
if (data + 4 > end) longjmp(st->err, UMR_EOS);
|
2018-08-21 18:16:55 +00:00
|
|
|
def->bytecode[i] =
|
2018-08-20 00:40:42 +00:00
|
|
|
(uint32_t)(data[0]) |
|
|
|
|
((uint32_t)(data[1]) << 8) |
|
|
|
|
((uint32_t)(data[2]) << 16) |
|
|
|
|
((uint32_t)(data[3]) << 24);
|
2018-08-21 17:09:01 +00:00
|
|
|
data += 4;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-08-23 01:41:25 +00:00
|
|
|
def->bytecode_length = bytecode_length;
|
2018-08-20 00:21:27 +00:00
|
|
|
|
|
|
|
/* Unmarshal environments */
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASENVS) {
|
2018-08-23 01:41:25 +00:00
|
|
|
def->environments = calloc(1, sizeof(int32_t) * environments_length);
|
2018-08-21 18:16:55 +00:00
|
|
|
if (!def->environments) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-08-23 01:41:25 +00:00
|
|
|
for (int32_t i = 0; i < environments_length; i++) {
|
2018-08-21 18:16:55 +00:00
|
|
|
def->environments[i] = readint(st, &data);
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
|
|
|
} else {
|
2018-08-21 18:16:55 +00:00
|
|
|
def->environments = NULL;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-08-23 01:41:25 +00:00
|
|
|
def->environments_length = environments_length;
|
2018-08-20 00:21:27 +00:00
|
|
|
|
|
|
|
/* Unmarshal sub funcdefs */
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASDEFS) {
|
|
|
|
def->defs = calloc(1, sizeof(JanetFuncDef *) * defs_length);
|
2018-08-21 18:16:55 +00:00
|
|
|
if (!def->defs) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-08-23 01:41:25 +00:00
|
|
|
for (int32_t i = 0; i < defs_length; i++) {
|
2018-08-21 18:16:55 +00:00
|
|
|
data = unmarshal_one_def(st, data, def->defs + i, flags + 1);
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
|
|
|
} else {
|
2018-08-21 18:16:55 +00:00
|
|
|
def->defs = NULL;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-08-23 01:41:25 +00:00
|
|
|
def->defs_length = defs_length;
|
2018-08-20 00:21:27 +00:00
|
|
|
|
|
|
|
/* Unmarshal source maps if needed */
|
2018-09-06 02:18:42 +00:00
|
|
|
if (def->flags & JANET_FUNCDEF_FLAG_HASSOURCEMAP) {
|
|
|
|
def->sourcemap = malloc(sizeof(JanetSourceMapping) * bytecode_length);
|
2018-08-21 18:16:55 +00:00
|
|
|
if (!def->sourcemap) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
2018-08-23 01:41:25 +00:00
|
|
|
for (int32_t i = 0; i < bytecode_length; i++) {
|
2018-08-21 18:16:55 +00:00
|
|
|
def->sourcemap[i].line = readint(st, &data);
|
|
|
|
def->sourcemap[i].column = readint(st, &data);
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
|
|
|
} else {
|
2018-08-21 18:16:55 +00:00
|
|
|
def->sourcemap = NULL;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Validate */
|
2018-09-06 02:18:42 +00:00
|
|
|
if (janet_verify(def)) longjmp(st->err, UMR_INVALID_BYTECODE);
|
2018-08-21 17:09:01 +00:00
|
|
|
|
|
|
|
/* Set def */
|
2018-08-21 18:16:55 +00:00
|
|
|
*out = def;
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2018-08-24 12:22:43 +00:00
|
|
|
/* Unmarshal a fiber */
|
2018-08-23 01:41:25 +00:00
|
|
|
static const uint8_t *unmarshal_one_fiber(
|
|
|
|
UnmarshalState *st,
|
|
|
|
const uint8_t *data,
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFiber **out,
|
2018-08-23 01:41:25 +00:00
|
|
|
int flags) {
|
2018-08-24 12:22:43 +00:00
|
|
|
|
|
|
|
/* Initialize a new fiber */
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFiber *fiber = janet_gcalloc(JANET_MEMORY_FIBER, sizeof(JanetFiber));
|
2018-08-24 12:22:43 +00:00
|
|
|
fiber->flags = 0;
|
|
|
|
fiber->frame = 0;
|
|
|
|
fiber->stackstart = 0;
|
|
|
|
fiber->stacktop = 0;
|
|
|
|
fiber->capacity = 0;
|
|
|
|
fiber->root = NULL;
|
|
|
|
fiber->child = NULL;
|
|
|
|
|
|
|
|
/* Set frame later so fiber can be GCed at anytime if unmarshaling fails */
|
|
|
|
int32_t frame = 0;
|
|
|
|
int32_t stack = 0;
|
|
|
|
int32_t stacktop = 0;
|
|
|
|
|
|
|
|
/* Read ints */
|
|
|
|
fiber->flags = readint(st, &data);
|
|
|
|
frame = readint(st, &data);
|
|
|
|
fiber->stackstart = readint(st, &data);
|
|
|
|
fiber->stacktop = readint(st, &data);
|
|
|
|
fiber->maxstack = readint(st, &data);
|
|
|
|
|
|
|
|
/* Check for bad flags and ints */
|
2018-09-06 02:18:42 +00:00
|
|
|
if ((int32_t)(frame + JANET_FRAME_SIZE) > fiber->stackstart ||
|
2018-08-24 12:22:43 +00:00
|
|
|
fiber->stackstart > fiber->stacktop ||
|
|
|
|
fiber->stacktop > fiber->maxstack) {
|
2018-08-24 15:35:08 +00:00
|
|
|
printf("bad flags and ints.\n");
|
2018-08-24 12:22:43 +00:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get root fuction */
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet funcv;
|
2018-08-24 15:35:08 +00:00
|
|
|
data = unmarshal_one(st, data, &funcv, flags + 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (!janet_checktype(funcv, JANET_FUNCTION)) {
|
2018-08-24 15:35:08 +00:00
|
|
|
printf("bad root func.\n");
|
|
|
|
goto error;
|
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
fiber->root = janet_unwrap_function(funcv);
|
2018-08-24 12:22:43 +00:00
|
|
|
|
|
|
|
/* Allocate stack memory */
|
|
|
|
fiber->capacity = fiber->stacktop + 10;
|
2018-09-06 02:18:42 +00:00
|
|
|
fiber->data = malloc(sizeof(Janet) * fiber->capacity);
|
2018-08-24 12:22:43 +00:00
|
|
|
if (!fiber->data) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-08-24 12:22:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* get frames */
|
|
|
|
stack = frame;
|
2018-09-06 02:18:42 +00:00
|
|
|
stacktop = fiber->stackstart - JANET_FRAME_SIZE;
|
2018-08-24 12:22:43 +00:00
|
|
|
while (stack > 0) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFunction *func;
|
|
|
|
JanetFuncDef *def;
|
|
|
|
JanetFuncEnv *env;
|
2018-08-24 12:22:43 +00:00
|
|
|
int32_t frameflags = readint(st, &data);
|
|
|
|
int32_t prevframe = readint(st, &data);
|
|
|
|
int32_t pcdiff = readint(st, &data);
|
|
|
|
|
|
|
|
/* Get frame items */
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet *framestack = fiber->data + stack;
|
|
|
|
JanetStackFrame *framep = (JanetStackFrame *)framestack - 1;
|
2018-08-24 12:22:43 +00:00
|
|
|
|
|
|
|
/* Get function */
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet funcv;
|
2018-08-24 12:22:43 +00:00
|
|
|
data = unmarshal_one(st, data, &funcv, flags + 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (!janet_checktype(funcv, JANET_FUNCTION)) {
|
2018-08-24 15:35:08 +00:00
|
|
|
printf("bad root func.\n");
|
2018-08-24 12:22:43 +00:00
|
|
|
goto error;
|
2018-08-24 15:35:08 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
func = janet_unwrap_function(funcv);
|
2018-08-24 12:22:43 +00:00
|
|
|
def = func->def;
|
|
|
|
|
|
|
|
/* Check env */
|
2018-09-06 02:18:42 +00:00
|
|
|
if (frameflags & JANET_STACKFRAME_HASENV) {
|
|
|
|
frameflags &= ~JANET_STACKFRAME_HASENV;
|
2018-08-24 12:22:43 +00:00
|
|
|
int32_t offset = stack;
|
|
|
|
int32_t length = stacktop - stack;
|
|
|
|
data = unmarshal_one_env(st, data, &env, flags + 1);
|
|
|
|
if (env->offset != 0 && env->offset != offset) goto error;
|
|
|
|
if (env->length != 0 && env->length != offset) goto error;
|
|
|
|
env->offset = offset;
|
|
|
|
env->length = length;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Error checking */
|
2018-08-24 15:35:08 +00:00
|
|
|
int32_t expected_framesize = def->slotcount;
|
2018-08-24 12:22:43 +00:00
|
|
|
if (expected_framesize != stacktop - stack) goto error;
|
|
|
|
if (pcdiff < 0 || pcdiff >= def->bytecode_length) goto error;
|
2018-09-06 02:18:42 +00:00
|
|
|
if ((int32_t)(prevframe + JANET_FRAME_SIZE) > stack) goto error;
|
2018-08-24 12:22:43 +00:00
|
|
|
|
|
|
|
/* Get stack items */
|
2018-08-24 15:35:08 +00:00
|
|
|
for (int32_t i = stack; i < stacktop; i++)
|
|
|
|
data = unmarshal_one(st, data, fiber->data + i, flags + 1);
|
2018-08-24 12:22:43 +00:00
|
|
|
|
|
|
|
/* Set frame */
|
|
|
|
framep->env = env;
|
|
|
|
framep->pc = def->bytecode + pcdiff;
|
|
|
|
framep->prevframe = prevframe;
|
|
|
|
framep->flags = frameflags;
|
|
|
|
framep->func = func;
|
|
|
|
|
|
|
|
/* Goto previous frame */
|
2018-09-06 02:18:42 +00:00
|
|
|
stacktop = stack - JANET_FRAME_SIZE;
|
2018-08-24 12:22:43 +00:00
|
|
|
stack = prevframe;
|
|
|
|
}
|
|
|
|
if (stack < 0) goto error;
|
|
|
|
|
|
|
|
/* Check for child fiber */
|
2018-09-06 02:18:42 +00:00
|
|
|
if (fiber->flags & JANET_FIBER_FLAG_HASCHILD) {
|
|
|
|
fiber->flags &= ~JANET_FIBER_FLAG_HASCHILD;
|
2018-08-24 12:22:43 +00:00
|
|
|
data = unmarshal_one_fiber(st, data, &(fiber->child), flags + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return data */
|
|
|
|
fiber->frame = frame;
|
2018-08-24 15:35:08 +00:00
|
|
|
*out = fiber;
|
2018-08-24 12:22:43 +00:00
|
|
|
return data;
|
|
|
|
|
|
|
|
error:
|
|
|
|
longjmp(st->err, UMR_INVALID_FIBER);
|
|
|
|
return NULL;
|
2018-08-23 01:41:25 +00:00
|
|
|
}
|
|
|
|
|
2018-08-20 00:21:27 +00:00
|
|
|
static const uint8_t *unmarshal_one(
|
2018-06-12 18:24:45 +00:00
|
|
|
UnmarshalState *st,
|
|
|
|
const uint8_t *data,
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet *out,
|
2018-06-12 18:24:45 +00:00
|
|
|
int flags) {
|
|
|
|
const uint8_t *end = st->end;
|
|
|
|
uint8_t lead;
|
2018-09-06 02:18:42 +00:00
|
|
|
if ((flags & 0xFFFF) > JANET_RECURSION_GUARD) {
|
2018-06-12 18:24:45 +00:00
|
|
|
longjmp(st->err, UMR_STACKOVERFLOW);
|
|
|
|
}
|
|
|
|
#define EXTRA(N) if (data + N > end) longjmp(st->err, UMR_EOS)
|
|
|
|
EXTRA(1);
|
|
|
|
lead = data[0];
|
|
|
|
if (lead < 200) {
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_integer(lead);
|
2018-06-12 18:24:45 +00:00
|
|
|
return data + 1;
|
|
|
|
}
|
|
|
|
switch (lead) {
|
|
|
|
case LB_NIL:
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_nil();
|
2018-06-12 18:24:45 +00:00
|
|
|
return data + 1;
|
|
|
|
case LB_FALSE:
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_false();
|
2018-06-12 18:24:45 +00:00
|
|
|
return data + 1;
|
|
|
|
case LB_TRUE:
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_true();
|
2018-06-12 18:24:45 +00:00
|
|
|
return data + 1;
|
|
|
|
case LB_INTEGER:
|
|
|
|
/* Long integer */
|
|
|
|
EXTRA(5);
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_integer(
|
2018-06-12 18:24:45 +00:00
|
|
|
(data[1]) |
|
|
|
|
(data[2] << 8) |
|
|
|
|
(data[3] << 16) |
|
|
|
|
(data[4] << 24));
|
|
|
|
return data + 5;
|
|
|
|
case LB_REAL:
|
|
|
|
/* Real */
|
|
|
|
{
|
|
|
|
union {
|
|
|
|
double d;
|
|
|
|
uint8_t bytes[8];
|
|
|
|
} u;
|
|
|
|
EXTRA(9);
|
2018-09-06 02:18:42 +00:00
|
|
|
#ifdef JANET_BIG_ENDIAN
|
2018-06-12 18:24:45 +00:00
|
|
|
u.bytes[0] = data[8];
|
|
|
|
u.bytes[1] = data[7];
|
|
|
|
u.bytes[2] = data[6];
|
|
|
|
u.bytes[5] = data[5];
|
|
|
|
u.bytes[4] = data[4];
|
|
|
|
u.bytes[5] = data[3];
|
|
|
|
u.bytes[6] = data[2];
|
|
|
|
u.bytes[7] = data[1];
|
|
|
|
#else
|
|
|
|
memcpy(&u.bytes, data + 1, sizeof(double));
|
|
|
|
#endif
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_real(u.d);
|
|
|
|
janet_array_push(&st->lookup, *out);
|
2018-06-12 18:24:45 +00:00
|
|
|
return data + 9;
|
|
|
|
}
|
|
|
|
case LB_STRING:
|
|
|
|
case LB_SYMBOL:
|
|
|
|
case LB_BUFFER:
|
2018-08-20 00:21:27 +00:00
|
|
|
case LB_REGISTRY:
|
2018-06-12 18:24:45 +00:00
|
|
|
{
|
2018-08-20 00:40:42 +00:00
|
|
|
data++;
|
2018-08-20 00:21:27 +00:00
|
|
|
int32_t len = readint(st, &data);
|
2018-06-12 18:24:45 +00:00
|
|
|
EXTRA(len);
|
|
|
|
if (lead == LB_STRING) {
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *str = janet_string(data, len);
|
|
|
|
*out = janet_wrap_string(str);
|
2018-06-12 18:24:45 +00:00
|
|
|
} else if (lead == LB_SYMBOL) {
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *str = janet_symbol(data, len);
|
|
|
|
*out = janet_wrap_symbol(str);
|
2018-08-20 00:21:27 +00:00
|
|
|
} else if (lead == LB_REGISTRY) {
|
2018-10-21 05:35:07 +00:00
|
|
|
if (st->reg) {
|
|
|
|
Janet regkey = janet_symbolv(data, len);
|
|
|
|
*out = janet_table_get(st->reg, regkey);
|
|
|
|
} else {
|
|
|
|
*out = janet_wrap_nil();
|
|
|
|
}
|
2018-06-12 18:24:45 +00:00
|
|
|
} else { /* (lead == LB_BUFFER) */
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetBuffer *buffer = janet_buffer(len);
|
2018-06-12 18:24:45 +00:00
|
|
|
buffer->count = len;
|
|
|
|
memcpy(buffer->data, data, len);
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_buffer(buffer);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_array_push(&st->lookup, *out);
|
2018-06-12 18:24:45 +00:00
|
|
|
return data + len;
|
|
|
|
}
|
2018-08-23 01:41:25 +00:00
|
|
|
case LB_FIBER:
|
|
|
|
{
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFiber *fiber;
|
2018-08-23 01:41:25 +00:00
|
|
|
data = unmarshal_one_fiber(st, data + 1, &fiber, flags);
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_fiber(fiber);
|
2018-08-23 01:41:25 +00:00
|
|
|
return data;
|
|
|
|
}
|
2018-08-20 00:21:27 +00:00
|
|
|
case LB_FUNCTION:
|
|
|
|
{
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFunction *func;
|
|
|
|
JanetFuncDef *def;
|
2018-08-20 00:21:27 +00:00
|
|
|
data = unmarshal_one_def(st, data + 1, &def, flags + 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
func = janet_gcalloc(JANET_MEMORY_FUNCTION, sizeof(JanetFunction) +
|
|
|
|
def->environments_length * sizeof(JanetFuncEnv));
|
2018-08-21 17:59:01 +00:00
|
|
|
func->def = def;
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_function(func);
|
|
|
|
janet_array_push(&st->lookup, *out);
|
2018-08-20 00:21:27 +00:00
|
|
|
for (int32_t i = 0; i < def->environments_length; i++) {
|
2018-08-21 17:09:01 +00:00
|
|
|
data = unmarshal_one_env(st, data, &(func->envs[i]), flags + 1);
|
2018-08-20 00:21:27 +00:00
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
2018-06-12 18:24:45 +00:00
|
|
|
case LB_REFERENCE:
|
|
|
|
case LB_ARRAY:
|
|
|
|
case LB_TUPLE:
|
|
|
|
case LB_STRUCT:
|
|
|
|
case LB_TABLE:
|
|
|
|
case LB_TABLE_PROTO:
|
|
|
|
/* Things that open with integers */
|
|
|
|
{
|
2018-08-20 00:40:42 +00:00
|
|
|
data++;
|
2018-08-20 00:21:27 +00:00
|
|
|
int32_t len = readint(st, &data);
|
2018-06-12 18:24:45 +00:00
|
|
|
if (lead == LB_ARRAY) {
|
|
|
|
/* Array */
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetArray *array = janet_array(len);
|
2018-06-12 18:24:45 +00:00
|
|
|
array->count = len;
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_array(array);
|
|
|
|
janet_array_push(&st->lookup, *out);
|
2018-08-20 00:21:27 +00:00
|
|
|
for (int32_t i = 0; i < len; i++) {
|
|
|
|
data = unmarshal_one(st, data, array->data + i, flags + 1);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
} else if (lead == LB_TUPLE) {
|
|
|
|
/* Tuple */
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet *tup = janet_tuple_begin(len);
|
2018-08-20 00:21:27 +00:00
|
|
|
for (int32_t i = 0; i < len; i++) {
|
|
|
|
data = unmarshal_one(st, data, tup + i, flags + 1);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_tuple(janet_tuple_end(tup));
|
|
|
|
janet_array_push(&st->lookup, *out);
|
2018-06-12 18:24:45 +00:00
|
|
|
} else if (lead == LB_STRUCT) {
|
|
|
|
/* Struct */
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetKV *struct_ = janet_struct_begin(len);
|
2018-08-20 00:21:27 +00:00
|
|
|
for (int32_t i = 0; i < len; i++) {
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet key, value;
|
2018-08-20 00:21:27 +00:00
|
|
|
data = unmarshal_one(st, data, &key, flags + 1);
|
|
|
|
data = unmarshal_one(st, data, &value, flags + 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_struct_put(struct_, key, value);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
*out = janet_wrap_struct(janet_struct_end(struct_));
|
|
|
|
janet_array_push(&st->lookup, *out);
|
2018-06-12 18:24:45 +00:00
|
|
|
} else if (lead == LB_REFERENCE) {
|
|
|
|
if (len < 0 || len >= st->lookup.count)
|
|
|
|
longjmp(st->err, UMR_INVALID_REFERENCE);
|
|
|
|
*out = st->lookup.data[len];
|
|
|
|
} else {
|
|
|
|
/* Table */
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetTable *t = janet_table(len);
|
|
|
|
*out = janet_wrap_table(t);
|
|
|
|
janet_array_push(&st->lookup, *out);
|
2018-06-12 18:24:45 +00:00
|
|
|
if (lead == LB_TABLE_PROTO) {
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet proto;
|
2018-08-20 00:21:27 +00:00
|
|
|
data = unmarshal_one(st, data, &proto, flags + 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
if (!janet_checktype(proto, JANET_TABLE)) longjmp(st->err, UMR_EXPECTED_TABLE);
|
|
|
|
t->proto = janet_unwrap_table(proto);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
2018-08-20 00:21:27 +00:00
|
|
|
for (int32_t i = 0; i < len; i++) {
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet key, value;
|
2018-08-20 00:21:27 +00:00
|
|
|
data = unmarshal_one(st, data, &key, flags + 1);
|
|
|
|
data = unmarshal_one(st, data, &value, flags + 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_table_put(t, key, value);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
longjmp(st->err, UMR_UNKNOWN);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#undef EXTRA
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
int janet_unmarshal(
|
2018-06-12 18:24:45 +00:00
|
|
|
const uint8_t *bytes,
|
|
|
|
size_t len,
|
|
|
|
int flags,
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet *out,
|
2018-10-21 05:35:07 +00:00
|
|
|
JanetTable *reg,
|
2018-06-12 18:24:45 +00:00
|
|
|
const uint8_t **next) {
|
|
|
|
int status;
|
|
|
|
/* Avoid longjmp clobber warning in GCC */
|
|
|
|
UnmarshalState st;
|
|
|
|
st.end = bytes + len;
|
2018-08-20 00:21:27 +00:00
|
|
|
st.lookup_defs = NULL;
|
|
|
|
st.lookup_envs = NULL;
|
2018-10-21 05:35:07 +00:00
|
|
|
st.reg = reg;
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_array_init(&st.lookup, 0);
|
2018-06-12 18:24:45 +00:00
|
|
|
if (!(status = setjmp(st.err))) {
|
2018-08-20 00:21:27 +00:00
|
|
|
const uint8_t *nextbytes = unmarshal_one(&st, bytes, out, flags);
|
2018-06-12 18:24:45 +00:00
|
|
|
if (next) *next = nextbytes;
|
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_array_deinit(&st.lookup);
|
2018-10-04 21:33:44 +00:00
|
|
|
janet_v_free(st.lookup_defs);
|
|
|
|
janet_v_free(st.lookup_envs);
|
2018-06-12 18:24:45 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* C functions */
|
|
|
|
|
2018-10-21 05:35:07 +00:00
|
|
|
static int cfun_env_lookups(JanetArgs args) {
|
|
|
|
JanetTable *env;
|
|
|
|
Janet tup[2];
|
|
|
|
JANET_FIXARITY(args, 1);
|
|
|
|
JANET_ARG_TABLE(env, args, 0);
|
|
|
|
tup[0] = janet_wrap_table(janet_env_rreg(env));
|
|
|
|
tup[1] = janet_wrap_table(janet_env_reg(env));
|
|
|
|
JANET_RETURN_TUPLE(args, janet_tuple_n(tup, 2));
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int cfun_marshal(JanetArgs args) {
|
|
|
|
JanetBuffer *buffer;
|
2018-10-21 05:35:07 +00:00
|
|
|
JanetTable *rreg;
|
2018-06-12 18:24:45 +00:00
|
|
|
int status;
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_MINARITY(args, 1);
|
2018-10-21 05:35:07 +00:00
|
|
|
JANET_MAXARITY(args, 3);
|
|
|
|
if (args.n > 1) {
|
|
|
|
/* Reverse Registry provided */
|
|
|
|
JANET_ARG_TABLE(rreg, args, 1);
|
|
|
|
} else {
|
|
|
|
rreg = NULL;
|
|
|
|
}
|
|
|
|
if (args.n > 2) {
|
2018-06-12 18:24:45 +00:00
|
|
|
/* Buffer provided */
|
2018-10-21 05:35:07 +00:00
|
|
|
JANET_ARG_BUFFER(buffer, args, 2);
|
2018-06-12 18:24:45 +00:00
|
|
|
} else {
|
2018-09-06 02:18:42 +00:00
|
|
|
buffer = janet_buffer(10);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
2018-10-21 05:35:07 +00:00
|
|
|
status = janet_marshal(buffer, args.v[0], rreg, 0);
|
2018-06-12 18:24:45 +00:00
|
|
|
if (status) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_THROW(args, mr_strings[status]);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_RETURN_BUFFER(args, buffer);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static int cfun_unmarshal(JanetArgs args) {
|
2018-06-12 18:24:45 +00:00
|
|
|
const uint8_t *bytes;
|
2018-10-21 05:35:07 +00:00
|
|
|
JanetTable *reg;
|
2018-06-12 18:24:45 +00:00
|
|
|
int32_t len;
|
|
|
|
int status;
|
2018-10-21 05:35:07 +00:00
|
|
|
JANET_MINARITY(args, 1);
|
|
|
|
JANET_MAXARITY(args, 2);
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_ARG_BYTES(bytes, len, args, 0);
|
2018-10-21 05:35:07 +00:00
|
|
|
if (args.n > 1) {
|
|
|
|
JANET_ARG_TABLE(reg, args, 1);
|
|
|
|
} else {
|
|
|
|
reg = NULL;
|
|
|
|
}
|
|
|
|
status = janet_unmarshal(bytes, (size_t) len, 0, args.ret, reg, NULL);
|
2018-06-12 18:24:45 +00:00
|
|
|
if (status) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_THROW(args, umr_strings[status]);
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
return JANET_SIGNAL_OK;
|
2018-06-12 18:24:45 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static const JanetReg cfuns[] = {
|
2018-08-21 19:07:37 +00:00
|
|
|
{"marshal", cfun_marshal},
|
|
|
|
{"unmarshal", cfun_unmarshal},
|
2018-10-21 05:35:07 +00:00
|
|
|
{"env-lookups", cfun_env_lookups},
|
2018-06-12 18:24:45 +00:00
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Module entry point */
|
2018-09-06 02:18:42 +00:00
|
|
|
int janet_lib_marsh(JanetArgs args) {
|
|
|
|
JanetTable *env = janet_env(args);
|
|
|
|
janet_cfuns(env, NULL, cfuns);
|
2018-06-12 18:24:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|