-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack.go
249 lines (225 loc) · 5.89 KB
/
stack.go
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
package errors
import (
"bytes"
"encoding/json"
"fmt"
"io"
"path"
"runtime"
"strconv"
"strings"
)
type stackTracer interface {
StackTrace() StackTrace
}
// Frame represents a program counter inside a stack frame.
// For historical reasons if Frame is interpreted as a uintptr
// its value represents the program counter + 1.
type Frame uintptr
// pc returns the program counter for this frame;
// multiple frames may have the same PC value.
func (f Frame) pc() uintptr { return uintptr(f) - 1 }
// File returns the full path to the file that contains the
// function for this Frame's pc.
func (f Frame) File() string {
fn := runtime.FuncForPC(f.pc())
if fn == nil {
return "unknown"
}
file, _ := fn.FileLine(f.pc())
return file
}
// Line returns the line number of source code of the
// function for this Frame's pc.
func (f Frame) Line() int {
fn := runtime.FuncForPC(f.pc())
if fn == nil {
return 0
}
_, line := fn.FileLine(f.pc())
return line
}
// Name returns the name of this function, if known.
func (f Frame) Name() string {
fn := runtime.FuncForPC(f.pc())
if fn == nil {
return "unknown"
}
return fn.Name()
}
// Format formats the frame according to the fmt.Formatter interface.
//
// %s source file
// %d source line
// %n function name
// %v equivalent to %s:%d
//
// Format accepts flags that alter the printing of some verbs, as follows:
//
// %+s function name and path of source file relative to the compile time
// GOPATH separated by \n\t (<funcname>\n\t<path>)
// %+v equivalent to %+s:%d
func (f Frame) Format(s fmt.State, verb rune) {
switch verb {
case 's':
switch {
case s.Flag('+'):
io.WriteString(s, f.Name())
io.WriteString(s, "\n\t")
io.WriteString(s, f.File())
default:
io.WriteString(s, path.Base(f.File()))
}
case 'd':
io.WriteString(s, strconv.Itoa(f.Line()))
case 'n':
io.WriteString(s, funcname(f.Name()))
case 'v':
f.Format(s, 's')
io.WriteString(s, ":")
f.Format(s, 'd')
}
}
// String formats a stacktrace Frame as a text string. The output is the
// same as that of fmt.Sprintf("%+v", f), but without newlines or tabs.
func (f Frame) String() string {
name := f.Name()
if name == "unknown" {
return name
}
return fmt.Sprintf("%s %s:%d", name, f.File(), f.Line())
}
// MarshalText formats a stacktrace Frame as a text string. The output is the
// same as that of fmt.Sprintf("%+v", f), but without newlines or tabs.
func (f Frame) MarshalText() ([]byte, error) {
return []byte(f.String()), nil
}
// MarshalJSON returns the JSON representation of Frame with three fields:
// function name, file name and line.
func (f Frame) MarshalJSON() ([]byte, error) {
return json.Marshal(struct {
Function string `json:"function"`
File string `json:"file,omitempty"`
Line int `json:"line,omitempty"`
}{
Function: f.Name(),
File: f.File(),
Line: f.Line(),
})
}
// StackTrace is stack of Frames from innermost (newest) to outermost (oldest).
type StackTrace []Frame
// Format formats the stack of Frames according to the fmt.Formatter interface.
//
// %s lists source files for each Frame in the stack
// %v lists the source file and line number for each Frame in the stack
//
// Format accepts flags that alter the printing of some verbs, as follows:
//
// %+v Prints filename, function, and line number for each Frame in the stack.
func (st StackTrace) Format(s fmt.State, verb rune) {
switch verb {
case 'v':
switch {
case s.Flag('+'):
for _, f := range st {
io.WriteString(s, "\n")
f.Format(s, verb)
}
case s.Flag('#'):
fmt.Fprintf(s, "%#v", []Frame(st))
default:
st.formatSlice(s, verb)
}
case 's':
st.formatSlice(s, verb)
}
}
// String formats stack trace as a text string. The output is the
// same as that of fmt.Sprintf("%+v", st).
func (st StackTrace) String() string {
var s strings.Builder
for i, frame := range st {
if i > 0 {
s.WriteString("\n")
}
fmt.Fprintf(&s, "%+v", frame)
}
return s.String()
}
// Strings returns as a slice of formatted strings. Every Frame formatted same as that of fmt.Sprintf("%+v", f),
// but without newlines or tabs.
func (st StackTrace) Strings() []string {
s := make([]string, len(st))
for i, frame := range st {
s[i] = frame.String()
}
return s
}
// MarshalJSON returns the JSON array representation of every Frame with three fields:
// function name, file name and line.
func (st StackTrace) MarshalJSON() ([]byte, error) {
var b bytes.Buffer
b.WriteString("[")
for i, frame := range st {
if i > 0 {
b.WriteString(",")
}
d, err := frame.MarshalJSON()
if err != nil {
return nil, err
}
b.Write(d)
}
b.WriteString("]")
return b.Bytes(), nil
}
// formatSlice will format this StackTrace into the given buffer as a slice of
// Frame, only valid when called with '%s' or '%v'.
func (st StackTrace) formatSlice(s fmt.State, verb rune) {
io.WriteString(s, "[")
for i, f := range st {
if i > 0 {
io.WriteString(s, " ")
}
f.Format(s, verb)
}
io.WriteString(s, "]")
}
// stack represents a stack of program counters.
type stack []uintptr
func (s *stack) Format(st fmt.State, verb rune) {
switch verb {
case 'v':
switch {
case st.Flag('+'):
for _, pc := range *s {
f := Frame(pc)
fmt.Fprintf(st, "\n%+v", f)
}
}
}
}
func (s *stack) StackTrace() StackTrace {
f := make([]Frame, len(*s))
for i := 0; i < len(f); i++ {
f[i] = Frame((*s)[i])
}
return f
}
// newStack creates a stack of program counters pointing to the place it was called.
// The argument skip is the number of stack frames to skip before stack trace.
func newStack(skip int) *stack {
const depth = 32
var pcs [depth]uintptr
n := runtime.Callers(3+skip, pcs[:])
var st stack = pcs[0:n]
return &st
}
// funcname removes the path prefix component of a function's name reported by func.Name().
func funcname(name string) string {
i := strings.LastIndex(name, "/")
name = name[i+1:]
i = strings.Index(name, ".")
return name[i+1:]
}