1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-04-17 11:06:19 +02:00
2021-10-12 12:55:53 +01:00

101 lines
1.8 KiB
Go

package configmap
import (
"errors"
"time"
"go-micro.dev/v4/config/source"
"k8s.io/client-go/1.5/kubernetes"
"k8s.io/client-go/1.5/pkg/api"
"k8s.io/client-go/1.5/pkg/fields"
"k8s.io/client-go/1.5/tools/cache"
)
type watcher struct {
opts source.Options
name string
namespace string
client *kubernetes.Clientset
st cache.Store
ct *cache.Controller
ch chan *source.ChangeSet
exit chan bool
stop chan struct{}
}
func newWatcher(n, ns string, c *kubernetes.Clientset, opts source.Options) (source.Watcher, error) {
w := &watcher{
opts: opts,
name: n,
namespace: ns,
client: c,
ch: make(chan *source.ChangeSet),
exit: make(chan bool),
stop: make(chan struct{}),
}
lw := cache.NewListWatchFromClient(w.client.CoreClient.RESTClient, "configmaps", w.namespace, fields.OneTermEqualSelector("metadata.name", w.name))
st, ct := cache.NewInformer(
lw,
&api.ConfigMap{},
time.Second*30,
cache.ResourceEventHandlerFuncs{
UpdateFunc: w.handle,
},
)
go ct.Run(w.stop)
w.ct = ct
w.st = st
return w, nil
}
func (w *watcher) handle(oldCmp interface{}, newCmp interface{}) {
if newCmp == nil {
return
}
data := makeMap(newCmp.(*api.ConfigMap).Data)
b, err := w.opts.Encoder.Encode(data)
if err != nil {
return
}
cs := &source.ChangeSet{
Format: w.opts.Encoder.String(),
Source: w.name,
Data: b,
Timestamp: newCmp.(*api.ConfigMap).CreationTimestamp.Time,
}
cs.Checksum = cs.Sum()
w.ch <- cs
}
// Next
func (w *watcher) Next() (*source.ChangeSet, error) {
select {
case cs := <-w.ch:
return cs, nil
case <-w.exit:
return nil, errors.New("watcher stopped")
}
}
// Stop
func (w *watcher) Stop() error {
select {
case <-w.exit:
return nil
case <-w.stop:
return nil
default:
close(w.exit)
}
return nil
}