blob: 4090b73457d3ec92768562ddd562a747f32290b3 [file] [log] [blame]
/*
* Copyright (C) 2013, 2014 Apple 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. AND ITS 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 APPLE INC. OR ITS 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.
*/
WebInspector.Breakpoint = class Breakpoint extends WebInspector.Object
{
constructor(sourceCodeLocationOrInfo, disabled, condition)
{
super();
if (sourceCodeLocationOrInfo instanceof WebInspector.SourceCodeLocation) {
var sourceCode = sourceCodeLocationOrInfo.sourceCode;
var contentIdentifier = sourceCode ? sourceCode.contentIdentifier : null;
var scriptIdentifier = sourceCode instanceof WebInspector.Script ? sourceCode.id : null;
var location = sourceCodeLocationOrInfo;
} else if (sourceCodeLocationOrInfo && typeof sourceCodeLocationOrInfo === "object") {
// The 'url' fallback is for transitioning from older frontends and should be removed.
var contentIdentifier = sourceCodeLocationOrInfo.contentIdentifier || sourceCodeLocationOrInfo.url;
var lineNumber = sourceCodeLocationOrInfo.lineNumber || 0;
var columnNumber = sourceCodeLocationOrInfo.columnNumber || 0;
var location = new WebInspector.SourceCodeLocation(null, lineNumber, columnNumber);
var ignoreCount = sourceCodeLocationOrInfo.ignoreCount || 0;
var autoContinue = sourceCodeLocationOrInfo.autoContinue || false;
var actions = sourceCodeLocationOrInfo.actions || [];
for (var i = 0; i < actions.length; ++i)
actions[i] = new WebInspector.BreakpointAction(this, actions[i]);
disabled = sourceCodeLocationOrInfo.disabled;
condition = sourceCodeLocationOrInfo.condition;
} else
console.error("Unexpected type passed to WebInspector.Breakpoint", sourceCodeLocationOrInfo);
this._id = null;
this._contentIdentifier = contentIdentifier || null;
this._scriptIdentifier = scriptIdentifier || null;
this._disabled = disabled || false;
this._condition = condition || "";
this._ignoreCount = ignoreCount || 0;
this._autoContinue = autoContinue || false;
this._actions = actions || [];
this._resolved = false;
this._sourceCodeLocation = location;
this._sourceCodeLocation.addEventListener(WebInspector.SourceCodeLocation.Event.LocationChanged, this._sourceCodeLocationLocationChanged, this);
this._sourceCodeLocation.addEventListener(WebInspector.SourceCodeLocation.Event.DisplayLocationChanged, this._sourceCodeLocationDisplayLocationChanged, this);
}
// Public
get id()
{
return this._id;
}
set id(id)
{
this._id = id || null;
}
get contentIdentifier()
{
return this._contentIdentifier;
}
get scriptIdentifier()
{
return this._scriptIdentifier;
}
get sourceCodeLocation()
{
return this._sourceCodeLocation;
}
get resolved()
{
return this._resolved;
}
set resolved(resolved)
{
if (this._resolved === resolved)
return;
function isSpecialBreakpoint()
{
return this._sourceCodeLocation.isEqual(new WebInspector.SourceCodeLocation(null, Infinity, Infinity));
}
console.assert(!resolved || this._sourceCodeLocation.sourceCode || isSpecialBreakpoint.call(this), "Breakpoints must have a SourceCode to be resolved.", this);
this._resolved = resolved || false;
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.ResolvedStateDidChange);
}
get disabled()
{
return this._disabled;
}
set disabled(disabled)
{
if (this._disabled === disabled)
return;
this._disabled = disabled || false;
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.DisabledStateDidChange);
}
get condition()
{
return this._condition;
}
set condition(condition)
{
if (this._condition === condition)
return;
this._condition = condition;
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.ConditionDidChange);
}
get ignoreCount()
{
return this._ignoreCount;
}
set ignoreCount(ignoreCount)
{
console.assert(ignoreCount >= 0, "Ignore count cannot be negative.");
if (ignoreCount < 0)
return;
if (this._ignoreCount === ignoreCount)
return;
this._ignoreCount = ignoreCount;
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.IgnoreCountDidChange);
}
get autoContinue()
{
return this._autoContinue;
}
set autoContinue(cont)
{
if (this._autoContinue === cont)
return;
this._autoContinue = cont;
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.AutoContinueDidChange);
}
get actions()
{
return this._actions;
}
get options()
{
return {
condition: this._condition,
ignoreCount: this._ignoreCount,
actions: this._serializableActions(),
autoContinue: this._autoContinue
};
}
get info()
{
// The id, scriptIdentifier and resolved state are tied to the current session, so don't include them for serialization.
return {
contentIdentifier: this._contentIdentifier,
lineNumber: this._sourceCodeLocation.lineNumber,
columnNumber: this._sourceCodeLocation.columnNumber,
disabled: this._disabled,
condition: this._condition,
ignoreCount: this._ignoreCount,
actions: this._serializableActions(),
autoContinue: this._autoContinue
};
}
get probeActions()
{
return this._actions.filter(function(action) {
return action.type === WebInspector.BreakpointAction.Type.Probe;
});
}
cycleToNextMode()
{
if (this.disabled) {
// When cycling, clear auto-continue when going from disabled to enabled.
this.autoContinue = false;
this.disabled = false;
return;
}
if (this.autoContinue) {
this.disabled = true;
return;
}
if (this.actions.length) {
this.autoContinue = true;
return;
}
this.disabled = true;
}
createAction(type, precedingAction, data)
{
var newAction = new WebInspector.BreakpointAction(this, type, data || null);
if (!precedingAction)
this._actions.push(newAction);
else {
var index = this._actions.indexOf(precedingAction);
console.assert(index !== -1);
if (index === -1)
this._actions.push(newAction);
else
this._actions.splice(index + 1, 0, newAction);
}
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.ActionsDidChange);
return newAction;
}
recreateAction(type, actionToReplace)
{
var newAction = new WebInspector.BreakpointAction(this, type, null);
var index = this._actions.indexOf(actionToReplace);
console.assert(index !== -1);
if (index === -1)
return null;
this._actions[index] = newAction;
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.ActionsDidChange);
return newAction;
}
removeAction(action)
{
var index = this._actions.indexOf(action);
console.assert(index !== -1);
if (index === -1)
return;
this._actions.splice(index, 1);
if (!this._actions.length)
this.autoContinue = false;
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.ActionsDidChange);
}
clearActions(type)
{
if (!type)
this._actions = [];
else
this._actions = this._actions.filter(function(action) { return action.type !== type; });
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.ActionsDidChange);
}
saveIdentityToCookie(cookie)
{
cookie[WebInspector.Breakpoint.ContentIdentifierCookieKey] = this.contentIdentifier;
cookie[WebInspector.Breakpoint.LineNumberCookieKey] = this.sourceCodeLocation.lineNumber;
cookie[WebInspector.Breakpoint.ColumnNumberCookieKey] = this.sourceCodeLocation.columnNumber;
}
// Protected (Called by BreakpointAction)
breakpointActionDidChange(action)
{
var index = this._actions.indexOf(action);
console.assert(index !== -1);
if (index === -1)
return;
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.ActionsDidChange);
}
// Private
_serializableActions()
{
var actions = [];
for (var i = 0; i < this._actions.length; ++i)
actions.push(this._actions[i].info);
return actions;
}
_sourceCodeLocationLocationChanged(event)
{
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.LocationDidChange, event.data);
}
_sourceCodeLocationDisplayLocationChanged(event)
{
this.dispatchEventToListeners(WebInspector.Breakpoint.Event.DisplayLocationDidChange, event.data);
}
};
WebInspector.Breakpoint.DefaultBreakpointActionType = WebInspector.BreakpointAction.Type.Log;
WebInspector.Breakpoint.TypeIdentifier = "breakpoint";
WebInspector.Breakpoint.ContentIdentifierCookieKey = "breakpoint-content-identifier";
WebInspector.Breakpoint.LineNumberCookieKey = "breakpoint-line-number";
WebInspector.Breakpoint.ColumnNumberCookieKey = "breakpoint-column-number";
WebInspector.Breakpoint.Event = {
DisabledStateDidChange: "breakpoint-disabled-state-did-change",
ResolvedStateDidChange: "breakpoint-resolved-state-did-change",
ConditionDidChange: "breakpoint-condition-did-change",
IgnoreCountDidChange: "breakpoint-ignore-count-did-change",
ActionsDidChange: "breakpoint-actions-did-change",
AutoContinueDidChange: "breakpoint-auto-continue-did-change",
LocationDidChange: "breakpoint-location-did-change",
DisplayLocationDidChange: "breakpoint-display-location-did-change",
};