-
Notifications
You must be signed in to change notification settings - Fork 657
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
Go1.10 and the pkg cache #500
Comments
Yes, it sucks. With gocode you have to use "go install" anyway and that package cache feature is useless to you. Sadly there are no plans on my side to workaround it. I talked a bit about it a few times. A proper autocompletion service should use source files instead of package files. Somebody should make one. My enthusiasm for gocode is long gone. I would suggest looking for alternatives. However I'm unaware of their state. I know there were few attempts of making "language server protocol" servers for Go. Have no idea how good they are. Sadly proper autocompletion tool of a kind should reimplement all language semantic analysis, because working with code that is being actively edited is a slightly different task that doing compilation or static analysis. I think I know how to make a proper service here, but... There's always but.. Maybe one day. |
go1.10 introduces the cache directory. So now objects will only appear in `pkg` if they are explicitly installed. Previous versions of go would create entries for the transitive dependencies. So for our vendor tests running `go install -i ...` would not create a corresponding file in `pkg` for the vendored packages since `...` does not list vendor. Using `all` instead does include the vendored pkg, so will include the vendored pkgs. This will likely have wider effects on go tooling that rely on pkg. Already filed nsf/gocode#500 for gocode.
I'm actually one of the maintainers of https://github.com/sourcegraph/go-langserver We had a nice contribution which embedded gocode for completion, so we just use gocode in that case. Yes it will require quite a lot of effort to do properly, our language server relies on (mostly) glueing stuff that already exists in go/x/tools and other great OSS projects to work. I believe there is work which hopefully is fruitful for a langserver from scratch at dominikh/go-tools#136 I actually noticed this due to it failing one of the langserver regression tests on go1.10 See sourcegraph/go-langserver@db373e4 for more info. |
Well ok, I'll have a closer look at this package cache feature (sooner or later). Will let you know then, maybe it's possible to make gocode work with that cached stuff as well. |
* Test tip on travis * Only test if godef to GOROOT matches path * Install all instead of ... go1.10 introduces the cache directory. So now objects will only appear in `pkg` if they are explicitly installed. Previous versions of go would create entries for the transitive dependencies. So for our vendor tests running `go install -i ...` would not create a corresponding file in `pkg` for the vendored packages since `...` does not list vendor. Using `all` instead does include the vendored pkg, so will include the vendored pkgs. This will likely have wider effects on go tooling that rely on pkg. Already filed nsf/gocode#500 for gocode. * Handle differing diagnostic output * Correctly remove range in def test on windows
FWIW, I've been using go1.10 and gocode with the autobuild option for about a month and haven't noticed any issues. ...but i regularly destroy the EDIT: also note that |
I'm not going to do anything about it for now. Yeah, I know it sucks. Sorry about that. I really dislike this idea with package cache. It feels like another attempt to fix their broken package management system.
Good luck with that, I'm out of here... No, just kidding. Well, I talked about that in my "gocode rewrite" issue. The problem is that a proper tool should work with source files. Hence, there are two options for me:
Problem: lack of motivation and free time. I definitely favor second option, but it requires way more time than the first one. I don't know what else to say. |
@nsf Hmm... What do you think about it? (I mean, the situation of Go core changes) |
You don't need to ask me. If you can and want to make something that works well - do it. However, I may end up doing gocode v2 anyway one day. I wrote gocode for myself and when time comes and gocode stops working for me, I'll look for alternatives. In case if I don't find one, I'll make whatever tool is necessary. I think it's just a question about whether somebody can make something that works well and is willing to maintain it for years without expecting anything in return. So if you feel like doing it, do it. If not - whatever. I'm not looking for help per se and won't help anyone either. As for whether it's the time. Maybe, maybe not. I'm still using gb tool mainly (https://getgb.io), hence all that fuss around package management and go tool changes doesn't affect me at all. |
@nsf thanks for describing your thought.
Thanks, If I have time, will try to write PoC code. thanks :) |
@nsf - I think the question I asked in this thread is relevant here. The one question that comes to mind is how this pipeline of tools will work together and whether the cache resolution step (which ultimately involves hashing of files) adds a significant delay to a |
I said many times. Tools should work with source files only. The fact that "go/types" depends on compiled packages is a problem that needs to be solved. I don't care about "go/types" that much, don't use it, but other people who write tools might want to push that idea forward. Technically I haven't even looked into "go/types" code, last time I saw it, I remember it had some pluggable package resolvers of some kind. Maybe one can make it work with source files instead of compiled packages. That's the ultimate solution for tools - just use source files. In particular it's even a requirement for things such as cross-package renaming. |
As I understand things, In the fork https://github.com/mdempsky/gocode, @mdempsky made Loading everything from source would surely be far too slow in general, no? |
Using source files might be slower. But not by much. |
mdempsky#26 is a proof-of-concept of As the PR mentions, it depends on https://go-review.googlesource.com/c/vgo/+/105855 which is very much WIP itself. |
Seems like the way to go is to use |
I had this issue but managed to resolve it. I can't explain what happened, but it appears as if Tanking the Totally agree with @nsf about the tooling working directly with source code, this is just a workaround for the issue described here. Works well enough for me. |
https://github.com/stamblerre/gocode is the fork of Otherwise https://github.com/mdempsky/gocode is the main fork; this is not based on |
@myitcv Ah, thank you :) |
From https://tip.golang.org/doc/go1.10#build
If I am not mistaken gocode uses the pkg dir to help complete. One specific example I know of is completing an import. It seems the
pkg
directory may be populated less often, so will not be as reliable for helping with completion. I am unsure if this will actually affect gocode in practice, just filing to open the discussion.The text was updated successfully, but these errors were encountered: