-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
169 lines (148 loc) · 3.57 KB
/
main.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
// Copyright 2021 Chris Thunes
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"errors"
"flag"
"fmt"
"io/ioutil"
"log"
"os"
"regexp"
"strings"
)
type StackDump struct {
Text string
}
type Thread struct {
Header string
Name string
Stack string
}
func (dump *StackDump) parseThread(lines []string) (*Thread, error) {
header := lines[0]
stack := strings.Join(lines[1:], "\n")
// Extract name and remove quotes
startName := strings.IndexByte(header, '"')
endName := strings.LastIndexByte(header, '"')
if startName < 0 || endName <= startName {
return nil, errors.New("no thread name found")
}
name := header[startName+1 : endName]
thread := &Thread{
Header: header,
Name: name,
Stack: stack,
}
return thread, nil
}
func (dump *StackDump) ParseThreads() ([]*Thread, error) {
var threads []*Thread
var thread []string
for _, l := range strings.Split(dump.Text, "\n") {
if len(l) > 0 && (l[0] == ' ' || l[0] == '\t') {
if len(thread) > 0 {
thread = append(thread, l)
}
} else {
if len(thread) > 0 {
parsed, err := dump.parseThread(thread)
if err != nil {
return nil, err
}
threads = append(threads, parsed)
thread = nil
}
if len(l) > 0 && strings.Contains(l, "nid=") && strings.Contains(l, "tid=") {
thread = append(thread, l)
}
}
}
if len(thread) > 0 {
parsed, err := dump.parseThread(thread)
if err != nil {
return nil, err
}
threads = append(threads, parsed)
}
return threads, nil
}
func main() {
flag.Usage = func() {
out := flag.CommandLine.Output()
usage := "usage: %s [-c] [-v] <pattern>\n"
fmt.Fprintf(out, usage, os.Args[0])
flag.PrintDefaults()
}
usageError := func(format string, a ...interface{}) {
fmt.Fprintf(os.Stderr, "error: "+format, a...)
fmt.Fprint(os.Stderr, "\n\n")
flag.Usage()
os.Exit(1)
}
invert := false
countOnly := false
matchName := false
flag.BoolVar(&invert, "v", invert, "invert matching")
flag.BoolVar(&countOnly, "c", countOnly, "print number of matching threads")
flag.BoolVar(&matchName, "name", matchName, "match on thread name only")
flag.Parse()
if flag.NArg() < 1 {
usageError("missing argument")
} else if flag.NArg() > 1 {
usageError("too many arguments")
}
pattern, err := regexp.Compile(flag.Arg(0))
if err != nil {
log.Fatalf("invalid pattern: %v", err)
}
stackBytes, err := ioutil.ReadAll(os.Stdin)
if err != nil {
log.Fatalf("error reading stdin: %v", err)
}
stack := &StackDump{string(stackBytes)}
threads, err := stack.ParseThreads()
if err != nil {
log.Fatalf("error parsing stack dump: %v", err)
}
count := 0
first := true
for _, thread := range threads {
text := thread.Header
if len(thread.Stack) > 0 {
text += "\n" + thread.Stack
}
var matches bool
if matchName {
matches = pattern.MatchString(thread.Name)
} else {
matches = pattern.MatchString(text)
}
if matches != invert {
if countOnly {
count += 1
} else {
if first {
first = false
} else {
fmt.Println()
}
fmt.Println(text)
}
}
}
if countOnly {
fmt.Println(count)
}
}