-
Notifications
You must be signed in to change notification settings - Fork 8
/
builder.go
154 lines (117 loc) · 2.8 KB
/
builder.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package kcache
import (
"context"
"fmt"
"time"
lifecycle "github.com/boz/go-lifecycle"
logutil "github.com/boz/go-logutil"
"github.com/boz/kcache/client"
"github.com/boz/kcache/filter"
)
type Builder interface {
Context(context.Context) Builder
Log(logutil.Log) Builder
Filter(filter.Filter) Builder
Client(client.Client) Builder
Lister() ListerBuilder
Watcher() WatcherBuilder
Create() (Controller, error)
}
type ListerBuilder interface {
RefreshPeriod(time.Duration) ListerBuilder
Client(client.ListClient) ListerBuilder
}
type WatcherBuilder interface {
Client(client.WatchClient) WatcherBuilder
}
func NewBuilder() Builder {
return &builder{
filter: filter.Null(),
log: logutil.Default(),
ctx: context.Background(),
lb: newListerBuilder(),
wb: newWatcherBuilder(),
}
}
type builder struct {
client client.Client
log logutil.Log
ctx context.Context
filter filter.Filter
lb *listerBuilder
wb *watcherBuilder
}
func (b *builder) Context(ctx context.Context) Builder {
b.ctx = ctx
return b
}
func (b *builder) Log(log logutil.Log) Builder {
b.log = log
return b
}
func (b *builder) Filter(filter filter.Filter) Builder {
b.filter = filter
return b
}
func (b *builder) Client(client client.Client) Builder {
b.lb.Client(client)
b.wb.Client(client)
return b
}
func (b *builder) Lister() ListerBuilder {
return b.lb
}
func (b *builder) Watcher() WatcherBuilder {
return b.wb
}
func (b *builder) Create() (Controller, error) {
if b.log == nil {
return nil, fmt.Errorf("kcache builder: log required")
}
log := b.log.WithComponent("controller")
ctx := b.ctx
lc := lifecycle.New()
cache := newCache(ctx, log, lc.ShuttingDown(), b.filter)
readych := make(chan struct{})
subscription := newSubscription(log, lc.ShuttingDown(), readych, cache)
publisher := newPublisher(log, subscription)
c := &controller{
readych: readych,
subscription: subscription,
publisher: publisher,
lister: newLister(ctx, log, lc.ShuttingDown(), b.lb.period, b.lb.client),
watcher: newWatcher(ctx, log, lc.ShuttingDown(), b.wb.client),
cache: cache,
log: log,
lc: lc,
ctx: ctx,
}
go c.lc.WatchContext(c.ctx)
go c.run()
return c, nil
}
type listerBuilder struct {
client client.ListClient
period time.Duration
}
func newListerBuilder() *listerBuilder {
return &listerBuilder{period: defaultRefreshPeriod}
}
func (b *listerBuilder) RefreshPeriod(period time.Duration) ListerBuilder {
b.period = period
return b
}
func (b *listerBuilder) Client(client client.ListClient) ListerBuilder {
b.client = client
return b
}
type watcherBuilder struct {
client client.WatchClient
}
func newWatcherBuilder() *watcherBuilder {
return &watcherBuilder{}
}
func (b *watcherBuilder) Client(client client.WatchClient) WatcherBuilder {
b.client = client
return b
}