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
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
go get github.com/alexflint/go-arg
```
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
```
You can also override the name of the environment variable:
```go
var args struct {
Workers int `arg:"env:NUM_WORKERS"`
}
arg.MustParse(& args)
fmt.Println("Workers:", args.Workers)
```
```
$ NUM_WORKERS=4 ./example
Workers: 4
```
2018-05-01 04:02:44 -05:00
You can provide multiple values using the CSV (RFC 4180) format:
2018-04-26 13:10:44 -05:00
```go
var args struct {
Workers []int `arg:"env"`
}
arg.MustParse(& args)
fmt.Println("Workers:", args.Workers)
```
```
2018-05-01 04:02:44 -05:00
$ WORKERS='1,99' ./example
2018-04-26 13:10:44 -05:00
Workers: [1 99]
```
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
```
2021-09-18 10:50:33 -05:00
### Default values (before v1.2)
2021-09-18 10:23:26 -05:00
```go
var args struct {
2021-09-18 10:50:33 -05:00
Foo string
Bar bool
2021-09-18 10:23:26 -05:00
}
2021-09-18 10:50:33 -05:00
arg.Foo = "abc"
2021-09-18 10:23:26 -05:00
arg.MustParse(& args)
```
2021-09-18 10:50:33 -05:00
### Combining command line options, environment variables, and default values
You can combine command line arguments, environment variables, and default values. 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 containing a default value.
2019-10-22 01:37:12 -05:00
```go
var args struct {
2021-09-18 10:50:33 -05:00
Test string `arg:"-t,env:TEST" default:"something"`
2019-10-22 01:37:12 -05:00
}
arg.MustParse(& args)
```
2022-01-02 08:06:37 -06:00
#### Ignoring environment variables and/or default values
The values in an existing structure can be kept in-tact by ignoring environment
variables and/or default values.
```go
var args struct {
Test string `arg:"-t,env:TEST" default:"something"`
}
p, err := arg.NewParser(arg.Config{
IgnoreEnv: true,
IgnoreDefault: true,
}, & args)
err = p.Parse(os.Args)
```
2015-10-31 21:15:43 -05:00
### Arguments with multiple values
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
2017-03-03 06:12:17 -06:00
### Arguments that can be specified multiple times, mixed with positionals
```go
var args struct {
Commands []string `arg:"-c,separate"`
Files []string `arg:"-f,separate"`
Databases []string `arg:"positional"`
}
2021-04-19 15:59:00 -05:00
arg.MustParse(& args)
2017-03-03 06:12:17 -06:00
```
```shell
./example -c cmd1 db1 -f file1 db2 -c cmd2 -f file2 -f file3 db3 -c cmd3
Commands: [cmd1 cmd2 cmd3]
Files [file1 file2 file3]
Databases [db1 db2 db3]
```
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 {
...
}
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`
2016-01-23 22:08:00 -06:00
### Custom parsing
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"
```
### Custom parsing with default values
Implement `encoding.TextMarshaler` to define your own default value strings:
```go
// Accepts command line arguments of the form "head.tail"
type NameDotName struct {
Head, Tail string
}
func (n *NameDotName) UnmarshalText(b []byte) error {
// same as previous example
}
// this is only needed if you want to display a default value in the usage string
func (n *NameDotName) MarshalText() ([]byte, error) {
return []byte(fmt.Sprintf("%s.%s", n.Head, n.Tail)), nil
2018-04-12 23:46:24 -05:00
}
2016-01-23 22:08:00 -06:00
func main() {
var args struct {
2019-10-22 01:13:41 -05:00
Name NameDotName `default:"file.txt"`
2016-01-23 22:08:00 -06:00
}
arg.MustParse(& args)
fmt.Printf("%#v\n", args.Name)
}
```
```shell
2018-04-12 23:46:24 -05:00
$ ./example --help
Usage: test [--name NAME]
Options:
--name NAME [default: file.txt]
--help, -h display this help and exit
$ ./example
2018-11-20 03:32:32 -06:00
main.NameDotName{Head:"file", Tail:"txt"}
2016-01-23 22:08:00 -06:00
```
2019-11-30 13:31:08 -06:00
### Custom placeholders
2020-02-23 13:44:00 -06:00
*Introduced in version 1.3.0*
2019-11-30 13:31:08 -06:00
Use the `placeholder` tag to control which placeholder text is used in the usage text.
```go
var args struct {
Input string `arg:"positional" placeholder:"SRC"`
Output []string `arg:"positional" placeholder:"DST"`
Optimize int `arg:"-O" help:"optimization level" placeholder:"LEVEL"`
MaxJobs int `arg:"-j" help:"maximum number of simultaneous jobs" placeholder:"N"`
}
arg.MustParse(& args)
```
```shell
$ ./example -h
Usage: example [--optimize LEVEL] [--maxjobs N] SRC [DST [DST ...]]
Positional arguments:
SRC
DST
Options:
--optimize LEVEL, -O LEVEL
optimization level
--maxjobs N, -j N maximum number of simultaneous jobs
--help, -h display this help and exit
```
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
2020-02-23 13:44:00 -06:00
*Introduced in version 1.1.0*
2019-08-06 18:41:50 -05:00
Subcommands are commonly used in tools that wish to group multiple functions into a single program. An example is the `git` tool:
```shell
$ git checkout [arguments specific to checking out code]
$ git commit [arguments specific to committing]
$ git push [arguments specific to pushing]
```
The strings "checkout", "commit", and "push" are different from simple positional arguments because the options available to the user change depending on which subcommand they choose.
This can be implemented with `go-arg` as follows:
```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)
}
```
Some additional rules apply when working with subcommands:
* The `subcommand` tag can only be used with fields that are pointers to structs
* Any struct that contains a subcommand must not contain any positionals
2020-01-23 11:16:28 -06:00
This package allows to have a program that accepts subcommands, but also does something else
when no subcommands are specified.
If on the other hand you want the program to terminate when no subcommands are specified,
the recommended way is:
```go
p := arg.MustParse(& args)
if p.Subcommand() == nil {
p.Fail("missing subcommand")
}
```
2019-08-06 18:41:50 -05:00
2017-10-02 08:18:41 -05:00
### API Documentation
2015-11-01 13:34:22 -06:00
https://godoc.org/github.com/alexflint/go-arg
2015-10-31 21:10:13 -05:00
### Rationale
2015-10-31 21:13:48 -05:00
There are many command line argument parsing libraries for Go, including one in the standard library, so why build another?
2015-10-31 21:10:13 -05:00
2019-04-14 18:08:51 -05:00
The `flag` library that ships in the standard library seems awkward to me. Positional arguments must preceed options, so `./prog x --foo=1` does what you expect but `./prog --foo=1 x` does not. It also does not allow arguments to have both long (`--foo`) and short (`-f`) forms.
2015-10-31 21:10:13 -05:00
2019-04-14 18:06:27 -05:00
Many third-party argument parsing libraries are great for writing sophisticated command line interfaces, but feel to me like overkill for a simple script with a few flags.
2015-10-31 21:10:13 -05:00
2019-04-14 18:06:27 -05:00
The idea behind `go-arg` is that Go already has an excellent way to describe data structures using structs, so there is no need to develop additional levels of abstraction. Instead of one API to specify which arguments your program accepts, and then another API to get the values of those arguments, `go-arg` replaces both with a single struct.
2017-10-02 08:18:41 -05:00
2019-04-14 18:06:27 -05:00
### Backward compatibility notes
2017-10-02 08:18:41 -05:00
2019-04-14 18:06:27 -05:00
Earlier versions of this library required the help text to be part of the `arg` tag. This is still supported but is now deprecated. Instead, you should use a separate `help` tag, described above, which removes most of the limits on the text you can write. In particular, you will need to use the new `help` tag if your help text includes any commas.