代码拉取完成,页面将自动刷新
// Package parser parses Go code and keeps track of all the types defined
// and provides access to all the constants defined for an int type.
package parser
import (
"go/ast"
"go/build"
"go/parser"
"go/token"
"unicode"
"unicode/utf8"
)
type Parser struct {
PkgPath string
PkgName string
PkgFullName string
StructNames map[string]bool
}
type visitor struct {
*Parser
name string
explicit bool
}
func isExported(name string) bool {
rune, _ := utf8.DecodeRuneInString(name)
return unicode.IsUpper(rune)
}
func (v *visitor) Visit(n ast.Node) (w ast.Visitor) {
switch n := n.(type) {
case *ast.Package:
return v
case *ast.File:
v.PkgName = n.Name.String()
return v
case *ast.GenDecl:
return v
case *ast.TypeSpec:
v.name = n.Name.String()
// Allow to specify non-structs explicitly independent of '-all' flag.
if v.explicit {
v.StructNames[v.name] = true
return nil
}
return v
case *ast.StructType:
// if isExported(v.name) {
//fmt.Printf("@@@@%s: %s\n", v.name, pretty.Sprint(n.Fields))
//v.StructNames = append(v.StructNames, v.name)
// }
return nil
case *ast.FuncDecl:
if isExported(v.name) {
if n.Type.Params.NumFields() == 3 && n.Type.Results.NumFields() == 1 {
params := n.Type.Params.List
result := n.Type.Results.List[0]
if result.Type.(*ast.Ident).Name != "error" {
return nil
}
if p, ok := params[0].Type.(*ast.SelectorExpr); ok {
x := p.X.(*ast.Ident)
s := p.Sel
if x.Name+"."+s.Name == "context.Context" {
v.StructNames[v.name] = true
}
}
}
}
return nil
}
return nil
}
func (p *Parser) Parse(fname string, isDir bool) error {
p.PkgPath = build.Default.GOPATH
fset := token.NewFileSet()
if isDir {
packages, err := parser.ParseDir(fset, fname, nil, parser.ParseComments)
if err != nil {
return err
}
for _, pckg := range packages {
ast.Walk(&visitor{Parser: p}, pckg)
}
} else {
f, err := parser.ParseFile(fset, fname, nil, parser.ParseComments)
if err != nil {
return err
}
ast.Walk(&visitor{Parser: p}, f)
}
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。