Documentation ¶
Overview ¶
Package router is a generated GoMock package.
Index ¶
- type ChainRouter
- func (cr *ChainRouter) AddChain(ctx context.Context, chain handler.Handler)
- func (cr *ChainRouter) Benched(chainID ids.ID, nodeID ids.NodeID)
- func (cr *ChainRouter) Connected(nodeID ids.NodeID, nodeVersion *version.Application, subnetID ids.ID)
- func (cr *ChainRouter) Disconnected(nodeID ids.NodeID)
- func (cr *ChainRouter) HandleInbound(ctx context.Context, msg message.InboundMessage)
- func (cr *ChainRouter) HealthCheck(context.Context) (interface{}, error)
- func (cr *ChainRouter) Initialize(nodeID ids.NodeID, log logging.Logger, timeoutManager timeout.Manager, ...) error
- func (cr *ChainRouter) RegisterRequest(ctx context.Context, nodeID ids.NodeID, requestingChainID ids.ID, ...)
- func (cr *ChainRouter) Shutdown(ctx context.Context)
- func (cr *ChainRouter) Unbenched(chainID ids.ID, nodeID ids.NodeID)
- type ExternalHandler
- type HealthConfig
- type InboundHandler
- type InboundHandlerFunc
- type InternalHandler
- type MockRouter
- func (m *MockRouter) AddChain(ctx context.Context, chain handler.Handler)
- func (m *MockRouter) Benched(chainID ids.ID, validatorID ids.NodeID)
- func (m *MockRouter) Connected(nodeID ids.NodeID, nodeVersion *version.Application, subnetID ids.ID)
- func (m *MockRouter) Disconnected(nodeID ids.NodeID)
- func (m *MockRouter) EXPECT() *MockRouterMockRecorder
- func (m *MockRouter) HandleInbound(arg0 context.Context, arg1 message.InboundMessage)
- func (m *MockRouter) HealthCheck(arg0 context.Context) (any, error)
- func (m *MockRouter) Initialize(nodeID ids.NodeID, log logging.Logger, timeouts timeout.Manager, ...) error
- func (m *MockRouter) RegisterRequest(ctx context.Context, nodeID ids.NodeID, ...)
- func (m *MockRouter) Shutdown(arg0 context.Context)
- func (m *MockRouter) Unbenched(chainID ids.ID, validatorID ids.NodeID)
- type MockRouterMockRecorder
- func (mr *MockRouterMockRecorder) AddChain(ctx, chain any) *gomock.Call
- func (mr *MockRouterMockRecorder) Benched(chainID, validatorID any) *gomock.Call
- func (mr *MockRouterMockRecorder) Connected(nodeID, nodeVersion, subnetID any) *gomock.Call
- func (mr *MockRouterMockRecorder) Disconnected(nodeID any) *gomock.Call
- func (mr *MockRouterMockRecorder) HandleInbound(arg0, arg1 any) *gomock.Call
- func (mr *MockRouterMockRecorder) HealthCheck(arg0 any) *gomock.Call
- func (mr *MockRouterMockRecorder) Initialize(...) *gomock.Call
- func (mr *MockRouterMockRecorder) RegisterRequest(...) *gomock.Call
- func (mr *MockRouterMockRecorder) Shutdown(arg0 any) *gomock.Call
- func (mr *MockRouterMockRecorder) Unbenched(chainID, validatorID any) *gomock.Call
- type Router
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChainRouter ¶
type ChainRouter struct {
// contains filtered or unexported fields
}
ChainRouter routes incoming messages from the validator network to the consensus engines that the messages are intended for. Note that consensus engines are uniquely identified by the ID of the chain that they are working on. Invariant: P-chain must be registered before processing any messages
func (*ChainRouter) AddChain ¶
func (cr *ChainRouter) AddChain(ctx context.Context, chain handler.Handler)
AddChain registers the specified chain so that incoming messages can be routed to it
func (*ChainRouter) Benched ¶
func (cr *ChainRouter) Benched(chainID ids.ID, nodeID ids.NodeID)
Benched routes an incoming notification that a validator was benched
func (*ChainRouter) Connected ¶
func (cr *ChainRouter) Connected(nodeID ids.NodeID, nodeVersion *version.Application, subnetID ids.ID)
Connected routes an incoming notification that a validator was just connected
func (*ChainRouter) Disconnected ¶
func (cr *ChainRouter) Disconnected(nodeID ids.NodeID)
Disconnected routes an incoming notification that a validator was connected
func (*ChainRouter) HandleInbound ¶
func (cr *ChainRouter) HandleInbound(ctx context.Context, msg message.InboundMessage)
func (*ChainRouter) HealthCheck ¶
func (cr *ChainRouter) HealthCheck(context.Context) (interface{}, error)
HealthCheck returns results of router health checks. Returns: 1) Information about health check results 2) An error if the health check reports unhealthy
func (*ChainRouter) Initialize ¶
func (cr *ChainRouter) Initialize( nodeID ids.NodeID, log logging.Logger, timeoutManager timeout.Manager, closeTimeout time.Duration, criticalChains set.Set[ids.ID], sybilProtectionEnabled bool, trackedSubnets set.Set[ids.ID], onFatal func(exitCode int), healthConfig HealthConfig, metricsNamespace string, metricsRegisterer prometheus.Registerer, ) error
Initialize the router.
When this router receives an incoming message, it cancels the timeout in [timeouts] associated with the request that caused the incoming message, if applicable.
func (*ChainRouter) RegisterRequest ¶
func (cr *ChainRouter) RegisterRequest( ctx context.Context, nodeID ids.NodeID, requestingChainID ids.ID, respondingChainID ids.ID, requestID uint32, op message.Op, timeoutMsg message.InboundMessage, engineType p2p.EngineType, )
RegisterRequest marks that we should expect to receive a reply for a request issued by [requestingChainID] from the given node's [respondingChainID] and the reply should have the given requestID.
The type of message we expect is [op].
Every registered request must be cleared either by receiving a valid reply and passing it to the appropriate chain or by a timeout. This method registers a timeout that calls such methods if we don't get a reply in time.
func (*ChainRouter) Shutdown ¶
func (cr *ChainRouter) Shutdown(ctx context.Context)
Shutdown shuts down this router
type ExternalHandler ¶
type ExternalHandler interface { InboundHandler Connected(nodeID ids.NodeID, nodeVersion *version.Application, subnetID ids.ID) Disconnected(nodeID ids.NodeID) }
ExternalHandler handles messages from external parties
type HealthConfig ¶
type HealthConfig struct { // Reports unhealthy if we drop more than [MaxDropRate] of messages MaxDropRate float64 `json:"maxDropRate"` // Halflife of averager used to calculate the message drop rate // Must be > 0. // Larger value --> Drop rate affected less by recent messages MaxDropRateHalflife time.Duration `json:"maxDropRateHalflife"` // Reports unhealthy if more than this number of requests are outstanding. // Must be > 0 MaxOutstandingRequests int `json:"maxOutstandingRequests"` // Reports unhealthy if there is a request outstanding for longer than this MaxOutstandingDuration time.Duration `json:"maxOutstandingDuration"` // Reports unhealthy if there is at least 1 outstanding not processed // before this mark MaxRunTimeRequests time.Duration `json:"maxRunTimeRequests"` }
HealthConfig describes parameters for router health checks.
type InboundHandler ¶
type InboundHandler interface {
HandleInbound(context.Context, message.InboundMessage)
}
InboundHandler handles inbound messages
type InboundHandlerFunc ¶
type InboundHandlerFunc func(context.Context, message.InboundMessage)
The ExternalRouterFunc type is an adapter to allow the use of ordinary functions as ExternalRouters. If f is a function with the appropriate signature, ExternalRouterFunc(f) is an ExternalRouter that calls f.
func (InboundHandlerFunc) HandleInbound ¶
func (f InboundHandlerFunc) HandleInbound(ctx context.Context, msg message.InboundMessage)
type InternalHandler ¶
type InternalHandler interface { benchlist.Benchable RegisterRequest( ctx context.Context, nodeID ids.NodeID, sourceChainID ids.ID, destinationChainID ids.ID, requestID uint32, op message.Op, failedMsg message.InboundMessage, engineType p2p.EngineType, ) }
InternalHandler deals with messages internal to this node
type MockRouter ¶
type MockRouter struct {
// contains filtered or unexported fields
}
MockRouter is a mock of Router interface.
func NewMockRouter ¶
func NewMockRouter(ctrl *gomock.Controller) *MockRouter
NewMockRouter creates a new mock instance.
func (*MockRouter) AddChain ¶
func (m *MockRouter) AddChain(ctx context.Context, chain handler.Handler)
AddChain mocks base method.
func (*MockRouter) Benched ¶
func (m *MockRouter) Benched(chainID ids.ID, validatorID ids.NodeID)
Benched mocks base method.
func (*MockRouter) Connected ¶
func (m *MockRouter) Connected(nodeID ids.NodeID, nodeVersion *version.Application, subnetID ids.ID)
Connected mocks base method.
func (*MockRouter) Disconnected ¶
func (m *MockRouter) Disconnected(nodeID ids.NodeID)
Disconnected mocks base method.
func (*MockRouter) EXPECT ¶
func (m *MockRouter) EXPECT() *MockRouterMockRecorder
EXPECT returns an object that allows the caller to indicate expected use.
func (*MockRouter) HandleInbound ¶
func (m *MockRouter) HandleInbound(arg0 context.Context, arg1 message.InboundMessage)
HandleInbound mocks base method.
func (*MockRouter) HealthCheck ¶
func (m *MockRouter) HealthCheck(arg0 context.Context) (any, error)
HealthCheck mocks base method.
func (*MockRouter) Initialize ¶
func (m *MockRouter) Initialize(nodeID ids.NodeID, log logging.Logger, timeouts timeout.Manager, shutdownTimeout time.Duration, criticalChains set.Set[ids.ID], sybilProtectionEnabled bool, trackedSubnets set.Set[ids.ID], onFatal func(int), healthConfig HealthConfig, metricsNamespace string, metricsRegisterer prometheus.Registerer) error
Initialize mocks base method.
func (*MockRouter) RegisterRequest ¶
func (m *MockRouter) RegisterRequest(ctx context.Context, nodeID ids.NodeID, sourceChainID, destinationChainID ids.ID, requestID uint32, op message.Op, failedMsg message.InboundMessage, engineType p2p.EngineType)
RegisterRequest mocks base method.
func (*MockRouter) Shutdown ¶
func (m *MockRouter) Shutdown(arg0 context.Context)
Shutdown mocks base method.
type MockRouterMockRecorder ¶
type MockRouterMockRecorder struct {
// contains filtered or unexported fields
}
MockRouterMockRecorder is the mock recorder for MockRouter.
func (*MockRouterMockRecorder) AddChain ¶
func (mr *MockRouterMockRecorder) AddChain(ctx, chain any) *gomock.Call
AddChain indicates an expected call of AddChain.
func (*MockRouterMockRecorder) Benched ¶
func (mr *MockRouterMockRecorder) Benched(chainID, validatorID any) *gomock.Call
Benched indicates an expected call of Benched.
func (*MockRouterMockRecorder) Connected ¶
func (mr *MockRouterMockRecorder) Connected(nodeID, nodeVersion, subnetID any) *gomock.Call
Connected indicates an expected call of Connected.
func (*MockRouterMockRecorder) Disconnected ¶
func (mr *MockRouterMockRecorder) Disconnected(nodeID any) *gomock.Call
Disconnected indicates an expected call of Disconnected.
func (*MockRouterMockRecorder) HandleInbound ¶
func (mr *MockRouterMockRecorder) HandleInbound(arg0, arg1 any) *gomock.Call
HandleInbound indicates an expected call of HandleInbound.
func (*MockRouterMockRecorder) HealthCheck ¶
func (mr *MockRouterMockRecorder) HealthCheck(arg0 any) *gomock.Call
HealthCheck indicates an expected call of HealthCheck.
func (*MockRouterMockRecorder) Initialize ¶
func (mr *MockRouterMockRecorder) Initialize(nodeID, log, timeouts, shutdownTimeout, criticalChains, sybilProtectionEnabled, trackedSubnets, onFatal, healthConfig, metricsNamespace, metricsRegisterer any) *gomock.Call
Initialize indicates an expected call of Initialize.
func (*MockRouterMockRecorder) RegisterRequest ¶
func (mr *MockRouterMockRecorder) RegisterRequest(ctx, nodeID, sourceChainID, destinationChainID, requestID, op, failedMsg, engineType any) *gomock.Call
RegisterRequest indicates an expected call of RegisterRequest.
type Router ¶
type Router interface { ExternalHandler InternalHandler Initialize( nodeID ids.NodeID, log logging.Logger, timeouts timeout.Manager, shutdownTimeout time.Duration, criticalChains set.Set[ids.ID], sybilProtectionEnabled bool, trackedSubnets set.Set[ids.ID], onFatal func(exitCode int), healthConfig HealthConfig, metricsNamespace string, metricsRegisterer prometheus.Registerer, ) error Shutdown(context.Context) AddChain(ctx context.Context, chain handler.Handler) health.Checker }
Router routes consensus messages to the Handler of the consensus engine that the messages are intended for