| // Copyright 2019 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| |
| package server |
| |
| import ( |
| "context" |
| |
| "golang.org/x/tools/gopls/internal/file" |
| "golang.org/x/tools/gopls/internal/lsp/protocol" |
| "golang.org/x/tools/gopls/internal/lsp/source" |
| "golang.org/x/tools/gopls/internal/mod" |
| "golang.org/x/tools/gopls/internal/telemetry" |
| "golang.org/x/tools/gopls/internal/template" |
| "golang.org/x/tools/gopls/internal/work" |
| "golang.org/x/tools/internal/event" |
| "golang.org/x/tools/internal/event/tag" |
| ) |
| |
| func (s *server) Hover(ctx context.Context, params *protocol.HoverParams) (_ *protocol.Hover, rerr error) { |
| recordLatency := telemetry.StartLatencyTimer("hover") |
| defer func() { |
| recordLatency(ctx, rerr) |
| }() |
| |
| ctx, done := event.Start(ctx, "lsp.Server.hover", tag.URI.Of(params.TextDocument.URI)) |
| defer done() |
| |
| snapshot, fh, ok, release, err := s.beginFileRequest(ctx, params.TextDocument.URI, file.UnknownKind) |
| defer release() |
| if !ok { |
| return nil, err |
| } |
| switch snapshot.FileKind(fh) { |
| case file.Mod: |
| return mod.Hover(ctx, snapshot, fh, params.Position) |
| case file.Go: |
| return source.Hover(ctx, snapshot, fh, params.Position) |
| case file.Tmpl: |
| return template.Hover(ctx, snapshot, fh, params.Position) |
| case file.Work: |
| return work.Hover(ctx, snapshot, fh, params.Position) |
| } |
| return nil, nil |
| } |