-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgograph.go
268 lines (232 loc) · 6.3 KB
/
gograph.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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/*
Copyright 2018 Google LLC
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
https://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.
*/
/*gograph generates a DOT graph of the given type.
Referenced packages/types must be in your GOPATH.
Usage:
-debug
Enable debug logging on Stderr
-filename string
Where to store data if -type is specified (default: stdout).
-http string
Address to listen on for server (default: no server).
-type string
Type to analyze.
To analyze a type locally:
gograph -type github.com/tbpg/gograph.node | dot -Tpng out.dot -o out.png
Or, to run the server:
gograph -http :8080
Warning: This is still experimental - the API, CLI, and server might change.
*/
package main
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"go/types"
"io"
"io/ioutil"
"log"
"net/http"
"os"
"os/exec"
"strings"
"golang.org/x/tools/go/loader"
"gonum.org/v1/gonum/graph"
"gonum.org/v1/gonum/graph/encoding"
"gonum.org/v1/gonum/graph/encoding/dot"
"gonum.org/v1/gonum/graph/simple"
)
type node struct {
graph.Node
name string
}
func newNode(g *simple.DirectedGraph, name string) node {
return node{Node: g.NewNode(), name: name}
}
func (n node) Attributes() []encoding.Attribute {
return []encoding.Attribute{{Key: "label", Value: n.name}}
}
func main() {
h := flag.String("http", "", "Address to listen on for server (default: no server).")
t := flag.String("type", "", "Type to analyze.")
f := flag.String("filename", "", "Where to store data if -type is specified (default: stdout).")
d := flag.Bool("debug", false, "Enable debug logging on Stderr")
flag.Parse()
if *t == "" && *h == "" {
flag.Usage()
os.Exit(1)
}
debug := ioutil.Discard
if *d {
debug = os.Stderr
}
if *t != "" {
g, err := typeGraph(debug, *t)
if err != nil {
fmt.Fprintf(debug, "typeGraph error: %v\n", err)
os.Exit(1)
}
w := os.Stdout
if *f != "" {
of, err := os.Create(*f)
defer of.Close()
if err != nil {
fmt.Fprintf(debug, "os.Create error: %v\n", err)
}
w = of
}
writeDOT(w, g)
w.Close()
}
if *h != "" {
http.HandleFunc("/dot", logged(handleDOT))
http.HandleFunc("/rawdot", logged(handleRawDOT))
http.Handle("/", loggedHandler(http.FileServer(http.Dir("static"))))
log.Println("Listening on", *h)
http.ListenAndServe(*h, nil)
}
}
func logged(h http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
log.Println(r.Method, r.URL)
h(w, r)
}
}
func loggedHandler(h http.Handler) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
log.Println(r.Method, r.URL.Path)
h.ServeHTTP(w, r)
}
}
// Response is the response type.
type Response struct {
DOT string // Dot contains the Dot representation of the type.
Error string // Error contains any error messages.
}
func handleRawDOT(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
j := json.NewEncoder(w)
t := r.URL.Query()["type"]
if len(t) != 1 {
j.Encode(Response{Error: "more than one type= parameter"})
return
}
g, err := typeGraph(os.Stderr, t[0])
if err != nil {
j.Encode(Response{Error: "error getting type: " + err.Error()})
log.Printf("typeGraph error: %v\n", err)
return
}
b, err := marshalDOT(g)
if err != nil {
j.Encode(Response{Error: "error encoding DOT: " + err.Error()})
log.Printf("marshalDOT error: %v\n", err)
return
}
j.Encode(Response{DOT: string(b)})
}
func handleDOT(w http.ResponseWriter, r *http.Request) {
j := json.NewEncoder(w)
t := r.URL.Query()["type"]
if len(t) != 1 {
j.Encode(Response{Error: "more than one type= parameter"})
return
}
g, err := typeGraph(os.Stderr, t[0])
if err != nil {
j.Encode(Response{Error: "error getting type: " + err.Error()})
return
}
b, err := marshalDOT(g)
if err != nil {
j.Encode(Response{Error: "error encoding DOT: " + err.Error()})
return
}
buf := &bytes.Buffer{}
buf.Write(b)
cmd := exec.Command("dot", "-Tpng")
cmd.Stdout = w
cmd.Stdin = buf
err = cmd.Run()
if err != nil {
j.Encode(Response{Error: "failed to run dot command"})
}
}
func typeGraph(debug io.Writer, typeString string) (graph.Graph, error) {
g := simple.NewDirectedGraph()
rootType, err := findType(typeString)
if err != nil {
return nil, err
}
s, ok := rootType.Type().Underlying().(*types.Struct)
if !ok {
return nil, fmt.Errorf("not a struct")
}
fmt.Fprintf(debug, "%s\n", rootType.Type())
root := newNode(g, fmt.Sprintf("%q", rootType.Type()))
g.AddNode(root)
processStruct(debug, " ", g, root, s)
return g, nil
}
// pkgType returns the package and type from a given string of
// the form path/to/package.Type.
func pkgType(s string) (pkg, t string) {
split := strings.Split(s, ".")
pkg = strings.Join(split[0:len(split)-1], ".")
t = split[len(split)-1]
return pkg, t
}
// findType returns the types.Object corresponding to the given
// string of the form path/to/package.Type, or an error if the
// type cannot be found.
func findType(typeString string) (types.Object, error) {
pkg, t := pkgType(typeString)
var conf loader.Config
conf.Import(pkg)
prog, err := conf.Load()
if err != nil {
return nil, err
}
for _, pi := range prog.Imported {
if o := pi.Pkg.Scope().Lookup(t); o != nil {
return o, nil
}
}
return nil, fmt.Errorf("type not found: %q", typeString)
}
func processStruct(w io.Writer, p string, g *simple.DirectedGraph, parent node, s *types.Struct) {
for i := 0; i < s.NumFields(); i++ {
f := s.Field(i)
t := f.Type()
fmt.Fprintf(w, "%s%v\n", p, f.Type())
n := newNode(g, fmt.Sprintf("%q", f.Type()))
g.AddNode(n)
e := g.NewEdge(parent, n)
g.SetEdge(e)
if ss, ok := t.Underlying().(*types.Struct); ok {
processStruct(w, p+" ", g, n, ss)
}
}
}
func writeDOT(w io.Writer, g graph.Graph) error {
b, err := marshalDOT(g)
if err != nil {
return err
}
_, err = w.Write(b)
return err
}
func marshalDOT(g graph.Graph) ([]byte, error) {
return dot.Marshal(g, "goviz", "", "", false)
}