-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathmain.go
255 lines (221 loc) · 7.48 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
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
// Copyright 2018 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.
// The gopackages command is a diagnostic tool that demonstrates
// how to use golang.org/x/tools/go/packages to load, parse,
// type-check, and print one or more Go packages.
// Its precise output is unspecified and may change.
package main
import (
"context"
"encoding/json"
"flag"
"fmt"
"go/types"
"log"
"os"
"sort"
"strings"
"golang.org/x/tools/go/packages"
"golang.org/x/tools/go/types/typeutil"
"golang.org/x/tools/internal/drivertest"
"golang.org/x/tools/internal/tool"
)
func main() {
drivertest.RunIfChild()
tool.Main(context.Background(), &application{Mode: "imports"}, os.Args[1:])
}
type application struct {
// Embed the basic profiling flags supported by the tool package
tool.Profile
Deps bool `flag:"deps" help:"show dependencies too"`
Test bool `flag:"test" help:"include any tests implied by the patterns"`
Mode string `flag:"mode" help:"mode (one of files, imports, types, syntax, allsyntax)"`
Tags string `flag:"tags" help:"comma-separated list of extra build tags (see: go help buildconstraint)"`
Private bool `flag:"private" help:"show non-exported declarations too (if -mode=syntax)"`
PrintJSON bool `flag:"json" help:"print package in JSON form"`
BuildFlags stringListValue `flag:"buildflag" help:"pass argument to underlying build system (may be repeated)"`
Driver bool `flag:"driver" help:"use golist passthrough driver (for debugging driver issues)"`
}
// Name implements tool.Application returning the binary name.
func (app *application) Name() string { return "gopackages" }
// Usage implements tool.Application returning empty extra argument usage.
func (app *application) Usage() string { return "package..." }
// ShortHelp implements tool.Application returning the main binary help.
func (app *application) ShortHelp() string {
return "gopackages loads, parses, type-checks, and prints one or more Go packages."
}
// DetailedHelp implements tool.Application returning the main binary help.
func (app *application) DetailedHelp(f *flag.FlagSet) {
fmt.Fprint(f.Output(), `
Packages are specified using the notation of "go list",
or other underlying build system.
The mode flag determines how much information is computed and printed
for the specified packages. In order of increasing computational cost,
the legal values are:
-mode=files shows only the names of the packages' files.
-mode=imports also shows the imports. (This is the default.)
-mode=types loads the compiler's export data and displays the
type of each exported declaration.
-mode=syntax parses and type checks syntax trees for the initial
packages. (With the -private flag, the types of
non-exported declarations are shown too.)
Type information for dependencies is obtained from
compiler export data.
-mode=allsyntax is like -mode=syntax but applied to all dependencies.
Flags:
`)
f.PrintDefaults()
}
// Run takes the args after flag processing and performs the specified query.
func (app *application) Run(ctx context.Context, args ...string) error {
if len(args) == 0 {
return tool.CommandLineErrorf("not enough arguments")
}
env := os.Environ()
if app.Driver {
env = append(env, drivertest.Env(log.Default())...)
}
// Load, parse, and type-check the packages named on the command line.
cfg := &packages.Config{
Mode: packages.LoadSyntax,
Tests: app.Test,
BuildFlags: append([]string{"-tags=" + app.Tags}, app.BuildFlags...),
Env: env,
}
// -mode flag
switch strings.ToLower(app.Mode) {
case "files":
cfg.Mode = packages.LoadFiles
case "imports":
cfg.Mode = packages.LoadImports
case "types":
cfg.Mode = packages.LoadTypes
case "syntax":
cfg.Mode = packages.LoadSyntax
case "allsyntax":
cfg.Mode = packages.LoadAllSyntax
default:
return tool.CommandLineErrorf("invalid mode: %s", app.Mode)
}
cfg.Mode |= packages.NeedModule
lpkgs, err := packages.Load(cfg, args...)
if err != nil {
return err
}
// -deps: print dependencies too.
if app.Deps {
// We can't use packages.All because
// we need an ordered traversal.
var all []*packages.Package // postorder
seen := make(map[*packages.Package]bool)
var visit func(*packages.Package)
visit = func(lpkg *packages.Package) {
if !seen[lpkg] {
seen[lpkg] = true
// visit imports
var importPaths []string
for path := range lpkg.Imports {
importPaths = append(importPaths, path)
}
sort.Strings(importPaths) // for determinism
for _, path := range importPaths {
visit(lpkg.Imports[path])
}
all = append(all, lpkg)
}
}
for _, lpkg := range lpkgs {
visit(lpkg)
}
lpkgs = all
}
for _, lpkg := range lpkgs {
app.print(lpkg)
}
return nil
}
func (app *application) print(lpkg *packages.Package) {
if app.PrintJSON {
data, _ := json.MarshalIndent(lpkg, "", "\t")
os.Stdout.Write(data)
return
}
// title
var kind string
// TODO(matloob): If IsTest is added back print "test command" or
// "test package" for packages with IsTest == true.
if lpkg.Name == "main" {
kind += "command"
} else {
kind += "package"
}
fmt.Printf("Go %s %q:\n", kind, lpkg.ID) // unique ID
if mod := lpkg.Module; mod != nil {
fmt.Printf("\tmodule %s@%s\n", mod.Path, mod.Version)
}
fmt.Printf("\tpackage %s\n", lpkg.Name)
// characterize type info
if lpkg.Types == nil {
fmt.Printf("\thas no exported type info\n")
} else if !lpkg.Types.Complete() {
fmt.Printf("\thas incomplete exported type info\n")
} else if len(lpkg.Syntax) == 0 {
fmt.Printf("\thas complete exported type info\n")
} else {
fmt.Printf("\thas complete exported type info and typed ASTs\n")
}
if lpkg.Types != nil && lpkg.IllTyped && len(lpkg.Errors) == 0 {
fmt.Printf("\thas an error among its dependencies\n")
}
// source files
for _, src := range lpkg.GoFiles {
fmt.Printf("\tfile %s\n", src)
}
// imports
var lines []string
for importPath, imp := range lpkg.Imports {
var line string
if imp.ID == importPath {
line = fmt.Sprintf("\timport %q", importPath)
} else {
line = fmt.Sprintf("\timport %q => %q", importPath, imp.ID)
}
lines = append(lines, line)
}
sort.Strings(lines)
for _, line := range lines {
fmt.Println(line)
}
// errors
for _, err := range lpkg.Errors {
fmt.Printf("\t%s\n", err)
}
// types of package members
if lpkg.Types != nil {
qual := types.RelativeTo(lpkg.Types)
scope := lpkg.Types.Scope()
for _, name := range scope.Names() {
obj := scope.Lookup(name)
if !obj.Exported() && !app.Private {
continue // skip unexported names
}
fmt.Printf("\t%s\n", types.ObjectString(obj, qual))
if _, ok := obj.(*types.TypeName); ok {
for _, meth := range typeutil.IntuitiveMethodSet(obj.Type(), nil) {
if !meth.Obj().Exported() && !app.Private {
continue // skip unexported names
}
fmt.Printf("\t%s\n", types.SelectionString(meth, qual))
}
}
}
}
fmt.Println()
}
// stringListValue is a flag.Value that accumulates strings.
// e.g. --flag=one --flag=two would produce []string{"one", "two"}.
type stringListValue []string
func (ss *stringListValue) Get() interface{} { return []string(*ss) }
func (ss *stringListValue) String() string { return fmt.Sprintf("%q", *ss) }
func (ss *stringListValue) Set(s string) error { *ss = append(*ss, s); return nil }