mirror of
https://github.com/golang/go
synced 2024-11-18 22:14:56 -07:00
44dd571771
Also log gopls version information on startup in server mode. Change-Id: If7bf85d19f993430709b1fae83083e6fdfe1b2ca Reviewed-on: https://go-review.googlesource.com/c/tools/+/175199 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
61 lines
1.3 KiB
Go
61 lines
1.3 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"
|
|
"fmt"
|
|
"io"
|
|
"os/exec"
|
|
|
|
"golang.org/x/tools/internal/lsp/protocol"
|
|
"golang.org/x/tools/internal/lsp/source"
|
|
"golang.org/x/tools/internal/span"
|
|
)
|
|
|
|
// This writes the version and environment information to a writer.
|
|
func PrintVersionInfo(w io.Writer, verbose bool, markdown bool) {
|
|
if !verbose {
|
|
printBuildInfo(w, false)
|
|
return
|
|
}
|
|
fmt.Fprint(w, "#### Build info\n\n")
|
|
if markdown {
|
|
fmt.Fprint(w, "```\n")
|
|
}
|
|
printBuildInfo(w, true)
|
|
fmt.Fprint(w, "\n")
|
|
if markdown {
|
|
fmt.Fprint(w, "```\n")
|
|
}
|
|
fmt.Fprint(w, "\n#### Go info\n\n")
|
|
if markdown {
|
|
fmt.Fprint(w, "```\n")
|
|
}
|
|
cmd := exec.Command("go", "version")
|
|
cmd.Stdout = w
|
|
cmd.Run()
|
|
fmt.Fprint(w, "\n")
|
|
cmd = exec.Command("go", "env")
|
|
cmd.Stdout = w
|
|
cmd.Run()
|
|
if markdown {
|
|
fmt.Fprint(w, "```\n")
|
|
}
|
|
}
|
|
|
|
func newColumnMap(ctx context.Context, v source.View, uri span.URI) (source.File, *protocol.ColumnMapper, error) {
|
|
f, err := v.GetFile(ctx, uri)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
tok := f.GetToken(ctx)
|
|
if tok == nil {
|
|
return nil, nil, fmt.Errorf("no file information for %v", f.URI())
|
|
}
|
|
m := protocol.NewColumnMapper(f.URI(), f.GetFileSet(ctx), tok, f.GetContent(ctx))
|
|
return f, m, nil
|
|
}
|