mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 10:57:42 +08:00
184 lines
5.0 KiB
Go
184 lines
5.0 KiB
Go
package network
|
|
|
|
import (
|
|
ma "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
|
|
context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
|
|
key "github.com/ipfs/go-ipfs/blocks/key"
|
|
bsmsg "github.com/ipfs/go-ipfs/exchange/bitswap/message"
|
|
host "github.com/ipfs/go-ipfs/p2p/host"
|
|
inet "github.com/ipfs/go-ipfs/p2p/net"
|
|
peer "github.com/ipfs/go-ipfs/p2p/peer"
|
|
routing "github.com/ipfs/go-ipfs/routing"
|
|
logging "github.com/ipfs/go-ipfs/vendor/QmXJkcEXB6C9h6Ytb6rrUTFU56Ro62zxgrbxTT3dgjQGA8/go-log"
|
|
)
|
|
|
|
var log = logging.Logger("bitswap_network")
|
|
|
|
// NewFromIpfsHost returns a BitSwapNetwork supported by underlying IPFS host
|
|
func NewFromIpfsHost(host host.Host, r routing.IpfsRouting) BitSwapNetwork {
|
|
bitswapNetwork := impl{
|
|
host: host,
|
|
routing: r,
|
|
}
|
|
host.SetStreamHandler(ProtocolBitswap, bitswapNetwork.handleNewStream)
|
|
host.Network().Notify((*netNotifiee)(&bitswapNetwork))
|
|
// TODO: StopNotify.
|
|
|
|
return &bitswapNetwork
|
|
}
|
|
|
|
// impl transforms the ipfs network interface, which sends and receives
|
|
// NetMessage objects, into the bitswap network interface.
|
|
type impl struct {
|
|
host host.Host
|
|
routing routing.IpfsRouting
|
|
|
|
// inbound messages from the network are forwarded to the receiver
|
|
receiver Receiver
|
|
}
|
|
|
|
func (bsnet *impl) newStreamToPeer(ctx context.Context, p peer.ID) (inet.Stream, error) {
|
|
|
|
// first, make sure we're connected.
|
|
// if this fails, we cannot connect to given peer.
|
|
//TODO(jbenet) move this into host.NewStream?
|
|
if err := bsnet.host.Connect(ctx, peer.PeerInfo{ID: p}); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return bsnet.host.NewStream(ProtocolBitswap, p)
|
|
}
|
|
|
|
func (bsnet *impl) SendMessage(
|
|
ctx context.Context,
|
|
p peer.ID,
|
|
outgoing bsmsg.BitSwapMessage) error {
|
|
|
|
s, err := bsnet.newStreamToPeer(ctx, p)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer s.Close()
|
|
|
|
if err := outgoing.ToNet(s); err != nil {
|
|
log.Debugf("error: %s", err)
|
|
return err
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
func (bsnet *impl) SendRequest(
|
|
ctx context.Context,
|
|
p peer.ID,
|
|
outgoing bsmsg.BitSwapMessage) (bsmsg.BitSwapMessage, error) {
|
|
|
|
s, err := bsnet.newStreamToPeer(ctx, p)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer s.Close()
|
|
|
|
if err := outgoing.ToNet(s); err != nil {
|
|
log.Debugf("error: %s", err)
|
|
return nil, err
|
|
}
|
|
|
|
incoming, err := bsmsg.FromNet(s)
|
|
if err != nil {
|
|
log.Debugf("error: %s", err)
|
|
return incoming, err
|
|
}
|
|
|
|
return incoming, nil
|
|
}
|
|
|
|
func (bsnet *impl) SetDelegate(r Receiver) {
|
|
bsnet.receiver = r
|
|
}
|
|
|
|
func (bsnet *impl) ConnectTo(ctx context.Context, p peer.ID) error {
|
|
return bsnet.host.Connect(ctx, peer.PeerInfo{ID: p})
|
|
}
|
|
|
|
// FindProvidersAsync returns a channel of providers for the given key
|
|
func (bsnet *impl) FindProvidersAsync(ctx context.Context, k key.Key, max int) <-chan peer.ID {
|
|
|
|
// Since routing queries are expensive, give bitswap the peers to which we
|
|
// have open connections. Note that this may cause issues if bitswap starts
|
|
// precisely tracking which peers provide certain keys. This optimization
|
|
// would be misleading. In the long run, this may not be the most
|
|
// appropriate place for this optimization, but it won't cause any harm in
|
|
// the short term.
|
|
connectedPeers := bsnet.host.Network().Peers()
|
|
out := make(chan peer.ID, len(connectedPeers)) // just enough buffer for these connectedPeers
|
|
for _, id := range connectedPeers {
|
|
if id == bsnet.host.ID() {
|
|
continue // ignore self as provider
|
|
}
|
|
out <- id
|
|
}
|
|
|
|
go func() {
|
|
defer close(out)
|
|
providers := bsnet.routing.FindProvidersAsync(ctx, k, max)
|
|
for info := range providers {
|
|
if info.ID == bsnet.host.ID() {
|
|
continue // ignore self as provider
|
|
}
|
|
bsnet.host.Peerstore().AddAddrs(info.ID, info.Addrs, peer.TempAddrTTL)
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
case out <- info.ID:
|
|
}
|
|
}
|
|
}()
|
|
return out
|
|
}
|
|
|
|
// Provide provides the key to the network
|
|
func (bsnet *impl) Provide(ctx context.Context, k key.Key) error {
|
|
return bsnet.routing.Provide(ctx, k)
|
|
}
|
|
|
|
// handleNewStream receives a new stream from the network.
|
|
func (bsnet *impl) handleNewStream(s inet.Stream) {
|
|
defer s.Close()
|
|
|
|
if bsnet.receiver == nil {
|
|
return
|
|
}
|
|
|
|
received, err := bsmsg.FromNet(s)
|
|
if err != nil {
|
|
go bsnet.receiver.ReceiveError(err)
|
|
log.Debugf("bitswap net handleNewStream from %s error: %s", s.Conn().RemotePeer(), err)
|
|
return
|
|
}
|
|
|
|
p := s.Conn().RemotePeer()
|
|
ctx := context.Background()
|
|
log.Debugf("bitswap net handleNewStream from %s", s.Conn().RemotePeer())
|
|
bsnet.receiver.ReceiveMessage(ctx, p, received)
|
|
}
|
|
|
|
type netNotifiee impl
|
|
|
|
func (nn *netNotifiee) impl() *impl {
|
|
return (*impl)(nn)
|
|
}
|
|
|
|
func (nn *netNotifiee) Connected(n inet.Network, v inet.Conn) {
|
|
nn.impl().receiver.PeerConnected(v.RemotePeer())
|
|
}
|
|
|
|
func (nn *netNotifiee) Disconnected(n inet.Network, v inet.Conn) {
|
|
nn.impl().receiver.PeerDisconnected(v.RemotePeer())
|
|
}
|
|
|
|
func (nn *netNotifiee) OpenedStream(n inet.Network, v inet.Stream) {}
|
|
func (nn *netNotifiee) ClosedStream(n inet.Network, v inet.Stream) {}
|
|
func (nn *netNotifiee) Listen(n inet.Network, a ma.Multiaddr) {}
|
|
func (nn *netNotifiee) ListenClose(n inet.Network, a ma.Multiaddr) {}
|