123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /*
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /**
- * @constructor
- * @param {WebInspector.SimpleWorkspaceProvider} networkWorkspaceProvider
- * @param {WebInspector.Workspace} workspace
- */
- WebInspector.NetworkUISourceCodeProvider = function(networkWorkspaceProvider, workspace)
- {
- this._networkWorkspaceProvider = networkWorkspaceProvider;
- this._workspace = workspace;
- WebInspector.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.ResourceAdded, this._resourceAdded, this);
- WebInspector.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes.MainFrameNavigated, this._mainFrameNavigated, this);
- WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.ParsedScriptSource, this._parsedScriptSource, this);
- WebInspector.cssModel.addEventListener(WebInspector.CSSStyleModel.Events.StyleSheetAdded, this._styleSheetAdded, this);
- this._processedURLs = {};
- }
- WebInspector.NetworkUISourceCodeProvider.prototype = {
- _populate: function()
- {
- function populateFrame(frame)
- {
- for (var i = 0; i < frame.childFrames.length; ++i)
- populateFrame.call(this, frame.childFrames[i]);
- var resources = frame.resources();
- for (var i = 0; i < resources.length; ++i)
- this._resourceAdded({data:resources[i]});
- }
- populateFrame.call(this, WebInspector.resourceTreeModel.mainFrame);
- },
- /**
- * @param {WebInspector.Event} event
- */
- _parsedScriptSource: function(event)
- {
- var script = /** @type {WebInspector.Script} */ (event.data);
- if (!script.sourceURL || script.isInlineScript() || script.isSnippet())
- return;
- // Filter out embedder injected content scripts.
- if (script.isContentScript && !script.hasSourceURL) {
- var parsedURL = new WebInspector.ParsedURL(script.sourceURL);
- if (!parsedURL.host)
- return;
- }
- this._addFile(script.sourceURL, script, script.isContentScript);
- },
- /**
- * @param {WebInspector.Event} event
- */
- _styleSheetAdded: function(event)
- {
- var header = /** @type {WebInspector.CSSStyleSheetHeader} */ (event.data);
- if ((!header.hasSourceURL || header.isInline) && header.origin !== "inspector")
- return;
- this._addFile(header.resourceURL(), header, false);
- },
- /**
- * @param {WebInspector.Event} event
- */
- _resourceAdded: function(event)
- {
- var resource = /** @type {WebInspector.Resource} */ (event.data);
- this._addFile(resource.url, resource);
- },
- /**
- * @param {WebInspector.Event} event
- */
- _mainFrameNavigated: function(event)
- {
- this._reset();
- },
- /**
- * @param {string} url
- * @param {WebInspector.ContentProvider} contentProvider
- * @param {boolean=} isContentScript
- */
- _addFile: function(url, contentProvider, isContentScript)
- {
- if (this._workspace.hasMappingForURL(url))
- return;
- var type = contentProvider.contentType();
- if (type !== WebInspector.resourceTypes.Stylesheet && type !== WebInspector.resourceTypes.Document && type !== WebInspector.resourceTypes.Script)
- return;
- if (this._processedURLs[url])
- return;
- var mimeType = type.canonicalMimeType();
- var overridingContentProvider = new WebInspector.ContentProviderOverridingMimeType(contentProvider, mimeType);
- this._processedURLs[url] = true;
- var isEditable = type !== WebInspector.resourceTypes.Document;
- this._networkWorkspaceProvider.addFileForURL(url, overridingContentProvider, isEditable, isContentScript);
- },
- _reset: function()
- {
- this._processedURLs = {};
- this._networkWorkspaceProvider.reset();
- this._populate();
- }
- }
- /**
- * @type {?WebInspector.SimpleWorkspaceProvider}
- */
- WebInspector.networkWorkspaceProvider = null;
|