forked from spacemeshos/go-spacemesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.go
49 lines (39 loc) · 1.29 KB
/
interface.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
package fetch
import (
"context"
"github.com/spacemeshos/go-spacemesh/common/types"
"github.com/spacemeshos/go-spacemesh/p2p"
"github.com/spacemeshos/go-spacemesh/p2p/pubsub"
)
//go:generate mockgen -typed -package=mocks -destination=./mocks/mocks.go -source=./interface.go
type requester interface {
Run(context.Context) error
Request(context.Context, p2p.Peer, []byte, func([]byte), func(error)) error
}
// The ValidatorFunc type is an adapter to allow the use of functions as
// SyncValidators so that we can mock the behavior of GossipHandlers. If we
// didn't need to mock GossipHandler behavior then we could use GossipHandlers
// directly and do away with both ValidatorFunc and SyncValidator.
type ValidatorFunc pubsub.SyncHandler
func (f ValidatorFunc) HandleMessage(
ctx context.Context,
hash types.Hash32,
peer p2p.Peer,
msg []byte,
) error {
return f(ctx, hash, peer, msg)
}
// SyncValidator exists to allow for mocking of GossipHandlers through the use
// of ValidatorFunc.
type SyncValidator interface {
HandleMessage(context.Context, types.Hash32, p2p.Peer, []byte) error
}
type PoetValidator interface {
ValidateAndStoreMsg(context.Context, types.Hash32, p2p.Peer, []byte) error
}
type meshProvider interface {
LastVerified() types.LayerID
}
type host interface {
ID() p2p.Peer
}