Cosmo/src/cobj.h

198 lines
6.0 KiB
C
Raw Normal View History

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,
COBJ_TABLE,
2020-10-28 05:16:30 +00:00
COBJ_FUNCTION,
COBJ_CFUNCTION,
COBJ_ERROR,
// internal use
COBJ_METHOD,
COBJ_CLOSURE,
COBJ_UPVALUE,
COBJ_MAX
2020-10-28 05:16:30 +00:00
} CObjType;
#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
#define readFlag(x, flag) (x & (1u << flag))
#define setFlagOn(x, flag) (x |= (1u << flag))
2020-10-28 05:16:30 +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;
struct CObj *nextRoot; // for the root linked list
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;
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
cosmo_Flag istringFlags; // enables us to have a much faster lookup for reserved IStrings (like __init, __index, etc.)
CTable tbl;
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
typedef struct CObjTable { // table, a wrapper for CTable
CommonHeader; // "is a" CObj
CTable tbl;
} CObjTable;
2020-10-28 05:16:30 +00:00
typedef struct CObjFunction {
CommonHeader; // "is a" CObj
CChunk chunk;
int args;
int upvals;
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 {
CommonHeader; // "is a" CObj
2020-10-28 05:16:30 +00:00
CObjFunction *function;
CObjUpval **upvalues;
int upvalueCount;
} CObjClosure;
typedef struct CObjMethod {
CommonHeader; // "is a " CObj
CObj *obj; // obj this method is bound too
2020-11-17 21:07:56 +00:00
CValue func;
} CObjMethod;
typedef struct CObjUpval {
CommonHeader; // "is a" CObj
CValue *val;
CValue closed;
struct CObjUpval *next;
} CObjUpval;
#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)
#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)
#define IS_METHOD(x) isObjType(x, COBJ_METHOD)
2020-10-28 05:16:30 +00:00
#define IS_CLOSURE(x) isObjType(x, COBJ_CLOSURE)
#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))
#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
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
CObjObject *cosmoO_newObject(CState *state);
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);
CObjError *cosmoO_newError(CState *state, CValue err);
CObjMethod *cosmoO_newMethod(CState *state, CValue func, CObj *obj);
2020-10-28 05:16:30 +00:00
CObjClosure *cosmoO_newClosure(CState *state, CObjFunction *func);
CObjString *cosmoO_toString(CState *state, CObj *val);
CObjUpval *cosmoO_newUpvalue(CState *state, CValue *val);
// grabs the base proto of the CObj* (if CObj is a CObjObject, that is returned)
static inline CObjObject *cosmoO_grabProto(CObj *obj) {
CObjObject *object = obj->proto;
if (obj->type == COBJ_OBJECT)
object = (CObjObject*)obj;
return object;
}
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);
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
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);
// 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);
/*
formats strings to push onto the VM stack, formatting supported:
'%d' - decimal numbers [int]
'%f' - floating point [double]
'%s' - strings [const char*]
'%t' - cosmo tokens [CToken *]
*/
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);
const char *cosmoO_typeStr(CObj* obj);
2020-10-28 05:16:30 +00:00
#define cosmoO_readCString(x) ((CObjString*)x)->str
2021-01-02 05:06:24 +00:00
#endif