1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
using System;
using System.Xml;
using Mono.Debugger.Backend;
namespace Mono.Debugger
{
public class ExpressionBreakpoint : Breakpoint
{
public readonly DebuggerSession Session;
public readonly LocationType LocationType;
BreakpointHandle handle;
public override bool IsPersistent {
get { return true; }
}
public override bool IsActivated {
get { return handle != null; }
}
internal override BreakpointHandle Resolve (Thread target, StackFrame frame)
{
if (handle != null)
return handle;
SourceLocation location = Session.ParseLocation (
target, frame, LocationType, Name);
if (location == null)
throw new TargetException (TargetError.LocationInvalid);
handle = location.ResolveBreakpoint (Session, this);
return handle;
}
public override void Activate (Thread thread)
{
Resolve (thread, thread.CurrentFrame);
if (handle == null)
throw new TargetException (TargetError.LocationInvalid);
handle.Insert (thread);
}
public override void Deactivate (Thread target)
{
if (handle != null) {
handle.Remove (target);
handle = null;
}
}
internal override void OnTargetExited ()
{
handle = null;
}
protected override void GetSessionData (XmlElement root, XmlElement element)
{
XmlElement location_e = root.OwnerDocument.CreateElement ("Expression");
location_e.SetAttribute ("type", LocationType.ToString ());
location_e.SetAttribute ("expression", Name);
element.AppendChild (location_e);
}
internal ExpressionBreakpoint (DebuggerSession session, int index, ThreadGroup group,
LocationType type, string expression)
: base (EventType.Breakpoint, index, expression, group)
{
this.Session = session;
this.LocationType = type;
}
internal ExpressionBreakpoint (DebuggerSession session, ThreadGroup group,
LocationType type, string expression)
: base (EventType.Breakpoint, expression, group)
{
this.Session = session;
this.LocationType = type;
}
}
}
|