FedP2P/webseed-peer.go

101 lines
2.6 KiB
Go
Raw Normal View History

2020-05-30 15:52:27 +08:00
package torrent
import (
"fmt"
"strings"
2020-06-01 16:25:45 +08:00
"github.com/anacrolix/torrent/common"
"github.com/anacrolix/torrent/metainfo"
2020-06-01 16:41:21 +08:00
pp "github.com/anacrolix/torrent/peer_protocol"
2020-06-01 16:25:45 +08:00
"github.com/anacrolix/torrent/segments"
"github.com/anacrolix/torrent/webseed"
"github.com/pkg/errors"
2020-05-30 15:52:27 +08:00
)
type webseedPeer struct {
client webseed.Client
requests map[request]webseed.Request
2021-01-20 10:10:32 +08:00
peer Peer
2020-06-01 16:25:45 +08:00
}
var _ peerImpl = (*webseedPeer)(nil)
2020-06-01 16:25:45 +08:00
func (me *webseedPeer) connStatusString() string {
return me.client.Url
}
func (ws *webseedPeer) String() string {
return fmt.Sprintf("webseed peer for %q", ws.client.Url)
}
func (ws *webseedPeer) onGotInfo(info *metainfo.Info) {
ws.client.FileIndex = segments.NewIndex(common.LengthIterFromUpvertedFiles(info.UpvertedFiles()))
ws.client.Info = info
}
func (ws *webseedPeer) _postCancel(r request) {
2020-06-02 15:41:59 +08:00
ws.cancel(r)
2020-05-30 15:52:27 +08:00
}
func (ws *webseedPeer) writeInterested(interested bool) bool {
2020-05-30 15:52:27 +08:00
return true
}
func (ws *webseedPeer) cancel(r request) bool {
ws.requests[r].Cancel()
2020-06-01 16:25:45 +08:00
return true
2020-05-30 15:52:27 +08:00
}
func (ws *webseedPeer) intoSpec(r request) webseed.RequestSpec {
return webseed.RequestSpec{ws.peer.t.requestOffset(r), int64(r.Length)}
}
func (ws *webseedPeer) request(r request) bool {
webseedRequest := ws.client.NewRequest(ws.intoSpec(r))
ws.requests[r] = webseedRequest
go ws.requestResultHandler(r, webseedRequest)
2020-06-01 16:25:45 +08:00
return true
2020-05-30 15:52:27 +08:00
}
func (ws *webseedPeer) connectionFlags() string {
2020-05-30 15:52:27 +08:00
return "WS"
}
2021-01-04 12:51:23 +08:00
// TODO: This is called when banning peers. Perhaps we want to be able to ban webseeds too. We could
// return bool if this is even possible, and if it isn't, skip to the next drop candidate.
func (ws *webseedPeer) drop() {}
2020-05-30 15:52:27 +08:00
func (ws *webseedPeer) updateRequests() {
2020-05-30 15:52:27 +08:00
ws.peer.doRequestState()
}
2020-05-31 11:09:56 +08:00
2021-01-04 12:51:23 +08:00
func (ws *webseedPeer) onClose() {}
2020-06-01 16:41:21 +08:00
func (ws *webseedPeer) requestResultHandler(r request, webseedRequest webseed.Request) {
2020-06-02 14:41:49 +08:00
result := <-webseedRequest.Result
ws.peer.t.cl.lock()
2020-06-02 14:41:49 +08:00
defer ws.peer.t.cl.unlock()
if result.Err != nil {
ws.peer.logger.Printf("request %v rejected: %v", r, result.Err)
// Always close for now. We need to filter out temporary errors, but this is a nightmare in
// Go. Currently a bad webseed URL can starve out the good ones due to the chunk selection
// algorithm.
const closeOnAllErrors = false
if closeOnAllErrors || strings.Contains(errors.Cause(result.Err).Error(), "unsupported protocol scheme") {
ws.peer.close()
} else {
ws.peer.remoteRejectedRequest(r)
}
2020-06-02 14:41:49 +08:00
} else {
err := ws.peer.receiveChunk(&pp.Message{
Type: pp.Piece,
Index: r.Index,
Begin: r.Begin,
Piece: result.Bytes,
})
if err != nil {
panic(err)
}
2020-06-01 16:41:21 +08:00
}
}