Documentation ¶
Overview ¶
Package base defines shared basic pieces of the go command, in particular logging and the Command structure.
Index ¶
- Constants
- Variables
- func AddBuildFlagsNX(flags *flag.FlagSet)
- func AtExit(f func())
- func EnvForDir(dir string, base []string) []string
- func Errorf(format string, args ...interface{})
- func Exit()
- func ExitIfErrors()
- func ExpandScanner(err error) error
- func Fatalf(format string, args ...interface{})
- func FilterDotUnderscoreFiles(path []string) []string
- func IsTestFile(file string) bool
- func MergeEnvLists(in, out []string) []string
- func RelPaths(paths []string) []string
- func Run(cmdargs ...interface{})
- func RunStdin(cmdline []string)
- func SetExitStatus(n int)
- func ShortPath(path string) string
- func StartSigHandlers()
- func Tool(toolName string) string
- type Command
- type StringsFlag
Constants ¶
const ToolWindowsExtension = ".exe"
Variables ¶
var ( ToolGOOS = runtime.GOOS ToolGOARCH = runtime.GOARCH ToolIsWindows = ToolGOOS == "windows" ToolDir = build.ToolDir )
Configuration for finding tool binaries.
var Commands []*Command
Commands lists the available commands and help topics. The order here is the order in which they are printed by 'go help'.
var Cwd = getwd()
var Interrupted = make(chan struct{})
Interrupted is closed when the go command receives an interrupt signal.
var SignalTrace os.Signal = syscall.SIGQUIT
SignalTrace is the signal to send to make a Go program crash with a stack trace.
var Usage func()
Usage is the usage-reporting function, filled in by package main but here for reference by other packages.
Functions ¶
func AddBuildFlagsNX ¶
AddBuildFlagsNX adds the -n and -x build flags to the flag set.
func EnvForDir ¶
EnvForDir returns a copy of the environment suitable for running in the given directory. The environment is the current process's environment but with an updated $PWD, so that an os.Getwd in the child will be faster.
func ExitIfErrors ¶
func ExitIfErrors()
func ExpandScanner ¶
ExpandScanner expands a scanner.List error into all the errors in the list. The default Error method only shows the first error and does not shorten paths.
func FilterDotUnderscoreFiles ¶
FilterDotUnderscoreFiles returns a slice containing all elements of path whose base name doesn't begin with "." or "_".
func IsTestFile ¶
IsTestFile reports whether the source file is a set of tests and should therefore be excluded from coverage analysis.
func MergeEnvLists ¶
MergeEnvLists merges the two environment lists such that variables with the same name in "in" replace those in "out". This always returns a newly allocated slice.
func RelPaths ¶
RelPaths returns a copy of paths with absolute paths made relative to the current directory if they would be shorter.
func Run ¶
func Run(cmdargs ...interface{})
Run runs the command, with stdout and stderr connected to the go command's own stdout and stderr. If the command fails, Run reports the error using Errorf.
func SetExitStatus ¶
func SetExitStatus(n int)
Types ¶
type Command ¶
type Command struct { // Run runs the command. // The args are the arguments after the command name. Run func(cmd *Command, args []string) // UsageLine is the one-line usage message. // The first word in the line is taken to be the command name. UsageLine string // Short is the short description shown in the 'go help' output. Short string // Long is the long message shown in the 'go help <this-command>' output. Long string // Flag is a set of flags specific to this command. Flag flag.FlagSet // CustomFlags indicates that the command will do its own // flag parsing. CustomFlags bool }
A Command is an implementation of a go command like go build or go fix.
type StringsFlag ¶
type StringsFlag []string
A StringsFlag is a command-line flag that interprets its argument as a space-separated list of possibly-quoted strings.
func (*StringsFlag) Set ¶
func (v *StringsFlag) Set(s string) error
func (*StringsFlag) String ¶
func (v *StringsFlag) String() string