virtual.go 3.21 KB
Newer Older
Brian Tiger Chow's avatar
Brian Tiger Chow committed
1 2 3 4 5
package bitswap

import (
	"errors"

6 7 8 9 10 11 12 13 14
	context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
	bsmsg "github.com/ipfs/go-ipfs/exchange/bitswap/message"
	bsnet "github.com/ipfs/go-ipfs/exchange/bitswap/network"
	peer "github.com/ipfs/go-ipfs/p2p/peer"
	routing "github.com/ipfs/go-ipfs/routing"
	mockrouting "github.com/ipfs/go-ipfs/routing/mock"
	delay "github.com/ipfs/go-ipfs/thirdparty/delay"
	util "github.com/ipfs/go-ipfs/util"
	testutil "github.com/ipfs/go-ipfs/util/testutil"
Brian Tiger Chow's avatar
Brian Tiger Chow committed
15 16
)

17
func VirtualNetwork(rs mockrouting.Server, d delay.D) Network {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
18
	return &network{
19 20
		clients:       make(map[peer.ID]bsnet.Receiver),
		delay:         d,
21
		routingserver: rs,
Brian Tiger Chow's avatar
Brian Tiger Chow committed
22 23 24 25
	}
}

type network struct {
26 27 28
	clients       map[peer.ID]bsnet.Receiver
	routingserver mockrouting.Server
	delay         delay.D
Brian Tiger Chow's avatar
Brian Tiger Chow committed
29 30
}

31
func (n *network) Adapter(p testutil.Identity) bsnet.BitSwapNetwork {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
32
	client := &networkClient{
33
		local:   p.ID(),
34
		network: n,
Brian Tiger Chow's avatar
Brian Tiger Chow committed
35
		routing: n.routingserver.Client(p),
Brian Tiger Chow's avatar
Brian Tiger Chow committed
36
	}
37
	n.clients[p.ID()] = client
Brian Tiger Chow's avatar
Brian Tiger Chow committed
38 39 40
	return client
}

41 42
func (n *network) HasPeer(p peer.ID) bool {
	_, found := n.clients[p]
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
43 44 45
	return found
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
46 47 48 49
// TODO should this be completely asynchronous?
// TODO what does the network layer do with errors received from services?
func (n *network) SendMessage(
	ctx context.Context,
50 51
	from peer.ID,
	to peer.ID,
Brian Tiger Chow's avatar
Brian Tiger Chow committed
52 53
	message bsmsg.BitSwapMessage) error {

54
	receiver, ok := n.clients[to]
Brian Tiger Chow's avatar
Brian Tiger Chow committed
55 56 57 58 59 60 61 62 63 64 65 66 67
	if !ok {
		return errors.New("Cannot locate peer on network")
	}

	// nb: terminate the context since the context wouldn't actually be passed
	// over the network in a real scenario

	go n.deliver(receiver, from, message)

	return nil
}

func (n *network) deliver(
68 69
	r bsnet.Receiver, from peer.ID, message bsmsg.BitSwapMessage) error {
	if message == nil || from == "" {
Brian Tiger Chow's avatar
Brian Tiger Chow committed
70 71 72
		return errors.New("Invalid input")
	}

73 74
	n.delay.Wait()

Jeromy Johnson's avatar
Jeromy Johnson committed
75
	return r.ReceiveMessage(context.TODO(), from, message)
Brian Tiger Chow's avatar
Brian Tiger Chow committed
76 77 78
}

type networkClient struct {
79
	local peer.ID
Brian Tiger Chow's avatar
Brian Tiger Chow committed
80
	bsnet.Receiver
81
	network *network
82
	routing routing.IpfsRouting
Brian Tiger Chow's avatar
Brian Tiger Chow committed
83 84 85 86
}

func (nc *networkClient) SendMessage(
	ctx context.Context,
87
	to peer.ID,
Brian Tiger Chow's avatar
Brian Tiger Chow committed
88 89 90 91
	message bsmsg.BitSwapMessage) error {
	return nc.network.SendMessage(ctx, nc.local, to, message)
}

92
// FindProvidersAsync returns a channel of providers for the given key
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
func (nc *networkClient) FindProvidersAsync(ctx context.Context, k util.Key, max int) <-chan peer.ID {

	// NB: this function duplicates the PeerInfo -> ID transformation in the
	// bitswap network adapter. Not to worry. This network client will be
	// deprecated once the ipfsnet.Mock is added. The code below is only
	// temporary.

	out := make(chan peer.ID)
	go func() {
		defer close(out)
		providers := nc.routing.FindProvidersAsync(ctx, k, max)
		for info := range providers {
			select {
			case <-ctx.Done():
			case out <- info.ID:
			}
		}
	}()
	return out
112 113 114 115 116 117 118
}

// Provide provides the key to the network
func (nc *networkClient) Provide(ctx context.Context, k util.Key) error {
	return nc.routing.Provide(ctx, k)
}

Brian Tiger Chow's avatar
Brian Tiger Chow committed
119 120 121
func (nc *networkClient) SetDelegate(r bsnet.Receiver) {
	nc.Receiver = r
}
122 123 124 125 126 127 128 129 130

func (nc *networkClient) ConnectTo(_ context.Context, p peer.ID) error {
	if !nc.network.HasPeer(p) {
		return errors.New("no such peer in network")
	}
	nc.network.clients[p].PeerConnected(nc.local)
	nc.Receiver.PeerConnected(p)
	return nil
}