Documentation ¶
Index ¶
- type AddrLocationSpec
- type AmbiguousLocationError
- type Config
- type Debugger
- func (d *Debugger) Breakpoints() []*api.Breakpoint
- func (d *Debugger) ClearBreakpoint(requestedBp *api.Breakpoint) (*api.Breakpoint, error)
- func (d *Debugger) Command(command *api.DebuggerCommand) (*api.DebuggerState, error)
- func (d *Debugger) CreateBreakpoint(requestedBp *api.Breakpoint) (*api.Breakpoint, error)
- func (d *Debugger) Detach(kill bool) error
- func (d *Debugger) EvalVariableInScope(scope api.EvalScope, symbol string) (*api.Variable, error)
- func (d *Debugger) FindBreakpoint(id int) *api.Breakpoint
- func (d *Debugger) FindLocation(scope api.EvalScope, locStr string) ([]api.Location, error)
- func (d *Debugger) FindThread(id int) *api.Thread
- func (d *Debugger) FunctionArguments(scope api.EvalScope) ([]api.Variable, error)
- func (d *Debugger) Functions(filter string) ([]string, error)
- func (d *Debugger) Goroutines() ([]*api.Goroutine, error)
- func (d *Debugger) LocalVariables(scope api.EvalScope) ([]api.Variable, error)
- func (d *Debugger) PackageVariables(threadID int, filter string) ([]api.Variable, error)
- func (d *Debugger) ProcessPid() int
- func (d *Debugger) Registers(threadID int) (string, error)
- func (d *Debugger) Restart() error
- func (d *Debugger) SetVariableInScope(scope api.EvalScope, symbol, value string) error
- func (d *Debugger) Sources(filter string) ([]string, error)
- func (d *Debugger) Stacktrace(goroutineID, depth int, full bool) ([]api.Stackframe, error)
- func (d *Debugger) State() (*api.DebuggerState, error)
- func (d *Debugger) Threads() []*api.Thread
- type FuncLocationSpec
- type LineLocationSpec
- type LocationSpec
- type NormalLocationSpec
- type OffsetLocationSpec
- type RegexLocationSpec
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddrLocationSpec ¶
type AddrLocationSpec struct {
AddrExpr string
}
type AmbiguousLocationError ¶
type AmbiguousLocationError struct { Location string CandidatesString []string CandidatesLocation []api.Location }
func (AmbiguousLocationError) Error ¶
func (ale AmbiguousLocationError) Error() string
type Config ¶
type Config struct { // ProcessArgs are the arguments to launch a new process. ProcessArgs []string // AttachPid is the PID of an existing process to which the debugger should // attach. AttachPid int }
Config provides the configuration to start a Debugger.
Only one of ProcessArgs or AttachPid should be specified. If ProcessArgs is provided, a new process will be launched. Otherwise, the debugger will try to attach to an existing process with AttachPid.
type Debugger ¶
type Debugger struct {
// contains filtered or unexported fields
}
Debugger service.
Debugger provides a higher level of abstraction over proc.Process. It handles converting from internal types to the types expected by clients. It also handles functionality needed by clients, but not needed in lower lever packages such as proc.
func (*Debugger) Breakpoints ¶
func (d *Debugger) Breakpoints() []*api.Breakpoint
Breakpoints returns the list of current breakpoints.
func (*Debugger) ClearBreakpoint ¶
func (d *Debugger) ClearBreakpoint(requestedBp *api.Breakpoint) (*api.Breakpoint, error)
ClearBreakpoint clears a breakpoint.
func (*Debugger) Command ¶
func (d *Debugger) Command(command *api.DebuggerCommand) (*api.DebuggerState, error)
Command handles commands which control the debugger lifecycle
func (*Debugger) CreateBreakpoint ¶
func (d *Debugger) CreateBreakpoint(requestedBp *api.Breakpoint) (*api.Breakpoint, error)
CreateBreakpoint creates a breakpoint.
func (*Debugger) Detach ¶
Detach detaches from the target process. If `kill` is true we will kill the process after detaching.
func (*Debugger) EvalVariableInScope ¶
EvalVariableInScope will attempt to evaluate the variable represented by 'symbol' in the scope provided.
func (*Debugger) FindBreakpoint ¶
func (d *Debugger) FindBreakpoint(id int) *api.Breakpoint
FindBreakpoint returns the breakpoint specified by 'id'.
func (*Debugger) FindLocation ¶
FindLocation will find the location specified by 'locStr'.
func (*Debugger) FindThread ¶
FindThread returns the thread for the given 'id'.
func (*Debugger) FunctionArguments ¶
FunctionArguments returns the arguments to the current function.
func (*Debugger) Goroutines ¶
Goroutines will return a list of goroutines in the target process.
func (*Debugger) LocalVariables ¶
LocalVariables returns a list of the local variables.
func (*Debugger) PackageVariables ¶
PackageVariables returns a list of package variables for the thread, optionally regexp filtered using regexp described in 'filter'.
func (*Debugger) ProcessPid ¶
ProcessPid returns the PID of the process the debugger is debugging.
func (*Debugger) Restart ¶
Restart will restart the target process, first killing and then exec'ing it again.
func (*Debugger) SetVariableInScope ¶
SetVariableInScope will set the value of the variable represented by 'symbol' to the value given, in the given scope.
func (*Debugger) Stacktrace ¶
Stacktrace returns a list of Stackframes for the given goroutine. The length of the returned list will be min(stack_len, depth). If 'full' is true, then local vars, function args, etc will be returned as well.
type FuncLocationSpec ¶
type LineLocationSpec ¶
type LineLocationSpec struct {
Line int
}
type LocationSpec ¶
type NormalLocationSpec ¶
type NormalLocationSpec struct { Base string FuncBase *FuncLocationSpec LineOffset int }
func (*NormalLocationSpec) FileMatch ¶
func (loc *NormalLocationSpec) FileMatch(path string) bool
type OffsetLocationSpec ¶
type OffsetLocationSpec struct {
Offset int
}