Files
ziti/controller/xctrl_example/example.go
T
Paul Lorenz ae806045b5 Convert self-describing receive handlers to channel/v5. For #3983
- channel.TypedReceiveHandler -> channel.ContentTypeReceiver
- binding.AddTypedReceiveHandler(h) -> channel.AddReceiveHandlers(binding, h)

channel/v5 repurposes TypedReceiveHandler for the senders-typed handler and replaces the
self-describing pattern with ContentTypeReceiver plus the AddReceiveHandlers free function
(openziti/channel#262). Mechanical conversion; does not build on its own.
2026-06-18 12:51:02 -04:00

101 lines
2.5 KiB
Go

/*
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"
"time"
"github.com/michaelquigley/pfxlog"
"github.com/openziti/channel/v5"
"github.com/openziti/ziti/v2/controller/storage/boltz"
"github.com/openziti/ziti/v2/controller/xctrl"
"github.com/sirupsen/logrus"
)
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 {
channel.AddReceiveHandlers(binding, 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