2020-10-28 05:16:30 +00:00
|
|
|
#ifndef COSMOVM_H
|
|
|
|
#define COSMOVM_H
|
|
|
|
|
2020-11-12 23:17:41 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2020-10-28 05:16:30 +00:00
|
|
|
#include "cosmo.h"
|
|
|
|
#include "cstate.h"
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
COSMOVM_OK,
|
|
|
|
COSMOVM_RUNTIME_ERR,
|
|
|
|
COSMOVM_BUILDTIME_ERR
|
|
|
|
} COSMOVMRESULT;
|
|
|
|
|
|
|
|
// args = # of pass parameters, nresults = # of expected results
|
2020-12-13 03:53:12 +00:00
|
|
|
COSMO_API COSMOVMRESULT cosmoV_call(CState *state, int args, int nresults);
|
Added CObjError, cosmoV_throw(), pcall(), and cosmoV_printError()
Errors are now handled very differently, parser errors and VM errors are now treated the same.
When cosmoV_error is called, cosmoV_throw is also called, which formats the error object and sets the panic state.
state->error now points to the latest CObjError when state->panic is true. To get a nice formatted Objection message, use
cosmoV_printError() and pass the state->error. pcall() was added to the standard base library. When called, the first argument
passed is called with the subsequent arguments given. If the call completed successfully, `true`,`nil` is returned. However
when an error occurs during the call, `false`,`<error>` is returned. Simply print the `<error>` to retrieve the error string.
2021-01-06 04:27:59 +00:00
|
|
|
COSMO_API COSMOVMRESULT cosmoV_pcall(CState *state, int args, int nresults);
|
2020-12-05 23:55:09 +00:00
|
|
|
COSMO_API void cosmoV_makeObject(CState *state, int pairs);
|
2021-01-08 20:37:36 +00:00
|
|
|
COSMO_API void cosmoV_makeTable(CState *state, int pairs);
|
2020-12-22 21:13:11 +00:00
|
|
|
COSMO_API void cosmoV_concat(CState *state, int vals);
|
|
|
|
COSMO_API void cosmoV_pushFString(CState *state, const char *format, ...);
|
Added CObjError, cosmoV_throw(), pcall(), and cosmoV_printError()
Errors are now handled very differently, parser errors and VM errors are now treated the same.
When cosmoV_error is called, cosmoV_throw is also called, which formats the error object and sets the panic state.
state->error now points to the latest CObjError when state->panic is true. To get a nice formatted Objection message, use
cosmoV_printError() and pass the state->error. pcall() was added to the standard base library. When called, the first argument
passed is called with the subsequent arguments given. If the call completed successfully, `true`,`nil` is returned. However
when an error occurs during the call, `false`,`<error>` is returned. Simply print the `<error>` to retrieve the error string.
2021-01-06 04:27:59 +00:00
|
|
|
COSMO_API void cosmoV_printError(CState *state, CObjError *err);
|
|
|
|
COSMO_API CObjError* cosmoV_throw(CState *state);
|
2020-11-13 18:54:06 +00:00
|
|
|
COSMO_API void cosmoV_error(CState *state, const char *format, ...);
|
Added CObjError, cosmoV_throw(), pcall(), and cosmoV_printError()
Errors are now handled very differently, parser errors and VM errors are now treated the same.
When cosmoV_error is called, cosmoV_throw is also called, which formats the error object and sets the panic state.
state->error now points to the latest CObjError when state->panic is true. To get a nice formatted Objection message, use
cosmoV_printError() and pass the state->error. pcall() was added to the standard base library. When called, the first argument
passed is called with the subsequent arguments given. If the call completed successfully, `true`,`nil` is returned. However
when an error occurs during the call, `false`,`<error>` is returned. Simply print the `<error>` to retrieve the error string.
2021-01-06 04:27:59 +00:00
|
|
|
COSMO_API void cosmo_insert(CState *state, int indx, CValue val);
|
2020-11-12 23:17:41 +00:00
|
|
|
|
2021-01-10 20:38:53 +00:00
|
|
|
/*
|
|
|
|
compiles string into a <closure>, if successful, <closure> will be pushed onto the stack otherwise the <error> will be pushed.
|
|
|
|
|
|
|
|
returns:
|
|
|
|
false : <error> is at the top of the stack
|
|
|
|
true : <closure> is at the top of the stack
|
|
|
|
*/
|
|
|
|
COSMO_API bool cosmoV_compileString(CState *state, const char *src, const char *name);
|
|
|
|
|
2021-01-08 01:50:36 +00:00
|
|
|
COSMO_API bool cosmoV_get(CState *state, CObj *obj, CValue key, CValue *val);
|
|
|
|
COSMO_API bool cosmoV_set(CState *state, CObj *obj, CValue key, CValue val);
|
|
|
|
|
2020-11-12 23:17:41 +00:00
|
|
|
// nice to have wrappers
|
|
|
|
|
2021-01-02 01:20:24 +00:00
|
|
|
// pushes value to the stack
|
|
|
|
static inline void cosmoV_pushValue(CState *state, CValue val) {
|
2021-01-02 02:02:36 +00:00
|
|
|
#ifdef SAFE_STACK
|
2021-01-02 01:20:24 +00:00
|
|
|
ptrdiff_t stackSize = state->top - state->stack;
|
|
|
|
|
|
|
|
// we reserve 8 slots for the error string and whatever c api we might be in
|
|
|
|
if (stackSize >= STACK_MAX - 8) {
|
|
|
|
if (state->panic) { // we're in a panic state, let the 8 reserved slots be filled
|
|
|
|
if (stackSize < STACK_MAX)
|
|
|
|
*(state->top++) = val;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cosmoV_error(state, "Stack overflow!");
|
|
|
|
return;
|
|
|
|
}
|
2021-01-02 02:02:36 +00:00
|
|
|
#endif
|
2021-01-02 01:20:24 +00:00
|
|
|
|
|
|
|
*(state->top++) = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
// sets stack->top to stack->top - indx
|
|
|
|
static inline StkPtr cosmoV_setTop(CState *state, int indx) {
|
|
|
|
state->top -= indx;
|
|
|
|
return state->top;
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns stack->top - indx - 1
|
|
|
|
static inline StkPtr cosmoV_getTop(CState *state, int indx) {
|
|
|
|
return &state->top[-(indx + 1)];
|
|
|
|
}
|
|
|
|
|
|
|
|
// pops 1 value off the stack
|
|
|
|
static inline StkPtr cosmoV_pop(CState *state) {
|
|
|
|
return cosmoV_setTop(state, 1);
|
|
|
|
}
|
|
|
|
|
2020-11-12 23:17:41 +00:00
|
|
|
// pushes a cosmo_Number to the stack
|
|
|
|
static inline void cosmoV_pushNumber(CState *state, cosmo_Number num) {
|
|
|
|
cosmoV_pushValue(state, cosmoV_newNumber(num));
|
|
|
|
}
|
|
|
|
|
|
|
|
// pushes a boolean to the stack
|
|
|
|
static inline void cosmoV_pushBoolean(CState *state, bool b) {
|
|
|
|
cosmoV_pushValue(state, cosmoV_newBoolean(b));
|
|
|
|
}
|
|
|
|
|
|
|
|
// pushes a C Function to the stack
|
|
|
|
static inline void cosmoV_pushCFunction(CState *state, CosmoCFunction func) {
|
|
|
|
cosmoV_pushValue(state, cosmoV_newObj(cosmoO_newCFunction(state, func)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void cosmoV_pushLString(CState *state, const char *str, size_t len) {
|
|
|
|
cosmoV_pushValue(state, cosmoV_newObj(cosmoO_copyString(state, str, len)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// accepts a null terminated string and copys the buffer to the VM heap
|
|
|
|
static inline void cosmoV_pushString(CState *state, const char *str) {
|
|
|
|
cosmoV_pushLString(state, str, strlen(str));
|
|
|
|
}
|
2020-10-28 05:16:30 +00:00
|
|
|
|
2021-01-02 05:06:24 +00:00
|
|
|
#endif
|