-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpassthru.go
66 lines (59 loc) · 1.6 KB
/
passthru.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
package bus
import (
"github.com/aperturerobotics/controllerbus/directive"
)
// PassThruHandler is a reference handler that passes through to a resolver handler.
type PassThruHandler struct {
handler directive.ResolverHandler
idMapping map[uint32]uint32
disposeCb func()
}
// NewPassThruHandler builds a new pass-through handler.
func NewPassThruHandler(
passthru directive.ResolverHandler,
disposeCb func(),
) directive.ReferenceHandler {
return &PassThruHandler{
handler: passthru,
idMapping: make(map[uint32]uint32),
disposeCb: disposeCb,
}
}
// HandleValueAdded is called when a value is added to the directive.
func (h *PassThruHandler) HandleValueAdded(
_ directive.Instance,
v directive.AttachedValue,
) {
if h.handler != nil {
id, accepted := h.handler.AddValue(v.GetValue())
if accepted {
h.idMapping[v.GetValueID()] = id
}
}
}
// HandleValueRemoved is called when a value is removed from the directive.
func (h *PassThruHandler) HandleValueRemoved(
_ directive.Instance,
v directive.AttachedValue,
) {
if h.handler != nil {
mapping, ok := h.idMapping[v.GetValueID()]
if ok {
_, _ = h.handler.RemoveValue(mapping)
}
}
}
// HandleInstanceDisposed is called when a directive instance is disposed.
// This will occur if Close() is called on the directive instance.
func (h *PassThruHandler) HandleInstanceDisposed(di directive.Instance) {
if h.handler != nil {
for _, valID := range h.idMapping {
_, _ = h.handler.RemoveValue(valID)
}
}
if h.disposeCb != nil {
h.disposeCb()
}
}
// _ is a type assertion
var _ directive.ReferenceHandler = ((*PassThruHandler)(nil))