mirror of https://github.com/golang/go.git
62 lines
1.7 KiB
Go
62 lines
1.7 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"
|
|
"golang.org/x/tools/internal/xcontext"
|
|
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
|
|
}
|
|
// Make sure that this does not get canceled.
|
|
ctx := xcontext.Detach(view.BackgroundContext())
|
|
go s.diagnoseSnapshot(ctx, view.Snapshot())
|
|
}
|
|
return nil
|
|
}
|