2021-12-14 10:13:17 +00:00
|
|
|
package downloadergrpc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
|
|
|
"github.com/c2h5oh/datasize"
|
|
|
|
"github.com/ledgerwatch/erigon-lib/gointerfaces"
|
|
|
|
proto_downloader "github.com/ledgerwatch/erigon-lib/gointerfaces/downloader"
|
|
|
|
prototypes "github.com/ledgerwatch/erigon-lib/gointerfaces/types"
|
|
|
|
"github.com/ledgerwatch/erigon/common"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"google.golang.org/grpc/backoff"
|
2022-08-17 05:17:32 +00:00
|
|
|
"google.golang.org/grpc/credentials/insecure"
|
2021-12-14 10:13:17 +00:00
|
|
|
"google.golang.org/grpc/keepalive"
|
|
|
|
)
|
|
|
|
|
|
|
|
func NewClient(ctx context.Context, downloaderAddr string) (proto_downloader.DownloaderClient, error) {
|
|
|
|
// creating grpc client connection
|
|
|
|
var dialOpts []grpc.DialOption
|
|
|
|
|
|
|
|
backoffCfg := backoff.DefaultConfig
|
|
|
|
backoffCfg.BaseDelay = 500 * time.Millisecond
|
|
|
|
backoffCfg.MaxDelay = 10 * time.Second
|
|
|
|
dialOpts = []grpc.DialOption{
|
|
|
|
grpc.WithConnectParams(grpc.ConnectParams{Backoff: backoffCfg, MinConnectTimeout: 10 * time.Minute}),
|
|
|
|
grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(int(16 * datasize.MB))),
|
|
|
|
grpc.WithKeepaliveParams(keepalive.ClientParameters{}),
|
|
|
|
}
|
|
|
|
|
2022-08-17 05:17:32 +00:00
|
|
|
dialOpts = append(dialOpts, grpc.WithTransportCredentials(insecure.NewCredentials()))
|
2021-12-14 10:13:17 +00:00
|
|
|
conn, err := grpc.DialContext(ctx, downloaderAddr, dialOpts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("creating client connection to sentry P2P: %w", err)
|
|
|
|
}
|
|
|
|
return proto_downloader.NewDownloaderClient(conn), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func InfoHashes2Proto(in []metainfo.Hash) []*prototypes.H160 {
|
|
|
|
infoHashes := make([]*prototypes.H160, len(in))
|
|
|
|
i := 0
|
|
|
|
for _, h := range in {
|
|
|
|
infoHashes[i] = gointerfaces.ConvertAddressToH160(h)
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
return infoHashes
|
|
|
|
}
|
|
|
|
|
|
|
|
func Strings2Proto(in []string) []*prototypes.H160 {
|
|
|
|
infoHashes := make([]*prototypes.H160, len(in))
|
|
|
|
i := 0
|
|
|
|
for _, h := range in {
|
|
|
|
infoHashes[i] = String2Proto(h)
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
return infoHashes
|
|
|
|
}
|
|
|
|
|
|
|
|
func String2Proto(in string) *prototypes.H160 {
|
|
|
|
var infoHash [20]byte
|
|
|
|
copy(infoHash[:], common.FromHex(in))
|
|
|
|
return gointerfaces.ConvertAddressToH160(infoHash)
|
|
|
|
}
|