-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.go
64 lines (53 loc) · 887 Bytes
/
options.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
*
* @author liangjf
* @create on 2020/5/9
* @version 1.0
*/
package gglog
import (
"context"
"github.com/liangjfblue/gglog/vlog"
)
type Options struct {
Name string
Log vlog.Log
Before []func()
After []func()
Context context.Context
}
func newOptions(opts ...Option) Options {
opt := Options{
Log: DefaultLog,
Context: context.Background(),
}
for _, o := range opts {
o(&opt)
}
return opt
}
func Name(name string) Option {
return func(o *Options) {
o.Name = name
}
}
func Log(log vlog.Log) Option {
return func(o *Options) {
o.Log = log
}
}
func Context(ctx context.Context) Option {
return func(o *Options) {
o.Context = ctx
}
}
func Before(fn func()) Option {
return func(o *Options) {
o.Before = append(o.Before, fn)
}
}
func After(fn func()) Option {
return func(o *Options) {
o.After = append(o.After, fn)
}
}