[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
[849] | 2 | // Copyright (C) 1999-2019 Maciej Komosinski and Szymon Ulatowski. |
---|
[286] | 3 | // See LICENSE.txt for details. |
---|
[109] | 4 | |
---|
| 5 | #include "collectionobj.h" |
---|
| 6 | #include <common/nonstd_math.h> //sqrt in borland |
---|
[375] | 7 | #include <frams/util/validitychecks.h> |
---|
[109] | 8 | #include <common/nonstd_stl.h> |
---|
| 9 | #include <frams/util/sstringutils.h> |
---|
| 10 | #ifndef NO_VMACHINE |
---|
| 11 | #include <frams/vm/vmachine.h> |
---|
| 12 | #endif |
---|
| 13 | |
---|
| 14 | #define FIELDSTRUCT VectorObject |
---|
[746] | 15 | ParamEntry vector_paramtab[] = |
---|
[109] | 16 | { |
---|
[746] | 17 | { "Vector", 1, 15, "Vector", "Vector is a 1-dimensional array indexed by an integer value (starting from 0). " |
---|
| 18 | "Multidimensional arrays can be simulated by putting other Vector objects into a Vector.\n" |
---|
| 19 | "Examples:\n" |
---|
| 20 | "\tvar v1=Vector.new();\n" |
---|
| 21 | "\tv1.add(123);\n" |
---|
| 22 | "\tv1.add(\"string\");\n" |
---|
| 23 | "A short way of doing the same (square brackets create a vector):\n" |
---|
| 24 | "\tvar v2=[123,\"string\"];\n" |
---|
| 25 | "Simulate a 2D array:\n" |
---|
| 26 | "\tvar v3=[[1,2,3],[4,5],[6]];\n" |
---|
| 27 | "You can iterate directly over values of a Vector using for(...in...) loops:\n" |
---|
| 28 | "\tfor(var element in v3) Simulator.print(element);" |
---|
| 29 | }, |
---|
| 30 | { "clear", 0, PARAM_NOSTATIC, "Clear data", "p()", PROCEDURE(p_clear), }, |
---|
| 31 | { "size", 0, PARAM_READONLY | PARAM_NOSTATIC, "Element count", "d", GETONLY(size), }, |
---|
| 32 | { "remove", 0, PARAM_NOSTATIC, "Remove at position", "p(d position)", PROCEDURE(p_remove), }, |
---|
| 33 | { "get", 0, PARAM_NOSTATIC, "Get value at position", "p x(d position)", PROCEDURE(p_get), "object[position] can be always used instead of object.get(position)" }, |
---|
| 34 | { "set", 0, PARAM_NOSTATIC, "Set value at position", "p(d position,x value)", PROCEDURE(p_set), "object[position]=value can be always used instead of object.set(position,value)" }, |
---|
| 35 | { "insert", 0, PARAM_NOSTATIC, "Insert value at position", "p(d position,x value)", PROCEDURE(p_insert), }, |
---|
| 36 | { "add", 0, PARAM_NOSTATIC, "Append at the end", "p(x value)", PROCEDURE(p_add), }, |
---|
| 37 | { "find", 0, PARAM_NOSTATIC, "Find", "p d(x value)", PROCEDURE(p_find), "returns the element index or -1 if not found" }, |
---|
| 38 | { "avg", 0, PARAM_READONLY | PARAM_NOSTATIC, "Average", "f", GETONLY(avg) }, |
---|
| 39 | { "stdev", 0, PARAM_READONLY | PARAM_NOSTATIC, "Standard deviation", "f", GETONLY(stdev), "=sqrt(sum((element[i]-avg)^2)/(size-1)) which is estimated population std.dev. from sample std.dev." }, |
---|
| 40 | { "toString", 0, PARAM_READONLY | PARAM_NOSTATIC, "Textual form", "s", GETONLY(toString), }, |
---|
| 41 | { "new", 0, 0, "Create new Vector", "p oVector()", STATICPROCEDURE(p_new), }, |
---|
| 42 | { "sort", 0, PARAM_NOSTATIC, "Sort elements (in place)", "p(oFunctionReference comparator)", PROCEDURE(p_sort), "comparator can be null, giving the \"natural\" sorting order (depending on element type), otherwise it must be a function reference obtained from the 'function' operator.\n\nExample:\nfunction compareLastDigit(a,b) {return (a%10)<(b%10);}\nvar v=[16,23,35,42,54,61];\nv.sort(function compareLastDigit);" }, |
---|
| 43 | { "iterator", 0, PARAM_NOSTATIC | PARAM_READONLY, "Iterator", "o", GETONLY(iterator), }, |
---|
| 44 | { "clone", 0, PARAM_NOSTATIC, "Create a clone", "p oVector()", PROCEDURE(p_clone), "The resulting clone is a shallow copy (contains the same object references as the original). A deep copy can be obtained through serialization: String.deserialize(String.serialize(object));" }, |
---|
| 45 | { 0, 0, 0, }, |
---|
[109] | 46 | }; |
---|
| 47 | #undef FIELDSTRUCT |
---|
| 48 | |
---|
| 49 | #define FIELDSTRUCT DictionaryObject |
---|
[746] | 50 | ParamEntry dictionary_paramtab[] = |
---|
[109] | 51 | { |
---|
[868] | 52 | { "Dictionary", 1, 14, "Dictionary", "Dictionary associates stored values with string keys " |
---|
[746] | 53 | "(\"key\" is the first argument in get/set/remove functions). Integer key can be " |
---|
| 54 | "used to enumerate all elements (note that while iterating, the elements are returned in no particular order).\n" |
---|
| 55 | "Examples:\n" |
---|
| 56 | "\tvar d;\n" |
---|
| 57 | "\td=Dictionary.new();\n" |
---|
| 58 | "\td.set(\"name\",\"John\");\n" |
---|
| 59 | "\td.set(\"age\",44);\n" |
---|
| 60 | "Another way of doing the same:\n" |
---|
| 61 | "\td={};\n" |
---|
| 62 | "\td[\"name\"]=\"John\";\n" |
---|
| 63 | "\td[\"age\"]=44;\n" |
---|
| 64 | "And the most concise way:\n" |
---|
| 65 | "\td={ \"name\":\"John\", \"age\":44 };\n" |
---|
| 66 | "Iterating:\n" |
---|
[868] | 67 | "\tfor(var v in d) Simulator.print(v); //values\n" |
---|
| 68 | "\tfor(var k in d.keys) Simulator.print(k+\" is \"+d[k]); //keys\n" |
---|
| 69 | "\tfor(var i=0;i<d.size;i++) Simulator.print(d.getKey(i)+\" is \"+d.get(i)); //by index", |
---|
[746] | 70 | }, |
---|
| 71 | { "clear", 0, PARAM_NOSTATIC, "Clear data", "p()", PROCEDURE(p_clear), }, |
---|
| 72 | { "size", 0, PARAM_NOSTATIC | PARAM_READONLY, "Element count", "d", GETONLY(size), }, |
---|
| 73 | { "remove", 0, PARAM_NOSTATIC, "Remove", "p(x key)", PROCEDURE(p_remove), "Removes the named or indexed element (depending on the argument type: string or int)." }, |
---|
[858] | 74 | { "get", 0, PARAM_NOSTATIC, "Get element", "p x(x key)", PROCEDURE(p_get), "Retrieves the named or indexed element (depending on the argument type: string or int). Accessing nonexistent keys is an error (use hasKey() if necessary).\nobject.get(key) can be shortened to object[key]." }, |
---|
| 75 | { "getKey", 0, PARAM_NOSTATIC, "Get a key", "p s(d index)", PROCEDURE(p_getKey), "Returns the key of the indexed element (0 <= index < size)." }, |
---|
[849] | 76 | { "hasKey", 0, PARAM_NOSTATIC, "Check if key exists", "p d(s key)", PROCEDURE(p_hasKey), "Returns 1 (interpreted as true) if dictionary contains the supplied key, or 0 (false) otherwise.\nExample:\n if (obj.hasKey(\"a\"))\n x = obj->a;" }, |
---|
[746] | 77 | { "set", 0, PARAM_NOSTATIC, "Set element", "p x(x key,x value)", PROCEDURE(p_set), "Set element value for the specified key or index (depending on the argument type: string or int).\n" |
---|
| 78 | "Returns the value previously associated with the given key (or index).\n" |
---|
| 79 | "object.set(key,value) can be shortened to object[key]=value. Literal string keys can use even shorter notation: object->key=value instead of object.set(\"key\",value)\n" |
---|
| 80 | "Note the difference in the returned value:\n" |
---|
| 81 | " var old_value=object.set(\"key\",new_value); //'old_value' gets the value previously associated with \"key\"\n" |
---|
| 82 | " var x=object[\"key\"]=new_value; //'x' becomes 'new_value', consistently with the semantics of the assignment operator. The value previously associated with \"key\" is lost." }, |
---|
| 83 | { "find", 0, PARAM_NOSTATIC, "Find", "p x(x value)", PROCEDURE(p_find), "Returns the element key or null if not found." }, |
---|
| 84 | { "new", 0, 0, "Create a Dictionary", "p oDictionary()", STATICPROCEDURE(p_new), "Empty directory can be also created using the {} expression." }, |
---|
| 85 | { "toString", 0, PARAM_READONLY | PARAM_NOSTATIC, "Textual form", "s", GETONLY(toString), }, |
---|
| 86 | { "clone", 0, PARAM_NOSTATIC, "Create a clone", "p oDictionary()", PROCEDURE(p_clone), "The resulting clone is a shallow copy (contains the same object references as the original). A deep copy can be obtained through serialization: String.deserialize(String.serialize(object));" }, |
---|
| 87 | { "assign", 0, PARAM_NOSTATIC, "Assign from another object", "p(x)", PROCEDURE(p_assign), "Replaces current dictionary with dictionary contents from another object." }, |
---|
[868] | 88 | { "iterator", 0, PARAM_NOSTATIC | PARAM_READONLY, "Iterator", "o", GETONLY(iterator), }, |
---|
| 89 | { "keys", 0, PARAM_NOSTATIC | PARAM_READONLY, "Keys", "o", GETONLY(keys), "Iterate over this object to get all keys: for(k in dict.keys) ..." }, |
---|
[478] | 90 | |
---|
[746] | 91 | { 0, 0, 0, }, |
---|
[109] | 92 | }; |
---|
| 93 | #undef FIELDSTRUCT |
---|
| 94 | |
---|
| 95 | Param VectorObject::par(vector_paramtab); |
---|
| 96 | Param DictionaryObject::par(dictionary_paramtab); |
---|
| 97 | |
---|
| 98 | ///////////////////////////////////////// |
---|
| 99 | |
---|
| 100 | VectorObject::VectorObject(Pt3D &pt) |
---|
[746] | 101 | :readonly(0), owndata(1) |
---|
[109] | 102 | { |
---|
[746] | 103 | set_or_insert(0, ExtValue(pt.x), false); |
---|
| 104 | set_or_insert(1, ExtValue(pt.y), false); |
---|
| 105 | set_or_insert(2, ExtValue(pt.z), false); |
---|
[109] | 106 | } |
---|
| 107 | |
---|
| 108 | void VectorObject::clear() |
---|
| 109 | { |
---|
[746] | 110 | if (owndata) |
---|
| 111 | for (int i = data.size() - 1; i >= 0; i--) |
---|
| 112 | { |
---|
[849] | 113 | ExtValue *v = (ExtValue*)data.get(i); |
---|
| 114 | if (v) delete v; |
---|
[746] | 115 | } |
---|
| 116 | data.clear(); |
---|
[109] | 117 | } |
---|
| 118 | |
---|
| 119 | void VectorObject::p_remove(PARAMPROCARGS) |
---|
| 120 | { |
---|
[746] | 121 | if (readonly) return; |
---|
| 122 | int i = args->getInt(); |
---|
| 123 | if (!listIndexCheck(&data, i, "VectorObject", "remove")) return; |
---|
| 124 | ExtValue *v = (ExtValue*)data.get(i); |
---|
| 125 | if (v) delete v; |
---|
| 126 | data -= i; |
---|
[109] | 127 | } |
---|
| 128 | |
---|
[746] | 129 | void VectorObject::set_or_insert(int i, const ExtValue& val, bool insert) |
---|
[109] | 130 | { |
---|
[746] | 131 | if (i < 0) return; |
---|
| 132 | int oldsize = data.size(); |
---|
| 133 | if (i > oldsize) |
---|
[109] | 134 | { |
---|
[746] | 135 | data.setSize(i); |
---|
| 136 | while (i > oldsize) |
---|
| 137 | data.set(oldsize++, 0); |
---|
[109] | 138 | } |
---|
[746] | 139 | if (insert) |
---|
| 140 | data.insert(i, new ExtValue(val)); |
---|
| 141 | else |
---|
[642] | 142 | { |
---|
[746] | 143 | ExtValue *v = (ExtValue*)data.get(i); |
---|
| 144 | if (v) delete v; |
---|
| 145 | data.set(i, new ExtValue(val)); |
---|
[642] | 146 | } |
---|
[109] | 147 | } |
---|
| 148 | |
---|
| 149 | void VectorObject::p_get(PARAMPROCARGS) |
---|
| 150 | { |
---|
[746] | 151 | int i = args->getInt(); |
---|
| 152 | if (listIndexCheck(&data, i, "VectorObject", "get")) |
---|
[109] | 153 | { |
---|
[746] | 154 | ExtValue *v = get(i); |
---|
| 155 | if (v) |
---|
[109] | 156 | { |
---|
[746] | 157 | *ret = *v; |
---|
| 158 | return; |
---|
[109] | 159 | } |
---|
| 160 | } |
---|
[746] | 161 | *ret = ExtValue(); |
---|
[109] | 162 | } |
---|
| 163 | |
---|
| 164 | void VectorObject::get_avg(ExtValue* ret) |
---|
| 165 | { |
---|
[746] | 166 | if (!data.size()) { ret->setEmpty(); return; } |
---|
| 167 | double s = 0.0; |
---|
| 168 | for (int i = data.size() - 1; i >= 0; i--) |
---|
| 169 | s += ((ExtValue*)data.get(i))->getDouble(); |
---|
| 170 | s /= data.size(); |
---|
| 171 | ret->setDouble(s); |
---|
[109] | 172 | } |
---|
| 173 | |
---|
[464] | 174 | SString VectorObject::serialize(SerializationFormat format) const |
---|
[109] | 175 | { |
---|
[746] | 176 | SString out = "["; |
---|
[109] | 177 | { |
---|
[746] | 178 | for (int i = 0; i < data.size(); i++) |
---|
[109] | 179 | { |
---|
[746] | 180 | ExtValue* v = (ExtValue*)data.get(i); |
---|
| 181 | if (i) out += ","; |
---|
| 182 | if (v) |
---|
| 183 | out += v->serialize(format); |
---|
| 184 | else |
---|
| 185 | out += "null"; |
---|
[109] | 186 | } |
---|
| 187 | } |
---|
[746] | 188 | out += "]"; |
---|
| 189 | //sprintf(out.directAppend(20),"<Vector@%p>",this);out.endAppend(); |
---|
| 190 | return out; |
---|
[109] | 191 | } |
---|
| 192 | |
---|
[746] | 193 | static THREAD_LOCAL_DEF(SList, VectorObject_tostring_trace); |
---|
[109] | 194 | |
---|
| 195 | void VectorObject::get_toString(ExtValue* ret) |
---|
| 196 | { |
---|
[746] | 197 | SString out = "["; |
---|
| 198 | //static SListTempl<VectorObject*> trace; |
---|
| 199 | if (tlsGetRef(VectorObject_tostring_trace).find(this) >= 0) |
---|
| 200 | out += "..."; |
---|
| 201 | else |
---|
[109] | 202 | { |
---|
[746] | 203 | tlsGetRef(VectorObject_tostring_trace) += this; |
---|
| 204 | for (int i = 0; i < data.size(); i++) |
---|
[109] | 205 | { |
---|
[746] | 206 | ExtValue* v = (ExtValue*)data.get(i); |
---|
| 207 | if (i) out += ","; |
---|
| 208 | if (v) |
---|
| 209 | out += v->getString(); |
---|
| 210 | else |
---|
| 211 | out += "null"; |
---|
[109] | 212 | } |
---|
[746] | 213 | tlsGetRef(VectorObject_tostring_trace) -= this; |
---|
[109] | 214 | } |
---|
[746] | 215 | out += "]"; |
---|
| 216 | ret->setString(out); |
---|
[109] | 217 | } |
---|
| 218 | |
---|
| 219 | void VectorObject::get_stdev(ExtValue* ret) |
---|
| 220 | { |
---|
[746] | 221 | if (!data.size()) { ret->setEmpty(); return; } |
---|
| 222 | get_avg(ret); |
---|
| 223 | double a = ret->getDouble(); |
---|
| 224 | double s = 0.0; |
---|
| 225 | for (int i = data.size() - 1; i >= 0; i--) |
---|
[109] | 226 | { |
---|
[746] | 227 | double d = a - ((ExtValue*)data.get(i))->getDouble(); |
---|
[849] | 228 | s += d * d; |
---|
[109] | 229 | } |
---|
[746] | 230 | ret->setDouble(sqrt(s / max(1, data.size() - 1))); |
---|
[109] | 231 | } |
---|
| 232 | |
---|
| 233 | void VectorObject::p_find(PARAMPROCARGS) |
---|
| 234 | { |
---|
[746] | 235 | short i; |
---|
| 236 | for (i = 0; i < data.size(); i++) |
---|
[109] | 237 | { |
---|
[746] | 238 | if ((*args) == (*get(i))) |
---|
| 239 | { |
---|
| 240 | ret->setInt(i); return; |
---|
| 241 | } |
---|
[109] | 242 | } |
---|
[746] | 243 | ret->setInt(-1); |
---|
[109] | 244 | } |
---|
| 245 | |
---|
[453] | 246 | void VectorObject::p_clone(PARAMPROCARGS) |
---|
| 247 | { |
---|
[746] | 248 | VectorObject *c = new VectorObject; |
---|
| 249 | c->data.setSize(data.size()); |
---|
| 250 | for (int i = 0; i < data.size(); i++) |
---|
[453] | 251 | { |
---|
[746] | 252 | ExtValue *v = (ExtValue*)get(i); |
---|
| 253 | if (v) |
---|
| 254 | c->data.set(i, new ExtValue(*v)); |
---|
[453] | 255 | } |
---|
[746] | 256 | ret->setObject(ExtObject(&par, c)); |
---|
[453] | 257 | } |
---|
| 258 | |
---|
[109] | 259 | class VEComparator |
---|
| 260 | { |
---|
| 261 | public: |
---|
[746] | 262 | bool operator()(const ExtValue *a, const ExtValue *b) { return a->compare(*b) == ExtValue::ResultLower; } |
---|
[109] | 263 | }; |
---|
| 264 | |
---|
| 265 | #ifndef NO_VMACHINE |
---|
| 266 | class VMVEComparator |
---|
| 267 | { |
---|
| 268 | public: |
---|
[746] | 269 | VMachine::JumpTargetObject *jto; |
---|
| 270 | VMachine *vm; |
---|
| 271 | VMVEComparator(VMachine::JumpTargetObject *_jto) :jto(_jto), vm(jto->vm) {} |
---|
| 272 | bool operator()(const ExtValue *a, const ExtValue *b); |
---|
[109] | 273 | }; |
---|
| 274 | |
---|
[746] | 275 | bool VMVEComparator::operator()(const ExtValue *a, const ExtValue *b) |
---|
[109] | 276 | { |
---|
[746] | 277 | if (!VMCode::prepareDynamicJumpTarget(jto->pc, jto->code)) |
---|
| 278 | return false; |
---|
[109] | 279 | |
---|
[746] | 280 | vm->push(*a); |
---|
| 281 | vm->push(*b); |
---|
| 282 | vm->pushNewCallState(); |
---|
| 283 | vm->jumpDynamicJumpTarget(jto->pc); |
---|
| 284 | vm->run(); |
---|
| 285 | vm->popCallState(); |
---|
| 286 | bool ret; |
---|
| 287 | ExtValue& retval = vm->getValue(); |
---|
| 288 | if (retval.type == TInvalid) |
---|
[109] | 289 | { |
---|
[746] | 290 | ret = false; |
---|
| 291 | logPrintf("VectorElementComparator", "", LOG_ERROR, "Comparison function returned no value"); |
---|
[109] | 292 | } |
---|
[746] | 293 | else |
---|
| 294 | ret = (retval.getInt() != 0); |
---|
| 295 | vm->drop(2); |
---|
| 296 | return ret; |
---|
[109] | 297 | } |
---|
| 298 | #endif |
---|
| 299 | |
---|
| 300 | void VectorObject::p_sort(PARAMPROCARGS) |
---|
| 301 | { |
---|
| 302 | #ifndef NO_VMACHINE |
---|
[746] | 303 | VMachine::JumpTargetObject *jto = VMachine::JumpTargetObject::fromObject(args->getObject(), false); |
---|
| 304 | if (jto) |
---|
[109] | 305 | { |
---|
[746] | 306 | VMVEComparator cmp(jto); |
---|
| 307 | ExtValue **first = (ExtValue**)&data.getref(0); |
---|
| 308 | std::sort(first, first + data.size(), cmp); |
---|
[109] | 309 | } |
---|
[746] | 310 | else |
---|
[109] | 311 | #endif |
---|
| 312 | { |
---|
[746] | 313 | VEComparator cmp; |
---|
| 314 | ExtValue **first = (ExtValue**)&data.getref(0); |
---|
| 315 | std::sort(first, first + data.size(), cmp); |
---|
[109] | 316 | } |
---|
[746] | 317 | ret->setEmpty(); |
---|
[109] | 318 | } |
---|
| 319 | |
---|
| 320 | void VectorObject::get_iterator(ExtValue* ret) |
---|
| 321 | { |
---|
[746] | 322 | ret->setObject(VectorIterator::makeFrom(this)); |
---|
[109] | 323 | } |
---|
| 324 | |
---|
[171] | 325 | VectorObject* VectorObject::fromObject(const ExtObject& o, bool warn) |
---|
[109] | 326 | { |
---|
[746] | 327 | return (VectorObject*)o.getTarget(par.getName(), true, warn); |
---|
[109] | 328 | } |
---|
| 329 | |
---|
| 330 | ///////////////////////////// |
---|
| 331 | |
---|
| 332 | void DictionaryObject::clear() |
---|
| 333 | { |
---|
[746] | 334 | for (HashEntryIterator it(hash); it.isValid();) |
---|
[109] | 335 | { |
---|
[746] | 336 | ExtValue *v = (ExtValue*)hash.remove(it); |
---|
| 337 | if (v) delete v; |
---|
[109] | 338 | } |
---|
[746] | 339 | hash.clear(); |
---|
| 340 | hash.init(); |
---|
[109] | 341 | } |
---|
| 342 | |
---|
| 343 | void DictionaryObject::p_find(PARAMPROCARGS) |
---|
| 344 | { |
---|
[746] | 345 | for (HashEntryIterator it(hash); it.isValid(); it++) |
---|
[109] | 346 | { |
---|
[852] | 347 | if (((ExtValue*)it->value) == NULL) |
---|
| 348 | { |
---|
| 349 | if (args->getType() != TUnknown) continue; |
---|
| 350 | ret->setString(it->key); |
---|
| 351 | return; |
---|
| 352 | } |
---|
[746] | 353 | if ((*args) == (*((ExtValue*)it->value))) |
---|
[109] | 354 | { |
---|
[746] | 355 | ret->setString(it->key); |
---|
| 356 | return; |
---|
[109] | 357 | } |
---|
| 358 | } |
---|
[746] | 359 | ret->setEmpty(); |
---|
[109] | 360 | } |
---|
| 361 | |
---|
| 362 | HashEntryIterator* DictionaryObject::getIndexIterator(int i) |
---|
| 363 | { |
---|
[746] | 364 | if (i < 0) return 0; |
---|
| 365 | if (i >= hash.getSize()) return 0; |
---|
[109] | 366 | |
---|
[746] | 367 | if ((!it.isValid()) || (it_index > i)) |
---|
[109] | 368 | { |
---|
[746] | 369 | it = HashEntryIterator(hash); |
---|
| 370 | it_index = 0; |
---|
[109] | 371 | } |
---|
[746] | 372 | while (it.isValid()) |
---|
[109] | 373 | { |
---|
[746] | 374 | if (it_index == i) |
---|
| 375 | return ⁢ |
---|
| 376 | it_index++; |
---|
| 377 | it++; |
---|
[109] | 378 | } |
---|
[746] | 379 | return 0; |
---|
[109] | 380 | } |
---|
| 381 | |
---|
| 382 | void DictionaryObject::p_remove(PARAMPROCARGS) |
---|
| 383 | { |
---|
[746] | 384 | if ((args->type == TInt) || (args->type == TDouble)) |
---|
[109] | 385 | { |
---|
[746] | 386 | HashEntryIterator* iter = getIndexIterator(args->getInt()); |
---|
| 387 | if (iter) |
---|
[109] | 388 | { |
---|
[746] | 389 | ExtValue *oldval = (ExtValue*)hash.remove(*iter); |
---|
| 390 | if (oldval) { *ret = *oldval; delete oldval; } |
---|
| 391 | else *ret = ExtValue(); |
---|
[109] | 392 | } |
---|
| 393 | } |
---|
[746] | 394 | else |
---|
[109] | 395 | { |
---|
[746] | 396 | ExtValue *oldval = (ExtValue*)hash.remove(args[0].getString()); |
---|
| 397 | if (oldval) { *ret = *oldval; delete oldval; } |
---|
| 398 | else *ret = ExtValue(); |
---|
[109] | 399 | } |
---|
| 400 | } |
---|
| 401 | |
---|
[478] | 402 | ExtValue DictionaryObject::get(SString key) |
---|
| 403 | { |
---|
[849] | 404 | int found = 0; |
---|
| 405 | ExtValue *val = (ExtValue*)hash.get(key, &found); |
---|
| 406 | if (found == 0) |
---|
| 407 | { |
---|
| 408 | logPrintf("Dictionary", "get", LOG_ERROR, "Key '%s' not found", key.c_str()); |
---|
| 409 | return ExtValue::invalid(); |
---|
| 410 | } |
---|
| 411 | else |
---|
| 412 | { |
---|
| 413 | if (val) |
---|
| 414 | return *val; |
---|
| 415 | return ExtValue::empty(); |
---|
| 416 | } |
---|
[478] | 417 | } |
---|
| 418 | |
---|
| 419 | ExtValue DictionaryObject::get(int index) |
---|
| 420 | { |
---|
[746] | 421 | HashEntryIterator* iter = getIndexIterator(index); |
---|
| 422 | if (iter && (*iter)->value) |
---|
| 423 | return *((ExtValue*)(*iter)->value); |
---|
| 424 | return ExtValue::empty(); |
---|
[478] | 425 | } |
---|
| 426 | |
---|
[109] | 427 | void DictionaryObject::p_get(PARAMPROCARGS) |
---|
| 428 | { |
---|
[746] | 429 | if ((args->type == TInt) || (args->type == TDouble)) |
---|
| 430 | *ret = get(args->getInt()); |
---|
| 431 | else |
---|
| 432 | *ret = get(args[0].getString()); |
---|
[109] | 433 | } |
---|
| 434 | |
---|
| 435 | void DictionaryObject::p_getKey(PARAMPROCARGS) |
---|
| 436 | { |
---|
[746] | 437 | HashEntryIterator* iter = getIndexIterator(args->getInt()); |
---|
| 438 | if (iter) |
---|
[109] | 439 | { |
---|
[746] | 440 | *ret = (*iter)->key; |
---|
| 441 | return; |
---|
[109] | 442 | } |
---|
[746] | 443 | *ret = ExtValue(); |
---|
[109] | 444 | } |
---|
| 445 | |
---|
[849] | 446 | void DictionaryObject::p_hasKey(PARAMPROCARGS) |
---|
| 447 | { |
---|
| 448 | int found = 0; |
---|
| 449 | hash.get(args->getString(), &found); |
---|
| 450 | ret->setInt(found); |
---|
| 451 | } |
---|
| 452 | |
---|
[746] | 453 | ExtValue DictionaryObject::set(SString key, ExtValue new_value) |
---|
[478] | 454 | { |
---|
[746] | 455 | ExtValue ret; |
---|
| 456 | ExtValue *new_ext = (new_value.getType() == TUnknown) ? NULL : new ExtValue(new_value); |
---|
| 457 | ExtValue *old_ext = (ExtValue*)hash.put(key, new_ext); |
---|
| 458 | if (old_ext) { ret = *old_ext; delete old_ext; } |
---|
| 459 | return ret; |
---|
[478] | 460 | } |
---|
| 461 | |
---|
[109] | 462 | void DictionaryObject::p_set(PARAMPROCARGS) |
---|
| 463 | { |
---|
[746] | 464 | *ret = set(args[1].getString(), args[0]); |
---|
[109] | 465 | } |
---|
| 466 | |
---|
[464] | 467 | SString DictionaryObject::serialize(SerializationFormat format) const |
---|
[109] | 468 | { |
---|
[746] | 469 | SString out = "{"; |
---|
[109] | 470 | { |
---|
[746] | 471 | for (HashEntryIterator it(hash); it.isValid();) |
---|
[109] | 472 | { |
---|
[746] | 473 | out += "\""; |
---|
| 474 | SString q = it->key; sstringQuote(q); |
---|
| 475 | out += q; |
---|
| 476 | out += "\":"; |
---|
| 477 | if (it->value != NULL) |
---|
| 478 | out += ((ExtValue*)it->value)->serialize(format); |
---|
| 479 | else |
---|
| 480 | out += "null"; |
---|
| 481 | it++; |
---|
| 482 | if (it.isValid()) out += ","; |
---|
[109] | 483 | } |
---|
| 484 | } |
---|
[746] | 485 | out += "}"; |
---|
| 486 | return out; |
---|
[109] | 487 | } |
---|
| 488 | |
---|
| 489 | void DictionaryObject::get_toString(ExtValue* ret) |
---|
| 490 | { |
---|
[746] | 491 | SString out = "{"; |
---|
| 492 | //static SListTempl<DictionaryObject*> trace; |
---|
| 493 | if (tlsGetRef(VectorObject_tostring_trace).find(this) >= 0) |
---|
| 494 | out += "..."; |
---|
| 495 | else |
---|
[109] | 496 | { |
---|
[746] | 497 | tlsGetRef(VectorObject_tostring_trace) += this; |
---|
| 498 | for (HashEntryIterator it(hash); it.isValid();) |
---|
[109] | 499 | { |
---|
[746] | 500 | out += it->key; |
---|
| 501 | out += ":"; |
---|
| 502 | if (it->value != NULL) |
---|
| 503 | out += ((ExtValue*)it->value)->getString(); |
---|
| 504 | else |
---|
| 505 | out += "null"; |
---|
| 506 | it++; |
---|
| 507 | if (it.isValid()) out += ","; |
---|
[109] | 508 | } |
---|
[746] | 509 | tlsGetRef(VectorObject_tostring_trace) -= this; |
---|
[109] | 510 | } |
---|
[746] | 511 | out += "}"; |
---|
| 512 | ret->setString(out); |
---|
[109] | 513 | } |
---|
| 514 | |
---|
[478] | 515 | void DictionaryObject::copyFrom(DictionaryObject *other) |
---|
[453] | 516 | { |
---|
[746] | 517 | for (HashEntryIterator it(other->hash); it.isValid(); it++) |
---|
[453] | 518 | { |
---|
[746] | 519 | ExtValue *v = (ExtValue*)it->value; |
---|
| 520 | hash.put(it->key, v ? new ExtValue(*v) : NULL); |
---|
[453] | 521 | } |
---|
[478] | 522 | } |
---|
| 523 | |
---|
| 524 | void DictionaryObject::p_clone(PARAMPROCARGS) |
---|
| 525 | { |
---|
[746] | 526 | DictionaryObject *c = new DictionaryObject; |
---|
| 527 | c->copyFrom(this); |
---|
| 528 | ret->setObject(ExtObject(&par, c)); |
---|
[453] | 529 | } |
---|
| 530 | |
---|
[478] | 531 | void DictionaryObject::p_assign(PARAMPROCARGS) |
---|
| 532 | { |
---|
[746] | 533 | clear(); |
---|
| 534 | DictionaryObject *other = DictionaryObject::fromObject(args[0].getObject(), false); |
---|
| 535 | if (other) |
---|
[478] | 536 | copyFrom(other); |
---|
[746] | 537 | ret->setEmpty(); |
---|
[478] | 538 | } |
---|
| 539 | |
---|
[171] | 540 | DictionaryObject* DictionaryObject::fromObject(const ExtObject& o, bool warn) |
---|
[109] | 541 | { |
---|
[746] | 542 | return (DictionaryObject*)o.getTarget(par.getName(), true, warn); |
---|
[109] | 543 | } |
---|
| 544 | |
---|
[868] | 545 | void DictionaryObject::get_iterator(ExtValue* ret) |
---|
| 546 | { |
---|
| 547 | ret->setObject(DictionaryIterator::makeFrom(this)); |
---|
| 548 | } |
---|
| 549 | |
---|
| 550 | void DictionaryObject::get_keys(ExtValue* ret) |
---|
| 551 | { |
---|
| 552 | ret->setObject(DictionaryIterator::makeFrom(this)); |
---|
| 553 | } |
---|
| 554 | |
---|
[109] | 555 | //////////////// |
---|
| 556 | |
---|
| 557 | VectorIterator::VectorIterator(VectorObject* v) |
---|
| 558 | { |
---|
[746] | 559 | vec = v; |
---|
| 560 | vec->incref(); |
---|
| 561 | pos = -1; |
---|
[109] | 562 | } |
---|
| 563 | |
---|
| 564 | #define FIELDSTRUCT VectorIterator |
---|
[746] | 565 | ParamEntry vectoriterator_paramtab[] = |
---|
[109] | 566 | { |
---|
[746] | 567 | { "VectorIterator", 1, 2, "VectorIterator", "VectorIterator" }, |
---|
| 568 | { "next", 0, PARAM_READONLY | PARAM_NOSTATIC, "next", "d 0 1", GETONLY(next), }, |
---|
| 569 | { "value", 0, PARAM_READONLY | PARAM_NOSTATIC, "value", "x", GETONLY(value), }, |
---|
| 570 | { 0, 0, 0, }, |
---|
[109] | 571 | }; |
---|
| 572 | #undef FIELDSTRUCT |
---|
| 573 | |
---|
| 574 | ExtObject VectorIterator::makeFrom(VectorObject *v) |
---|
| 575 | { |
---|
[746] | 576 | static Param par(vectoriterator_paramtab); |
---|
| 577 | return ExtObject(&par, new VectorIterator(v)); |
---|
[109] | 578 | } |
---|
| 579 | |
---|
| 580 | VectorIterator::~VectorIterator() |
---|
| 581 | { |
---|
[746] | 582 | vec->decref(); |
---|
[109] | 583 | } |
---|
| 584 | |
---|
| 585 | void VectorIterator::get_next(ExtValue* ret) |
---|
| 586 | { |
---|
[746] | 587 | pos++; |
---|
| 588 | ret->setInt((pos < vec->data.size()) ? 1 : 0); |
---|
[109] | 589 | } |
---|
| 590 | |
---|
| 591 | void VectorIterator::get_value(ExtValue* ret) |
---|
| 592 | { |
---|
[746] | 593 | ExtValue *v = (ExtValue*)(((pos >= 0) && (pos < vec->data.size())) ? vec->data(pos) : NULL); |
---|
| 594 | if (v) |
---|
| 595 | *ret = *v; |
---|
| 596 | else |
---|
| 597 | ret->setEmpty(); |
---|
[109] | 598 | } |
---|
[490] | 599 | |
---|
[868] | 600 | ///////////////// |
---|
| 601 | |
---|
| 602 | #define FIELDSTRUCT DictionaryIterator |
---|
| 603 | ParamEntry dictionaryiterator_paramtab[] = |
---|
| 604 | { |
---|
| 605 | { "DictionaryIterator", 1, 3, "DictionaryIterator", "DictionaryIterator" }, |
---|
| 606 | { "next", 0, PARAM_READONLY | PARAM_NOSTATIC, "next", "d 0 1", GETONLY(next), }, |
---|
| 607 | { "value", 0, PARAM_READONLY | PARAM_NOSTATIC, "value", "x", GETONLY(value), }, |
---|
| 608 | { "iterator", 0, PARAM_READONLY | PARAM_NOSTATIC, "keys iterator", "x", GETONLY(iterator), }, |
---|
| 609 | { 0, 0, 0, }, |
---|
| 610 | }; |
---|
| 611 | #undef FIELDSTRUCT |
---|
| 612 | |
---|
| 613 | DictionaryIterator::DictionaryIterator(DictionaryObject* d, bool _keys) |
---|
| 614 | :it(d->hash) |
---|
| 615 | { |
---|
| 616 | dic = d; |
---|
| 617 | dic->incref(); |
---|
| 618 | initial = true; |
---|
| 619 | keys = _keys; |
---|
| 620 | } |
---|
| 621 | |
---|
| 622 | ExtObject DictionaryIterator::makeFrom(DictionaryObject *d, bool _keys) |
---|
| 623 | { |
---|
| 624 | static Param par(dictionaryiterator_paramtab); |
---|
| 625 | return ExtObject(&par, new DictionaryIterator(d, _keys)); |
---|
| 626 | } |
---|
| 627 | |
---|
| 628 | DictionaryIterator::~DictionaryIterator() |
---|
| 629 | { |
---|
| 630 | dic->decref(); |
---|
| 631 | } |
---|
| 632 | |
---|
| 633 | void DictionaryIterator::get_next(ExtValue* ret) |
---|
| 634 | { |
---|
| 635 | if (initial) |
---|
| 636 | initial = false; |
---|
| 637 | else |
---|
| 638 | it++; |
---|
| 639 | ret->setInt(it.isValid()); |
---|
| 640 | } |
---|
| 641 | |
---|
| 642 | void DictionaryIterator::get_value(ExtValue* ret) |
---|
| 643 | { |
---|
| 644 | if ((!initial) && it.isValid()) |
---|
| 645 | { |
---|
| 646 | if (keys) |
---|
| 647 | { |
---|
| 648 | ret->setString(it->key); |
---|
| 649 | } |
---|
| 650 | else |
---|
| 651 | { |
---|
| 652 | ExtValue *v = (ExtValue*)it->value; |
---|
| 653 | if (v == NULL) |
---|
| 654 | ret->setEmpty(); |
---|
| 655 | else |
---|
| 656 | *ret = *v; |
---|
| 657 | } |
---|
| 658 | } |
---|
| 659 | else |
---|
| 660 | ret->setEmpty(); |
---|
| 661 | } |
---|
| 662 | |
---|
| 663 | void DictionaryIterator::get_iterator(ExtValue* ret) |
---|
| 664 | { |
---|
| 665 | ret->setObject(makeFrom(dic, true)); |
---|
| 666 | } |
---|
| 667 | |
---|
| 668 | ////////////// |
---|
| 669 | |
---|
[490] | 670 | // not actually needed for deserialization (vector and dict are special cases) but findDeserializableClass can be also used in other contexts |
---|
| 671 | REGISTER_DESERIALIZABLE(VectorObject) |
---|
| 672 | REGISTER_DESERIALIZABLE(DictionaryObject) |
---|