mirror of
https://github.com/golang/go
synced 2024-11-19 01:14:39 -07:00
f119874203
Command set: - what: an extremely fast query that parses a single file and returns the AST stack, package name and the set of query modes that apply to the current selection. Intended for GUI tools that need to grey out UI elements. - definition: shows the definition of an identifier. - pointsto: the PTA features of 'describe' have been split out into their own command. - describe: with PTA stripped out, the cost is now bounded by type checking. Performance: - The importer.Config.TypeCheckFuncBodies predicate supports setting the 'IgnoreFuncBodies' typechecker flag on a per-package basis. This means we can load dependencies from source more quickly if we only need exported types. (We avoid gcimport data because it may be absent or stale.) This also means we can run type-based queries on packages that aren't part of the pointer analysis scope. (Yay.) - Modes that require only type analysis of the query package run a "what" query first, and restrict their analysis scope to just that package and its dependencies (sans func bodies), making them much faster. - We call newOracle not oracle.New in Query, so that the 'needs' bitset isn't ignored (oops!). This makes the non-PTA queries faster. Also: - removed vestigial timers junk. - pos.go: existing position utilties split out into own file. Added parsePosFlag utility. - numerous cosmetic tweaks. + very basic tests. To do in follow-ups: - sophisticated editor integration of "what". - better tests. - refactoring of control flow as described in comment. - changes to "implements", "describe" commands. - update design doc + user manual. R=crawshaw, dominik.honnef CC=golang-dev, gri https://golang.org/cl/40630043
205 lines
5.0 KiB
Go
205 lines
5.0 KiB
Go
// Copyright 2013 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.
|
|
|
|
package oracle
|
|
|
|
import (
|
|
"bytes"
|
|
"go/ast"
|
|
"go/printer"
|
|
"go/token"
|
|
"sort"
|
|
|
|
"code.google.com/p/go.tools/go/types"
|
|
"code.google.com/p/go.tools/oracle/serial"
|
|
)
|
|
|
|
// freevars displays the lexical (not package-level) free variables of
|
|
// the selection.
|
|
//
|
|
// It treats A.B.C as a separate variable from A to reveal the parts
|
|
// of an aggregate type that are actually needed.
|
|
// This aids refactoring.
|
|
//
|
|
// TODO(adonovan): optionally display the free references to
|
|
// file/package scope objects, and to objects from other packages.
|
|
// Depending on where the resulting function abstraction will go,
|
|
// these might be interesting. Perhaps group the results into three
|
|
// bands.
|
|
//
|
|
func freevars(o *Oracle, qpos *QueryPos) (queryResult, error) {
|
|
file := qpos.path[len(qpos.path)-1] // the enclosing file
|
|
fileScope := qpos.info.Scopes[file]
|
|
pkgScope := fileScope.Parent()
|
|
|
|
// The id and sel functions return non-nil if they denote an
|
|
// object o or selection o.x.y that is referenced by the
|
|
// selection but defined neither within the selection nor at
|
|
// file scope, i.e. it is in the lexical environment.
|
|
var id func(n *ast.Ident) types.Object
|
|
var sel func(n *ast.SelectorExpr) types.Object
|
|
|
|
sel = func(n *ast.SelectorExpr) types.Object {
|
|
switch x := unparen(n.X).(type) {
|
|
case *ast.SelectorExpr:
|
|
return sel(x)
|
|
case *ast.Ident:
|
|
return id(x)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
id = func(n *ast.Ident) types.Object {
|
|
obj := qpos.info.ObjectOf(n)
|
|
if obj == nil {
|
|
return nil // TODO(adonovan): fix: this fails for *types.Label.
|
|
panic("no types.Object for ast.Ident")
|
|
}
|
|
if _, ok := obj.(*types.PkgName); ok {
|
|
return nil // imported package
|
|
}
|
|
if n.Pos() == obj.Pos() {
|
|
return nil // this ident is the definition, not a reference
|
|
}
|
|
if !(file.Pos() <= obj.Pos() && obj.Pos() <= file.End()) {
|
|
return nil // not defined in this file
|
|
}
|
|
scope := obj.Parent()
|
|
if scope == nil {
|
|
return nil // e.g. interface method, struct field
|
|
}
|
|
if scope == fileScope || scope == pkgScope {
|
|
return nil // defined at file or package scope
|
|
}
|
|
if qpos.start <= obj.Pos() && obj.Pos() <= qpos.end {
|
|
return nil // defined within selection => not free
|
|
}
|
|
return obj
|
|
}
|
|
|
|
// Maps each reference that is free in the selection
|
|
// to the object it refers to.
|
|
// The map de-duplicates repeated references.
|
|
refsMap := make(map[string]freevarsRef)
|
|
|
|
// Visit all the identifiers in the selected ASTs.
|
|
ast.Inspect(qpos.path[0], func(n ast.Node) bool {
|
|
if n == nil {
|
|
return true // popping DFS stack
|
|
}
|
|
|
|
// Is this node contained within the selection?
|
|
// (freevars permits inexact selections,
|
|
// like two stmts in a block.)
|
|
if qpos.start <= n.Pos() && n.End() <= qpos.end {
|
|
var obj types.Object
|
|
var prune bool
|
|
switch n := n.(type) {
|
|
case *ast.Ident:
|
|
obj = id(n)
|
|
|
|
case *ast.SelectorExpr:
|
|
obj = sel(n)
|
|
prune = true
|
|
}
|
|
|
|
if obj != nil {
|
|
var kind string
|
|
switch obj.(type) {
|
|
case *types.Var:
|
|
kind = "var"
|
|
case *types.Func:
|
|
kind = "func"
|
|
case *types.TypeName:
|
|
kind = "type"
|
|
case *types.Const:
|
|
kind = "const"
|
|
case *types.Label:
|
|
kind = "label"
|
|
default:
|
|
panic(obj)
|
|
}
|
|
|
|
typ := qpos.info.TypeOf(n.(ast.Expr))
|
|
ref := freevarsRef{kind, printNode(o.fset, n), typ, obj}
|
|
refsMap[ref.ref] = ref
|
|
|
|
if prune {
|
|
return false // don't descend
|
|
}
|
|
}
|
|
}
|
|
|
|
return true // descend
|
|
})
|
|
|
|
refs := make([]freevarsRef, 0, len(refsMap))
|
|
for _, ref := range refsMap {
|
|
refs = append(refs, ref)
|
|
}
|
|
sort.Sort(byRef(refs))
|
|
|
|
return &freevarsResult{
|
|
qpos: qpos,
|
|
refs: refs,
|
|
}, nil
|
|
}
|
|
|
|
type freevarsResult struct {
|
|
qpos *QueryPos
|
|
refs []freevarsRef
|
|
}
|
|
|
|
type freevarsRef struct {
|
|
kind string
|
|
ref string
|
|
typ types.Type
|
|
obj types.Object
|
|
}
|
|
|
|
func (r *freevarsResult) display(printf printfFunc) {
|
|
if len(r.refs) == 0 {
|
|
printf(r.qpos, "No free identifiers.")
|
|
} else {
|
|
printf(r.qpos, "Free identifiers:")
|
|
for _, ref := range r.refs {
|
|
// Avoid printing "type T T".
|
|
var typstr string
|
|
if ref.kind != "type" {
|
|
typstr = " " + types.TypeString(r.qpos.info.Pkg, ref.typ)
|
|
}
|
|
printf(ref.obj, "%s %s%s", ref.kind, ref.ref, typstr)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (r *freevarsResult) toSerial(res *serial.Result, fset *token.FileSet) {
|
|
var refs []*serial.FreeVar
|
|
for _, ref := range r.refs {
|
|
refs = append(refs,
|
|
&serial.FreeVar{
|
|
Pos: fset.Position(ref.obj.Pos()).String(),
|
|
Kind: ref.kind,
|
|
Ref: ref.ref,
|
|
Type: ref.typ.String(),
|
|
})
|
|
}
|
|
res.Freevars = refs
|
|
}
|
|
|
|
// -------- utils --------
|
|
|
|
type byRef []freevarsRef
|
|
|
|
func (p byRef) Len() int { return len(p) }
|
|
func (p byRef) Less(i, j int) bool { return p[i].ref < p[j].ref }
|
|
func (p byRef) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
|
|
|
|
// printNode returns the pretty-printed syntax of n.
|
|
func printNode(fset *token.FileSet, n ast.Node) string {
|
|
var buf bytes.Buffer
|
|
printer.Fprint(&buf, fset, n)
|
|
return buf.String()
|
|
}
|