如何在Golang中获取包下的所有结构?

时间:2014-06-09 10:10:43

标签: go

我们可以在包装下以名称或界面的形式列出所有结构吗? 像:

struct := list("fmt")

预期结果:

Formatter
GoStringer
Scanner
State
Stringer

1 个答案:

答案 0 :(得分:2)

您可以做的最好的事情是解析go sourcesyou can clonehg clone https://code.google.com/p/go/),并隔离ast.StructType

这就是pretty printer does

func (P *Printer) Type(t *AST.Type) int {
    separator := semicolon;

    switch t.form {

    case AST.STRUCT, AST.INTERFACE:
            switch t.form {
            case AST.STRUCT: P.String(t.pos, "struct");
            case AST.INTERFACE: P.String(t.pos, "interface");
            }
            if t.list != nil {
                    P.separator = blank;
                    P.Fields(t.list, t.end);
            }
            separator = none;

同样的想法,linter go/lint执行相同的in lint.go

    case *ast.StructType:
        for _, f := range v.Fields.List {
            for _, id := range f.Names {
                check(id, "struct field")
            }
        }
    }