responsebuilder.go 2.99 KB
Newer Older
1 2 3 4 5 6
package responsebuilder

import (
	"github.com/ipfs/go-block-format"
	"github.com/ipfs/go-graphsync/ipldbridge"
	gsmsg "github.com/ipfs/go-graphsync/message"
7
	"github.com/ipfs/go-graphsync/metadata"
8 9 10 11 12 13 14 15
	"github.com/ipld/go-ipld-prime"
)

// ResponseBuilder captures componenst of a response message across multiple
// requests for a given peer and then generates the corresponding
// GraphSync message components once responses are ready to send.
type ResponseBuilder struct {
	outgoingBlocks     []blocks.Block
16
	completedResponses map[gsmsg.GraphSyncRequestID]gsmsg.GraphSyncResponseStatusCode
17
	outgoingResponses  map[gsmsg.GraphSyncRequestID]metadata.Metadata
18 19 20 21 22
}

// New generates a new ResponseBuilder.
func New() *ResponseBuilder {
	return &ResponseBuilder{
23
		completedResponses: make(map[gsmsg.GraphSyncRequestID]gsmsg.GraphSyncResponseStatusCode),
24
		outgoingResponses:  make(map[gsmsg.GraphSyncRequestID]metadata.Metadata),
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
	}
}

// AddBlock adds the given block to the response.
func (rb *ResponseBuilder) AddBlock(block blocks.Block) {
	rb.outgoingBlocks = append(rb.outgoingBlocks, block)
}

// AddLink adds the given link and whether its block is present
// to the response for the given request ID.
func (rb *ResponseBuilder) AddLink(requestID gsmsg.GraphSyncRequestID, link ipld.Link, blockPresent bool) {
	linksForRequest, ok := rb.outgoingResponses[requestID]
	if !ok {
		linksForRequest = make(map[ipld.Link]bool)
		rb.outgoingResponses[requestID] = linksForRequest
	}
	linksForRequest[link] = blockPresent
}

// AddCompletedRequest marks the given request as completed in the response,
// as well as whether the graphsync request responded with complete or partial
// data.
47 48
func (rb *ResponseBuilder) AddCompletedRequest(requestID gsmsg.GraphSyncRequestID, status gsmsg.GraphSyncResponseStatusCode) {
	rb.completedResponses[requestID] = status
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
	// make sure this completion goes out in next response even if no links are sent
	_, ok := rb.outgoingResponses[requestID]
	if !ok {
		rb.outgoingResponses[requestID] = make(map[ipld.Link]bool)
	}
}

// Empty returns true if there is no content to send
func (rb *ResponseBuilder) Empty() bool {
	return len(rb.outgoingBlocks) == 0 && len(rb.outgoingResponses) == 0
}

// Build assembles and encodes response data from the added requests, links, and blocks.
func (rb *ResponseBuilder) Build(ipldBridge ipldbridge.IPLDBridge) ([]gsmsg.GraphSyncResponse, []blocks.Block, error) {
	responses := make([]gsmsg.GraphSyncResponse, 0, len(rb.outgoingResponses))
	for requestID, linkMap := range rb.outgoingResponses {
65
		extra, err := metadata.EncodeMetadata(linkMap, ipldBridge)
66 67 68
		if err != nil {
			return nil, nil, err
		}
69 70
		status, isComplete := rb.completedResponses[requestID]
		responses = append(responses, gsmsg.NewResponse(requestID, responseCode(status, isComplete), extra))
71 72 73 74
	}
	return responses, rb.outgoingBlocks, nil
}

75
func responseCode(status gsmsg.GraphSyncResponseStatusCode, isComplete bool) gsmsg.GraphSyncResponseStatusCode {
76 77 78
	if !isComplete {
		return gsmsg.PartialResponse
	}
79
	return status
80
}