-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
1933 lines (1639 loc) · 69.2 KB
/
index.js
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
/* Copyright 2011-2012 Sam Elsamman
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/*
* ObjectTemplate - n Type System with Benefits
*/
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define([], factory);
}
else if (typeof exports === 'object') {
module.exports = factory();
}
else {
root.ObjectTemplate = factory();
}
}(this, function () {
function ObjectTemplate() {
}
/**
* Purpose unknown
*/
ObjectTemplate.performInjections = function performInjections() {
this.getClasses();
if (this.__templatesToInject__) {
var objectTemplate = this;
for (var templateName in this.__templatesToInject__) {
var template = this.__templatesToInject__[templateName];
template.inject = function inject(injector) {
objectTemplate.inject(this, injector);
};
this._injectIntoTemplate(template);
}
}
};
/**
* Purpose unknown
*/
ObjectTemplate.init = function () {
this.__templateUsage__ = {};
this.__injections__ = [];
this.__dictionary__ = {};
this.__anonymousId__ = 1;
this.__templatesToInject__ = {};
this.logger = this.createLogger(); // Create a default logger
};
/**
* Purpose unknown
*
* @param {unknown} name unknown
*
* @returns {unknown}
*/
ObjectTemplate.getTemplateByName = function getTemplateByName(name) {
return this.getClasses()[name];
};
/**
* Purpose unknown
*
* @param {unknown} props unknown
*
* @returns {unknown}
*/
ObjectTemplate.getTemplateProperties = function getTemplateProperties(props) {
var templateProperties = {};
if (ObjectTemplate.__toClient__ == false) {
props.toClient = false;
}
if (processProp(props.isLocal, this.isLocalRuleSet)) {
props.toServer = false;
props.toClient = false;
}
templateProperties.__toClient__ = processProp(props.toClient, this.toClientRuleSet) != false;
templateProperties.__toServer__ = processProp(props.toServer, this.toServerRuleSet) != false;
return templateProperties;
/**
* Allow the property to be either a boolean a function that returns a boolean or a string
* matched against a rule set array of string in ObjectTemplate
*
* @param {unknown} prop unknown
* @param {unknown} ruleSet unknown
*
* @returns {function(this:ObjectTemplate)}
*/
function processProp(prop, ruleSet) {
var ret = null;
if (typeof(prop) === 'function') {
ret = prop.call(ObjectTemplate);
}
else if (typeof(prop) === 'string') {
ret = false;
if (ruleSet) {
ruleSet.map(function i(rule) {
if (!ret) {
ret = rule == prop;
}
});
}
}
else if (prop instanceof Array) {
prop.forEach(function h(prop) {
ret = ret || processProp(prop, ruleSet);
});
}
else {
ret = prop;
}
return ret;
}
};
/**
* Purpose unknown
*
* @param {unknown} template unknown
* @param {unknown} name unknown
* @param {unknown} props unknown
*/
ObjectTemplate.setTemplateProperties = function setTemplateProperties(template, name, props) {
this.__templatesToInject__[name] = template;
this.__dictionary__[name] = template;
template.__name__ = name;
template.__injections__ = [];
template.__objectTemplate__ = this;
template.__children__ = [];
template.__toClient__ = props.__toClient__;
template.__toServer__ = props.__toServer__;
};
/**
* Create and object template that is instantiated with the new operator.
* properties is
*
* @param {unknown} name the name of the template or an object with
* name - the name of the class
* toClient - whether the object is to be shipped to the client (with semotus)
* toServer - whether the object is to be shipped to the server (with semotus)
* isLocal - equivalent to setting toClient && toServer to false
* @param {unknown} properties an object whose properties represent data and function
* properties of the object. The data properties may use the defineProperty
* format for properties or may be properties assigned a Number, String or Date.
*
* @returns {*} the object template
*/
ObjectTemplate.create = function create(name, properties) {
if (name && name.name) {
var props = name;
name = props.name;
}
else {
props = {};
}
if (typeof(name) !== 'string' || name.match(/[^A-Za-z0-9_]/)) {
throw new Error('incorrect template name');
}
if (typeof(properties) !== 'object') {
throw new Error('missing template property definitions');
}
var createProps = this.getTemplateProperties(props);
if (typeof(this.templateInterceptor) === 'function') {
this.templateInterceptor('create', name, properties);
}
var template;
if (properties) {
template = this._createTemplate(null, Object, properties, createProps, name);
}
else {
template = this._createTemplate(null, Object, name, createProps, name);
}
this.setTemplateProperties(template, name, createProps);
template.__createProps__ = props;
return template;
};
/**
* Extend and existing (parent template)
*
* @param {unknown} parentTemplate unknown
* @param {unknown} name the name of the template or an object with
* name - the name of the class
* toClient - whether the object is to be shipped to the client (with semotus)
* toServer - whether the object is to be shipped to the server (with semotus)
* isLocal - equivalent to setting toClient && toServer to false
* @param {unknown} properties are the same as for create
*
* @returns {*} the object template
*/
ObjectTemplate.extend = function extend(parentTemplate, name, properties) {
var props;
var createProps;
if (!parentTemplate.__objectTemplate__) {
throw new Error('incorrect parent template');
}
if (typeof(name) !== 'undefined' && name.name) {
props = name;
name = props.name;
}
else {
props = parentTemplate.__createProps__;
}
if (typeof(name) !== 'string' || name.match(/[^A-Za-z0-9_]/)) {
throw new Error('incorrect template name');
}
if (typeof(properties) !== 'object') {
throw new Error('missing template property definitions');
}
var existingTemplate = this.__dictionary__[name];
if (existingTemplate) {
if (existingTemplate.__parent__ != parentTemplate) {
if (existingTemplate.__parent__.__name__ != parentTemplate.__name__) {
// eslint-disable-next-line no-console
console.log('WARN: Attempt to extend ' + parentTemplate.__name__ + ' as ' + name + ' but ' + name + ' was already extended from ' + existingTemplate.__parent__.__name__);
}
}
else {
this.mixin(existingTemplate, properties);
return existingTemplate;
}
}
if (props) {
createProps = this.getTemplateProperties(props);
}
if (typeof(this.templateInterceptor) === 'function') {
this.templateInterceptor('extend', name, properties);
}
var template;
if (properties) {
template = this._createTemplate(null, parentTemplate, properties, parentTemplate, name);
}
else {
template = this._createTemplate(null, parentTemplate, name, parentTemplate, name);
}
if (createProps) {
this.setTemplateProperties(template, name, createProps);
}
else {
this.setTemplateProperties(template, name, parentTemplate);
}
template.__createProps__ = props;
// Maintain graph of parent and child templates
template.__parent__ = parentTemplate;
parentTemplate.__children__.push(template);
return template;
};
/**
* Mix in addition properties into a template
*
* @param {unknown} template to mix into
* @param {unknown} properties are the same as for create
*
* @returns {*} the template with the new properties mixed in
*/
ObjectTemplate.mixin = function mixin(template, properties) {
if (typeof(this.templateInterceptor) === 'function') {
this.templateInterceptor('create', template.__name__, properties);
}
return this._createTemplate(template, null, properties, template, template.__name__);
};
/**
* Purpose unknown
*
* @param {unknown} template unknown
* @param {unknown} properties unknown
*/
ObjectTemplate.staticMixin = function staticMixin(template, properties) {
for (var prop in properties) {
template[prop] = properties[prop];
}
};
/**
* Add a function that will fire on object creation
*
* @param {unknown} template unknown
* @param {unknown} injector unknown
*/
ObjectTemplate.inject = function inject(template, injector) {
template.__injections__.push(injector);
};
/**
* Purpose unknown
*
* @param {unknown} injector - unknown
*/
ObjectTemplate.globalInject = function globalInject(injector) {
this.__injections__.push(injector);
};
/**
* Create the template if it needs to be created
* @param [unknown} template to be created
*/
ObjectTemplate.createIfNeeded = function createTemplate (template, thisObj) {
if (template.__createParameters__) {
var createParameters = template.__createParameters__;
for (var ix = 0; ix < createParameters.length; ++ix) {
var params = createParameters[ix];
template.__createParameters__ = undefined;
this._createTemplate(params[0], params[1], params[2], params[3], params[4], true);
}
if (template._injectProperties) {
template._injectProperties();
}
if (thisObj) {
//var copy = new template();
var prototypes = [template.prototype];
var parent = template.__parent__;
while (parent) {
prototypes.push(parent.prototype);
parent = parent.__parent__;
}
for (var ix = prototypes.length - 1; ix >= 0; --ix) {
var props = Object.getOwnPropertyNames(prototypes[ix]);
props.forEach(function (val, ix) {
Object.defineProperty(thisObj, props[ix], Object.getOwnPropertyDescriptor(prototypes[ix], props[ix]));
});
}
thisObj.__proto__ = template.prototype;
}
}
};
/**
* General function to create templates used by create, extend and mixin
*
* @param {unknown} mixinTemplate - template used for a mixin
* @param {unknown} parentTemplate - template used for an extend
* @param {unknown} propertiesOrTemplate - properties to be added/mxied in
* @param {unknown} createProperties unknown
* @param {unknown} templateName - the name of the template as it will be stored retrieved from dictionary
*
* @returns {Function}
*
* @private
*/
ObjectTemplate._createTemplate = function createTemplate (mixinTemplate, parentTemplate, propertiesOrTemplate, createProperties, templateName, createTemplateNow) {
// We will return a constructor that can be used in a new function
// that will call an init() function found in properties, define properties using Object.defineProperties
// and make copies of those that are really objects
var functionProperties = {}; // Will be populated with init function from properties
var objectProperties = {}; // List of properties to be processed by hand
var defineProperties = {}; // List of properties to be sent to Object.defineProperties()
var objectTemplate = this;
var templatePrototype;
function F () {} // Used in case of extend
if (!this.lazyTemplateLoad) {
createTemplateNow = true;
}
// Setup variables depending on the type of call (create, extend, mixin)
if (createTemplateNow) {
if (mixinTemplate) { // Mixin
this.createIfNeeded(mixinTemplate);
if (propertiesOrTemplate.isObjectTemplate) {
this.createIfNeeded(propertiesOrTemplate);
for (var prop in propertiesOrTemplate.defineProperties) {
mixinTemplate.defineProperties[prop] = propertiesOrTemplate.defineProperties[prop];
}
for (var propp in propertiesOrTemplate.objectProperties) {
mixinTemplate.objectProperties[propp] = propertiesOrTemplate.objectProperties[propp];
}
for (var propo in propertiesOrTemplate.functionProperties) {
if (propo == 'init') {
mixinTemplate.functionProperties.init = mixinTemplate.functionProperties.init || [];
for (var ix = 0; ix < propertiesOrTemplate.functionProperties.init.length; ++ix) {
mixinTemplate.functionProperties.init.push(propertiesOrTemplate.functionProperties.init[ix]);
}
}
else {
mixinTemplate.functionProperties[propo] = propertiesOrTemplate.functionProperties[propo];
}
}
for (var propn in propertiesOrTemplate.prototype) {
var propDesc = Object.getOwnPropertyDescriptor(propertiesOrTemplate.prototype, propn);
if (propDesc) {
Object.defineProperty(mixinTemplate.prototype, propn, propDesc);
if (propDesc.get) {
Object.getOwnPropertyDescriptor(mixinTemplate.prototype, propn).get.sourceTemplate = propDesc.get.sourceTemplate;
}
}
else {
mixinTemplate.prototype[propn] = propertiesOrTemplate.prototype[propn];
}
}
mixinTemplate.props = {};
var props = ObjectTemplate._getDefineProperties(mixinTemplate, undefined, true);
for (var propm in props) {
mixinTemplate.props[propm] = props[propm];
}
return mixinTemplate;
}
else {
defineProperties = mixinTemplate.defineProperties;
objectProperties = mixinTemplate.objectProperties;
functionProperties = mixinTemplate.functionProperties;
templatePrototype = mixinTemplate.prototype;
parentTemplate = mixinTemplate.parentTemplate;
}
}
else { // Extend
this.createIfNeeded(parentTemplate);
F.prototype = parentTemplate.prototype;
templatePrototype = new F();
}
}
/**
* Constructor that will be returned will only ever be created once
*/
var template = this.__dictionary__[templateName] || function template() {
objectTemplate.createIfNeeded(template, this);
objectTemplate.__templateUsage__[template.__name__] = true;
var parent = template.__parent__;
while (parent) {
objectTemplate.__templateUsage__[parent.__name__] = true;
var parent = parent.__parent__;
}
this.__template__ = template;
if (objectTemplate.__transient__) {
this.__transient__ = true;
}
var prunedObjectProperties = pruneExisting(this, template.objectProperties);
var prunedDefineProperties = pruneExisting(this, template.defineProperties);
try {
// Create properties either with EMCA 5 defineProperties or by hand
if (Object.defineProperties) {
Object.defineProperties(this, prunedDefineProperties); // This method will be added pre-EMCA 5
}
}
catch (e) {
// TODO: find a better way to deal with errors that are thrown
console.log(e); // eslint-disable-line no-console
}
this.fromRemote = this.fromRemote || objectTemplate._stashObject(this, template);
this.copyProperties = function copyProperties(obj) {
for (var prop in obj) {
this[prop] = obj[prop];
}
};
// Initialize properties from the defineProperties value property
for (var propertyName in prunedObjectProperties) {
var defineProperty = prunedObjectProperties[propertyName];
if (typeof(defineProperty.init) !== 'undefined') {
if (defineProperty.byValue) {
this[propertyName] = ObjectTemplate.clone(defineProperty.init, defineProperty.of || defineProperty.type || null);
}
else {
this[propertyName] = (defineProperty.init);
}
}
}
// Template level injections
for (var ix = 0; ix < template.__injections__.length; ++ix) {
template.__injections__[ix].call(this, this);
}
// Global injections
for (var j = 0; j < objectTemplate.__injections__.length; ++j) {
objectTemplate.__injections__[j].call(this, this);
}
this.__prop__ = function g(prop) {
return ObjectTemplate._getDefineProperty(prop, this.__template__);
};
this.__values__ = function f(prop) {
var defineProperty = this.__prop__(prop) || this.__prop__('_' + prop);
if (typeof(defineProperty.values) === 'function') {
return defineProperty.values.call(this);
}
return defineProperty.values;
};
this.__descriptions__ = function e(prop) {
var defineProperty = this.__prop__(prop) || this.__prop__('_' + prop);
if (typeof(defineProperty.descriptions) === 'function') {
return defineProperty.descriptions.call(this);
}
return defineProperty.descriptions;
};
// If we don't have an init function or are a remote creation call parent constructor otherwise call init
// function who will be responsible for calling parent constructor to allow for parameter passing.
if (this.fromRemote || !template.functionProperties.init || objectTemplate.noInit) {
if (parentTemplate && parentTemplate.isObjectTemplate) {
parentTemplate.call(this);
}
}
else {
if (template.functionProperties.init) {
for (var i = 0; i < template.functionProperties.init.length; ++i) {
template.functionProperties.init[i].apply(this, arguments);
}
}
}
this.__template__ = template;
this.toJSONString = function toJSONString(cb) {
return ObjectTemplate.toJSONString(this, cb);
};
/* Clone and object calling a callback for each referenced object.
The call back is passed (obj, prop, template)
obj - the parent object (except the highest level)
prop - the name of the property
template - the template of the object to be created
the function returns:
- falsy - clone object as usual with a new id
- object reference - the callback created the object (presumably to be able to pass init parameters)
- [object] - a one element array of the object means don't copy the properties or traverse
*/
this.createCopy = function createCopy(creator) {
return ObjectTemplate.createCopy(this, creator);
};
function pruneExisting(obj, props) {
var newProps = {};
for (var prop in props) {
if (typeof(obj[prop]) === 'undefined') {
newProps[prop] = props[prop];
}
}
return newProps;
}
};
template.isObjectTemplate = true;
template.extend = function extend(p1, p2) {
return objectTemplate.extend.call(objectTemplate, this, p1, p2);
};
template.mixin = function mixin(p1, p2) {
return objectTemplate.mixin.call(objectTemplate, this, p1, p2);
};
template.staticMixin = function staticMixin(p1, p2) {
return objectTemplate.staticMixin.call(objectTemplate, this, p1, p2);
};
template.fromPOJO = function fromPOJO(pojo) {
objectTemplate.createIfNeeded(template);
return objectTemplate.fromPOJO(pojo, template);
};
template.fromJSON = function fromJSON(str, idPrefix) {
objectTemplate.createIfNeeded(template);
return objectTemplate.fromJSON(str, template, idPrefix);
};
template.getProperties = function getProperties(includeVirtual) {
objectTemplate.createIfNeeded(template);
return ObjectTemplate._getDefineProperties(template, undefined, includeVirtual);
};
if (!createTemplateNow) {
template.__createParameters__ = template.__createParameters__ || [];
template.__createParameters__.push([mixinTemplate, parentTemplate, propertiesOrTemplate, createProperties, templateName]);
return template;
}
template.prototype = templatePrototype;
var createProperty = function createProperty(propertyName, propertyValue, properties, createProperties) {
if (!properties) {
properties = {};
properties[propertyName] = propertyValue;
}
// Record the initialization function
if (propertyName == 'init' && typeof(properties[propertyName]) === 'function') {
functionProperties.init = [properties[propertyName]];
}
else {
var defineProperty = null; // defineProperty to be added to defineProperties
// Determine the property value which may be a defineProperties structure or just an initial value
var descriptor = {};
if (properties) {
descriptor = Object.getOwnPropertyDescriptor(properties, propertyName);
}
var type = 'null';
if (descriptor.get || descriptor.set) {
type = 'getset';
}
else if (properties[propertyName] !== null) {
type = typeof(properties[propertyName]);
}
switch (type) {
// Figure out whether this is a defineProperty structure (has a constructor of object)
case 'object': // Or array
// Handle remote function calls
if (properties[propertyName].body && typeof(properties[propertyName].body) === 'function') {
templatePrototype[propertyName] = objectTemplate._setupFunction(propertyName, properties[propertyName].body, properties[propertyName].on, properties[propertyName].validate);
if (properties[propertyName].type) {
templatePrototype[propertyName].__returns__ = properties[propertyName].type;
}
if (properties[propertyName].of) {
templatePrototype[propertyName].__returns__ = properties[propertyName].of;
templatePrototype[propertyName].__returnsarray__ = true;
}
templatePrototype[propertyName].__on__ = properties[propertyName].on;
templatePrototype[propertyName].__validate__ = properties[propertyName].validate;
templatePrototype[propertyName].__body__ = properties[propertyName].body;
break;
}
else if (properties[propertyName].type) {
defineProperty = properties[propertyName];
properties[propertyName].writable = true; // We are using setters
if (typeof(properties[propertyName].enumerable) === 'undefined') {
properties[propertyName].enumerable = true;
}
break;
}
else if (properties[propertyName] instanceof Array) {
defineProperty = {type: Object, value: properties[propertyName], enumerable: true, writable: true, isLocal: true};
break;
}
else { // Other crap
defineProperty = {type: Object, value: properties[propertyName], enumerable: true, writable: true};
break;
}
case 'string':
defineProperty = {type: String, value: properties[propertyName], enumerable: true, writable: true, isLocal: true};
break;
case 'boolean':
defineProperty = {type: Boolean, value: properties[propertyName], enumerable: true, writable: true, isLocal: true};
break;
case 'number':
defineProperty = {type: Number, value: properties[propertyName], enumerable: true, writable: true, isLocal: true};
break;
case 'function':
templatePrototype[propertyName] = objectTemplate._setupFunction(propertyName, properties[propertyName]);
templatePrototype[propertyName].sourceTemplate = templateName;
break;
case 'getset': // getters and setters
descriptor.templateSource = templateName;
Object.defineProperty(templatePrototype, propertyName, descriptor);
Object.getOwnPropertyDescriptor(templatePrototype, propertyName).get.sourceTemplate = templateName;
break;
}
// If a defineProperty to be added
if (defineProperty) {
if (typeof descriptor.toClient !== 'undefined') {
defineProperty.toClient = descriptor.toClient;
}
if (typeof descriptor.toServer !== 'undefined') {
defineProperty.toServer = descriptor.toServer;
}
objectTemplate._setupProperty(propertyName, defineProperty, objectProperties, defineProperties, parentTemplate, createProperties);
defineProperty.sourceTemplate = templateName;
}
}
};
// Walk through properties and construct the defineProperties hash of properties, the list of
// objectProperties that have to be reinstantiated and attach functions to the prototype
for (var propertyName in propertiesOrTemplate) {
createProperty(propertyName, null, propertiesOrTemplate, createProperties);
}
template.defineProperties = defineProperties;
template.objectProperties = objectProperties;
template.functionProperties = functionProperties;
template.parentTemplate = parentTemplate;
template.createProperty = createProperty;
template.props = {};
var propst = ObjectTemplate._getDefineProperties(template, undefined, true);
for (var propd in propst) {
template.props[propd] = propst[propd];
}
return template;
};
/**
* Overridden by other Type Systems to cache or globally identify objects
* Also assigns a unique internal Id so that complex structures with
* recursive objects can be serialized
*
* @param {unknown} obj - the object to be passed during creation time
* @param {unknown} template - unknown
*
* @returns {unknown}
*
* @private
*/
ObjectTemplate._stashObject = function stashObject(obj, template) {
if (!obj.__id__) {
if (!ObjectTemplate.nextId) {
ObjectTemplate.nextId = 1;
}
obj.__id__ = 'local-' + template.__name__ + '-' + ++ObjectTemplate.nextId;
}
return false;
};
/**
* Overridden by other Type Systems to inject other elements
*
* @param {unknown} _template - the object to be passed during creation time
*
* @private
*/
ObjectTemplate._injectIntoTemplate = function injectIntoTemplate(_template) {
};
/**
* Overridden by other Type Systems to be able to create remote functions or
* otherwise intercept function calls
*
* @param {unknown} _propertyName is the name of the function
* @param {unknown} propertyValue is the function itself
*
* @returns {*} a new function to be assigned to the object prototype
*
* @private
*/
ObjectTemplate._setupFunction = function setupFunction(_propertyName, propertyValue) {
return propertyValue;
};
/**
* Used by template setup to create an property descriptor for use by the constructor
*
* @param {unknown} propertyName is the name of the property
* @param {unknown} defineProperty is the property descriptor passed to the template
* @param {unknown} objectProperties is all properties that will be processed manually. A new property is
* added to this if the property needs to be initialized by value
* @param {unknown} defineProperties is all properties that will be passed to Object.defineProperties
* A new property will be added to this object
*
* @private
*/
ObjectTemplate._setupProperty = function setupProperty(propertyName, defineProperty, objectProperties, defineProperties) {
// Determine whether value needs to be re-initialized in constructor
var value = defineProperty.value;
var byValue = value && typeof(value) !== 'number' && typeof(value) !== 'string';
if (byValue || !Object.defineProperties || defineProperty.get || defineProperty.set) {
objectProperties[propertyName] = {
init: defineProperty.value,
type: defineProperty.type,
of: defineProperty.of,
byValue: byValue
};
delete defineProperty.value;
}
// When a super class based on objectTemplate don't transport properties
defineProperty.toServer = false;
defineProperty.toClient = false;
defineProperties[propertyName] = defineProperty;
// Add getters and setters
if (defineProperty.get || defineProperty.set) {
var userSetter = defineProperty.set;
defineProperty.set = (function d() {
// Use a closure to record the property name which is not passed to the setter
var prop = propertyName;
return function c(value) {
if (userSetter) {
value = userSetter.call(this, value);
}
if (!defineProperty.isVirtual) {
this['__' + prop] = value;
}
};
})();
var userGetter = defineProperty.get;
defineProperty.get = (function get() {
// Use closure to record property name which is not passed to the getter
var prop = propertyName;
return function b() {
if (userGetter) {
if (defineProperty.isVirtual) {
return userGetter.call(this, undefined);
}
return userGetter.call(this, this['__' + prop]);
}
return this['__' + prop];
};
})();
if (!defineProperty.isVirtual) {
defineProperties['__' + propertyName] = {enumerable: false, writable: true};
}
delete defineProperty.value;
delete defineProperty.writable;
}
};
/**
* Clone an object created from an ObjectTemplate
* Used only within supertype (see copyObject for general copy)
*
* @param obj is the source object
* @param template is the template used to create the object
*
* @returns {*} a copy of the object
*/
// Function to clone simple objects using ObjectTemplate as a guide
ObjectTemplate.clone = function clone(obj, template) {
var copy;
if (obj instanceof Date) {
return new Date(obj.getTime());
}
else if (obj instanceof Array) {
copy = [];
for (var ix = 0; ix < obj.length; ++ix) {
copy[ix] = this.clone(obj[ix], template);
}
return copy;
}
else if (template && obj instanceof template) {
copy = new template();
for (var prop in obj) {
if (prop != '__id__' && !(obj[prop] instanceof Function)) {
var defineProperty = this._getDefineProperty(prop, template) || {};
if (obj.hasOwnProperty(prop)) {
copy[prop] = this.clone(obj[prop], defineProperty.of || defineProperty.type || null);
}
}
}
return copy;
}
else if (obj instanceof Object) {
copy = {};
for (var propc in obj) {
if (obj.hasOwnProperty(propc)) {
copy[propc] = this.clone(obj[propc]);
}
}
return copy;
}
else {
return obj;
}
};
/**
* Purpose unknown
*
* @param {unknown} obj unknown
* @param {unknown} creator unknown
*
* @returns {unknown}
*/
ObjectTemplate.createCopy = function createCopy(obj, creator) {
return this.fromPOJO(obj, obj.__template__, null, null, undefined, null, null, creator);
};
/**
* Purpose unknown
*
* @param {unknown} str unknown
* @param {unknown} template unknown
* @param {unknown} idQualifier unknown
*
* @returns {unknown}
*/
ObjectTemplate.fromJSON = function fromJSON(str, template, idQualifier) {
return this.fromPOJO(JSON.parse(str), template, null, null, idQualifier);
};
/**
* Purpose unknown
*
* @param {unknown} pojo unknown
* @param {unknown} template unknown
* @param {unknown} defineProperty unknown
* @param {unknown} idMap unknown