Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
META-INF.dirigible.dev-tools.bindings.BreakpointManager.js Maven / Gradle / Ivy
/*
* 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:
*
* * 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.
*/
import * as Common from '../common/common.js';
import * as SDK from '../sdk/sdk.js';
import * as Workspace from '../workspace/workspace.js';
import {DebuggerWorkspaceBinding} from './DebuggerWorkspaceBinding.js'; // eslint-disable-line no-unused-vars
import {LiveLocation, LiveLocationPool} from './LiveLocation.js'; // eslint-disable-line no-unused-vars
/**
* @type {!BreakpointManager}
*/
let breakpointManagerInstance;
/**
* @unrestricted
*/
export class BreakpointManager extends Common.ObjectWrapper.ObjectWrapper {
/**
* @private
* @param {!SDK.SDKModel.TargetManager} targetManager
* @param {!Workspace.Workspace.WorkspaceImpl} workspace
* @param {!DebuggerWorkspaceBinding} debuggerWorkspaceBinding
*/
constructor(targetManager, workspace, debuggerWorkspaceBinding) {
super();
this._storage = new Storage();
this._workspace = workspace;
this._targetManager = targetManager;
this._debuggerWorkspaceBinding = debuggerWorkspaceBinding;
/** @type {!Map>} */
this._breakpointsForUISourceCode = new Map();
/** @type {!Map} */
this._breakpointByStorageId = new Map();
this._workspace.addEventListener(Workspace.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this);
this._workspace.addEventListener(Workspace.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
}
/**
* @param {{forceNew: ?boolean, targetManager: ?SDK.SDKModel.TargetManager, workspace: ?Workspace.Workspace.WorkspaceImpl, debuggerWorkspaceBinding: ?DebuggerWorkspaceBinding}} opts
*/
static instance(opts = {forceNew: null, targetManager: null, workspace: null, debuggerWorkspaceBinding: null}) {
const {forceNew, targetManager, workspace, debuggerWorkspaceBinding} = opts;
if (!breakpointManagerInstance || forceNew) {
if (!targetManager || !workspace || !debuggerWorkspaceBinding) {
throw new Error(
`Unable to create settings: targetManager, workspace, and debuggerWorkspaceBinding must be provided: ${
new Error().stack}`);
}
breakpointManagerInstance = new BreakpointManager(targetManager, workspace, debuggerWorkspaceBinding);
}
return breakpointManagerInstance;
}
/**
* @param {string} url
* @param {number} lineNumber
* @param {number} columnNumber
* @return {string}
*/
static _breakpointStorageId(url, lineNumber, columnNumber) {
if (!url) {
return '';
}
return url + ':' + lineNumber + ':' + columnNumber;
}
/**
* @param {string} fromURL
* @param {!Workspace.UISourceCode.UISourceCode} toSourceCode
*/
async copyBreakpoints(fromURL, toSourceCode) {
const breakpointItems = this._storage.breakpointItems(fromURL);
for (const item of breakpointItems) {
await this.setBreakpoint(toSourceCode, item.lineNumber, item.columnNumber, item.condition, item.enabled);
}
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
*/
_restoreBreakpoints(uiSourceCode) {
const url = uiSourceCode.url();
if (!url) {
return;
}
this._storage.mute();
const breakpointItems = this._storage.breakpointItems(url);
for (const item of breakpointItems) {
this._innerSetBreakpoint(uiSourceCode, item.lineNumber, item.columnNumber, item.condition, item.enabled);
}
this._storage.unmute();
}
/**
* @param {!Common.EventTarget.EventTargetEvent} event
*/
_uiSourceCodeAdded(event) {
const uiSourceCode = /** @type {!Workspace.UISourceCode.UISourceCode} */ (event.data);
this._restoreBreakpoints(uiSourceCode);
}
/**
* @param {!Common.EventTarget.EventTargetEvent} event
*/
_uiSourceCodeRemoved(event) {
const uiSourceCode = /** @type {!Workspace.UISourceCode.UISourceCode} */ (event.data);
const breakpoints = this.breakpointLocationsForUISourceCode(uiSourceCode);
breakpoints.forEach(bp => bp.breakpoint.removeUISourceCode(uiSourceCode));
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
* @param {number} lineNumber
* @param {number} columnNumber
* @param {string} condition
* @param {boolean} enabled
* @return {!Promise}
*/
async setBreakpoint(uiSourceCode, lineNumber, columnNumber, condition, enabled) {
let uiLocation = new Workspace.UISourceCode.UILocation(uiSourceCode, lineNumber, columnNumber);
const normalizedLocation = await this._debuggerWorkspaceBinding.normalizeUILocation(uiLocation);
if (normalizedLocation.id() !== uiLocation.id()) {
Common.Revealer.reveal(normalizedLocation);
uiLocation = normalizedLocation;
}
return this._innerSetBreakpoint(
uiLocation.uiSourceCode, uiLocation.lineNumber, uiLocation.columnNumber, condition, enabled);
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
* @param {number} lineNumber
* @param {number} columnNumber
* @param {string} condition
* @param {boolean} enabled
* @return {!Breakpoint}
*/
_innerSetBreakpoint(uiSourceCode, lineNumber, columnNumber, condition, enabled) {
const itemId = BreakpointManager._breakpointStorageId(uiSourceCode.url(), lineNumber, columnNumber);
let breakpoint = this._breakpointByStorageId.get(itemId);
if (breakpoint) {
breakpoint._updateState(condition, enabled);
breakpoint.addUISourceCode(uiSourceCode);
breakpoint._updateBreakpoint();
return breakpoint;
}
breakpoint = new Breakpoint(this, uiSourceCode, uiSourceCode.url(), lineNumber, columnNumber, condition, enabled);
this._breakpointByStorageId.set(itemId, breakpoint);
return breakpoint;
}
/**
* @param {!Workspace.UISourceCode.UILocation} uiLocation
* @return {?BreakpointLocation}
*/
findBreakpoint(uiLocation) {
const breakpoints = this._breakpointsForUISourceCode.get(uiLocation.uiSourceCode);
return breakpoints ? (breakpoints.get(uiLocation.id())) || null : null;
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
* @param {!TextUtils.TextRange} textRange
* @return {!Promise>}
*/
async possibleBreakpoints(uiSourceCode, textRange) {
const startLocationsPromise = DebuggerWorkspaceBinding.instance().uiLocationToRawLocations(
uiSourceCode, textRange.startLine, textRange.startColumn);
const endLocationsPromise = DebuggerWorkspaceBinding.instance().uiLocationToRawLocations(
uiSourceCode, textRange.endLine, textRange.endColumn);
const [startLocations, endLocations] = await Promise.all([startLocationsPromise, endLocationsPromise]);
const endLocationByModel = new Map();
for (const location of endLocations) {
endLocationByModel.set(location.debuggerModel, location);
}
let startLocation = null;
let endLocation = null;
for (const location of startLocations) {
const endLocationCandidate = endLocationByModel.get(location.debuggerModel);
if (endLocationCandidate) {
startLocation = location;
endLocation = endLocationCandidate;
break;
}
}
if (!startLocation || !endLocation) {
return Promise.resolve([]);
}
return startLocation.debuggerModel
.getPossibleBreakpoints(startLocation, endLocation, /* restrictToFunction */ false)
.then(toUILocations.bind(this));
/**
* @this {!BreakpointManager}
* @param {!Array} locations
* @return {!Promise>}
*/
async function toUILocations(locations) {
const sortedLocationsPromises =
locations.map(location => this._debuggerWorkspaceBinding.rawLocationToUILocation(location));
let sortedLocations = await Promise.all(sortedLocationsPromises);
sortedLocations = sortedLocations.filter(location => location && location.uiSourceCode === uiSourceCode);
if (!sortedLocations.length) {
return [];
}
sortedLocations.sort(Workspace.UISourceCode.UILocation.comparator);
let lastLocation = sortedLocations[0];
const result = [lastLocation];
for (const location of sortedLocations) {
if (location.id() !== lastLocation.id()) {
result.push(location);
lastLocation = location;
}
}
return result;
}
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
* @return {!Array}
*/
breakpointLocationsForUISourceCode(uiSourceCode) {
const breakpoints = this._breakpointsForUISourceCode.get(uiSourceCode);
return breakpoints ? Array.from(breakpoints.values()) : [];
}
/**
* @return {!Array}
*/
allBreakpointLocations() {
const result = [];
for (const breakpoints of this._breakpointsForUISourceCode.values()) {
result.push(...breakpoints.values());
}
return result;
}
/**
* @param {!Breakpoint} breakpoint
* @param {boolean} removeFromStorage
*/
_removeBreakpoint(breakpoint, removeFromStorage) {
if (removeFromStorage) {
this._storage._removeBreakpoint(breakpoint);
}
this._breakpointByStorageId.delete(breakpoint._breakpointStorageId());
}
/**
* @param {!Breakpoint} breakpoint
* @param {!Workspace.UISourceCode.UILocation} uiLocation
*/
_uiLocationAdded(breakpoint, uiLocation) {
let breakpoints = this._breakpointsForUISourceCode.get(uiLocation.uiSourceCode);
if (!breakpoints) {
breakpoints = new Map();
this._breakpointsForUISourceCode.set(uiLocation.uiSourceCode, breakpoints);
}
const breakpointLocation = {breakpoint: breakpoint, uiLocation: uiLocation};
breakpoints.set(uiLocation.id(), breakpointLocation);
this.dispatchEventToListeners(Events.BreakpointAdded, breakpointLocation);
}
/**
* @param {!Breakpoint} breakpoint
* @param {!Workspace.UISourceCode.UILocation} uiLocation
*/
_uiLocationRemoved(breakpoint, uiLocation) {
const breakpoints = this._breakpointsForUISourceCode.get(uiLocation.uiSourceCode);
if (!breakpoints) {
return;
}
const breakpointLocation = breakpoints.get(uiLocation.id()) || null;
if (!breakpointLocation) {
return;
}
breakpoints.delete(uiLocation.id());
if (breakpoints.size === 0) {
this._breakpointsForUISourceCode.delete(uiLocation.uiSourceCode);
}
this.dispatchEventToListeners(Events.BreakpointRemoved, {breakpoint: breakpoint, uiLocation: uiLocation});
}
}
/** @enum {symbol} */
export const Events = {
BreakpointAdded: Symbol('breakpoint-added'),
BreakpointRemoved: Symbol('breakpoint-removed')
};
/**
* @unrestricted
* @implements {SDK.SDKModel.SDKModelObserver}
*/
export class Breakpoint {
/**
* @param {!BreakpointManager} breakpointManager
* @param {!Workspace.UISourceCode.UISourceCode} primaryUISourceCode
* @param {string} url
* @param {number} lineNumber
* @param {number} columnNumber
* @param {string} condition
* @param {boolean} enabled
*/
constructor(breakpointManager, primaryUISourceCode, url, lineNumber, columnNumber, condition, enabled) {
this._breakpointManager = breakpointManager;
this._url = url;
this._lineNumber = lineNumber;
this._columnNumber = columnNumber;
/** @type {!Set} */
this._uiLocations = new Set(); // Bound locations
/** @type {!Set} */
this._uiSourceCodes = new Set(); // All known UISourceCodes with this url
/** @type {string} */ this._condition;
/** @type {boolean} */ this._enabled;
/** @type {boolean} */ this._isRemoved;
this._currentState = null;
/** @type {!Map.}*/
this._modelBreakpoints = new Map();
this._updateState(condition, enabled);
this.addUISourceCode(primaryUISourceCode);
this._breakpointManager._targetManager.observeModels(SDK.DebuggerModel.DebuggerModel, this);
}
async refreshInDebugger() {
if (!this._isRemoved) {
const breakpoints = Array.from(this._modelBreakpoints.values());
return Promise.all(breakpoints.map(breakpoint => breakpoint._refreshBreakpoint()));
}
}
/**
* @override
* @param {!SDK.DebuggerModel.DebuggerModel} debuggerModel
*/
modelAdded(debuggerModel) {
const debuggerWorkspaceBinding = this._breakpointManager._debuggerWorkspaceBinding;
this._modelBreakpoints.set(debuggerModel, new ModelBreakpoint(debuggerModel, this, debuggerWorkspaceBinding));
}
/**
* @override
* @param {!SDK.DebuggerModel.DebuggerModel} debuggerModel
*/
modelRemoved(debuggerModel) {
const modelBreakpoint = this._modelBreakpoints.get(debuggerModel);
this._modelBreakpoints.delete(debuggerModel);
modelBreakpoint._cleanUpAfterDebuggerIsGone();
modelBreakpoint._removeEventListeners();
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
*/
addUISourceCode(uiSourceCode) {
if (!this._uiSourceCodes.has(uiSourceCode)) {
this._uiSourceCodes.add(uiSourceCode);
if (!this._isBound()) {
this._breakpointManager._uiLocationAdded(this, this._defaultUILocation(uiSourceCode));
}
}
}
clearUISourceCodes() {
if (!this._isBound()) {
this._removeAllUnboundLocations();
}
this._uiSourceCodes.clear();
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
*/
removeUISourceCode(uiSourceCode) {
if (this._uiSourceCodes.has(uiSourceCode)) {
this._uiSourceCodes.delete(uiSourceCode);
if (!this._isBound()) {
this._breakpointManager._uiLocationRemoved(this, this._defaultUILocation(uiSourceCode));
}
}
// Do we need to do this? Not sure if bound locations will leak...
if (this._isBound()) {
for (const uiLocation of this._uiLocations) {
if (uiLocation.uiSourceCode === uiSourceCode) {
this._uiLocations.delete(uiLocation);
this._breakpointManager._uiLocationRemoved(this, uiLocation);
}
}
if (!this._isBound() && !this._isRemoved) {
// Switch to unbound locations
this._addAllUnboundLocations();
}
}
}
/**
* @return {string}
*/
url() {
return this._url;
}
/**
* @return {number}
*/
lineNumber() {
return this._lineNumber;
}
/**
* @return {number}
*/
columnNumber() {
return this._columnNumber;
}
/**
* @param {!Workspace.UISourceCode.UILocation} uiLocation
*/
_uiLocationAdded(uiLocation) {
if (this._isRemoved) {
return;
}
if (!this._isBound()) {
// This is our first bound location; remove all unbound locations
this._removeAllUnboundLocations();
}
this._uiLocations.add(uiLocation);
this._breakpointManager._uiLocationAdded(this, uiLocation);
}
/**
* @param {!Workspace.UISourceCode.UILocation} uiLocation
*/
_uiLocationRemoved(uiLocation) {
if (this._uiLocations.has(uiLocation)) {
this._uiLocations.delete(uiLocation);
this._breakpointManager._uiLocationRemoved(this, uiLocation);
if (!this._isBound() && !this._isRemoved) {
this._addAllUnboundLocations();
}
}
}
/**
* @return {boolean}
*/
enabled() {
return this._enabled;
}
/**
* @param {boolean} enabled
*/
setEnabled(enabled) {
this._updateState(this._condition, enabled);
}
/**
* @return {string}
*/
condition() {
return this._condition;
}
/**
* @param {string} condition
*/
setCondition(condition) {
this._updateState(condition, this._enabled);
}
/**
* @param {string} condition
* @param {boolean} enabled
*/
_updateState(condition, enabled) {
if (this._enabled === enabled && this._condition === condition) {
return;
}
this._enabled = enabled;
this._condition = condition;
this._breakpointManager._storage._updateBreakpoint(this);
this._updateBreakpoint();
}
_updateBreakpoint() {
if (!this._isBound()) {
this._removeAllUnboundLocations();
if (!this._isRemoved) {
this._addAllUnboundLocations();
}
}
for (const modelBreakpoint of this._modelBreakpoints.values()) {
modelBreakpoint._scheduleUpdateInDebugger();
}
}
/**
* @param {boolean} keepInStorage
*/
remove(keepInStorage) {
this._isRemoved = true;
const removeFromStorage = !keepInStorage;
for (const modelBreakpoint of this._modelBreakpoints.values()) {
modelBreakpoint._scheduleUpdateInDebugger();
modelBreakpoint._removeEventListeners();
}
this._breakpointManager._removeBreakpoint(this, removeFromStorage);
this._breakpointManager._targetManager.unobserveModels(SDK.DebuggerModel.DebuggerModel, this);
this.clearUISourceCodes();
}
/**
* @return {string}
*/
_breakpointStorageId() {
return BreakpointManager._breakpointStorageId(this._url, this._lineNumber, this._columnNumber);
}
_resetLocations() {
this.clearUISourceCodes();
for (const modelBreakpoint of this._modelBreakpoints.values()) {
modelBreakpoint._resetLocations();
}
}
/**
* @return {boolean}
*/
_isBound() {
return this._uiLocations.size !== 0;
}
/**
* @param {!Workspace.UISourceCode.UISourceCode} uiSourceCode
* @return {!Workspace.UISourceCode.UILocation}
*/
_defaultUILocation(uiSourceCode) {
return uiSourceCode.uiLocation(this._lineNumber, this._columnNumber);
}
_removeAllUnboundLocations() {
for (const uiSourceCode of this._uiSourceCodes) {
this._breakpointManager._uiLocationRemoved(this, this._defaultUILocation(uiSourceCode));
}
}
_addAllUnboundLocations() {
for (const uiSourceCode of this._uiSourceCodes) {
this._breakpointManager._uiLocationAdded(this, this._defaultUILocation(uiSourceCode));
}
}
}
/**
* @unrestricted
*/
export class ModelBreakpoint {
/**
* @param {!SDK.DebuggerModel.DebuggerModel} debuggerModel
* @param {!Breakpoint} breakpoint
* @param {!DebuggerWorkspaceBinding} debuggerWorkspaceBinding
*/
constructor(debuggerModel, breakpoint, debuggerWorkspaceBinding) {
this._debuggerModel = debuggerModel;
this._breakpoint = breakpoint;
this._debuggerWorkspaceBinding = debuggerWorkspaceBinding;
this._liveLocations = new LiveLocationPool();
/** @type {!Map} */
this._uiLocations = new Map();
this._debuggerModel.addEventListener(
SDK.DebuggerModel.Events.DebuggerWasDisabled, this._cleanUpAfterDebuggerIsGone, this);
this._debuggerModel.addEventListener(
SDK.DebuggerModel.Events.DebuggerWasEnabled, this._scheduleUpdateInDebugger, this);
this._hasPendingUpdate = false;
this._isUpdating = false;
this._cancelCallback = false;
this._currentState = null;
if (this._debuggerModel.debuggerEnabled()) {
this._scheduleUpdateInDebugger();
}
}
_resetLocations() {
for (const uiLocation of this._uiLocations.values()) {
this._breakpoint._uiLocationRemoved(uiLocation);
}
this._uiLocations.clear();
this._liveLocations.disposeAll();
}
_scheduleUpdateInDebugger() {
if (this._isUpdating) {
this._hasPendingUpdate = true;
return;
}
this._isUpdating = true;
this._updateInDebugger(this._didUpdateInDebugger.bind(this));
}
_didUpdateInDebugger() {
this._isUpdating = false;
if (this._hasPendingUpdate) {
this._hasPendingUpdate = false;
this._scheduleUpdateInDebugger();
}
}
/**
* @return {boolean}
*/
_scriptDiverged() {
for (const uiSourceCode of this._breakpoint._uiSourceCodes) {
const scriptFile = this._debuggerWorkspaceBinding.scriptFile(uiSourceCode, this._debuggerModel);
if (scriptFile && scriptFile.hasDivergedFromVM()) {
return true;
}
}
return false;
}
/**
* @param {function()} callback
* @return {!Promise}
*/
async _updateInDebugger(callback) {
if (this._debuggerModel.target().isDisposed()) {
this._cleanUpAfterDebuggerIsGone();
callback();
return;
}
const lineNumber = this._breakpoint._lineNumber;
const columnNumber = this._breakpoint._columnNumber;
const condition = this._breakpoint.condition();
let debuggerLocation = null;
for (const uiSourceCode of this._breakpoint._uiSourceCodes) {
const locations =
await DebuggerWorkspaceBinding.instance().uiLocationToRawLocations(uiSourceCode, lineNumber, columnNumber);
debuggerLocation = locations.find(location => location.debuggerModel === this._debuggerModel);
if (debuggerLocation) {
break;
}
}
let newState;
if (this._breakpoint._isRemoved || !this._breakpoint.enabled() || this._scriptDiverged()) {
newState = null;
} else if (debuggerLocation && debuggerLocation.script()) {
const script = debuggerLocation.script();
if (script.sourceURL) {
newState = new Breakpoint.State(
script.sourceURL, null, null, debuggerLocation.lineNumber, debuggerLocation.columnNumber, condition);
} else {
newState = new Breakpoint.State(
null, script.scriptId, script.hash, debuggerLocation.lineNumber, debuggerLocation.columnNumber, condition);
}
} else if (this._breakpoint._currentState && this._breakpoint._currentState.url) {
const position = this._breakpoint._currentState;
newState = new Breakpoint.State(position.url, null, null, position.lineNumber, position.columnNumber, condition);
} else if (this._breakpoint._uiSourceCodes.size > 0) { // Uncertain if this condition is necessary
newState = new Breakpoint.State(this._breakpoint.url(), null, null, lineNumber, columnNumber, condition);
}
if (this._debuggerId && Breakpoint.State.equals(newState, this._currentState)) {
callback();
return;
}
this._breakpoint._currentState = newState;
if (this._debuggerId) {
await this._refreshBreakpoint();
callback();
return;
}
if (!newState) {
callback();
return;
}
let result;
this._currentState = newState;
if (newState.url) {
result = await this._debuggerModel.setBreakpointByURL(
newState.url, newState.lineNumber, newState.columnNumber, newState.condition);
} else if (newState.scriptId && newState.scriptHash) {
result = await this._debuggerModel.setBreakpointInAnonymousScript(
newState.scriptId, newState.scriptHash, newState.lineNumber, newState.columnNumber, newState.condition);
}
if (result && result.breakpointId) {
await this._didSetBreakpointInDebugger(callback, result.breakpointId, result.locations);
} else {
await this._didSetBreakpointInDebugger(callback, null, []);
}
}
async _refreshBreakpoint() {
if (!this._debuggerId) {
return;
}
this._resetLocations();
await this._debuggerModel.removeBreakpoint(this._debuggerId);
this._didRemoveFromDebugger();
this._currentState = null;
this._scheduleUpdateInDebugger();
}
/**
* @param {function()} callback
* @param {?Protocol.Debugger.BreakpointId} breakpointId
* @param {!Array.} locations
*/
async _didSetBreakpointInDebugger(callback, breakpointId, locations) {
if (this._cancelCallback) {
this._cancelCallback = false;
callback();
return;
}
if (!breakpointId) {
this._breakpoint.remove(true);
callback();
return;
}
this._debuggerId = breakpointId;
this._debuggerModel.addBreakpointListener(this._debuggerId, this._breakpointResolved, this);
for (const location of locations) {
if (!(await this._addResolvedLocation(location))) {
break;
}
}
callback();
}
_didRemoveFromDebugger() {
if (this._cancelCallback) {
this._cancelCallback = false;
return;
}
this._resetLocations();
this._debuggerModel.removeBreakpointListener(this._debuggerId, this._breakpointResolved, this);
delete this._debuggerId;
}
/**
* @param {!Common.EventTarget.EventTargetEvent} event
*/
async _breakpointResolved(event) {
await this._addResolvedLocation(/** @type {!SDK.DebuggerModel.Location}*/ (event.data));
}
/**
* @param {!LiveLocation} liveLocation
*/
async _locationUpdated(liveLocation) {
const oldUILocation = this._uiLocations.get(liveLocation);
const uiLocation = await liveLocation.uiLocation();
if (oldUILocation) {
this._breakpoint._uiLocationRemoved(oldUILocation);
}
if (uiLocation) {
this._uiLocations.set(liveLocation, uiLocation);
this._breakpoint._uiLocationAdded(uiLocation);
} else {
this._uiLocations.delete(liveLocation);
}
}
/**
* @param {!SDK.DebuggerModel.Location} location
* @return {!Promise}
*/
async _addResolvedLocation(location) {
const uiLocation = await this._debuggerWorkspaceBinding.rawLocationToUILocation(location);
if (!uiLocation) {
return false;
}
const breakpointLocation = this._breakpoint._breakpointManager.findBreakpoint(uiLocation);
if (breakpointLocation && breakpointLocation.breakpoint !== this._breakpoint) {
// location clash
this._breakpoint.remove(false /* keepInStorage */);
return false;
}
await this._debuggerWorkspaceBinding.createLiveLocation(
location, this._locationUpdated.bind(this), this._liveLocations);
return true;
}
_cleanUpAfterDebuggerIsGone() {
if (this._isUpdating) {
this._cancelCallback = true;
}
this._resetLocations();
this._currentState = null;
if (this._debuggerId) {
this._didRemoveFromDebugger();
}
}
_removeEventListeners() {
this._debuggerModel.removeEventListener(
SDK.DebuggerModel.Events.DebuggerWasDisabled, this._cleanUpAfterDebuggerIsGone, this);
this._debuggerModel.removeEventListener(
SDK.DebuggerModel.Events.DebuggerWasEnabled, this._scheduleUpdateInDebugger, this);
}
}
Breakpoint.State = class {
/**
* @param {?string} url
* @param {?string} scriptId
* @param {?string} scriptHash
* @param {number} lineNumber
* @param {number} columnNumber
* @param {string} condition
*/
constructor(url, scriptId, scriptHash, lineNumber, columnNumber, condition) {
this.url = url;
this.scriptId = scriptId;
this.scriptHash = scriptHash;
this.lineNumber = lineNumber;
this.columnNumber = columnNumber;
this.condition = condition;
}
/**
* @param {?Breakpoint.State|undefined} stateA
* @param {?Breakpoint.State|undefined} stateB
* @return {boolean}
*/
static equals(stateA, stateB) {
if (!stateA || !stateB) {
return false;
}
return stateA.url === stateB.url && stateA.scriptId === stateB.scriptId &&
stateA.scriptHash === stateB.scriptHash && stateA.lineNumber === stateB.lineNumber &&
stateA.columnNumber === stateB.columnNumber && stateA.condition === stateB.condition;
}
};
class Storage {
constructor() {
this._setting = Common.Settings.Settings.instance().createLocalSetting('breakpoints', []);
/** @type {!Map} */
this._breakpoints = new Map();
const items = /** @type {!Array} */ (this._setting.get());
for (const item of items) {
item.columnNumber = item.columnNumber || 0;
this._breakpoints.set(BreakpointManager._breakpointStorageId(item.url, item.lineNumber, item.columnNumber), item);
}
/** @type {boolean|undefined} */ this._muted;
}
mute() {
this._muted = true;
}
unmute() {
delete this._muted;
}
/**
* @param {string} url
* @return {!Array}
*/
breakpointItems(url) {
return Array.from(this._breakpoints.values()).filter(item => item.url === url);
}
/**
* @param {!Breakpoint} breakpoint
*/
_updateBreakpoint(breakpoint) {
if (this._muted || !breakpoint._breakpointStorageId()) {
return;
}
this._breakpoints.set(breakpoint._breakpointStorageId(), new Storage.Item(breakpoint));
this._save();
}
/**
* @param {!Breakpoint} breakpoint
*/
_removeBreakpoint(breakpoint) {
if (!this._muted) {
this._breakpoints.delete(breakpoint._breakpointStorageId());
this._save();
}
}
_save() {
this._setting.set(Array.from(this._breakpoints.values()));
}
}
/**
* @unrestricted
*/
Storage.Item = class {
/**
* @param {!Breakpoint} breakpoint
*/
constructor(breakpoint) {
this.url = breakpoint._url;
this.lineNumber = breakpoint.lineNumber();
this.columnNumber = breakpoint.columnNumber();
this.condition = breakpoint.condition();
this.enabled = breakpoint.enabled();
}
};
/** @typedef {{
* breakpoint: !Breakpoint,
* uiLocation: !Workspace.UISourceCode.UILocation
* }}
*/
export let BreakpointLocation;