This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
forked from requirejs/requirejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
require.js
2066 lines (1856 loc) · 79.4 KB
/
require.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
/**@globals importScripts navigator document self $native setTimeout setInterval clearInterval jQuery */
/** vim: et:ts=4:sw=4:sts=4
* @license RequireJS 0.15.0+ Copyright (c) 2010, The Dojo Foundation All Rights Reserved.
* Available via the MIT or new BSD license.
* see: http://github.com/jrburke/requirejs for details
*/
//laxbreak is true to allow build pragmas to change some statements.
/*jslint plusplus: false, nomen: false, laxbreak: true, regexp: false */
/*global window: false, document: false, navigator: false,
setTimeout: false, traceDeps: true, clearInterval: false, self: false,
setInterval: false, importScripts: false, jQuery: false */
"use strict";
var require, define, module;
(function () {
//Change this version number for each release.
var version = "0.15.0+",
empty = {}, s,
i, defContextName = "_", contextLoads = [],
scripts, script, rePkg, src, m, dataMain, cfg = {}, setReadyState,
commentRegExp = /(\/\*([\s\S]*?)\*\/|\/\/(.*)$)/mg,
cjsRequireRegExp = /require\(["']([\w\!\-_\.\/]+)["']\)/g,
main,
isBrowser = !!(typeof window !== "undefined" && navigator && document),
isWebWorker = !isBrowser && typeof importScripts !== "undefined",
//PS3 indicates loaded and complete, but need to wait for complete
//specifically. Sequence is "loading", "loaded", execution,
// then "complete". The UA check is unfortunate, but not sure how
//to feature test w/o causing perf issues.
readyRegExp = isBrowser && navigator.platform === 'PLAYSTATION 3' ? /^complete$/ : /^(complete|loaded)$/,
ostring = Object.prototype.toString,
ap = Array.prototype,
aps = ap.slice, scrollIntervalId, req, baseElement,
defQueue = [], useInteractive = false, currentlyAddingScript;
function isFunction(it) {
return ostring.call(it) === "[object Function]";
}
//Check for an existing version of require. If so, then exit out. Only allow
//one version of require to be active in a page. However, allow for a require
//config object, just exit quickly if require is an actual function.
if (typeof require !== "undefined") {
if (isFunction(require)) {
return;
} else {
//assume it is a config object.
cfg = require;
}
}
//>>excludeStart("requireExcludePlugin", pragmas.requireExcludePlugin);
/**
* Calls a method on a plugin. The obj object should have two property,
* name: the name of the method to call on the plugin
* args: the arguments to pass to the plugin method.
*/
function callPlugin(prefix, context, obj) {
//Call the plugin, or load it.
var plugin = s.plugins.defined[prefix], waiting;
if (plugin) {
plugin[obj.name].apply(null, obj.args);
} else {
//Put the call in the waiting call BEFORE requiring the module,
//since the require could be synchronous in some environments,
//like builds
waiting = s.plugins.waiting[prefix] || (s.plugins.waiting[prefix] = []);
waiting.push(obj);
//Load the module
req(["require/" + prefix], context.contextName);
}
}
//>>excludeEnd("requireExcludePlugin");
/**
* Convenience method to call main for a require.def call that was put on
* hold in the defQueue.
*/
function callDefMain(args, context) {
main.apply(req, args);
//Mark the module loaded. Must do it here in addition
//to doing it in require.def in case a script does
//not call require.def
context.loaded[args[0]] = true;
}
/**
* Used to set up package paths from a packagePaths or packages config object.
* @param {Object} packages the object to store the new package config
* @param {Array} currentPackages an array of packages to configure
* @param {String} [dir] a prefix dir to use.
*/
function configurePackageDir(packages, currentPackages, dir) {
var i, location, pkgObj;
for (i = 0; (pkgObj = currentPackages[i]); i++) {
pkgObj = typeof pkgObj === "string" ? { name: pkgObj } : pkgObj;
location = pkgObj.location;
//Add dir to the path, but avoid paths that start with a slash
//or have a colon (indicates a protocol)
if (dir && (!location || (location.indexOf("/") !== 0 && location.indexOf(":") === -1))) {
pkgObj.location = dir + "/" + (pkgObj.location || pkgObj.name);
}
//Normalize package paths.
pkgObj.location = pkgObj.location || pkgObj.name;
pkgObj.lib = pkgObj.lib || "lib";
pkgObj.main = pkgObj.main || "main";
packages[pkgObj.name] = pkgObj;
}
}
/**
* Determine if priority loading is done. If so clear the priorityWait
*/
function isPriorityDone(context) {
var priorityDone = true,
priorityWait = context.config.priorityWait,
priorityName, i;
if (priorityWait) {
for (i = 0; (priorityName = priorityWait[i]); i++) {
if (!context.loaded[priorityName]) {
priorityDone = false;
break;
}
}
if (priorityDone) {
delete context.config.priorityWait;
}
}
return priorityDone;
}
/**
* Resumes tracing of dependencies and then checks if everything is loaded.
*/
function resume(context) {
var args, i, paused = s.paused;
if (context.scriptCount <= 0) {
//Synchronous envs will push the number below zero with the
//decrement above, be sure to set it back to zero for good measure.
//require() calls that also do not end up loading scripts could
//push the number negative too.
context.scriptCount = 0;
//Make sure any remaining defQueue items get properly processed.
while (defQueue.length) {
args = defQueue.shift();
if (args[0] === null) {
req.onError(new Error('Mismatched anonymous require.def modules'));
} else {
callDefMain(args, context);
}
}
//Skip the resume if current context is in priority wait.
if (context.config.priorityWait && !isPriorityDone(context)) {
return;
}
if (paused.length) {
//Reset paused since this loop will process current set.
s.paused = [];
for (i = 0; (args = paused[i]); i++) {
req.checkDeps.apply(req, args);
}
}
if (isWebWorker) {
//In a web worker, since importScripts is synchronous,
//it may think all dependencies are loaded, but still
//in the middle of a list of dependency fetches, so
//delay the checkLoaded in a timeout for the items to complete.
//This is really hacky though, time for a rewrite.
setTimeout(function () {
req.checkLoaded(s.ctxName);
}, 30);
} else {
req.checkLoaded(s.ctxName);
}
}
}
/**
* Main entry point.
*
* If the only argument to require is a string, then the module that
* is represented by that string is fetched for the appropriate context.
*
* If the first argument is an array, then it will be treated as an array
* of dependency string names to fetch. An optional function callback can
* be specified to execute when all of those dependencies are available.
*/
require = function (deps, callback, contextName, relModuleName) {
var context, config;
if (typeof deps === "string" && !isFunction(callback)) {
//Just return the module wanted. In this scenario, the
//second arg (if passed) is just the contextName.
return require.get(deps, callback, contextName, relModuleName);
}
// Dependencies first
if (!require.isArray(deps)) {
// deps is a config object
config = deps;
if (require.isArray(callback)) {
// Adjust args if there are dependencies
deps = callback;
callback = contextName;
contextName = relModuleName;
relModuleName = arguments[4];
} else {
deps = [];
}
}
if (callback && isFunction(callback) && n4 && n4.$postLoader) {
var oldCallback = callback;
callback = function() {
n4.$postLoader.executeHandlers();
oldCallback.apply(null, arguments);
}
}
main(null, deps, callback, config, contextName, relModuleName);
//If the require call does not trigger anything new to load,
//then resume the dependency processing. Context will be undefined
//on first run of require.
context = s.contexts[(contextName || (config && config.context) || s.ctxName)];
if (context && context.scriptCount === 0) {
resume(context);
}
//Returning undefined for Spidermonky strict checking in Komodo
return undefined;
};
module = function (name, deps, callback) {
return main(name, deps, callback);
};
//Alias for caja compliance internally -
//specifically: "Dynamically computed names should use require.async()"
//even though this spec isn't really decided on.
//Since it is here, use this alias to make typing shorter.
req = require;
/**
* Any errors that require explicitly generates will be passed to this
* function. Intercept/override it if you want custom error handling.
* If you do override it, this method should *always* throw an error
* to stop the execution flow correctly. Otherwise, other weird errors
* will occur.
* @param {Error} err the error object.
*/
req.onError = function (err) {
throw err;
};
req.getContext = function (name) {
name = name || s.ctxName;
return s.contexts[name];
};
/**
* The function that handles definitions of modules. Differs from
* require() in that a string for the module should be the first argument,
* and the function to execute after dependencies are loaded should
* return a value to define the module corresponding to the first argument's
* name.
*/
module = define = req.def = function (name, deps, callback, contextName) {
var i, scripts, script, node = currentlyAddingScript;
//Allow for anonymous functions
if (typeof name !== 'string') {
//Adjust args appropriately
contextName = callback;
callback = deps;
deps = name;
name = null;
}
//This module may not have dependencies
if (!req.isArray(deps)) {
contextName = callback;
callback = deps;
deps = [];
}
//If no name, and callback is a function, then figure out if it a
//CommonJS thing with dependencies.
if (!name && !deps.length && req.isFunction(callback)) {
//Remove comments from the callback string,
//look for require calls, and pull them into the dependencies.
callback
.toString()
.replace(commentRegExp, "")
.replace(cjsRequireRegExp, function (match, dep) {
deps.push(dep);
});
//May be a CommonJS thing even without require calls, but still
//could use exports, and such, so always add those as dependencies.
//This is a bit wasteful for RequireJS modules that do not need
//an exports or module object, but erring on side of safety.
//REQUIRES the function to expect the CommonJS variables in the
//order listed below.
deps = ["require", "exports", "module"].concat(deps);
}
//If in IE 6-8 and hit an anonymous require.def call, do the interactive/
//currentlyAddingScript scripts stuff.
if (!name && useInteractive) {
scripts = document.getElementsByTagName('script');
for (i = scripts.length - 1; i > -1 && (script = scripts[i]); i--) {
if (script.readyState === 'interactive') {
node = script;
break;
}
}
if (!node) {
req.onError(new Error("ERROR: No matching script interactive for " + callback));
}
name = node.getAttribute("data-requiremodule");
}
if (typeof name === 'string') {
//Do not try to auto-register a jquery later.
//Do this work here and in main, since for IE/useInteractive, this function
//is the earliest touch-point.
s.contexts[s.ctxName].jQueryDef = (name === "jquery");
}
//Always save off evaluating the def call until the script onload handler.
//This allows multiple modules to be in a file without prematurely
//tracing dependencies, and allows for anonymous module support,
//where the module name is not known until the script onload event
//occurs.
defQueue.push([name, deps, callback, null, contextName]);
};
main = function (name, deps, callback, config, contextName, relModuleName) {
//Grab the context, or create a new one for the given context name.
var context, newContext, loaded, pluginPrefix,
canSetContext, prop, newLength, outDeps, mods, paths, index, i,
deferMods, deferModArgs, lastModArg, waitingName, packages,
packagePaths;
contextName = contextName ? contextName : (config && config.context ? config.context : s.ctxName);
context = s.contexts[contextName];
if (name) {
//>>excludeStart("requireExcludePlugin", pragmas.requireExcludePlugin);
// Pull off any plugin prefix.
index = name.indexOf("!");
if (index !== -1) {
pluginPrefix = name.substring(0, index);
name = name.substring(index + 1, name.length);
} else {
//Could be that the plugin name should be auto-applied.
//Used by i18n plugin to enable anonymous i18n modules, but
//still associating the auto-generated name with the i18n plugin.
pluginPrefix = context.defPlugin[name];
}
//>>excludeEnd("requireExcludePlugin");
//If module already defined for context, or already waiting to be
//evaluated, leave.
waitingName = context.waiting[name];
if (context && (context.defined[name] || (waitingName && waitingName !== ap[name]))) {
return;
}
}
if (contextName !== s.ctxName) {
//If nothing is waiting on being loaded in the current context,
//then switch s.ctxName to current contextName.
loaded = (s.contexts[s.ctxName] && s.contexts[s.ctxName].loaded);
canSetContext = true;
if (loaded) {
for (prop in loaded) {
if (!(prop in empty)) {
if (!loaded[prop]) {
canSetContext = false;
break;
}
}
}
}
if (canSetContext) {
s.ctxName = contextName;
}
}
if (!context) {
newContext = {
contextName: contextName,
config: {
waitSeconds: 120,
baseUrl: s.baseUrl || "./",
paths: {},
packages: {}
},
waiting: [],
specified: {
"require": true,
"exports": true,
"module": true
},
loaded: {},
scriptCount: 0,
urlFetched: {},
defPlugin: {},
defined: {},
modifiers: {}
};
//>>excludeStart("requireExcludePlugin", pragmas.requireExcludePlugin);
if (s.plugins.newContext) {
s.plugins.newContext(newContext);
}
//>>excludeEnd("requireExcludePlugin");
context = s.contexts[contextName] = newContext;
}
//If have a config object, update the context's config object with
//the config values.
if (config) {
//Make sure the baseUrl ends in a slash.
if (config.baseUrl) {
if (config.baseUrl.charAt(config.baseUrl.length - 1) !== "/") {
config.baseUrl += "/";
}
}
//Save off the paths and packages since they require special processing,
//they are additive.
paths = context.config.paths;
packages = context.config.packages;
//Mix in the config values, favoring the new values over
//existing ones in context.config.
req.mixin(context.config, config, true);
//Adjust paths if necessary.
if (config.paths) {
for (prop in config.paths) {
if (!(prop in empty)) {
paths[prop] = config.paths[prop];
}
}
context.config.paths = paths;
}
packagePaths = config.packagePaths;
if (packagePaths || config.packages) {
//Convert packagePaths into a packages config.
if (packagePaths) {
for (prop in packagePaths) {
if (!(prop in empty)) {
configurePackageDir(packages, packagePaths[prop], prop);
}
}
}
//Adjust packages if necessary.
if (config.packages) {
configurePackageDir(packages, config.packages);
}
//Done with modifications, assing packages back to context config
context.config.packages = packages;
}
//If priority loading is in effect, trigger the loads now
if (config.priority) {
//Create a separate config property that can be
//easily tested for config priority completion.
//Do this instead of wiping out the config.priority
//in case it needs to be inspected for debug purposes later.
req(config.priority);
context.config.priorityWait = config.priority;
}
//If a deps array or a config callback is specified, then call
//require with those args. This is useful when require is defined as a
//config object before require.js is loaded.
if (config.deps || config.callback) {
req(config.deps || [], config.callback);
}
//>>excludeStart("requireExcludePageLoad", pragmas.requireExcludePageLoad);
//Set up ready callback, if asked. Useful when require is defined as a
//config object before require.js is loaded.
if (config.ready) {
req.ready(config.ready);
}
//>>excludeEnd("requireExcludePageLoad");
//If it is just a config block, nothing else,
//then return.
if (!deps) {
return;
}
}
//Normalize dependency strings: need to determine if they have
//prefixes and to also normalize any relative paths. Replace the deps
//array of strings with an array of objects.
if (deps) {
outDeps = deps;
deps = [];
for (i = 0; i < outDeps.length; i++) {
deps[i] = req.splitPrefix(outDeps[i], (name || relModuleName), context);
}
}
//Store the module for later evaluation
newLength = context.waiting.push({
name: name,
deps: deps,
callback: callback
});
if (name) {
//Store index of insertion for quick lookup
context.waiting[name] = newLength - 1;
//Mark the module as specified so no need to fetch it again.
//Important to set specified here for the
//pause/resume case where there are multiple modules in a file.
context.specified[name] = true;
//>>excludeStart("requireExcludeModify", pragmas.requireExcludeModify);
//Load any modifiers for the module.
mods = context.modifiers[name];
if (mods) {
req(mods, contextName);
deferMods = mods.__deferMods;
if (deferMods) {
for (i = 0; i < deferMods.length; i++) {
deferModArgs = deferMods[i];
//Add the context name to the def call.
lastModArg = deferModArgs[deferModArgs.length - 1];
if (lastModArg === undefined) {
deferModArgs[deferModArgs.length - 1] = contextName;
} else if (typeof lastModArg === "string") {
deferMods.push(contextName);
}
require.def.apply(require, deferModArgs);
}
}
}
//>>excludeEnd("requireExcludeModify");
}
//If the callback is not an actual function, it means it already
//has the definition of the module as a literal value.
if (name && callback && !req.isFunction(callback)) {
context.defined[name] = callback;
}
//If a pluginPrefix is available, call the plugin, or load it.
//>>excludeStart("requireExcludePlugin", pragmas.requireExcludePlugin);
if (pluginPrefix) {
callPlugin(pluginPrefix, context, {
name: "require",
args: [name, deps, callback, context]
});
}
//>>excludeEnd("requireExcludePlugin");
//Hold on to the module until a script load or other adapter has finished
//evaluating the whole file. This helps when a file has more than one
//module in it -- dependencies are not traced and fetched until the whole
//file is processed.
s.paused.push([pluginPrefix, name, deps, context]);
//Set loaded here for modules that are also loaded
//as part of a layer, where onScriptLoad is not fired
//for those cases. Do this after the inline define and
//dependency tracing is done.
//Also check if auto-registry of jQuery needs to be skipped.
if (name) {
context.loaded[name] = true;
context.jQueryDef = (name === "jquery");
}
};
/**
* Simple function to mix in properties from source into target,
* but only if target does not already have a property of the same name.
*/
req.mixin = function (target, source, force) {
for (var prop in source) {
if (!(prop in empty) && (!(prop in target) || force)) {
target[prop] = source[prop];
}
}
return req;
};
req.version = version;
//Set up page state.
s = req.s = {
ctxName: defContextName,
contexts: {},
paused: [],
//>>excludeStart("requireExcludePlugin", pragmas.requireExcludePlugin);
plugins: {
defined: {},
callbacks: {},
waiting: {}
},
//>>excludeEnd("requireExcludePlugin");
//Stores a list of URLs that should not get async script tag treatment.
skipAsync: {},
isBrowser: isBrowser,
isPageLoaded: !isBrowser,
readyCalls: [],
doc: isBrowser ? document : null
};
req.isBrowser = s.isBrowser;
if (isBrowser) {
s.head = document.getElementsByTagName("head")[0];
//If BASE tag is in play, using appendChild is a problem for IE6.
//When that browser dies, this can be removed. Details in this jQuery bug:
//http://dev.jquery.com/ticket/2709
baseElement = document.getElementsByTagName("base")[0];
if (baseElement) {
s.head = baseElement.parentNode;
}
}
//>>excludeStart("requireExcludePlugin", pragmas.requireExcludePlugin);
/**
* Sets up a plugin callback name. Want to make it easy to test if a plugin
* needs to be called for a certain lifecycle event by testing for
* if (s.plugins.onLifeCyleEvent) so only define the lifecycle event
* if there is a real plugin that registers for it.
*/
function makePluginCallback(name, returnOnTrue) {
var cbs = s.plugins.callbacks[name] = [];
s.plugins[name] = function () {
for (var i = 0, cb; (cb = cbs[i]); i++) {
if (cb.apply(null, arguments) === true && returnOnTrue) {
return true;
}
}
return false;
};
}
/**
* Registers a new plugin for require.
*/
req.plugin = function (obj) {
var i, prop, call, prefix = obj.prefix, cbs = s.plugins.callbacks,
waiting = s.plugins.waiting[prefix], generics,
defined = s.plugins.defined, contexts = s.contexts, context;
//Do not allow redefinition of a plugin, there may be internal
//state in the plugin that could be lost.
if (defined[prefix]) {
return req;
}
//Save the plugin.
defined[prefix] = obj;
//Set up plugin callbacks for methods that need to be generic to
//require, for lifecycle cases where it does not care about a particular
//plugin, but just that some plugin work needs to be done.
generics = ["newContext", "isWaiting", "orderDeps"];
for (i = 0; (prop = generics[i]); i++) {
if (!s.plugins[prop]) {
makePluginCallback(prop, prop === "isWaiting");
}
cbs[prop].push(obj[prop]);
}
//Call newContext for any contexts that were already created.
if (obj.newContext) {
for (prop in contexts) {
if (!(prop in empty)) {
context = contexts[prop];
obj.newContext(context);
}
}
}
//If there are waiting requests for a plugin, execute them now.
if (waiting) {
for (i = 0; (call = waiting[i]); i++) {
if (obj[call.name]) {
obj[call.name].apply(null, call.args);
}
}
delete s.plugins.waiting[prefix];
}
return req;
};
//>>excludeEnd("requireExcludePlugin");
/**
* As of jQuery 1.4.3, it supports a readyWait property that will hold off
* calling jQuery ready callbacks until all scripts are loaded. Be sure
* to track it if readyWait is available. Also, since jQuery 1.4.3 does
* not register as a module, need to do some global inference checking.
* Even if it does register as a module, not guaranteed to be the precise
* name of the global. If a jQuery is tracked for this context, then go
* ahead and register it as a module too, if not already in process.
*/
function jQueryCheck(context, jqCandidate) {
if (!context.jQuery) {
var $ = jqCandidate || (typeof jQuery !== "undefined" ? jQuery : null);
if ($ && "readyWait" in $) {
context.jQuery = $;
//Manually create a "jquery" module entry if not one already
//or in process.
if (!context.defined.jquery && !context.jQueryDef) {
context.defined.jquery = $;
}
//Make sure
if (context.scriptCount) {
$.readyWait += 1;
context.jQueryIncremented = true;
}
}
}
}
/**
* Internal method used by environment adapters to complete a load event.
* A load event could be a script load or just a load pass from a synchronous
* load call.
* @param {String} moduleName the name of the module to potentially complete.
* @param {Object} context the context object
*/
req.completeLoad = function (moduleName, context) {
//If there is a waiting require.def call
var args;
while (defQueue.length) {
args = defQueue.shift();
if (args[0] === null) {
args[0] = moduleName;
break;
} else if (args[0] === moduleName) {
//Found matching require.def call for this script!
break;
} else {
//Some other named require.def call, most likely the result
//of a build layer that included many require.def calls.
callDefMain(args, context);
}
}
if (args) {
callDefMain(args, context);
}
//Mark the script as loaded. Note that this can be different from a
//moduleName that maps to a require.def call. This line is important
//for traditional browser scripts.
context.loaded[moduleName] = true;
//If a global jQuery is defined, check for it. Need to do it here
//instead of main() since stock jQuery does not register as
//a module via define.
jQueryCheck(context);
context.scriptCount -= 1;
resume(context);
};
/**
* Legacy function, remove at some point
*/
req.pause = req.resume = function () {};
/**
* Trace down the dependencies to see if they are loaded. If not, trigger
* the load.
* @param {String} pluginPrefix the plugin prefix, if any associated with the name.
*
* @param {String} name: the name of the module that has the dependencies.
*
* @param {Array} deps array of dependencies.
*
* @param {Object} context: the loading context.
*
* @private
*/
req.checkDeps = function (pluginPrefix, name, deps, context) {
//Figure out if all the modules are loaded. If the module is not
//being loaded or already loaded, add it to the "to load" list,
//and request it to be loaded.
var i, dep;
if (pluginPrefix) {
//>>excludeStart("requireExcludePlugin", pragmas.requireExcludePlugin);
callPlugin(pluginPrefix, context, {
name: "checkDeps",
args: [name, deps, context]
});
//>>excludeEnd("requireExcludePlugin");
} else {
for (i = 0; (dep = deps[i]); i++) {
if (!context.specified[dep.fullName]) {
context.specified[dep.fullName] = true;
//Reset the start time to use for timeouts
context.startTime = (new Date()).getTime();
//If a plugin, call its load method.
if (dep.prefix) {
//>>excludeStart("requireExcludePlugin", pragmas.requireExcludePlugin);
callPlugin(dep.prefix, context, {
name: "load",
args: [dep.name, context.contextName]
});
//>>excludeEnd("requireExcludePlugin");
} else {
req.load(dep.name, context.contextName);
}
}
}
}
};
//>>excludeStart("requireExcludeModify", pragmas.requireExcludeModify);
/**
* Register a module that modifies another module. The modifier will
* only be called once the target module has been loaded.
*
* First syntax:
*
* require.modify({
* "some/target1": "my/modifier1",
* "some/target2": "my/modifier2",
* });
*
* With this syntax, the my/modifier1 will only be loaded when
* "some/target1" is loaded.
*
* Second syntax, defining a modifier.
*
* require.modify("some/target1", "my/modifier",
* ["some/target1", "some/other"],
* function (target, other) {
* //Modify properties of target here.
* Only properties of target can be modified, but
* target cannot be replaced.
* }
* );
*/
req.modify = function (target, name, deps, callback, contextName) {
var prop, modifier, list,
cName = (typeof target === "string" ? contextName : name) || s.ctxName,
context = s.contexts[cName],
mods = context.modifiers;
if (typeof target === "string") {
//A modifier module.
//First store that it is a modifier.
list = mods[target] || (mods[target] = []);
if (!list[name]) {
list.push(name);
list[name] = true;
}
//Trigger the normal module definition logic if the target
//is already in the system.
if (context.specified[target]) {
req.def(name, deps, callback, contextName);
} else {
//Hold on to the execution/dependency checks for the modifier
//until the target is fetched.
(list.__deferMods || (list.__deferMods = [])).push([name, deps, callback, contextName]);
}
} else {
//A list of modifiers. Save them for future reference.
for (prop in target) {
if (!(prop in empty)) {
//Store the modifier for future use.
modifier = target[prop];
list = mods[prop] || (context.modifiers[prop] = []);
if (!list[modifier]) {
list.push(modifier);
list[modifier] = true;
if (context.specified[prop]) {
//Load the modifier right away.
req([modifier], cName);
}
}
}
}
}
};
//>>excludeEnd("requireExcludeModify");
req.isArray = function (it) {
return ostring.call(it) === "[object Array]";
};
req.isFunction = isFunction;
/**
* Gets one module's exported value. This method is used by require().
* It is broken out as a separate function to allow a host environment
* shim to overwrite this function with something appropriate for that
* environment.
*
* @param {String} moduleName the name of the module.
* @param {String} [contextName] the name of the context to use. Uses
* default context if no contextName is provided. You should never
* pass the contextName explicitly -- it is handled by the require() code.
* @param {String} [relModuleName] a module name to use for relative
* module name lookups. You should never pass this argument explicitly --
* it is handled by the require() code.
*
* @returns {Object} the exported module value.
*/
req.get = function (moduleName, contextName, relModuleName) {
if (moduleName === "require" || moduleName === "exports" || moduleName === "module") {
req.onError(new Error("Explicit require of " + moduleName + " is not allowed."));
}
contextName = contextName || s.ctxName;
var ret, context = s.contexts[contextName], nameProps;
//Normalize module name, if it contains . or ..
nameProps = req.splitPrefix(moduleName, relModuleName, context);
ret = context.defined[nameProps.name];
if (ret === undefined) {
req.onError(new Error("require: module name '" +
moduleName +
"' has not been loaded yet for context: " +
contextName));
}
return ret;
};
/*
* N4: the same as above, but doesn't throw exception if module isn't loaded
*/
req.getModule = function (moduleName, contextName, relModuleName) {
if (moduleName === "require" || moduleName === "exports" || moduleName === "module") {
req.onError(new Error("Explicit require of " + moduleName + " is not allowed."));
}
contextName = contextName || s.ctxName;
var context = s.contexts[contextName], nameProps;
//Normalize module name, if it contains . or ..
nameProps = req.splitPrefix(moduleName, relModuleName, context);
return context.defined[nameProps.name];
};
/**
* Makes the request to load a module. May be an async load depending on
* the environment and the circumstance of the load call. Override this
* method in a host environment shim to do something specific for that
* environment.
*
* @param {String} moduleName the name of the module.
* @param {String} contextName the name of the context to use.
*/
req.load = function (moduleName, contextName) {
var context = s.contexts[contextName],
urlFetched = context.urlFetched,
loaded = context.loaded, url;
s.isDone = false;
//Only set loaded to false for tracking if it has not already been set.
if (!loaded[moduleName]) {
loaded[moduleName] = false;
}
if (contextName !== s.ctxName) {
//Not in the right context now, hold on to it until
//the current context finishes all its loading.
contextLoads.push(arguments);
} else {
//First derive the path name for the module.