aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/core/deserializer.js
blob: 86cdc560da589cf7a5ad59e92b02d417cb83662b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
/* <copyright>
 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
 (c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
 </copyright> */

/**
    @module montage/core/deserializer
    @requires montage/core/core
    @requires montage/core/core/logger
    @requires montage/core/promise
*/

var Montage = require("montage").Montage,
    logger = require("core/logger").logger("deserializer"),
    Promise = require("core/promise").Promise;

// By rebinding eval to a new name, it loses its ability to
// capture the calling scope.
var globalEval = eval;
var canEval = true;

// CSP doesn't let you eval
try {
    eval("");
} catch(ex) {
    canEval = false;
}

/**
 @class module:montage/core/deserializer.Deserializer
 @extends module:montage/core/core.Montage
 */
var Deserializer = Montage.create(Montage, /** @lends module:montage/core/deserializer.Deserializer# */ {
    _MONTAGE_ID_ATTRIBUTE: {value: "data-montage-id"},

    _objects: {value: null},
   /**
  @private
*/
    _objectStack: {value: []},
    _modules: {value: {}},
 /**
  @private
*/
    _requiredModuleIds: {value: null},
    _objectLabels: {value: null},
/**
  @private
*/
    _serializationString: {value: null, enumerable: false},
 /**
  @private
*/
    _serialization: {value: null, enumerable: false},
 /**
  @private
*/
    _parseFunction: {value: null, enumerable: false},
 /**
  @private
*/
    _deserializationUnits: {value: []},
    // name -> function
/**
  @private
*/

    /**
      @private
    */
    // list of ids that were just created for optimization
    _optimizedIds: {value: Object.create(null)},

    _indexedDeserializationUnits: {value: {}},

    __sharedDocument: {
        value: null
    },

    _sharedDocument: {
        get: function() {
            return this.__cachedDoc ? this.__cachedDoc : (this.__cachedDoc = window.document.implementation.createHTMLDocument(""));
        }
    },
/**
  @private
*/
    _reset: {value: function() {
        this._serializationString = null;
        this._requiredModuleIds = null;
        this._areModulesLoaded = false;
        this._parseFunction = null;
        this._serialization = null;
        this._compiledDeserializationFunction = null;
        this._compiledDeserializationFunctionString = null;
        this._origin = null;
    }},

    /**
     Initializes the deserializer with a string
     @param {String|Object} serialization A string or JSON-style object
     describing the serialized objects.
     @param {Function} require The module loader for the containing package.
     @param {String} origin Usually a file name.
     */
    init: {
        value: function (serialization, require, origin) {
            if (typeof serialization !== "string") {
                serialization = JSON.stringify(serialization);
            }
            this._reset();
            this._serializationString = serialization;
            this._require = require;
            this._origin = origin;
            return this;
        }
    },

    /**
     Initializes the deserializer with a string of serialized objects.
     @function
     @param {String} string A string of serialized objects.
     @param {String} origin The origin of the serialization, usually a filename.
     @returns itself
     */
    initWithString: {value: function(string, origin) {
        this._reset();
        this._serializationString = string;
        this._origin = origin;
        return this;
    }},
    /**
    Initializes the deserializer object with an object representing a serialization. Since the serialization is a JSON string it is also possible to represent it in a JavaScript object.
    @function
    @param {object} object The serialization in JavaScript object form.
    @returns itself
    */
    initWithObject: {value: function(object) {
        this._reset();
        this._serializationString = JSON.stringify(object);
        return this;
    }},

    initWithObjectAndRequire: {value: function(object, require, origin) {
        this._reset();
        this._serializationString = JSON.stringify(object);
        this._require = require;
        this._origin = origin;
        return this;
    }},

    /**
     Initializes the deserializer object with a serialization string and the require object used to load the modules containing the object's prototypes.
     @function
     @param {string} string The serialization string.
     @param {function} require The require function to load the modules.
     @param {string} origin The origin of the serialization, usually a filename.
     @returns itself
     */
    initWithStringAndRequire: {value: function(string, require, origin) {
        this._reset();
        this._serializationString = string;
        this._require = require;
        this._origin = origin;
        return this;
    }},

    /**
     Defines a deserialization unit for an object.
     @function
     @param {string} name The unit name.
     @param {function} funktion The delegate function that reads the serialization unit and deserializes its content into the object being deserialized. This function accepts the object being deserialized and the serialized unit as arguments.
     */
    defineDeserializationUnit: {value: function(name, funktion) {
        this._deserializationUnits.push({
            name: name,
            funktion: this._indexedDeserializationUnits[name] = funktion
        });
    }},

    /**
     Returns an array with all the objects that were created or used during the call to deserializeWith* functions.
     @function
     @returns {Array} The array of objects.
     */
    getObjectsFromLastDeserialization: {value: function() {
        var objects = this._objects;
        var objectsArray = [];

        for (var key in objects) {
            if (objects.hasOwnProperty(key)) {
                objectsArray.push(objects[key]);
            }
        }

        return objectsArray;
    }},

    chainDeserializer: {
        value: function(deserializer) {
            var chainedSerializations = this._chainedSerializations,
                optimizedIds, chainedOptimizedIds;

            if (!chainedSerializations) {
                this._chainedSerializations = chainedSerializations = [];
            }

            chainedSerializations.push({
                string: deserializer._serializationString,
                compiledFunction: deserializer._compiledDeserializationFunction,
                compiledFunctionString: deserializer._compiledDeserializationFunctionString
            });

            // need to copy the optimized ids too, ideally all chained templates are optimized for the same document
            chainedOptimizedIds = deserializer._optimizedIds;
            if (chainedOptimizedIds) {
                if (!optimizedIds) {
                    this._optimizedIds = optimizedIds = {};
                }
                for (var id in chainedOptimizedIds) {
                    optimizedIds[id] = chainedOptimizedIds[id];
                }
            }
        }
    },

    /**
     This function is to be used in the context of deserializeProperties delegate used for custom object deserializations.
     It reads an entry from the "properties" serialization unit of the object being deserialized.
     @function
     @param {string} name The name of the entry to be read.
     @returns {*} The value of the entry
     */
    get: {value: function(name) {
        var stack = this._objectStack;
        var ix = stack.length - 1;

        return stack[ix][name];
    }},

    deserializeProperties: {
        value: function() {
            var stack = this._objectStack,
                ix = stack.length - 1,
                object = stack[ix-1],
                desc = stack[ix];

            this._deserializeProperties(object, desc.properties, false);
        }
    },

    getProperty: {
        value: function(name) {
            var stack = this._objectStack,
                ix = stack.length - 1,
                desc = stack[ix];

            return desc.properties[name];
        }
    },

    deserializeUnits: {
        value: function() {
            var stack = this._objectStack,
                ix = stack.length - 1,
                desc = stack[ix];

            desc._units = this._indexedDeserializationUnits;
        }
    },

    deserializeUnit: {
        value: function(name) {
            var stack = this._objectStack,
                ix = stack.length - 1,
                desc = stack[ix],
                units;

            if (desc._units) {
                units = desc._units;
            } else {
                desc._units = units = {};
            }

            units[name] = this._indexedDeserializationUnits[name];
        }
    },

    getType: {
        value: function() {
            var stack = this._objectStack,
                ix = stack.length - 1,
                desc = stack[ix];

            return "object" in desc ? "object" : ("prototype" in desc ? "prototype" : null);
        }
    },

    getTypeValue: {
        value: function() {
            var stack = this._objectStack,
                ix = stack.length - 1,
                desc = stack[ix];

            return desc.object || desc.prototype;
        }
    },

    getObjectByLabel: {
        value: function(label) {
            return this._objects[label] || this._objectLabels[label];
        }
    },

    _customDeserialization: {
        enumerable: false,
        value: function(object, desc) {
            this._pushContextObject(object);
            this._pushContextObject(desc);
            object.deserializeSelf(this);
            this._popContextObject();
            this._popContextObject();
        }
    },

    /**
    This function is to be used in the context of deserializeProperties delegate used for custom object deserializations.
     It deserializes all the named properties of a serialized object into the object given.
    @function
    @param {Object} object The target of the properties.
    @param {Array} properties The property names to be deserialized.
    */
    deserializePropertiesForObject: {value: function(object, properties, checkSerializableAttribute) {
        if (checkSerializableAttribute) {
            for (var key in properties) {
                if (!Montage.getPropertyAttribute(object, key, "serializable")) {
                    if (Object.getPropertyDescriptor(object, key)) {
                        console.warn("Unserializable property \"" + key + "\" found in the serialization of " + (object._montage_metadata ? object._montage_metadata.objectName : object) + " (" + (this._origin || window.location) + ")");
                    } else {
                        console.warn("Nonexistent (and therefore unserializable) property \"" + key + "\" found in the serialization of " + (object._montage_metadata ? object._montage_metadata.objectName : object) + " (" + (this._origin || window.location) + ")");
                    }
                };
                object[key] = properties[key];
            }
        } else {
            for (var key in properties) {
                object[key] = properties[key];
            }
        }
    }},

    /**
    The function works on the top most object of an object stack.<br>
    This method pushes an object to that stack making it the target of future calls.
    @function
    @param {object} object The object to push into the stack.
    @private
     */
    _pushContextObject: {value: function(object) {
        this._objectStack.push(object);
    }},

    /**
     The function works on the top most object of an object stack.<br>
     This method pops the top most object out of that stack making future calls to target the next object in the stack.
     @function
     @returns {object} The top most object in the stack.
     @private
     */
    _popContextObject: {value: function() {
        return this._objectStack.pop();
    }},
/**
  @private
*/
    _require: {
        enumerable: false,
        value: null
    },
/**
  @private
*/
    _defaultModuleLoader: {
        enumerable: false,
        value: function(moduleIds, callback) {
            if (typeof require !== "function") {
                logger.error("Deserializer: The default module loader needs the global require function to be defined.");
                return;
            }

            var modulesLoaded = 0,
                modules = {},
                _require = this._require;

            moduleIds.forEach(function(moduleId) {
                if (callback) {
                    Promise.when(_require.async(moduleId),
                        function(module) {
                            modules[moduleId] = module;
                            if (++modulesLoaded === moduleIds.length) {
                                callback(modules);
                            }
                        },
                        function(reason, error) {
                            console.log(error.stack);
                        }
                    );
                } else {
                    modules[moduleId] = _require(moduleId);
                }
            });

            if (!callback) {
                return modules;
            }
        }
    },

    /**
     Load modules.
     @param {Array} moduleIds The module ids to be loaded.
     @param {Function} callback The function to invoke when the modules are all loaded, passing this parameter makes this function asynchronous.
     @private
     */
    _areModulesLoaded: {value: false},
 /**
  @private
*/
    _areModulesLoading: {value: false},
/**
  @private
*/
    ___loadModulesCallbacks: {value: null},
/**
  @private
*/
    _loadModules: {
        enumerable: false,
        value: function(moduleIds, callback) {
            if (this._areModulesLoaded || moduleIds.length === 0) {
                if (callback) {
                    callback();
                }
            } else if (this._areModulesLoading) {
                this.___loadModulesCallbacks.push(callback);
            } else {
                var self = this;
                var moduleLoader = this._moduleLoader || this._defaultModuleLoader;

                this.___loadModulesCallbacks = [callback];
                this._areModulesLoading = true;
                // will add it as a Deserializer property if it's needed in the future (saves a closure creation for setting the "this")
                function addModules(newModules) {
                    var modules = self._modules;

                    if (!modules) {
                        modules = self._modules = {};
                    }
                    for (var moduleId in newModules) {
                        if (newModules.hasOwnProperty(moduleId)) {
                            modules[moduleId] = newModules[moduleId];
                        }
                    }

                    self._areModulesLoaded = true;
                    self._areModulesLoading = false;
                    self.___loadModulesCallbacks.forEach(function(callback) {
                        if (callback) {
                            callback();
                        }
                    });
                    self.___loadModulesCallbacks = null;
                }

                if (callback) {
                    moduleLoader.call(this, moduleIds, addModules);
                } else {
                    addModules(moduleLoader.call(this, moduleIds));
                }
            }
        }
    },
/**
  @private
*/
    _prepareForDeserialization: {value: function(callback) {
        if (this._areModulesLoaded) {
            return callback();
        }

        if (!this._compiledDeserializationFunctionString) {
            try {
                this._serialization = JSON.parse(this._serializationString);
            } catch (ex) {
                if (logger.isError) {
                    this._reportParseError(this._serializationString, this._origin);
                    return callback();
                }
            }
            this._parseForModules();
        }

        if (this._requiredModuleIds.length > 0) {
            this._loadModules(this._requiredModuleIds, callback);
        } else {
            this._areModulesLoaded = true;
            return callback();
        }
    }},

    /**
     Sets the module loader used during deserialization.
     @function
     @param {Function} loader The function that will load all module's found in the Array. The Array is composed of module id's to be loaded. When all modules are loaded the callback function should be invoked with an object that maps each module id to its corresponding module object, (e.g.: {"montage/ui/component": <the component module>}).
     */
    setModuleLoader: {value: function(loader) {
        this._moduleLoader = loader;
    }},
/**
  @private
*/
    _findObjectNameRegExp: {
        value: /([^\/]+?)(\.reel)?$/
    },
    _toCamelCaseRegExp: {
        value: /(?:^|-)([^-])/g
    },
    _replaceToCamelCase: {
        value: function(_, g1) { return g1.toUpperCase() }
    },
    _parseForModules: {value: function() {
        var serialization = this._serialization,
            moduleIds = this._requiredModuleIds = [],
            modules = this._modules,
            desc, moduleId, name, objectLocation;

        for (var label in serialization) {
            desc = serialization[label];
            moduleId = null;

            if ("module" in desc) {
                moduleId = desc.module;
            } else if ("prototype" in desc || "object" in desc) {
                name = desc.prototype || desc.object
                objectLocation = name.split("[");
                moduleId = objectLocation[0];
                desc.module = moduleId;
                if (objectLocation.length == 2) {
                    desc.name = objectLocation[1].slice(0, -1);
                } else {
                    this._findObjectNameRegExp.test(moduleId);
                    desc.name = RegExp.$1.replace(this._toCamelCaseRegExp, this._replaceToCamelCase);
                }
            }

            if (moduleId && !modules[moduleId] && moduleIds.indexOf(moduleId) == -1) {
                moduleIds.push(moduleId);
            }
        }
    }},
/**
  @private
*/
    _compile: {value: function() {
        this._prepareForDeserialization();
        this._compileAndDeserialize();
        return this._compiledDeserializationFunctionString;
    }},

    /**
     * Optimizes the current serialization for a specific document.
     * @function
     * @param {Document} doc The document to optimize against, this document can be modified during optimization.
    */
    optimizeForDocument: {
        value: function(doc) {
            var idAttributeName = Deserializer._MONTAGE_ID_ATTRIBUTE,
                elements = doc.querySelectorAll('*[' + idAttributeName + ']'),
                ids = this._optimizedIds = Object.create(null);

            for (var i = 0, element; (element = elements[i]); i++) {
                if (!element.id) {
                    var attribute = element.getAttribute(idAttributeName);
                    element.setAttribute("id", ids[attribute] = "_" + idAttributeName + "_" + attribute);
                }
            }
        }
    },

    _labelRegexp: {
        enumerable: false,
        value: /^[a-zA-Z_$][0-9a-zA-Z_$]*$/
    },

/**
  @private
*/
    _compileAndDeserialize: {value: function(element, serialization, exports, deserialize) {
        var self = this,
            exportsStrings = "",
            unitsStrings = "",
            objectsStrings = "",
            cleanupStrings = "",
            valueString,
            deserialized = {},
            modules = this._modules,
            idsToRemove = [],
            optimizedIds = this._optimizedIds,
            compiledDeserializationFunctionString,
            requireStrings = [],
            objectNamesCounter = {},
            label,
            labelRegexp = this._labelRegexp;

        if (canEval) {
            serialization = this._serialization;
        } else {
            serialization = JSON.parse(this._serializationString);
        }

        for (label in serialization) {
            if (!labelRegexp.test(label)) {
                logger.error("Invalid label format '" + label + "' " + (this._origin ? " in " + this._origin : ""));
                throw "Invalid label format: " + label;
            }
            var objectDesc = serialization[label];

            if (label in deserialized) {
                // already deserialized, in a reference most likely
                continue;
            }

            if ("value" in objectDesc) {
                valueString = deserializeValue(objectDesc.value, objectDesc, "value");
                exportsStrings += 'var ' + label + ' = exports.' + label + ' = ' + valueString + ';\n';
                if (deserialize) {
                    exports[label] = objectDesc.value;
                    deserialized[label] = true;
                }
                // kind of lame but it's just to prevent the need to check whether it's a value or an object in the next serialization loop to deserialize the units.
                delete serialization[label];
            } else {
                deserializeObject(label, objectDesc);
            }
        }

        if (deserialize) {
            for (label in serialization) {
                self._deserializeUnits(exports[label], serialization[label]);
            }
            for (label in serialization) {
                delete exports[label].isDeserializing;
            }
        }

        if (idsToRemove.length > 0) {
            cleanupStrings += 'element.getElementById("' + idsToRemove.join('").removeAttribute("id");\nelement.getElementById("') + '").removeAttribute("id");';
            for (var i = 0, id; (id = idsToRemove[i]); i++) {
                element.getElementById(idsToRemove[i]).removeAttribute("id");
            }
        }

        if (canEval) {
            compiledDeserializationFunctionString = "(function() {\n" + requireStrings.join("\n") + "\nreturn function(element, exports) {\n" + exportsStrings + "\n\n" + objectsStrings + "\n\n" + unitsStrings + "\n\n" + cleanupStrings + "\nreturn exports;\n}}).call(this)";
        }
        if (logger.isDebug) {
            logger.debug(compiledDeserializationFunctionString);
        }

        return compiledDeserializationFunctionString;