[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 | #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 | { |
---|
[746] | 52 | { "Dictionary", 1, 11, "Dictionary", "Dictionary associates stored values with string keys " |
---|
| 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" |
---|
| 67 | "\tfor(var i=0;i<d.size;i++) Simulator.print(d.getKey(i)+\" is \"+d.get(i));", |
---|
| 68 | }, |
---|
| 69 | { "clear", 0, PARAM_NOSTATIC, "Clear data", "p()", PROCEDURE(p_clear), }, |
---|
| 70 | { "size", 0, PARAM_NOSTATIC | PARAM_READONLY, "Element count", "d", GETONLY(size), }, |
---|
| 71 | { "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)." }, |
---|
| 72 | { "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). null is returned for nonexistent keys.\nobject.get(key) can be shortened to 'object[key]'" }, |
---|
| 73 | { "getKey", 0, PARAM_NOSTATIC, "Get a key", "p s(d index)", PROCEDURE(p_getKey), "Returns the key of the indexed element (0 <= index < size)" }, |
---|
| 74 | { "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" |
---|
| 75 | "Returns the value previously associated with the given key (or index).\n" |
---|
| 76 | "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" |
---|
| 77 | "Note the difference in the returned value:\n" |
---|
| 78 | " var old_value=object.set(\"key\",new_value); //'old_value' gets the value previously associated with \"key\"\n" |
---|
| 79 | " 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." }, |
---|
| 80 | { "find", 0, PARAM_NOSTATIC, "Find", "p x(x value)", PROCEDURE(p_find), "Returns the element key or null if not found." }, |
---|
| 81 | { "new", 0, 0, "Create a Dictionary", "p oDictionary()", STATICPROCEDURE(p_new), "Empty directory can be also created using the {} expression." }, |
---|
| 82 | { "toString", 0, PARAM_READONLY | PARAM_NOSTATIC, "Textual form", "s", GETONLY(toString), }, |
---|
| 83 | { "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));" }, |
---|
| 84 | { "assign", 0, PARAM_NOSTATIC, "Assign from another object", "p(x)", PROCEDURE(p_assign), "Replaces current dictionary with dictionary contents from another object." }, |
---|
[478] | 85 | |
---|
[746] | 86 | { 0, 0, 0, }, |
---|
[109] | 87 | }; |
---|
| 88 | #undef FIELDSTRUCT |
---|
| 89 | |
---|
| 90 | Param VectorObject::par(vector_paramtab); |
---|
| 91 | Param DictionaryObject::par(dictionary_paramtab); |
---|
| 92 | |
---|
| 93 | ///////////////////////////////////////// |
---|
| 94 | |
---|
| 95 | VectorObject::VectorObject(Pt3D &pt) |
---|
[746] | 96 | :readonly(0), owndata(1) |
---|
[109] | 97 | { |
---|
[746] | 98 | set_or_insert(0, ExtValue(pt.x), false); |
---|
| 99 | set_or_insert(1, ExtValue(pt.y), false); |
---|
| 100 | set_or_insert(2, ExtValue(pt.z), false); |
---|
[109] | 101 | } |
---|
| 102 | |
---|
| 103 | void VectorObject::clear() |
---|
| 104 | { |
---|
[746] | 105 | if (owndata) |
---|
| 106 | for (int i = data.size() - 1; i >= 0; i--) |
---|
| 107 | { |
---|
| 108 | ExtValue *v = (ExtValue*)data.get(i); |
---|
| 109 | if (v) delete v; |
---|
| 110 | } |
---|
| 111 | data.clear(); |
---|
[109] | 112 | } |
---|
| 113 | |
---|
| 114 | void VectorObject::p_remove(PARAMPROCARGS) |
---|
| 115 | { |
---|
[746] | 116 | if (readonly) return; |
---|
| 117 | int i = args->getInt(); |
---|
| 118 | if (!listIndexCheck(&data, i, "VectorObject", "remove")) return; |
---|
| 119 | ExtValue *v = (ExtValue*)data.get(i); |
---|
| 120 | if (v) delete v; |
---|
| 121 | data -= i; |
---|
[109] | 122 | } |
---|
| 123 | |
---|
[746] | 124 | void VectorObject::set_or_insert(int i, const ExtValue& val, bool insert) |
---|
[109] | 125 | { |
---|
[746] | 126 | if (i < 0) return; |
---|
| 127 | int oldsize = data.size(); |
---|
| 128 | if (i > oldsize) |
---|
[109] | 129 | { |
---|
[746] | 130 | data.setSize(i); |
---|
| 131 | while (i > oldsize) |
---|
| 132 | data.set(oldsize++, 0); |
---|
[109] | 133 | } |
---|
[746] | 134 | if (insert) |
---|
| 135 | data.insert(i, new ExtValue(val)); |
---|
| 136 | else |
---|
[642] | 137 | { |
---|
[746] | 138 | ExtValue *v = (ExtValue*)data.get(i); |
---|
| 139 | if (v) delete v; |
---|
| 140 | data.set(i, new ExtValue(val)); |
---|
[642] | 141 | } |
---|
[109] | 142 | } |
---|
| 143 | |
---|
| 144 | void VectorObject::p_get(PARAMPROCARGS) |
---|
| 145 | { |
---|
[746] | 146 | int i = args->getInt(); |
---|
| 147 | if (listIndexCheck(&data, i, "VectorObject", "get")) |
---|
[109] | 148 | { |
---|
[746] | 149 | ExtValue *v = get(i); |
---|
| 150 | if (v) |
---|
[109] | 151 | { |
---|
[746] | 152 | *ret = *v; |
---|
| 153 | return; |
---|
[109] | 154 | } |
---|
| 155 | } |
---|
[746] | 156 | *ret = ExtValue(); |
---|
[109] | 157 | } |
---|
| 158 | |
---|
| 159 | void VectorObject::get_avg(ExtValue* ret) |
---|
| 160 | { |
---|
[746] | 161 | if (!data.size()) { ret->setEmpty(); return; } |
---|
| 162 | double s = 0.0; |
---|
| 163 | for (int i = data.size() - 1; i >= 0; i--) |
---|
| 164 | s += ((ExtValue*)data.get(i))->getDouble(); |
---|
| 165 | s /= data.size(); |
---|
| 166 | ret->setDouble(s); |
---|
[109] | 167 | } |
---|
| 168 | |
---|
[464] | 169 | SString VectorObject::serialize(SerializationFormat format) const |
---|
[109] | 170 | { |
---|
[746] | 171 | SString out = "["; |
---|
[109] | 172 | { |
---|
[746] | 173 | for (int i = 0; i < data.size(); i++) |
---|
[109] | 174 | { |
---|
[746] | 175 | ExtValue* v = (ExtValue*)data.get(i); |
---|
| 176 | if (i) out += ","; |
---|
| 177 | if (v) |
---|
| 178 | out += v->serialize(format); |
---|
| 179 | else |
---|
| 180 | out += "null"; |
---|
[109] | 181 | } |
---|
| 182 | } |
---|
[746] | 183 | out += "]"; |
---|
| 184 | //sprintf(out.directAppend(20),"<Vector@%p>",this);out.endAppend(); |
---|
| 185 | return out; |
---|
[109] | 186 | } |
---|
| 187 | |
---|
[746] | 188 | static THREAD_LOCAL_DEF(SList, VectorObject_tostring_trace); |
---|
[109] | 189 | |
---|
| 190 | void VectorObject::get_toString(ExtValue* ret) |
---|
| 191 | { |
---|
[746] | 192 | SString out = "["; |
---|
| 193 | //static SListTempl<VectorObject*> trace; |
---|
| 194 | if (tlsGetRef(VectorObject_tostring_trace).find(this) >= 0) |
---|
| 195 | out += "..."; |
---|
| 196 | else |
---|
[109] | 197 | { |
---|
[746] | 198 | tlsGetRef(VectorObject_tostring_trace) += this; |
---|
| 199 | for (int i = 0; i < data.size(); i++) |
---|
[109] | 200 | { |
---|
[746] | 201 | ExtValue* v = (ExtValue*)data.get(i); |
---|
| 202 | if (i) out += ","; |
---|
| 203 | if (v) |
---|
| 204 | out += v->getString(); |
---|
| 205 | else |
---|
| 206 | out += "null"; |
---|
[109] | 207 | } |
---|
[746] | 208 | tlsGetRef(VectorObject_tostring_trace) -= this; |
---|
[109] | 209 | } |
---|
[746] | 210 | out += "]"; |
---|
| 211 | ret->setString(out); |
---|
[109] | 212 | } |
---|
| 213 | |
---|
| 214 | void VectorObject::get_stdev(ExtValue* ret) |
---|
| 215 | { |
---|
[746] | 216 | if (!data.size()) { ret->setEmpty(); return; } |
---|
| 217 | get_avg(ret); |
---|
| 218 | double a = ret->getDouble(); |
---|
| 219 | double s = 0.0; |
---|
| 220 | for (int i = data.size() - 1; i >= 0; i--) |
---|
[109] | 221 | { |
---|
[746] | 222 | double d = a - ((ExtValue*)data.get(i))->getDouble(); |
---|
| 223 | s += d*d; |
---|
[109] | 224 | } |
---|
[746] | 225 | ret->setDouble(sqrt(s / max(1, data.size() - 1))); |
---|
[109] | 226 | } |
---|
| 227 | |
---|
| 228 | void VectorObject::p_find(PARAMPROCARGS) |
---|
| 229 | { |
---|
[746] | 230 | short i; |
---|
| 231 | for (i = 0; i < data.size(); i++) |
---|
[109] | 232 | { |
---|
[746] | 233 | if ((*args) == (*get(i))) |
---|
| 234 | { |
---|
| 235 | ret->setInt(i); return; |
---|
| 236 | } |
---|
[109] | 237 | } |
---|
[746] | 238 | ret->setInt(-1); |
---|
[109] | 239 | } |
---|
| 240 | |
---|
[453] | 241 | void VectorObject::p_clone(PARAMPROCARGS) |
---|
| 242 | { |
---|
[746] | 243 | VectorObject *c = new VectorObject; |
---|
| 244 | c->data.setSize(data.size()); |
---|
| 245 | for (int i = 0; i < data.size(); i++) |
---|
[453] | 246 | { |
---|
[746] | 247 | ExtValue *v = (ExtValue*)get(i); |
---|
| 248 | if (v) |
---|
| 249 | c->data.set(i, new ExtValue(*v)); |
---|
[453] | 250 | } |
---|
[746] | 251 | ret->setObject(ExtObject(&par, c)); |
---|
[453] | 252 | } |
---|
| 253 | |
---|
[109] | 254 | class VEComparator |
---|
| 255 | { |
---|
| 256 | public: |
---|
[746] | 257 | bool operator()(const ExtValue *a, const ExtValue *b) { return a->compare(*b) == ExtValue::ResultLower; } |
---|
[109] | 258 | }; |
---|
| 259 | |
---|
| 260 | #ifndef NO_VMACHINE |
---|
| 261 | class VMVEComparator |
---|
| 262 | { |
---|
| 263 | public: |
---|
[746] | 264 | VMachine::JumpTargetObject *jto; |
---|
| 265 | VMachine *vm; |
---|
| 266 | VMVEComparator(VMachine::JumpTargetObject *_jto) :jto(_jto), vm(jto->vm) {} |
---|
| 267 | bool operator()(const ExtValue *a, const ExtValue *b); |
---|
[109] | 268 | }; |
---|
| 269 | |
---|
[746] | 270 | bool VMVEComparator::operator()(const ExtValue *a, const ExtValue *b) |
---|
[109] | 271 | { |
---|
[746] | 272 | if (!VMCode::prepareDynamicJumpTarget(jto->pc, jto->code)) |
---|
| 273 | return false; |
---|
[109] | 274 | |
---|
[746] | 275 | vm->push(*a); |
---|
| 276 | vm->push(*b); |
---|
| 277 | vm->pushNewCallState(); |
---|
| 278 | vm->jumpDynamicJumpTarget(jto->pc); |
---|
| 279 | vm->run(); |
---|
| 280 | vm->popCallState(); |
---|
| 281 | bool ret; |
---|
| 282 | ExtValue& retval = vm->getValue(); |
---|
| 283 | if (retval.type == TInvalid) |
---|
[109] | 284 | { |
---|
[746] | 285 | ret = false; |
---|
| 286 | logPrintf("VectorElementComparator", "", LOG_ERROR, "Comparison function returned no value"); |
---|
[109] | 287 | } |
---|
[746] | 288 | else |
---|
| 289 | ret = (retval.getInt() != 0); |
---|
| 290 | vm->drop(2); |
---|
| 291 | return ret; |
---|
[109] | 292 | } |
---|
| 293 | #endif |
---|
| 294 | |
---|
| 295 | void VectorObject::p_sort(PARAMPROCARGS) |
---|
| 296 | { |
---|
| 297 | #ifndef NO_VMACHINE |
---|
[746] | 298 | VMachine::JumpTargetObject *jto = VMachine::JumpTargetObject::fromObject(args->getObject(), false); |
---|
| 299 | if (jto) |
---|
[109] | 300 | { |
---|
[746] | 301 | VMVEComparator cmp(jto); |
---|
| 302 | ExtValue **first = (ExtValue**)&data.getref(0); |
---|
| 303 | std::sort(first, first + data.size(), cmp); |
---|
[109] | 304 | } |
---|
[746] | 305 | else |
---|
[109] | 306 | #endif |
---|
| 307 | { |
---|
[746] | 308 | VEComparator cmp; |
---|
| 309 | ExtValue **first = (ExtValue**)&data.getref(0); |
---|
| 310 | std::sort(first, first + data.size(), cmp); |
---|
[109] | 311 | } |
---|
[746] | 312 | ret->setEmpty(); |
---|
[109] | 313 | } |
---|
| 314 | |
---|
| 315 | void VectorObject::get_iterator(ExtValue* ret) |
---|
| 316 | { |
---|
[746] | 317 | ret->setObject(VectorIterator::makeFrom(this)); |
---|
[109] | 318 | } |
---|
| 319 | |
---|
[171] | 320 | VectorObject* VectorObject::fromObject(const ExtObject& o, bool warn) |
---|
[109] | 321 | { |
---|
[746] | 322 | return (VectorObject*)o.getTarget(par.getName(), true, warn); |
---|
[109] | 323 | } |
---|
| 324 | |
---|
| 325 | ///////////////////////////// |
---|
| 326 | |
---|
| 327 | void DictionaryObject::clear() |
---|
| 328 | { |
---|
[746] | 329 | for (HashEntryIterator it(hash); it.isValid();) |
---|
[109] | 330 | { |
---|
[746] | 331 | ExtValue *v = (ExtValue*)hash.remove(it); |
---|
| 332 | if (v) delete v; |
---|
[109] | 333 | } |
---|
[746] | 334 | hash.clear(); |
---|
| 335 | hash.init(); |
---|
[109] | 336 | } |
---|
| 337 | |
---|
| 338 | void DictionaryObject::p_find(PARAMPROCARGS) |
---|
| 339 | { |
---|
[746] | 340 | for (HashEntryIterator it(hash); it.isValid(); it++) |
---|
[109] | 341 | { |
---|
[746] | 342 | if ((*args) == (*((ExtValue*)it->value))) |
---|
[109] | 343 | { |
---|
[746] | 344 | ret->setString(it->key); |
---|
| 345 | return; |
---|
[109] | 346 | } |
---|
| 347 | } |
---|
[746] | 348 | ret->setEmpty(); |
---|
[109] | 349 | } |
---|
| 350 | |
---|
| 351 | HashEntryIterator* DictionaryObject::getIndexIterator(int i) |
---|
| 352 | { |
---|
[746] | 353 | if (i < 0) return 0; |
---|
| 354 | if (i >= hash.getSize()) return 0; |
---|
[109] | 355 | |
---|
[746] | 356 | if ((!it.isValid()) || (it_index > i)) |
---|
[109] | 357 | { |
---|
[746] | 358 | it = HashEntryIterator(hash); |
---|
| 359 | it_index = 0; |
---|
[109] | 360 | } |
---|
[746] | 361 | while (it.isValid()) |
---|
[109] | 362 | { |
---|
[746] | 363 | if (it_index == i) |
---|
| 364 | return ⁢ |
---|
| 365 | it_index++; |
---|
| 366 | it++; |
---|
[109] | 367 | } |
---|
[746] | 368 | return 0; |
---|
[109] | 369 | } |
---|
| 370 | |
---|
| 371 | void DictionaryObject::p_remove(PARAMPROCARGS) |
---|
| 372 | { |
---|
[746] | 373 | if ((args->type == TInt) || (args->type == TDouble)) |
---|
[109] | 374 | { |
---|
[746] | 375 | HashEntryIterator* iter = getIndexIterator(args->getInt()); |
---|
| 376 | if (iter) |
---|
[109] | 377 | { |
---|
[746] | 378 | ExtValue *oldval = (ExtValue*)hash.remove(*iter); |
---|
| 379 | if (oldval) { *ret = *oldval; delete oldval; } |
---|
| 380 | else *ret = ExtValue(); |
---|
[109] | 381 | } |
---|
| 382 | } |
---|
[746] | 383 | else |
---|
[109] | 384 | { |
---|
[746] | 385 | ExtValue *oldval = (ExtValue*)hash.remove(args[0].getString()); |
---|
| 386 | if (oldval) { *ret = *oldval; delete oldval; } |
---|
| 387 | else *ret = ExtValue(); |
---|
[109] | 388 | } |
---|
| 389 | } |
---|
| 390 | |
---|
[478] | 391 | ExtValue DictionaryObject::get(SString key) |
---|
| 392 | { |
---|
[746] | 393 | ExtValue *val = (ExtValue*)hash.get(key); |
---|
| 394 | if (val) |
---|
| 395 | return *val; |
---|
| 396 | return ExtValue::empty(); |
---|
[478] | 397 | } |
---|
| 398 | |
---|
| 399 | ExtValue DictionaryObject::get(int index) |
---|
| 400 | { |
---|
[746] | 401 | HashEntryIterator* iter = getIndexIterator(index); |
---|
| 402 | if (iter && (*iter)->value) |
---|
| 403 | return *((ExtValue*)(*iter)->value); |
---|
| 404 | return ExtValue::empty(); |
---|
[478] | 405 | } |
---|
| 406 | |
---|
[109] | 407 | void DictionaryObject::p_get(PARAMPROCARGS) |
---|
| 408 | { |
---|
[746] | 409 | if ((args->type == TInt) || (args->type == TDouble)) |
---|
| 410 | *ret = get(args->getInt()); |
---|
| 411 | else |
---|
| 412 | *ret = get(args[0].getString()); |
---|
[109] | 413 | } |
---|
| 414 | |
---|
| 415 | void DictionaryObject::p_getKey(PARAMPROCARGS) |
---|
| 416 | { |
---|
[746] | 417 | HashEntryIterator* iter = getIndexIterator(args->getInt()); |
---|
| 418 | if (iter) |
---|
[109] | 419 | { |
---|
[746] | 420 | *ret = (*iter)->key; |
---|
| 421 | return; |
---|
[109] | 422 | } |
---|
[746] | 423 | *ret = ExtValue(); |
---|
[109] | 424 | } |
---|
| 425 | |
---|
[746] | 426 | ExtValue DictionaryObject::set(SString key, ExtValue new_value) |
---|
[478] | 427 | { |
---|
[746] | 428 | ExtValue ret; |
---|
| 429 | ExtValue *new_ext = (new_value.getType() == TUnknown) ? NULL : new ExtValue(new_value); |
---|
| 430 | ExtValue *old_ext = (ExtValue*)hash.put(key, new_ext); |
---|
| 431 | if (old_ext) { ret = *old_ext; delete old_ext; } |
---|
| 432 | return ret; |
---|
[478] | 433 | } |
---|
| 434 | |
---|
[109] | 435 | void DictionaryObject::p_set(PARAMPROCARGS) |
---|
| 436 | { |
---|
[746] | 437 | *ret = set(args[1].getString(), args[0]); |
---|
[109] | 438 | } |
---|
| 439 | |
---|
[464] | 440 | SString DictionaryObject::serialize(SerializationFormat format) const |
---|
[109] | 441 | { |
---|
[746] | 442 | SString out = "{"; |
---|
[109] | 443 | { |
---|
[746] | 444 | for (HashEntryIterator it(hash); it.isValid();) |
---|
[109] | 445 | { |
---|
[746] | 446 | out += "\""; |
---|
| 447 | SString q = it->key; sstringQuote(q); |
---|
| 448 | out += q; |
---|
| 449 | out += "\":"; |
---|
| 450 | if (it->value != NULL) |
---|
| 451 | out += ((ExtValue*)it->value)->serialize(format); |
---|
| 452 | else |
---|
| 453 | out += "null"; |
---|
| 454 | it++; |
---|
| 455 | if (it.isValid()) out += ","; |
---|
[109] | 456 | } |
---|
| 457 | } |
---|
[746] | 458 | out += "}"; |
---|
| 459 | return out; |
---|
[109] | 460 | } |
---|
| 461 | |
---|
| 462 | void DictionaryObject::get_toString(ExtValue* ret) |
---|
| 463 | { |
---|
[746] | 464 | SString out = "{"; |
---|
| 465 | //static SListTempl<DictionaryObject*> trace; |
---|
| 466 | if (tlsGetRef(VectorObject_tostring_trace).find(this) >= 0) |
---|
| 467 | out += "..."; |
---|
| 468 | else |
---|
[109] | 469 | { |
---|
[746] | 470 | tlsGetRef(VectorObject_tostring_trace) += this; |
---|
| 471 | for (HashEntryIterator it(hash); it.isValid();) |
---|
[109] | 472 | { |
---|
[746] | 473 | out += it->key; |
---|
| 474 | out += ":"; |
---|
| 475 | if (it->value != NULL) |
---|
| 476 | out += ((ExtValue*)it->value)->getString(); |
---|
| 477 | else |
---|
| 478 | out += "null"; |
---|
| 479 | it++; |
---|
| 480 | if (it.isValid()) out += ","; |
---|
[109] | 481 | } |
---|
[746] | 482 | tlsGetRef(VectorObject_tostring_trace) -= this; |
---|
[109] | 483 | } |
---|
[746] | 484 | out += "}"; |
---|
| 485 | ret->setString(out); |
---|
[109] | 486 | } |
---|
| 487 | |
---|
[478] | 488 | void DictionaryObject::copyFrom(DictionaryObject *other) |
---|
[453] | 489 | { |
---|
[746] | 490 | for (HashEntryIterator it(other->hash); it.isValid(); it++) |
---|
[453] | 491 | { |
---|
[746] | 492 | ExtValue *v = (ExtValue*)it->value; |
---|
| 493 | hash.put(it->key, v ? new ExtValue(*v) : NULL); |
---|
[453] | 494 | } |
---|
[478] | 495 | } |
---|
| 496 | |
---|
| 497 | void DictionaryObject::p_clone(PARAMPROCARGS) |
---|
| 498 | { |
---|
[746] | 499 | DictionaryObject *c = new DictionaryObject; |
---|
| 500 | c->copyFrom(this); |
---|
| 501 | ret->setObject(ExtObject(&par, c)); |
---|
[453] | 502 | } |
---|
| 503 | |
---|
[478] | 504 | void DictionaryObject::p_assign(PARAMPROCARGS) |
---|
| 505 | { |
---|
[746] | 506 | clear(); |
---|
| 507 | DictionaryObject *other = DictionaryObject::fromObject(args[0].getObject(), false); |
---|
| 508 | if (other) |
---|
[478] | 509 | copyFrom(other); |
---|
[746] | 510 | ret->setEmpty(); |
---|
[478] | 511 | } |
---|
| 512 | |
---|
[171] | 513 | DictionaryObject* DictionaryObject::fromObject(const ExtObject& o, bool warn) |
---|
[109] | 514 | { |
---|
[746] | 515 | return (DictionaryObject*)o.getTarget(par.getName(), true, warn); |
---|
[109] | 516 | } |
---|
| 517 | |
---|
| 518 | //////////////// |
---|
| 519 | |
---|
| 520 | VectorIterator::VectorIterator(VectorObject* v) |
---|
| 521 | { |
---|
[746] | 522 | vec = v; |
---|
| 523 | vec->incref(); |
---|
| 524 | pos = -1; |
---|
[109] | 525 | } |
---|
| 526 | |
---|
| 527 | #define FIELDSTRUCT VectorIterator |
---|
[746] | 528 | ParamEntry vectoriterator_paramtab[] = |
---|
[109] | 529 | { |
---|
[746] | 530 | { "VectorIterator", 1, 2, "VectorIterator", "VectorIterator" }, |
---|
| 531 | { "next", 0, PARAM_READONLY | PARAM_NOSTATIC, "next", "d 0 1", GETONLY(next), }, |
---|
| 532 | { "value", 0, PARAM_READONLY | PARAM_NOSTATIC, "value", "x", GETONLY(value), }, |
---|
| 533 | { 0, 0, 0, }, |
---|
[109] | 534 | }; |
---|
| 535 | #undef FIELDSTRUCT |
---|
| 536 | |
---|
| 537 | ExtObject VectorIterator::makeFrom(VectorObject *v) |
---|
| 538 | { |
---|
[746] | 539 | static Param par(vectoriterator_paramtab); |
---|
| 540 | return ExtObject(&par, new VectorIterator(v)); |
---|
[109] | 541 | } |
---|
| 542 | |
---|
| 543 | VectorIterator::~VectorIterator() |
---|
| 544 | { |
---|
[746] | 545 | vec->decref(); |
---|
[109] | 546 | } |
---|
| 547 | |
---|
| 548 | void VectorIterator::get_next(ExtValue* ret) |
---|
| 549 | { |
---|
[746] | 550 | pos++; |
---|
| 551 | ret->setInt((pos < vec->data.size()) ? 1 : 0); |
---|
[109] | 552 | } |
---|
| 553 | |
---|
| 554 | void VectorIterator::get_value(ExtValue* ret) |
---|
| 555 | { |
---|
[746] | 556 | ExtValue *v = (ExtValue*)(((pos >= 0) && (pos < vec->data.size())) ? vec->data(pos) : NULL); |
---|
| 557 | if (v) |
---|
| 558 | *ret = *v; |
---|
| 559 | else |
---|
| 560 | ret->setEmpty(); |
---|
[109] | 561 | } |
---|
[490] | 562 | |
---|
| 563 | // not actually needed for deserialization (vector and dict are special cases) but findDeserializableClass can be also used in other contexts |
---|
| 564 | REGISTER_DESERIALIZABLE(VectorObject) |
---|
| 565 | REGISTER_DESERIALIZABLE(DictionaryObject) |
---|