2019-09-24 14:56:50 +00:00
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2019-09-25 17:00:04 +00:00
|
|
|
"time"
|
2019-09-24 14:56:50 +00:00
|
|
|
|
|
|
|
libp2pcore "github.com/libp2p/go-libp2p-core"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/p2p"
|
2019-09-25 17:00:04 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/p2p/encoder"
|
2019-09-24 14:56:50 +00:00
|
|
|
eth "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
|
|
)
|
|
|
|
|
|
|
|
// chunkWriter writes the given message as a chunked response to the given network
|
|
|
|
// stream.
|
|
|
|
// response_chunk ::= | <result> | <encoding-dependent-header> | <encoded-payload>
|
|
|
|
func (r *RegularSync) chunkWriter(stream libp2pcore.Stream, msg interface{}) error {
|
|
|
|
setStreamWriteDeadline(stream, defaultWriteDuration)
|
2019-09-25 17:00:04 +00:00
|
|
|
return WriteChunk(stream, r.p2p.Encoding(), msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteChunk object to stream.
|
|
|
|
// response_chunk ::= | <result> | <encoding-dependent-header> | <encoded-payload>
|
|
|
|
func WriteChunk(stream libp2pcore.Stream, encoding encoder.NetworkEncoding, msg interface{}) error {
|
2019-09-24 14:56:50 +00:00
|
|
|
if _, err := stream.Write([]byte{responseCodeSuccess}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-09-25 17:00:04 +00:00
|
|
|
_, err := encoding.EncodeWithMaxLength(stream, msg, maxChunkSize)
|
2019-09-24 14:56:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadChunkedBlock handles each response chunk that is sent by the
|
|
|
|
// peer and converts it into a beacon block.
|
|
|
|
func ReadChunkedBlock(stream libp2pcore.Stream, p2p p2p.P2P) (*eth.BeaconBlock, error) {
|
|
|
|
blk := ð.BeaconBlock{}
|
|
|
|
if err := readResponseChunk(stream, p2p, blk); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return blk, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// readResponseChunk reads the response from the stream and decodes it into the
|
|
|
|
// provided message type.
|
|
|
|
func readResponseChunk(stream libp2pcore.Stream, p2p p2p.P2P, to interface{}) error {
|
2019-09-25 17:00:04 +00:00
|
|
|
setStreamReadDeadline(stream, 10*time.Second)
|
2019-09-24 14:56:50 +00:00
|
|
|
code, errMsg, err := ReadStatusCode(stream, p2p.Encoding())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if code != 0 {
|
|
|
|
return errors.New(errMsg)
|
|
|
|
}
|
|
|
|
return p2p.Encoding().DecodeWithMaxLength(stream, to, maxChunkSize)
|
|
|
|
}
|