mirror of
https://github.com/golang/go
synced 2024-11-05 17:16:10 -07:00
0dda50d42a
Before this change, many kinds of error would cause the loader to stop. making it brittle when analyzing large codebases, as in "godoc -analysis". This change moves operations that used to occur during configuration---(*build.Context).Import, loading, and parsing of initial packages---into the Load call, and ensures that all failures during Loading are reported at the end so that the maximum amount of progress is made. Also: redesign the tests and add many new cases. Change-Id: Ia8cd99416af7c5d4a5fe133908adfa83676d401f Reviewed-on: https://go-review.googlesource.com/3626 Reviewed-by: Robert Griesemer <gri@golang.org>
141 lines
3.6 KiB
Go
141 lines
3.6 KiB
Go
// The eg command performs example-based refactoring.
|
|
// For documentation, run the command, or see Help in
|
|
// golang.org/x/tools/refactor/eg.
|
|
package main // import "golang.org/x/tools/cmd/eg"
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"go/parser"
|
|
"go/printer"
|
|
"go/token"
|
|
"os"
|
|
"os/exec"
|
|
"strings"
|
|
|
|
"golang.org/x/tools/go/loader"
|
|
"golang.org/x/tools/refactor/eg"
|
|
)
|
|
|
|
var (
|
|
beforeeditFlag = flag.String("beforeedit", "", "A command to exec before each file is edited (e.g. chmod, checkout). Whitespace delimits argument words. The string '{}' is replaced by the file name.")
|
|
helpFlag = flag.Bool("help", false, "show detailed help message")
|
|
templateFlag = flag.String("t", "", "template.go file specifying the refactoring")
|
|
transitiveFlag = flag.Bool("transitive", false, "apply refactoring to all dependencies too")
|
|
writeFlag = flag.Bool("w", false, "rewrite input files in place (by default, the results are printed to standard output)")
|
|
verboseFlag = flag.Bool("v", false, "show verbose matcher diagnostics")
|
|
)
|
|
|
|
const usage = `eg: an example-based refactoring tool.
|
|
|
|
Usage: eg -t template.go [-w] [-transitive] <args>...
|
|
-t template.go specifies the template file (use -help to see explanation)
|
|
-w causes files to be re-written in place.
|
|
-transitive causes all dependencies to be refactored too.
|
|
` + loader.FromArgsUsage
|
|
|
|
func main() {
|
|
if err := doMain(); err != nil {
|
|
fmt.Fprintf(os.Stderr, "eg: %s\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
func doMain() error {
|
|
flag.Parse()
|
|
args := flag.Args()
|
|
|
|
if *helpFlag {
|
|
fmt.Fprint(os.Stderr, eg.Help)
|
|
os.Exit(2)
|
|
}
|
|
|
|
if *templateFlag == "" {
|
|
return fmt.Errorf("no -t template.go file specified")
|
|
}
|
|
|
|
conf := loader.Config{
|
|
Fset: token.NewFileSet(),
|
|
ParserMode: parser.ParseComments,
|
|
SourceImports: true,
|
|
}
|
|
|
|
// The first Created package is the template.
|
|
conf.CreateFromFilenames("template", *templateFlag)
|
|
|
|
if len(args) == 0 {
|
|
fmt.Fprint(os.Stderr, usage)
|
|
os.Exit(1)
|
|
}
|
|
|
|
if _, err := conf.FromArgs(args, true); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Load, parse and type-check the whole program.
|
|
iprog, err := conf.Load()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Analyze the template.
|
|
template := iprog.Created[0]
|
|
xform, err := eg.NewTransformer(iprog.Fset, template, *verboseFlag)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Apply it to the input packages.
|
|
var pkgs []*loader.PackageInfo
|
|
if *transitiveFlag {
|
|
for _, info := range iprog.AllPackages {
|
|
pkgs = append(pkgs, info)
|
|
}
|
|
} else {
|
|
pkgs = iprog.InitialPackages()
|
|
}
|
|
var hadErrors bool
|
|
for _, pkg := range pkgs {
|
|
if pkg == template {
|
|
continue
|
|
}
|
|
for _, file := range pkg.Files {
|
|
n := xform.Transform(&pkg.Info, pkg.Pkg, file)
|
|
if n == 0 {
|
|
continue
|
|
}
|
|
filename := iprog.Fset.File(file.Pos()).Name()
|
|
fmt.Fprintf(os.Stderr, "=== %s (%d matches)\n", filename, n)
|
|
if *writeFlag {
|
|
// Run the before-edit command (e.g. "chmod +w", "checkout") if any.
|
|
if *beforeeditFlag != "" {
|
|
args := strings.Fields(*beforeeditFlag)
|
|
// Replace "{}" with the filename, like find(1).
|
|
for i := range args {
|
|
if i > 0 {
|
|
args[i] = strings.Replace(args[i], "{}", filename, -1)
|
|
}
|
|
}
|
|
cmd := exec.Command(args[0], args[1:]...)
|
|
cmd.Stdout = os.Stdout
|
|
cmd.Stderr = os.Stderr
|
|
if err := cmd.Run(); err != nil {
|
|
fmt.Fprintf(os.Stderr, "Warning: edit hook %q failed (%s)\n",
|
|
args, err)
|
|
}
|
|
}
|
|
if err := eg.WriteAST(iprog.Fset, filename, file); err != nil {
|
|
fmt.Fprintf(os.Stderr, "eg: %s\n", err)
|
|
hadErrors = true
|
|
}
|
|
} else {
|
|
printer.Fprint(os.Stdout, iprog.Fset, file)
|
|
}
|
|
}
|
|
}
|
|
if hadErrors {
|
|
os.Exit(1)
|
|
}
|
|
return nil
|
|
}
|