source: cpp/frams/util/extvalue.h @ 478

Last change on this file since 478 was 478, checked in by Maciej Komosinski, 8 years ago

Accessing const objects, short -> paInt, less critical messages when not necessary, accessing dictionaries with "->"

  • Property svn:eol-style set to native
File size: 9.3 KB
Line 
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.
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
14template <int A, int B> struct CompileTimeMax { enum { val = A > B ? A : B }; };
15#define EXTVALUEUNIONSIZE CompileTimeMax<sizeof(ExtObject),sizeof(SString)>::val
16
17enum ExtPType
18{
19        TUnknown = 0, TInt, TDouble, TString, TObj, TInvalid
20};
21
22/**
23   destructable object
24   */
25class DestrBase
26{
27public:
28        int refcount;
29        DestrBase() :refcount(0) {}
30        void incref() { refcount++; }
31        void decref() { refcount--; if (refcount == 0) delete this; }
32        virtual ~DestrBase() {}
33};
34
35enum SerializationFormat { NativeSerialization, JSONSerialization };
36
37/**
38   object reference.
39   */
40class ExtObject
41{
42        int subtype;                    //< 0/1=Generic/DPC Object,  0/2=Standalone/Shared Param
43        void incref() const;
44        void decref() const;
45public:
46        union {
47                void* object;           //< generic object, will use param
48                DestrBase *dbobject;    //< object with refcounting, will be deleted if refcount goes to 0
49        };
50        union {
51                Param* param;           //< if object!=0
52                ParamInterface *paraminterface; //< if object==0
53        };
54
55        void copyFrom(const ExtObject& src)  { subtype = src.subtype; object = src.object; param = src.param; }
56
57        void* operator new(size_t s, void* mem){ return mem; }
58#ifdef _MSC_VER
59                void operator delete(void* mem, void* t) {}
60#endif
61        void* operator new(size_t s){ return malloc(sizeof(ExtObject)); }
62        void operator delete(void* mem) { free(mem); }
63        ///@param tmp_param can be used for temporary storage, the result ParamInterface* is only valid for as long as tmp_param is valid
64        ParamInterface *getParamInterface(Param &tmp_param) const  { if (subtype & 2){ tmp_param.setParamTab(param->getParamTab()); tmp_param.select(object); return &tmp_param; } return paraminterface; }
65        const char* interfaceName() const { if (isEmpty()) return "Empty"; return (subtype & 2) ? param->getName() : paraminterface->getName(); }
66        bool matchesInterfaceName(ParamInterface* pi) const { return !strcmp(interfaceName(), pi->getName()); }
67        void* getTarget() const { return (subtype & 1) ? dbobject : object; }
68        void* getTarget(const char* classname, bool through_barrier = true, bool warn = true) const;
69        bool callDelegate(const char* delegate,ExtValue *args,ExtValue *ret);
70        void setEmpty() { decref(); subtype = 0; param = NULL; object = NULL; }
71        int isEmpty() const { return !param; }
72        static const ExtObject& empty() { static const ExtObject& e((ParamInterface*)NULL); return e; }
73        ExtObject(const ExtObject& src)      { src.incref(); copyFrom(src); }
74        void operator=(const ExtObject& src) { src.incref(); decref(); copyFrom(src); }
75        bool makeUnique();//< @return false if nothing has changed
76
77        bool operator==(const ExtObject& src) const;
78
79        SString toString() const;
80        SString serialize_inner(SerializationFormat format) const;
81        SString serialize(SerializationFormat format) const;
82
83        ExtObject(Param *p, void *o) :subtype(2), object(o), param(p){}
84        ExtObject(ParamInterface *p = 0) :subtype(0), object(0), paraminterface(p){}
85        ExtObject(Param *p, DestrBase *o) :subtype(1 + 2), dbobject(o), param(p){ incref(); }
86        ExtObject(ParamInterface *p, DestrBase *o) :subtype(1), dbobject(o), paraminterface(p){ incref(); }
87
88        ~ExtObject(){ decref(); }
89
90        class Serialization
91        {
92                std::vector<ExtObject> refs;
93                int level;
94        public:
95                Serialization() :level(0) {}
96                void begin();
97                void end();
98                int add(const ExtObject& o);
99                void replace(const ExtObject& o, const ExtObject& other);
100                void remove(const ExtObject& o);
101                const ExtObject* get(int ref);
102        };
103
104};
105
106extern THREAD_LOCAL_DECL(ExtObject::Serialization, ExtObject_serialization);
107
108class ExtValue
109{
110public:
111        ExtPType type;
112#ifdef EXTVALUEUNION
113        intptr_t data[(EXTVALUEUNIONSIZE + sizeof(intptr_t) - 1) / sizeof(intptr_t)];
114        paInt& idata() const { return (paInt&)data[0]; };
115        double& ddata() const { return *(double*)data; };
116        ExtObject& odata() const { return *(ExtObject*)data; };
117        SString& sdata() const { return *(SString*)data; };
118#else
119        union {
120                paInt i;
121                double d;
122                SString *s;
123                ExtObject *o;
124        };
125        paInt& idata() const {return (paInt&)i;};
126        double& ddata() const {return (double&)d;};
127        ExtObject& odata() const {return *o;};
128        SString& sdata() const {return *s;};
129#endif
130
131        void* operator new(size_t s, void* mem){ return mem; }
132        void* operator new(size_t s){ return ::operator new(s); }
133
134                ExtValue() :type(TUnknown){}
135        ~ExtValue() { setEmpty(); }
136        ExtValue(paInt v) { seti(v); }
137        ExtValue(double v) { setd(v); }
138        ExtValue(const SString &v) { sets(v); }
139        ExtValue(const ExtObject &srco) { seto(srco); }
140        static ExtValue invalid() { ExtValue v; v.setInvalid(); return v; }
141        static const ExtValue& empty() { static const ExtValue v; return v; }
142        static const ExtValue& zero() { static const ExtValue v(0); return v; }
143
144        enum CompareResult
145        {
146                ResultLower = -1, ResultEqual = 0, ResultHigher = 1,
147                ResultEqualUnordered,
148                ResultUnequal_RelaxedEqual,
149                ResultUnequal_RelaxedUnequal,
150                ResultMismatch_RelaxedUnequal,
151                ResultMismatch
152        };
153        // performs all script value comparisons.
154        // relaxed comparison (internal use only, not available in scripts) works like regular == with additional null~=0, notnull!~0
155        // and is used for pseudo-boolean conversion allowing for expressions like "if (null) ..."
156        CompareResult compare(const ExtValue& src) const;
157
158        enum CmpOperator { CmpFIRST, CmpEQ = CmpFIRST, CmpNE, CmpGE, CmpLE, CmpGT, CmpLT,/*relaxed (not)equal*/CmpREQ, CmpRNE };
159        static const char* cmp_op_names[];
160        struct CmpContext { const ExtValue *v1, *v2; };
161        // interpret compare() result, optional context controls error messages
162        // @return 0=false, 1=true, -1=undefined (null in script)
163        static int interpretCompare(CmpOperator op, CompareResult result, CmpContext *context = NULL);
164
165        void divInt(paInt a);
166        void divDouble(double a);
167
168        int operator==(const ExtValue& src) const;
169        void operator+=(const ExtValue& src);
170        void operator-=(const ExtValue& src);
171        void operator*=(const ExtValue& src);
172        void operator/=(const ExtValue& src);
173        void operator%=(const ExtValue& src);
174        void operator=(const ExtValue& src)
175        {
176                setr(src);
177        }
178        ExtValue(const ExtValue& src)
179                :type(TUnknown) {
180                set(src);
181        }
182        void setEmpty();
183        void setInvalid() { setEmpty(); type = TInvalid; }
184        bool makeUnique() { return (type == TObj) && odata().makeUnique(); } //< @return false if nothing has changed
185        ExtPType getType() const { return type; }
186        void *getObjectTarget(const char* classname, bool warn = true) const;
187        void setInt(paInt v) { if (type != TInt) setri(v); else idata() = v; }
188        void setDouble(double v) { if (type != TDouble) setrd(v); else ddata() = v; }
189        void setString(const SString &v) { if (type != TString) setrs(v); else sdata() = v; }
190        void setObject(const ExtObject &src) { if (type != TObj) setro(src); else odata() = src; }
191        static bool parseInt(const char* s, paInt &result, bool strict, bool error);
192        static bool parseDouble(const char* s, double &result, bool error);
193        static paInt getInt(const char* s, bool strict = false);//< @param strict=true will fail on floating point
194        static double getDouble(const char* s);
195        paInt getInt() const;
196        double getDouble() const;
197        SString getString() const;
198        const SString* getStringPtr() const;//< @return pointer to the internal sstring object or NULL if the current type is not string
199        SString serialize(SerializationFormat format) const;
200        ExtObject getObject() const;
201        bool isNull() const { return (type == TUnknown) || ((type == TObj) && odata().isEmpty()); }
202        SString typeDescription() const;//< @return human readable type name (used in error messages)
203        SString typeAndValue() const;//< @return type and value (used in error messages)
204        const char* parseNumber(const char* in, ExtPType strict_type = TUnknown);
205        const char* deserialize(const char* in);//< @return first character after the succesfully parsed string or NULL if failed
206        const char* deserialize_inner(const char* in);
207        static ParamInterface *findDeserializableClass(const char* name);
208        static PtrListTempl<ParamInterface*> &getDeserializableClasses();
209        template<typename T> class AddDeserializable
210        {
211        public:
212                AddDeserializable() { ExtValue::getDeserializableClasses() += &T::getStaticParam(); }
213        };
214
215        static SString format(SString& fmt, const ExtValue **values, int count);
216
217        ExtValue getExtType();
218
219private: // setrx - release and set, setx - assume released
220        void setr(const ExtValue& src){ setEmpty(); set(src); }
221        void set(const ExtValue& src);
222        void setri(paInt v) { setEmpty(); seti(v); }
223        void setrd(double v) { setEmpty(); setd(v); }
224        void seti(paInt v) { type = TInt; idata() = v; }
225        void setd(double v) { type = TDouble; ddata() = v; }
226#ifdef EXTVALUEUNION
227        void setrs(const SString &v) { setEmpty(); sets(v); }
228        void setro(const ExtObject &src) { setEmpty(); seto(src); }
229        void sets(const SString &v) { type = TString; new(data)SString(v); }
230        void seto(const ExtObject &src) { type = TObj; new(data)ExtObject(src); }
231#else
232        void setrs(const SString &v) {setEmpty();sets(v);}
233        void setro(const ExtObject &src) {setEmpty();seto(src);}
234        void sets(const SString &v) {type=TString;s=new SString(v);}
235        void seto(const ExtObject &src) {type=TObj;o=new ExtObject(src);}
236#endif
237
238};
239
240#define REGISTER_DESERIALIZABLE(name) ExtValue::AddDeserializable<name> deserializable_autoinit_ ## name;
241
242#endif
Note: See TracBrowser for help on using the repository browser.