kubo/p2p/stream.go
hannahhoward 0963c9cdcb Update go-ipfs-delay and assoc deps
License: MIT
Signed-off-by: hannahhoward <hannah@hannahhoward.net>
2018-11-15 18:53:45 -08:00

125 lines
2.5 KiB
Go

package p2p
import (
"io"
"sync"
ifconnmgr "gx/ipfs/QmQSucBpqUVQ5Q1stDmm2Bon4Tq4KNhNXuVmLMraARoUoh/go-libp2p-interface-connmgr"
manet "gx/ipfs/QmQVUtnrNGtCRkCMpXgpApfzQjc8FDaDVxHqWH8cnZQeh5/go-multiaddr-net"
ma "gx/ipfs/QmRKLtwMw131aK7ugC3G7ybpumMz78YrJe5dzneyindvG1/go-multiaddr"
protocol "gx/ipfs/QmZNkThpqfVXs9GNbexPrfBbXSLNYeKrE7jwFM2oqHbyqN/go-libp2p-protocol"
peer "gx/ipfs/QmcqU6QUDSXprb1518vYDGczrTJTyGwLG9eUa5iNX4xUtS/go-libp2p-peer"
net "gx/ipfs/QmenvQQy4bFGSiHJUGupVmCRHfetg5rH3vTp9Z2f6v2KXR/go-libp2p-net"
)
const cmgrTag = "stream-fwd"
// Stream holds information on active incoming and outgoing p2p streams.
type Stream struct {
id uint64
Protocol protocol.ID
OriginAddr ma.Multiaddr
TargetAddr ma.Multiaddr
peer peer.ID
Local manet.Conn
Remote net.Stream
Registry *StreamRegistry
}
// close stream endpoints and deregister it
func (s *Stream) close() error {
s.Registry.Close(s)
return nil
}
// reset closes stream endpoints and deregisters it
func (s *Stream) reset() error {
s.Registry.Reset(s)
return nil
}
func (s *Stream) startStreaming() {
go func() {
_, err := io.Copy(s.Local, s.Remote)
if err != nil {
s.reset()
} else {
s.close()
}
}()
go func() {
_, err := io.Copy(s.Remote, s.Local)
if err != nil {
s.reset()
} else {
s.close()
}
}()
}
// StreamRegistry is a collection of active incoming and outgoing proto app streams.
type StreamRegistry struct {
sync.Mutex
Streams map[uint64]*Stream
conns map[peer.ID]int
nextID uint64
ifconnmgr.ConnManager
}
// Register registers a stream to the registry
func (r *StreamRegistry) Register(streamInfo *Stream) {
r.Lock()
defer r.Unlock()
r.ConnManager.TagPeer(streamInfo.peer, cmgrTag, 20)
r.conns[streamInfo.peer]++
streamInfo.id = r.nextID
r.Streams[r.nextID] = streamInfo
r.nextID++
streamInfo.startStreaming()
}
// Deregister deregisters stream from the registry
func (r *StreamRegistry) Deregister(streamID uint64) {
r.Lock()
defer r.Unlock()
s, ok := r.Streams[streamID]
if !ok {
return
}
p := s.peer
r.conns[p]--
if r.conns[p] < 1 {
delete(r.conns, p)
r.ConnManager.UntagPeer(p, cmgrTag)
}
delete(r.Streams, streamID)
}
// Close stream endpoints and deregister it
func (r *StreamRegistry) Close(s *Stream) error {
s.Local.Close()
s.Remote.Close()
s.Registry.Deregister(s.id)
return nil
}
// Reset closes stream endpoints and deregisters it
func (r *StreamRegistry) Reset(s *Stream) error {
s.Local.Close()
s.Remote.Reset()
s.Registry.Deregister(s.id)
return nil
}