micro/init/options.go

56 lines
1.0 KiB
Go
Raw Normal View History

2019-06-06 13:32:38 +03:00
package init
import (
"sync"
)
2019-06-06 13:46:13 +03:00
// Values holds the set of option values and protects them
type Values struct {
2019-06-06 13:32:38 +03:00
sync.RWMutex
values map[interface{}]interface{}
}
// Option gives access to options
2019-06-06 13:46:13 +03:00
type Option func(o *Values) error
2019-06-06 13:32:38 +03:00
// Get a value from options
2019-06-06 13:46:13 +03:00
func (o *Values) Get(k interface{}) (interface{}, bool) {
2019-06-06 13:32:38 +03:00
o.RLock()
defer o.RUnlock()
v, ok := o.values[k]
return v, ok
}
// Set a value in the options
2019-06-06 13:46:13 +03:00
func (o *Values) Set(k, v interface{}) error {
2019-06-06 13:32:38 +03:00
o.Lock()
defer o.Unlock()
if o.values == nil {
o.values = map[interface{}]interface{}{}
}
o.values[k] = v
return nil
}
// SetOption executes an option
2019-06-06 13:46:13 +03:00
func (o *Values) Option(op Option) error {
2019-06-06 13:32:38 +03:00
return op(o)
}
// WithValue allows you to set any value within the options
func WithValue(k, v interface{}) Option {
2019-06-06 13:46:13 +03:00
return func(o *Values) error {
return o.Set(k, v)
2019-06-06 13:32:38 +03:00
}
}
// WithOption gives you the ability to create an option that accesses values
func WithOption(o Option) Option {
return o
}
// String sets the string
func String(s string) Option {
return WithValue(stringKey{}, s)
}