mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-25 17:45:03 +03:00
844 lines
26 KiB
JavaScript
844 lines
26 KiB
JavaScript
// Copyright 2006 The Closure Library Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS-IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
/**
|
|
* @fileoverview Bootstrap for the Google JS Library (Closure).
|
|
*
|
|
* In uncompiled mode base.js will write out Closure's deps file, unless the
|
|
* global <code>CLOSURE_NO_DEPS</code> is set to true. This allows projects to
|
|
* include their own deps file(s) from different locations.
|
|
*
|
|
*
|
|
* @provideGoog
|
|
*/
|
|
|
|
|
|
/**
|
|
* @define {boolean} Overridden to true by the compiler when --closure_pass
|
|
* or --mark_as_compiled is specified.
|
|
*/
|
|
var COMPILED = false;
|
|
|
|
|
|
/**
|
|
* Base namespace for the Closure library. Checks to see goog is already
|
|
* defined in the current scope before assigning to prevent clobbering if
|
|
* base.js is loaded more than once.
|
|
*
|
|
* @const
|
|
*/
|
|
var goog = goog || {};
|
|
|
|
|
|
/**
|
|
* Reference to the global context. In most cases this will be 'window'.
|
|
*/
|
|
goog.global = this;
|
|
|
|
|
|
/**
|
|
* A hook for overriding the define values in uncompiled mode.
|
|
*
|
|
* In uncompiled mode, {@code CLOSURE_UNCOMPILED_DEFINES} may be defined before
|
|
* loading base.js. If a key is defined in {@code CLOSURE_UNCOMPILED_DEFINES},
|
|
* {@code goog.define} will use the value instead of the default value. This
|
|
* allows flags to be overwritten without compilation (this is normally
|
|
* accomplished with the compiler's "define" flag).
|
|
*
|
|
* Example:
|
|
* <pre>
|
|
* var CLOSURE_UNCOMPILED_DEFINES = {'goog.DEBUG': false};
|
|
* </pre>
|
|
*
|
|
* @type {Object.<string, (string|number|boolean)>|undefined}
|
|
*/
|
|
goog.global.CLOSURE_UNCOMPILED_DEFINES;
|
|
|
|
|
|
/**
|
|
* A hook for overriding the define values in uncompiled or compiled mode,
|
|
* like CLOSURE_UNCOMPILED_DEFINES but effective in compiled code. In
|
|
* uncompiled code CLOSURE_UNCOMPILED_DEFINES takes precedence.
|
|
*
|
|
* Also unlike CLOSURE_UNCOMPILED_DEFINES the values must be number, boolean or
|
|
* string literals or the compiler will emit an error.
|
|
*
|
|
* While any @define value may be set, only those set with goog.define will be
|
|
* effective for uncompiled code.
|
|
*
|
|
* Example:
|
|
* <pre>
|
|
* var CLOSURE_DEFINES = {'goog.DEBUG': false};
|
|
* </pre>
|
|
*
|
|
* @type {Object.<string, (string|number|boolean)>|undefined}
|
|
*/
|
|
goog.global.CLOSURE_DEFINES;
|
|
|
|
|
|
/**
|
|
* Returns true if the specified value is not undefined.
|
|
* WARNING: Do not use this to test if an object has a property. Use the in
|
|
* operator instead.
|
|
*
|
|
* @param {?} val Variable to test.
|
|
* @return {boolean} Whether variable is defined.
|
|
*/
|
|
goog.isDef = function(val) {
|
|
// void 0 always evaluates to undefined and hence we do not need to depend on
|
|
// the definition of the global variable named 'undefined'.
|
|
return val !== void 0;
|
|
};
|
|
|
|
|
|
/**
|
|
* Builds an object structure for the provided namespace path, ensuring that
|
|
* names that already exist are not overwritten. For example:
|
|
* "a.b.c" -> a = {};a.b={};a.b.c={};
|
|
* Used by goog.provide and goog.exportSymbol.
|
|
* @param {string} name name of the object that this file defines.
|
|
* @param {*=} opt_object the object to expose at the end of the path.
|
|
* @param {Object=} opt_objectToExportTo The object to add the path to; default
|
|
* is |goog.global|.
|
|
* @private
|
|
*/
|
|
goog.exportPath_ = function(name, opt_object, opt_objectToExportTo) {
|
|
var parts = name.split('.');
|
|
var cur = opt_objectToExportTo || goog.global;
|
|
|
|
// Internet Explorer exhibits strange behavior when throwing errors from
|
|
// methods externed in this manner. See the testExportSymbolExceptions in
|
|
// base_test.html for an example.
|
|
if (!(parts[0] in cur) && cur.execScript) {
|
|
cur.execScript('var ' + parts[0]);
|
|
}
|
|
|
|
// Certain browsers cannot parse code in the form for((a in b); c;);
|
|
// This pattern is produced by the JSCompiler when it collapses the
|
|
// statement above into the conditional loop below. To prevent this from
|
|
// happening, use a for-loop and reserve the init logic as below.
|
|
|
|
// Parentheses added to eliminate strict JS warning in Firefox.
|
|
for (var part; parts.length && (part = parts.shift());) {
|
|
if (!parts.length && goog.isDef(opt_object)) {
|
|
// last part and we have an object; use it
|
|
cur[part] = opt_object;
|
|
} else if (cur[part]) {
|
|
cur = cur[part];
|
|
} else {
|
|
cur = cur[part] = {};
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Defines a named value. In uncompiled mode, the value is retreived from
|
|
* CLOSURE_DEFINES or CLOSURE_UNCOMPILED_DEFINES if the object is defined and
|
|
* has the property specified, and otherwise used the defined defaultValue.
|
|
* When compiled, the default can be overridden using compiler command-line
|
|
* options.
|
|
*
|
|
* @param {string} name The distinguished name to provide.
|
|
* @param {string|number|boolean} defaultValue
|
|
*/
|
|
goog.define = function(name, defaultValue) {
|
|
var value = defaultValue;
|
|
if (!COMPILED) {
|
|
if (goog.global.CLOSURE_UNCOMPILED_DEFINES &&
|
|
Object.prototype.hasOwnProperty.call(
|
|
goog.global.CLOSURE_UNCOMPILED_DEFINES, name)) {
|
|
value = goog.global.CLOSURE_UNCOMPILED_DEFINES[name];
|
|
} else if (goog.global.CLOSURE_DEFINES &&
|
|
Object.prototype.hasOwnProperty.call(
|
|
goog.global.CLOSURE_DEFINES, name)) {
|
|
value = goog.global.CLOSURE_DEFINES[name];
|
|
}
|
|
}
|
|
goog.exportPath_(name, value);
|
|
};
|
|
|
|
|
|
/**
|
|
* @define {boolean} DEBUG is provided as a convenience so that debugging code
|
|
* that should not be included in a production js_binary can be easily stripped
|
|
* by specifying --define goog.DEBUG=false to the JSCompiler. For example, most
|
|
* toString() methods should be declared inside an "if (goog.DEBUG)" conditional
|
|
* because they are generally used for debugging purposes and it is difficult
|
|
* for the JSCompiler to statically determine whether they are used.
|
|
*/
|
|
goog.DEBUG = true;
|
|
|
|
|
|
/**
|
|
* @define {string} LOCALE defines the locale being used for compilation. It is
|
|
* used to select locale specific data to be compiled in js binary. BUILD rule
|
|
* can specify this value by "--define goog.LOCALE=<locale_name>" as JSCompiler
|
|
* option.
|
|
*
|
|
* Take into account that the locale code format is important. You should use
|
|
* the canonical Unicode format with hyphen as a delimiter. Language must be
|
|
* lowercase, Language Script - Capitalized, Region - UPPERCASE.
|
|
* There are few examples: pt-BR, en, en-US, sr-Latin-BO, zh-Hans-CN.
|
|
*
|
|
* See more info about locale codes here:
|
|
* http://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers
|
|
*
|
|
* For language codes you should use values defined by ISO 693-1. See it here
|
|
* http://www.w3.org/WAI/ER/IG/ert/iso639.htm. There is only one exception from
|
|
* this rule: the Hebrew language. For legacy reasons the old code (iw) should
|
|
* be used instead of the new code (he), see http://wiki/Main/IIISynonyms.
|
|
*/
|
|
goog.define('goog.LOCALE', 'en'); // default to en
|
|
|
|
|
|
/**
|
|
* @define {boolean} Whether this code is running on trusted sites.
|
|
*
|
|
* On untrusted sites, several native functions can be defined or overridden by
|
|
* external libraries like Prototype, Datejs, and JQuery and setting this flag
|
|
* to false forces closure to use its own implementations when possible.
|
|
*
|
|
* If your JavaScript can be loaded by a third party site and you are wary about
|
|
* relying on non-standard implementations, specify
|
|
* "--define goog.TRUSTED_SITE=false" to the JSCompiler.
|
|
*/
|
|
goog.define('goog.TRUSTED_SITE', true);
|
|
|
|
|
|
/**
|
|
* @define {boolean} Whether a project is expected to be running in strict mode.
|
|
*
|
|
* This define can be used to trigger alternate implementations compatible with
|
|
* running in EcmaScript Strict mode or warn about unavailable functionality.
|
|
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions_and_function_scope/Strict_mode
|
|
*/
|
|
goog.define('goog.STRICT_MODE_COMPATIBLE', false);
|
|
|
|
|
|
/**
|
|
* Creates object stubs for a namespace. The presence of one or more
|
|
* goog.provide() calls indicate that the file defines the given
|
|
* objects/namespaces. Provided objects must not be null or undefined.
|
|
* Build tools also scan for provide/require statements
|
|
* to discern dependencies, build dependency files (see deps.js), etc.
|
|
* @see goog.require
|
|
* @param {string} name Namespace provided by this file in the form
|
|
* "goog.package.part".
|
|
*/
|
|
goog.provide = function(name) {
|
|
if (!COMPILED) {
|
|
// Ensure that the same namespace isn't provided twice.
|
|
// A goog.module/goog.provide maps a goog.require to a specific file
|
|
if (goog.isProvided_(name)) {
|
|
throw Error('Namespace "' + name + '" already declared.');
|
|
}
|
|
delete goog.implicitNamespaces_[name];
|
|
|
|
var namespace = name;
|
|
while ((namespace = namespace.substring(0, namespace.lastIndexOf('.')))) {
|
|
if (goog.getObjectByName(namespace)) {
|
|
break;
|
|
}
|
|
goog.implicitNamespaces_[namespace] = true;
|
|
}
|
|
}
|
|
|
|
goog.exportPath_(name);
|
|
};
|
|
|
|
|
|
/**
|
|
* Forward declares a symbol. This is an indication to the compiler that the
|
|
* symbol may be used in the source yet is not required and may not be provided
|
|
* in compilation.
|
|
*
|
|
* The most common usage of forward declaration is code that takes a type as a
|
|
* function parameter but does not need to require it. By forward declaring
|
|
* instead of requiring, no hard dependency is made, and (if not required
|
|
* elsewhere) the namespace may never be required and thus, not be pulled
|
|
* into the JavaScript binary. If it is required elsewhere, it will be type
|
|
* checked as normal.
|
|
*
|
|
*
|
|
* @param {string} name The namespace to forward declare in the form of
|
|
* "goog.package.part".
|
|
*/
|
|
goog.forwardDeclare = function(name) {};
|
|
|
|
|
|
if (!COMPILED) {
|
|
|
|
/**
|
|
* Check if the given name has been goog.provided. This will return false for
|
|
* names that are available only as implicit namespaces.
|
|
* @param {string} name name of the object to look for.
|
|
* @return {boolean} Whether the name has been provided.
|
|
* @private
|
|
*/
|
|
goog.isProvided_ = function(name) {
|
|
return (!goog.implicitNamespaces_[name] &&
|
|
goog.isDefAndNotNull(goog.getObjectByName(name)));
|
|
};
|
|
|
|
/**
|
|
* Namespaces implicitly defined by goog.provide. For example,
|
|
* goog.provide('goog.events.Event') implicitly declares that 'goog' and
|
|
* 'goog.events' must be namespaces.
|
|
*
|
|
* @type {Object.<string, (boolean|undefined)>}
|
|
* @private
|
|
*/
|
|
goog.implicitNamespaces_ = {};
|
|
}
|
|
|
|
|
|
/**
|
|
* Returns an object based on its fully qualified external name. The object
|
|
* is not found if null or undefined. If you are using a compilation pass that
|
|
* renames property names beware that using this function will not find renamed
|
|
* properties.
|
|
*
|
|
* @param {string} name The fully qualified name.
|
|
* @param {Object=} opt_obj The object within which to look; default is
|
|
* |goog.global|.
|
|
* @return {?} The value (object or primitive) or, if not found, null.
|
|
*/
|
|
goog.getObjectByName = function(name, opt_obj) {
|
|
var parts = name.split('.');
|
|
var cur = opt_obj || goog.global;
|
|
for (var part; part = parts.shift(); ) {
|
|
if (goog.isDefAndNotNull(cur[part])) {
|
|
cur = cur[part];
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
return cur;
|
|
};
|
|
|
|
|
|
/**
|
|
* Globalizes a whole namespace, such as goog or goog.lang.
|
|
*
|
|
* @param {Object} obj The namespace to globalize.
|
|
* @param {Object=} opt_global The object to add the properties to.
|
|
* @deprecated Properties may be explicitly exported to the global scope, but
|
|
* this should no longer be done in bulk.
|
|
*/
|
|
goog.globalize = function(obj, opt_global) {
|
|
var global = opt_global || goog.global;
|
|
for (var x in obj) {
|
|
global[x] = obj[x];
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Adds a dependency from a file to the files it requires.
|
|
* @param {string} relPath The path to the js file.
|
|
* @param {Array} provides An array of strings with the names of the objects
|
|
* this file provides.
|
|
* @param {Array} requires An array of strings with the names of the objects
|
|
* this file requires.
|
|
*/
|
|
goog.addDependency = function(relPath, provides, requires) {
|
|
if (goog.DEPENDENCIES_ENABLED) {
|
|
var provide, require;
|
|
var path = relPath.replace(/\\/g, '/');
|
|
var deps = goog.dependencies_;
|
|
for (var i = 0; provide = provides[i]; i++) {
|
|
deps.nameToPath[provide] = path;
|
|
}
|
|
for (var j = 0; require = requires[j]; j++) {
|
|
if (!(path in deps.requires)) {
|
|
deps.requires[path] = {};
|
|
}
|
|
deps.requires[path][require] = true;
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
|
|
|
|
// NOTE(nnaze): The debug DOM loader was included in base.js as an original way
|
|
// to do "debug-mode" development. The dependency system can sometimes be
|
|
// confusing, as can the debug DOM loader's asynchronous nature.
|
|
//
|
|
// With the DOM loader, a call to goog.require() is not blocking -- the script
|
|
// will not load until some point after the current script. If a namespace is
|
|
// needed at runtime, it needs to be defined in a previous script, or loaded via
|
|
// require() with its registered dependencies.
|
|
// User-defined namespaces may need their own deps file. See http://go/js_deps,
|
|
// http://go/genjsdeps, or, externally, DepsWriter.
|
|
// https://developers.google.com/closure/library/docs/depswriter
|
|
//
|
|
// Because of legacy clients, the DOM loader can't be easily removed from
|
|
// base.js. Work is being done to make it disableable or replaceable for
|
|
// different environments (DOM-less JavaScript interpreters like Rhino or V8,
|
|
// for example). See bootstrap/ for more information.
|
|
|
|
|
|
/**
|
|
* @define {boolean} Whether to enable the debug loader.
|
|
*
|
|
* If enabled, a call to goog.require() will attempt to load the namespace by
|
|
* appending a script tag to the DOM (if the namespace has been registered).
|
|
*
|
|
* If disabled, goog.require() will simply assert that the namespace has been
|
|
* provided (and depend on the fact that some outside tool correctly ordered
|
|
* the script).
|
|
*/
|
|
goog.define('goog.ENABLE_DEBUG_LOADER', true);
|
|
|
|
|
|
/**
|
|
* @param {string} msg
|
|
* @private
|
|
*/
|
|
goog.logToConsole_ = function(msg) {
|
|
if (goog.global.console) {
|
|
goog.global.console['error'](msg);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Implements a system for the dynamic resolution of dependencies that works in
|
|
* parallel with the BUILD system. Note that all calls to goog.require will be
|
|
* stripped by the JSCompiler when the --closure_pass option is used.
|
|
* @see goog.provide
|
|
* @param {string} name Namespace to include (as was given in goog.provide()) in
|
|
* the form "goog.package.part".
|
|
* @return {?} If called within a goog.module file, the associated namespace or
|
|
* module otherwise null.
|
|
*/
|
|
goog.require = function(name) {
|
|
|
|
// If the object already exists we do not need do do anything.
|
|
if (!COMPILED) {
|
|
if (goog.isProvided_(name)) {
|
|
return null;
|
|
}
|
|
|
|
if (goog.ENABLE_DEBUG_LOADER) {
|
|
var path = goog.getPathFromDeps_(name);
|
|
if (path) {
|
|
goog.included_[path] = true;
|
|
goog.writeScripts_();
|
|
return null;
|
|
}
|
|
}
|
|
|
|
var errorMessage = 'goog.require could not find: ' + name;
|
|
goog.logToConsole_(errorMessage);
|
|
|
|
throw Error(errorMessage);
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Path for included scripts.
|
|
* @type {string}
|
|
*/
|
|
goog.basePath = '';
|
|
|
|
|
|
/**
|
|
* A hook for overriding the base path.
|
|
* @type {string|undefined}
|
|
*/
|
|
goog.global.CLOSURE_BASE_PATH;
|
|
|
|
|
|
/**
|
|
* Whether to write out Closure's deps file. By default, the deps are written.
|
|
* @type {boolean|undefined}
|
|
*/
|
|
goog.global.CLOSURE_NO_DEPS;
|
|
|
|
|
|
/**
|
|
* A function to import a single script. This is meant to be overridden when
|
|
* Closure is being run in non-HTML contexts, such as web workers. It's defined
|
|
* in the global scope so that it can be set before base.js is loaded, which
|
|
* allows deps.js to be imported properly.
|
|
*
|
|
* The function is passed the script source, which is a relative URI. It should
|
|
* return true if the script was imported, false otherwise.
|
|
* @type {(function(string): boolean)|undefined}
|
|
*/
|
|
goog.global.CLOSURE_IMPORT_SCRIPT;
|
|
|
|
|
|
/**
|
|
* True if goog.dependencies_ is available.
|
|
* @const {boolean}
|
|
*/
|
|
goog.DEPENDENCIES_ENABLED = !COMPILED && goog.ENABLE_DEBUG_LOADER;
|
|
|
|
|
|
if (goog.DEPENDENCIES_ENABLED) {
|
|
/**
|
|
* Object used to keep track of urls that have already been added. This record
|
|
* allows the prevention of circular dependencies.
|
|
* @type {Object}
|
|
* @private
|
|
*/
|
|
goog.included_ = {};
|
|
|
|
|
|
/**
|
|
* This object is used to keep track of dependencies and other data that is
|
|
* used for loading scripts.
|
|
* @private
|
|
* @type {Object}
|
|
*/
|
|
goog.dependencies_ = {
|
|
nameToPath: {}, // many to 1
|
|
requires: {}, // 1 to many
|
|
// Used when resolving dependencies to prevent us from visiting file twice.
|
|
visited: {},
|
|
written: {} // Used to keep track of script files we have written.
|
|
};
|
|
|
|
|
|
/**
|
|
* Tries to detect whether is in the context of an HTML document.
|
|
* @return {boolean} True if it looks like HTML document.
|
|
* @private
|
|
*/
|
|
goog.inHtmlDocument_ = function() {
|
|
var doc = goog.global.document;
|
|
return typeof doc != 'undefined' &&
|
|
'write' in doc; // XULDocument misses write.
|
|
};
|
|
|
|
|
|
/**
|
|
* Tries to detect the base path of base.js script that bootstraps Closure.
|
|
* @private
|
|
*/
|
|
goog.findBasePath_ = function() {
|
|
if (goog.global.CLOSURE_BASE_PATH) {
|
|
goog.basePath = goog.global.CLOSURE_BASE_PATH;
|
|
return;
|
|
} else if (!goog.inHtmlDocument_()) {
|
|
return;
|
|
}
|
|
var doc = goog.global.document;
|
|
var scripts = doc.getElementsByTagName('script');
|
|
// Search backwards since the current script is in almost all cases the one
|
|
// that has base.js.
|
|
for (var i = scripts.length - 1; i >= 0; --i) {
|
|
var src = scripts[i].src;
|
|
var qmark = src.lastIndexOf('?');
|
|
var l = qmark == -1 ? src.length : qmark;
|
|
if (src.substr(l - 7, 7) == 'base.js') {
|
|
goog.basePath = src.substr(0, l - 7);
|
|
return;
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Imports a script if, and only if, that script hasn't already been imported.
|
|
* (Must be called at execution time)
|
|
* @param {string} src Script source.
|
|
* @param {string=} opt_sourceText The optionally source text to evaluate
|
|
* @private
|
|
*/
|
|
goog.importScript_ = function(src, opt_sourceText) {
|
|
var importScript = goog.global.CLOSURE_IMPORT_SCRIPT ||
|
|
goog.writeScriptTag_;
|
|
if (importScript(src, opt_sourceText)) {
|
|
goog.dependencies_.written[src] = true;
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* The default implementation of the import function. Writes a script tag to
|
|
* import the script.
|
|
*
|
|
* @param {string} src The script url.
|
|
* @param {string=} opt_sourceText The optionally source text to evaluate
|
|
* @return {boolean} True if the script was imported, false otherwise.
|
|
* @private
|
|
*/
|
|
goog.writeScriptTag_ = function(src, opt_sourceText) {
|
|
if (goog.inHtmlDocument_()) {
|
|
var doc = goog.global.document;
|
|
|
|
// If the user tries to require a new symbol after document load,
|
|
// something has gone terribly wrong. Doing a document.write would
|
|
// wipe out the page.
|
|
if (doc.readyState == 'complete') {
|
|
// Certain test frameworks load base.js multiple times, which tries
|
|
// to write deps.js each time. If that happens, just fail silently.
|
|
// These frameworks wipe the page between each load of base.js, so this
|
|
// is OK.
|
|
var isDeps = /\bdeps.js$/.test(src);
|
|
if (isDeps) {
|
|
return false;
|
|
} else {
|
|
throw Error('Cannot write "' + src + '" after document load');
|
|
}
|
|
}
|
|
|
|
if (opt_sourceText === undefined) {
|
|
doc.write(
|
|
'<script type="text/javascript" src="' +
|
|
src + '"></' + 'script>');
|
|
} else {
|
|
doc.write(
|
|
'<script type="text/javascript">' +
|
|
opt_sourceText + '</' + 'script>');
|
|
}
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Resolves dependencies based on the dependencies added using addDependency
|
|
* and calls importScript_ in the correct order.
|
|
* @private
|
|
*/
|
|
goog.writeScripts_ = function() {
|
|
// The scripts we need to write this time.
|
|
var scripts = [];
|
|
var seenScript = {};
|
|
var deps = goog.dependencies_;
|
|
|
|
function visitNode(path) {
|
|
if (path in deps.written) {
|
|
return;
|
|
}
|
|
|
|
// We have already visited this one. We can get here if we have cyclic
|
|
// dependencies.
|
|
if (path in deps.visited) {
|
|
if (!(path in seenScript)) {
|
|
seenScript[path] = true;
|
|
scripts.push(path);
|
|
}
|
|
return;
|
|
}
|
|
|
|
deps.visited[path] = true;
|
|
|
|
if (path in deps.requires) {
|
|
for (var requireName in deps.requires[path]) {
|
|
// If the required name is defined, we assume that it was already
|
|
// bootstrapped by other means.
|
|
if (!goog.isProvided_(requireName)) {
|
|
if (requireName in deps.nameToPath) {
|
|
visitNode(deps.nameToPath[requireName]);
|
|
} else {
|
|
throw Error('Undefined nameToPath for ' + requireName);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!(path in seenScript)) {
|
|
seenScript[path] = true;
|
|
scripts.push(path);
|
|
}
|
|
}
|
|
|
|
for (var path in goog.included_) {
|
|
if (!deps.written[path]) {
|
|
visitNode(path);
|
|
}
|
|
}
|
|
|
|
// record that we are going to load all these scripts.
|
|
for (var i = 0; i < scripts.length; i++) {
|
|
var path = scripts[i];
|
|
goog.dependencies_.written[path] = true;
|
|
}
|
|
|
|
for (var i = 0; i < scripts.length; i++) {
|
|
var path = scripts[i];
|
|
if (path) {
|
|
goog.importScript_(goog.basePath + path);
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* Looks at the dependency rules and tries to determine the script file that
|
|
* fulfills a particular rule.
|
|
* @param {string} rule In the form goog.namespace.Class or project.script.
|
|
* @return {?string} Url corresponding to the rule, or null.
|
|
* @private
|
|
*/
|
|
goog.getPathFromDeps_ = function(rule) {
|
|
if (rule in goog.dependencies_.nameToPath) {
|
|
return goog.dependencies_.nameToPath[rule];
|
|
} else {
|
|
return null;
|
|
}
|
|
};
|
|
|
|
goog.findBasePath_();
|
|
|
|
// Allow projects to manage the deps files themselves.
|
|
if (!goog.global.CLOSURE_NO_DEPS) {
|
|
goog.importScript_(goog.basePath + 'deps.js');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
//==============================================================================
|
|
// Language Enhancements
|
|
//==============================================================================
|
|
|
|
|
|
/**
|
|
* Returns true if the specified value is defined and not null.
|
|
* @param {?} val Variable to test.
|
|
* @return {boolean} Whether variable is defined and not null.
|
|
*/
|
|
goog.isDefAndNotNull = function(val) {
|
|
// Note that undefined == null.
|
|
return val != null;
|
|
};
|
|
|
|
|
|
/**
|
|
* Returns true if the specified value is a string.
|
|
* @param {?} val Variable to test.
|
|
* @return {boolean} Whether variable is a string.
|
|
*/
|
|
goog.isString = function(val) {
|
|
return typeof val == 'string';
|
|
};
|
|
|
|
|
|
/**
|
|
* Exposes an unobfuscated global namespace path for the given object.
|
|
* Note that fields of the exported object *will* be obfuscated, unless they are
|
|
* exported in turn via this function or goog.exportProperty.
|
|
*
|
|
* Also handy for making public items that are defined in anonymous closures.
|
|
*
|
|
* ex. goog.exportSymbol('public.path.Foo', Foo);
|
|
*
|
|
* ex. goog.exportSymbol('public.path.Foo.staticFunction', Foo.staticFunction);
|
|
* public.path.Foo.staticFunction();
|
|
*
|
|
* ex. goog.exportSymbol('public.path.Foo.prototype.myMethod',
|
|
* Foo.prototype.myMethod);
|
|
* new public.path.Foo().myMethod();
|
|
*
|
|
* @param {string} publicPath Unobfuscated name to export.
|
|
* @param {*} object Object the name should point to.
|
|
* @param {Object=} opt_objectToExportTo The object to add the path to; default
|
|
* is goog.global.
|
|
*/
|
|
goog.exportSymbol = function(publicPath, object, opt_objectToExportTo) {
|
|
goog.exportPath_(publicPath, object, opt_objectToExportTo);
|
|
};
|
|
|
|
|
|
/**
|
|
* Exports a property unobfuscated into the object's namespace.
|
|
* ex. goog.exportProperty(Foo, 'staticFunction', Foo.staticFunction);
|
|
* ex. goog.exportProperty(Foo.prototype, 'myMethod', Foo.prototype.myMethod);
|
|
* @param {Object} object Object whose static property is being exported.
|
|
* @param {string} publicName Unobfuscated name to export.
|
|
* @param {*} symbol Object the name should point to.
|
|
*/
|
|
goog.exportProperty = function(object, publicName, symbol) {
|
|
object[publicName] = symbol;
|
|
};
|
|
|
|
|
|
/**
|
|
* Inherit the prototype methods from one constructor into another.
|
|
*
|
|
* Usage:
|
|
* <pre>
|
|
* function ParentClass(a, b) { }
|
|
* ParentClass.prototype.foo = function(a) { };
|
|
*
|
|
* function ChildClass(a, b, c) {
|
|
* ChildClass.base(this, 'constructor', a, b);
|
|
* }
|
|
* goog.inherits(ChildClass, ParentClass);
|
|
*
|
|
* var child = new ChildClass('a', 'b', 'see');
|
|
* child.foo(); // This works.
|
|
* </pre>
|
|
*
|
|
* @param {Function} childCtor Child class.
|
|
* @param {Function} parentCtor Parent class.
|
|
*/
|
|
goog.inherits = function(childCtor, parentCtor) {
|
|
/** @constructor */
|
|
function tempCtor() {};
|
|
tempCtor.prototype = parentCtor.prototype;
|
|
childCtor.superClass_ = parentCtor.prototype;
|
|
childCtor.prototype = new tempCtor();
|
|
/** @override */
|
|
childCtor.prototype.constructor = childCtor;
|
|
|
|
/**
|
|
* Calls superclass constructor/method.
|
|
*
|
|
* This function is only available if you use goog.inherits to
|
|
* express inheritance relationships between classes.
|
|
*
|
|
* NOTE: This is a replacement for goog.base and for superClass_
|
|
* property defined in childCtor.
|
|
*
|
|
* @param {!Object} me Should always be "this".
|
|
* @param {string} methodName The method name to call. Calling
|
|
* superclass constructor can be done with the special string
|
|
* 'constructor'.
|
|
* @param {...*} var_args The arguments to pass to superclass
|
|
* method/constructor.
|
|
* @return {*} The return value of the superclass method/constructor.
|
|
*/
|
|
childCtor.base = function(me, methodName, var_args) {
|
|
var args = Array.prototype.slice.call(arguments, 2);
|
|
return parentCtor.prototype[methodName].apply(me, args);
|
|
};
|
|
};
|
|
|
|
|
|
/*
|
|
* To support uncompiled, strict mode bundles that use eval to divide source
|
|
* like so:
|
|
* eval('someSource;//# sourceUrl sourcefile.js');
|
|
* We need to export the globally defined symbols "goog" and "COMPILED".
|
|
* Exporting "goog" breaks the compiler optimizations, so we required that
|
|
* be defined externally.
|
|
* NOTE: We don't use goog.exportSymbol here because we don't want to trigger
|
|
* extern generation when that compiler option is enabled.
|
|
*/
|
|
if (!COMPILED) {
|
|
goog.global['COMPILED'] = COMPILED;
|
|
}
|