1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
// Copyright 2020 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 cmd
import (
"context"
"flag"
"fmt"
"golang.org/x/tools/gopls/internal/lsp/command"
"golang.org/x/tools/gopls/internal/lsp/protocol"
"golang.org/x/tools/gopls/internal/lsp/source"
)
// workspace is a top-level command for working with the gopls workspace. This
// is experimental and subject to change. The idea is that subcommands could be
// used for manipulating the workspace mod file, rather than editing it
// manually.
type workspace struct {
app *Application
subcommands
}
func newWorkspace(app *Application) *workspace {
return &workspace{
app: app,
subcommands: subcommands{
&generateWorkspaceMod{app: app},
},
}
}
func (w *workspace) Name() string { return "workspace" }
func (w *workspace) Parent() string { return w.app.Name() }
func (w *workspace) ShortHelp() string {
return "manage the gopls workspace (experimental: under development)"
}
// generateWorkspaceMod (re)generates the gopls.mod file for the current
// workspace.
type generateWorkspaceMod struct {
app *Application
}
func (c *generateWorkspaceMod) Name() string { return "generate" }
func (c *generateWorkspaceMod) Usage() string { return "" }
func (c *generateWorkspaceMod) ShortHelp() string {
return "generate a gopls.mod file for a workspace"
}
func (c *generateWorkspaceMod) DetailedHelp(f *flag.FlagSet) {
printFlagDefaults(f)
}
func (c *generateWorkspaceMod) Run(ctx context.Context, args ...string) error {
origOptions := c.app.options
c.app.options = func(opts *source.Options) {
origOptions(opts)
opts.ExperimentalWorkspaceModule = true
}
conn, err := c.app.connect(ctx)
if err != nil {
return err
}
defer conn.terminate(ctx)
cmd, err := command.NewGenerateGoplsModCommand("", command.URIArg{})
if err != nil {
return err
}
params := &protocol.ExecuteCommandParams{Command: cmd.Command, Arguments: cmd.Arguments}
if _, err := conn.ExecuteCommand(ctx, params); err != nil {
return fmt.Errorf("executing server command: %v", err)
}
return nil
}
|