dragonfly/client/daemon/peer/piece_downloader.go

136 lines
3.7 KiB
Go

/*
* Copyright 2020 The Dragonfly Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package peer
import (
"context"
"fmt"
"io"
"net"
"net/http"
"strings"
"time"
"d7y.io/dragonfly/v2/client/daemon/upload"
logger "d7y.io/dragonfly/v2/internal/dflog"
"d7y.io/dragonfly/v2/pkg/rpc/base"
"d7y.io/dragonfly/v2/pkg/util/digestutils"
)
type DownloadPieceRequest struct {
TaskID string
DstPid string
DstAddr string
CalcDigest bool
piece *base.PieceInfo
log *logger.SugaredLoggerOnWith
}
type PieceDownloader interface {
DownloadPiece(context.Context, *DownloadPieceRequest) (io.Reader, io.Closer, error)
}
type pieceDownloader struct {
transport http.RoundTripper
httpClient *http.Client
}
var _ PieceDownloader = (*pieceDownloader)(nil)
var defaultTransport http.RoundTripper = &http.Transport{
Proxy: http.ProxyFromEnvironment,
DialContext: (&net.Dialer{
Timeout: 2 * time.Second,
KeepAlive: 30 * time.Second,
DualStack: true,
}).DialContext,
MaxIdleConns: 100,
IdleConnTimeout: 90 * time.Second,
ResponseHeaderTimeout: 2 * time.Second,
TLSHandshakeTimeout: 10 * time.Second,
ExpectContinueTimeout: 2 * time.Second,
}
func NewPieceDownloader(timeout time.Duration, opts ...func(*pieceDownloader) error) (PieceDownloader, error) {
pd := &pieceDownloader{}
for _, opt := range opts {
if err := opt(pd); err != nil {
return nil, err
}
}
if pd.transport == nil {
pd.transport = defaultTransport
}
pd.httpClient = &http.Client{
Transport: pd.transport,
Timeout: timeout,
}
return pd, nil
}
func WithTransport(rt http.RoundTripper) func(*pieceDownloader) error {
return func(d *pieceDownloader) error {
d.transport = rt
return nil
}
}
func (p *pieceDownloader) DownloadPiece(ctx context.Context, d *DownloadPieceRequest) (io.Reader, io.Closer, error) {
resp, err := p.httpClient.Do(buildDownloadPieceHTTPRequest(ctx, d))
if err != nil {
logger.Errorf("task id: %s, piece num: %d, dst: %s, download piece failed: %s",
d.TaskID, d.piece.PieceNum, d.DstAddr, err)
return nil, nil, err
}
if resp.StatusCode > 299 {
_, _ = io.Copy(io.Discard, resp.Body)
_ = resp.Body.Close()
return nil, nil, fmt.Errorf("download piece failed with http code: %s", resp.Status)
}
r := resp.Body.(io.Reader)
c := resp.Body.(io.Closer)
if d.CalcDigest {
d.log.Debugf("calculate digest for piece %d, md5: %s", d.piece.PieceNum, d.piece.PieceMd5)
r = digestutils.NewDigestReader(d.log, io.LimitReader(resp.Body, int64(d.piece.RangeSize)), d.piece.PieceMd5)
}
return r, c, nil
}
func buildDownloadPieceHTTPRequest(ctx context.Context, d *DownloadPieceRequest) *http.Request {
b := strings.Builder{}
b.WriteString("http://")
b.WriteString(d.DstAddr)
b.WriteString(upload.PeerDownloadHTTPPathPrefix)
b.Write([]byte(d.TaskID)[:3])
b.Write([]byte("/"))
b.WriteString(d.TaskID)
b.Write([]byte("?peerId="))
b.WriteString(d.DstPid)
u := b.String()
logger.Debugf("built request url: %s", u)
req, _ := http.NewRequestWithContext(ctx, http.MethodGet, u, nil)
// TODO use string.Builder
req.Header.Add("Range", fmt.Sprintf("bytes=%d-%d",
d.piece.RangeStart, d.piece.RangeStart+uint64(d.piece.RangeSize)-1))
return req
}