mirror of
https://github.com/golang/go
synced 2024-11-18 21:05:02 -07:00
2f43c6d1a2
Change span to hide its fields and have validating accessors This catches the cases where either the offset or the position is being used when it was not set. It also normalizes the forms as the API now controls them, and allows us to simplify some of the logic. The converters are now allowed to return an error, which lets us cleanly propagate bad cases. The lsp was then converted to the new format, and also had some error checking of its own added on the top. All this allowed me to find and fix a few issues, most notably a case where the wrong column mapper was being used during the conversion of definition results. Change-Id: Iebdf8901e8269b28aaef60caf76574baa25c46d4 Reviewed-on: https://go-review.googlesource.com/c/tools/+/167858 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
90 lines
2.3 KiB
Go
90 lines
2.3 KiB
Go
// Copyright 2018 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 lsp
|
|
|
|
import (
|
|
"context"
|
|
"sort"
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
"golang.org/x/tools/internal/lsp/source"
|
|
"golang.org/x/tools/internal/span"
|
|
)
|
|
|
|
func (s *server) cacheAndDiagnose(ctx context.Context, uri span.URI, content string) error {
|
|
if err := s.setContent(ctx, uri, []byte(content)); err != nil {
|
|
return err
|
|
}
|
|
go func() {
|
|
ctx := s.view.BackgroundContext()
|
|
if ctx.Err() != nil {
|
|
return
|
|
}
|
|
reports, err := source.Diagnostics(ctx, s.view, uri)
|
|
if err != nil {
|
|
return // handle error?
|
|
}
|
|
for uri, diagnostics := range reports {
|
|
protocolDiagnostics, err := toProtocolDiagnostics(ctx, s.view, diagnostics)
|
|
if err != nil {
|
|
continue // handle errors?
|
|
}
|
|
s.client.PublishDiagnostics(ctx, &protocol.PublishDiagnosticsParams{
|
|
Diagnostics: protocolDiagnostics,
|
|
URI: protocol.NewURI(uri),
|
|
})
|
|
}
|
|
}()
|
|
return nil
|
|
}
|
|
|
|
func (s *server) setContent(ctx context.Context, uri span.URI, content []byte) error {
|
|
return s.view.SetContent(ctx, uri, content)
|
|
}
|
|
|
|
func toProtocolDiagnostics(ctx context.Context, v source.View, diagnostics []source.Diagnostic) ([]protocol.Diagnostic, error) {
|
|
reports := []protocol.Diagnostic{}
|
|
for _, diag := range diagnostics {
|
|
_, m, err := newColumnMap(ctx, v, diag.Span.URI())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
src := diag.Source
|
|
if src == "" {
|
|
src = "LSP"
|
|
}
|
|
var severity protocol.DiagnosticSeverity
|
|
switch diag.Severity {
|
|
case source.SeverityError:
|
|
severity = protocol.SeverityError
|
|
case source.SeverityWarning:
|
|
severity = protocol.SeverityWarning
|
|
}
|
|
rng, err := m.Range(diag.Span)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
reports = append(reports, protocol.Diagnostic{
|
|
Message: diag.Message,
|
|
Range: rng,
|
|
Severity: severity,
|
|
Source: src,
|
|
})
|
|
}
|
|
return reports, nil
|
|
}
|
|
|
|
func sorted(d []protocol.Diagnostic) {
|
|
sort.Slice(d, func(i int, j int) bool {
|
|
if d[i].Range.Start.Line == d[j].Range.Start.Line {
|
|
if d[i].Range.Start.Character == d[j].Range.Start.Character {
|
|
return d[i].Message < d[j].Message
|
|
}
|
|
return d[i].Range.Start.Character < d[j].Range.Start.Character
|
|
}
|
|
return d[i].Range.Start.Line < d[j].Range.Start.Line
|
|
})
|
|
}
|