-
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/gopls: inconsistent output for circular dependencies in testdata #36265
Comments
Change https://golang.org/cl/212102 mentions this issue: |
This is the error I'm actually seeing on the internal package. I think { "ImportPath": "golang.org/x/tools/internal/lsp/circular/double/one", "DepOnly": true, "Incomplete": true, "Stale": true, "StaleReason": "build ID mismatch", "Error": { "ImportStack": [ "golang.org/x/tools/internal/lsp/testdata/circular/double/b", "golang.org/x/tools/internal/lsp/circular/double/one" ], "Pos": "internal/lsp/testdata/circular/double/b/b.go:4:2", "Err": "no matching versions for query \"latest\"" } } The error message is pretty bad, but the behavior seems correct. Note that import errors are attached to the imported package, which may be a dummy package (that can confuse go/packages; see #36188), not the importing package. @stamblerre Could you just confirm it's $ go list -e -json -compiled -deps ./internal/lsp/testdata/circular/double/b { "Dir": "/Users/jayconrod/go/src/golang.org/x/tools/internal/lsp/testdata/circular/double/one", "ImportPath": "golang.org/x/tools/internal/lsp/testdata/circular/double/one", "Name": "one", "Root": "/Users/jayconrod/go/src/golang.org/x/tools", "Module": { "Path": "golang.org/x/tools", "Main": true, "Dir": "/Users/jayconrod/go/src/golang.org/x/tools", "GoMod": "/Users/jayconrod/go/src/golang.org/x/tools/go.mod", "GoVersion": "1.11" }, "DepOnly": true, "Incomplete": true, "Stale": true, "StaleReason": "stale dependency: golang.org/x/tools/internal/lsp/testdata/circular/double/b", "GoFiles": [ "one.go" ], "CompiledGoFiles": [ "one.go" ], "Imports": [ "golang.org/x/tools/internal/lsp/testdata/circular/double/b" ], "Deps": [ "golang.org/x/tools/internal/lsp/testdata/circular/double/b" ], "DepsErrors": [ { "ImportStack": [ "golang.org/x/tools/internal/lsp/testdata/circular/double/b", "golang.org/x/tools/internal/lsp/testdata/circular/double/one", "golang.org/x/tools/internal/lsp/testdata/circular/double/b" ], "Pos": "", "Err": "import cycle not allowed" } ] } { "Dir": "/Users/jayconrod/go/src/golang.org/x/tools/internal/lsp/testdata/circular/double/b", "ImportPath": "golang.org/x/tools/internal/lsp/testdata/circular/double/b", "Name": "b", "Root": "/Users/jayconrod/go/src/golang.org/x/tools", "Module": { "Path": "golang.org/x/tools", "Main": true, "Dir": "/Users/jayconrod/go/src/golang.org/x/tools", "GoMod": "/Users/jayconrod/go/src/golang.org/x/tools/go.mod", "GoVersion": "1.11" }, "Match": [ "./internal/lsp/testdata/circular/double/b" ], "Incomplete": true, "Stale": true, "StaleReason": "build ID mismatch", "GoFiles": [ "b.go" ], "CompiledGoFiles": [ "b.go" ], "Imports": [ "golang.org/x/tools/internal/lsp/testdata/circular/double/one" ], "Deps": [ "golang.org/x/tools/internal/lsp/testdata/circular/double/b", "golang.org/x/tools/internal/lsp/testdata/circular/double/one" ], "Error": { "ImportStack": [ "golang.org/x/tools/internal/lsp/testdata/circular/double/b", "golang.org/x/tools/internal/lsp/testdata/circular/double/one", "golang.org/x/tools/internal/lsp/testdata/circular/double/b" ], "Pos": "", "Err": "import cycle not allowed" }, "DepsErrors": [ { "ImportStack": [ "golang.org/x/tools/internal/lsp/testdata/circular/double/b", "golang.org/x/tools/internal/lsp/testdata/circular/double/one", "golang.org/x/tools/internal/lsp/testdata/circular/double/b" ], "Pos": "", "Err": "import cycle not allowed" } ] } |
Thanks for looking into this. The fact that these files are in |
The initial workspace load was happening when a view was created, in serial. It should really just be kicked off in a separate goroutine once we create a new view. Implementing this change required some other significant changes, particularly the additional work being done by the WorkspacePackageIDs method. Some other changes had to be made while debugging. In particular, the modification to the circular dependencies test was a consequence of golang/go#36265. Change-Id: I97586c9574f6c4106172d7983e4c6fad412e6aa1 Reviewed-on: https://go-review.googlesource.com/c/tools/+/212102 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com>
I think this is a duplicate of #40332 - I don't think it's worth figuring out what's going on with the testdata. |
Given 2 packages that import each other,
go list
-ing one of the packages will result in the dependency being listed as having no imports. This avoids infinite cycles, but it has the consequences of producing inconsistent results. I noticed this ingopls
, when I first rango/packages
on one of these packages, followed by the other.gopls
doesn't necessarily update dependencies aftergo/packages
runs, so the result created a circular dependency. The first work-around I can think of is always updating the metadata for all dependencies, which may be too slow.I was curious if there is any other way that this could be handled - maybe the alphabetically first package could be picked as the "top level" one, since everything in this case is broken anyway? If not, I will figure out a work-around in
gopls
, but I just wanted to raise this./cc @jayconrod @matloob
Repro:
The text was updated successfully, but these errors were encountered: