Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
94f04c7f
Commit
94f04c7f
authored
Nov 20, 2014
by
Juan Batiz-Benet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
net: add Connectedness var.
parent
26e76561
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
59 additions
and
16 deletions
+59
-16
core/bootstrap.go
core/bootstrap.go
+1
-1
net/interface.go
net/interface.go
+24
-2
net/net.go
net/net.go
+10
-1
routing/dht/ext_test.go
routing/dht/ext_test.go
+24
-12
No files found.
core/bootstrap.go
View file @
94f04c7f
...
...
@@ -64,7 +64,7 @@ func bootstrap(ctx context.Context,
var
notConnected
[]
peer
.
Peer
for
_
,
p
:=
range
bootstrapPeers
{
if
!
n
.
Is
Connected
(
p
)
{
if
n
.
Connected
ness
(
p
)
!=
inet
.
Connected
{
notConnected
=
append
(
notConnected
,
p
)
}
}
...
...
net/interface.go
View file @
94f04c7f
...
...
@@ -26,8 +26,8 @@ type Network interface {
// ClosePeer connection to peer
ClosePeer
(
peer
.
Peer
)
error
//
Is
Connected returns
whether a connection to given peer exists.
Is
Connected
(
peer
.
Peer
)
bool
// Connected
ness
returns
a state signaling connection capabilities
Connected
ness
(
peer
.
Peer
)
Connectedness
// GetProtocols returns the protocols registered in the network.
GetProtocols
()
*
mux
.
ProtocolMap
...
...
@@ -74,4 +74,26 @@ type Dialer interface {
// DialPeer attempts to establish a connection to a given peer
DialPeer
(
context
.
Context
,
peer
.
Peer
)
error
// Connectedness returns a state signaling connection capabilities
Connectedness
(
peer
.
Peer
)
Connectedness
}
// Connectedness signals the capacity for a connection with a given node.
// It is used to signal to services and other peers whether a node is reachable.
type
Connectedness
int
const
(
// NotConnected means no connection to peer, and no extra information (default)
NotConnected
Connectedness
=
0
// Connected means has an open, live connection to peer
Connected
// CanConnect means recently connected to peer, terminated gracefully
CanConnect
// CannotConnect means recently attempted connecting but failed to connect.
// (should signal "made effort, failed")
CannotConnect
)
net/net.go
View file @
94f04c7f
//
p
ackage net provides an interface for ipfs to interact with the network through
//
P
ackage net provides an interface for ipfs to interact with the network through
package
net
import
(
...
...
@@ -126,3 +126,12 @@ func (n *IpfsNetwork) ListenAddresses() []ma.Multiaddr {
func
(
n
*
IpfsNetwork
)
InterfaceListenAddresses
()
([]
ma
.
Multiaddr
,
error
)
{
return
n
.
swarm
.
InterfaceListenAddresses
()
}
// Connectedness returns a state signaling connection capabilities
// For now only returns Connecter || NotConnected. Expand into more later.
func
(
n
*
IpfsNetwork
)
Connectedness
(
p
peer
.
Peer
)
Connectedness
{
if
n
.
swarm
.
GetConnection
(
p
.
ID
())
!=
nil
{
return
Connected
}
return
NotConnected
}
routing/dht/ext_test.go
View file @
94f04c7f
...
...
@@ -8,6 +8,7 @@ import (
context
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto"
ds
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore"
inet
"github.com/jbenet/go-ipfs/net"
msg
"github.com/jbenet/go-ipfs/net/message"
mux
"github.com/jbenet/go-ipfs/net/mux"
peer
"github.com/jbenet/go-ipfs/peer"
...
...
@@ -79,6 +80,7 @@ func (f *fauxSender) SendMessage(ctx context.Context, m msg.NetMessage) error {
// fauxNet is a standin for a swarm.Network in order to more easily recreate
// different testing scenarios
type
fauxNet
struct
{
local
peer
.
Peer
}
// DialPeer attempts to establish a connection to a given peer
...
...
@@ -86,6 +88,10 @@ func (f *fauxNet) DialPeer(context.Context, peer.Peer) error {
return
nil
}
func
(
f
*
fauxNet
)
LocalPeer
()
peer
.
Peer
{
return
f
.
local
}
// ClosePeer connection to peer
func
(
f
*
fauxNet
)
ClosePeer
(
peer
.
Peer
)
error
{
return
nil
...
...
@@ -96,6 +102,11 @@ func (f *fauxNet) IsConnected(peer.Peer) (bool, error) {
return
true
,
nil
}
// Connectedness returns whether a connection to given peer exists.
func
(
f
*
fauxNet
)
Connectedness
(
peer
.
Peer
)
inet
.
Connectedness
{
return
inet
.
Connected
}
// GetProtocols returns the protocols registered in the network.
func
(
f
*
fauxNet
)
GetProtocols
()
*
mux
.
ProtocolMap
{
return
nil
}
...
...
@@ -120,13 +131,13 @@ func TestGetFailures(t *testing.T) {
t
.
SkipNow
()
}
ctx
:=
context
.
Background
()
fn
:=
&
fauxNet
{}
fs
:=
&
fauxSender
{}
peerstore
:=
peer
.
NewPeerstore
()
local
:=
makePeerString
(
t
,
""
)
ctx
:=
context
.
Background
()
fn
:=
&
fauxNet
{
local
}
fs
:=
&
fauxSender
{}
d
:=
NewDHT
(
ctx
,
local
,
peerstore
,
fn
,
fs
,
ds
.
NewMapDatastore
())
other
:=
makePeerString
(
t
,
""
)
d
.
Update
(
ctx
,
other
)
...
...
@@ -219,14 +230,14 @@ func TestNotFound(t *testing.T) {
t
.
SkipNow
()
}
ctx
:=
context
.
Background
()
fn
:=
&
fauxNet
{}
fs
:=
&
fauxSender
{}
local
:=
makePeerString
(
t
,
""
)
peerstore
:=
peer
.
NewPeerstore
()
peerstore
.
Add
(
local
)
ctx
:=
context
.
Background
()
fn
:=
&
fauxNet
{
local
}
fs
:=
&
fauxSender
{}
d
:=
NewDHT
(
ctx
,
local
,
peerstore
,
fn
,
fs
,
ds
.
NewMapDatastore
())
var
ps
[]
peer
.
Peer
...
...
@@ -285,14 +296,15 @@ func TestNotFound(t *testing.T) {
func
TestLessThanKResponses
(
t
*
testing
.
T
)
{
// t.Skip("skipping test because it makes a lot of output")
ctx
:=
context
.
Background
()
u
.
Debug
=
false
fn
:=
&
fauxNet
{}
fs
:=
&
fauxSender
{}
local
:=
makePeerString
(
t
,
""
)
peerstore
:=
peer
.
NewPeerstore
()
peerstore
.
Add
(
local
)
ctx
:=
context
.
Background
()
u
.
Debug
=
false
fn
:=
&
fauxNet
{
local
}
fs
:=
&
fauxSender
{}
d
:=
NewDHT
(
ctx
,
local
,
peerstore
,
fn
,
fs
,
ds
.
NewMapDatastore
())
var
ps
[]
peer
.
Peer
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment