-
Notifications
You must be signed in to change notification settings - Fork 8
/
controller.go
92 lines (79 loc) · 2.41 KB
/
controller.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
package peer_controller
import (
"context"
"github.com/aperturerobotics/bifrost/peer"
"github.com/aperturerobotics/controllerbus/controller"
"github.com/aperturerobotics/controllerbus/directive"
"github.com/blang/semver"
"github.com/sirupsen/logrus"
)
// Version is the version of the controller implementation.
var Version = semver.MustParse("0.0.1")
// ControllerID is the ID of the controller.
const ControllerID = "bifrost/peer"
// Controller is the Peer controller.
// It implements peer.Peer as a controller.
// It implements a "localhost" loopback transport for the peer.
type Controller struct {
// Peer is the underlying peer
peer.Peer
// le is the root logger
le *logrus.Entry
}
// NewController constructs a new peer controller.
// If privKey is nil, one will be generated.
func NewController(le *logrus.Entry, p peer.Peer) *Controller {
return &Controller{
Peer: p,
le: le,
}
}
// Execute executes the controller goroutine.
// Returning nil ends execution.
// Returning an error triggers a retry with backoff.
func (c *Controller) Execute(ctx context.Context) error {
c.le.WithField("peer-id", c.GetPeerID().String()).Debug("peer mounted")
// TODO: loopback controller
return nil
}
// HandleDirective asks if the handler can resolve the directive.
// If it can, it returns a resolver. If not, returns nil.
// Any unexpected errors are returned for logging.
// It is safe to add a reference to the directive during this call.
func (c *Controller) HandleDirective(
ctx context.Context,
di directive.Instance,
) ([]directive.Resolver, error) {
dir := di.GetDirective()
switch d := dir.(type) {
case peer.GetPeer:
return c.resolveGetPeer(d), nil
}
return nil, nil
}
// GetControllerInfo returns information about the controller.
func (c *Controller) GetControllerInfo() *controller.Info {
return controller.NewInfo(
ControllerID,
Version,
"peer controller "+c.GetPeerID().String(),
)
}
// resolveGetPeer resolves the GetPeer directive
func (c *Controller) resolveGetPeer(d peer.GetPeer) []directive.Resolver {
res := peer.NewGetPeerResolver(d, c)
if res == nil {
return nil
}
return directive.Resolvers(res)
}
// Close releases any resources used by the controller.
// Error indicates any issue encountered releasing.
func (c *Controller) Close() error {
return nil
}
// _ is a type assertion
var (
_ controller.Controller = ((*Controller)(nil))
_ peer.Peer = ((*Controller)(nil))
)