2020-07-10 17:17:51 +03:00
|
|
|
package event
|
|
|
|
|
|
|
|
import (
|
2021-05-18 11:12:51 +03:00
|
|
|
"fmt"
|
|
|
|
|
2022-07-28 19:22:32 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
2021-08-15 20:03:15 +03:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/network/payload"
|
2020-07-10 17:17:51 +03:00
|
|
|
)
|
|
|
|
|
2021-08-12 18:24:17 +03:00
|
|
|
// NotificationParser is a function that constructs Event
|
2020-07-10 17:17:51 +03:00
|
|
|
// from the StackItem list.
|
2022-07-28 19:22:32 +03:00
|
|
|
type NotificationParser func(*state.ContainedNotificationEvent) (Event, error)
|
2020-07-10 17:17:51 +03:00
|
|
|
|
2021-08-15 20:03:15 +03:00
|
|
|
// NotaryPreparator constructs NotaryEvent
|
|
|
|
// from the NotaryRequest event.
|
|
|
|
type NotaryPreparator interface {
|
|
|
|
Prepare(*payload.P2PNotaryRequest) (NotaryEvent, error)
|
2020-07-10 17:17:51 +03:00
|
|
|
}
|
|
|
|
|
2021-08-15 20:03:15 +03:00
|
|
|
// NotaryParser is a function that constructs Event
|
|
|
|
// from the NotaryEvent event.
|
|
|
|
type NotaryParser func(NotaryEvent) (Event, error)
|
|
|
|
|
|
|
|
// NotaryParserInfo is a structure that groups
|
|
|
|
// the parameters of particular notary request
|
|
|
|
// event parser.
|
|
|
|
type NotaryParserInfo struct {
|
|
|
|
notaryRequestTypes
|
|
|
|
|
|
|
|
p NotaryParser
|
2020-07-10 17:17:51 +03:00
|
|
|
}
|
|
|
|
|
2021-08-15 20:03:15 +03:00
|
|
|
func (n *NotaryParserInfo) parser() NotaryParser {
|
|
|
|
return n.p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *NotaryParserInfo) SetParser(p NotaryParser) {
|
|
|
|
n.p = p
|
2020-07-10 17:17:51 +03:00
|
|
|
}
|
|
|
|
|
2021-08-15 20:03:15 +03:00
|
|
|
type wrongPrmNumber struct {
|
|
|
|
exp, act int
|
|
|
|
}
|
|
|
|
|
|
|
|
// WrongNumberOfParameters returns an error about wrong number of smart contract parameters.
|
|
|
|
func WrongNumberOfParameters(exp, act int) error {
|
|
|
|
return &wrongPrmNumber{
|
|
|
|
exp: exp,
|
|
|
|
act: act,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s wrongPrmNumber) Error() string {
|
|
|
|
return fmt.Errorf("wrong parameter count: expected %d, has %d", s.exp, s.act).Error()
|
|
|
|
}
|