[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
[109] | 4 | |
---|
| 5 | #ifndef _EXTVALUE_H_ |
---|
| 6 | #define _EXTVALUE_H_ |
---|
| 7 | |
---|
| 8 | #include "sstring.h" |
---|
| 9 | #include <frams/param/param.h> |
---|
| 10 | #include <common/nonstd_stl.h> |
---|
| 11 | #include <common/threads.h> |
---|
| 12 | |
---|
| 13 | #define EXTVALUEUNION |
---|
| 14 | template <int A,int B> struct CompileTimeMax {enum {val=A>B?A:B}; }; |
---|
| 15 | #define EXTVALUEUNIONSIZE CompileTimeMax<sizeof(ExtObject),sizeof(SString)>::val |
---|
| 16 | |
---|
| 17 | enum ExtPType |
---|
| 18 | {TUnknown=0,TInt,TDouble,TString,TObj,TInvalid}; |
---|
| 19 | |
---|
| 20 | /** |
---|
| 21 | destructable object |
---|
| 22 | */ |
---|
| 23 | class DestrBase |
---|
| 24 | { |
---|
| 25 | public: |
---|
| 26 | int refcount; |
---|
| 27 | DestrBase():refcount(0) {} |
---|
| 28 | void incref() {refcount++;} |
---|
| 29 | void decref() {refcount--; if (refcount==0) delete this;} |
---|
| 30 | virtual ~DestrBase() {} |
---|
| 31 | }; |
---|
| 32 | |
---|
| 33 | /** |
---|
| 34 | object reference. |
---|
| 35 | */ |
---|
| 36 | class ExtObject |
---|
| 37 | { |
---|
| 38 | int subtype; //< 0/1=Generic/DPC Object, 0/2=Standalone/Shared Param |
---|
| 39 | void incref() const; |
---|
| 40 | void decref() const; |
---|
| 41 | public: |
---|
| 42 | union { void* object; //< generic object, will use param |
---|
| 43 | DestrBase *dbobject;}; //< object with refcounting, will be deleted if refcount goes to 0 |
---|
| 44 | union { Param* param; //< if object!=0 |
---|
| 45 | ParamInterface *paraminterface;}; //< if object==0 |
---|
| 46 | |
---|
| 47 | void copyFrom(const ExtObject& src) {subtype=src.subtype;object=src.object;param=src.param;} |
---|
| 48 | |
---|
| 49 | void* operator new(size_t s, void* mem) {return mem;} |
---|
| 50 | #ifdef _MSC_VER |
---|
| 51 | void operator delete(void* mem,void* t) {} |
---|
| 52 | #endif |
---|
| 53 | void* operator new(size_t s) {return malloc(sizeof(ExtObject));} |
---|
| 54 | void operator delete(void* mem) {free(mem);} |
---|
| 55 | ///@param tmp_param can be used for temporary storage, the result ParamInterface* is only valid for as long as tmp_param is valid |
---|
| 56 | ParamInterface *getParamInterface(Param &tmp_param) const {if(subtype&2){tmp_param.setParamTab(param->getParamTab());tmp_param.select(object);return &tmp_param;} return paraminterface;} |
---|
| 57 | const char* interfaceName() const {if (isEmpty()) return "Empty"; return (subtype&2)?param->getName():paraminterface->getName();} |
---|
| 58 | bool matchesInterfaceName(ParamInterface* pi) const {return !strcmp(interfaceName(),pi->getName());} |
---|
| 59 | void* getTarget() const {return (subtype&1)?dbobject:object;} |
---|
[171] | 60 | void* getTarget(const char* classname, bool through_barrier=true, bool warn=true) const; |
---|
[109] | 61 | void setEmpty() {decref();subtype=0;param=NULL;object=NULL;} |
---|
| 62 | int isEmpty() const {return !param;} |
---|
[276] | 63 | static const ExtObject& empty() { static const ExtObject& e((ParamInterface*)NULL); return e; } |
---|
[109] | 64 | ExtObject(const ExtObject& src) {src.incref();copyFrom(src);} |
---|
| 65 | void operator=(const ExtObject& src) {src.incref();decref();copyFrom(src);} |
---|
| 66 | bool makeUnique();//< @return false if nothing has changed |
---|
| 67 | |
---|
[257] | 68 | bool operator==(const ExtObject& src) const; |
---|
[109] | 69 | |
---|
| 70 | SString toString() const; |
---|
| 71 | SString serialize_inner() const; |
---|
| 72 | SString serialize() const; |
---|
| 73 | |
---|
| 74 | ExtObject(Param *p,void *o):subtype(2),object(o),param(p){} |
---|
| 75 | ExtObject(ParamInterface *p=0):subtype(0),object(0),paraminterface(p){} |
---|
| 76 | ExtObject(Param *p,DestrBase *o):subtype(1+2),dbobject(o),param(p){incref();} |
---|
| 77 | ExtObject(ParamInterface *p,DestrBase *o):subtype(1),dbobject(o),paraminterface(p){incref();} |
---|
| 78 | |
---|
| 79 | ~ExtObject(){decref();} |
---|
| 80 | |
---|
| 81 | class Serialization |
---|
| 82 | { |
---|
| 83 | std::vector<ExtObject> refs; |
---|
| 84 | int level; |
---|
| 85 | public: |
---|
| 86 | Serialization():level(0) {} |
---|
| 87 | void begin(); |
---|
| 88 | void end(); |
---|
| 89 | int add(const ExtObject& o); |
---|
| 90 | void replace(const ExtObject& o,const ExtObject& other); |
---|
| 91 | void remove(const ExtObject& o); |
---|
| 92 | const ExtObject* get(int ref); |
---|
| 93 | }; |
---|
| 94 | |
---|
| 95 | static THREAD_LOCAL_DECL(Serialization,serialization); |
---|
| 96 | }; |
---|
| 97 | |
---|
| 98 | class ExtValue |
---|
| 99 | { |
---|
| 100 | public: |
---|
| 101 | ExtPType type; |
---|
| 102 | #ifdef EXTVALUEUNION |
---|
| 103 | long data[(EXTVALUEUNIONSIZE+sizeof(long)-1)/sizeof(long)]; |
---|
[247] | 104 | paInt& idata() const {return (paInt&)data[0];}; |
---|
[109] | 105 | double& ddata() const {return *(double*)data;}; |
---|
| 106 | ExtObject& odata() const {return *(ExtObject*)data;}; |
---|
| 107 | SString& sdata() const {return *(SString*)data;}; |
---|
| 108 | #else |
---|
| 109 | union { |
---|
[247] | 110 | paInt i; |
---|
[109] | 111 | double d; |
---|
| 112 | SString *s; |
---|
| 113 | ExtObject *o; |
---|
| 114 | }; |
---|
[247] | 115 | paInt& idata() const {return (paInt&)i;}; |
---|
[109] | 116 | double& ddata() const {return (double&)d;}; |
---|
| 117 | ExtObject& odata() const {return *o;}; |
---|
| 118 | SString& sdata() const {return *s;}; |
---|
| 119 | #endif |
---|
| 120 | |
---|
| 121 | void* operator new(size_t s, void* mem) {return mem;} |
---|
| 122 | void* operator new(size_t s) {return ::operator new(s);} |
---|
| 123 | |
---|
| 124 | ExtValue():type(TUnknown){} |
---|
| 125 | ~ExtValue() {setEmpty();} |
---|
[247] | 126 | ExtValue(paInt v) {seti(v);} |
---|
[109] | 127 | ExtValue(double v) {setd(v);} |
---|
| 128 | ExtValue(const SString &v) {sets(v);} |
---|
| 129 | ExtValue(const ExtObject &srco) {seto(srco);} |
---|
[205] | 130 | static ExtValue invalid() {ExtValue v; v.setInvalid(); return v;} |
---|
[276] | 131 | static const ExtValue& empty() { static const ExtValue v; return v; } |
---|
[247] | 132 | int compare(const ExtValue& src) const; |
---|
[109] | 133 | int operator==(const ExtValue& src) const; |
---|
| 134 | void operator+=(const ExtValue& src); |
---|
| 135 | void operator-=(const ExtValue& src); |
---|
| 136 | void operator*=(const ExtValue& src); |
---|
| 137 | void operator/=(const ExtValue& src); |
---|
| 138 | void operator%=(const ExtValue& src); |
---|
| 139 | void operator=(const ExtValue& src) |
---|
| 140 | {setr(src);} |
---|
| 141 | ExtValue(const ExtValue& src) |
---|
| 142 | :type(TUnknown) {set(src);} |
---|
| 143 | void setEmpty(); |
---|
| 144 | void setInvalid() {setEmpty();type=TInvalid;} |
---|
| 145 | bool makeUnique() {return (type==TObj) && odata().makeUnique();} //< @return false if nothing has changed |
---|
| 146 | ExtPType getType() {return type;} |
---|
[171] | 147 | void *getObjectTarget(const char* classname,bool warn=true) const; |
---|
[247] | 148 | void setInt(paInt v) {if (type!=TInt) setri(v); else idata()=v;} |
---|
[109] | 149 | void setDouble(double v) {if (type!=TDouble) setrd(v); else ddata()=v;} |
---|
| 150 | void setString(const SString &v) {if (type!=TString) setrs(v); else sdata()=v;} |
---|
| 151 | void setObject(const ExtObject &src) {if (type!=TObj) setro(src); else odata()=src;} |
---|
[247] | 152 | static paInt getInt(const char* s); |
---|
[144] | 153 | static double getDouble(const char* s); |
---|
[247] | 154 | paInt getInt() const; |
---|
[109] | 155 | double getDouble() const; |
---|
| 156 | SString getString() const; |
---|
| 157 | const SString* getStringPtr() const;//< @return pointer to the internal sstring object or NULL if the current type is not string |
---|
| 158 | SString serialize() const; |
---|
| 159 | ExtObject getObject() const; |
---|
[144] | 160 | bool isNull() const {return (type==TUnknown)||((type==TObj)&&odata().isEmpty());} |
---|
[228] | 161 | SString typeDescription() const;//< @return human readable type name (used in error messages) |
---|
[109] | 162 | const char* parseNumber(const char* in); |
---|
| 163 | const char* deserialize(const char* in);//< @return first character after the succesfully parsed string or NULL if failed |
---|
| 164 | const char* deserialize_inner(const char* in); |
---|
| 165 | static ParamInterface *findDeserializableClass(const char* name); |
---|
[222] | 166 | static PtrListTempl<ParamInterface*> &getDeserializableClasses(); |
---|
| 167 | template<typename T> class AddDeserializable |
---|
| 168 | { |
---|
| 169 | public: |
---|
| 170 | AddDeserializable() {ExtValue::getDeserializableClasses()+=&T::getStaticParam();} |
---|
| 171 | }; |
---|
| 172 | |
---|
[109] | 173 | static SString format(SString& fmt,const ExtValue **values,int count); |
---|
| 174 | |
---|
| 175 | ExtValue getExtType(); |
---|
| 176 | |
---|
| 177 | private: // setrx - release and set, setx - assume released |
---|
| 178 | void setr(const ExtValue& src){setEmpty();set(src);} |
---|
| 179 | void set(const ExtValue& src); |
---|
[247] | 180 | void setri(paInt v) {setEmpty();seti(v);} |
---|
[109] | 181 | void setrd(double v) {setEmpty();setd(v);} |
---|
[247] | 182 | void seti(paInt v) {type=TInt;idata()=v;} |
---|
[109] | 183 | void setd(double v) {type=TDouble;ddata()=v;} |
---|
| 184 | #ifdef EXTVALUEUNION |
---|
| 185 | void setrs(const SString &v) {setEmpty();sets(v);} |
---|
| 186 | void setro(const ExtObject &src) {setEmpty();seto(src);} |
---|
| 187 | void sets(const SString &v) {type=TString;new(data) SString(v);} |
---|
| 188 | void seto(const ExtObject &src) {type=TObj;new(data) ExtObject(src);} |
---|
| 189 | #else |
---|
| 190 | void setrs(const SString &v) {setEmpty();sets(v);} |
---|
| 191 | void setro(const ExtObject &src) {setEmpty();seto(src);} |
---|
| 192 | void sets(const SString &v) {type=TString;s=new SString(v);} |
---|
| 193 | void seto(const ExtObject &src) {type=TObj;o=new ExtObject(src);} |
---|
| 194 | #endif |
---|
| 195 | |
---|
| 196 | }; |
---|
| 197 | |
---|
[222] | 198 | #define REGISTER_DESERIALIZABLE(name) ExtValue::AddDeserializable<name> deserializable_autoinit_ ## name; |
---|
[109] | 199 | |
---|
| 200 | #endif |
---|