2017-04-29 04:19:30 +00:00
|
|
|
package kingpin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"regexp"
|
|
|
|
"strconv"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// This file is autogenerated by "go generate .". Do not modify.
|
|
|
|
|
|
|
|
// -- bool Value
|
|
|
|
type boolValue struct{ v *bool }
|
|
|
|
|
|
|
|
func newBoolValue(p *bool) *boolValue {
|
|
|
|
return &boolValue{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *boolValue) Set(s string) error {
|
|
|
|
v, err := strconv.ParseBool(s)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (bool)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *boolValue) Get() interface{} { return (bool)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *boolValue) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Bool parses the next command-line value as bool.
|
|
|
|
func (p *parserMixin) Bool() (target *bool) {
|
|
|
|
target = new(bool)
|
|
|
|
p.BoolVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) BoolVar(target *bool) {
|
|
|
|
p.SetValue(newBoolValue(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// BoolList accumulates bool values into a slice.
|
|
|
|
func (p *parserMixin) BoolList() (target *[]bool) {
|
|
|
|
target = new([]bool)
|
|
|
|
p.BoolListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) BoolListVar(target *[]bool) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newBoolValue(v.(*bool))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- string Value
|
|
|
|
type stringValue struct{ v *string }
|
|
|
|
|
|
|
|
func newStringValue(p *string) *stringValue {
|
|
|
|
return &stringValue{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *stringValue) Set(s string) error {
|
|
|
|
v, err := s, error(nil)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (string)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *stringValue) Get() interface{} { return (string)(*f.v) }
|
|
|
|
|
|
|
|
func (f *stringValue) String() string { return string(*f.v) }
|
|
|
|
|
|
|
|
// String parses the next command-line value as string.
|
|
|
|
func (p *parserMixin) String() (target *string) {
|
|
|
|
target = new(string)
|
|
|
|
p.StringVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) StringVar(target *string) {
|
|
|
|
p.SetValue(newStringValue(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Strings accumulates string values into a slice.
|
|
|
|
func (p *parserMixin) Strings() (target *[]string) {
|
|
|
|
target = new([]string)
|
|
|
|
p.StringsVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) StringsVar(target *[]string) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newStringValue(v.(*string))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- uint Value
|
|
|
|
type uintValue struct{ v *uint }
|
|
|
|
|
|
|
|
func newUintValue(p *uint) *uintValue {
|
|
|
|
return &uintValue{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *uintValue) Set(s string) error {
|
|
|
|
v, err := strconv.ParseUint(s, 0, 64)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (uint)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *uintValue) Get() interface{} { return (uint)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *uintValue) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Uint parses the next command-line value as uint.
|
|
|
|
func (p *parserMixin) Uint() (target *uint) {
|
|
|
|
target = new(uint)
|
|
|
|
p.UintVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) UintVar(target *uint) {
|
|
|
|
p.SetValue(newUintValue(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uints accumulates uint values into a slice.
|
|
|
|
func (p *parserMixin) Uints() (target *[]uint) {
|
|
|
|
target = new([]uint)
|
|
|
|
p.UintsVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) UintsVar(target *[]uint) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newUintValue(v.(*uint))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- uint8 Value
|
|
|
|
type uint8Value struct{ v *uint8 }
|
|
|
|
|
|
|
|
func newUint8Value(p *uint8) *uint8Value {
|
|
|
|
return &uint8Value{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *uint8Value) Set(s string) error {
|
|
|
|
v, err := strconv.ParseUint(s, 0, 8)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (uint8)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *uint8Value) Get() interface{} { return (uint8)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *uint8Value) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Uint8 parses the next command-line value as uint8.
|
|
|
|
func (p *parserMixin) Uint8() (target *uint8) {
|
|
|
|
target = new(uint8)
|
|
|
|
p.Uint8Var(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Uint8Var(target *uint8) {
|
|
|
|
p.SetValue(newUint8Value(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uint8List accumulates uint8 values into a slice.
|
|
|
|
func (p *parserMixin) Uint8List() (target *[]uint8) {
|
|
|
|
target = new([]uint8)
|
|
|
|
p.Uint8ListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Uint8ListVar(target *[]uint8) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newUint8Value(v.(*uint8))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- uint16 Value
|
|
|
|
type uint16Value struct{ v *uint16 }
|
|
|
|
|
|
|
|
func newUint16Value(p *uint16) *uint16Value {
|
|
|
|
return &uint16Value{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *uint16Value) Set(s string) error {
|
|
|
|
v, err := strconv.ParseUint(s, 0, 16)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (uint16)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *uint16Value) Get() interface{} { return (uint16)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *uint16Value) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Uint16 parses the next command-line value as uint16.
|
|
|
|
func (p *parserMixin) Uint16() (target *uint16) {
|
|
|
|
target = new(uint16)
|
|
|
|
p.Uint16Var(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Uint16Var(target *uint16) {
|
|
|
|
p.SetValue(newUint16Value(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uint16List accumulates uint16 values into a slice.
|
|
|
|
func (p *parserMixin) Uint16List() (target *[]uint16) {
|
|
|
|
target = new([]uint16)
|
|
|
|
p.Uint16ListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Uint16ListVar(target *[]uint16) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newUint16Value(v.(*uint16))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- uint32 Value
|
|
|
|
type uint32Value struct{ v *uint32 }
|
|
|
|
|
|
|
|
func newUint32Value(p *uint32) *uint32Value {
|
|
|
|
return &uint32Value{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *uint32Value) Set(s string) error {
|
|
|
|
v, err := strconv.ParseUint(s, 0, 32)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (uint32)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *uint32Value) Get() interface{} { return (uint32)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *uint32Value) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Uint32 parses the next command-line value as uint32.
|
|
|
|
func (p *parserMixin) Uint32() (target *uint32) {
|
|
|
|
target = new(uint32)
|
|
|
|
p.Uint32Var(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Uint32Var(target *uint32) {
|
|
|
|
p.SetValue(newUint32Value(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uint32List accumulates uint32 values into a slice.
|
|
|
|
func (p *parserMixin) Uint32List() (target *[]uint32) {
|
|
|
|
target = new([]uint32)
|
|
|
|
p.Uint32ListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Uint32ListVar(target *[]uint32) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newUint32Value(v.(*uint32))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- uint64 Value
|
|
|
|
type uint64Value struct{ v *uint64 }
|
|
|
|
|
|
|
|
func newUint64Value(p *uint64) *uint64Value {
|
|
|
|
return &uint64Value{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *uint64Value) Set(s string) error {
|
|
|
|
v, err := strconv.ParseUint(s, 0, 64)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (uint64)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *uint64Value) Get() interface{} { return (uint64)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *uint64Value) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Uint64 parses the next command-line value as uint64.
|
|
|
|
func (p *parserMixin) Uint64() (target *uint64) {
|
|
|
|
target = new(uint64)
|
|
|
|
p.Uint64Var(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Uint64Var(target *uint64) {
|
|
|
|
p.SetValue(newUint64Value(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uint64List accumulates uint64 values into a slice.
|
|
|
|
func (p *parserMixin) Uint64List() (target *[]uint64) {
|
|
|
|
target = new([]uint64)
|
|
|
|
p.Uint64ListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Uint64ListVar(target *[]uint64) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newUint64Value(v.(*uint64))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- int Value
|
|
|
|
type intValue struct{ v *int }
|
|
|
|
|
|
|
|
func newIntValue(p *int) *intValue {
|
|
|
|
return &intValue{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *intValue) Set(s string) error {
|
|
|
|
v, err := strconv.ParseFloat(s, 64)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (int)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *intValue) Get() interface{} { return (int)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *intValue) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Int parses the next command-line value as int.
|
|
|
|
func (p *parserMixin) Int() (target *int) {
|
|
|
|
target = new(int)
|
|
|
|
p.IntVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) IntVar(target *int) {
|
|
|
|
p.SetValue(newIntValue(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ints accumulates int values into a slice.
|
|
|
|
func (p *parserMixin) Ints() (target *[]int) {
|
|
|
|
target = new([]int)
|
|
|
|
p.IntsVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) IntsVar(target *[]int) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newIntValue(v.(*int))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- int8 Value
|
|
|
|
type int8Value struct{ v *int8 }
|
|
|
|
|
|
|
|
func newInt8Value(p *int8) *int8Value {
|
|
|
|
return &int8Value{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *int8Value) Set(s string) error {
|
|
|
|
v, err := strconv.ParseInt(s, 0, 8)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (int8)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *int8Value) Get() interface{} { return (int8)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *int8Value) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Int8 parses the next command-line value as int8.
|
|
|
|
func (p *parserMixin) Int8() (target *int8) {
|
|
|
|
target = new(int8)
|
|
|
|
p.Int8Var(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Int8Var(target *int8) {
|
|
|
|
p.SetValue(newInt8Value(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Int8List accumulates int8 values into a slice.
|
|
|
|
func (p *parserMixin) Int8List() (target *[]int8) {
|
|
|
|
target = new([]int8)
|
|
|
|
p.Int8ListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Int8ListVar(target *[]int8) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newInt8Value(v.(*int8))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- int16 Value
|
|
|
|
type int16Value struct{ v *int16 }
|
|
|
|
|
|
|
|
func newInt16Value(p *int16) *int16Value {
|
|
|
|
return &int16Value{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *int16Value) Set(s string) error {
|
|
|
|
v, err := strconv.ParseInt(s, 0, 16)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (int16)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *int16Value) Get() interface{} { return (int16)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *int16Value) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Int16 parses the next command-line value as int16.
|
|
|
|
func (p *parserMixin) Int16() (target *int16) {
|
|
|
|
target = new(int16)
|
|
|
|
p.Int16Var(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Int16Var(target *int16) {
|
|
|
|
p.SetValue(newInt16Value(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Int16List accumulates int16 values into a slice.
|
|
|
|
func (p *parserMixin) Int16List() (target *[]int16) {
|
|
|
|
target = new([]int16)
|
|
|
|
p.Int16ListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Int16ListVar(target *[]int16) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newInt16Value(v.(*int16))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- int32 Value
|
|
|
|
type int32Value struct{ v *int32 }
|
|
|
|
|
|
|
|
func newInt32Value(p *int32) *int32Value {
|
|
|
|
return &int32Value{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *int32Value) Set(s string) error {
|
|
|
|
v, err := strconv.ParseInt(s, 0, 32)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (int32)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *int32Value) Get() interface{} { return (int32)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *int32Value) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Int32 parses the next command-line value as int32.
|
|
|
|
func (p *parserMixin) Int32() (target *int32) {
|
|
|
|
target = new(int32)
|
|
|
|
p.Int32Var(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Int32Var(target *int32) {
|
|
|
|
p.SetValue(newInt32Value(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Int32List accumulates int32 values into a slice.
|
|
|
|
func (p *parserMixin) Int32List() (target *[]int32) {
|
|
|
|
target = new([]int32)
|
|
|
|
p.Int32ListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Int32ListVar(target *[]int32) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newInt32Value(v.(*int32))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- int64 Value
|
|
|
|
type int64Value struct{ v *int64 }
|
|
|
|
|
|
|
|
func newInt64Value(p *int64) *int64Value {
|
|
|
|
return &int64Value{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *int64Value) Set(s string) error {
|
|
|
|
v, err := strconv.ParseInt(s, 0, 64)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (int64)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *int64Value) Get() interface{} { return (int64)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *int64Value) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Int64 parses the next command-line value as int64.
|
|
|
|
func (p *parserMixin) Int64() (target *int64) {
|
|
|
|
target = new(int64)
|
|
|
|
p.Int64Var(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Int64Var(target *int64) {
|
|
|
|
p.SetValue(newInt64Value(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Int64List accumulates int64 values into a slice.
|
|
|
|
func (p *parserMixin) Int64List() (target *[]int64) {
|
|
|
|
target = new([]int64)
|
|
|
|
p.Int64ListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Int64ListVar(target *[]int64) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newInt64Value(v.(*int64))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- float64 Value
|
|
|
|
type float64Value struct{ v *float64 }
|
|
|
|
|
|
|
|
func newFloat64Value(p *float64) *float64Value {
|
|
|
|
return &float64Value{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *float64Value) Set(s string) error {
|
|
|
|
v, err := strconv.ParseFloat(s, 64)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (float64)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *float64Value) Get() interface{} { return (float64)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *float64Value) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Float64 parses the next command-line value as float64.
|
|
|
|
func (p *parserMixin) Float64() (target *float64) {
|
|
|
|
target = new(float64)
|
|
|
|
p.Float64Var(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Float64Var(target *float64) {
|
|
|
|
p.SetValue(newFloat64Value(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Float64List accumulates float64 values into a slice.
|
|
|
|
func (p *parserMixin) Float64List() (target *[]float64) {
|
|
|
|
target = new([]float64)
|
|
|
|
p.Float64ListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Float64ListVar(target *[]float64) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newFloat64Value(v.(*float64))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- float32 Value
|
|
|
|
type float32Value struct{ v *float32 }
|
|
|
|
|
|
|
|
func newFloat32Value(p *float32) *float32Value {
|
|
|
|
return &float32Value{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *float32Value) Set(s string) error {
|
|
|
|
v, err := strconv.ParseFloat(s, 32)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (float32)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *float32Value) Get() interface{} { return (float32)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *float32Value) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Float32 parses the next command-line value as float32.
|
|
|
|
func (p *parserMixin) Float32() (target *float32) {
|
|
|
|
target = new(float32)
|
|
|
|
p.Float32Var(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Float32Var(target *float32) {
|
|
|
|
p.SetValue(newFloat32Value(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Float32List accumulates float32 values into a slice.
|
|
|
|
func (p *parserMixin) Float32List() (target *[]float32) {
|
|
|
|
target = new([]float32)
|
|
|
|
p.Float32ListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) Float32ListVar(target *[]float32) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newFloat32Value(v.(*float32))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// DurationList accumulates time.Duration values into a slice.
|
|
|
|
func (p *parserMixin) DurationList() (target *[]time.Duration) {
|
|
|
|
target = new([]time.Duration)
|
|
|
|
p.DurationListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) DurationListVar(target *[]time.Duration) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newDurationValue(v.(*time.Duration))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// IPList accumulates net.IP values into a slice.
|
|
|
|
func (p *parserMixin) IPList() (target *[]net.IP) {
|
|
|
|
target = new([]net.IP)
|
|
|
|
p.IPListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) IPListVar(target *[]net.IP) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newIPValue(v.(*net.IP))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// TCPList accumulates *net.TCPAddr values into a slice.
|
|
|
|
func (p *parserMixin) TCPList() (target *[]*net.TCPAddr) {
|
|
|
|
target = new([]*net.TCPAddr)
|
|
|
|
p.TCPListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) TCPListVar(target *[]*net.TCPAddr) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newTCPAddrValue(v.(**net.TCPAddr))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExistingFiles accumulates string values into a slice.
|
|
|
|
func (p *parserMixin) ExistingFiles() (target *[]string) {
|
|
|
|
target = new([]string)
|
|
|
|
p.ExistingFilesVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) ExistingFilesVar(target *[]string) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newExistingFileValue(v.(*string))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExistingDirs accumulates string values into a slice.
|
|
|
|
func (p *parserMixin) ExistingDirs() (target *[]string) {
|
|
|
|
target = new([]string)
|
|
|
|
p.ExistingDirsVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) ExistingDirsVar(target *[]string) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newExistingDirValue(v.(*string))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExistingFilesOrDirs accumulates string values into a slice.
|
|
|
|
func (p *parserMixin) ExistingFilesOrDirs() (target *[]string) {
|
|
|
|
target = new([]string)
|
|
|
|
p.ExistingFilesOrDirsVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) ExistingFilesOrDirsVar(target *[]string) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newExistingFileOrDirValue(v.(*string))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- *regexp.Regexp Value
|
|
|
|
type regexpValue struct{ v **regexp.Regexp }
|
|
|
|
|
|
|
|
func newRegexpValue(p **regexp.Regexp) *regexpValue {
|
|
|
|
return ®expValue{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *regexpValue) Set(s string) error {
|
|
|
|
v, err := regexp.Compile(s)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (*regexp.Regexp)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *regexpValue) Get() interface{} { return (*regexp.Regexp)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *regexpValue) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Regexp parses the next command-line value as *regexp.Regexp.
|
|
|
|
func (p *parserMixin) Regexp() (target **regexp.Regexp) {
|
|
|
|
target = new(*regexp.Regexp)
|
|
|
|
p.RegexpVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) RegexpVar(target **regexp.Regexp) {
|
|
|
|
p.SetValue(newRegexpValue(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegexpList accumulates *regexp.Regexp values into a slice.
|
|
|
|
func (p *parserMixin) RegexpList() (target *[]*regexp.Regexp) {
|
|
|
|
target = new([]*regexp.Regexp)
|
|
|
|
p.RegexpListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) RegexpListVar(target *[]*regexp.Regexp) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newRegexpValue(v.(**regexp.Regexp))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- net.IP Value
|
|
|
|
type resolvedIPValue struct{ v *net.IP }
|
|
|
|
|
|
|
|
func newResolvedIPValue(p *net.IP) *resolvedIPValue {
|
|
|
|
return &resolvedIPValue{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *resolvedIPValue) Set(s string) error {
|
|
|
|
v, err := resolveHost(s)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = (net.IP)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *resolvedIPValue) Get() interface{} { return (net.IP)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *resolvedIPValue) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Resolve a hostname or IP to an IP.
|
|
|
|
func (p *parserMixin) ResolvedIP() (target *net.IP) {
|
|
|
|
target = new(net.IP)
|
|
|
|
p.ResolvedIPVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) ResolvedIPVar(target *net.IP) {
|
|
|
|
p.SetValue(newResolvedIPValue(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResolvedIPList accumulates net.IP values into a slice.
|
|
|
|
func (p *parserMixin) ResolvedIPList() (target *[]net.IP) {
|
|
|
|
target = new([]net.IP)
|
|
|
|
p.ResolvedIPListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) ResolvedIPListVar(target *[]net.IP) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newResolvedIPValue(v.(*net.IP))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- []byte Value
|
|
|
|
type hexBytesValue struct{ v *[]byte }
|
|
|
|
|
|
|
|
func newHexBytesValue(p *[]byte) *hexBytesValue {
|
|
|
|
return &hexBytesValue{p}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *hexBytesValue) Set(s string) error {
|
|
|
|
v, err := hex.DecodeString(s)
|
|
|
|
if err == nil {
|
|
|
|
*f.v = ([]byte)(v)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *hexBytesValue) Get() interface{} { return ([]byte)(*f.v) }
|
|
|
|
|
2017-10-06 15:29:20 +00:00
|
|
|
func (f *hexBytesValue) String() string { return fmt.Sprintf("%v", *f.v) }
|
2017-04-29 04:19:30 +00:00
|
|
|
|
|
|
|
// Bytes as a hex string.
|
|
|
|
func (p *parserMixin) HexBytes() (target *[]byte) {
|
|
|
|
target = new([]byte)
|
|
|
|
p.HexBytesVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) HexBytesVar(target *[]byte) {
|
|
|
|
p.SetValue(newHexBytesValue(target))
|
|
|
|
}
|
|
|
|
|
|
|
|
// HexBytesList accumulates []byte values into a slice.
|
|
|
|
func (p *parserMixin) HexBytesList() (target *[][]byte) {
|
|
|
|
target = new([][]byte)
|
|
|
|
p.HexBytesListVar(target)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *parserMixin) HexBytesListVar(target *[][]byte) {
|
|
|
|
p.SetValue(newAccumulator(target, func(v interface{}) Value {
|
|
|
|
return newHexBytesValue(v.(*[]byte))
|
|
|
|
}))
|
|
|
|
}
|