internal/lsp: move the progress tracker to the session

Sometimes, we may want to report progress from functions inside of the
cache package, so move the progress tracker to the session to allow for
that.

Change-Id: I15409577a7a5080e7f0224a95d159de42856ffa7
Reviewed-on: https://go-review.googlesource.com/c/tools/+/319330
Trust: Rebecca Stambler <rstambler@golang.org>
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
gopls-CI: kokoro <noreply+kokoro@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Robert Findley <rfindley@google.com>
This commit is contained in:
Rebecca Stambler 2021-05-12 17:00:35 -04:00
Родитель 3f7c32638c
Коммит 116feaea45
12 изменённых файлов: 107 добавлений и 63 удалений

9
internal/lsp/cache/load.go поставляемый
Просмотреть файл

@ -55,6 +55,15 @@ type metadata struct {
// load calls packages.Load for the given scopes, updating package metadata, // load calls packages.Load for the given scopes, updating package metadata,
// import graph, and mapped files with the result. // import graph, and mapped files with the result.
func (s *snapshot) load(ctx context.Context, allowNetwork bool, scopes ...interface{}) error { func (s *snapshot) load(ctx context.Context, allowNetwork bool, scopes ...interface{}) error {
if s.view.Options().VerboseWorkDoneProgress {
work := s.view.session.progress.Start(ctx, "Load", fmt.Sprintf("Loading scopes %s", scopes), nil, nil)
defer func() {
go func() {
work.End("Done.")
}()
}()
}
var query []string var query []string
var containsDir bool // for logging var containsDir bool // for logging
for _, scope := range scopes { for _, scope := range scopes {

8
internal/lsp/cache/session.go поставляемый
Просмотреть файл

@ -14,6 +14,7 @@ import (
"golang.org/x/tools/internal/event" "golang.org/x/tools/internal/event"
"golang.org/x/tools/internal/gocommand" "golang.org/x/tools/internal/gocommand"
"golang.org/x/tools/internal/imports" "golang.org/x/tools/internal/imports"
"golang.org/x/tools/internal/lsp/progress"
"golang.org/x/tools/internal/lsp/source" "golang.org/x/tools/internal/lsp/source"
"golang.org/x/tools/internal/span" "golang.org/x/tools/internal/span"
"golang.org/x/tools/internal/xcontext" "golang.org/x/tools/internal/xcontext"
@ -36,6 +37,8 @@ type Session struct {
// gocmdRunner guards go command calls from concurrency errors. // gocmdRunner guards go command calls from concurrency errors.
gocmdRunner *gocommand.Runner gocmdRunner *gocommand.Runner
progress *progress.Tracker
} }
type overlay struct { type overlay struct {
@ -131,6 +134,11 @@ func (s *Session) SetOptions(options *source.Options) {
s.options = options s.options = options
} }
func (s *Session) SetProgressTracker(tracker *progress.Tracker) {
// The progress tracker should be set before any view is initialized.
s.progress = tracker
}
func (s *Session) Shutdown(ctx context.Context) { func (s *Session) Shutdown(ctx context.Context) {
s.viewMu.Lock() s.viewMu.Lock()
defer s.viewMu.Unlock() defer s.viewMu.Unlock()

Просмотреть файл

@ -178,6 +178,6 @@ func (l *licenses) Run(ctx context.Context, args ...string) error {
} else { } else {
txt += opts.LicensesText txt += opts.LicensesText
} }
fmt.Fprintf(os.Stdout, txt) fmt.Fprint(os.Stdout, txt)
return nil return nil
} }

Просмотреть файл

@ -20,6 +20,7 @@ import (
"golang.org/x/tools/internal/gocommand" "golang.org/x/tools/internal/gocommand"
"golang.org/x/tools/internal/lsp/command" "golang.org/x/tools/internal/lsp/command"
"golang.org/x/tools/internal/lsp/debug" "golang.org/x/tools/internal/lsp/debug"
"golang.org/x/tools/internal/lsp/progress"
"golang.org/x/tools/internal/lsp/protocol" "golang.org/x/tools/internal/lsp/protocol"
"golang.org/x/tools/internal/lsp/source" "golang.org/x/tools/internal/lsp/source"
"golang.org/x/tools/internal/span" "golang.org/x/tools/internal/span"
@ -65,7 +66,7 @@ type commandConfig struct {
type commandDeps struct { type commandDeps struct {
snapshot source.Snapshot // present if cfg.forURI was set snapshot source.Snapshot // present if cfg.forURI was set
fh source.VersionedFileHandle // present if cfg.forURI was set fh source.VersionedFileHandle // present if cfg.forURI was set
work *workDone // present cfg.progress was set work *progress.WorkDone // present cfg.progress was set
} }
type commandFunc func(context.Context, commandDeps) error type commandFunc func(context.Context, commandDeps) error
@ -90,19 +91,21 @@ func (c *commandHandler) run(ctx context.Context, cfg commandConfig, run command
} }
ctx, cancel := context.WithCancel(xcontext.Detach(ctx)) ctx, cancel := context.WithCancel(xcontext.Detach(ctx))
if cfg.progress != "" { if cfg.progress != "" {
deps.work = c.s.progress.start(ctx, cfg.progress, "Running...", c.params.WorkDoneToken, cancel) deps.work = c.s.progress.Start(ctx, cfg.progress, "Running...", c.params.WorkDoneToken, cancel)
} }
runcmd := func() error { runcmd := func() error {
defer cancel() defer cancel()
err := run(ctx, deps) err := run(ctx, deps)
switch { if deps.work != nil {
case errors.Is(err, context.Canceled): switch {
deps.work.end("canceled") case errors.Is(err, context.Canceled):
case err != nil: deps.work.End("canceled")
event.Error(ctx, "command error", err) case err != nil:
deps.work.end("failed") event.Error(ctx, "command error", err)
default: deps.work.End("failed")
deps.work.end("completed") default:
deps.work.End("completed")
}
} }
return err return err
} }
@ -349,7 +352,7 @@ func (c *commandHandler) RunTests(ctx context.Context, args command.RunTestsArgs
}) })
} }
func (c *commandHandler) runTests(ctx context.Context, snapshot source.Snapshot, work *workDone, uri protocol.DocumentURI, tests, benchmarks []string) error { func (c *commandHandler) runTests(ctx context.Context, snapshot source.Snapshot, work *progress.WorkDone, uri protocol.DocumentURI, tests, benchmarks []string) error {
// TODO: fix the error reporting when this runs async. // TODO: fix the error reporting when this runs async.
pkgs, err := snapshot.PackagesForFile(ctx, uri.SpanURI(), source.TypecheckWorkspace) pkgs, err := snapshot.PackagesForFile(ctx, uri.SpanURI(), source.TypecheckWorkspace)
if err != nil { if err != nil {
@ -362,8 +365,8 @@ func (c *commandHandler) runTests(ctx context.Context, snapshot source.Snapshot,
// create output // create output
buf := &bytes.Buffer{} buf := &bytes.Buffer{}
ew := &eventWriter{ctx: ctx, operation: "test"} ew := progress.NewEventWriter(ctx, "test")
out := io.MultiWriter(ew, workDoneWriter{work}, buf) out := io.MultiWriter(ew, progress.NewWorkDoneWriter(work), buf)
// Run `go test -run Func` on each test. // Run `go test -run Func` on each test.
var failedTests int var failedTests int
@ -435,7 +438,7 @@ func (c *commandHandler) Generate(ctx context.Context, args command.GenerateArgs
progress: title, progress: title,
forURI: args.Dir, forURI: args.Dir,
}, func(ctx context.Context, deps commandDeps) error { }, func(ctx context.Context, deps commandDeps) error {
er := &eventWriter{ctx: ctx, operation: "generate"} er := progress.NewEventWriter(ctx, "generate")
pattern := "." pattern := "."
if args.Recursive { if args.Recursive {
@ -446,7 +449,7 @@ func (c *commandHandler) Generate(ctx context.Context, args command.GenerateArgs
Args: []string{"-x", pattern}, Args: []string{"-x", pattern},
WorkingDir: args.Dir.SpanURI().Filename(), WorkingDir: args.Dir.SpanURI().Filename(),
} }
stderr := io.MultiWriter(er, workDoneWriter{deps.work}) stderr := io.MultiWriter(er, progress.NewWorkDoneWriter(deps.work))
if err := deps.snapshot.RunGoCommandPiped(ctx, source.Normal, inv, er, stderr); err != nil { if err := deps.snapshot.RunGoCommandPiped(ctx, source.Normal, inv, er, stderr); err != nil {
return err return err
} }

Просмотреть файл

@ -384,7 +384,7 @@ func (s *Server) showCriticalErrorStatus(ctx context.Context, snapshot source.Sn
if s.criticalErrorStatus == nil { if s.criticalErrorStatus == nil {
if errMsg != "" { if errMsg != "" {
s.criticalErrorStatus = s.progress.start(ctx, WorkspaceLoadFailure, errMsg, nil, nil) s.criticalErrorStatus = s.progress.Start(ctx, WorkspaceLoadFailure, errMsg, nil, nil)
} }
return return
} }
@ -392,10 +392,10 @@ func (s *Server) showCriticalErrorStatus(ctx context.Context, snapshot source.Sn
// If an error is already shown to the user, update it or mark it as // If an error is already shown to the user, update it or mark it as
// resolved. // resolved.
if errMsg == "" { if errMsg == "" {
s.criticalErrorStatus.end("Done.") s.criticalErrorStatus.End("Done.")
s.criticalErrorStatus = nil s.criticalErrorStatus = nil
} else { } else {
s.criticalErrorStatus.report(errMsg, 0) s.criticalErrorStatus.Report(errMsg, 0)
} }
} }

Просмотреть файл

@ -46,7 +46,7 @@ func (s *Server) initialize(ctx context.Context, params *protocol.ParamInitializ
event.Error(ctx, "creating temp dir", err) event.Error(ctx, "creating temp dir", err)
s.tempDir = "" s.tempDir = ""
} }
s.progress.supportsWorkDoneProgress = params.Capabilities.Window.WorkDoneProgress s.progress.SetSupportsWorkDoneProgress(params.Capabilities.Window.WorkDoneProgress)
options := s.session.Options() options := s.session.Options()
defer func() { s.session.SetOptions(options) }() defer func() { s.session.SetOptions(options) }()
@ -217,11 +217,11 @@ func (s *Server) addFolders(ctx context.Context, folders []protocol.WorkspaceFol
var wg sync.WaitGroup var wg sync.WaitGroup
if s.session.Options().VerboseWorkDoneProgress { if s.session.Options().VerboseWorkDoneProgress {
work := s.progress.start(ctx, DiagnosticWorkTitle(FromInitialWorkspaceLoad), "Calculating diagnostics for initial workspace load...", nil, nil) work := s.progress.Start(ctx, DiagnosticWorkTitle(FromInitialWorkspaceLoad), "Calculating diagnostics for initial workspace load...", nil, nil)
defer func() { defer func() {
go func() { go func() {
wg.Wait() wg.Wait()
work.end("Done.") work.End("Done.")
}() }()
}() }()
} }
@ -233,11 +233,11 @@ func (s *Server) addFolders(ctx context.Context, folders []protocol.WorkspaceFol
if !uri.IsFile() { if !uri.IsFile() {
continue continue
} }
work := s.progress.start(ctx, "Setting up workspace", "Loading packages...", nil, nil) work := s.progress.Start(ctx, "Setting up workspace", "Loading packages...", nil, nil)
snapshot, release, err := s.addView(ctx, folder.Name, uri) snapshot, release, err := s.addView(ctx, folder.Name, uri)
if err != nil { if err != nil {
viewErrors[uri] = err viewErrors[uri] = err
work.end(fmt.Sprintf("Error loading packages: %s", err)) work.End(fmt.Sprintf("Error loading packages: %s", err))
continue continue
} }
var swg sync.WaitGroup var swg sync.WaitGroup
@ -247,7 +247,7 @@ func (s *Server) addFolders(ctx context.Context, folders []protocol.WorkspaceFol
defer swg.Done() defer swg.Done()
defer allFoldersWg.Done() defer allFoldersWg.Done()
snapshot.AwaitInitialized(ctx) snapshot.AwaitInitialized(ctx)
work.end("Finished loading packages.") work.End("Finished loading packages.")
}() }()
// Print each view's environment. // Print each view's environment.

Просмотреть файл

@ -92,6 +92,7 @@ func testLSP(t *testing.T, datum *tests.Data) {
normalizers: tests.CollectNormalizers(datum.Exported), normalizers: tests.CollectNormalizers(datum.Exported),
editRecv: make(chan map[span.URI]string, 1), editRecv: make(chan map[span.URI]string, 1),
} }
r.server = NewServer(session, testClient{runner: r}) r.server = NewServer(session, testClient{runner: r})
tests.Run(t, r, datum) tests.Run(t, r, datum)
} }

Просмотреть файл

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
package lsp package progress
import ( import (
"context" "context"
@ -18,22 +18,26 @@ import (
errors "golang.org/x/xerrors" errors "golang.org/x/xerrors"
) )
type progressTracker struct { type Tracker struct {
client protocol.Client client protocol.Client
supportsWorkDoneProgress bool supportsWorkDoneProgress bool
mu sync.Mutex mu sync.Mutex
inProgress map[protocol.ProgressToken]*workDone inProgress map[protocol.ProgressToken]*WorkDone
} }
func newProgressTracker(client protocol.Client) *progressTracker { func NewTracker(client protocol.Client) *Tracker {
return &progressTracker{ return &Tracker{
client: client, client: client,
inProgress: make(map[protocol.ProgressToken]*workDone), inProgress: make(map[protocol.ProgressToken]*WorkDone),
} }
} }
// start notifies the client of work being done on the server. It uses either func (tracker *Tracker) SetSupportsWorkDoneProgress(b bool) {
tracker.supportsWorkDoneProgress = b
}
// Start notifies the client of work being done on the server. It uses either
// ShowMessage RPCs or $/progress messages, depending on the capabilities of // ShowMessage RPCs or $/progress messages, depending on the capabilities of
// the client. The returned WorkDone handle may be used to report incremental // the client. The returned WorkDone handle may be used to report incremental
// progress, and to report work completion. In particular, it is an error to // progress, and to report work completion. In particular, it is an error to
@ -59,8 +63,8 @@ func newProgressTracker(client protocol.Client) *progressTracker {
// // Do the work... // // Do the work...
// } // }
// //
func (t *progressTracker) start(ctx context.Context, title, message string, token protocol.ProgressToken, cancel func()) *workDone { func (t *Tracker) Start(ctx context.Context, title, message string, token protocol.ProgressToken, cancel func()) *WorkDone {
wd := &workDone{ wd := &WorkDone{
ctx: xcontext.Detach(ctx), ctx: xcontext.Detach(ctx),
client: t.client, client: t.client,
token: token, token: token,
@ -119,7 +123,7 @@ func (t *progressTracker) start(ctx context.Context, title, message string, toke
return wd return wd
} }
func (t *progressTracker) cancel(ctx context.Context, token protocol.ProgressToken) error { func (t *Tracker) Cancel(ctx context.Context, token protocol.ProgressToken) error {
t.mu.Lock() t.mu.Lock()
defer t.mu.Unlock() defer t.mu.Unlock()
wd, ok := t.inProgress[token] wd, ok := t.inProgress[token]
@ -133,9 +137,9 @@ func (t *progressTracker) cancel(ctx context.Context, token protocol.ProgressTok
return nil return nil
} }
// workDone represents a unit of work that is reported to the client via the // WorkDone represents a unit of work that is reported to the client via the
// progress API. // progress API.
type workDone struct { type WorkDone struct {
// ctx is detached, for sending $/progress updates. // ctx is detached, for sending $/progress updates.
ctx context.Context ctx context.Context
client protocol.Client client protocol.Client
@ -153,7 +157,11 @@ type workDone struct {
cleanup func() cleanup func()
} }
func (wd *workDone) doCancel() { func (wd *WorkDone) Token() protocol.ProgressToken {
return wd.token
}
func (wd *WorkDone) doCancel() {
wd.cancelMu.Lock() wd.cancelMu.Lock()
defer wd.cancelMu.Unlock() defer wd.cancelMu.Unlock()
if !wd.cancelled { if !wd.cancelled {
@ -162,7 +170,7 @@ func (wd *workDone) doCancel() {
} }
// report reports an update on WorkDone report back to the client. // report reports an update on WorkDone report back to the client.
func (wd *workDone) report(message string, percentage float64) { func (wd *WorkDone) Report(message string, percentage float64) {
if wd == nil { if wd == nil {
return return
} }
@ -196,7 +204,7 @@ func (wd *workDone) report(message string, percentage float64) {
} }
// end reports a workdone completion back to the client. // end reports a workdone completion back to the client.
func (wd *workDone) end(message string) { func (wd *WorkDone) End(message string) {
if wd == nil { if wd == nil {
return return
} }
@ -227,27 +235,35 @@ func (wd *workDone) end(message string) {
} }
} }
// eventWriter writes every incoming []byte to // EventWriter writes every incoming []byte to
// event.Print with the operation=generate tag // event.Print with the operation=generate tag
// to distinguish its logs from others. // to distinguish its logs from others.
type eventWriter struct { type EventWriter struct {
ctx context.Context ctx context.Context
operation string operation string
} }
func (ew *eventWriter) Write(p []byte) (n int, err error) { func NewEventWriter(ctx context.Context, operation string) *EventWriter {
return &EventWriter{ctx: ctx, operation: operation}
}
func (ew *EventWriter) Write(p []byte) (n int, err error) {
event.Log(ew.ctx, string(p), tag.Operation.Of(ew.operation)) event.Log(ew.ctx, string(p), tag.Operation.Of(ew.operation))
return len(p), nil return len(p), nil
} }
// workDoneWriter wraps a workDone handle to provide a Writer interface, // WorkDoneWriter wraps a workDone handle to provide a Writer interface,
// so that workDone reporting can more easily be hooked into commands. // so that workDone reporting can more easily be hooked into commands.
type workDoneWriter struct { type WorkDoneWriter struct {
wd *workDone wd *WorkDone
} }
func (wdw workDoneWriter) Write(p []byte) (n int, err error) { func NewWorkDoneWriter(wd *WorkDone) *WorkDoneWriter {
wdw.wd.report(string(p), 0) return &WorkDoneWriter{wd: wd}
}
func (wdw WorkDoneWriter) Write(p []byte) (n int, err error) {
wdw.wd.Report(string(p), 0)
// Don't fail just because of a failure to report progress. // Don't fail just because of a failure to report progress.
return len(p), nil return len(p), nil
} }

Просмотреть файл

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
package lsp package progress
import ( import (
"context" "context"
@ -63,10 +63,10 @@ func (c *fakeClient) ShowMessage(context.Context, *protocol.ShowMessageParams) e
return nil return nil
} }
func setup(token protocol.ProgressToken) (context.Context, *progressTracker, *fakeClient) { func setup(token protocol.ProgressToken) (context.Context, *Tracker, *fakeClient) {
c := &fakeClient{} c := &fakeClient{}
tracker := newProgressTracker(c) tracker := NewTracker(c)
tracker.supportsWorkDoneProgress = true tracker.SetSupportsWorkDoneProgress(true)
return context.Background(), tracker, c return context.Background(), tracker, c
} }
@ -113,7 +113,7 @@ func TestProgressTracker_Reporting(t *testing.T) {
ctx, cancel := context.WithCancel(ctx) ctx, cancel := context.WithCancel(ctx)
defer cancel() defer cancel()
tracker.supportsWorkDoneProgress = test.supported tracker.supportsWorkDoneProgress = test.supported
work := tracker.start(ctx, "work", "message", test.token, nil) work := tracker.Start(ctx, "work", "message", test.token, nil)
client.mu.Lock() client.mu.Lock()
gotCreated, gotBegun := client.created, client.begun gotCreated, gotBegun := client.created, client.begun
client.mu.Unlock() client.mu.Unlock()
@ -124,14 +124,14 @@ func TestProgressTracker_Reporting(t *testing.T) {
t.Errorf("got %d work begun, want %d", gotBegun, test.wantBegun) t.Errorf("got %d work begun, want %d", gotBegun, test.wantBegun)
} }
// Ignore errors: this is just testing the reporting behavior. // Ignore errors: this is just testing the reporting behavior.
work.report("report", 50) work.Report("report", 50)
client.mu.Lock() client.mu.Lock()
gotReported := client.reported gotReported := client.reported
client.mu.Unlock() client.mu.Unlock()
if gotReported != test.wantReported { if gotReported != test.wantReported {
t.Errorf("got %d progress reports, want %d", gotReported, test.wantCreated) t.Errorf("got %d progress reports, want %d", gotReported, test.wantCreated)
} }
work.end("done") work.End("done")
client.mu.Lock() client.mu.Lock()
gotEnded, gotMessages := client.ended, client.messages gotEnded, gotMessages := client.ended, client.messages
client.mu.Unlock() client.mu.Unlock()
@ -150,8 +150,8 @@ func TestProgressTracker_Cancellation(t *testing.T) {
ctx, tracker, _ := setup(token) ctx, tracker, _ := setup(token)
var canceled bool var canceled bool
cancel := func() { canceled = true } cancel := func() { canceled = true }
work := tracker.start(ctx, "work", "message", token, cancel) work := tracker.Start(ctx, "work", "message", token, cancel)
if err := tracker.cancel(ctx, work.token); err != nil { if err := tracker.Cancel(ctx, work.Token()); err != nil {
t.Fatal(err) t.Fatal(err)
} }
if !canceled { if !canceled {

Просмотреть файл

@ -11,6 +11,7 @@ import (
"sync" "sync"
"golang.org/x/tools/internal/jsonrpc2" "golang.org/x/tools/internal/jsonrpc2"
"golang.org/x/tools/internal/lsp/progress"
"golang.org/x/tools/internal/lsp/protocol" "golang.org/x/tools/internal/lsp/protocol"
"golang.org/x/tools/internal/lsp/source" "golang.org/x/tools/internal/lsp/source"
"golang.org/x/tools/internal/span" "golang.org/x/tools/internal/span"
@ -22,6 +23,8 @@ const concurrentAnalyses = 1
// NewServer creates an LSP server and binds it to handle incoming client // NewServer creates an LSP server and binds it to handle incoming client
// messages on on the supplied stream. // messages on on the supplied stream.
func NewServer(session source.Session, client protocol.ClientCloser) *Server { func NewServer(session source.Session, client protocol.ClientCloser) *Server {
tracker := progress.NewTracker(client)
session.SetProgressTracker(tracker)
return &Server{ return &Server{
diagnostics: map[span.URI]*fileReports{}, diagnostics: map[span.URI]*fileReports{},
gcOptimizationDetails: make(map[string]struct{}), gcOptimizationDetails: make(map[string]struct{}),
@ -30,7 +33,7 @@ func NewServer(session source.Session, client protocol.ClientCloser) *Server {
session: session, session: session,
client: client, client: client,
diagnosticsSema: make(chan struct{}, concurrentAnalyses), diagnosticsSema: make(chan struct{}, concurrentAnalyses),
progress: newProgressTracker(client), progress: tracker,
debouncer: newDebouncer(), debouncer: newDebouncer(),
} }
} }
@ -99,7 +102,7 @@ type Server struct {
// expensive. // expensive.
diagnosticsSema chan struct{} diagnosticsSema chan struct{}
progress *progressTracker progress *progress.Tracker
// debouncer is used for debouncing diagnostics. // debouncer is used for debouncing diagnostics.
debouncer *debouncer debouncer *debouncer
@ -107,11 +110,11 @@ type Server struct {
// When the workspace fails to load, we show its status through a progress // When the workspace fails to load, we show its status through a progress
// report with an error message. // report with an error message.
criticalErrorStatusMu sync.Mutex criticalErrorStatusMu sync.Mutex
criticalErrorStatus *workDone criticalErrorStatus *progress.WorkDone
} }
func (s *Server) workDoneProgressCancel(ctx context.Context, params *protocol.WorkDoneProgressCancelParams) error { func (s *Server) workDoneProgressCancel(ctx context.Context, params *protocol.WorkDoneProgressCancelParams) error {
return s.progress.cancel(ctx, params.Token) return s.progress.Cancel(ctx, params.Token)
} }
func (s *Server) nonstandardRequest(ctx context.Context, method string, params interface{}) (interface{}, error) { func (s *Server) nonstandardRequest(ctx context.Context, method string, params interface{}) (interface{}, error) {

Просмотреть файл

@ -20,6 +20,7 @@ import (
"golang.org/x/tools/go/analysis" "golang.org/x/tools/go/analysis"
"golang.org/x/tools/internal/gocommand" "golang.org/x/tools/internal/gocommand"
"golang.org/x/tools/internal/imports" "golang.org/x/tools/internal/imports"
"golang.org/x/tools/internal/lsp/progress"
"golang.org/x/tools/internal/lsp/protocol" "golang.org/x/tools/internal/lsp/protocol"
"golang.org/x/tools/internal/span" "golang.org/x/tools/internal/span"
errors "golang.org/x/xerrors" errors "golang.org/x/xerrors"
@ -349,6 +350,9 @@ type Session interface {
// known by the view. For views within a module, this is the module root, // known by the view. For views within a module, this is the module root,
// any directory in the module root, and any replace targets. // any directory in the module root, and any replace targets.
FileWatchingGlobPatterns(ctx context.Context) map[string]struct{} FileWatchingGlobPatterns(ctx context.Context) map[string]struct{}
// SetProgressTracker sets the progress tracker for the session.
SetProgressTracker(tracker *progress.Tracker)
} }
// Overlay is the type for a file held in memory on a session. // Overlay is the type for a file held in memory on a session.

Просмотреть файл

@ -207,11 +207,11 @@ func (s *Server) didModifyFiles(ctx context.Context, modifications []source.File
// modification. // modification.
var diagnosticWG sync.WaitGroup var diagnosticWG sync.WaitGroup
if s.session.Options().VerboseWorkDoneProgress { if s.session.Options().VerboseWorkDoneProgress {
work := s.progress.start(ctx, DiagnosticWorkTitle(cause), "Calculating file diagnostics...", nil, nil) work := s.progress.Start(ctx, DiagnosticWorkTitle(cause), "Calculating file diagnostics...", nil, nil)
defer func() { defer func() {
go func() { go func() {
diagnosticWG.Wait() diagnosticWG.Wait()
work.end("Done.") work.End("Done.")
}() }()
}() }()
} }