Skip to content

Commit

Permalink
Merge pull request #80 from libp2p/lint/fix-some-linting
Browse files Browse the repository at this point in the history
lint: fixed a bunch of issues reported by gometalinter
  • Loading branch information
whyrusleeping committed Aug 17, 2016
2 parents 3471cda + 2ca1eb1 commit d247ef6
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 26 deletions.
22 changes: 11 additions & 11 deletions p2p/net/swarm/limiter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ func hangDialFunc(hang chan struct{}) dialfunc {

if tcpPortOver(a, 10) {
return conn.Conn(nil), nil
} else {
<-hang
return nil, fmt.Errorf("test bad dial")
}

<-hang
return nil, fmt.Errorf("test bad dial")
}
}

Expand Down Expand Up @@ -127,7 +127,7 @@ func TestFDLimiting(t *testing.T) {

bads := []ma.Multiaddr{addrWithPort(t, 1), addrWithPort(t, 2), addrWithPort(t, 3), addrWithPort(t, 4)}
pids := []peer.ID{"testpeer1", "testpeer2", "testpeer3", "testpeer4"}
good_tcp := addrWithPort(t, 20)
goodTCP := addrWithPort(t, 20)

ctx := context.Background()
resch := make(chan dialResult)
Expand All @@ -143,7 +143,7 @@ func TestFDLimiting(t *testing.T) {
l.AddDialJob(&dialJob{
ctx: ctx,
peer: pid,
addr: good_tcp,
addr: goodTCP,
resp: resch,
})
}
Expand Down Expand Up @@ -175,10 +175,10 @@ func TestTokenRedistribution(t *testing.T) {
df := func(ctx context.Context, p peer.ID, a ma.Multiaddr) (conn.Conn, error) {
if tcpPortOver(a, 10) {
return (conn.Conn)(nil), nil
} else {
<-hangchs[p]
return nil, fmt.Errorf("test bad dial")
}

<-hangchs[p]
return nil, fmt.Errorf("test bad dial")
}
l := newDialLimiterWithParams(df, 8, 4)

Expand Down Expand Up @@ -264,10 +264,10 @@ func TestStressLimiter(t *testing.T) {
df := func(ctx context.Context, p peer.ID, a ma.Multiaddr) (conn.Conn, error) {
if tcpPortOver(a, 1000) {
return conn.Conn(nil), nil
} else {
time.Sleep(time.Millisecond * time.Duration(5+rand.Intn(100)))
return nil, fmt.Errorf("test bad dial")
}

time.Sleep(time.Millisecond * time.Duration(5+rand.Intn(100)))
return nil, fmt.Errorf("test bad dial")
}

l := newDialLimiterWithParams(df, 20, 5)
Expand Down
8 changes: 7 additions & 1 deletion p2p/net/swarm/swarm.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// package swarm implements a connection muxer with a pair of channels
// Package swarm implements a connection muxer with a pair of channels
// to synchronize all network communication.
package swarm

Expand Down Expand Up @@ -34,6 +34,8 @@ import (

var log = logging.Logger("swarm2")

// PSTransport is the default peerstream transport that will be used by
// any libp2p swarms.
var PSTransport pst.Transport

func init() {
Expand Down Expand Up @@ -143,6 +145,8 @@ func (s *Swarm) teardown() error {
return s.swarm.Close()
}

// AddAddrFilter adds a multiaddr filter to the set of filters the swarm will
// use to determine which addresses not to dial to.
func (s *Swarm) AddAddrFilter(f string) error {
m, err := mafilter.NewMask(f)
if err != nil {
Expand All @@ -165,6 +169,7 @@ func filterAddrs(listenAddrs []ma.Multiaddr) ([]ma.Multiaddr, error) {
return listenAddrs, nil
}

// Listen sets up listeners for all of the given addresses
func (s *Swarm) Listen(addrs ...ma.Multiaddr) error {
addrs, err := filterAddrs(addrs)
if err != nil {
Expand Down Expand Up @@ -286,6 +291,7 @@ func (s *Swarm) LocalPeer() peer.ID {
return s.local
}

// Backoff returns the dialbackoff object for this swarm.
func (s *Swarm) Backoff() *dialbackoff {
return &s.backf
}
Expand Down
2 changes: 1 addition & 1 deletion p2p/net/swarm/swarm_addr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func TestDialBadAddrs(t *testing.T) {
p := testutil.RandPeerIDFatal(t)
s.peers.AddAddr(p, a, pstore.PermanentAddrTTL)
if _, err := s.Dial(ctx, p); err == nil {
t.Error("swarm should not dial: %s", m)
t.Errorf("swarm should not dial: %s", p)
}
}

Expand Down
3 changes: 2 additions & 1 deletion p2p/net/swarm/swarm_conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
context "golang.org/x/net/context"
)

// a Conn is a simple wrapper around a ps.Conn that also exposes
// Conn is a simple wrapper around a ps.Conn that also exposes
// some of the methods from the underlying conn.Conn.
// There's **five** "layers" to each connection:
// * 0. the net.Conn - underlying net.Conn (TCP/UDP/UTP/etc)
Expand Down Expand Up @@ -87,6 +87,7 @@ func (c *Conn) NewStream() (inet.Stream, error) {
return inet.Stream(s), err
}

// Close closes the underlying stream connection
func (c *Conn) Close() error {
return c.StreamConn().Close()
}
Expand Down
24 changes: 15 additions & 9 deletions p2p/net/swarm/swarm_dial.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,15 @@ import (
// retry dialAttempt x

var (
// ErrDialBackoff is returned by the backoff code when a given peer has
// been dialed too frequently
ErrDialBackoff = errors.New("dial backoff")
ErrDialFailed = errors.New("dial attempt failed")
ErrDialToSelf = errors.New("dial to self attempted")

// ErrDialFailed is returned when connecting to a peer has ultimately failed
ErrDialFailed = errors.New("dial attempt failed")

// ErrDialToSelf is returned if we attempt to dial our own peer
ErrDialToSelf = errors.New("dial to self attempted")
)

// dialAttempts governs how many times a goroutine will try to dial a given peer.
Expand All @@ -45,7 +51,7 @@ const defaultPerPeerRateLimit = 8
// DialTimeout is the amount of time each dial attempt has. We can think about making
// this larger down the road, or putting more granular timeouts (i.e. within each
// subcomponent of Dial)
var DialTimeout time.Duration = time.Second * 10
var DialTimeout = time.Second * 10

// dialsync is a small object that helps manage ongoing dials.
// this way, if we receive many simultaneous dial requests, one
Expand Down Expand Up @@ -320,13 +326,13 @@ func (s *Swarm) dial(ctx context.Context, p peer.ID) (*Conn, error) {
}

ila, _ := s.InterfaceListenAddresses()
subtract_filter := addrutil.SubtractFilter(append(ila, s.peers.Addrs(s.local)...)...)
subtractFilter := addrutil.SubtractFilter(append(ila, s.peers.Addrs(s.local)...)...)

// get live channel of addresses for peer, filtered by the given filters
/*
remoteAddrChan := s.peers.AddrsChan(ctx, p,
addrutil.AddrUsableFilter,
subtract_filter,
subtractFilter,
s.Filters.AddrBlocked)
*/

Expand All @@ -339,13 +345,13 @@ func (s *Swarm) dial(ctx context.Context, p peer.ID) (*Conn, error) {
that we previously had (halting a dial when we run out of addrs)
*/
paddrs := s.peers.Addrs(p)
good_addrs := addrutil.FilterAddrs(paddrs,
goodAddrs := addrutil.FilterAddrs(paddrs,
addrutil.AddrUsableFunc,
subtract_filter,
subtractFilter,
addrutil.FilterNeg(s.Filters.AddrBlocked),
)
remoteAddrChan := make(chan ma.Multiaddr, len(good_addrs))
for _, a := range good_addrs {
remoteAddrChan := make(chan ma.Multiaddr, len(goodAddrs))
for _, a := range goodAddrs {
remoteAddrChan <- a
}
close(remoteAddrChan)
Expand Down
4 changes: 2 additions & 2 deletions p2p/net/swarm/swarm_net.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (n *Network) Peers() []peer.ID {
return n.Swarm().Peers()
}

// Peers returns the Peerstore, which tracks known peers
// Peerstore returns the Peerstore, which tracks known peers
func (n *Network) Peerstore() pstore.Peerstore {
return n.Swarm().peers
}
Expand Down Expand Up @@ -142,7 +142,7 @@ func (n *Network) NewStream(ctx context.Context, p peer.ID) (inet.Stream, error)
return inet.Stream(s), nil
}

// SetHandler sets the protocol handler on the Network's Muxer.
// SetStreamHandler sets the protocol handler on the Network's Muxer.
// This operation is threadsafe.
func (n *Network) SetStreamHandler(h inet.StreamHandler) {
n.Swarm().SetStreamHandler(h)
Expand Down
2 changes: 1 addition & 1 deletion p2p/net/swarm/swarm_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
ps "github.com/jbenet/go-peerstream"
)

// a Stream is a wrapper around a ps.Stream that exposes a way to get
// 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
Expand Down

0 comments on commit d247ef6

Please sign in to comment.