1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
ferret/pkg/runtime/options.go

76 lines
1.4 KiB
Go
Raw Normal View History

2018-09-18 22:42:38 +02:00
package runtime
2018-09-28 06:28:33 +02:00
import (
"context"
"io"
"os"
2018-09-29 03:04:16 +02:00
"github.com/MontFerret/ferret/pkg/runtime/core"
2018-09-28 06:28:33 +02:00
"github.com/MontFerret/ferret/pkg/runtime/logging"
2018-09-29 03:04:16 +02:00
"github.com/MontFerret/ferret/pkg/runtime/values"
2018-09-28 06:28:33 +02:00
)
2018-09-18 22:42:38 +02:00
type (
Options struct {
params map[string]core.Value
logging logging.Options
2018-09-18 22:42:38 +02:00
}
Option func(*Options)
)
func NewOptions(setters []Option) *Options {
opts := &Options{
2018-09-29 03:04:16 +02:00
params: make(map[string]core.Value),
logging: logging.Options{
2018-09-29 03:04:16 +02:00
Writer: os.Stdout,
Level: logging.ErrorLevel,
},
2018-09-18 22:42:38 +02:00
}
for _, setter := range setters {
setter(opts)
}
return opts
2018-09-18 22:42:38 +02:00
}
func WithParam(name string, value interface{}) Option {
return func(options *Options) {
2018-09-29 03:04:16 +02:00
options.params[name] = values.Parse(value)
}
}
func WithParams(params map[string]interface{}) Option {
return func(options *Options) {
for name, value := range params {
options.params[name] = values.Parse(value)
}
2018-09-18 22:42:38 +02:00
}
}
2018-09-28 06:28:33 +02:00
func WithLog(writer io.Writer) Option {
return func(options *Options) {
2018-09-29 03:04:16 +02:00
options.logging.Writer = writer
2018-09-28 06:28:33 +02:00
}
}
func WithLogLevel(lvl logging.Level) Option {
return func(options *Options) {
2018-09-29 03:04:16 +02:00
options.logging.Level = lvl
2018-09-28 06:28:33 +02:00
}
}
func WithLogFields(fields map[string]interface{}) Option {
return func(options *Options) {
options.logging.Fields = fields
}
}
2018-10-18 04:57:36 +02:00
func (opts *Options) WithContext(parent context.Context) context.Context {
2018-09-29 03:04:16 +02:00
ctx := core.ParamsWith(parent, opts.params)
ctx = logging.WithContext(ctx, opts.logging)
2018-09-28 06:28:33 +02:00
return ctx
2018-09-18 22:42:38 +02:00
}