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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
// 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 cmd
// This file defines the help, bug, version, api-json, licenses commands.
import (
"context"
"encoding/json"
"flag"
"fmt"
"os"
"strings"
"cuelang.org/go/internal/golangorgx/gopls/settings"
"cuelang.org/go/internal/golangorgx/tools/tool"
)
// help implements the help command.
type help struct {
app *Application
}
func (h *help) Name() string { return "help" }
func (h *help) Parent() string { return h.app.Name() }
func (h *help) Usage() string { return "" }
func (h *help) ShortHelp() string { return "print usage information for subcommands" }
func (h *help) DetailedHelp(f *flag.FlagSet) {
fmt.Fprint(f.Output(), `
Examples:
$ cuelsp help # main cuelsp help message
$ cuelsp help remote # help on 'remote' command
$ cuelsp help remote sessions # help on 'remote sessions' subcommand
`)
printFlagDefaults(f)
}
// Run prints help information about a subcommand.
func (h *help) Run(ctx context.Context, args ...string) error {
find := func(cmds []tool.Application, name string) tool.Application {
for _, cmd := range cmds {
if cmd.Name() == name {
return cmd
}
}
return nil
}
// Find the subcommand denoted by args (empty => h.app).
var cmd tool.Application = h.app
for i, arg := range args {
cmd = find(getSubcommands(cmd), arg)
if cmd == nil {
return tool.CommandLineErrorf(
"no such subcommand: %s", strings.Join(args[:i+1], " "))
}
}
// 'cuelsp help cmd subcmd' is equivalent to 'cuelsp cmd subcmd -h'.
// The flag package prints the usage information (defined by tool.Run)
// when it sees the -h flag.
fs := flag.NewFlagSet(cmd.Name(), flag.ExitOnError)
return tool.Run(ctx, fs, h.app, append(args[:len(args):len(args)], "-h"))
}
type apiJSON struct {
app *Application
}
func (j *apiJSON) Name() string { return "api-json" }
func (j *apiJSON) Parent() string { return j.app.Name() }
func (j *apiJSON) Usage() string { return "" }
func (j *apiJSON) ShortHelp() string { return "print JSON describing cuelsp API" }
func (j *apiJSON) DetailedHelp(f *flag.FlagSet) {
fmt.Fprint(f.Output(), ``)
printFlagDefaults(f)
}
func (j *apiJSON) Run(ctx context.Context, args ...string) error {
js, err := json.MarshalIndent(settings.GeneratedAPIJSON, "", "\t")
if err != nil {
return err
}
fmt.Fprint(os.Stdout, string(js))
return nil
}
type licenses struct {
app *Application
}
func (l *licenses) Name() string { return "licenses" }
func (l *licenses) Parent() string { return l.app.Name() }
func (l *licenses) Usage() string { return "" }
func (l *licenses) ShortHelp() string { return "print licenses of included software" }
func (l *licenses) DetailedHelp(f *flag.FlagSet) {
fmt.Fprint(f.Output(), ``)
printFlagDefaults(f)
}
const licensePreamble = `
gopls is made available under the following BSD-style license:
Copyright (c) 2009 The Go Authors. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
gopls implements the LSP specification, which is made available under the following license:
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
gopls also includes software made available under these licenses:
`
func (l *licenses) Run(ctx context.Context, args ...string) error {
opts := settings.DefaultOptions(l.app.options)
txt := licensePreamble
if opts.LicensesText == "" {
txt += "(development gopls, license information not available)"
} else {
txt += opts.LicensesText
}
fmt.Fprint(os.Stdout, txt)
return nil
}
|