From 9699dd16bfb03a42b70ba60869ed612deb019883 Mon Sep 17 00:00:00 2001 From: Yury Delendik Date: Wed, 3 Apr 2013 13:01:45 -0500 Subject: [PATCH] Disables cloning of the Dict --- src/obj.js | 59 +++++++++++++++++++++++++++++++----------------------- 1 file changed, 34 insertions(+), 25 deletions(-) diff --git a/src/obj.js b/src/obj.js index a6411830a..6b26406d6 100644 --- a/src/obj.js +++ b/src/obj.js @@ -52,59 +52,68 @@ var Cmd = (function CmdClosure() { })(); var Dict = (function DictClosure() { + var nonSerializable = function nonSerializableClosure() { + return nonSerializable; // creating closure on some variable + }; + // xref is optional function Dict(xref) { // Map should only be used internally, use functions below to access. - var map = Object.create(null); + this.map = Object.create(null); + this.xref = xref; + this.__nonSerializable__ = nonSerializable; // disable cloning of the Dict + } - this.assignXref = function Dict_assignXref(newXref) { - xref = newXref; - }; + Dict.prototype = { + assignXref: function Dict_assingXref(newXref) { + this.xref = newXref; + }, // automatically dereferences Ref objects - this.get = function Dict_get(key1, key2, key3) { + get: function Dict_get(key1, key2, key3) { var value; - if (typeof (value = map[key1]) != 'undefined' || key1 in map || + var xref = this.xref; + if (typeof (value = this.map[key1]) != 'undefined' || key1 in this.map || typeof key2 == 'undefined') { return xref ? xref.fetchIfRef(value) : value; } - if (typeof (value = map[key2]) != 'undefined' || key2 in map || + if (typeof (value = this.map[key2]) != 'undefined' || key2 in this.map || typeof key3 == 'undefined') { return xref ? xref.fetchIfRef(value) : value; } - value = map[key3] || null; + value = this.map[key3] || null; return xref ? xref.fetchIfRef(value) : value; - }; + }, // no dereferencing - this.getRaw = function Dict_getRaw(key) { - return map[key]; - }; + getRaw: function Dict_getRaw(key) { + return this.map[key]; + }, // creates new map and dereferences all Refs - this.getAll = function Dict_getAll() { + getAll: function Dict_getAll() { var all = {}; - for (var key in map) { + for (var key in this.map) { var obj = this.get(key); all[key] = obj instanceof Dict ? obj.getAll() : obj; } return all; - }; + }, - this.set = function Dict_set(key, value) { - map[key] = value; - }; + set: function Dict_set(key, value) { + this.map[key] = value; + }, - this.has = function Dict_has(key) { - return key in map; - }; + has: function Dict_has(key) { + return key in this.map; + }, - this.forEach = function Dict_forEach(callback) { - for (var key in map) { + forEach: function Dict_forEach(callback) { + for (var key in this.map) { callback(key, this.get(key)); } - }; - } + } + }; return Dict; })();