Skip to content

Commit

Permalink
Merge pull request #5 from libp2p/feat/stream-unity
Browse files Browse the repository at this point in the history
move protocol methods down into peerstream
  • Loading branch information
whyrusleeping authored Nov 3, 2016
2 parents 6399c5b + 23bb096 commit 6b2e375
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 39 deletions.
15 changes: 5 additions & 10 deletions p2p/net/swarm/swarm.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
"time"

logging "github.com/ipfs/go-log"
ps "github.com/jbenet/go-peerstream"
pst "github.com/jbenet/go-stream-muxer"
"github.com/jbenet/goprocess"
goprocessctx "github.com/jbenet/goprocess/context"
Expand All @@ -26,6 +25,7 @@ import (
pstore "github.com/libp2p/go-libp2p-peerstore"
transport "github.com/libp2p/go-libp2p-transport"
filter "github.com/libp2p/go-maddr-filter"
ps "github.com/libp2p/go-peerstream"
tcpt "github.com/libp2p/go-tcp-transport"
ma "github.com/multiformats/go-multiaddr"
psmss "github.com/whyrusleeping/go-smux-multistream"
Expand Down Expand Up @@ -256,7 +256,7 @@ func (s *Swarm) SetConnHandler(handler ConnHandler) {
// See peerstream.
func (s *Swarm) SetStreamHandler(handler inet.StreamHandler) {
s.swarm.SetStreamHandler(func(s *ps.Stream) {
handler(wrapStream(s))
handler((*Stream)(s))
})
}

Expand All @@ -273,12 +273,7 @@ func (s *Swarm) NewStreamWithPeer(ctx context.Context, p peer.ID) (*Stream, erro

// TODO: think about passing a context down to NewStreamWithGroup
st, err := s.swarm.NewStreamWithGroup(p)
return wrapStream(st), err
}

// StreamsWithPeer returns all the live Streams to p
func (s *Swarm) StreamsWithPeer(p peer.ID) []*Stream {
return wrapStreams(ps.StreamsWithGroup(p, s.swarm.Streams()))
return (*Stream)(st), err
}

// ConnectionsToPeer returns all the live connections to p
Expand Down Expand Up @@ -387,9 +382,9 @@ func (n *ps2netNotifee) Disconnected(c *ps.Conn) {
}

func (n *ps2netNotifee) OpenedStream(s *ps.Stream) {
n.not.OpenedStream(n.net, &Stream{stream: s})
n.not.OpenedStream(n.net, (*Stream)(s))
}

func (n *ps2netNotifee) ClosedStream(s *ps.Stream) {
n.not.ClosedStream(n.net, &Stream{stream: s})
n.not.ClosedStream(n.net, (*Stream)(s))
}
14 changes: 12 additions & 2 deletions p2p/net/swarm/swarm_conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"context"
"fmt"

ps "github.com/jbenet/go-peerstream"
ic "github.com/libp2p/go-libp2p-crypto"
iconn "github.com/libp2p/go-libp2p-interface-conn"
inet "github.com/libp2p/go-libp2p-net"
peer "github.com/libp2p/go-libp2p-peer"
ps "github.com/libp2p/go-peerstream"
ma "github.com/multiformats/go-multiaddr"
)

Expand Down Expand Up @@ -77,7 +77,7 @@ func (c *Conn) RemotePublicKey() ic.PubKey {
// NewSwarmStream returns a new Stream from this connection
func (c *Conn) NewSwarmStream() (*Stream, error) {
s, err := c.StreamConn().NewStream()
return wrapStream(s), err
return (*Stream)(s), err
}

// NewStream returns a new Stream from this connection
Expand All @@ -91,6 +91,16 @@ func (c *Conn) Close() error {
return c.StreamConn().Close()
}

func (c *Conn) GetStreams() ([]inet.Stream, error) {
ss := c.StreamConn().Streams()
out := make([]inet.Stream, len(ss))

for i, s := range ss {
out[i] = (*Stream)(s)
}
return out, nil
}

func wrapConn(psc *ps.Conn) (*Conn, error) {
// grab the underlying connection.
if _, ok := psc.NetConn().(iconn.Conn); !ok {
Expand Down
2 changes: 1 addition & 1 deletion p2p/net/swarm/swarm_listen.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import (
"context"
"fmt"

ps "github.com/jbenet/go-peerstream"
conn "github.com/libp2p/go-libp2p-conn"
iconn "github.com/libp2p/go-libp2p-interface-conn"
lgbl "github.com/libp2p/go-libp2p-loggables"
mconn "github.com/libp2p/go-libp2p-metrics/conn"
inet "github.com/libp2p/go-libp2p-net"
transport "github.com/libp2p/go-libp2p-transport"
ps "github.com/libp2p/go-peerstream"
ma "github.com/multiformats/go-multiaddr"
)

Expand Down
9 changes: 9 additions & 0 deletions p2p/net/swarm/swarm_net_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,15 @@ func TestNetworkOpenStream(t *testing.T) {
t.Fatal(err)
}

streams, err := nets[0].ConnsToPeer(nets[1].LocalPeer())[0].GetStreams()
if err != nil {
t.Fatal(err)
}

if len(streams) != 1 {
t.Fatal("should only have one stream there")
}

_, err = s.Write([]byte("hello ipfs"))
if err != nil {
t.Fatal(err)
Expand Down
35 changes: 9 additions & 26 deletions p2p/net/swarm/swarm_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,16 @@ import (
inet "github.com/libp2p/go-libp2p-net"
protocol "github.com/libp2p/go-libp2p-protocol"

ps "github.com/jbenet/go-peerstream"
ps "github.com/libp2p/go-peerstream"
)

// Stream is a wrapper around a ps.Stream that exposes a way to get
// our Conn and Swarm (instead of just the ps.Conn and ps.Swarm)
type Stream struct {
stream *ps.Stream
protocol protocol.ID
}
type Stream ps.Stream

// Stream returns the underlying peerstream.Stream
func (s *Stream) Stream() *ps.Stream {
return s.stream
return (*ps.Stream)(s)
}

// Conn returns the Conn associated with this Stream, as an inet.Conn
Expand All @@ -26,43 +23,29 @@ func (s *Stream) Conn() inet.Conn {

// SwarmConn returns the Conn associated with this Stream, as a *Conn
func (s *Stream) SwarmConn() *Conn {
return (*Conn)(s.stream.Conn())
return (*Conn)(s.Stream().Conn())
}

// Read reads bytes from a stream.
func (s *Stream) Read(p []byte) (n int, err error) {
return s.stream.Read(p)
return s.Stream().Read(p)
}

// Write writes bytes to a stream, flushing for each call.
func (s *Stream) Write(p []byte) (n int, err error) {
return s.stream.Write(p)
return s.Stream().Write(p)
}

// Close closes the stream, indicating this side is finished
// with the stream.
func (s *Stream) Close() error {
return s.stream.Close()
return s.Stream().Close()
}

func (s *Stream) Protocol() protocol.ID {
return s.protocol
return (*ps.Stream)(s).Protocol()
}

func (s *Stream) SetProtocol(p protocol.ID) {
s.protocol = p
}

func wrapStream(pss *ps.Stream) *Stream {
return &Stream{
stream: pss,
}
}

func wrapStreams(st []*ps.Stream) []*Stream {
out := make([]*Stream, len(st))
for i, s := range st {
out[i] = wrapStream(s)
}
return out
(*ps.Stream)(s).SetProtocol(p)
}

0 comments on commit 6b2e375

Please sign in to comment.