libcubescript/cubescript.hh

698 lines
17 KiB
C++
Raw Normal View History

2016-08-14 18:35:38 +02:00
#ifndef LIBCUBESCRIPT_CUBESCRIPT_HH
#define LIBCUBESCRIPT_CUBESCRIPT_HH
2015-09-10 19:53:43 +02:00
#include <stdio.h>
#include <stdlib.h>
2016-08-14 18:35:38 +02:00
#include "cubescript_conf.hh"
2016-03-17 22:21:45 +01:00
#include <ostd/platform.hh>
2015-08-08 18:13:19 +02:00
#include <ostd/types.hh>
#include <ostd/string.hh>
2015-08-08 18:13:19 +02:00
#include <ostd/vector.hh>
2016-08-17 22:21:16 +02:00
#include <ostd/map.hh>
2015-08-08 18:13:19 +02:00
#include <ostd/range.hh>
#include <ostd/utility.hh>
2015-08-07 03:11:53 +02:00
#include <ostd/maybe.hh>
2015-08-08 18:13:19 +02:00
#include <ostd/io.hh>
#include <ostd/functional.hh>
#include <ostd/format.hh>
2015-08-08 17:13:46 +02:00
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
};
2016-08-06 20:12:38 +02:00
struct Bytecode;
2016-08-06 19:38:05 +02:00
struct OSTD_EXPORT BytecodeRef {
2016-08-07 22:39:27 +02:00
BytecodeRef():
p_code(nullptr)
{}
2016-08-06 20:12:38 +02:00
BytecodeRef(Bytecode *v);
2016-08-06 19:38:05 +02:00
BytecodeRef(BytecodeRef const &v);
2016-08-07 22:39:27 +02:00
BytecodeRef(BytecodeRef &&v):
p_code(v.p_code)
{
v.p_code = nullptr;
}
2015-12-20 00:28:12 +01:00
2016-08-06 19:38:05 +02:00
~BytecodeRef();
2016-08-06 19:38:05 +02:00
BytecodeRef &operator=(BytecodeRef const &v);
BytecodeRef &operator=(BytecodeRef &&v);
2015-12-20 00:28:12 +01:00
operator bool() const { return p_code != nullptr; }
2016-08-06 20:12:38 +02:00
operator Bytecode *() const { return p_code; }
2015-12-20 00:28:12 +01:00
private:
2016-08-06 20:12:38 +02:00
Bytecode *p_code;
2015-12-20 00:28:12 +01:00
};
2016-08-06 20:12:38 +02:00
OSTD_EXPORT bool code_is_empty(Bytecode const *code);
struct Ident;
2016-08-18 20:38:30 +02:00
struct OSTD_EXPORT CsValue {
union {
2016-08-14 18:35:38 +02:00
CsInt i; /* ID_IVAR, VAL_INT */
CsFloat f; /* ID_FVAR, VAL_FLOAT */
2016-08-06 20:12:38 +02:00
Bytecode const *code; /* VAL_CODE */
Ident *id; /* VAL_IDENT */
2016-08-01 22:46:50 +02:00
char *s; /* ID_SVAR, VAL_STR */
2016-07-17 19:50:40 +02:00
char const *cstr; /* VAL_CSTR */
};
2016-08-01 22:46:50 +02:00
ostd::Size len;
2015-08-13 22:48:03 +02:00
int get_type() const {
2016-08-01 22:35:42 +02:00
return p_type;
2015-08-13 22:48:03 +02:00
}
2016-08-14 18:35:38 +02:00
void set_int(CsInt val) {
2015-08-13 22:48:03 +02:00
p_type = VAL_INT;
i = val;
}
2016-08-14 18:35:38 +02:00
void set_float(CsFloat val) {
2015-08-13 22:48:03 +02:00
p_type = VAL_FLOAT;
f = val;
}
2016-08-21 02:34:03 +02:00
void set_str(CsString val) {
if (val.size() == 0) {
/* ostd zero length strings cannot be disowned */
char *buf = new char[1];
buf[0] = '\0';
set_mstr(buf);
return;
}
2016-07-13 19:46:35 +02:00
ostd::CharRange cr = val.iter();
val.disown();
set_mstr(cr);
}
void set_null() {
2015-08-13 22:48:03 +02:00
p_type = VAL_NULL;
i = 0;
}
2016-08-06 20:12:38 +02:00
void set_code(Bytecode const *val) {
2015-08-13 22:48:03 +02:00
p_type = VAL_CODE;
code = val;
}
void set_cstr(ostd::ConstCharRange val) {
2016-08-01 22:35:42 +02:00
p_type = VAL_CSTR;
2016-08-01 22:46:50 +02:00
len = val.size();
cstr = val.data();
}
2016-07-13 19:46:35 +02:00
void set_mstr(ostd::CharRange val) {
2016-08-01 22:35:42 +02:00
p_type = VAL_STR;
2016-08-01 22:46:50 +02:00
len = val.size();
2016-07-13 19:46:35 +02:00
s = val.data();
}
void set_ident(Ident *val) {
2015-08-13 22:48:03 +02:00
p_type = VAL_IDENT;
id = val;
}
void set_macro(Bytecode const *val, ostd::Size ln) {
p_type = VAL_MACRO;
len = ln;
code = val;
}
2016-08-18 20:38:30 +02:00
void set(CsValue &tv) {
2015-08-08 02:40:29 +02:00
*this = tv;
2015-08-13 22:48:03 +02:00
tv.p_type = VAL_NULL;
2015-08-08 02:40:29 +02:00
}
2016-08-21 02:34:03 +02:00
CsString get_str() const;
ostd::ConstCharRange get_strr() const;
2016-08-14 18:35:38 +02:00
CsInt get_int() const;
CsFloat get_float() const;
2016-08-06 20:12:38 +02:00
Bytecode *get_code() const;
2016-08-01 22:35:42 +02:00
Ident *get_ident() const;
2016-08-18 20:38:30 +02:00
void get_val(CsValue &r) const;
bool get_bool() const;
void force_null();
2016-08-14 18:35:38 +02:00
CsFloat force_float();
CsInt force_int();
ostd::ConstCharRange force_str();
bool code_is_empty() const;
void cleanup();
2016-08-18 20:38:30 +02:00
void copy_arg(CsValue &r) const;
2015-08-13 22:48:03 +02:00
private:
int p_type;
};
2016-08-18 20:38:30 +02:00
using CsValueRange = ostd::PointerRange<CsValue>;
struct IdentStack {
2016-08-18 20:38:30 +02:00
CsValue val_s;
IdentStack *next;
};
struct CsState;
2016-08-10 19:33:43 +02:00
enum class IdentType {
2016-08-18 03:53:51 +02:00
ivar = 0, fvar, svar, command, alias, special
2016-08-10 19:33:43 +02:00
};
2016-08-18 00:54:57 +02:00
struct Var;
struct Ivar;
struct Fvar;
struct Svar;
struct Alias;
2016-08-18 00:54:57 +02:00
2016-03-17 22:21:45 +01:00
struct OSTD_EXPORT Ident {
2016-08-18 03:53:51 +02:00
friend struct CsState;
2016-08-10 19:33:43 +02:00
IdentType get_type() const;
2016-08-18 03:53:51 +02:00
ostd::ConstCharRange get_name() const;
int get_flags() const;
int get_index() const;
2016-08-10 19:33:43 +02:00
2016-08-18 00:54:57 +02:00
bool is_alias() const;
Alias *get_alias();
Alias const *get_alias() const;
2016-08-10 19:33:43 +02:00
2016-08-18 00:54:57 +02:00
bool is_command() const;
2016-08-18 03:53:51 +02:00
bool is_special() const;
2016-08-10 19:33:43 +02:00
2016-08-18 00:54:57 +02:00
bool is_var() const;
Var *get_var();
Var const *get_var() const;
2016-08-10 19:33:43 +02:00
2016-08-18 00:54:57 +02:00
bool is_ivar() const;
Ivar *get_ivar();
Ivar const *get_ivar() const;
2016-08-10 19:33:43 +02:00
2016-08-18 00:54:57 +02:00
bool is_fvar() const;
Fvar *get_fvar();
Fvar const *get_fvar() const;
2016-08-10 19:33:43 +02:00
2016-08-18 00:54:57 +02:00
bool is_svar() const;
Svar *get_svar();
Svar const *get_svar() const;
2016-08-17 23:04:43 +02:00
2016-08-18 03:53:51 +02:00
int get_type_raw() const {
return p_type;
}
2016-08-17 23:04:43 +02:00
protected:
Ident(IdentType tp, ostd::ConstCharRange name, int flags = 0);
2016-08-18 03:53:51 +02:00
2016-08-21 02:34:03 +02:00
CsString p_name;
2016-08-18 03:53:51 +02:00
/* represents the IdentType above, but internally it has a wider variety
* of values, so it's an int here (maps to an internal enum)
*/
int p_type, p_flags;
private:
int p_index = -1;
2016-08-17 23:04:43 +02:00
};
2016-08-18 00:06:39 +02:00
using VarCb = ostd::Function<void(Ident &)>;
2016-08-17 23:31:47 +02:00
struct OSTD_EXPORT Var: Ident {
2016-08-18 04:14:55 +02:00
friend struct CsState;
protected:
Var(IdentType tp, ostd::ConstCharRange name, VarCb func, int flags = 0);
private:
2016-08-17 23:29:31 +02:00
VarCb cb_var;
void changed() {
if (cb_var) {
cb_var(*this);
}
}
2016-08-17 23:04:43 +02:00
};
2016-08-17 23:31:47 +02:00
struct OSTD_EXPORT Ivar: Var {
2016-08-18 04:14:55 +02:00
friend struct CsState;
CsInt get_val_min() const;
CsInt get_val_max() const;
CsInt get_var_value() const;
2016-08-17 23:04:43 +02:00
Ivar(
ostd::ConstCharRange n, CsInt m, CsInt x, CsInt *s,
VarCb f = VarCb(), int flags = 0
);
2016-08-18 04:14:55 +02:00
private:
CsInt *p_storage;
CsInt p_minval, p_maxval, p_overrideval;
2016-08-17 23:04:43 +02:00
};
2016-08-17 23:31:47 +02:00
struct OSTD_EXPORT Fvar: Var {
2016-08-18 04:14:55 +02:00
friend struct CsState;
CsFloat get_val_min() const;
CsFloat get_val_max() const;
CsFloat get_var_value() const;
2016-08-17 23:04:43 +02:00
Fvar(
ostd::ConstCharRange n, CsFloat m, CsFloat x, CsFloat *s,
VarCb f = VarCb(), int flags = 0
);
2016-08-18 04:14:55 +02:00
private:
CsFloat *p_storage;
CsFloat p_minval, p_maxval, p_overrideval;
2016-08-17 23:04:43 +02:00
};
2016-08-17 23:31:47 +02:00
struct OSTD_EXPORT Svar: Var {
2016-08-18 04:14:55 +02:00
friend struct CsState;
ostd::ConstCharRange get_var_value() const;
2016-08-17 23:04:43 +02:00
Svar(
ostd::ConstCharRange n, char **s, VarCb f = VarCb(),
int flags = 0
);
2016-08-18 04:14:55 +02:00
private:
char **p_storage;
char *p_overrideval;
2016-08-17 23:04:43 +02:00
};
2016-08-17 23:31:47 +02:00
struct OSTD_EXPORT Alias: Ident {
2016-08-18 20:38:30 +02:00
CsValue val_v;
2016-08-18 00:06:39 +02:00
2016-08-17 23:04:43 +02:00
Alias(ostd::ConstCharRange n, char *a, int flags);
Alias(ostd::ConstCharRange n, CsInt a, int flags);
Alias(ostd::ConstCharRange n, CsFloat a, int flags);
Alias(ostd::ConstCharRange n, int flags);
2016-08-18 20:38:30 +02:00
Alias(ostd::ConstCharRange n, CsValue const &v, int flags);
2016-08-17 23:04:43 +02:00
2016-08-18 20:38:30 +02:00
void set_value(CsValue const &v) {
val_v = v;
2016-08-18 00:18:36 +02:00
}
void set_value(IdentStack const &v) {
val_v = v.val_s;
2016-08-18 00:18:36 +02:00
}
2016-08-20 17:40:00 +02:00
void set_value_cstr(ostd::ConstCharRange val) {
val_v.set_cstr(val);
}
void set_value_mstr(ostd::CharRange val) {
val_v.set_mstr(val);
}
2016-08-21 02:34:03 +02:00
void set_value_str(CsString val) {
2016-08-20 17:40:00 +02:00
val_v.set_str(ostd::move(val));
}
void cleanup_value() {
val_v.cleanup();
}
2016-08-18 20:38:30 +02:00
void get_cstr(CsValue &v) const;
void get_cval(CsValue &v) const;
2016-08-18 00:18:36 +02:00
2016-08-18 20:38:30 +02:00
void push_arg(CsValue const &v, IdentStack &st, bool um = true);
2016-08-18 00:06:39 +02:00
void pop_arg();
void undo_arg(IdentStack &st);
void redo_arg(IdentStack const &st);
2016-08-18 20:38:30 +02:00
void set_arg(CsState &cs, CsValue &v);
void set_alias(CsState &cs, CsValue &v);
2016-08-18 00:06:39 +02:00
void clean_code();
2016-08-21 01:51:45 +02:00
Bytecode *compile_code(CsState &cs);
2016-08-18 00:06:39 +02:00
2016-08-17 23:04:43 +02:00
void force_null() {
2016-08-20 17:40:00 +02:00
cleanup_value();
val_v.set_null();
2016-08-17 23:04:43 +02:00
}
2016-08-21 01:37:34 +02:00
private:
2016-08-21 01:51:45 +02:00
Bytecode *p_acode;
2016-08-21 01:37:34 +02:00
IdentStack *p_astack;
2016-08-17 23:04:43 +02:00
};
2015-08-06 22:43:36 +02:00
struct IdentLink {
Ident *id;
IdentLink *next;
int usedargs;
IdentStack *argstack;
};
2016-08-18 20:47:29 +02:00
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
};
2016-08-18 20:38:30 +02:00
using CmdFunc = ostd::Function<void(CsValueRange, CsValue &)>;
2016-03-17 22:21:45 +01:00
struct OSTD_EXPORT CsState {
2016-08-21 02:34:03 +02:00
CsMap<ostd::ConstCharRange, Ident *> idents;
CsVector<Ident *> identmap;
Ident *dummy = nullptr;
2016-07-27 19:52:01 +02:00
IdentLink noalias;
2016-08-20 17:40:00 +02:00
IdentLink *p_stack = &noalias;
2015-08-06 22:43:36 +02:00
ostd::ConstCharRange src_file;
ostd::ConstCharRange src_str;
int identflags = 0;
2015-08-06 22:43:36 +02:00
int nodebug = 0;
2016-08-14 18:35:38 +02:00
CsInt numargs = 0;
CsInt dbgalias = 4;
CsState();
~CsState();
2016-08-18 20:47:29 +02:00
void init_libs(int libs = CS_LIB_ALL);
void clear_override(Ident &id);
void clear_overrides();
2015-08-13 20:51:15 +02:00
Ident *new_ident(ostd::ConstCharRange name, int flags = IDF_UNKNOWN);
2016-08-18 20:38:30 +02:00
Ident *force_ident(CsValue &v);
2016-08-20 17:52:54 +02:00
template<typename T, typename ...A>
T *add_ident(A &&...args) {
return static_cast<T *>(add_ident(new T(ostd::forward<A>(args)...)));
}
Ident *get_ident(ostd::ConstCharRange name) {
2016-08-17 22:21:16 +02:00
Ident **id = idents.at(name);
if (!id) {
return nullptr;
}
return *id;
}
2016-08-17 23:04:43 +02:00
Alias *get_alias(ostd::ConstCharRange name) {
Ident *id = get_ident(name);
if (!id->is_alias()) {
return nullptr;
}
return static_cast<Alias *>(id);
}
bool have_ident(ostd::ConstCharRange name) {
return idents.at(name) != nullptr;
}
bool reset_var(ostd::ConstCharRange name);
void touch_var(ostd::ConstCharRange name);
2016-08-07 22:39:27 +02:00
bool add_command(
2016-08-10 19:33:43 +02:00
ostd::ConstCharRange name, ostd::ConstCharRange args, CmdFunc func
2016-08-07 22:39:27 +02:00
);
2015-10-11 17:59:36 +02:00
2016-08-21 02:34:03 +02:00
CsString run_str(Bytecode const *code);
CsString run_str(ostd::ConstCharRange code);
CsString run_str(Ident *id, CsValueRange args);
2016-08-14 18:35:38 +02:00
CsInt run_int(Bytecode const *code);
CsInt run_int(ostd::ConstCharRange code);
2016-08-18 20:38:30 +02:00
CsInt run_int(Ident *id, CsValueRange args);
2016-08-14 18:35:38 +02:00
CsFloat run_float(Bytecode const *code);
CsFloat run_float(ostd::ConstCharRange code);
2016-08-18 20:38:30 +02:00
CsFloat run_float(Ident *id, CsValueRange args);
2016-08-06 20:12:38 +02:00
bool run_bool(Bytecode const *code);
bool run_bool(ostd::ConstCharRange code);
2016-08-18 20:38:30 +02:00
bool run_bool(Ident *id, CsValueRange args);
2015-08-06 03:07:16 +02:00
2016-08-18 20:38:30 +02:00
void run_ret(Bytecode const *code, CsValue &ret);
void run_ret(ostd::ConstCharRange code, CsValue &ret);
void run_ret(Ident *id, CsValueRange args, CsValue &ret);
2015-08-07 22:04:31 +02:00
2016-08-18 20:34:24 +02:00
void run(Bytecode const *code);
void run(ostd::ConstCharRange code);
2016-08-18 20:38:30 +02:00
void run(Ident *id, CsValueRange args);
2016-08-18 20:34:24 +02:00
2016-08-21 02:34:03 +02:00
ostd::Maybe<CsString> run_file_str(ostd::ConstCharRange fname);
2016-08-18 20:34:24 +02:00
ostd::Maybe<CsInt> run_file_int(ostd::ConstCharRange fname);
ostd::Maybe<CsFloat> run_file_float(ostd::ConstCharRange fname);
ostd::Maybe<bool> run_file_bool(ostd::ConstCharRange fname);
2016-08-18 20:38:30 +02:00
bool run_file_ret(ostd::ConstCharRange fname, CsValue &ret);
2015-09-12 17:21:40 +02:00
bool run_file(ostd::ConstCharRange fname);
2015-08-06 22:43:36 +02:00
2016-08-18 20:38:30 +02:00
void set_alias(ostd::ConstCharRange name, CsValue &v);
2015-08-07 03:11:53 +02:00
2016-08-07 22:39:27 +02:00
void set_var_int(
2016-08-14 18:35:38 +02:00
ostd::ConstCharRange name, CsInt v,
2016-08-07 22:39:27 +02:00
bool dofunc = true, bool doclamp = true
);
void set_var_float(
2016-08-14 18:35:38 +02:00
ostd::ConstCharRange name, CsFloat v,
2016-08-07 22:39:27 +02:00
bool dofunc = true, bool doclamp = true
);
void set_var_str(
ostd::ConstCharRange name, ostd::ConstCharRange v, bool dofunc = true
);
2015-08-07 03:11:53 +02:00
2016-08-17 23:29:31 +02:00
void set_var_int_checked(Ivar *iv, CsInt v);
2016-08-18 20:38:30 +02:00
void set_var_int_checked(Ivar *iv, CsValueRange args);
2016-08-17 23:29:31 +02:00
void set_var_float_checked(Fvar *fv, CsFloat v);
void set_var_str_checked(Svar *fv, ostd::ConstCharRange v);
2015-08-07 03:44:51 +02:00
2016-08-14 18:35:38 +02:00
ostd::Maybe<CsInt> get_var_int(ostd::ConstCharRange name);
ostd::Maybe<CsFloat> get_var_float(ostd::ConstCharRange name);
2016-08-21 02:34:03 +02:00
ostd::Maybe<CsString> get_var_str(ostd::ConstCharRange name);
2015-08-07 03:11:53 +02:00
2016-08-14 18:35:38 +02:00
ostd::Maybe<CsInt> get_var_min_int(ostd::ConstCharRange name);
ostd::Maybe<CsInt> get_var_max_int(ostd::ConstCharRange name);
2015-08-07 03:11:53 +02:00
2016-08-14 18:35:38 +02:00
ostd::Maybe<CsFloat> get_var_min_float(ostd::ConstCharRange name);
ostd::Maybe<CsFloat> get_var_max_float(ostd::ConstCharRange name);
2015-08-07 03:11:53 +02:00
2016-08-21 02:34:03 +02:00
ostd::Maybe<CsString> get_alias_val(ostd::ConstCharRange name);
2015-08-07 22:38:57 +02:00
2016-08-17 23:29:31 +02:00
void print_var(Var *v);
void print_var_int(Ivar *iv, CsInt i);
void print_var_float(Fvar *fv, CsFloat f);
void print_var_str(Svar *sv, ostd::ConstCharRange s);
2016-08-21 02:34:03 +02:00
private:
Ident *add_ident(Ident *id);
};
2016-08-18 20:38:30 +02:00
struct OSTD_EXPORT StackedValue: CsValue {
2016-08-18 00:18:36 +02:00
StackedValue(Ident *id = nullptr):
2016-08-18 20:38:30 +02:00
CsValue(), p_a(nullptr), p_stack(), p_pushed(false)
2016-08-12 05:16:35 +02:00
{
2016-08-18 00:18:36 +02:00
set_alias(id);
2016-08-12 05:16:35 +02:00
}
~StackedValue() {
pop();
}
2016-08-18 00:06:39 +02:00
bool set_alias(Ident *id) {
2016-08-12 05:16:35 +02:00
if (!id || !id->is_alias()) {
return false;
}
2016-08-18 00:06:39 +02:00
p_a = static_cast<Alias *>(id);
2016-08-12 05:16:35 +02:00
return true;
2016-08-12 05:01:29 +02:00
}
2016-08-18 00:06:39 +02:00
Alias *get_alias() const {
return p_a;
2016-08-12 05:02:05 +02:00
}
2016-08-18 00:06:39 +02:00
bool has_alias() const {
return p_a != nullptr;
2015-12-16 20:05:28 +01:00
}
bool push() {
2016-08-18 00:06:39 +02:00
if (p_pushed || !p_a) {
2016-08-07 22:39:27 +02:00
return false;
}
2016-08-18 00:06:39 +02:00
p_a->push_arg(*this, p_stack);
2015-08-14 00:18:48 +02:00
p_pushed = true;
return true;
}
bool pop() {
2016-08-18 00:06:39 +02:00
if (!p_pushed || !p_a) {
2016-08-07 22:39:27 +02:00
return false;
}
2016-08-18 00:06:39 +02:00
p_a->pop_arg();
2015-08-14 00:18:48 +02:00
p_pushed = false;
return true;
}
2015-08-14 00:18:48 +02:00
private:
2016-08-18 00:06:39 +02:00
Alias *p_a;
2015-08-14 00:18:48 +02:00
IdentStack p_stack;
bool p_pushed;
};
2015-08-08 17:06:18 +02:00
namespace util {
template<typename R>
inline ostd::Size escape_string(R &&writer, ostd::ConstCharRange str) {
ostd::Size ret = 2;
writer.put('"');
2016-08-07 22:39:27 +02:00
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;
}
2015-08-08 17:06:18 +02:00
}
writer.put('"');
return ret;
}
2015-08-08 18:07:01 +02:00
2015-08-11 03:18:53 +02:00
template<typename R>
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();
2016-08-07 22:39:27 +02:00
if (str.empty()) {
2015-08-11 03:18:53 +02:00
break;
2016-08-07 22:39:27 +02:00
}
2015-08-11 03:18:53 +02:00
switch (str.front()) {
2016-08-07 22:39:27 +02:00
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;
2015-08-11 03:18:53 +02:00
}
} else {
ret += writer.put(str.front());
}
}
return ret;
}
2016-08-15 19:48:06 +02:00
struct ListParser {
ostd::ConstCharRange input;
ostd::ConstCharRange quote = ostd::ConstCharRange();
ostd::ConstCharRange item = ostd::ConstCharRange();
ListParser() = delete;
ListParser(ostd::ConstCharRange src): input(src) {}
void skip();
bool parse();
2016-08-21 02:34:03 +02:00
CsString element();
2016-08-15 19:48:06 +02:00
};
2015-08-13 01:16:52 +02:00
ostd::Size list_length(ostd::ConstCharRange s);
2016-08-21 02:34:03 +02:00
ostd::Maybe<CsString> list_index(
2016-08-07 22:39:27 +02:00
ostd::ConstCharRange s, ostd::Size idx
);
2016-08-21 02:34:03 +02:00
CsVector<CsString> list_explode(
2016-08-07 22:39:27 +02:00
ostd::ConstCharRange s, ostd::Size limit = -1
);
template<typename R>
2016-08-14 18:35:38 +02:00
inline ostd::Ptrdiff format_int(R &&writer, CsInt val) {
return ostd::format(ostd::forward<R>(writer), IntFormat, val);
}
template<typename R>
2016-08-14 18:35:38 +02:00
inline ostd::Ptrdiff format_float(R &&writer, CsFloat val) {
return ostd::format(
2016-08-14 18:35:38 +02:00
ostd::forward<R>(writer),
(val == CsInt(val)) ? RoundFloatFormat : FloatFormat, val
);
}
template<typename R>
inline ostd::Size tvals_concat(
2016-08-18 20:38:30 +02:00
R &&writer, CsValueRange vals,
ostd::ConstCharRange sep = ostd::ConstCharRange()
) {
ostd::Size ret = 0;
for (ostd::Size i = 0; i < vals.size(); ++i) {
2016-08-21 02:34:03 +02:00
auto s = ostd::appender<CsString>();
switch (vals[i].get_type()) {
case VAL_INT: {
auto r = format_int(ostd::forward<R>(writer), vals[i].i);
if (r > 0) {
ret += ostd::Size(r);
}
break;
}
case VAL_FLOAT: {
2016-08-14 18:35:38 +02:00
auto r = format_float(ostd::forward<R>(writer), vals[i].f);
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;
}
2016-03-06 22:51:11 +01:00
} /* namespace util */
2015-08-08 17:13:46 +02:00
2015-09-10 19:53:43 +02:00
} /* namespace cscript */
2016-08-14 18:35:38 +02:00
#endif /* LIBCUBESCRIPT_CUBESCRIPT_HH */