2018-09-18 22:42:38 +02:00
|
|
|
package runtime
|
|
|
|
|
2018-09-28 06:28:33 +02:00
|
|
|
import (
|
|
|
|
"context"
|
2018-12-01 02:30:55 +02:00
|
|
|
"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 {
|
2018-12-01 02:30:55 +02:00
|
|
|
params map[string]core.Value
|
2019-08-03 05:28:25 +02:00
|
|
|
logging logging.Options
|
2018-09-18 22:42:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Option func(*Options)
|
|
|
|
)
|
|
|
|
|
2018-12-01 02:30:55 +02:00
|
|
|
func NewOptions(setters []Option) *Options {
|
|
|
|
opts := &Options{
|
2018-09-29 03:04:16 +02:00
|
|
|
params: make(map[string]core.Value),
|
2019-08-03 05:28:25 +02:00
|
|
|
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
|
|
|
}
|
2018-12-01 02:30:55 +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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-03 05:28:25 +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
|
|
|
}
|