2019-09-28 13:17:16 +02:00
|
|
|
module flag
|
2019-07-12 15:47:27 +02:00
|
|
|
|
|
|
|
// module flag for command-line flag parsing
|
|
|
|
//
|
|
|
|
// - parsing flags like '--flag' or '--stuff=things' or '--things stuff'
|
|
|
|
// - handles bool, int, float and string args
|
2019-09-14 22:54:14 +02:00
|
|
|
// - is able to print usage
|
2019-12-16 17:03:38 +01:00
|
|
|
// - handled unknown arguments as error
|
|
|
|
//
|
2019-07-12 15:47:27 +02:00
|
|
|
// Usage example:
|
|
|
|
//
|
|
|
|
// ```v
|
|
|
|
// module main
|
2019-12-16 17:03:38 +01:00
|
|
|
//
|
2019-07-12 15:47:27 +02:00
|
|
|
// import os
|
|
|
|
// import flag
|
2019-12-16 17:03:38 +01:00
|
|
|
//
|
2019-07-12 15:47:27 +02:00
|
|
|
// fn main() {
|
|
|
|
// mut fp := flag.new_flag_parser(os.args)
|
|
|
|
// fp.application('flag_example_tool')
|
|
|
|
// fp.version('v0.0.0')
|
|
|
|
// fp.description('This tool is only designed to show how the flag lib is working')
|
2019-12-16 17:03:38 +01:00
|
|
|
//
|
2019-07-12 15:47:27 +02:00
|
|
|
// fp.skip_executable()
|
2019-12-16 17:03:38 +01:00
|
|
|
//
|
2020-05-10 22:27:14 +02:00
|
|
|
// an_int := fp.int('an_int', 0, 0o666, 'some int to define 0o666 is default')
|
|
|
|
// a_bool := fp.bool('a_bool', 0, false, 'some \'real\' flag')
|
|
|
|
// a_float := fp.float('a_float', 0, 1.0, 'also floats')
|
|
|
|
// a_string := fp.string('a_string', `a`, 'no text', 'finally, some text with "a" an abbreviation')
|
2019-12-16 17:03:38 +01:00
|
|
|
//
|
2019-07-12 15:47:27 +02:00
|
|
|
// additional_args := fp.finalize() or {
|
|
|
|
// eprintln(err)
|
|
|
|
// println(fp.usage())
|
|
|
|
// return
|
|
|
|
// }
|
2019-12-16 17:03:38 +01:00
|
|
|
//
|
2019-07-12 15:47:27 +02:00
|
|
|
// println('
|
|
|
|
// an_int: $an_int
|
|
|
|
// a_bool: $a_bool
|
|
|
|
// a_float: $a_float
|
|
|
|
// a_string: \'$a_string\'
|
|
|
|
// ')
|
|
|
|
// println(additional_args.join_lines())
|
|
|
|
// }
|
|
|
|
// ```
|
|
|
|
|
2019-09-14 22:54:14 +02:00
|
|
|
// data object storing information about a defined flag
|
2019-12-01 10:50:13 +01:00
|
|
|
pub struct Flag {
|
2019-12-16 17:03:38 +01:00
|
|
|
pub:
|
|
|
|
name string // name as it appears on command line
|
|
|
|
abbr byte // shortcut
|
|
|
|
usage string // help message
|
|
|
|
val_desc string // something like '<arg>' that appears in usage,
|
|
|
|
// and also the default value, when the flag is not given
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
2020-01-08 21:45:47 +01:00
|
|
|
pub fn (f Flag) str() string {
|
|
|
|
return ''
|
|
|
|
+' flag:\n'
|
|
|
|
+' name: $f.name\n'
|
|
|
|
+' abbr: $f.abbr\n'
|
|
|
|
+' usag: $f.usage\n'
|
|
|
|
+' desc: $f.val_desc'
|
|
|
|
}
|
|
|
|
pub fn (af []Flag) str() string {
|
2020-04-26 13:49:31 +02:00
|
|
|
mut res := []string{}
|
2020-01-08 21:45:47 +01:00
|
|
|
res << '\n []Flag = ['
|
|
|
|
for f in af {
|
|
|
|
res << f.str()
|
|
|
|
}
|
|
|
|
res << ' ]'
|
|
|
|
return res.join('\n')
|
|
|
|
}
|
2019-12-16 17:03:38 +01:00
|
|
|
//
|
2019-12-01 10:50:13 +01:00
|
|
|
pub struct FlagParser {
|
2019-12-16 17:03:38 +01:00
|
|
|
pub mut:
|
|
|
|
args []string // the arguments to be parsed
|
|
|
|
flags []Flag // registered flags
|
2019-07-12 15:47:27 +02:00
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
application_name string
|
|
|
|
application_version string
|
|
|
|
application_description string
|
2019-08-05 07:50:24 +02:00
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
min_free_args int
|
|
|
|
max_free_args int
|
|
|
|
args_description string
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
2019-12-01 10:50:13 +01:00
|
|
|
pub const (
|
2019-12-16 17:03:38 +01:00
|
|
|
// used for formating usage message
|
2020-04-04 16:39:08 +02:00
|
|
|
space = ' '
|
2019-12-16 17:03:38 +01:00
|
|
|
UNDERLINE = '-----------------------------------------------'
|
|
|
|
MAX_ARGS_NUMBER = 4048
|
2019-09-28 13:17:16 +02:00
|
|
|
)
|
|
|
|
|
2019-07-12 15:47:27 +02:00
|
|
|
// create a new flag set for parsing command line arguments
|
2019-08-05 07:50:24 +02:00
|
|
|
// TODO use INT_MAX some how
|
2019-07-12 15:47:27 +02:00
|
|
|
pub fn new_flag_parser(args []string) &FlagParser {
|
2020-01-03 19:46:23 +01:00
|
|
|
return &FlagParser{args: args.clone(), max_free_args: MAX_ARGS_NUMBER}
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// change the application name to be used in 'usage' output
|
2019-12-30 16:38:32 +01:00
|
|
|
pub fn (fs mut FlagParser) application(name string) {
|
|
|
|
fs.application_name = name
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// change the application version to be used in 'usage' output
|
2019-12-30 16:38:32 +01:00
|
|
|
pub fn (fs mut FlagParser) version(vers string) {
|
|
|
|
fs.application_version = vers
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// change the application version to be used in 'usage' output
|
2019-12-30 16:38:32 +01:00
|
|
|
pub fn (fs mut FlagParser) description(desc string) {
|
|
|
|
fs.application_description = desc
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// in most cases you do not need the first argv for flag parsing
|
|
|
|
pub fn (fs mut FlagParser) skip_executable() {
|
2019-12-16 17:03:38 +01:00
|
|
|
fs.args.delete(0)
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// private helper to register a flag
|
2019-12-30 16:38:32 +01:00
|
|
|
fn (fs mut FlagParser) add_flag(name string, abbr byte, usage string, desc string) {
|
2019-12-16 17:03:38 +01:00
|
|
|
fs.flags << Flag{
|
2019-12-30 16:38:32 +01:00
|
|
|
name: name,
|
|
|
|
abbr: abbr,
|
|
|
|
usage: usage,
|
|
|
|
val_desc: desc
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
// private: general parsing a single argument
|
2019-09-14 22:54:14 +02:00
|
|
|
// - search args for existence
|
2019-07-12 15:47:27 +02:00
|
|
|
// if true
|
|
|
|
// extract the defined value as string
|
2019-12-16 17:03:38 +01:00
|
|
|
// else
|
2019-07-12 15:47:27 +02:00
|
|
|
// return an (dummy) error -> argument is not defined
|
|
|
|
//
|
|
|
|
// - the name, usage are registered
|
|
|
|
// - found arguments and corresponding values are removed from args list
|
2019-12-16 17:03:38 +01:00
|
|
|
fn (fs mut FlagParser) parse_value(longhand string, shorthand byte) []string {
|
|
|
|
full := '--$longhand'
|
2020-04-26 13:49:31 +02:00
|
|
|
mut found_entries := []string{}
|
|
|
|
mut to_delete := []int{}
|
2019-12-16 17:03:38 +01:00
|
|
|
mut should_skip_one := false
|
|
|
|
for i, arg in fs.args {
|
|
|
|
if should_skip_one {
|
|
|
|
should_skip_one = false
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if arg == '--' {
|
|
|
|
//End of input. We're done here.
|
|
|
|
break
|
|
|
|
}
|
2020-01-08 21:45:47 +01:00
|
|
|
if arg[0] != `-` {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if (arg.len == 2 && arg[0] == `-` && arg[1] == shorthand ) || arg == full {
|
2020-03-06 02:02:32 +01:00
|
|
|
if i+1 >= fs.args.len {
|
2019-12-16 17:03:38 +01:00
|
|
|
panic("Missing argument for '$longhand'")
|
|
|
|
}
|
|
|
|
nextarg := fs.args[i+1]
|
|
|
|
if nextarg.len > 2 && nextarg[..2] == '--' {
|
|
|
|
//It could be end of input (--) or another argument (--abc).
|
|
|
|
//Both are invalid so die.
|
|
|
|
panic("Missing argument for '$longhand'")
|
|
|
|
}
|
|
|
|
found_entries << fs.args[i+1]
|
|
|
|
to_delete << i
|
|
|
|
to_delete << i+1
|
|
|
|
should_skip_one = true
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if arg.len > full.len+1 && arg[..full.len+1] == '$full=' {
|
|
|
|
found_entries << arg[full.len+1..]
|
|
|
|
to_delete << i
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, del in to_delete {
|
|
|
|
//i entrys are deleted so it's shifted left i times.
|
|
|
|
fs.args.delete(del - i)
|
|
|
|
}
|
|
|
|
return found_entries
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
// special parsing for bool values
|
2019-07-12 15:47:27 +02:00
|
|
|
// see also: parse_value
|
2019-12-16 17:03:38 +01:00
|
|
|
//
|
2019-07-12 15:47:27 +02:00
|
|
|
// special: it is allowed to define bool flags without value
|
|
|
|
// -> '--flag' is parsed as true
|
|
|
|
// -> '--flag' is equal to '--flag=true'
|
2019-12-16 17:03:38 +01:00
|
|
|
fn (fs mut FlagParser) parse_bool_value(longhand string, shorthand byte) ?string {
|
|
|
|
full := '--$longhand'
|
|
|
|
for i, arg in fs.args {
|
|
|
|
if arg == '--' {
|
|
|
|
//End of input. We're done.
|
|
|
|
break
|
|
|
|
}
|
2020-01-08 21:45:47 +01:00
|
|
|
if arg.len == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if arg[0] != `-` {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if ( arg.len == 2 && arg[0] == `-` && arg[1] == shorthand ) || arg == full {
|
2019-12-16 17:03:38 +01:00
|
|
|
if fs.args.len > i+1 && (fs.args[i+1] in ['true', 'false']) {
|
|
|
|
val := fs.args[i+1]
|
|
|
|
fs.args.delete(i+1)
|
|
|
|
fs.args.delete(i)
|
|
|
|
return val
|
|
|
|
} else {
|
|
|
|
fs.args.delete(i)
|
|
|
|
return 'true'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if arg.len > full.len+1 && arg[..full.len+1] == '$full=' {
|
|
|
|
// Flag abc=true
|
|
|
|
val := arg[full.len+1..]
|
|
|
|
fs.args.delete(i)
|
|
|
|
return val
|
|
|
|
}
|
2020-01-08 21:45:47 +01:00
|
|
|
if arg[0] == `-` && arg[1] != `-` && arg.index_byte(shorthand) != -1 {
|
2019-12-16 17:03:38 +01:00
|
|
|
// -abc is equivalent to -a -b -c
|
|
|
|
return 'true'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return error("parameter '$longhand' not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
// bool_opt returns an optional that returns the value associated with the flag.
|
|
|
|
// In the situation that the flag was not provided, it returns null.
|
2019-12-30 16:38:32 +01:00
|
|
|
pub fn (fs mut FlagParser) bool_opt(name string, abbr byte, usage string) ?bool {
|
|
|
|
fs.add_flag(name, abbr, usage, '<bool>')
|
|
|
|
parsed := fs.parse_bool_value(name, abbr) or {
|
|
|
|
return error("parameter '$name' not provided")
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
|
|
|
return parsed == 'true'
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
// defining and parsing a bool flag
|
|
|
|
// if defined
|
2019-07-12 15:47:27 +02:00
|
|
|
// the value is returned (true/false)
|
2019-12-16 17:03:38 +01:00
|
|
|
// else
|
2019-07-12 15:47:27 +02:00
|
|
|
// the default value is returned
|
2019-12-30 16:38:32 +01:00
|
|
|
// version with abbr
|
2019-07-12 15:47:27 +02:00
|
|
|
//TODO error handling for invalid string to bool conversion
|
2020-03-19 07:06:37 +01:00
|
|
|
pub fn (fs mut FlagParser) bool(name string, abbr byte, bdefault bool, usage string) bool {
|
2019-12-30 16:38:32 +01:00
|
|
|
value := fs.bool_opt(name, abbr, usage) or {
|
|
|
|
return bdefault
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
|
|
|
return value
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
// int_multi returns all instances of values associated with the flags provided
|
|
|
|
// In the case that none were found, it returns an empty array.
|
2019-12-30 16:38:32 +01:00
|
|
|
pub fn (fs mut FlagParser) int_multi(name string, abbr byte, usage string) []int {
|
|
|
|
fs.add_flag(name, abbr, usage, '<multiple ints>')
|
|
|
|
parsed := fs.parse_value(name, abbr)
|
2020-04-26 13:49:31 +02:00
|
|
|
mut value := []int{}
|
2019-12-16 17:03:38 +01:00
|
|
|
for val in parsed {
|
|
|
|
value << val.int()
|
|
|
|
}
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
|
|
|
// int_opt returns an optional that returns the value associated with the flag.
|
|
|
|
// In the situation that the flag was not provided, it returns null.
|
2019-12-30 16:38:32 +01:00
|
|
|
pub fn (fs mut FlagParser) int_opt(name string, abbr byte, usage string) ?int {
|
|
|
|
fs.add_flag(name, abbr, usage, '<int>')
|
|
|
|
parsed := fs.parse_value(name, abbr)
|
2019-12-16 17:03:38 +01:00
|
|
|
if parsed.len == 0 {
|
2019-12-30 16:38:32 +01:00
|
|
|
return error("parameter '$name' not provided")
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
|
|
|
return parsed[0].int()
|
2019-08-07 16:52:10 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
// defining and parsing an int flag
|
|
|
|
// if defined
|
2019-07-12 15:47:27 +02:00
|
|
|
// the value is returned (int)
|
2019-12-16 17:03:38 +01:00
|
|
|
// else
|
2019-07-12 15:47:27 +02:00
|
|
|
// the default value is returned
|
2019-12-30 16:38:32 +01:00
|
|
|
// version with abbr
|
2019-07-12 15:47:27 +02:00
|
|
|
//TODO error handling for invalid string to int conversion
|
2020-03-19 07:06:37 +01:00
|
|
|
pub fn (fs mut FlagParser) int(name string, abbr byte, idefault int, usage string) int {
|
2019-12-30 16:38:32 +01:00
|
|
|
value := fs.int_opt(name, abbr, usage) or {
|
|
|
|
return idefault
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
|
|
|
return value
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
// float_multi returns all instances of values associated with the flags provided
|
|
|
|
// In the case that none were found, it returns an empty array.
|
2020-04-21 13:44:17 +02:00
|
|
|
pub fn (fs mut FlagParser) float_multi(name string, abbr byte, usage string) []f64 {
|
2019-12-30 16:38:32 +01:00
|
|
|
fs.add_flag(name, abbr, usage, '<multiple floats>')
|
|
|
|
parsed := fs.parse_value(name, abbr)
|
2020-04-26 13:49:31 +02:00
|
|
|
mut value := []f64{}
|
2019-12-16 17:03:38 +01:00
|
|
|
for val in parsed {
|
2020-04-21 13:44:17 +02:00
|
|
|
value << val.f64()
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
|
|
|
return value
|
2019-08-07 16:52:10 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
// float_opt returns an optional that returns the value associated with the flag.
|
|
|
|
// In the situation that the flag was not provided, it returns null.
|
2020-04-21 13:44:17 +02:00
|
|
|
pub fn (fs mut FlagParser) float_opt(name string, abbr byte, usage string) ?f64 {
|
2019-12-30 16:38:32 +01:00
|
|
|
fs.add_flag(name, abbr, usage, '<float>')
|
|
|
|
parsed := fs.parse_value(name, abbr)
|
2019-12-16 17:03:38 +01:00
|
|
|
if parsed.len == 0 {
|
2019-12-30 16:38:32 +01:00
|
|
|
return error("parameter '$name' not provided")
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
2020-04-21 13:44:17 +02:00
|
|
|
return parsed[0].f64()
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// defining and parsing a float flag
|
|
|
|
// if defined
|
2019-07-12 15:47:27 +02:00
|
|
|
// the value is returned (float)
|
2019-12-16 17:03:38 +01:00
|
|
|
// else
|
2019-07-12 15:47:27 +02:00
|
|
|
// the default value is returned
|
2019-12-30 16:38:32 +01:00
|
|
|
// version with abbr
|
2019-07-12 15:47:27 +02:00
|
|
|
//TODO error handling for invalid string to float conversion
|
2020-04-21 13:44:17 +02:00
|
|
|
pub fn (fs mut FlagParser) float(name string, abbr byte, fdefault f64, usage string) f64 {
|
2019-12-30 16:38:32 +01:00
|
|
|
value := fs.float_opt(name, abbr, usage) or {
|
|
|
|
return fdefault
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
|
|
|
return value
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
// string_multi returns all instances of values associated with the flags provided
|
|
|
|
// In the case that none were found, it returns an empty array.
|
2019-12-30 16:38:32 +01:00
|
|
|
pub fn (fs mut FlagParser) string_multi(name string, abbr byte, usage string) []string {
|
|
|
|
fs.add_flag(name, abbr, usage, '<multiple floats>')
|
|
|
|
return fs.parse_value(name, abbr)
|
2019-08-07 16:52:10 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
// string_opt returns an optional that returns the value associated with the flag.
|
|
|
|
// In the situation that the flag was not provided, it returns null.
|
2019-12-30 16:38:32 +01:00
|
|
|
pub fn (fs mut FlagParser) string_opt(name string, abbr byte, usage string) ?string {
|
|
|
|
fs.add_flag(name, abbr, usage, '<string>')
|
|
|
|
parsed := fs.parse_value(name, abbr)
|
2019-12-16 17:03:38 +01:00
|
|
|
if parsed.len == 0 {
|
2019-12-30 16:38:32 +01:00
|
|
|
return error("parameter '$name' not provided")
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
|
|
|
return parsed[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
// defining and parsing a string flag
|
|
|
|
// if defined
|
2019-07-12 15:47:27 +02:00
|
|
|
// the value is returned (string)
|
2019-12-16 17:03:38 +01:00
|
|
|
// else
|
2019-07-12 15:47:27 +02:00
|
|
|
// the default value is returned
|
2019-12-30 16:38:32 +01:00
|
|
|
// version with abbr
|
2020-03-19 07:06:37 +01:00
|
|
|
pub fn (fs mut FlagParser) string(name string, abbr byte, sdefault string, usage string) string {
|
2019-12-30 16:38:32 +01:00
|
|
|
value := fs.string_opt(name, abbr, usage) or {
|
|
|
|
return sdefault
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
|
|
|
return value
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-28 13:17:16 +02:00
|
|
|
pub fn (fs mut FlagParser) limit_free_args_to_at_least(n int) {
|
|
|
|
if n > MAX_ARGS_NUMBER {
|
2019-12-16 17:03:38 +01:00
|
|
|
panic('flag.limit_free_args_to_at_least expect n to be smaller than $MAX_ARGS_NUMBER')
|
|
|
|
}
|
2019-09-28 13:17:16 +02:00
|
|
|
if n <= 0 {
|
2019-12-16 17:03:38 +01:00
|
|
|
panic('flag.limit_free_args_to_at_least expect n to be a positive number')
|
|
|
|
}
|
|
|
|
fs.min_free_args = n
|
2019-09-28 13:17:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (fs mut FlagParser) limit_free_args_to_exactly(n int) {
|
|
|
|
if n > MAX_ARGS_NUMBER {
|
2019-12-16 17:03:38 +01:00
|
|
|
panic('flag.limit_free_args_to_exactly expect n to be smaller than $MAX_ARGS_NUMBER')
|
|
|
|
}
|
2019-09-28 13:17:16 +02:00
|
|
|
if n < 0 {
|
2019-12-16 17:03:38 +01:00
|
|
|
panic('flag.limit_free_args_to_exactly expect n to be a non negative number')
|
|
|
|
}
|
|
|
|
fs.min_free_args = n
|
|
|
|
fs.max_free_args = n
|
2019-09-28 13:17:16 +02:00
|
|
|
}
|
|
|
|
|
2019-08-05 07:50:24 +02:00
|
|
|
// this will cause an error in finalize() if free args are out of range
|
|
|
|
// (min, ..., max)
|
|
|
|
pub fn (fs mut FlagParser) limit_free_args(min, max int) {
|
2019-12-16 17:03:38 +01:00
|
|
|
if min > max {
|
|
|
|
panic('flag.limit_free_args expect min < max, got $min >= $max')
|
|
|
|
}
|
|
|
|
fs.min_free_args = min
|
|
|
|
fs.max_free_args = max
|
2019-08-05 07:50:24 +02:00
|
|
|
}
|
|
|
|
|
2019-09-28 13:17:16 +02:00
|
|
|
pub fn (fs mut FlagParser) arguments_description(description string){
|
2019-12-16 17:03:38 +01:00
|
|
|
fs.args_description = description
|
2019-09-28 13:17:16 +02:00
|
|
|
}
|
2019-07-12 15:47:27 +02:00
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
// collect all given information and
|
2019-07-12 15:47:27 +02:00
|
|
|
pub fn (fs FlagParser) usage() string {
|
2019-09-28 13:17:16 +02:00
|
|
|
|
2019-12-16 17:03:38 +01:00
|
|
|
positive_min_arg := ( fs.min_free_args > 0 )
|
|
|
|
positive_max_arg := ( fs.max_free_args > 0 && fs.max_free_args != MAX_ARGS_NUMBER )
|
|
|
|
no_arguments := ( fs.min_free_args == 0 && fs.max_free_args == 0 )
|
|
|
|
|
|
|
|
mut adesc := if fs.args_description.len > 0 { fs.args_description } else { '[ARGS]' }
|
|
|
|
if no_arguments { adesc = '' }
|
|
|
|
|
|
|
|
mut use := ''
|
2019-12-30 05:21:22 +01:00
|
|
|
if fs.application_version != '' {
|
|
|
|
use += '$fs.application_name $fs.application_version\n'
|
|
|
|
use += '$UNDERLINE\n'
|
|
|
|
}
|
2019-12-16 17:03:38 +01:00
|
|
|
use += 'Usage: ${fs.application_name} [options] $adesc\n'
|
|
|
|
use += '\n'
|
|
|
|
if fs.application_description != '' {
|
|
|
|
use += 'Description:\n'
|
|
|
|
use += '$fs.application_description'
|
|
|
|
use += '\n\n'
|
|
|
|
}
|
|
|
|
|
|
|
|
// show a message about the [ARGS]:
|
|
|
|
if positive_min_arg || positive_max_arg || no_arguments {
|
|
|
|
if no_arguments {
|
|
|
|
use += 'This application does not expect any arguments\n\n'
|
|
|
|
goto end_of_arguments_handling
|
|
|
|
}
|
2020-04-26 13:49:31 +02:00
|
|
|
mut s:= []string{}
|
2019-12-16 17:03:38 +01:00
|
|
|
if positive_min_arg { s << 'at least $fs.min_free_args' }
|
|
|
|
if positive_max_arg { s << 'at most $fs.max_free_args' }
|
|
|
|
if positive_min_arg && positive_max_arg && fs.min_free_args == fs.max_free_args {
|
|
|
|
s = ['exactly $fs.min_free_args']
|
|
|
|
}
|
|
|
|
sargs := s.join(' and ')
|
|
|
|
use += 'The arguments should be $sargs in number.\n\n'
|
|
|
|
}
|
|
|
|
end_of_arguments_handling:
|
|
|
|
|
|
|
|
if fs.flags.len > 0 {
|
|
|
|
use += 'Options:\n'
|
|
|
|
for f in fs.flags {
|
2020-04-27 22:53:26 +02:00
|
|
|
mut onames := []string{}
|
2019-12-30 16:38:32 +01:00
|
|
|
if f.abbr != 0 {
|
|
|
|
onames << '-${f.abbr.str()}'
|
2019-12-30 05:21:22 +01:00
|
|
|
}
|
2019-12-30 16:38:32 +01:00
|
|
|
if f.name != '' {
|
|
|
|
if !f.val_desc.contains('<bool>') {
|
|
|
|
onames << '--${f.name} $f.val_desc'
|
|
|
|
}else{
|
|
|
|
onames << '--${f.name}'
|
|
|
|
}
|
2019-12-30 05:21:22 +01:00
|
|
|
}
|
2019-12-30 16:38:32 +01:00
|
|
|
option_names := ' ' + onames.join(', ')
|
2020-04-11 16:24:21 +02:00
|
|
|
mut xspace := ''
|
2020-04-08 18:49:32 +02:00
|
|
|
if option_names.len > space.len-2 {
|
|
|
|
xspace = '\n${space}'
|
2019-12-16 17:03:38 +01:00
|
|
|
} else {
|
2020-04-08 18:49:32 +02:00
|
|
|
xspace = space[option_names.len..]
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
2020-04-08 18:49:32 +02:00
|
|
|
use += '${option_names}${xspace}${f.usage}\n'
|
2019-12-16 17:03:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return use
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// finalize argument parsing -> call after all arguments are defined
|
|
|
|
//
|
|
|
|
// all remaining arguments are returned in the same order they are defined on
|
2019-09-14 22:54:14 +02:00
|
|
|
// command line
|
2019-07-12 15:47:27 +02:00
|
|
|
//
|
2019-12-16 17:03:38 +01:00
|
|
|
// if additional flag are found (things starting with '--') an error is returned
|
2019-07-12 15:47:27 +02:00
|
|
|
// error handling is up to the application developer
|
|
|
|
pub fn (fs FlagParser) finalize() ?[]string {
|
2019-12-16 17:03:38 +01:00
|
|
|
for a in fs.args {
|
|
|
|
if a.len >= 2 && a[..2] == '--' {
|
|
|
|
return error('Unknown argument \'${a[2..]}\'')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if fs.args.len < fs.min_free_args && fs.min_free_args > 0 {
|
|
|
|
return error('Expected at least ${fs.min_free_args} arguments, but given $fs.args.len')
|
|
|
|
}
|
|
|
|
if fs.args.len > fs.max_free_args && fs.max_free_args > 0 {
|
|
|
|
return error('Expected at most ${fs.max_free_args} arguments, but given $fs.args.len')
|
|
|
|
}
|
|
|
|
if fs.args.len > 0 && fs.max_free_args == 0 && fs.min_free_args == 0 {
|
|
|
|
return error('Expected no arguments, but given $fs.args.len')
|
|
|
|
}
|
|
|
|
return fs.args
|
2019-07-12 15:47:27 +02:00
|
|
|
}
|