This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
example.go
99 lines (84 loc) · 2.49 KB
/
example.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
/*
Copyright NetFoundry Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package xctrl_example
import (
"bytes"
"encoding/binary"
"errors"
"github.com/michaelquigley/pfxlog"
"github.com/openziti/channel/v2"
"github.com/openziti/fabric/controller/xctrl"
"github.com/openziti/storage/boltz"
"github.com/sirupsen/logrus"
"time"
)
type example struct {
count int32
delay int
enabled bool
}
func NewExample() xctrl.Xctrl {
return &example{delay: 1, enabled: false}
}
func (example *example) LoadConfig(cfgmap map[interface{}]interface{}) error {
if value, found := cfgmap["example"]; found {
if submap, ok := value.(map[interface{}]interface{}); ok {
if value, found := submap["delay"]; found {
delay, ok := value.(int)
if !ok {
return errors.New("expected int value for [example/delay]")
}
example.delay = delay
}
}
example.enabled = true
}
return nil
}
func (example *example) Enabled() bool {
return example.enabled
}
func (example *example) BindChannel(binding channel.Binding) error {
binding.AddTypedReceiveHandler(newReceiveHandler())
return nil
}
func (example *example) Run(ctrl channel.Channel, _ boltz.Db, done chan struct{}) error {
go func() {
for {
select {
case <-done:
pfxlog.Logger().Infof("exiting")
return
case <-time.After(time.Duration(example.delay) * time.Second):
body := new(bytes.Buffer)
if err := binary.Write(body, binary.LittleEndian, example.count); err != nil {
pfxlog.Logger().Errorf("unexpected error marshaling (%s)", err)
}
msg := channel.NewMessage(contentType, body.Bytes())
if err := ctrl.Send(msg); err != nil {
pfxlog.Logger().Errorf("unexpected error sending (%s)", err)
}
pfxlog.Logger().Infof("sent [%d]", example.count)
example.count++
}
}
}()
return nil
}
func (example *example) NotifyOfReconnect(channel.Channel) {
logrus.Info("control channel reconnected")
}
func (example *example) GetTraceDecoders() []channel.TraceMessageDecoder {
return nil
}
const contentType = 99999