#ifndef CUBESCRIPT_HH #define CUBESCRIPT_HH #include #include #include #include #include #include #include #include #include #include #include #include namespace cscript { enum { VAL_NULL = 0, VAL_INT, VAL_FLOAT, VAL_STR, VAL_ANY, VAL_CODE, VAL_MACRO, VAL_IDENT, VAL_CSTR, VAL_CANY, VAL_WORD, VAL_POP, VAL_COND }; enum { IDF_PERSIST = 1 << 0, IDF_OVERRIDE = 1 << 1, IDF_HEX = 1 << 2, IDF_READONLY = 1 << 3, IDF_OVERRIDDEN = 1 << 4, IDF_UNKNOWN = 1 << 5, IDF_ARG = 1 << 6 }; struct Bytecode; struct OSTD_EXPORT BytecodeRef { BytecodeRef(): p_code(nullptr) {} BytecodeRef(Bytecode *v); BytecodeRef(BytecodeRef const &v); BytecodeRef(BytecodeRef &&v): p_code(v.p_code) { v.p_code = nullptr; } ~BytecodeRef(); BytecodeRef &operator=(BytecodeRef const &v); BytecodeRef &operator=(BytecodeRef &&v); operator bool() const { return p_code != nullptr; } operator Bytecode *() const { return p_code; } private: Bytecode *p_code; }; OSTD_EXPORT bool code_is_empty(Bytecode const *code); struct Ident; struct IdentValue { union { int i; /* ID_VAR, VAL_INT */ float f; /* ID_FVAR, VAL_FLOAT */ Bytecode const *code; /* VAL_CODE */ Ident *id; /* VAL_IDENT */ char *s; /* ID_SVAR, VAL_STR */ char const *cstr; /* VAL_CSTR */ }; ostd::Size len; }; struct OSTD_EXPORT TaggedValue: IdentValue { friend struct Ident; int get_type() const { return p_type; } void set_int(int val) { p_type = VAL_INT; i = val; } void set_float(float val) { p_type = VAL_FLOAT; f = val; } void set_str(ostd::String val) { ostd::CharRange cr = val.iter(); val.disown(); set_mstr(cr); } void set_null() { p_type = VAL_NULL; i = 0; } void set_code(Bytecode const *val) { p_type = VAL_CODE; code = val; } void set_cstr(ostd::ConstCharRange val) { p_type = VAL_CSTR; len = val.size(); cstr = val.data(); } void set_mstr(ostd::CharRange val) { p_type = VAL_STR; len = val.size(); s = val.data(); } void set_ident(Ident *val) { p_type = VAL_IDENT; id = val; } void set(TaggedValue &tv) { *this = tv; tv.p_type = VAL_NULL; } ostd::String get_str() const; ostd::ConstCharRange get_strr() const; int get_int() const; float get_float() const; Bytecode *get_code() const; Ident *get_ident() const; void get_val(TaggedValue &r) const; bool get_bool() const; void force_null(); float force_float(); int force_int(); ostd::ConstCharRange force_str(); bool code_is_empty() const; void cleanup(); void copy_arg(TaggedValue &r) const; private: int p_type; }; using TvalRange = ostd::PointerRange; struct IdentStack { IdentValue val; int valtype; IdentStack *next; }; union IdentValuePtr { int *ip; /* ID_VAR */ float *fp; /* ID_FVAR */ char **sp; /* ID_SVAR */ }; struct CsState; using VarCb = ostd::Function; using CmdFunc = ostd::Function; enum class IdentType { unknown = -1, ivar, fvar, svar, command, alias }; struct OSTD_EXPORT Ident { ostd::byte type; /* ID_something */ union { int valtype; /* ID_ALIAS */ int numargs; /* ID_COMMAND */ }; ostd::ushort flags; int index; ostd::String name; union { struct { /* ID_VAR, ID_FVAR, ID_SVAR */ union { struct { /* ID_VAR */ int minval, maxval; }; struct { /* ID_FVAR */ float minvalf, maxvalf; }; }; IdentValuePtr storage; IdentValue overrideval; }; struct { /* ID_ALIAS */ Bytecode *code; IdentValue val; IdentStack *stack; }; struct { /* ID_COMMAND */ char *cargs; ostd::Uint32 argmask; }; }; VarCb cb_var; CmdFunc cb_cftv; Ident(); /* ID_VAR */ Ident( ostd::ConstCharRange n, int m, int x, int *s, VarCb f = VarCb(), int flags = 0 ); /* ID_FVAR */ Ident( ostd::ConstCharRange n, float m, float x, float *s, VarCb f = VarCb(), int flags = 0 ); /* ID_SVAR */ Ident( ostd::ConstCharRange n, char **s, VarCb f = VarCb(), int flags = 0 ); /* ID_ALIAS */ Ident(ostd::ConstCharRange n, char *a, int flags); Ident(ostd::ConstCharRange n, int a, int flags); Ident(ostd::ConstCharRange n, float a, int flags); Ident(ostd::ConstCharRange n, int flags); Ident(ostd::ConstCharRange n, TaggedValue const &v, int flags); /* ID_COMMAND */ Ident( int t, ostd::ConstCharRange n, ostd::ConstCharRange args, ostd::Uint32 argmask, int numargs, CmdFunc f = CmdFunc() ); void changed() { if (cb_var) { cb_var(*this); } } void set_value(TaggedValue const &v) { valtype = v.get_type(); val = v; } void set_value(IdentStack const &v) { valtype = v.valtype; val = v.val; } void force_null() { if (valtype == VAL_STR) { delete[] val.s; val.s = nullptr; val.len = 0; } valtype = VAL_NULL; } float get_float() const; int get_int() const; ostd::String get_str() const; ostd::ConstCharRange get_strr() const; void get_val(TaggedValue &r) const; void get_cstr(TaggedValue &v) const; void get_cval(TaggedValue &v) const; ostd::ConstCharRange get_key() const { return name.iter(); } void clean_code(); void push_arg(TaggedValue const &v, IdentStack &st, bool um = true); void pop_arg(); void undo_arg(IdentStack &st); void redo_arg(IdentStack const &st); void push_alias(IdentStack &st); void pop_alias(); void set_arg(CsState &cs, TaggedValue &v); void set_alias(CsState &cs, TaggedValue &v); int get_valtype() const { return valtype; } IdentType get_type() const; bool is_alias() const { return get_type() == IdentType::alias; } bool is_command() const { return get_type() == IdentType::command; } bool is_var() const { IdentType tp = get_type(); return (tp >= IdentType::ivar) && (tp <= IdentType::svar); } bool is_ivar() const { return get_type() == IdentType::ivar; } bool is_fvar() const { return get_type() == IdentType::fvar; } bool is_svar() const { return get_type() == IdentType::svar; } }; struct IdentLink { Ident *id; IdentLink *next; int usedargs; IdentStack *argstack; }; struct OSTD_EXPORT CsState { ostd::Keyset idents; ostd::Vector identmap; Ident *dummy = nullptr; IdentLink noalias; IdentLink *stack = &noalias; ostd::ConstCharRange src_file; ostd::ConstCharRange src_str; int identflags = 0; int nodebug = 0; int numargs = 0; int dbgalias = 4; CsState(); ~CsState(); void clear_override(Ident &id); void clear_overrides(); template Ident *add_ident(A &&...args) { Ident &def = idents.emplace(ostd::forward(args)...).first.front(); def.index = identmap.size(); return identmap.push(&def); } Ident *new_ident(ostd::ConstCharRange name, int flags = IDF_UNKNOWN); Ident *force_ident(TaggedValue &v); Ident *get_ident(ostd::ConstCharRange name) { return idents.at(name); } bool have_ident(ostd::ConstCharRange name) { return idents.at(name) != nullptr; } bool reset_var(ostd::ConstCharRange name); void touch_var(ostd::ConstCharRange name); bool add_command( ostd::ConstCharRange name, ostd::ConstCharRange args, CmdFunc func ); ostd::String run_str(Bytecode const *code); ostd::String run_str(ostd::ConstCharRange code); ostd::String run_str(Ident *id, TvalRange args); int run_int(Bytecode const *code); int run_int(ostd::ConstCharRange code); int run_int(Ident *id, TvalRange args); float run_float(Bytecode const *code); float run_float(ostd::ConstCharRange code); float run_float(Ident *id, TvalRange args); bool run_bool(Bytecode const *code); bool run_bool(ostd::ConstCharRange code); bool run_bool(Ident *id, TvalRange args); void run_ret(Bytecode const *code, TaggedValue &ret); void run_ret(ostd::ConstCharRange code, TaggedValue &ret); void run_ret(Ident *id, TvalRange args, TaggedValue &ret); bool run_file(ostd::ConstCharRange fname); void set_alias(ostd::ConstCharRange name, TaggedValue &v); void set_var_int( ostd::ConstCharRange name, int v, bool dofunc = true, bool doclamp = true ); void set_var_float( ostd::ConstCharRange name, float v, bool dofunc = true, bool doclamp = true ); void set_var_str( ostd::ConstCharRange name, ostd::ConstCharRange v, bool dofunc = true ); void set_var_int_checked(Ident *id, int v); void set_var_int_checked(Ident *id, TvalRange args); void set_var_float_checked(Ident *id, float v); void set_var_str_checked(Ident *id, ostd::ConstCharRange v); ostd::Maybe get_var_int(ostd::ConstCharRange name); ostd::Maybe get_var_float(ostd::ConstCharRange name); ostd::Maybe get_var_str(ostd::ConstCharRange name); ostd::Maybe get_var_min_int(ostd::ConstCharRange name); ostd::Maybe get_var_max_int(ostd::ConstCharRange name); ostd::Maybe get_var_min_float(ostd::ConstCharRange name); ostd::Maybe get_var_max_float(ostd::ConstCharRange name); ostd::Maybe get_alias(ostd::ConstCharRange name); void print_var(Ident *id); void print_var_int(Ident *id, int i); void print_var_float(Ident *id, float f); void print_var_str(Ident *id, ostd::ConstCharRange s); }; enum { CS_LIB_IO = 1 << 0, CS_LIB_MATH = 1 << 1, CS_LIB_STRING = 1 << 2, CS_LIB_LIST = 1 << 3, CS_LIB_ALL = 0b1111 }; OSTD_EXPORT void init_libs(CsState &cs, int libs = CS_LIB_ALL); struct OSTD_EXPORT StackedValue: TaggedValue { StackedValue() = delete; StackedValue(CsState &cs, Ident *id = nullptr): TaggedValue(), p_cs(cs), p_id(id), p_stack(), p_pushed(false) {} ~StackedValue() { pop(); } bool alias(Ident *id) { p_id = id; return p_id && p_id->is_alias(); } bool alias(ostd::ConstCharRange name) { return alias(p_cs.new_ident(name)); } bool push() { if (p_pushed || !p_id) { return false; } p_id->push_arg(*this, p_stack); p_pushed = true; return true; } bool pop() { if (!p_pushed || !p_id) { return false; } p_id->pop_arg(); p_pushed = false; return true; } Ident *get_id() const { return p_id; } bool has_id() const { return p_id != nullptr; } private: CsState &p_cs; Ident *p_id; IdentStack p_stack; bool p_pushed; }; namespace util { template inline ostd::Size escape_string(R &&writer, ostd::ConstCharRange str) { ostd::Size ret = 2; writer.put('"'); for (; !str.empty(); str.pop_front()) { switch (str.front()) { case '\n': ret += writer.put_n("^n", 2); break; case '\t': ret += writer.put_n("^t", 2); break; case '\f': ret += writer.put_n("^f", 2); break; case '"': ret += writer.put_n("^\"", 2); break; case '^': ret += writer.put_n("^^", 2); break; default: ret += writer.put(str.front()); break; } } writer.put('"'); return ret; } template inline ostd::Size unescape_string(R &&writer, ostd::ConstCharRange str) { ostd::Size ret = 0; for (; !str.empty(); str.pop_front()) { if (str.front() == '^') { str.pop_front(); if (str.empty()) { break; } switch (str.front()) { case 'n': ret += writer.put('\n'); break; case 't': ret += writer.put('\r'); break; case 'f': ret += writer.put('\f'); break; case '"': ret += writer.put('"'); break; case '^': ret += writer.put('^'); break; default: ret += writer.put(str.front()); break; } } else { ret += writer.put(str.front()); } } return ret; } ostd::Size list_length(ostd::ConstCharRange s); ostd::Maybe list_index( ostd::ConstCharRange s, ostd::Size idx ); ostd::Vector list_explode( ostd::ConstCharRange s, ostd::Size limit = -1 ); template inline ostd::Ptrdiff format_int(R &&writer, int val) { return ostd::format(ostd::forward(writer), "%d", val); } template inline ostd::Ptrdiff format_float(R &&writer, int val) { return ostd::format( ostd::forward(writer), (val == int(val)) ? "%.1f" : "%.7g", val ); } template inline ostd::Size tvals_concat( R &&writer, TvalRange vals, ostd::ConstCharRange sep = ostd::ConstCharRange() ) { ostd::Size ret = 0; for (ostd::Size i = 0; i < vals.size(); ++i) { auto s = ostd::appender(); switch (vals[i].get_type()) { case VAL_INT: { auto r = format_int(ostd::forward(writer), vals[i].i); if (r > 0) { ret += ostd::Size(r); } break; } case VAL_FLOAT: { auto r = format_float(ostd::forward(writer), vals[i].i); if (r > 0) { ret += ostd::Size(r); } break; } case VAL_STR: case VAL_CSTR: case VAL_MACRO: ret += writer.put_n(vals[i].s, vals[i].len); break; default: break; } if (i == (vals.size() - 1)) { break; } ret += writer.put_n(sep.data(), sep.size()); } return ret; } } /* namespace util */ } /* namespace cscript */ #endif /* CUBESCRIPT_HH */