peermessagemanager.go 1.62 KB
Newer Older
1 2 3 4 5
package peermanager

import (
	"context"

Hannah Howard's avatar
Hannah Howard committed
6 7
	blocks "github.com/ipfs/go-block-format"
	"github.com/libp2p/go-libp2p-core/peer"
8

9
	gsmsg "github.com/ipfs/go-graphsync/message"
10
	"github.com/ipfs/go-graphsync/notifications"
11 12 13 14 15
)

// PeerQueue is a process that sends messages to a peer
type PeerQueue interface {
	PeerProcess
16 17
	AddRequest(graphSyncRequest gsmsg.GraphSyncRequest, notifees ...notifications.Notifee)
	AddResponses(responses []gsmsg.GraphSyncResponse, blks []blocks.Block, notifees ...notifications.Notifee)
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
}

// PeerQueueFactory provides a function that will create a PeerQueue.
type PeerQueueFactory func(ctx context.Context, p peer.ID) PeerQueue

// PeerMessageManager manages message queues for peers
type PeerMessageManager struct {
	*PeerManager
}

// NewMessageManager generates a new manger for sending messages
func NewMessageManager(ctx context.Context, createPeerQueue PeerQueueFactory) *PeerMessageManager {
	return &PeerMessageManager{
		PeerManager: New(ctx, func(ctx context.Context, p peer.ID) PeerProcess {
			return createPeerQueue(ctx, p)
		}),
	}
}

// SendRequest sends the given GraphSyncRequest to the given peer
38
func (pmm *PeerMessageManager) SendRequest(p peer.ID, request gsmsg.GraphSyncRequest, notifees ...notifications.Notifee) {
39
	pq := pmm.GetProcess(p).(PeerQueue)
40
	pq.AddRequest(request, notifees...)
41
}
42 43 44

// SendResponse sends the given GraphSyncResponses and blocks to the given peer.
func (pmm *PeerMessageManager) SendResponse(p peer.ID,
45
	responses []gsmsg.GraphSyncResponse, blks []blocks.Block, notifees ...notifications.Notifee) {
46
	pq := pmm.GetProcess(p).(PeerQueue)
47
	pq.AddResponses(responses, blks, notifees...)
48
}