mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-27 05:17:49 +08:00
@perfmode using non-async version as apparently there's a bug in async. will look into it.
58 lines
1.8 KiB
Go
58 lines
1.8 KiB
Go
package network
|
|
|
|
import (
|
|
context "github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
|
|
netservice "github.com/jbenet/go-ipfs/net/service"
|
|
|
|
bsmsg "github.com/jbenet/go-ipfs/exchange/bitswap/message"
|
|
netmsg "github.com/jbenet/go-ipfs/net/message"
|
|
peer "github.com/jbenet/go-ipfs/peer"
|
|
u "github.com/jbenet/go-ipfs/util"
|
|
)
|
|
|
|
// Adapter provides network connectivity for BitSwap sessions
|
|
type Adapter interface {
|
|
|
|
// SendMessage sends a BitSwap message to a peer.
|
|
SendMessage(
|
|
context.Context,
|
|
*peer.Peer,
|
|
bsmsg.BitSwapMessage) error
|
|
|
|
// SendRequest sends a BitSwap message to a peer and waits for a response.
|
|
SendRequest(
|
|
context.Context,
|
|
*peer.Peer,
|
|
bsmsg.BitSwapMessage) (incoming bsmsg.BitSwapMessage, err error)
|
|
|
|
// SetDelegate registers the Reciver to handle messages received from the
|
|
// network.
|
|
SetDelegate(Receiver)
|
|
}
|
|
|
|
type Receiver interface {
|
|
ReceiveMessage(
|
|
ctx context.Context, sender *peer.Peer, incoming bsmsg.BitSwapMessage) (
|
|
destination *peer.Peer, outgoing bsmsg.BitSwapMessage, err error)
|
|
}
|
|
|
|
// TODO(brian): move this to go-ipfs/net package
|
|
type NetMessageService interface {
|
|
SendRequest(ctx context.Context, m netmsg.NetMessage) (netmsg.NetMessage, error)
|
|
SendMessage(ctx context.Context, m netmsg.NetMessage) error
|
|
SetHandler(netservice.Handler)
|
|
}
|
|
|
|
// TODO rename -> Router?
|
|
type Routing interface {
|
|
// FindProvidersAsync returns a channel of providers for the given key
|
|
// FindProvidersAsync(context.Context, u.Key, int) <-chan *peer.Peer
|
|
// ^--- removed this for now because has some bugs apparently.
|
|
|
|
// FindProviders returns the providers for the given key
|
|
FindProviders(context.Context, u.Key) ([]*peer.Peer, error)
|
|
|
|
// Provide provides the key to the network
|
|
Provide(context.Context, u.Key) error
|
|
}
|