2020-07-24 13:54:03 +00:00
|
|
|
package innerring
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/event"
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
// ContractProcessor interface defines functions for binding event producers
|
|
|
|
// such as event.Listener and Timers with contract processor.
|
|
|
|
ContractProcessor interface {
|
2021-08-12 15:24:17 +00:00
|
|
|
ListenerNotificationParsers() []event.NotificationParserInfo
|
|
|
|
ListenerNotificationHandlers() []event.NotificationHandlerInfo
|
2021-08-15 18:17:10 +00:00
|
|
|
ListenerNotaryParsers() []event.NotaryParserInfo
|
|
|
|
ListenerNotaryHandlers() []event.NotaryHandlerInfo
|
2021-09-08 08:28:41 +00:00
|
|
|
TimersHandlers() []event.NotificationHandlerInfo
|
2021-08-15 18:17:10 +00:00
|
|
|
}
|
2020-07-24 13:54:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func connectListenerWithProcessor(l event.Listener, p ContractProcessor) {
|
2021-09-08 08:28:41 +00:00
|
|
|
// register notification parsers
|
2021-08-12 15:24:17 +00:00
|
|
|
for _, parser := range p.ListenerNotificationParsers() {
|
|
|
|
l.SetNotificationParser(parser)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2021-09-08 08:28:41 +00:00
|
|
|
// register notification handlers
|
2021-08-12 15:24:17 +00:00
|
|
|
for _, handler := range p.ListenerNotificationHandlers() {
|
|
|
|
l.RegisterNotificationHandler(handler)
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
2021-08-15 18:17:10 +00:00
|
|
|
|
2021-09-08 08:28:41 +00:00
|
|
|
// register notary parsers
|
|
|
|
for _, notaryParser := range p.ListenerNotaryParsers() {
|
|
|
|
l.SetNotaryParser(notaryParser)
|
|
|
|
}
|
2021-08-15 18:17:10 +00:00
|
|
|
|
2021-09-08 08:28:41 +00:00
|
|
|
// register notary handlers
|
|
|
|
for _, notaryHandler := range p.ListenerNotaryHandlers() {
|
|
|
|
l.RegisterNotaryHandler(notaryHandler)
|
2021-08-15 18:17:10 +00:00
|
|
|
}
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2021-08-13 17:44:51 +00:00
|
|
|
// bindMorphProcessor connects morph chain listener handlers.
|
2020-07-24 13:54:03 +00:00
|
|
|
func bindMorphProcessor(proc ContractProcessor, s *Server) error {
|
|
|
|
connectListenerWithProcessor(s.morphListener, proc)
|
2021-01-22 15:49:52 +00:00
|
|
|
return nil
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2021-08-13 17:44:51 +00:00
|
|
|
// bindMainnetProcessor connects mainnet chain listener handlers.
|
2020-07-24 13:54:03 +00:00
|
|
|
func bindMainnetProcessor(proc ContractProcessor, s *Server) error {
|
|
|
|
connectListenerWithProcessor(s.mainnetListener, proc)
|
2021-01-22 15:49:52 +00:00
|
|
|
return nil
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|