mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-26 04:47:45 +08:00
Rather than pushing errors back down to lower layers, propagate the
errors upward.
This commit adds a `ReceiveError` method to BitSwap's network receiver.
Still TODO: rm the error return value from:
net.service.handler.HandleMessage
This is inspired by delegation patterns in found in the wild.
191 lines
5.6 KiB
Go
191 lines
5.6 KiB
Go
package bitswap
|
|
|
|
import (
|
|
context "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
|
|
ds "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/datastore.go"
|
|
|
|
blocks "github.com/jbenet/go-ipfs/blocks"
|
|
blockstore "github.com/jbenet/go-ipfs/blockstore"
|
|
exchange "github.com/jbenet/go-ipfs/exchange"
|
|
bsmsg "github.com/jbenet/go-ipfs/exchange/bitswap/message"
|
|
bsnet "github.com/jbenet/go-ipfs/exchange/bitswap/network"
|
|
notifications "github.com/jbenet/go-ipfs/exchange/bitswap/notifications"
|
|
strategy "github.com/jbenet/go-ipfs/exchange/bitswap/strategy"
|
|
peer "github.com/jbenet/go-ipfs/peer"
|
|
u "github.com/jbenet/go-ipfs/util"
|
|
)
|
|
|
|
// NetMessageSession initializes a BitSwap session that communicates over the
|
|
// provided NetMessage service
|
|
func NetMessageSession(parent context.Context, p *peer.Peer, s bsnet.NetMessageService, directory bsnet.Routing, d ds.Datastore, nice bool) exchange.Interface {
|
|
|
|
networkAdapter := bsnet.NetMessageAdapter(s, nil)
|
|
bs := &bitswap{
|
|
blockstore: blockstore.NewBlockstore(d),
|
|
notifications: notifications.New(),
|
|
strategy: strategy.New(nice),
|
|
routing: directory,
|
|
sender: networkAdapter,
|
|
wantlist: u.NewKeySet(),
|
|
}
|
|
networkAdapter.SetDelegate(bs)
|
|
|
|
return bs
|
|
}
|
|
|
|
// bitswap instances implement the bitswap protocol.
|
|
type bitswap struct {
|
|
|
|
// sender delivers messages on behalf of the session
|
|
sender bsnet.Adapter
|
|
|
|
// blockstore is the local database
|
|
// NB: ensure threadsafety
|
|
blockstore blockstore.Blockstore
|
|
|
|
// routing interface for communication
|
|
routing bsnet.Routing
|
|
|
|
notifications notifications.PubSub
|
|
|
|
// strategy listens to network traffic and makes decisions about how to
|
|
// interact with partners.
|
|
// TODO(brian): save the strategy's state to the datastore
|
|
strategy strategy.Strategy
|
|
|
|
wantlist u.KeySet
|
|
}
|
|
|
|
// GetBlock attempts to retrieve a particular block from peers within the
|
|
// deadline enforced by the context
|
|
//
|
|
// TODO ensure only one active request per key
|
|
func (bs *bitswap) Block(parent context.Context, k u.Key) (*blocks.Block, error) {
|
|
u.DOut("Get Block %v\n", k.Pretty())
|
|
|
|
ctx, cancelFunc := context.WithCancel(parent)
|
|
bs.wantlist.Add(k)
|
|
promise := bs.notifications.Subscribe(ctx, k)
|
|
|
|
const maxProviders = 20
|
|
peersToQuery := bs.routing.FindProvidersAsync(ctx, k, maxProviders)
|
|
|
|
go func() {
|
|
message := bsmsg.New()
|
|
for _, wanted := range bs.wantlist.Keys() {
|
|
message.AppendWanted(wanted)
|
|
}
|
|
message.AppendWanted(k)
|
|
for iiiii := range peersToQuery {
|
|
// u.DOut("bitswap got peersToQuery: %s\n", iiiii)
|
|
go func(p *peer.Peer) {
|
|
response, err := bs.sender.SendRequest(ctx, p, message)
|
|
if err != nil {
|
|
return
|
|
}
|
|
// FIXME ensure accounting is handled correctly when
|
|
// communication fails. May require slightly different API to
|
|
// get better guarantees. May need shared sequence numbers.
|
|
bs.strategy.MessageSent(p, message)
|
|
|
|
if response == nil {
|
|
return
|
|
}
|
|
bs.ReceiveMessage(ctx, p, response)
|
|
}(iiiii)
|
|
}
|
|
}()
|
|
|
|
select {
|
|
case block := <-promise:
|
|
cancelFunc()
|
|
bs.wantlist.Remove(k)
|
|
// TODO remove from wantlist
|
|
return &block, nil
|
|
case <-parent.Done():
|
|
return nil, parent.Err()
|
|
}
|
|
}
|
|
|
|
// HasBlock announces the existance of a block to bitswap, potentially sending
|
|
// it to peers (Partners) whose WantLists include it.
|
|
func (bs *bitswap) HasBlock(ctx context.Context, blk blocks.Block) error {
|
|
u.DOut("Has Block %v\n", blk.Key().Pretty())
|
|
bs.wantlist.Remove(blk.Key())
|
|
bs.sendToPeersThatWant(ctx, blk)
|
|
return bs.routing.Provide(ctx, blk.Key())
|
|
}
|
|
|
|
// TODO(brian): handle errors
|
|
func (bs *bitswap) ReceiveMessage(ctx context.Context, p *peer.Peer, incoming bsmsg.BitSwapMessage) (
|
|
*peer.Peer, bsmsg.BitSwapMessage) {
|
|
u.DOut("ReceiveMessage from %v\n", p.Key().Pretty())
|
|
|
|
if p == nil {
|
|
// TODO propagate the error upward
|
|
return nil, nil
|
|
}
|
|
if incoming == nil {
|
|
// TODO propagate the error upward
|
|
return nil, nil
|
|
}
|
|
|
|
bs.strategy.MessageReceived(p, incoming) // FIRST
|
|
|
|
for _, block := range incoming.Blocks() {
|
|
// TODO verify blocks?
|
|
if err := bs.blockstore.Put(block); err != nil {
|
|
continue // FIXME(brian): err ignored
|
|
}
|
|
go bs.notifications.Publish(block)
|
|
go func(block blocks.Block) {
|
|
_ = bs.HasBlock(ctx, block) // FIXME err ignored
|
|
}(block)
|
|
}
|
|
|
|
message := bsmsg.New()
|
|
for _, wanted := range bs.wantlist.Keys() {
|
|
message.AppendWanted(wanted)
|
|
}
|
|
for _, key := range incoming.Wantlist() {
|
|
if bs.strategy.ShouldSendBlockToPeer(key, p) {
|
|
if block, errBlockNotFound := bs.blockstore.Get(key); errBlockNotFound != nil {
|
|
continue
|
|
} else {
|
|
message.AppendBlock(*block)
|
|
}
|
|
}
|
|
}
|
|
defer bs.strategy.MessageSent(p, message)
|
|
return p, message
|
|
}
|
|
|
|
func (bs *bitswap) ReceiveError(err error) {
|
|
// TODO log the network error
|
|
// TODO bubble the network error up to the parent context/error logger
|
|
}
|
|
|
|
// send strives to ensure that accounting is always performed when a message is
|
|
// sent
|
|
func (bs *bitswap) send(ctx context.Context, p *peer.Peer, m bsmsg.BitSwapMessage) {
|
|
bs.sender.SendMessage(ctx, p, m)
|
|
go bs.strategy.MessageSent(p, m)
|
|
}
|
|
|
|
func (bs *bitswap) sendToPeersThatWant(ctx context.Context, block blocks.Block) {
|
|
u.DOut("Sending %v to peers that want it\n", block.Key().Pretty())
|
|
for _, p := range bs.strategy.Peers() {
|
|
if bs.strategy.BlockIsWantedByPeer(block.Key(), p) {
|
|
u.DOut("%v wants %v\n", p.Key().Pretty(), block.Key().Pretty())
|
|
if bs.strategy.ShouldSendBlockToPeer(block.Key(), p) {
|
|
message := bsmsg.New()
|
|
message.AppendBlock(block)
|
|
for _, wanted := range bs.wantlist.Keys() {
|
|
message.AppendWanted(wanted)
|
|
}
|
|
go bs.send(ctx, p, message)
|
|
}
|
|
}
|
|
}
|
|
}
|