123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /*jslint strict: false, nomen: false, plusplus: false */
- /*global module, process, require: true */
- var path = require('path'),
- loaderCache = {},
- makeRequire;
- // Null out require for this file so that it is not accidentally used
- // below, where module.require should be used instead.
- require = null;
- /**
- * Given a relative module name, like ./something, normalize it to
- * a real name that can be mapped to a path.
- * @param {String} name the relative name
- * @param {String} baseName a real name that the name arg is relative
- * to.
- * @returns {String} normalized name
- */
- function normalize(name, baseName) {
- return path.normalize(path.join(baseName, name));
- }
- function makeNormalize(relName) {
- return function (name) {
- return normalize(name, relName);
- };
- }
- function stringRequire(module, id) {
- //Split the ID by a ! so that
- var index = id.indexOf('!'),
- relId = path.dirname(module.filename),
- prefix, plugin;
- if (index === -1) {
- //Straight module lookup. If it is one of the special dependencies,
- //deal with it, otherwise, delegate to node.
- if (id === 'require') {
- return makeRequire(module);
- } else if (id === 'exports') {
- return module.exports;
- } else if (id === 'module') {
- return module;
- } else {
- return module.require(id);
- }
- } else {
- //There is a plugin in play.
- prefix = id.substring(0, index);
- id = id.substring(index + 1, id.length);
- plugin = module.require(prefix);
- if (plugin.normalize) {
- id = plugin.normalize(id, makeNormalize(relId));
- } else {
- //Normalize the ID normally.
- id = normalize(id, relId);
- }
- if (loaderCache[id]) {
- return loaderCache[id];
- } else {
- plugin.load(id, makeRequire(module), function (value) {
- loaderCache[id] = value;
- }, {});
- return loaderCache[id];
- }
- }
- }
- makeRequire = function (module) {
- function amdRequire(deps, callback) {
- if (typeof deps === 'string') {
- //Synchronous, single module require('')
- return stringRequire(module, deps);
- } else {
- //Array of dependencies with a callback.
- //Convert the dependencies to modules.
- deps = deps.map(function (depName) {
- return stringRequire(module, depName);
- });
- //Wait for next tick to call back the require call.
- process.nextTick(function () {
- callback.apply(null, deps);
- });
- //Keeps strict checking in komodo happy.
- return undefined;
- }
- }
- amdRequire.toUrl = function (filePath) {
- if (filePath.indexOf('.') === 0) {
- return normalize(filePath, path.dirname(module.filename));
- } else {
- return filePath;
- }
- };
- return amdRequire;
- };
- function amdefine(module) {
- var alreadyCalled = false;
- //Create a define function specific to the module asking for amdefine.
- function define() {
- var args = arguments,
- factory = args[args.length - 1],
- isFactoryFunction = (typeof factory === 'function'),
- deps, result;
- //Only support one define call per file
- if (alreadyCalled) {
- throw new Error('amdefine cannot be called more than once per file.');
- }
- alreadyCalled = true;
- //Grab array of dependencies if it is there.
- if (args.length > 1) {
- deps = args[args.length - 2];
- if (!Array.isArray(deps)) {
- //deps is not an array, may be an ID. Discard it.
- deps = null;
- }
- }
- //If there are dependencies, they are strings, so need
- //to convert them to dependency values.
- if (deps) {
- deps = deps.map(function (depName) {
- return stringRequire(module, depName);
- });
- } else if (isFactoryFunction) {
- //Pass in the standard require, exports, module
- deps = [makeRequire(module), module.exports, module];
- }
- if (!isFactoryFunction) {
- //Factory is an object that should just be used for the define call.
- module.exports = factory;
- } else {
- //Call the factory with the right dependencies.
- result = factory.apply(module.exports, deps);
- if (result !== undefined) {
- module.exports = result;
- }
- }
- }
- define.amd = {};
- return define;
- }
- module.exports = amdefine;
|