-
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: add "if err != nil" snippet completion for net/http's HandlerFunc #48487
Comments
Change https://golang.org/cl/351030 mentions this issue: |
Thanks for filing this and for mailing a CL! I've never really used |
/cc @golang/pkgsite team, since they have more experience with |
That snippet is the sort of code you often see, but it is clumsy and error-prone (forgetting the I don't think there's one canonical approach to handling errors. I also don't know what your criteria are for adding a snippet. The code given is certainly correct but will having the snippet discourage people from writing a wrapper, which is a cleaner approach? |
Thanks for insight, @jba! We have been fairly hesitant about adding snippets, since it might seem like we're prescribing a "correct" or "Go team approved" way of doing things. @marwan-at-work: How would you feel about an |
That's totally fair :)
I believe this already exists for editors like VSCode on the client side (if you type
If that looks good, I'd be happy to amend the CL. But to be honest, I think the best solution here is to make gopls extensible so that people can write their own snippets that is specific to their usecases. Is there an issue open to follow or discuss this alternative? @stamblerre thank you! |
Yeah, that sounds good to me! We've been discussing moving the client side snippets to
Does something like https://code.visualstudio.com/docs/editor/userdefinedsnippets#_create-your-own-snippets work for you? I know it is client-side, but I still think that's a little easier than integrating custom snippets with |
Awesome. I just updated the CL 👍🏼
Unfortunately that would not work because the snippet will need to analyze the context it is in (for example checking the enclosing function signature, etc).
To be honest, custom snippets is not the only thing that could benefit from extensibility. Basically any LSP feature can be extended if a user wanted the LSP feature to do something that may not make sense in gopls but is helpful to that user. |
The net/http HandlerFunc is a very common function that Go developers write:
Since the function doesn't return any errors, most users will have to handle the error in the following way:
This can be quite tedious to write and people (aka me) often forget to add the "return" statement which ends up causing the net/http library to spit out errors about multiple status codes being written to the same response.
In production applications, Go developers typically structure their http servers in a way that will minimize the amount they have to do the HTTP error handling above. But they most likely still have to do it once per handler, or sometimes they want to prototype a server quickly without having to think about how to nicely structure their code to DRY up the error handling logic.
Therefore, as a continuation of improvements to our snippet completions mentioned in 43310, I'd love to add a completion that will simply offer to write the above error handling snippet for you. It should also put placeholders on the error and status code arguments while picking sane defaults such as
err.Error()
andhttp.StatusInternalServerError
.Since the code structure for snippet completions is already in place, adding this use case should be a minimal change. I've included a CL to show the type of change needed, which can be reviewed/merged if this issue is accepted.
Thanks!
The text was updated successfully, but these errors were encountered: