mirror of
https://github.com/golang/go
synced 2024-11-18 23:54:41 -07:00
a7dab0268b
This change moves to our ultimate approach of diagnostics the snapshot on every file change, instead of carefully picking which files and packages to diagnose. Analyses are shown for packages whose files are open in the editor. Reverse dependencies are no longer needed for source.Diagnostics because they will be invalidated when the snapshot is cloned, so diagnosing the entire snapshot will bring them up to date. This even works for go.mod files because all of workspace-level `go list`s will be canceled as the user types, and then we trigger an uncancellable go/packages.Load when the user saves. There is still room for improvement here, but it will require much more careful invalidation of metadata for go.mod files. Change-Id: Id068505634b5e701c6f861a61b09a4c6704c565f Reviewed-on: https://go-review.googlesource.com/c/tools/+/214419 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com>
59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
// 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 lsp
|
|
|
|
import (
|
|
"context"
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
"golang.org/x/tools/internal/lsp/source"
|
|
"golang.org/x/tools/internal/span"
|
|
errors "golang.org/x/xerrors"
|
|
)
|
|
|
|
func (s *Server) changeFolders(ctx context.Context, event protocol.WorkspaceFoldersChangeEvent) error {
|
|
for _, folder := range event.Removed {
|
|
view := s.session.View(folder.Name)
|
|
if view != nil {
|
|
view.Shutdown(ctx)
|
|
} else {
|
|
return errors.Errorf("view %s for %v not found", folder.Name, folder.URI)
|
|
}
|
|
}
|
|
s.addFolders(ctx, event.Added)
|
|
return nil
|
|
}
|
|
|
|
func (s *Server) addView(ctx context.Context, name string, uri span.URI) (source.View, source.Snapshot, error) {
|
|
s.stateMu.Lock()
|
|
state := s.state
|
|
s.stateMu.Unlock()
|
|
if state < serverInitialized {
|
|
return nil, nil, errors.Errorf("addView called before server initialized")
|
|
}
|
|
|
|
options := s.session.Options()
|
|
if err := s.fetchConfig(ctx, name, uri, &options); err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return s.session.NewView(ctx, name, uri, options)
|
|
}
|
|
|
|
func (s *Server) updateConfiguration(ctx context.Context, changed interface{}) error {
|
|
// go through all the views getting the config
|
|
for _, view := range s.session.Views() {
|
|
options := s.session.Options()
|
|
if err := s.fetchConfig(ctx, view.Name(), view.Folder(), &options); err != nil {
|
|
return err
|
|
}
|
|
view, err := view.SetOptions(ctx, options)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
go s.diagnoseDetached(view.Snapshot())
|
|
}
|
|
return nil
|
|
}
|