| // 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 |
| |
| // This file defines server methods related to initialization, |
| // options, shutdown, and exit. |
| |
| import ( |
| "context" |
| "encoding/json" |
| "fmt" |
| "go/build" |
| "log" |
| "os" |
| "path" |
| "path/filepath" |
| "sort" |
| "strings" |
| "sync" |
| |
| "golang.org/x/tools/gopls/internal/debug" |
| "golang.org/x/tools/gopls/internal/file" |
| "golang.org/x/tools/gopls/internal/lsp/cache" |
| "golang.org/x/tools/gopls/internal/lsp/protocol" |
| "golang.org/x/tools/gopls/internal/settings" |
| "golang.org/x/tools/gopls/internal/telemetry" |
| "golang.org/x/tools/gopls/internal/util/bug" |
| "golang.org/x/tools/gopls/internal/util/goversion" |
| "golang.org/x/tools/internal/event" |
| "golang.org/x/tools/internal/jsonrpc2" |
| ) |
| |
| func (s *server) Initialize(ctx context.Context, params *protocol.ParamInitialize) (*protocol.InitializeResult, error) { |
| ctx, done := event.Start(ctx, "lsp.Server.initialize") |
| defer done() |
| |
| telemetry.RecordClientInfo(params) |
| |
| s.stateMu.Lock() |
| if s.state >= serverInitializing { |
| defer s.stateMu.Unlock() |
| return nil, fmt.Errorf("%w: initialize called while server in %v state", jsonrpc2.ErrInvalidRequest, s.state) |
| } |
| s.state = serverInitializing |
| s.stateMu.Unlock() |
| |
| // For uniqueness, use the gopls PID rather than params.ProcessID (the client |
| // pid). Some clients might start multiple gopls servers, though they |
| // probably shouldn't. |
| pid := os.Getpid() |
| s.tempDir = filepath.Join(os.TempDir(), fmt.Sprintf("gopls-%d.%s", pid, s.session.ID())) |
| err := os.Mkdir(s.tempDir, 0700) |
| if err != nil { |
| // MkdirTemp could fail due to permissions issues. This is a problem with |
| // the user's environment, but should not block gopls otherwise behaving. |
| // All usage of s.tempDir should be predicated on having a non-empty |
| // s.tempDir. |
| event.Error(ctx, "creating temp dir", err) |
| s.tempDir = "" |
| } |
| s.progress.SetSupportsWorkDoneProgress(params.Capabilities.Window.WorkDoneProgress) |
| |
| options := s.Options().Clone() |
| // TODO(rfindley): remove the error return from handleOptionResults, and |
| // eliminate this defer. |
| defer func() { s.SetOptions(options) }() |
| |
| if err := s.handleOptionResults(ctx, settings.SetOptions(options, params.InitializationOptions)); err != nil { |
| return nil, err |
| } |
| options.ForClientCapabilities(params.ClientInfo, params.Capabilities) |
| |
| if options.ShowBugReports { |
| // Report the next bug that occurs on the server. |
| bug.Handle(func(b bug.Bug) { |
| msg := &protocol.ShowMessageParams{ |
| Type: protocol.Error, |
| Message: fmt.Sprintf("A bug occurred on the server: %s\nLocation:%s", b.Description, b.Key), |
| } |
| go func() { |
| if err := s.eventuallyShowMessage(context.Background(), msg); err != nil { |
| log.Printf("error showing bug: %v", err) |
| } |
| }() |
| }) |
| } |
| |
| folders := params.WorkspaceFolders |
| if len(folders) == 0 { |
| if params.RootURI != "" { |
| folders = []protocol.WorkspaceFolder{{ |
| URI: string(params.RootURI), |
| Name: path.Base(params.RootURI.Path()), |
| }} |
| } |
| } |
| for _, folder := range folders { |
| if folder.URI == "" { |
| return nil, fmt.Errorf("empty WorkspaceFolder.URI") |
| } |
| if _, err := protocol.ParseDocumentURI(folder.URI); err != nil { |
| return nil, fmt.Errorf("invalid WorkspaceFolder.URI: %v", err) |
| } |
| s.pendingFolders = append(s.pendingFolders, folder) |
| } |
| |
| var codeActionProvider interface{} = true |
| if ca := params.Capabilities.TextDocument.CodeAction; len(ca.CodeActionLiteralSupport.CodeActionKind.ValueSet) > 0 { |
| // If the client has specified CodeActionLiteralSupport, |
| // send the code actions we support. |
| // |
| // Using CodeActionOptions is only valid if codeActionLiteralSupport is set. |
| codeActionProvider = &protocol.CodeActionOptions{ |
| CodeActionKinds: s.getSupportedCodeActions(), |
| } |
| } |
| var renameOpts interface{} = true |
| if r := params.Capabilities.TextDocument.Rename; r != nil && r.PrepareSupport { |
| renameOpts = protocol.RenameOptions{ |
| PrepareProvider: r.PrepareSupport, |
| } |
| } |
| |
| versionInfo := debug.VersionInfo() |
| |
| // golang/go#45732: Warn users who've installed sergi/go-diff@v1.2.0, since |
| // it will corrupt the formatting of their files. |
| for _, dep := range versionInfo.Deps { |
| if dep.Path == "github.com/sergi/go-diff" && dep.Version == "v1.2.0" { |
| if err := s.eventuallyShowMessage(ctx, &protocol.ShowMessageParams{ |
| Message: `It looks like you have a bad gopls installation. |
| Please reinstall gopls by running 'GO111MODULE=on go install golang.org/x/tools/gopls@latest'. |
| See https://github.com/golang/go/issues/45732 for more information.`, |
| Type: protocol.Error, |
| }); err != nil { |
| return nil, err |
| } |
| } |
| } |
| |
| goplsVersion, err := json.Marshal(versionInfo) |
| if err != nil { |
| return nil, err |
| } |
| |
| return &protocol.InitializeResult{ |
| Capabilities: protocol.ServerCapabilities{ |
| CallHierarchyProvider: &protocol.Or_ServerCapabilities_callHierarchyProvider{Value: true}, |
| CodeActionProvider: codeActionProvider, |
| CodeLensProvider: &protocol.CodeLensOptions{}, // must be non-nil to enable the code lens capability |
| CompletionProvider: &protocol.CompletionOptions{ |
| TriggerCharacters: []string{"."}, |
| }, |
| DefinitionProvider: &protocol.Or_ServerCapabilities_definitionProvider{Value: true}, |
| TypeDefinitionProvider: &protocol.Or_ServerCapabilities_typeDefinitionProvider{Value: true}, |
| ImplementationProvider: &protocol.Or_ServerCapabilities_implementationProvider{Value: true}, |
| DocumentFormattingProvider: &protocol.Or_ServerCapabilities_documentFormattingProvider{Value: true}, |
| DocumentSymbolProvider: &protocol.Or_ServerCapabilities_documentSymbolProvider{Value: true}, |
| WorkspaceSymbolProvider: &protocol.Or_ServerCapabilities_workspaceSymbolProvider{Value: true}, |
| ExecuteCommandProvider: &protocol.ExecuteCommandOptions{ |
| Commands: protocol.NonNilSlice(options.SupportedCommands), |
| }, |
| FoldingRangeProvider: &protocol.Or_ServerCapabilities_foldingRangeProvider{Value: true}, |
| HoverProvider: &protocol.Or_ServerCapabilities_hoverProvider{Value: true}, |
| DocumentHighlightProvider: &protocol.Or_ServerCapabilities_documentHighlightProvider{Value: true}, |
| DocumentLinkProvider: &protocol.DocumentLinkOptions{}, |
| InlayHintProvider: protocol.InlayHintOptions{}, |
| ReferencesProvider: &protocol.Or_ServerCapabilities_referencesProvider{Value: true}, |
| RenameProvider: renameOpts, |
| SelectionRangeProvider: &protocol.Or_ServerCapabilities_selectionRangeProvider{Value: true}, |
| SemanticTokensProvider: protocol.SemanticTokensOptions{ |
| Range: &protocol.Or_SemanticTokensOptions_range{Value: true}, |
| Full: &protocol.Or_SemanticTokensOptions_full{Value: true}, |
| Legend: protocol.SemanticTokensLegend{ |
| TokenTypes: protocol.NonNilSlice(options.SemanticTypes), |
| TokenModifiers: protocol.NonNilSlice(options.SemanticMods), |
| }, |
| }, |
| SignatureHelpProvider: &protocol.SignatureHelpOptions{ |
| TriggerCharacters: []string{"(", ","}, |
| }, |
| TextDocumentSync: &protocol.TextDocumentSyncOptions{ |
| Change: protocol.Incremental, |
| OpenClose: true, |
| Save: &protocol.SaveOptions{ |
| IncludeText: false, |
| }, |
| }, |
| Workspace: &protocol.WorkspaceOptions{ |
| WorkspaceFolders: &protocol.WorkspaceFolders5Gn{ |
| Supported: true, |
| ChangeNotifications: "workspace/didChangeWorkspaceFolders", |
| }, |
| }, |
| }, |
| ServerInfo: &protocol.ServerInfo{ |
| Name: "gopls", |
| Version: string(goplsVersion), |
| }, |
| }, nil |
| } |
| |
| func (s *server) Initialized(ctx context.Context, params *protocol.InitializedParams) error { |
| ctx, done := event.Start(ctx, "lsp.Server.initialized") |
| defer done() |
| |
| s.stateMu.Lock() |
| if s.state >= serverInitialized { |
| defer s.stateMu.Unlock() |
| return fmt.Errorf("%w: initialized called while server in %v state", jsonrpc2.ErrInvalidRequest, s.state) |
| } |
| s.state = serverInitialized |
| s.stateMu.Unlock() |
| |
| for _, not := range s.notifications { |
| s.client.ShowMessage(ctx, not) |
| } |
| s.notifications = nil |
| |
| s.addFolders(ctx, s.pendingFolders) |
| |
| s.pendingFolders = nil |
| s.checkViewGoVersions() |
| |
| var registrations []protocol.Registration |
| options := s.Options() |
| if options.ConfigurationSupported && options.DynamicConfigurationSupported { |
| registrations = append(registrations, protocol.Registration{ |
| ID: "workspace/didChangeConfiguration", |
| Method: "workspace/didChangeConfiguration", |
| }) |
| } |
| if len(registrations) > 0 { |
| if err := s.client.RegisterCapability(ctx, &protocol.RegistrationParams{ |
| Registrations: registrations, |
| }); err != nil { |
| return err |
| } |
| } |
| |
| // Ask (maybe) about enabling telemetry. Do this asynchronously, as it's OK |
| // for users to ignore or dismiss the question. |
| go s.maybePromptForTelemetry(ctx, options.TelemetryPrompt) |
| |
| return nil |
| } |
| |
| // checkViewGoVersions checks whether any Go version used by a view is too old, |
| // raising a showMessage notification if so. |
| // |
| // It should be called after views change. |
| func (s *server) checkViewGoVersions() { |
| oldestVersion, fromBuild := go1Point(), true |
| for _, view := range s.session.Views() { |
| viewVersion := view.GoVersion() |
| if oldestVersion == -1 || viewVersion < oldestVersion { |
| oldestVersion, fromBuild = viewVersion, false |
| } |
| telemetry.RecordViewGoVersion(viewVersion) |
| } |
| |
| if msg, isError := goversion.Message(oldestVersion, fromBuild); msg != "" { |
| mType := protocol.Warning |
| if isError { |
| mType = protocol.Error |
| } |
| s.eventuallyShowMessage(context.Background(), &protocol.ShowMessageParams{ |
| Type: mType, |
| Message: msg, |
| }) |
| } |
| } |
| |
| // go1Point returns the x in Go 1.x. If an error occurs extracting the go |
| // version, it returns -1. |
| // |
| // Copied from the testenv package. |
| func go1Point() int { |
| for i := len(build.Default.ReleaseTags) - 1; i >= 0; i-- { |
| var version int |
| if _, err := fmt.Sscanf(build.Default.ReleaseTags[i], "go1.%d", &version); err != nil { |
| continue |
| } |
| return version |
| } |
| return -1 |
| } |
| |
| // addFolders adds the specified list of "folders" (that's Windows for |
| // directories) to the session. It does not return an error, though it |
| // may report an error to the client over LSP if one or more folders |
| // had problems. |
| func (s *server) addFolders(ctx context.Context, folders []protocol.WorkspaceFolder) { |
| originalViews := len(s.session.Views()) |
| viewErrors := make(map[protocol.URI]error) |
| |
| var ndiagnose sync.WaitGroup // number of unfinished diagnose calls |
| if s.Options().VerboseWorkDoneProgress { |
| work := s.progress.Start(ctx, DiagnosticWorkTitle(FromInitialWorkspaceLoad), "Calculating diagnostics for initial workspace load...", nil, nil) |
| defer func() { |
| go func() { |
| ndiagnose.Wait() |
| work.End(ctx, "Done.") |
| }() |
| }() |
| } |
| // Only one view gets to have a workspace. |
| var nsnapshots sync.WaitGroup // number of unfinished snapshot initializations |
| for _, folder := range folders { |
| uri, err := protocol.ParseDocumentURI(folder.URI) |
| if err != nil { |
| viewErrors[folder.URI] = fmt.Errorf("invalid folder URI: %v", err) |
| continue |
| } |
| work := s.progress.Start(ctx, "Setting up workspace", "Loading packages...", nil, nil) |
| snapshot, release, err := s.addView(ctx, folder.Name, uri) |
| if err != nil { |
| if err == cache.ErrViewExists { |
| continue |
| } |
| viewErrors[folder.URI] = err |
| work.End(ctx, fmt.Sprintf("Error loading packages: %s", err)) |
| continue |
| } |
| // Inv: release() must be called once. |
| |
| // Initialize snapshot asynchronously. |
| initialized := make(chan struct{}) |
| nsnapshots.Add(1) |
| go func() { |
| snapshot.AwaitInitialized(ctx) |
| work.End(ctx, "Finished loading packages.") |
| nsnapshots.Done() |
| close(initialized) // signal |
| }() |
| |
| // Diagnose the newly created view asynchronously. |
| ndiagnose.Add(1) |
| go func() { |
| s.diagnoseSnapshot(snapshot, nil, 0) |
| <-initialized |
| release() |
| ndiagnose.Done() |
| }() |
| } |
| |
| // Wait for snapshots to be initialized so that all files are known. |
| // (We don't need to wait for diagnosis to finish.) |
| nsnapshots.Wait() |
| |
| // Register for file watching notifications, if they are supported. |
| if err := s.updateWatchedDirectories(ctx); err != nil { |
| event.Error(ctx, "failed to register for file watching notifications", err) |
| } |
| |
| // Report any errors using the protocol. |
| if len(viewErrors) > 0 { |
| errMsg := fmt.Sprintf("Error loading workspace folders (expected %v, got %v)\n", len(folders), len(s.session.Views())-originalViews) |
| for uri, err := range viewErrors { |
| errMsg += fmt.Sprintf("failed to load view for %s: %v\n", uri, err) |
| } |
| showMessage(ctx, s.client, protocol.Error, errMsg) |
| } |
| } |
| |
| // updateWatchedDirectories compares the current set of directories to watch |
| // with the previously registered set of directories. If the set of directories |
| // has changed, we unregister and re-register for file watching notifications. |
| // updatedSnapshots is the set of snapshots that have been updated. |
| func (s *server) updateWatchedDirectories(ctx context.Context) error { |
| patterns := s.session.FileWatchingGlobPatterns(ctx) |
| |
| s.watchedGlobPatternsMu.Lock() |
| defer s.watchedGlobPatternsMu.Unlock() |
| |
| // Nothing to do if the set of workspace directories is unchanged. |
| if equalURISet(s.watchedGlobPatterns, patterns) { |
| return nil |
| } |
| |
| // If the set of directories to watch has changed, register the updates and |
| // unregister the previously watched directories. This ordering avoids a |
| // period where no files are being watched. Still, if a user makes on-disk |
| // changes before these updates are complete, we may miss them for the new |
| // directories. |
| prevID := s.watchRegistrationCount - 1 |
| if err := s.registerWatchedDirectoriesLocked(ctx, patterns); err != nil { |
| return err |
| } |
| if prevID >= 0 { |
| return s.client.UnregisterCapability(ctx, &protocol.UnregistrationParams{ |
| Unregisterations: []protocol.Unregistration{{ |
| ID: watchedFilesCapabilityID(prevID), |
| Method: "workspace/didChangeWatchedFiles", |
| }}, |
| }) |
| } |
| return nil |
| } |
| |
| func watchedFilesCapabilityID(id int) string { |
| return fmt.Sprintf("workspace/didChangeWatchedFiles-%d", id) |
| } |
| |
| func equalURISet(m1, m2 map[string]struct{}) bool { |
| if len(m1) != len(m2) { |
| return false |
| } |
| for k := range m1 { |
| _, ok := m2[k] |
| if !ok { |
| return false |
| } |
| } |
| return true |
| } |
| |
| // registerWatchedDirectoriesLocked sends the workspace/didChangeWatchedFiles |
| // registrations to the client and updates s.watchedDirectories. |
| // The caller must not subsequently mutate patterns. |
| func (s *server) registerWatchedDirectoriesLocked(ctx context.Context, patterns map[string]struct{}) error { |
| if !s.Options().DynamicWatchedFilesSupported { |
| return nil |
| } |
| s.watchedGlobPatterns = patterns |
| watchers := make([]protocol.FileSystemWatcher, 0, len(patterns)) // must be a slice |
| val := protocol.WatchChange | protocol.WatchDelete | protocol.WatchCreate |
| for pattern := range patterns { |
| watchers = append(watchers, protocol.FileSystemWatcher{ |
| GlobPattern: pattern, |
| Kind: &val, |
| }) |
| } |
| |
| if err := s.client.RegisterCapability(ctx, &protocol.RegistrationParams{ |
| Registrations: []protocol.Registration{{ |
| ID: watchedFilesCapabilityID(s.watchRegistrationCount), |
| Method: "workspace/didChangeWatchedFiles", |
| RegisterOptions: protocol.DidChangeWatchedFilesRegistrationOptions{ |
| Watchers: watchers, |
| }, |
| }}, |
| }); err != nil { |
| return err |
| } |
| s.watchRegistrationCount++ |
| return nil |
| } |
| |
| // Options returns the current server options. |
| // |
| // The caller must not modify the result. |
| func (s *server) Options() *settings.Options { |
| s.optionsMu.Lock() |
| defer s.optionsMu.Unlock() |
| return s.options |
| } |
| |
| // SetOptions sets the current server options. |
| // |
| // The caller must not subsequently modify the options. |
| func (s *server) SetOptions(opts *settings.Options) { |
| s.optionsMu.Lock() |
| defer s.optionsMu.Unlock() |
| s.options = opts |
| } |
| |
| func (s *server) fetchFolderOptions(ctx context.Context, folder protocol.DocumentURI) (*settings.Options, error) { |
| if opts := s.Options(); !opts.ConfigurationSupported { |
| return opts, nil |
| } |
| scope := string(folder) |
| configs, err := s.client.Configuration(ctx, &protocol.ParamConfiguration{ |
| Items: []protocol.ConfigurationItem{{ |
| ScopeURI: &scope, |
| Section: "gopls", |
| }}, |
| }, |
| ) |
| if err != nil { |
| return nil, fmt.Errorf("failed to get workspace configuration from client (%s): %v", folder, err) |
| } |
| |
| folderOpts := s.Options().Clone() |
| for _, config := range configs { |
| if err := s.handleOptionResults(ctx, settings.SetOptions(folderOpts, config)); err != nil { |
| return nil, err |
| } |
| } |
| return folderOpts, nil |
| } |
| |
| func (s *server) eventuallyShowMessage(ctx context.Context, msg *protocol.ShowMessageParams) error { |
| s.stateMu.Lock() |
| defer s.stateMu.Unlock() |
| if s.state == serverInitialized { |
| return s.client.ShowMessage(ctx, msg) |
| } |
| s.notifications = append(s.notifications, msg) |
| return nil |
| } |
| |
| func (s *server) handleOptionResults(ctx context.Context, results settings.OptionResults) error { |
| var warnings, errors []string |
| for _, result := range results { |
| switch result.Error.(type) { |
| case nil: |
| // nothing to do |
| case *settings.SoftError: |
| warnings = append(warnings, result.Error.Error()) |
| default: |
| errors = append(errors, result.Error.Error()) |
| } |
| } |
| |
| // Sort messages, but put errors first. |
| // |
| // Having stable content for the message allows clients to de-duplicate. This |
| // matters because we may send duplicate warnings for clients that support |
| // dynamic configuration: one for the initial settings, and then more for the |
| // individual viewsettings. |
| var msgs []string |
| msgType := protocol.Warning |
| if len(errors) > 0 { |
| msgType = protocol.Error |
| sort.Strings(errors) |
| msgs = append(msgs, errors...) |
| } |
| if len(warnings) > 0 { |
| sort.Strings(warnings) |
| msgs = append(msgs, warnings...) |
| } |
| |
| if len(msgs) > 0 { |
| // Settings |
| combined := "Invalid settings: " + strings.Join(msgs, "; ") |
| params := &protocol.ShowMessageParams{ |
| Type: msgType, |
| Message: combined, |
| } |
| return s.eventuallyShowMessage(ctx, params) |
| } |
| |
| return nil |
| } |
| |
| // beginFileRequest checks preconditions for a file-oriented request and routes |
| // it to a snapshot. |
| // We don't want to return errors for benign conditions like wrong file type, |
| // so callers should do if !ok { return err } rather than if err != nil. |
| // The returned cleanup function is non-nil even in case of false/error result. |
| func (s *server) beginFileRequest(ctx context.Context, uri protocol.DocumentURI, expectKind file.Kind) (*cache.Snapshot, file.Handle, bool, func(), error) { |
| view, err := s.session.ViewOf(uri) |
| if err != nil { |
| return nil, nil, false, func() {}, err |
| } |
| snapshot, release, err := view.Snapshot() |
| if err != nil { |
| return nil, nil, false, func() {}, err |
| } |
| fh, err := snapshot.ReadFile(ctx, uri) |
| if err != nil { |
| release() |
| return nil, nil, false, func() {}, err |
| } |
| if expectKind != file.UnknownKind && snapshot.FileKind(fh) != expectKind { |
| // Wrong kind of file. Nothing to do. |
| release() |
| return nil, nil, false, func() {}, nil |
| } |
| return snapshot, fh, true, release, nil |
| } |
| |
| // shutdown implements the 'shutdown' LSP handler. It releases resources |
| // associated with the server and waits for all ongoing work to complete. |
| func (s *server) Shutdown(ctx context.Context) error { |
| ctx, done := event.Start(ctx, "lsp.Server.shutdown") |
| defer done() |
| |
| s.stateMu.Lock() |
| defer s.stateMu.Unlock() |
| if s.state < serverInitialized { |
| event.Log(ctx, "server shutdown without initialization") |
| } |
| if s.state != serverShutDown { |
| // drop all the active views |
| s.session.Shutdown(ctx) |
| s.state = serverShutDown |
| if s.tempDir != "" { |
| if err := os.RemoveAll(s.tempDir); err != nil { |
| event.Error(ctx, "removing temp dir", err) |
| } |
| } |
| } |
| return nil |
| } |
| |
| func (s *server) Exit(ctx context.Context) error { |
| ctx, done := event.Start(ctx, "lsp.Server.exit") |
| defer done() |
| |
| s.stateMu.Lock() |
| defer s.stateMu.Unlock() |
| |
| s.client.Close() |
| |
| if s.state != serverShutDown { |
| // TODO: We should be able to do better than this. |
| os.Exit(1) |
| } |
| // We don't terminate the process on a normal exit, we just allow it to |
| // close naturally if needed after the connection is closed. |
| return nil |
| } |