mirror of
https://github.com/aykhans/dodo.git
synced 2025-04-21 11:16:47 +00:00
Compare commits
2 Commits
39d366aadb
...
8d7aae4a61
Author | SHA1 | Date | |
---|---|---|---|
8d7aae4a61 | |||
0725c1a481 |
2
main.go
2
main.go
@ -81,7 +81,7 @@ func main() {
|
|||||||
Proxies: jsonConf.Proxies,
|
Proxies: jsonConf.Proxies,
|
||||||
Body: jsonConf.Body,
|
Body: jsonConf.Body,
|
||||||
Yes: cliConf.Yes,
|
Yes: cliConf.Yes,
|
||||||
NoProxyCheck: *conf.NoProxyCheck.ValueOrPanic(),
|
NoProxyCheck: conf.NoProxyCheck.ValueOrPanic(),
|
||||||
}
|
}
|
||||||
requestConf.Print()
|
requestConf.Print()
|
||||||
if !cliConf.Yes {
|
if !cliConf.Yes {
|
||||||
|
@ -5,20 +5,20 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
type NonNilConcrete interface {
|
type NonNilT interface {
|
||||||
~int | ~float64 | ~string | ~bool
|
~int | ~float64 | ~string | ~bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type Option[T NonNilConcrete] interface {
|
type Option[T NonNilT] interface {
|
||||||
IsNone() bool
|
IsNone() bool
|
||||||
ValueOrErr() (*T, error)
|
ValueOrErr() (T, error)
|
||||||
ValueOr(def *T) *T
|
ValueOr(def T) T
|
||||||
ValueOrPanic() *T
|
ValueOrPanic() T
|
||||||
UnmarshalJSON(data []byte) error
|
UnmarshalJSON(data []byte) error
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't call this struct directly, use NewOption[T] or NewNoneOption[T] instead.
|
// Don't call this struct directly, use NewOption[T] or NewNoneOption[T] instead.
|
||||||
type option[T NonNilConcrete] struct {
|
type option[T NonNilT] struct {
|
||||||
// value holds the actual value of the Option if it is not None.
|
// value holds the actual value of the Option if it is not None.
|
||||||
value T
|
value T
|
||||||
// none indicates whether the Option is None (i.e., has no value).
|
// none indicates whether the Option is None (i.e., has no value).
|
||||||
@ -29,28 +29,39 @@ func (o *option[T]) IsNone() bool {
|
|||||||
return o.none
|
return o.none
|
||||||
}
|
}
|
||||||
|
|
||||||
// The returned value can be nil, if the Option is None, it will return nil and an error.
|
// If the Option is None, it will return zero value of the type and an error.
|
||||||
func (o *option[T]) ValueOrErr() (*T, error) {
|
func (o *option[T]) ValueOrErr() (T, error) {
|
||||||
if o.IsNone() {
|
if o.IsNone() {
|
||||||
return nil, errors.New("Option is None")
|
return o.value, errors.New("Option is None")
|
||||||
}
|
}
|
||||||
return &o.value, nil
|
return o.value, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// The returned value can't be nil, if the Option is None, it will return the default value.
|
// If the Option is None, it will return the default value.
|
||||||
func (o *option[T]) ValueOr(def *T) *T {
|
func (o *option[T]) ValueOr(def T) T {
|
||||||
if o.IsNone() {
|
if o.IsNone() {
|
||||||
return def
|
return def
|
||||||
}
|
}
|
||||||
return &o.value
|
return o.value
|
||||||
}
|
}
|
||||||
|
|
||||||
// The returned value can't be nil, if the Option is None, it will panic.
|
// If the Option is None, it will panic.
|
||||||
func (o *option[T]) ValueOrPanic() *T {
|
func (o *option[T]) ValueOrPanic() T {
|
||||||
if o.IsNone() {
|
if o.IsNone() {
|
||||||
panic("Option is None")
|
panic("Option is None")
|
||||||
}
|
}
|
||||||
return &o.value
|
return o.value
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *option[T]) SetValue(value T) {
|
||||||
|
o.value = value
|
||||||
|
o.none = false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *option[T]) SetNone() {
|
||||||
|
var zeroValue T
|
||||||
|
o.value = zeroValue
|
||||||
|
o.none = true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (o *option[T]) UnmarshalJSON(data []byte) error {
|
func (o *option[T]) UnmarshalJSON(data []byte) error {
|
||||||
@ -62,10 +73,10 @@ func (o *option[T]) UnmarshalJSON(data []byte) error {
|
|||||||
return json.Unmarshal(data, &o.value)
|
return json.Unmarshal(data, &o.value)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewOption[T NonNilConcrete](value T) *option[T] {
|
func NewOption[T NonNilT](value T) *option[T] {
|
||||||
return &option[T]{value: value}
|
return &option[T]{value: value}
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewNoneOption[T NonNilConcrete]() *option[T] {
|
func NewNoneOption[T NonNilT]() *option[T] {
|
||||||
return &option[T]{none: true}
|
return &option[T]{none: true}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user