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-routing
Commits
7cb304d4
Commit
7cb304d4
authored
Dec 15, 2014
by
Jeromy
Committed by
Juan Batiz-Benet
Dec 17, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rewrite sendWantlistToProviders
parent
50926368
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
46 deletions
+3
-46
dht/routing.go
dht/routing.go
+3
-2
dht/util.go
dht/util.go
+0
-44
No files found.
dht/routing.go
View file @
7cb304d4
...
...
@@ -11,6 +11,7 @@ import (
pb
"github.com/jbenet/go-ipfs/routing/dht/pb"
kb
"github.com/jbenet/go-ipfs/routing/kbucket"
u
"github.com/jbenet/go-ipfs/util"
pset
"github.com/jbenet/go-ipfs/util/peerset"
)
// asyncQueryBuffer is the size of buffered channels in async queries. This
...
...
@@ -140,7 +141,7 @@ func (dht *IpfsDHT) FindProvidersAsync(ctx context.Context, key u.Key, count int
func
(
dht
*
IpfsDHT
)
findProvidersAsyncRoutine
(
ctx
context
.
Context
,
key
u
.
Key
,
count
int
,
peerOut
chan
peer
.
Peer
)
{
defer
close
(
peerOut
)
ps
:=
n
ewPeerSet
()
ps
:=
pset
.
N
ewPeerSet
()
provs
:=
dht
.
providers
.
GetProviders
(
ctx
,
key
)
for
_
,
p
:=
range
provs
{
// NOTE: assuming that this list of peers is unique
...
...
@@ -207,7 +208,7 @@ func (dht *IpfsDHT) findProvidersAsyncRoutine(ctx context.Context, key u.Key, co
}
}
func
(
dht
*
IpfsDHT
)
addPeerListAsync
(
ctx
context
.
Context
,
k
u
.
Key
,
peers
[]
*
pb
.
Message_Peer
,
ps
*
peerSet
,
count
int
,
out
chan
peer
.
Peer
)
{
func
(
dht
*
IpfsDHT
)
addPeerListAsync
(
ctx
context
.
Context
,
k
u
.
Key
,
peers
[]
*
pb
.
Message_Peer
,
ps
*
p
set
.
P
eerSet
,
count
int
,
out
chan
peer
.
Peer
)
{
var
wg
sync
.
WaitGroup
for
_
,
pbp
:=
range
peers
{
wg
.
Add
(
1
)
...
...
dht/util.go
View file @
7cb304d4
...
...
@@ -2,8 +2,6 @@ package dht
import
(
"sync"
peer
"github.com/jbenet/go-ipfs/peer"
)
// Pool size is the number of nodes used for group find/set RPC calls
...
...
@@ -39,45 +37,3 @@ func (c *counter) Size() (s int) {
c
.
mut
.
Unlock
()
return
}
// peerSet is a threadsafe set of peers
type
peerSet
struct
{
ps
map
[
string
]
bool
lk
sync
.
RWMutex
}
func
newPeerSet
()
*
peerSet
{
ps
:=
new
(
peerSet
)
ps
.
ps
=
make
(
map
[
string
]
bool
)
return
ps
}
func
(
ps
*
peerSet
)
Add
(
p
peer
.
Peer
)
{
ps
.
lk
.
Lock
()
ps
.
ps
[
string
(
p
.
ID
())]
=
true
ps
.
lk
.
Unlock
()
}
func
(
ps
*
peerSet
)
Contains
(
p
peer
.
Peer
)
bool
{
ps
.
lk
.
RLock
()
_
,
ok
:=
ps
.
ps
[
string
(
p
.
ID
())]
ps
.
lk
.
RUnlock
()
return
ok
}
func
(
ps
*
peerSet
)
Size
()
int
{
ps
.
lk
.
RLock
()
defer
ps
.
lk
.
RUnlock
()
return
len
(
ps
.
ps
)
}
func
(
ps
*
peerSet
)
AddIfSmallerThan
(
p
peer
.
Peer
,
maxsize
int
)
bool
{
var
success
bool
ps
.
lk
.
Lock
()
if
_
,
ok
:=
ps
.
ps
[
string
(
p
.
ID
())];
!
ok
&&
len
(
ps
.
ps
)
<
maxsize
{
success
=
true
ps
.
ps
[
string
(
p
.
ID
())]
=
true
}
ps
.
lk
.
Unlock
()
return
success
}
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