2013-09-10 12:11:42 -06:00
|
|
|
// 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 (
|
2015-03-26 12:07:29 -06:00
|
|
|
"bytes"
|
2013-09-25 12:34:39 -06:00
|
|
|
"fmt"
|
2013-09-10 12:11:42 -06:00
|
|
|
"go/ast"
|
|
|
|
"go/token"
|
2015-03-26 12:07:29 -06:00
|
|
|
"io/ioutil"
|
2013-09-10 12:11:42 -06:00
|
|
|
"sort"
|
|
|
|
|
2014-11-09 14:50:40 -07:00
|
|
|
"golang.org/x/tools/go/types"
|
|
|
|
"golang.org/x/tools/oracle/serial"
|
2013-09-10 12:11:42 -06:00
|
|
|
)
|
|
|
|
|
2015-03-26 12:07:29 -06:00
|
|
|
// TODO(adonovan): use golang.org/x/tools/refactor/importgraph to choose
|
|
|
|
// the scope automatically.
|
|
|
|
|
2013-09-10 12:11:42 -06:00
|
|
|
// Referrers reports all identifiers that resolve to the same object
|
|
|
|
// as the queried identifier, within any package in the analysis scope.
|
|
|
|
//
|
go.tools/oracle: refactor Oracle API to allow repeated queries on same scope.
The existing standalone Query function builds an importer, ssa.Program, oracle,
and query position, executes the query and returns the result.
For clients (such as Frederik Zipp's web-based github.com/fzipp/pythia tool)
that wish to load the program once and make several queries, we now expose
these as separate operations too. Here's a client, in pseudocode:
o := oracle.New(...)
for ... {
qpos := o.ParseQueryPos(...)
res := o.Query(mode, qpos)
print result
}
NB: this is a slight deoptimisation in the one-shot case since we have to
build the entire SSA program with debug info, not just the query package,
since we now don't know the query package at that time.
The 'exact' param to ParseQueryPos needs more thought since its
ideal value is a function of the query mode. This will do for now.
Details:
- expose Oracle type, New() func and Query() method.
- expose QueryPos type and ParseQueryPos func.
- improved package doc comment.
- un-exposed the "needs" bits.
- added test.
R=crawshaw
CC=frederik.zipp, golang-dev
https://golang.org/cl/13810043
2013-09-23 13:02:18 -06:00
|
|
|
func referrers(o *Oracle, qpos *QueryPos) (queryResult, error) {
|
|
|
|
id, _ := qpos.path[0].(*ast.Ident)
|
2013-09-10 12:11:42 -06:00
|
|
|
if id == nil {
|
2013-09-25 12:34:39 -06:00
|
|
|
return nil, fmt.Errorf("no identifier here")
|
2013-09-10 12:11:42 -06:00
|
|
|
}
|
|
|
|
|
go.tools/oracle: refactor Oracle API to allow repeated queries on same scope.
The existing standalone Query function builds an importer, ssa.Program, oracle,
and query position, executes the query and returns the result.
For clients (such as Frederik Zipp's web-based github.com/fzipp/pythia tool)
that wish to load the program once and make several queries, we now expose
these as separate operations too. Here's a client, in pseudocode:
o := oracle.New(...)
for ... {
qpos := o.ParseQueryPos(...)
res := o.Query(mode, qpos)
print result
}
NB: this is a slight deoptimisation in the one-shot case since we have to
build the entire SSA program with debug info, not just the query package,
since we now don't know the query package at that time.
The 'exact' param to ParseQueryPos needs more thought since its
ideal value is a function of the query mode. This will do for now.
Details:
- expose Oracle type, New() func and Query() method.
- expose QueryPos type and ParseQueryPos func.
- improved package doc comment.
- un-exposed the "needs" bits.
- added test.
R=crawshaw
CC=frederik.zipp, golang-dev
https://golang.org/cl/13810043
2013-09-23 13:02:18 -06:00
|
|
|
obj := qpos.info.ObjectOf(id)
|
2013-09-10 12:11:42 -06:00
|
|
|
if obj == nil {
|
|
|
|
// Happens for y in "switch y := x.(type)", but I think that's all.
|
2013-09-25 12:34:39 -06:00
|
|
|
return nil, fmt.Errorf("no object for identifier")
|
2013-09-10 12:11:42 -06:00
|
|
|
}
|
|
|
|
|
2014-02-27 11:21:59 -07:00
|
|
|
// Iterate over all go/types' Uses facts for the entire program.
|
2013-12-13 08:04:55 -07:00
|
|
|
var refs []*ast.Ident
|
2013-09-10 12:11:42 -06:00
|
|
|
for _, info := range o.typeInfo {
|
2014-02-27 11:21:59 -07:00
|
|
|
for id2, obj2 := range info.Uses {
|
2013-09-13 10:52:57 -06:00
|
|
|
if sameObj(obj, obj2) {
|
2013-12-13 08:04:55 -07:00
|
|
|
refs = append(refs, id2)
|
2013-09-10 12:11:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-13 08:04:55 -07:00
|
|
|
sort.Sort(byNamePos(refs))
|
2013-09-10 12:11:42 -06:00
|
|
|
|
|
|
|
return &referrersResult{
|
2015-03-26 12:07:29 -06:00
|
|
|
qpos: qpos,
|
2013-12-13 08:04:55 -07:00
|
|
|
query: id,
|
2013-09-10 12:11:42 -06:00
|
|
|
obj: obj,
|
|
|
|
refs: refs,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2013-09-13 10:52:57 -06:00
|
|
|
// same reports whether x and y are identical, or both are PkgNames
|
2014-09-02 16:12:08 -06:00
|
|
|
// that import the same Package.
|
2013-09-10 12:11:42 -06:00
|
|
|
//
|
2013-09-13 10:52:57 -06:00
|
|
|
func sameObj(x, y types.Object) bool {
|
|
|
|
if x == y {
|
|
|
|
return true
|
|
|
|
}
|
2014-09-02 16:12:08 -06:00
|
|
|
if x, ok := x.(*types.PkgName); ok {
|
|
|
|
if y, ok := y.(*types.PkgName); ok {
|
|
|
|
return x.Imported() == y.Imported()
|
2013-09-10 12:11:42 -06:00
|
|
|
}
|
|
|
|
}
|
2013-09-13 10:52:57 -06:00
|
|
|
return false
|
2013-09-10 12:11:42 -06:00
|
|
|
}
|
|
|
|
|
2013-12-13 08:04:55 -07:00
|
|
|
// -------- utils --------
|
|
|
|
|
|
|
|
type byNamePos []*ast.Ident
|
|
|
|
|
|
|
|
func (p byNamePos) Len() int { return len(p) }
|
|
|
|
func (p byNamePos) Less(i, j int) bool { return p[i].NamePos < p[j].NamePos }
|
|
|
|
func (p byNamePos) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
|
|
|
|
|
2013-09-10 12:11:42 -06:00
|
|
|
type referrersResult struct {
|
2015-03-26 12:07:29 -06:00
|
|
|
qpos *QueryPos
|
2014-05-02 15:38:08 -06:00
|
|
|
query *ast.Ident // identifier of query
|
2013-09-10 12:11:42 -06:00
|
|
|
obj types.Object // object it denotes
|
2013-12-13 08:04:55 -07:00
|
|
|
refs []*ast.Ident // set of all other references to it
|
2013-09-10 12:11:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *referrersResult) display(printf printfFunc) {
|
2015-03-26 12:07:29 -06:00
|
|
|
printf(r.obj, "%d references to %s", len(r.refs), r.obj)
|
|
|
|
|
|
|
|
// Show referring lines, like grep.
|
|
|
|
type fileinfo struct {
|
|
|
|
refs []*ast.Ident
|
|
|
|
linenums []int // line number of refs[i]
|
|
|
|
data chan []byte // file contents
|
2013-09-10 12:11:42 -06:00
|
|
|
}
|
2015-03-26 12:07:29 -06:00
|
|
|
var fileinfos []*fileinfo
|
|
|
|
fileinfosByName := make(map[string]*fileinfo)
|
|
|
|
|
|
|
|
// First pass: start the file reads concurrently.
|
2013-09-10 12:11:42 -06:00
|
|
|
for _, ref := range r.refs {
|
2015-03-26 12:07:29 -06:00
|
|
|
posn := r.qpos.fset.Position(ref.Pos())
|
|
|
|
fi := fileinfosByName[posn.Filename]
|
|
|
|
if fi == nil {
|
|
|
|
fi = &fileinfo{data: make(chan []byte)}
|
|
|
|
fileinfosByName[posn.Filename] = fi
|
|
|
|
fileinfos = append(fileinfos, fi)
|
|
|
|
|
|
|
|
// First request for this file:
|
|
|
|
// start asynchronous read.
|
|
|
|
go func() {
|
|
|
|
content, err := ioutil.ReadFile(posn.Filename)
|
|
|
|
if err != nil {
|
|
|
|
content = []byte(fmt.Sprintf("error: %v", err))
|
|
|
|
}
|
|
|
|
fi.data <- content
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
fi.refs = append(fi.refs, ref)
|
|
|
|
fi.linenums = append(fi.linenums, posn.Line)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Second pass: print refs in original order.
|
|
|
|
// One line may have several refs at different columns.
|
|
|
|
for _, fi := range fileinfos {
|
|
|
|
content := <-fi.data // wait for I/O completion
|
|
|
|
lines := bytes.Split(content, []byte("\n"))
|
|
|
|
for i, ref := range fi.refs {
|
|
|
|
printf(ref, "%s", lines[fi.linenums[i]-1])
|
2013-09-10 12:11:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-13 08:04:55 -07:00
|
|
|
// TODO(adonovan): encode extent, not just Pos info, in Serial form.
|
|
|
|
|
2013-09-24 13:08:14 -06:00
|
|
|
func (r *referrersResult) toSerial(res *serial.Result, fset *token.FileSet) {
|
|
|
|
referrers := &serial.Referrers{
|
2013-12-13 08:04:55 -07:00
|
|
|
Pos: fset.Position(r.query.Pos()).String(),
|
2013-09-10 12:11:42 -06:00
|
|
|
Desc: r.obj.String(),
|
|
|
|
}
|
2013-09-13 10:52:57 -06:00
|
|
|
if pos := r.obj.Pos(); pos != token.NoPos { // Package objects have no Pos()
|
2013-09-10 12:11:42 -06:00
|
|
|
referrers.ObjPos = fset.Position(pos).String()
|
|
|
|
}
|
|
|
|
for _, ref := range r.refs {
|
2013-12-13 08:04:55 -07:00
|
|
|
referrers.Refs = append(referrers.Refs, fset.Position(ref.NamePos).String())
|
2013-09-10 12:11:42 -06:00
|
|
|
}
|
|
|
|
res.Referrers = referrers
|
|
|
|
}
|