mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
28733f2c9e
* clean up config * add discv5 config * add gaz * Merge branch 'master' into configCleanup * Merge refs/heads/master into configCleanup * Merge refs/heads/master into configCleanup * Merge refs/heads/master into configCleanup * Merge refs/heads/master into configCleanup * Merge refs/heads/master into configCleanup * Merge refs/heads/master into configCleanup
59 lines
1.7 KiB
Go
59 lines
1.7 KiB
Go
package p2p
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/libp2p/go-libp2p-core/network"
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
"github.com/libp2p/go-libp2p-core/protocol"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"github.com/prysmaticlabs/prysm/shared/traceutil"
|
|
"go.opencensus.io/trace"
|
|
)
|
|
|
|
// Send a message to a specific peer. The returned stream may be used for reading, but has been
|
|
// closed for writing.
|
|
func (s *Service) Send(ctx context.Context, message interface{}, baseTopic string, pid peer.ID) (network.Stream, error) {
|
|
ctx, span := trace.StartSpan(ctx, "p2p.Send")
|
|
defer span.End()
|
|
topic := baseTopic + s.Encoding().ProtocolSuffix()
|
|
span.AddAttributes(trace.StringAttribute("topic", topic))
|
|
|
|
// TTFB_TIME (5s) + RESP_TIMEOUT (10s).
|
|
var deadline = params.BeaconNetworkConfig().TtfbTimeout + params.BeaconNetworkConfig().RespTimeout
|
|
ctx, cancel := context.WithTimeout(ctx, deadline)
|
|
defer cancel()
|
|
|
|
stream, err := s.host.NewStream(ctx, pid, protocol.ID(topic))
|
|
if err != nil {
|
|
traceutil.AnnotateError(span, err)
|
|
return nil, err
|
|
}
|
|
if err := stream.SetReadDeadline(time.Now().Add(deadline)); err != nil {
|
|
traceutil.AnnotateError(span, err)
|
|
return nil, err
|
|
}
|
|
if err := stream.SetWriteDeadline(time.Now().Add(deadline)); err != nil {
|
|
traceutil.AnnotateError(span, err)
|
|
return nil, err
|
|
}
|
|
// do not encode anything if we are sending a metadata request
|
|
if baseTopic == RPCMetaDataTopic {
|
|
return stream, nil
|
|
}
|
|
|
|
if _, err := s.Encoding().EncodeWithLength(stream, message); err != nil {
|
|
traceutil.AnnotateError(span, err)
|
|
return nil, err
|
|
}
|
|
|
|
// Close stream for writing.
|
|
if err := stream.Close(); err != nil {
|
|
traceutil.AnnotateError(span, err)
|
|
return nil, err
|
|
}
|
|
|
|
return stream, nil
|
|
}
|