/* * Copyright (C) 2008 Apple Inc. All Rights Reserved. * Copyright (C) 2011 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: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 APPLE INC. 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. */ importScript("BreakpointsSidebarPane.js"); importScript("CallStackSidebarPane.js"); importScript("FilteredItemSelectionDialog.js"); importScript("UISourceCodeFrame.js"); importScript("JavaScriptSourceFrame.js"); importScript("NavigatorOverlayController.js"); importScript("NavigatorView.js"); importScript("RevisionHistoryView.js"); importScript("ScopeChainSidebarPane.js"); importScript("ScriptsNavigator.js"); importScript("ScriptsSearchScope.js"); importScript("SnippetJavaScriptSourceFrame.js"); importScript("StyleSheetOutlineDialog.js"); importScript("TabbedEditorContainer.js"); importScript("WatchExpressionsSidebarPane.js"); importScript("WorkersSidebarPane.js"); /** * @constructor * @implements {WebInspector.TabbedEditorContainerDelegate} * @implements {WebInspector.ContextMenu.Provider} * @extends {WebInspector.Panel} * @param {WebInspector.Workspace=} workspaceForTest */ WebInspector.ScriptsPanel = function(workspaceForTest) { WebInspector.Panel.call(this, "scripts"); this.registerRequiredCSS("scriptsPanel.css"); WebInspector.settings.navigatorWasOnceHidden = WebInspector.settings.createSetting("navigatorWasOnceHidden", false); WebInspector.settings.debuggerSidebarHidden = WebInspector.settings.createSetting("debuggerSidebarHidden", false); this._workspace = workspaceForTest || WebInspector.workspace; function viewGetter() { return this.visibleView; } WebInspector.GoToLineDialog.install(this, viewGetter.bind(this)); var helpSection = WebInspector.shortcutsScreen.section(WebInspector.UIString("Sources Panel")); this.debugToolbar = this._createDebugToolbar(); const initialDebugSidebarWidth = 225; const minimumDebugSidebarWidthPercent = 50; this.createSidebarView(this.element, WebInspector.SidebarView.SidebarPosition.End, initialDebugSidebarWidth); this.splitView.element.id = "scripts-split-view"; this.splitView.setMinimumSidebarWidth(Preferences.minScriptsSidebarWidth); this.splitView.setMinimumMainWidthPercent(minimumDebugSidebarWidthPercent); this.debugSidebarResizeWidgetElement = document.createElement("div"); this.debugSidebarResizeWidgetElement.id = "scripts-debug-sidebar-resizer-widget"; this.splitView.installResizer(this.debugSidebarResizeWidgetElement); // Create scripts navigator const initialNavigatorWidth = 225; const minimumViewsContainerWidthPercent = 50; this.editorView = new WebInspector.SidebarView(WebInspector.SidebarView.SidebarPosition.Start, "scriptsPanelNavigatorSidebarWidth", initialNavigatorWidth); this.editorView.element.tabIndex = 0; this.editorView.setMinimumSidebarWidth(Preferences.minScriptsSidebarWidth); this.editorView.setMinimumMainWidthPercent(minimumViewsContainerWidthPercent); this.editorView.show(this.splitView.mainElement); this._navigator = new WebInspector.ScriptsNavigator(); this._navigator.view.show(this.editorView.sidebarElement); this._editorContainer = new WebInspector.TabbedEditorContainer(this, "previouslyViewedFiles"); this._editorContainer.show(this.editorView.mainElement); this._navigatorController = new WebInspector.NavigatorOverlayController(this.editorView, this._navigator.view, this._editorContainer.view); this._navigator.addEventListener(WebInspector.ScriptsNavigator.Events.ScriptSelected, this._scriptSelected, this); this._navigator.addEventListener(WebInspector.ScriptsNavigator.Events.SnippetCreationRequested, this._snippetCreationRequested, this); this._navigator.addEventListener(WebInspector.ScriptsNavigator.Events.ItemRenamingRequested, this._itemRenamingRequested, this); this._navigator.addEventListener(WebInspector.ScriptsNavigator.Events.FileRenamed, this._fileRenamed, this); this._editorContainer.addEventListener(WebInspector.TabbedEditorContainer.Events.EditorSelected, this._editorSelected, this); this._editorContainer.addEventListener(WebInspector.TabbedEditorContainer.Events.EditorClosed, this._editorClosed, this); this.splitView.mainElement.appendChild(this.debugSidebarResizeWidgetElement); this.sidebarPanes = {}; this.sidebarPanes.watchExpressions = new WebInspector.WatchExpressionsSidebarPane(); this.sidebarPanes.callstack = new WebInspector.CallStackSidebarPane(); this.sidebarPanes.scopechain = new WebInspector.ScopeChainSidebarPane(); this.sidebarPanes.jsBreakpoints = new WebInspector.JavaScriptBreakpointsSidebarPane(WebInspector.breakpointManager, this._showSourceLine.bind(this)); this.sidebarPanes.domBreakpoints = WebInspector.domBreakpointsSidebarPane.createProxy(this); this.sidebarPanes.xhrBreakpoints = new WebInspector.XHRBreakpointsSidebarPane(); this.sidebarPanes.eventListenerBreakpoints = new WebInspector.EventListenerBreakpointsSidebarPane(); if (Capabilities.canInspectWorkers && !WebInspector.WorkerManager.isWorkerFrontend()) { WorkerAgent.enable(); this.sidebarPanes.workerList = new WebInspector.WorkersSidebarPane(WebInspector.workerManager); } this.sidebarPanes.callstack.registerShortcuts(this.registerShortcuts.bind(this)); this.registerShortcuts(WebInspector.ScriptsPanelDescriptor.ShortcutKeys.EvaluateSelectionInConsole, this._evaluateSelectionInConsole.bind(this)); this.registerShortcuts(WebInspector.ScriptsPanelDescriptor.ShortcutKeys.GoToMember, this._showOutlineDialog.bind(this)); this.registerShortcuts(WebInspector.ScriptsPanelDescriptor.ShortcutKeys.ToggleBreakpoint, this._toggleBreakpoint.bind(this)); var panelEnablerHeading = WebInspector.UIString("You need to enable debugging before you can use the Scripts panel."); var panelEnablerDisclaimer = WebInspector.UIString("Enabling debugging will make scripts run slower."); var panelEnablerButton = WebInspector.UIString("Enable Debugging"); this.panelEnablerView = new WebInspector.PanelEnablerView("scripts", panelEnablerHeading, panelEnablerDisclaimer, panelEnablerButton); this.panelEnablerView.addEventListener("enable clicked", this._enableDebugging, this); this.enableToggleButton = new WebInspector.StatusBarButton("", "enable-toggle-status-bar-item"); this.enableToggleButton.addEventListener("click", this._toggleDebugging, this); if (!Capabilities.debuggerCausesRecompilation) this.enableToggleButton.element.addStyleClass("hidden"); this._pauseOnExceptionButton = new WebInspector.StatusBarButton("", "scripts-pause-on-exceptions-status-bar-item", 3); this._pauseOnExceptionButton.addEventListener("click", this._togglePauseOnExceptions, this); this._toggleFormatSourceButton = new WebInspector.StatusBarButton(WebInspector.UIString("Pretty print"), "scripts-toggle-pretty-print-status-bar-item"); this._toggleFormatSourceButton.toggled = false; this._toggleFormatSourceButton.addEventListener("click", this._toggleFormatSource, this); this._scriptViewStatusBarItemsContainer = document.createElement("div"); this._scriptViewStatusBarItemsContainer.className = "inline-block"; this._scriptViewStatusBarTextContainer = document.createElement("div"); this._scriptViewStatusBarTextContainer.className = "inline-block"; this._installDebuggerSidebarController(); WebInspector.dockController.addEventListener(WebInspector.DockController.Events.DockSideChanged, this._dockSideChanged.bind(this)); WebInspector.settings.splitVerticallyWhenDockedToRight.addChangeListener(this._dockSideChanged.bind(this)); this._dockSideChanged(); this._sourceFramesByUISourceCode = new Map(); this._updateDebuggerButtons(); this._pauseOnExceptionStateChanged(); if (WebInspector.debuggerModel.isPaused()) this._debuggerPaused(); WebInspector.settings.pauseOnExceptionStateString.addChangeListener(this._pauseOnExceptionStateChanged, this); WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, this._debuggerWasEnabled, this); WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasDisabled, this._debuggerWasDisabled, this); WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerPaused, this._debuggerPaused, this); WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerResumed, this._debuggerResumed, this); WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.CallFrameSelected, this._callFrameSelected, this); WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.ConsoleCommandEvaluatedInSelectedCallFrame, this._consoleCommandEvaluatedInSelectedCallFrame, this); WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.ExecutionLineChanged, this._executionLineChanged, this); WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.BreakpointsActiveStateChanged, this._breakpointsActiveStateChanged, this); WebInspector.startBatchUpdate(); var uiSourceCodes = this._workspace.uiSourceCodes(); for (var i = 0; i < uiSourceCodes.length; ++i) this._addUISourceCode(uiSourceCodes[i]); WebInspector.endBatchUpdate(); this._workspace.addEventListener(WebInspector.UISourceCodeProvider.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this); this._workspace.addEventListener(WebInspector.UISourceCodeProvider.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this); this._workspace.addEventListener(WebInspector.Workspace.Events.ProjectWillReset, this._projectWillReset.bind(this), this); WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._debuggerReset, this); WebInspector.advancedSearchController.registerSearchScope(new WebInspector.ScriptsSearchScope(this._workspace)); } WebInspector.ScriptsPanel.prototype = { statusBarItems: function() { return [this.enableToggleButton.element, this._pauseOnExceptionButton.element, this._toggleFormatSourceButton.element, this._scriptViewStatusBarItemsContainer]; }, /** * @return {?Element} */ statusBarText: function() { return this._scriptViewStatusBarTextContainer; }, defaultFocusedElement: function() { return this._editorContainer.view.defaultFocusedElement() || this._navigator.view.defaultFocusedElement(); }, get paused() { return this._paused; }, wasShown: function() { WebInspector.Panel.prototype.wasShown.call(this); this._navigatorController.wasShown(); }, willHide: function() { WebInspector.Panel.prototype.willHide.call(this); WebInspector.closeViewInDrawer(); }, /** * @param {WebInspector.Event} event */ _uiSourceCodeAdded: function(event) { var uiSourceCode = /** @type {WebInspector.UISourceCode} */ (event.data); this._addUISourceCode(uiSourceCode); }, /** * @param {WebInspector.UISourceCode} uiSourceCode */ _addUISourceCode: function(uiSourceCode) { if (this._toggleFormatSourceButton.toggled) uiSourceCode.setFormatted(true); if (uiSourceCode.project().isServiceProject()) return; this._navigator.addUISourceCode(uiSourceCode); this._editorContainer.addUISourceCode(uiSourceCode); // Replace debugger script-based uiSourceCode with a network-based one. var currentUISourceCode = this._currentUISourceCode; if (currentUISourceCode && currentUISourceCode.project().isServiceProject() && currentUISourceCode !== uiSourceCode && currentUISourceCode.url === uiSourceCode.url) { this._showFile(uiSourceCode); this._editorContainer.removeUISourceCode(currentUISourceCode); } }, _uiSourceCodeRemoved: function(event) { var uiSourceCode = /** @type {WebInspector.UISourceCode} */ (event.data); this._removeUISourceCodes([uiSourceCode]); }, /** * @param {Array.} uiSourceCodes */ _removeUISourceCodes: function(uiSourceCodes) { for (var i = 0; i < uiSourceCodes.length; ++i) { this._navigator.removeUISourceCode(uiSourceCodes[i]); this._removeSourceFrame(uiSourceCodes[i]); } this._editorContainer.removeUISourceCodes(uiSourceCodes); }, _consoleCommandEvaluatedInSelectedCallFrame: function(event) { this.sidebarPanes.scopechain.update(WebInspector.debuggerModel.selectedCallFrame()); }, _debuggerPaused: function() { var details = WebInspector.debuggerModel.debuggerPausedDetails(); this._paused = true; this._waitingToPause = false; this._stepping = false; this._updateDebuggerButtons(); WebInspector.inspectorView.setCurrentPanel(this); this.sidebarPanes.callstack.update(details.callFrames); if (details.reason === WebInspector.DebuggerModel.BreakReason.DOM) { WebInspector.domBreakpointsSidebarPane.highlightBreakpoint(details.auxData); function didCreateBreakpointHitStatusMessage(element) { this.sidebarPanes.callstack.setStatus(element); } WebInspector.domBreakpointsSidebarPane.createBreakpointHitStatusMessage(details.auxData, didCreateBreakpointHitStatusMessage.bind(this)); } else if (details.reason === WebInspector.DebuggerModel.BreakReason.EventListener) { var eventName = details.auxData.eventName; this.sidebarPanes.eventListenerBreakpoints.highlightBreakpoint(details.auxData.eventName); var eventNameForUI = WebInspector.EventListenerBreakpointsSidebarPane.eventNameForUI(eventName); this.sidebarPanes.callstack.setStatus(WebInspector.UIString("Paused on a \"%s\" Event Listener.", eventNameForUI)); } else if (details.reason === WebInspector.DebuggerModel.BreakReason.XHR) { this.sidebarPanes.xhrBreakpoints.highlightBreakpoint(details.auxData["breakpointURL"]); this.sidebarPanes.callstack.setStatus(WebInspector.UIString("Paused on a XMLHttpRequest.")); } else if (details.reason === WebInspector.DebuggerModel.BreakReason.Exception) this.sidebarPanes.callstack.setStatus(WebInspector.UIString("Paused on exception: '%s'.", details.auxData.description)); else if (details.reason === WebInspector.DebuggerModel.BreakReason.Assert) this.sidebarPanes.callstack.setStatus(WebInspector.UIString("Paused on assertion.")); else if (details.reason === WebInspector.DebuggerModel.BreakReason.CSPViolation) this.sidebarPanes.callstack.setStatus(WebInspector.UIString("Paused on a script blocked due to Content Security Policy directive: \"%s\".", details.auxData["directiveText"])); else { function didGetUILocation(uiLocation) { var breakpoint = WebInspector.breakpointManager.findBreakpoint(uiLocation.uiSourceCode, uiLocation.lineNumber); if (!breakpoint) return; this.sidebarPanes.jsBreakpoints.highlightBreakpoint(breakpoint); this.sidebarPanes.callstack.setStatus(WebInspector.UIString("Paused on a JavaScript breakpoint.")); } if (details.callFrames.length) details.callFrames[0].createLiveLocation(didGetUILocation.bind(this)); else console.warn("ScriptsPanel paused, but callFrames.length is zero."); // TODO remove this once we understand this case better } this._showDebuggerSidebar(); this._toggleDebuggerSidebarButton.setEnabled(false); window.focus(); InspectorFrontendHost.bringToFront(); }, _debuggerResumed: function() { this._paused = false; this._waitingToPause = false; this._stepping = false; this._clearInterface(); this._toggleDebuggerSidebarButton.setEnabled(true); }, _debuggerWasEnabled: function() { this._updateDebuggerButtons(); }, _debuggerWasDisabled: function() { this._debuggerReset(); }, _debuggerReset: function() { this._debuggerResumed(); this.sidebarPanes.watchExpressions.reset(); }, _projectWillReset: function(event) { var project = event.data; var uiSourceCodes = project.uiSourceCodes(); this._removeUISourceCodes(uiSourceCodes); if (project.type() === WebInspector.projectTypes.Network) this._editorContainer.reset(); }, get visibleView() { return this._editorContainer.visibleView; }, _updateScriptViewStatusBarItems: function() { this._scriptViewStatusBarItemsContainer.removeChildren(); this._scriptViewStatusBarTextContainer.removeChildren(); var sourceFrame = this.visibleView; if (sourceFrame) { var statusBarItems = sourceFrame.statusBarItems() || []; for (var i = 0; i < statusBarItems.length; ++i) this._scriptViewStatusBarItemsContainer.appendChild(statusBarItems[i]); var statusBarText = sourceFrame.statusBarText(); if (statusBarText) this._scriptViewStatusBarTextContainer.appendChild(statusBarText); } }, canShowAnchorLocation: function(anchor) { if (WebInspector.debuggerModel.debuggerEnabled() && anchor.uiSourceCode) return true; var uiSourceCode = WebInspector.workspace.uiSourceCodeForURL(anchor.href); if (uiSourceCode) { anchor.uiSourceCode = uiSourceCode; return true; } return false; }, showAnchorLocation: function(anchor) { this._showSourceLine(anchor.uiSourceCode, anchor.lineNumber); }, /** * @param {WebInspector.UISourceCode} uiSourceCode * @param {number} lineNumber */ showUISourceCode: function(uiSourceCode, lineNumber) { this._showSourceLine(uiSourceCode, lineNumber); }, /** * @param {WebInspector.UISourceCode} uiSourceCode * @param {number=} lineNumber */ _showSourceLine: function(uiSourceCode, lineNumber) { var sourceFrame = this._showFile(uiSourceCode); if (typeof lineNumber === "number") sourceFrame.highlightLine(lineNumber); sourceFrame.focus(); WebInspector.notifications.dispatchEventToListeners(WebInspector.UserMetrics.UserAction, { action: WebInspector.UserMetrics.UserActionNames.OpenSourceLink, url: uiSourceCode.originURL(), lineNumber: lineNumber }); }, /** * @param {WebInspector.UISourceCode} uiSourceCode * @return {WebInspector.SourceFrame} */ _showFile: function(uiSourceCode) { var sourceFrame = this._getOrCreateSourceFrame(uiSourceCode); if (this._currentUISourceCode === uiSourceCode) return sourceFrame; this._currentUISourceCode = uiSourceCode; if (!uiSourceCode.project().isServiceProject()) this._navigator.revealUISourceCode(uiSourceCode, true); this._editorContainer.showFile(uiSourceCode); this._updateScriptViewStatusBarItems(); return sourceFrame; }, /** * @param {WebInspector.UISourceCode} uiSourceCode * @return {WebInspector.SourceFrame} */ _createSourceFrame: function(uiSourceCode) { var sourceFrame; switch (uiSourceCode.contentType()) { case WebInspector.resourceTypes.Script: if (uiSourceCode.project().type() === WebInspector.projectTypes.Snippets) sourceFrame = new WebInspector.SnippetJavaScriptSourceFrame(this, uiSourceCode); else sourceFrame = new WebInspector.JavaScriptSourceFrame(this, uiSourceCode); break; case WebInspector.resourceTypes.Document: sourceFrame = new WebInspector.JavaScriptSourceFrame(this, uiSourceCode); break; case WebInspector.resourceTypes.Stylesheet: default: sourceFrame = new WebInspector.UISourceCodeFrame(uiSourceCode); break; } this._sourceFramesByUISourceCode.put(uiSourceCode, sourceFrame); return sourceFrame; }, /** * @param {WebInspector.UISourceCode} uiSourceCode * @return {WebInspector.SourceFrame} */ _getOrCreateSourceFrame: function(uiSourceCode) { return this._sourceFramesByUISourceCode.get(uiSourceCode) || this._createSourceFrame(uiSourceCode); }, /** * @param {WebInspector.UISourceCode} uiSourceCode * @return {WebInspector.SourceFrame} */ viewForFile: function(uiSourceCode) { return this._getOrCreateSourceFrame(uiSourceCode); }, /** * @param {WebInspector.UISourceCode} uiSourceCode */ _removeSourceFrame: function(uiSourceCode) { var sourceFrame = this._sourceFramesByUISourceCode.get(uiSourceCode); if (!sourceFrame) return; this._sourceFramesByUISourceCode.remove(uiSourceCode); sourceFrame.dispose(); }, _clearCurrentExecutionLine: function() { if (this._executionSourceFrame) this._executionSourceFrame.clearExecutionLine(); delete this._executionSourceFrame; }, _executionLineChanged: function(event) { var uiLocation = event.data; this._clearCurrentExecutionLine(); if (!uiLocation) return; var sourceFrame = this._getOrCreateSourceFrame(uiLocation.uiSourceCode); sourceFrame.setExecutionLine(uiLocation.lineNumber); this._executionSourceFrame = sourceFrame; }, _revealExecutionLine: function(uiLocation) { var uiSourceCode = uiLocation.uiSourceCode; // Some scripts (anonymous and snippets evaluations) are not added to files select by default. if (this._currentUISourceCode && this._currentUISourceCode.scriptFile() && this._currentUISourceCode.scriptFile().isDivergingFromVM()) return; if (this._toggleFormatSourceButton.toggled && !uiSourceCode.formatted()) uiSourceCode.setFormatted(true); var sourceFrame = this._showFile(uiSourceCode); sourceFrame.revealLine(uiLocation.lineNumber); sourceFrame.focus(); }, _callFrameSelected: function(event) { var callFrame = event.data; if (!callFrame) return; this.sidebarPanes.scopechain.update(callFrame); this.sidebarPanes.watchExpressions.refreshExpressions(); this.sidebarPanes.callstack.setSelectedCallFrame(callFrame); callFrame.createLiveLocation(this._revealExecutionLine.bind(this)); }, _editorClosed: function(event) { this._navigatorController.hideNavigatorOverlay(); var uiSourceCode = /** @type {WebInspector.UISourceCode} */ (event.data); if (this._currentUISourceCode === uiSourceCode) delete this._currentUISourceCode; // ScriptsNavigator does not need to update on EditorClosed. this._updateScriptViewStatusBarItems(); WebInspector.searchController.resetSearch(); }, _editorSelected: function(event) { var uiSourceCode = /** @type {WebInspector.UISourceCode} */ (event.data); var sourceFrame = this._showFile(uiSourceCode); this._navigatorController.hideNavigatorOverlay(); sourceFrame.focus(); WebInspector.searchController.resetSearch(); }, _scriptSelected: function(event) { var uiSourceCode = /** @type {WebInspector.UISourceCode} */ (event.data.uiSourceCode); var sourceFrame = this._showFile(uiSourceCode); this._navigatorController.hideNavigatorOverlay(); if (sourceFrame && event.data.focusSource) sourceFrame.focus(); }, _pauseOnExceptionStateChanged: function() { var pauseOnExceptionsState = WebInspector.settings.pauseOnExceptionStateString.get(); switch (pauseOnExceptionsState) { case WebInspector.DebuggerModel.PauseOnExceptionsState.DontPauseOnExceptions: this._pauseOnExceptionButton.title = WebInspector.UIString("Don't pause on exceptions.\nClick to Pause on all exceptions."); break; case WebInspector.DebuggerModel.PauseOnExceptionsState.PauseOnAllExceptions: this._pauseOnExceptionButton.title = WebInspector.UIString("Pause on all exceptions.\nClick to Pause on uncaught exceptions."); break; case WebInspector.DebuggerModel.PauseOnExceptionsState.PauseOnUncaughtExceptions: this._pauseOnExceptionButton.title = WebInspector.UIString("Pause on uncaught exceptions.\nClick to Not pause on exceptions."); break; } this._pauseOnExceptionButton.state = pauseOnExceptionsState; }, _updateDebuggerButtons: function() { if (WebInspector.debuggerModel.debuggerEnabled()) { this.enableToggleButton.title = WebInspector.UIString("Debugging enabled. Click to disable."); this.enableToggleButton.toggled = true; this._pauseOnExceptionButton.visible = true; this.panelEnablerView.detach(); } else { this.enableToggleButton.title = WebInspector.UIString("Debugging disabled. Click to enable."); this.enableToggleButton.toggled = false; this._pauseOnExceptionButton.visible = false; this.panelEnablerView.show(this.element); } if (this._paused) { this._updateButtonTitle(this.pauseButton, WebInspector.UIString("Resume script execution (%s).")) this.pauseButton.addStyleClass("paused"); this.pauseButton.disabled = false; this.stepOverButton.disabled = false; this.stepIntoButton.disabled = false; this.stepOutButton.disabled = false; this.debuggerStatusElement.textContent = WebInspector.UIString("Paused"); } else { this._updateButtonTitle(this.pauseButton, WebInspector.UIString("Pause script execution (%s).")) this.pauseButton.removeStyleClass("paused"); this.pauseButton.disabled = this._waitingToPause; this.stepOverButton.disabled = true; this.stepIntoButton.disabled = true; this.stepOutButton.disabled = true; if (this._waitingToPause) this.debuggerStatusElement.textContent = WebInspector.UIString("Pausing"); else if (this._stepping) this.debuggerStatusElement.textContent = WebInspector.UIString("Stepping"); else this.debuggerStatusElement.textContent = ""; } }, _clearInterface: function() { this.sidebarPanes.callstack.update(null); this.sidebarPanes.scopechain.update(null); this.sidebarPanes.jsBreakpoints.clearBreakpointHighlight(); WebInspector.domBreakpointsSidebarPane.clearBreakpointHighlight(); this.sidebarPanes.eventListenerBreakpoints.clearBreakpointHighlight(); this.sidebarPanes.xhrBreakpoints.clearBreakpointHighlight(); this._clearCurrentExecutionLine(); this._updateDebuggerButtons(); }, _enableDebugging: function() { this._toggleDebugging(this.panelEnablerView.alwaysEnabled); }, _toggleDebugging: function(optionalAlways) { this._paused = false; this._waitingToPause = false; this._stepping = false; if (WebInspector.debuggerModel.debuggerEnabled()) { WebInspector.settings.debuggerEnabled.set(false); WebInspector.debuggerModel.disableDebugger(); } else { WebInspector.settings.debuggerEnabled.set(!!optionalAlways); WebInspector.debuggerModel.enableDebugger(); } }, _togglePauseOnExceptions: function() { var nextStateMap = {}; var stateEnum = WebInspector.DebuggerModel.PauseOnExceptionsState; nextStateMap[stateEnum.DontPauseOnExceptions] = stateEnum.PauseOnAllExceptions; nextStateMap[stateEnum.PauseOnAllExceptions] = stateEnum.PauseOnUncaughtExceptions; nextStateMap[stateEnum.PauseOnUncaughtExceptions] = stateEnum.DontPauseOnExceptions; WebInspector.settings.pauseOnExceptionStateString.set(nextStateMap[this._pauseOnExceptionButton.state]); }, /** * @param {Event=} event * @return {boolean} */ _togglePause: function(event) { if (this._paused) { this._paused = false; this._waitingToPause = false; DebuggerAgent.resume(); } else { this._stepping = false; this._waitingToPause = true; DebuggerAgent.pause(); } this._clearInterface(); return true; }, /** * @param {Event=} event * @return {boolean} */ _stepOverClicked: function(event) { if (!this._paused) return true; this._paused = false; this._stepping = true; this._clearInterface(); DebuggerAgent.stepOver(); return true; }, /** * @param {Event=} event * @return {boolean} */ _stepIntoClicked: function(event) { if (!this._paused) return true; this._paused = false; this._stepping = true; this._clearInterface(); DebuggerAgent.stepInto(); return true; }, /** * @param {Event=} event * @return {boolean} */ _stepOutClicked: function(event) { if (!this._paused) return true; this._paused = false; this._stepping = true; this._clearInterface(); DebuggerAgent.stepOut(); return true; }, _toggleBreakpointsClicked: function(event) { WebInspector.debuggerModel.setBreakpointsActive(!WebInspector.debuggerModel.breakpointsActive()); }, _breakpointsActiveStateChanged: function(event) { var active = event.data; this._toggleBreakpointsButton.toggled = active; if (active) { this._toggleBreakpointsButton.title = WebInspector.UIString("Deactivate breakpoints."); WebInspector.inspectorView.element.removeStyleClass("breakpoints-deactivated"); this.sidebarPanes.jsBreakpoints.listElement.removeStyleClass("breakpoints-list-deactivated"); } else { this._toggleBreakpointsButton.title = WebInspector.UIString("Activate breakpoints."); WebInspector.inspectorView.element.addStyleClass("breakpoints-deactivated"); this.sidebarPanes.jsBreakpoints.listElement.addStyleClass("breakpoints-list-deactivated"); } }, /** * @param {Event=} event * @return {boolean} */ _evaluateSelectionInConsole: function(event) { var selection = window.getSelection(); if (selection.type !== "Range" || selection.isCollapsed) return false; WebInspector.evaluateInConsole(selection.toString()); return true; }, _createDebugToolbar: function() { var debugToolbar = document.createElement("div"); debugToolbar.className = "status-bar"; debugToolbar.id = "scripts-debug-toolbar"; var title, handler; var platformSpecificModifier = WebInspector.KeyboardShortcut.Modifiers.CtrlOrMeta; // Continue. handler = this._togglePause.bind(this); this.pauseButton = this._createButtonAndRegisterShortcuts("scripts-pause", "", handler, WebInspector.ScriptsPanelDescriptor.ShortcutKeys.PauseContinue); debugToolbar.appendChild(this.pauseButton); // Step over. title = WebInspector.UIString("Step over next function call (%s)."); handler = this._stepOverClicked.bind(this); this.stepOverButton = this._createButtonAndRegisterShortcuts("scripts-step-over", title, handler, WebInspector.ScriptsPanelDescriptor.ShortcutKeys.StepOver); debugToolbar.appendChild(this.stepOverButton); // Step into. title = WebInspector.UIString("Step into next function call (%s)."); handler = this._stepIntoClicked.bind(this); this.stepIntoButton = this._createButtonAndRegisterShortcuts("scripts-step-into", title, handler, WebInspector.ScriptsPanelDescriptor.ShortcutKeys.StepInto); debugToolbar.appendChild(this.stepIntoButton); // Step out. title = WebInspector.UIString("Step out of current function (%s)."); handler = this._stepOutClicked.bind(this); this.stepOutButton = this._createButtonAndRegisterShortcuts("scripts-step-out", title, handler, WebInspector.ScriptsPanelDescriptor.ShortcutKeys.StepOut); debugToolbar.appendChild(this.stepOutButton); this._toggleBreakpointsButton = new WebInspector.StatusBarButton(WebInspector.UIString("Deactivate breakpoints."), "toggle-breakpoints"); this._toggleBreakpointsButton.toggled = true; this._toggleBreakpointsButton.addEventListener("click", this._toggleBreakpointsClicked, this); debugToolbar.appendChild(this._toggleBreakpointsButton.element); this.debuggerStatusElement = document.createElement("div"); this.debuggerStatusElement.id = "scripts-debugger-status"; debugToolbar.appendChild(this.debuggerStatusElement); return debugToolbar; }, _updateButtonTitle: function(button, buttonTitle) { button.buttonTitle = buttonTitle; var hasShortcuts = button.shortcuts && button.shortcuts.length; if (hasShortcuts) button.title = String.vsprintf(buttonTitle, [button.shortcuts[0].name]); else button.title = buttonTitle; }, /** * @param {string} buttonId * @param {string} buttonTitle * @param {function(Event=):boolean} handler * @param {!Array.} shortcuts */ _createButtonAndRegisterShortcuts: function(buttonId, buttonTitle, handler, shortcuts) { var button = document.createElement("button"); button.className = "status-bar-item"; button.id = buttonId; button.shortcuts = shortcuts; this._updateButtonTitle(button, buttonTitle); button.disabled = true; button.appendChild(document.createElement("img")); button.addEventListener("click", handler, false); this.registerShortcuts(shortcuts, handler); return button; }, searchCanceled: function() { if (this._searchView) this._searchView.searchCanceled(); delete this._searchView; delete this._searchQuery; }, /** * @param {string} query */ performSearch: function(query) { WebInspector.searchController.updateSearchMatchesCount(0, this); if (!this.visibleView) return; // Call searchCanceled since it will reset everything we need before doing a new search. this.searchCanceled(); this._searchView = this.visibleView; this._searchQuery = query; function finishedCallback(view, searchMatches) { if (!searchMatches) return; WebInspector.searchController.updateSearchMatchesCount(searchMatches, this); view.jumpToNextSearchResult(); WebInspector.searchController.updateCurrentMatchIndex(view.currentSearchResultIndex, this); } this._searchView.performSearch(query, finishedCallback.bind(this)); }, jumpToNextSearchResult: function() { if (!this._searchView) return; if (this._searchView !== this.visibleView) { this.performSearch(this._searchQuery); return; } if (this._searchView.showingLastSearchResult()) this._searchView.jumpToFirstSearchResult(); else this._searchView.jumpToNextSearchResult(); WebInspector.searchController.updateCurrentMatchIndex(this._searchView.currentSearchResultIndex, this); return true; }, jumpToPreviousSearchResult: function() { if (!this._searchView) return; if (this._searchView !== this.visibleView) { this.performSearch(this._searchQuery); if (this._searchView) this._searchView.jumpToLastSearchResult(); return; } if (this._searchView.showingFirstSearchResult()) this._searchView.jumpToLastSearchResult(); else this._searchView.jumpToPreviousSearchResult(); WebInspector.searchController.updateCurrentMatchIndex(this._searchView.currentSearchResultIndex, this); }, /** * @return {boolean} */ canSearchAndReplace: function() { var view = /** @type {WebInspector.SourceFrame} */ (this.visibleView); return !!view && view.canEditSource(); }, /** * @param {string} text */ replaceSelectionWith: function(text) { var view = /** @type {WebInspector.SourceFrame} */ (this.visibleView); view.replaceSearchMatchWith(text); }, /** * @param {string} query * @param {string} text */ replaceAllWith: function(query, text) { var view = /** @type {WebInspector.SourceFrame} */ (this.visibleView); view.replaceAllWith(query, text); }, _toggleFormatSource: function() { this._toggleFormatSourceButton.toggled = !this._toggleFormatSourceButton.toggled; var uiSourceCodes = this._workspace.uiSourceCodes(); for (var i = 0; i < uiSourceCodes.length; ++i) uiSourceCodes[i].setFormatted(this._toggleFormatSourceButton.toggled); var currentFile = this._editorContainer.currentFile(); WebInspector.notifications.dispatchEventToListeners(WebInspector.UserMetrics.UserAction, { action: WebInspector.UserMetrics.UserActionNames.TogglePrettyPrint, enabled: this._toggleFormatSourceButton.toggled, url: currentFile ? currentFile.originURL() : null }); }, addToWatch: function(expression) { this.sidebarPanes.watchExpressions.addExpression(expression); }, /** * @return {boolean} */ _toggleBreakpoint: function() { var sourceFrame = this.visibleView; if (!sourceFrame) return false; if (sourceFrame instanceof WebInspector.JavaScriptSourceFrame) { var javaScriptSourceFrame = /** @type {WebInspector.JavaScriptSourceFrame} */ (sourceFrame); javaScriptSourceFrame.toggleBreakpointOnCurrentLine(); return true; } return false; }, /** * @param {Event=} event * @return {boolean} */ _showOutlineDialog: function(event) { var uiSourceCode = this._editorContainer.currentFile(); if (!uiSourceCode) return false; switch (uiSourceCode.contentType()) { case WebInspector.resourceTypes.Document: case WebInspector.resourceTypes.Script: WebInspector.JavaScriptOutlineDialog.show(this.visibleView, uiSourceCode); return true; case WebInspector.resourceTypes.Stylesheet: WebInspector.StyleSheetOutlineDialog.show(this.visibleView, uiSourceCode); return true; } return false; }, _installDebuggerSidebarController: function() { this._toggleDebuggerSidebarButton = new WebInspector.StatusBarButton(WebInspector.UIString("Hide debugger"), "scripts-debugger-show-hide-button", 3); this._toggleDebuggerSidebarButton.state = "shown"; this._toggleDebuggerSidebarButton.addEventListener("click", clickHandler, this); function clickHandler() { if (this._toggleDebuggerSidebarButton.state === "shown") this._hideDebuggerSidebar(); else this._showDebuggerSidebar(); } this.editorView.element.appendChild(this._toggleDebuggerSidebarButton.element); if (WebInspector.settings.debuggerSidebarHidden.get()) this._hideDebuggerSidebar(); }, _showDebuggerSidebar: function() { if (this._toggleDebuggerSidebarButton.state === "shown") return; this._toggleDebuggerSidebarButton.state = "shown"; this._toggleDebuggerSidebarButton.title = WebInspector.UIString("Hide debugger"); this.splitView.showSidebarElement(); this.debugSidebarResizeWidgetElement.removeStyleClass("hidden"); WebInspector.settings.debuggerSidebarHidden.set(false); }, _hideDebuggerSidebar: function() { if (this._toggleDebuggerSidebarButton.state === "hidden") return; this._toggleDebuggerSidebarButton.state = "hidden"; this._toggleDebuggerSidebarButton.title = WebInspector.UIString("Show debugger"); this.splitView.hideSidebarElement(); this.debugSidebarResizeWidgetElement.addStyleClass("hidden"); WebInspector.settings.debuggerSidebarHidden.set(true); }, _fileRenamed: function(event) { var uiSourceCode = /** @type {WebInspector.UISourceCode} */ (event.data.uiSourceCode); var name = /** @type {string} */ (event.data.name); if (uiSourceCode.project().type() !== WebInspector.projectTypes.Snippets) return; WebInspector.scriptSnippetModel.renameScriptSnippet(uiSourceCode, name); uiSourceCode.rename(name); }, /** * @param {WebInspector.Event} event */ _snippetCreationRequested: function(event) { var uiSourceCode = WebInspector.scriptSnippetModel.createScriptSnippet(); this._showSourceLine(uiSourceCode); var shouldHideNavigator = !this._navigatorController.isNavigatorPinned(); if (this._navigatorController.isNavigatorHidden()) this._navigatorController.showNavigatorOverlay(); this._navigator.rename(uiSourceCode, callback.bind(this)); /** * @param {boolean} committed */ function callback(committed) { if (shouldHideNavigator) this._navigatorController.hideNavigatorOverlay(); if (!committed) { WebInspector.scriptSnippetModel.deleteScriptSnippet(uiSourceCode); return; } this._showSourceLine(uiSourceCode); } }, /** * @param {WebInspector.Event} event */ _itemRenamingRequested: function(event) { var uiSourceCode = /** @type {WebInspector.UISourceCode} */ (event.data); var shouldHideNavigator = !this._navigatorController.isNavigatorPinned(); if (this._navigatorController.isNavigatorHidden()) this._navigatorController.showNavigatorOverlay(); this._navigator.rename(uiSourceCode, callback.bind(this)); /** * @param {boolean} committed */ function callback(committed) { if (shouldHideNavigator && committed) { this._navigatorController.hideNavigatorOverlay(); this._showSourceLine(uiSourceCode); } } }, /** * @param {WebInspector.UISourceCode} uiSourceCode */ _showLocalHistory: function(uiSourceCode) { WebInspector.RevisionHistoryView.showHistory(uiSourceCode); }, /** * @param {WebInspector.ContextMenu} contextMenu * @param {Object} target */ appendApplicableItems: function(event, contextMenu, target) { this._appendUISourceCodeItems(contextMenu, target); this._appendFunctionItems(contextMenu, target); }, /** * @param {WebInspector.UISourceCode} uiSourceCode */ _mapFileSystemToNetwork: function(uiSourceCode) { WebInspector.SelectUISourceCodeForProjectTypeDialog.show(uiSourceCode.name(), WebInspector.projectTypes.Network, mapFileSystemToNetwork.bind(this), this.editorView.mainElement) /** * @param {WebInspector.UISourceCode} networkUISourceCode */ function mapFileSystemToNetwork(networkUISourceCode) { this._workspace.addMapping(networkUISourceCode, uiSourceCode, WebInspector.fileSystemWorkspaceProvider); } }, /** * @param {WebInspector.UISourceCode} uiSourceCode */ _removeNetworkMapping: function(uiSourceCode) { if (confirm(WebInspector.UIString("Are you sure you want to remove network mapping?"))) this._workspace.removeMapping(uiSourceCode); }, /** * @param {WebInspector.UISourceCode} networkUISourceCode */ _mapNetworkToFileSystem: function(networkUISourceCode) { WebInspector.SelectUISourceCodeForProjectTypeDialog.show(networkUISourceCode.name(), WebInspector.projectTypes.FileSystem, mapNetworkToFileSystem.bind(this), this.editorView.mainElement) /** * @param {WebInspector.UISourceCode} uiSourceCode */ function mapNetworkToFileSystem(uiSourceCode) { this._workspace.addMapping(networkUISourceCode, uiSourceCode, WebInspector.fileSystemWorkspaceProvider); } }, /** * @param {WebInspector.ContextMenu} contextMenu * @param {WebInspector.UISourceCode} uiSourceCode */ _appendUISourceCodeMappingItems: function(contextMenu, uiSourceCode) { if (uiSourceCode.project().type() === WebInspector.projectTypes.FileSystem) { var hasMappings = !!uiSourceCode.url; if (!hasMappings) contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Map to network resource\u2026" : "Map to Network Resource\u2026"), this._mapFileSystemToNetwork.bind(this, uiSourceCode)); else contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove network mapping" : "Remove Network Mapping"), this._removeNetworkMapping.bind(this, uiSourceCode)); } if (uiSourceCode.project().type() === WebInspector.projectTypes.Network) { /** * @param {WebInspector.Project} project */ function filterProject(project) { return project.type() === WebInspector.projectTypes.FileSystem; } if (!this._workspace.projects().filter(filterProject).length) return; if (this._workspace.uiSourceCodeForURL(uiSourceCode.url) === uiSourceCode) contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Map to file system resource\u2026" : "Map to File System Resource\u2026"), this._mapNetworkToFileSystem.bind(this, uiSourceCode)); } }, /** * @param {WebInspector.ContextMenu} contextMenu * @param {Object} target */ _appendUISourceCodeItems: function(contextMenu, target) { if (!(target instanceof WebInspector.UISourceCode)) return; var uiSourceCode = /** @type {WebInspector.UISourceCode} */ (target); contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Local modifications\u2026" : "Local Modifications\u2026"), this._showLocalHistory.bind(this, uiSourceCode)); if (WebInspector.isolatedFileSystemManager.supportsFileSystems() && WebInspector.experimentsSettings.fileSystemProject.isEnabled()) this._appendUISourceCodeMappingItems(contextMenu, uiSourceCode); var resource = WebInspector.resourceForURL(uiSourceCode.url); if (resource && resource.request) contextMenu.appendApplicableItems(resource.request); }, /** * @param {WebInspector.ContextMenu} contextMenu * @param {Object} target */ _appendFunctionItems: function(contextMenu, target) { if (!(target instanceof WebInspector.RemoteObject)) return; var remoteObject = /** @type {WebInspector.RemoteObject} */ (target); if (remoteObject.type !== "function") return; function didGetDetails(error, response) { if (error) { console.error(error); return; } WebInspector.inspectorView.showPanelForAnchorNavigation(this); var uiLocation = WebInspector.debuggerModel.rawLocationToUILocation(response.location); this._showSourceLine(uiLocation.uiSourceCode, uiLocation.lineNumber); } function revealFunction() { DebuggerAgent.getFunctionDetails(remoteObject.objectId, didGetDetails.bind(this)); } contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Show function definition" : "Show Function Definition"), revealFunction.bind(this)); }, showGoToSourceDialog: function() { WebInspector.OpenResourceDialog.show(this, this.editorView.mainElement); }, _dockSideChanged: function() { var dockSide = WebInspector.dockController.dockSide(); var vertically = dockSide === WebInspector.DockController.State.DockedToRight && WebInspector.settings.splitVerticallyWhenDockedToRight.get(); this._splitVertically(vertically); }, /** * @param {boolean} vertically */ _splitVertically: function(vertically) { if (this.sidebarPaneView && vertically === !this.splitView.isVertical()) return; if (this.sidebarPaneView) this.sidebarPaneView.detach(); this.splitView.setVertical(!vertically); if (!vertically) { this.sidebarPaneView = new WebInspector.SidebarPaneStack(); for (var pane in this.sidebarPanes) this.sidebarPaneView.addPane(this.sidebarPanes[pane]); this.sidebarElement.appendChild(this.debugToolbar); } else { this._showDebuggerSidebar(); this.sidebarPaneView = new WebInspector.SplitView(true, this.name + "PanelSplitSidebarRatio", 0.5); var group1 = new WebInspector.SidebarPaneStack(); group1.show(this.sidebarPaneView.firstElement()); group1.element.id = "scripts-sidebar-stack-pane"; group1.addPane(this.sidebarPanes.watchExpressions); group1.addPane(this.sidebarPanes.callstack); group1.addPane(this.sidebarPanes.scopechain); var group2 = new WebInspector.SidebarTabbedPane(); group2.show(this.sidebarPaneView.secondElement()); group2.addPane(this.sidebarPanes.jsBreakpoints); group2.addPane(this.sidebarPanes.domBreakpoints); group2.addPane(this.sidebarPanes.xhrBreakpoints); group2.addPane(this.sidebarPanes.eventListenerBreakpoints); group2.addPane(this.sidebarPanes.workerList); this.sidebarPaneView.firstElement().appendChild(this.debugToolbar); } this.sidebarPaneView.element.id = "scripts-debug-sidebar-contents"; this.sidebarPaneView.show(this.splitView.sidebarElement); this.sidebarPanes.scopechain.expand(); this.sidebarPanes.jsBreakpoints.expand(); this.sidebarPanes.callstack.expand(); if (WebInspector.settings.watchExpressions.get().length > 0) this.sidebarPanes.watchExpressions.expand(); }, __proto__: WebInspector.Panel.prototype }