2020-10-28 05:16:30 +00:00
|
|
|
#ifndef COBJ_H
|
|
|
|
#define COBJ_H
|
|
|
|
|
|
|
|
#include "cosmo.h"
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
COBJ_STRING,
|
2020-11-04 04:10:51 +00:00
|
|
|
COBJ_OBJECT,
|
2021-01-08 20:37:36 +00:00
|
|
|
COBJ_TABLE,
|
2020-10-28 05:16:30 +00:00
|
|
|
COBJ_FUNCTION,
|
|
|
|
COBJ_CFUNCTION,
|
2020-11-03 04:32:39 +00:00
|
|
|
// internal use
|
2021-01-24 18:17:46 +00:00
|
|
|
COBJ_ERROR,
|
2020-11-13 23:39:47 +00:00
|
|
|
COBJ_METHOD,
|
2020-11-03 04:32:39 +00:00
|
|
|
COBJ_CLOSURE,
|
|
|
|
COBJ_UPVALUE,
|
2021-01-08 01:50:36 +00:00
|
|
|
COBJ_MAX
|
2020-10-28 05:16:30 +00:00
|
|
|
} CObjType;
|
|
|
|
|
2021-01-08 01:50:36 +00:00
|
|
|
#include "cstate.h"
|
|
|
|
#include "cchunk.h"
|
|
|
|
#include "cvalue.h"
|
|
|
|
#include "ctable.h"
|
|
|
|
|
|
|
|
typedef struct CState CState;
|
|
|
|
typedef struct CCallFrame CCallFrame;
|
|
|
|
typedef uint32_t cosmo_Flag;
|
|
|
|
|
2021-01-02 05:06:24 +00:00
|
|
|
#define CommonHeader CObj _obj
|
2020-11-17 01:58:16 +00:00
|
|
|
#define readFlag(x, flag) (x & (1u << flag))
|
|
|
|
#define setFlagOn(x, flag) (x |= (1u << flag))
|
2020-10-28 05:16:30 +00:00
|
|
|
|
2020-12-13 03:53:12 +00:00
|
|
|
typedef int (*CosmoCFunction)(CState *state, int argCount, CValue *args);
|
2020-10-28 05:16:30 +00:00
|
|
|
|
|
|
|
typedef struct CObj {
|
|
|
|
CObjType type;
|
|
|
|
bool isMarked; // for the GC
|
|
|
|
struct CObj *next;
|
2020-12-07 21:53:23 +00:00
|
|
|
struct CObj *nextRoot; // for the root linked list
|
2021-01-08 01:50:36 +00:00
|
|
|
struct CObjObject *proto; // protoobject, describes the behavior of the object
|
2020-10-28 05:16:30 +00:00
|
|
|
} CObj;
|
|
|
|
|
|
|
|
typedef struct CObjString {
|
|
|
|
CommonHeader; // "is a" CObj
|
2020-12-10 02:46:20 +00:00
|
|
|
bool isIString;
|
2020-10-28 05:16:30 +00:00
|
|
|
int length;
|
|
|
|
char *str;
|
|
|
|
uint32_t hash; // for hashtable lookup
|
|
|
|
} CObjString;
|
|
|
|
|
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
|
|
|
typedef struct CObjError {
|
|
|
|
CommonHeader; // "is a" CObj
|
|
|
|
bool parserError; // if true, cosmoV_printError will format the error to the lexer
|
|
|
|
int frameCount;
|
|
|
|
int line; // reserved for parser errors
|
|
|
|
CValue err; // error string
|
|
|
|
CCallFrame *frames;
|
|
|
|
} CObjError;
|
|
|
|
|
2020-11-04 04:10:51 +00:00
|
|
|
typedef struct CObjObject {
|
2020-10-28 05:16:30 +00:00
|
|
|
CommonHeader; // "is a" CObj
|
2020-11-17 01:58:16 +00:00
|
|
|
cosmo_Flag istringFlags; // enables us to have a much faster lookup for reserved IStrings (like __init, __index, etc.)
|
2020-11-03 04:32:39 +00:00
|
|
|
CTable tbl;
|
2020-12-18 01:44:04 +00:00
|
|
|
union { // userdata (NULL by default)
|
|
|
|
void *userP;
|
|
|
|
int userI;
|
|
|
|
};
|
2020-11-04 04:10:51 +00:00
|
|
|
} CObjObject;
|
2020-10-28 05:16:30 +00:00
|
|
|
|
2021-01-08 20:37:36 +00:00
|
|
|
typedef struct CObjTable { // table, a wrapper for CTable
|
2020-12-10 02:32:42 +00:00
|
|
|
CommonHeader; // "is a" CObj
|
|
|
|
CTable tbl;
|
2021-01-08 20:37:36 +00:00
|
|
|
} CObjTable;
|
2020-12-10 02:32:42 +00:00
|
|
|
|
2020-10-28 05:16:30 +00:00
|
|
|
typedef struct CObjFunction {
|
|
|
|
CommonHeader; // "is a" CObj
|
|
|
|
CChunk chunk;
|
|
|
|
int args;
|
|
|
|
int upvals;
|
2020-12-27 19:36:17 +00:00
|
|
|
bool variadic;
|
2020-10-28 05:16:30 +00:00
|
|
|
CObjString *name;
|
2020-12-09 18:23:16 +00:00
|
|
|
CObjString *module; // name of the "module"
|
2020-10-28 05:16:30 +00:00
|
|
|
} CObjFunction;
|
|
|
|
|
|
|
|
typedef struct CObjCFunction {
|
|
|
|
CommonHeader; // "is a" CObj
|
|
|
|
CosmoCFunction cfunc;
|
|
|
|
} CObjCFunction;
|
|
|
|
|
|
|
|
typedef struct CObjClosure {
|
2020-11-03 04:32:39 +00:00
|
|
|
CommonHeader; // "is a" CObj
|
2020-10-28 05:16:30 +00:00
|
|
|
CObjFunction *function;
|
|
|
|
CObjUpval **upvalues;
|
|
|
|
int upvalueCount;
|
|
|
|
} CObjClosure;
|
|
|
|
|
2020-11-10 01:44:12 +00:00
|
|
|
typedef struct CObjMethod {
|
|
|
|
CommonHeader; // "is a " CObj
|
2021-01-08 01:50:36 +00:00
|
|
|
CObj *obj; // obj this method is bound too
|
2020-11-17 21:07:56 +00:00
|
|
|
CValue func;
|
2020-11-10 01:44:12 +00:00
|
|
|
} CObjMethod;
|
|
|
|
|
2020-11-03 04:32:39 +00:00
|
|
|
typedef struct CObjUpval {
|
|
|
|
CommonHeader; // "is a" CObj
|
|
|
|
CValue *val;
|
|
|
|
CValue closed;
|
|
|
|
struct CObjUpval *next;
|
|
|
|
} CObjUpval;
|
|
|
|
|
2020-11-17 01:58:16 +00:00
|
|
|
#undef CommonHeader
|
|
|
|
|
2020-10-28 05:16:30 +00:00
|
|
|
#define IS_STRING(x) isObjType(x, COBJ_STRING)
|
2020-12-06 20:11:33 +00:00
|
|
|
#define IS_OBJECT(x) isObjType(x, COBJ_OBJECT)
|
2021-01-16 21:40:58 +00:00
|
|
|
#define IS_TABLE(x) isObjType(x, COBJ_TABLE)
|
2020-10-28 05:16:30 +00:00
|
|
|
#define IS_FUNCTION(x) isObjType(x, COBJ_FUNCTION)
|
|
|
|
#define IS_CFUNCTION(x) isObjType(x, COBJ_CFUNCTION)
|
2020-11-10 01:44:12 +00:00
|
|
|
#define IS_METHOD(x) isObjType(x, COBJ_METHOD)
|
2020-10-28 05:16:30 +00:00
|
|
|
#define IS_CLOSURE(x) isObjType(x, COBJ_CLOSURE)
|
|
|
|
|
2020-12-04 06:04:14 +00:00
|
|
|
#define cosmoV_readString(x) ((CObjString*)cosmoV_readObj(x))
|
|
|
|
#define cosmoV_readObject(x) ((CObjObject*)cosmoV_readObj(x))
|
2021-01-13 00:27:29 +00:00
|
|
|
#define cosmoV_readTable(x) ((CObjTable*)cosmoV_readObj(x))
|
2020-12-04 06:04:14 +00:00
|
|
|
#define cosmoV_readFunction(x) ((CObjFunction*)cosmoV_readObj(x))
|
|
|
|
#define cosmoV_readCFunction(x) (((CObjCFunction*)cosmoV_readObj(x))->cfunc)
|
|
|
|
#define cosmoV_readMethod(x) ((CObjMethod*)cosmoV_readObj(x))
|
|
|
|
#define cosmoV_readClosure(x) ((CObjClosure*)cosmoV_readObj(x))
|
2020-10-28 05:16:30 +00:00
|
|
|
|
2021-01-16 21:40:58 +00:00
|
|
|
#define cosmoO_readCString(x) ((CObjString*)x)->str
|
|
|
|
|
2020-10-28 05:16:30 +00:00
|
|
|
static inline bool isObjType(CValue val, CObjType type) {
|
|
|
|
return IS_OBJ(val) && cosmoV_readObj(val)->type == type;
|
|
|
|
}
|
|
|
|
|
2020-12-13 00:16:31 +00:00
|
|
|
// just protects against macro expansion
|
|
|
|
static inline bool IS_CALLABLE(CValue val) {
|
2020-12-13 03:17:31 +00:00
|
|
|
return IS_CLOSURE(val) || IS_CFUNCTION(val) || IS_METHOD(val);
|
2020-12-13 00:16:31 +00:00
|
|
|
}
|
|
|
|
|
2020-11-06 01:53:55 +00:00
|
|
|
CObj *cosmoO_allocateBase(CState *state, size_t sz, CObjType type);
|
|
|
|
void cosmoO_free(CState *state, CObj* obj);
|
2020-10-28 05:16:30 +00:00
|
|
|
|
2020-11-06 01:53:55 +00:00
|
|
|
bool cosmoO_equal(CObj* obj1, CObj* obj2);
|
2020-10-28 05:16:30 +00:00
|
|
|
|
2020-11-10 01:44:12 +00:00
|
|
|
CObjObject *cosmoO_newObject(CState *state);
|
2021-01-08 20:37:36 +00:00
|
|
|
CObjTable *cosmoO_newTable(CState *state);
|
2020-10-28 05:16:30 +00:00
|
|
|
CObjFunction *cosmoO_newFunction(CState *state);
|
|
|
|
CObjCFunction *cosmoO_newCFunction(CState *state, CosmoCFunction func);
|
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
|
|
|
CObjError *cosmoO_newError(CState *state, CValue err);
|
2021-01-08 01:50:36 +00:00
|
|
|
CObjMethod *cosmoO_newMethod(CState *state, CValue func, CObj *obj);
|
2020-10-28 05:16:30 +00:00
|
|
|
CObjClosure *cosmoO_newClosure(CState *state, CObjFunction *func);
|
|
|
|
CObjUpval *cosmoO_newUpvalue(CState *state, CValue *val);
|
|
|
|
|
2021-01-08 01:50:36 +00:00
|
|
|
// grabs the base proto of the CObj* (if CObj is a CObjObject, that is returned)
|
|
|
|
static inline CObjObject *cosmoO_grabProto(CObj *obj) {
|
2021-01-24 18:17:46 +00:00
|
|
|
return obj->type == COBJ_OBJECT ? (CObjObject*)obj : obj->proto;
|
2021-01-08 01:50:36 +00:00
|
|
|
}
|
|
|
|
|
2021-01-13 00:27:29 +00:00
|
|
|
bool cosmoO_getRawObject(CState *state, CObjObject *proto, CValue key, CValue *val, CObj *obj);
|
|
|
|
void cosmoO_setRawObject(CState *state, CObjObject *proto, CValue key, CValue val, CObj *obj);
|
2020-12-10 02:32:42 +00:00
|
|
|
bool cosmoO_indexObject(CState *state, CObjObject *object, CValue key, CValue *val);
|
|
|
|
bool cosmoO_newIndexObject(CState *state, CObjObject *object, CValue key, CValue val);
|
2020-11-06 01:53:55 +00:00
|
|
|
|
2020-12-18 01:44:04 +00:00
|
|
|
void cosmoO_setUserP(CState *state, CObjObject *object, void *p);
|
|
|
|
void *cosmoO_getUserP(CState *state, CObjObject *object);
|
|
|
|
void cosmoO_setUserI(CState *state, CObjObject *object, int i);
|
|
|
|
int cosmoO_getUserI(CState *state, CObjObject *object);
|
2020-12-06 19:38:05 +00:00
|
|
|
|
2020-11-17 01:58:16 +00:00
|
|
|
// internal string
|
|
|
|
bool cosmoO_getIString(CState *state, CObjObject *object, int flag, CValue *val);
|
|
|
|
|
2020-10-28 05:16:30 +00:00
|
|
|
// copies the *str buffer to the heap and returns a CObjString struct which is also on the heap
|
|
|
|
CObjString *cosmoO_copyString(CState *state, const char *str, size_t sz);
|
|
|
|
// pass an already allocated str buffer!
|
|
|
|
CObjString *cosmoO_takeString(CState *state, char *str, size_t sz);
|
|
|
|
// allocates a CObjStruct pointing directly to *str
|
|
|
|
CObjString *cosmoO_allocateString(CState *state, const char *str, size_t sz, uint32_t hash);
|
|
|
|
|
2020-12-22 21:13:11 +00:00
|
|
|
/*
|
|
|
|
formats strings to push onto the VM stack, formatting supported:
|
|
|
|
|
2021-01-16 21:40:58 +00:00
|
|
|
'%d' - integers [int]
|
2020-12-22 21:13:11 +00:00
|
|
|
'%f' - floating point [double]
|
|
|
|
'%s' - strings [const char*]
|
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
|
|
|
'%t' - cosmo tokens [CToken *]
|
2020-12-22 21:13:11 +00:00
|
|
|
*/
|
|
|
|
CObjString *cosmoO_pushVFString(CState *state, const char *format, va_list args);
|
|
|
|
|
2020-10-28 05:16:30 +00:00
|
|
|
COSMO_API void printObject(CObj *o);
|
2020-11-30 18:32:04 +00:00
|
|
|
const char *cosmoO_typeStr(CObj* obj);
|
2020-10-28 05:16:30 +00:00
|
|
|
|
2021-01-13 20:13:55 +00:00
|
|
|
CObjString *cosmoO_toString(CState *state, CObj *obj);
|
|
|
|
cosmo_Number cosmoO_toNumber(CState *state, CObj *obj);
|
2021-01-22 21:22:30 +00:00
|
|
|
int cosmoO_count(CState *state, CObj *obj);
|
2021-01-13 20:13:55 +00:00
|
|
|
|
2021-01-02 05:06:24 +00:00
|
|
|
#endif
|