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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package protocol defines the types used to represent calls to the debug server.
package protocol // import "golang.org/x/debug/server/protocol"
import (
"encoding/gob"
"golang.org/x/debug"
)
func init() {
// Register implementations of debug.Value with gob.
gob.Register(debug.Pointer{})
gob.Register(debug.Array{})
gob.Register(debug.Struct{})
gob.Register(debug.Slice{})
gob.Register(debug.Map{})
gob.Register(debug.String{})
gob.Register(debug.Channel{})
gob.Register(debug.Func{})
gob.Register(debug.Interface{})
}
// For regularity, each method has a unique Request and a Response type even
// when not strictly necessary.
// File I/O, at the top because they're simple.
type ReadAtRequest struct {
FD int
Len int
Offset int64
}
type ReadAtResponse struct {
Data []byte
}
type WriteAtRequest struct {
FD int
Data []byte
Offset int64
}
type WriteAtResponse struct {
Len int
}
type CloseRequest struct {
FD int
}
type CloseResponse struct {
}
// Program methods.
type OpenRequest struct {
Name string
Mode string
}
type OpenResponse struct {
FD int
}
type RunRequest struct {
Args []string
}
type RunResponse struct {
Status debug.Status
}
type ResumeRequest struct {
}
type ResumeResponse struct {
Status debug.Status
}
type BreakpointRequest struct {
Address uint64
}
type BreakpointAtFunctionRequest struct {
Function string
}
type BreakpointAtLineRequest struct {
File string
Line uint64
}
type BreakpointResponse struct {
PCs []uint64
}
type DeleteBreakpointsRequest struct {
PCs []uint64
}
type DeleteBreakpointsResponse struct {
}
type EvalRequest struct {
Expr string
}
type EvalResponse struct {
Result []string
}
type EvaluateRequest struct {
Expression string
}
type EvaluateResponse struct {
Result debug.Value
}
type FramesRequest struct {
Count int
}
type FramesResponse struct {
Frames []debug.Frame
}
type VarByNameRequest struct {
Name string
}
type VarByNameResponse struct {
Var debug.Var
}
type ValueRequest struct {
Var debug.Var
}
type ValueResponse struct {
Value debug.Value
}
type MapElementRequest struct {
Map debug.Map
Index uint64
}
type MapElementResponse struct {
Key debug.Var
Value debug.Var
}
type GoroutinesRequest struct {
}
type GoroutinesResponse struct {
Goroutines []*debug.Goroutine
}
|