-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x/tools/go/packages: needs more explanations and examples #35872
Comments
BTW, if the |
Er, maybe I haven't got how to use the package main
import (
"fmt"
"time"
"go/ast"
"go/parser"
"go/token"
"golang.org/x/tools/go/packages"
)
func main() {
var configForParsing = &packages.Config{
Mode: packages.NeedName | packages.NeedImports | packages.NeedTypes |
packages.NeedDeps | packages.NeedExportsFile | packages.NeedFiles |
packages.NeedCompiledGoFiles | packages.NeedTypesSizes |
packages.NeedSyntax | packages.NeedTypesInfo,
Tests: false,
ParseFile: func(fset *token.FileSet, parseFilename string, _ []byte) (*ast.File, error) {
var src interface{}
mode := parser.ParseComments // | parser.AllErrors
file, err := parser.ParseFile(fset, parseFilename, src, mode)
if file == nil {
return nil, err
}
for _, decl := range file.Decls {
if fd, ok := decl.(*ast.FuncDecl); ok {
fd.Body = nil
}
}
return file, nil
},
}
pkgs, err := packages.Load(configForParsing, "std")
if err != nil {
fmt.Println("packages.Load error:", err)
}
for _, pkg := range pkgs {
fmt.Println(pkg.PkgPath, len(pkg.Syntax), len(pkg.Imports))
}
fmt.Println("[done]")
for {
time.Sleep(time.Hour)
}
fmt.Println(pkgs)
} Are there any other docs/tutorials on how to use this package, except the package docs (https://godoc.org/golang.org/x/tools/go/packages)? |
It looks like in the original program, you were loading all of std first, then each of its packages again, including all of their dependencies. So you'd probably end up loading a low-level package like It's not surprising that it used over ten times more memory :) |
Yes, it is 35 times! ;D I will modify this issue to a document enrichment request. |
Change https://golang.org/cl/209977 mentions this issue: |
The comment referred to each mode returning more data about previous modes, which was true about the old LoadMode hierarchy, but doesn't apply to the new bits system. Updates golang/go#35872 Change-Id: Id8354f49fdebcb231df8e5ece58644a29d678e4a Reviewed-on: https://go-review.googlesource.com/c/tools/+/209977 Run-TryBot: Michael Matloob <matloob@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Edit: It looks I used this package wrongly. On the other hand, I think the docs of this package is lack of detailed explanations and examples. I converted this issue to a document enrichment request. For examples, what are "the package as compiled for the test" and "the test binary". And some command line argument examples may be helpful.
And is the paragraph problematic?
Is it intended to explain the deprecated LoadFiles<LoadImports<LoadTypes<LoadSyntax<LoadAllSyntax preset modes?
(The following is the old content)
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What did you do?
What did you expect to see?
<1G memory is consumed.
What did you see instead?
7G memory is consumed.
Initially I posted this result here: https://groups.google.com/forum/#!topic/golang-tools/cLIwae8rx1g
Alan Donovan said this is not normal and Josh Bleecher Snyder suggested me post an issue here, so I do.
The text was updated successfully, but these errors were encountered: