func done(obj *ast.Object, typ types.Type) { defer os.Exit(0) pos := types.FileSet.Position(types.DeclPos(obj)) fmt.Printf("%v\n", pos) if typ.Kind == ast.Bad || !*tflag { return } fmt.Printf("%s\n", strings.Replace(typeStr(obj, typ), "\n", "\n\t", -1)) if *aflag || *Aflag { var m orderedObjects for obj := range typ.Iter(types.DefaultImporter) { m = append(m, obj) } sort.Sort(m) for _, obj := range m { // Ignore unexported members unless Aflag is set. if !*Aflag && (typ.Pkg != "" || !ast.IsExported(obj.Name)) { continue } id := ast.NewIdent(obj.Name) id.Obj = obj _, mt := types.ExprType(id, types.DefaultImporter) fmt.Printf("\t%s\n", strings.Replace(typeStr(obj, mt), "\n", "\n\t\t", -1)) fmt.Printf("\t\t%v\n", types.FileSet.Position(types.DeclPos(obj))) } } }
func getDefPosition(expr ast.Expr) *token.Position { obj, _ := types.ExprType(expr, types.DefaultImporter) if obj == nil { return nil } pos := fileset.Position(types.DeclPos(obj)) if realname, err := filepath.EvalSymlinks(pos.Filename); err == nil { pos.Filename = realname } return &pos }
func lookup(filepath string, offset int) (Definition, error) { def := Definition{} f, err := parser.ParseFile(fileset, filepath, nil, 0, getScope(filepath)) if err != nil { return def, err } containsOffset := func(node ast.Node) bool { from := fileset.Position(node.Pos()).Offset to := fileset.Position(node.End()).Offset return offset >= from && offset < to } // traverse the ast tree until we find a node at the given offset position var ident ast.Expr ast.Inspect(f, func(node ast.Node) bool { switch expr := node.(type) { case *ast.SelectorExpr: if containsOffset(expr) && containsOffset(expr.Sel) { ident = expr } case *ast.Ident: if containsOffset(expr) { ident = expr } } return ident == nil }) if ident == nil { return def, errors.New("no identifier found") } pos := getDefPosition(ident) if pos == nil { return def, errors.New("could not find definition of identifier") } obj, _ := types.ExprType(ident, types.DefaultImporter) def.Name = obj.Name def.Position = *pos return def, nil }
func (ctxt *Context) visitExpr(f *ast.File, e ast.Expr, local bool, visitf func(*Info) bool) bool { var info Info info.Expr = e switch e := e.(type) { case *ast.Ident: if e.Name == "_" { return true } info.Pos = e.Pos() info.Ident = e case *ast.SelectorExpr: info.Pos = e.Sel.Pos() info.Ident = e.Sel } obj, t := types.ExprType(e, ctxt.importer, ctxt.FileSet) if obj == nil { ctxt.logf(e.Pos(), "no object for %s", pretty(e)) return true } info.ExprType = t info.ReferObj = obj if parser.Universe.Lookup(obj.Name) != obj { info.ReferPos = types.DeclPos(obj) if info.ReferPos == token.NoPos { name := pretty(e) if name != "init" { ctxt.logf(e.Pos(), "no declaration for %s", pretty(e)) } return true } } else { info.Universe = true } info.Local = local oldName := info.Ident.Name more := visitf(&info) if info.Ident.Name != oldName { ctxt.ChangedFiles[ctxt.filename(f)] = f } return more }
func main() { flag.Usage = func() { fmt.Fprintf(os.Stderr, "usage: godef [flags] [expr]\n") flag.PrintDefaults() } flag.Parse() if flag.NArg() > 1 { flag.Usage() os.Exit(2) } types.Debug = *debug *tflag = *tflag || *aflag || *Aflag searchpos := *offset filename := *fflag var afile *acmeFile var src []byte if *acmeFlag { var err error if afile, err = acmeCurrentFile(); err != nil { fail("%v", err) } filename, src, searchpos = afile.name, afile.body, afile.offset } else if *readStdin { src, _ = ioutil.ReadAll(os.Stdin) } else { // TODO if there's no filename, look in the current // directory and do something plausible. b, err := ioutil.ReadFile(filename) if err != nil { fail("cannot read %s: %v", filename, err) } src = b } pkgScope := ast.NewScope(parser.Universe) f, err := parser.ParseFile(types.FileSet, filename, src, 0, pkgScope) if f == nil { fail("cannot parse %s: %v", filename, err) } var o ast.Node switch { case flag.NArg() > 0: o = parseExpr(f.Scope, flag.Arg(0)) case searchpos >= 0: o = findIdentifier(f, searchpos) default: fmt.Fprintf(os.Stderr, "no expression or offset specified\n") flag.Usage() os.Exit(2) } // print old source location to facilitate backtracking if *acmeFlag { fmt.Printf("\t%s:#%d\n", afile.name, afile.runeOffset) } switch e := o.(type) { case *ast.ImportSpec: path := importPath(e) pkg, err := build.Default.Import(path, "", build.FindOnly) if err != nil { fail("error finding import path for %s: %s", path, err) } fmt.Println(pkg.Dir) case ast.Expr: if !*tflag { // try local declarations only if obj, typ := types.ExprType(e, types.DefaultImporter); obj != nil { done(obj, typ) } } // add declarations from other files in the local package and try again pkg, err := parseLocalPackage(filename, f, pkgScope) if pkg == nil && !*tflag { fmt.Printf("parseLocalPackage error: %v\n", err) } if obj, typ := types.ExprType(e, types.DefaultImporter); obj != nil { done(obj, typ) } fail("no declaration found for %v", pretty{e}) } }