2020-04-17 15:09:24 -05:00
< h1 align = "center" >
< img src = "./.github/banner.jpg" alt = "go-arg" height = "250px" >
< br >
go-arg
< / br >
< / h1 >
2020-04-17 14:52:34 -05:00
< h4 align = "center" > Struct-based argument parsing for Go< / h4 >
< p align = "center" >
< a href = "https://sourcegraph.com/github.com/alexflint/go-arg?badge" > < img src = "https://sourcegraph.com/github.com/alexflint/go-arg/-/badge.svg" alt = "Sourcegraph" > < / a >
2020-04-17 15:00:32 -05:00
< a href = "https://pkg.go.dev/github.com/alexflint/go-arg" > < img src = "https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat-square" alt = "Documentation" > < / a >
2020-04-17 14:52:34 -05:00
< a href = "https://github.com/alexflint/go-arg/actions" > < img src = "https://github.com/alexflint/go-arg/workflows/Go/badge.svg" alt = "Build Status" > < / a >
2020-04-17 15:37:00 -05:00
< a href = "https://codecov.io/gh/alexflint/go-arg" > < img src = "https://codecov.io/gh/alexflint/go-arg/branch/master/graph/badge.svg" alt = "Coverage Status" > < / a >
2020-04-17 14:52:34 -05:00
< a href = "https://goreportcard.com/report/github.com/alexflint/go-arg" > < img src = "https://goreportcard.com/badge/github.com/alexflint/go-arg" alt = "Go Report Card" > < / a >
< / p >
< br >
2016-01-23 22:11:51 -06:00
2019-04-14 18:06:27 -05:00
Declare command line arguments for your program by defining a struct.
2015-11-01 13:34:22 -06:00
2022-10-07 14:51:27 -05:00
```go
import "github.com/go-arg/v2
```
TODO
2015-10-31 20:49:20 -05:00
```go
2015-10-31 20:46:56 -05:00
var args struct {
2015-10-31 20:51:21 -05:00
Foo string
Bar bool
2015-10-31 20:46:56 -05:00
}
arg.MustParse(& args)
2015-10-31 20:49:20 -05:00
fmt.Println(args.Foo, args.Bar)
2015-10-31 20:46:56 -05:00
```
2015-10-31 20:49:20 -05:00
```shell
2015-10-31 20:46:56 -05:00
$ ./example --foo=hello --bar
2015-10-31 21:10:13 -05:00
hello true
2015-10-31 20:46:56 -05:00
```
2020-04-17 14:52:34 -05:00
### Installation
```shell
2022-10-07 14:51:27 -05:00
go get github.com/alexflint/go-arg/v2
2020-04-17 14:52:34 -05:00
```
2015-10-31 21:15:43 -05:00
### Required arguments
2015-10-31 20:46:56 -05:00
2015-10-31 20:49:20 -05:00
```go
2015-10-31 20:46:56 -05:00
var args struct {
2016-01-23 22:08:00 -06:00
ID int `arg:"required"`
Timeout time.Duration
2015-10-31 20:46:56 -05:00
}
arg.MustParse(& args)
```
2015-11-01 15:53:51 -06:00
```shell
$ ./example
2017-03-08 13:52:02 -06:00
Usage: example --id ID [--timeout TIMEOUT]
2016-01-23 22:08:00 -06:00
error: --id is required
2015-11-01 15:53:51 -06:00
```
2015-10-31 21:15:43 -05:00
### Positional arguments
2015-10-31 20:46:56 -05:00
2015-10-31 20:49:20 -05:00
```go
2015-10-31 20:46:56 -05:00
var args struct {
Input string `arg:"positional"`
Output []string `arg:"positional"`
}
arg.MustParse(& args)
2015-11-01 13:34:22 -06:00
fmt.Println("Input:", args.Input)
fmt.Println("Output:", args.Output)
2015-10-31 20:46:56 -05:00
```
```
$ ./example src.txt x.out y.out z.out
Input: src.txt
Output: [x.out y.out z.out]
```
2016-01-18 12:42:04 -06:00
### Environment variables
```go
var args struct {
Workers int `arg:"env"`
}
arg.MustParse(& args)
fmt.Println("Workers:", args.Workers)
```
```
$ WORKERS=4 ./example
Workers: 4
```
```
$ WORKERS=4 ./example --workers=6
Workers: 6
```
2015-10-31 20:48:38 -05:00
### Usage strings
2015-10-31 20:51:21 -05:00
```go
var args struct {
Input string `arg:"positional"`
Output []string `arg:"positional"`
2020-08-06 18:41:45 -05:00
Verbose bool `arg:"-v,--verbose" help:"verbosity level"`
2017-10-02 08:18:41 -05:00
Dataset string `help:"dataset to use"`
Optimize int `arg:"-O" help:"optimization level"`
2015-10-31 20:51:21 -05:00
}
arg.MustParse(& args)
```
2015-10-31 20:49:20 -05:00
```shell
2015-10-31 20:46:56 -05:00
$ ./example -h
2022-01-02 08:06:37 -06:00
Usage: [--verbose] [--dataset DATASET] [--optimize OPTIMIZE] [--help] INPUT [OUTPUT [OUTPUT ...]]
2015-10-31 20:46:56 -05:00
2017-03-08 13:52:02 -06:00
Positional arguments:
2022-01-02 08:06:37 -06:00
INPUT
2017-03-08 13:52:02 -06:00
OUTPUT
2015-10-31 20:46:56 -05:00
2017-03-08 13:52:02 -06:00
Options:
2015-11-01 15:53:51 -06:00
--verbose, -v verbosity level
--dataset DATASET dataset to use
--optimize OPTIMIZE, -O OPTIMIZE
optimization level
--help, -h print this help message
```
### Default values
```go
var args struct {
2019-10-22 01:13:41 -05:00
Foo string `default:"abc"`
2015-11-01 15:53:51 -06:00
Bar bool
}
arg.MustParse(& args)
2015-10-31 20:46:56 -05:00
```
2022-10-07 14:51:27 -05:00
### Overriding the name of an environment variable
2021-09-18 10:23:26 -05:00
```go
var args struct {
2022-10-07 14:51:27 -05:00
Workers int `arg:"env:NUM_WORKERS"`
2021-09-18 10:23:26 -05:00
}
arg.MustParse(& args)
2022-10-07 14:51:27 -05:00
fmt.Println("Workers:", args.Workers)
2021-09-18 10:23:26 -05:00
```
2019-10-22 01:37:12 -05:00
```
2022-10-07 14:51:27 -05:00
$ NUM_WORKERS=4 ./example
Workers: 4
2022-01-02 08:06:37 -06:00
```
2015-10-31 21:15:43 -05:00
### Arguments with multiple values
2022-10-07 14:51:27 -05:00
2015-10-31 20:51:21 -05:00
```go
2015-10-31 20:46:56 -05:00
var args struct {
Database string
IDs []int64
}
arg.MustParse(& args)
fmt.Printf("Fetching the following IDs from %s: %q", args.Database, args.IDs)
```
2015-10-31 20:49:20 -05:00
```shell
2015-10-31 20:46:56 -05:00
./example -database foo -ids 1 2 3
Fetching the following IDs from foo: [1 2 3]
```
2015-10-31 21:10:13 -05:00
2021-04-19 15:59:00 -05:00
### Arguments with keys and values
```go
var args struct {
UserIDs map[string]int
}
arg.MustParse(& args)
fmt.Println(args.UserIDs)
```
```shell
./example --userids john=123 mary=456
map[john:123 mary:456]
```
2016-01-05 15:57:01 -06:00
### Custom validation
2016-01-05 16:00:29 -06:00
```go
2016-01-05 15:57:01 -06:00
var args struct {
Foo string
Bar string
}
p := arg.MustParse(& args)
if args.Foo == "" & & args.Bar == "" {
2019-04-14 18:06:27 -05:00
p.Fail("you must provide either --foo or --bar")
2016-01-05 15:57:01 -06:00
}
```
2016-01-05 16:00:29 -06:00
```shell
./example
2017-03-08 13:52:02 -06:00
Usage: samples [--foo FOO] [--bar BAR]
2019-04-14 18:06:27 -05:00
error: you must provide either --foo or --bar
2016-01-05 16:00:29 -06:00
```
2016-09-08 23:26:12 -05:00
### Version strings
```go
type args struct {
2022-10-07 14:51:27 -05:00
// ...
2016-09-08 23:26:12 -05:00
}
func (args) Version() string {
return "someprogram 4.3.0"
}
func main() {
var args args
arg.MustParse(& args)
}
```
```shell
$ ./example --version
someprogram 4.3.0
```
2020-08-06 18:41:45 -05:00
### Overriding option names
```go
var args struct {
2020-12-19 18:07:18 -06:00
Short string `arg:"-s"`
Long string `arg:"--custom-long-option"`
ShortAndLong string `arg:"-x,--my-option"`
OnlyShort string `arg:"-o,--"`
2020-08-06 18:41:45 -05:00
}
arg.MustParse(& args)
```
```shell
$ ./example --help
2020-12-19 18:07:18 -06:00
Usage: example [-o ONLYSHORT] [--short SHORT] [--custom-long-option CUSTOM-LONG-OPTION] [--my-option MY-OPTION]
2020-08-06 18:41:45 -05:00
Options:
--short SHORT, -s SHORT
--custom-long-option CUSTOM-LONG-OPTION
--my-option MY-OPTION, -x MY-OPTION
2020-12-19 18:07:18 -06:00
-o ONLYSHORT
2020-08-06 18:41:45 -05:00
--help, -h display this help and exit
```
2016-10-09 19:22:42 -05:00
### Embedded structs
The fields of embedded structs are treated just like regular fields:
```go
type DatabaseOptions struct {
Host string
Username string
Password string
}
type LogOptions struct {
LogFile string
Verbose bool
}
func main() {
var args struct {
DatabaseOptions
LogOptions
}
arg.MustParse(& args)
}
```
As usual, any field tagged with `arg:"-"` is ignored.
2021-08-20 21:52:48 -05:00
### Supported types
The following types may be used as arguments:
- built-in integer types: `int, int8, int16, int32, int64, byte, rune`
- built-in floating point types: `float32, float64`
- strings
- booleans
- URLs represented as `url.URL`
- time durations represented as `time.Duration`
- email addresses represented as `mail.Address`
- MAC addresses represented as `net.HardwareAddr`
- pointers to any of the above
- slices of any of the above
- maps using any of the above as keys and values
- any type that implements `encoding.TextUnmarshaler`
2022-10-07 14:51:27 -05:00
### Custom parsing
2016-01-23 22:08:00 -06:00
2019-04-14 18:06:27 -05:00
Implement `encoding.TextUnmarshaler` to define your own parsing logic.
2016-01-23 22:08:00 -06:00
```go
// Accepts command line arguments of the form "head.tail"
type NameDotName struct {
Head, Tail string
}
func (n *NameDotName) UnmarshalText(b []byte) error {
s := string(b)
pos := strings.Index(s, ".")
if pos == -1 {
return fmt.Errorf("missing period in %s", s)
}
n.Head = s[:pos]
n.Tail = s[pos+1:]
return nil
}
2019-04-14 18:06:27 -05:00
func main() {
var args struct {
Name NameDotName
}
arg.MustParse(& args)
fmt.Printf("%#v\n", args.Name)
}
```
```shell
$ ./example --name=foo.bar
main.NameDotName{Head:"foo", Tail:"bar"}
$ ./example --name=oops
Usage: example [--name NAME]
error: error processing --name: missing period in "oops"
```
2022-10-07 14:51:27 -05:00
### Slice-valued environment variables
2019-04-14 18:06:27 -05:00
2022-10-07 14:51:27 -05:00
You can provide multiple values using the CSV (RFC 4180) format:
2019-04-14 18:06:27 -05:00
```go
2022-10-07 14:51:27 -05:00
var args struct {
Workers []int `arg:"env"`
2019-04-14 18:06:27 -05:00
}
2022-10-07 14:51:27 -05:00
arg.MustParse(& args)
fmt.Println("Workers:", args.Workers)
```
2019-04-14 18:06:27 -05:00
2022-10-07 14:51:27 -05:00
```
$ WORKERS='1,99' ./example
Workers: [1 99]
```
### Parsing command line tokens and environment variables from a slice
You can override the command line tokens and environment variables processed by go-arg:
2019-04-14 18:06:27 -05:00
2022-10-07 14:51:27 -05:00
```go
var args struct {
Samsara int
Nirvana float64 `arg:"env:NIRVANA"`
}
p, err := arg.NewParser(& args)
if err != nil {
log.Fatal(err)
2018-04-12 23:46:24 -05:00
}
2022-10-07 14:51:27 -05:00
cmdline := []string{"./thisprogram", "--samsara=123"}
environ := []string{"NIRVANA=45.6"}
err = p.Parse(cmdline, environ)
if err != nil {
log.Fatal(err)
}
```
```
./example
SAMSARA: 123
NIRVANA: 45.6
```
2018-04-12 23:46:24 -05:00
2022-10-07 14:51:27 -05:00
### Configuration files
TODO
### Combining command line options, environment variables, and default values
By default, command line arguments take precedence over environment variables, which take precedence over default values. This means that we check whether a certain option was provided on the command line, then if not, we check for an environment variable (only if an `env` tag was provided), then, if none is found, we check for a `default` tag.
```go
var args struct {
Test string `arg:"-t,env:TEST" default:"something"`
2016-01-23 22:08:00 -06:00
}
2022-10-07 14:51:27 -05:00
arg.MustParse(& args)
2016-01-23 22:08:00 -06:00
```
2018-04-12 23:46:24 -05:00
2022-10-07 14:51:27 -05:00
### Changing precedence of command line options, environment variables, and default values
2018-04-12 23:46:24 -05:00
2022-10-07 14:51:27 -05:00
You can use the low-level functions `Process*` and `OverwriteWith*` to control which things override which other things. Here is an example in which environment variables take precedence over command line options, which is the opposite of the default behavior:
```go
var args struct {
Test string `arg:"env:TEST"`
}
p, err := arg.NewParser(& args)
if err != nil {
log.Fatal(err)
}
err = p.ParseCommandLine(os.Args)
if err != nil {
p.Fail(err.Error())
}
err = p.OverwriteWithEnvironment(os.Environ())
if err != nil {
p.Fail(err.Error())
}
err = p.Validate()
if err != nil {
p.Fail(err.Error())
}
fmt.Printf("test=%s\n", args.Test)
```
```
TEST=value_from_env ./example --test=value_from_option
test=value_from_env
2016-01-23 22:08:00 -06:00
```
2022-10-07 14:51:27 -05:00
### Ignoring environment variables
2019-11-30 13:31:08 -06:00
2022-10-07 14:51:27 -05:00
TODO
2020-02-23 13:44:00 -06:00
2022-10-07 14:51:27 -05:00
### Ignoring default values
2019-11-30 13:31:08 -06:00
2022-10-07 14:51:27 -05:00
TODO
### Arguments that can be specified multiple times
2019-11-30 13:31:08 -06:00
```go
var args struct {
2022-10-07 14:51:27 -05:00
Commands []string `arg:"-c,separate"`
Files []string `arg:"-f,separate"`
2019-11-30 13:31:08 -06:00
}
arg.MustParse(& args)
```
2022-10-07 14:51:27 -05:00
```shell
./example -c cmd1 -f file1 -c cmd2 -f file2 -f file3 -c cmd3
Commands: [cmd1 cmd2 cmd3]
Files [file1 file2 file3]
2019-11-30 13:31:08 -06:00
```
2017-01-23 19:41:12 -06:00
### Description strings
2022-09-17 05:39:31 -05:00
A descriptive message can be added at the top of the help text by implementing
a `Description` function that returns a string.
2017-01-23 19:41:12 -06:00
```go
type args struct {
Foo string
}
func (args) Description() string {
return "this program does this and that"
}
func main() {
var args args
arg.MustParse(& args)
}
```
```shell
$ ./example -h
this program does this and that
2017-03-08 13:52:02 -06:00
Usage: example [--foo FOO]
2017-01-23 19:41:12 -06:00
2017-03-08 13:52:02 -06:00
Options:
2017-01-23 19:41:12 -06:00
--foo FOO
--help, -h display this help and exit
```
2022-09-17 05:39:31 -05:00
Similarly an epilogue can be added at the end of the help text by implementing
the `Epilogue` function.
```go
type args struct {
Foo string
}
func (args) Epilogue() string {
return "For more information visit github.com/alexflint/go-arg"
}
func main() {
var args args
arg.MustParse(& args)
}
```
```shell
$ ./example -h
Usage: example [--foo FOO]
Options:
--foo FOO
--help, -h display this help and exit
For more information visit github.com/alexflint/go-arg
```
2019-08-06 18:41:50 -05:00
### Subcommands
2022-10-07 14:51:27 -05:00
Subcommands are commonly used in tools that group multiple functions into a single program. An example is the `git` tool:
2019-08-06 18:41:50 -05:00
```shell
$ git checkout [arguments specific to checking out code]
2022-10-07 14:51:27 -05:00
$ git commit [arguments specific to committing code]
$ git push [arguments specific to pushing code]
2019-08-06 18:41:50 -05:00
```
2022-10-07 14:51:27 -05:00
This can be implemented with `go-arg` with the `arg:"subcommand"` tag:
2019-08-06 18:41:50 -05:00
```go
type CheckoutCmd struct {
Branch string `arg:"positional"`
Track bool `arg:"-t"`
}
type CommitCmd struct {
All bool `arg:"-a"`
Message string `arg:"-m"`
}
type PushCmd struct {
Remote string `arg:"positional"`
Branch string `arg:"positional"`
SetUpstream bool `arg:"-u"`
}
var args struct {
Checkout *CheckoutCmd `arg:"subcommand:checkout"`
Commit *CommitCmd `arg:"subcommand:commit"`
Push *PushCmd `arg:"subcommand:push"`
Quiet bool `arg:"-q"` // this flag is global to all subcommands
}
arg.MustParse(& args)
switch {
case args.Checkout != nil:
fmt.Printf("checkout requested for branch %s\n", args.Checkout.Branch)
case args.Commit != nil:
fmt.Printf("commit requested with message \"%s\"\n", args.Commit.Message)
case args.Push != nil:
fmt.Printf("push requested from %s to %s\n", args.Push.Branch, args.Push.Remote)
}
```
2022-10-07 14:51:27 -05:00
Note that the `subcommand` tag can only be used with fields that are pointers to structs, and that any struct that contains subcommands cannot also contain positionals.
2019-08-06 18:41:50 -05:00
2022-10-07 14:51:27 -05:00
### Terminating when no subcommands are specified
2020-01-23 11:16:28 -06:00
```go
p := arg.MustParse(& args)
if p.Subcommand() == nil {
p.Fail("missing subcommand")
}
```
2019-08-06 18:41:50 -05:00
2022-10-07 14:51:27 -05:00
### Customizing placeholder strings
2015-11-01 13:34:22 -06:00
2022-10-07 14:51:27 -05:00
Use the `placeholder` tag to control which placeholder text is used in the usage text.
2015-11-01 13:34:22 -06:00
2022-10-07 14:51:27 -05:00
```go
var args struct {
Input string `arg:"positional" placeholder:"SRC"`
Output []string `arg:"positional" placeholder:"DST"`
Optimize int `arg:"-O" placeholder:"LEVEL"`
MaxJobs int `arg:"-j" placeholder:"N"`
}
arg.MustParse(& args)
```
```shell
$ ./example -h
Usage: example [--optimize LEVEL] [--maxjobs N] SRC [DST [DST ...]]
2015-10-31 21:10:13 -05:00
2022-10-07 14:51:27 -05:00
Positional arguments:
SRC
DST
Options:
--optimize LEVEL, -O LEVEL
--maxjobs N, -j N
--help, -h display this help and exit
```
2015-10-31 21:10:13 -05:00
2022-10-07 14:51:27 -05:00
### API Documentation
2015-10-31 21:10:13 -05:00
2022-10-07 14:51:27 -05:00
https://godoc.org/github.com/alexflint/go-arg
2015-10-31 21:10:13 -05:00
2022-10-07 14:51:27 -05:00
### Migrating from v1.x
2017-10-02 08:18:41 -05:00
2022-10-07 14:51:27 -05:00
Migrating IgnoreEnv to passing a nil environ
2017-10-02 08:18:41 -05:00
2022-10-07 14:51:27 -05:00
Migrating from IgnoreDefault to calling ProcessCommandLine