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
1d5b9036
Commit
1d5b9036
authored
10 years ago
by
Juan Batiz-Benet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added cancel func calls previously ignored
parent
dfe2b167
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
27 additions
and
13 deletions
+27
-13
core/commands/ping.go
core/commands/ping.go
+4
-2
core/corenet/net.go
core/corenet/net.go
+2
-1
diagnostics/diag.go
diagnostics/diag.go
+3
-2
exchange/bitswap/bitswap.go
exchange/bitswap/bitswap.go
+4
-2
merkledag/merkledag.go
merkledag/merkledag.go
+2
-1
namesys/publisher.go
namesys/publisher.go
+3
-1
p2p/net/swarm/swarm_dial.go
p2p/net/swarm/swarm_dial.go
+2
-1
pin/pin.go
pin/pin.go
+3
-1
routing/dht/dht.go
routing/dht/dht.go
+2
-1
unixfs/tar/reader.go
unixfs/tar/reader.go
+2
-1
No files found.
core/commands/ping.go
View file @
1d5b9036
...
...
@@ -126,7 +126,8 @@ func pingPeer(ctx context.Context, n *core.IpfsNode, pid peer.ID, numPings int)
Text
:
fmt
.
Sprintf
(
"Looking up peer %s"
,
pid
.
Pretty
()),
}
ctx
,
_
:=
context
.
WithTimeout
(
ctx
,
kPingTimeout
)
ctx
,
cancel
:=
context
.
WithTimeout
(
ctx
,
kPingTimeout
)
defer
cancel
()
p
,
err
:=
n
.
Routing
.
FindPeer
(
ctx
,
pid
)
if
err
!=
nil
{
outChan
<-
&
PingResult
{
Text
:
fmt
.
Sprintf
(
"Peer lookup error: %s"
,
err
)}
...
...
@@ -147,7 +148,8 @@ func pingPeer(ctx context.Context, n *core.IpfsNode, pid peer.ID, numPings int)
default
:
}
ctx
,
_
:=
context
.
WithTimeout
(
ctx
,
kPingTimeout
)
ctx
,
cancel
:=
context
.
WithTimeout
(
ctx
,
kPingTimeout
)
defer
cancel
()
took
,
err
:=
n
.
Routing
.
Ping
(
ctx
,
pid
)
if
err
!=
nil
{
log
.
Debugf
(
"Ping error: %s"
,
err
)
...
...
This diff is collapsed.
Click to expand it.
core/corenet/net.go
View file @
1d5b9036
...
...
@@ -54,7 +54,8 @@ func Listen(nd *core.IpfsNode, protocol string) (*ipfsListener, error) {
}
func
Dial
(
nd
*
core
.
IpfsNode
,
p
peer
.
ID
,
protocol
string
)
(
net
.
Stream
,
error
)
{
ctx
,
_
:=
context
.
WithTimeout
(
nd
.
Context
(),
time
.
Second
*
30
)
ctx
,
cancel
:=
context
.
WithTimeout
(
nd
.
Context
(),
time
.
Second
*
30
)
defer
cancel
()
err
:=
nd
.
PeerHost
.
Connect
(
ctx
,
peer
.
PeerInfo
{
ID
:
p
})
if
err
!=
nil
{
return
nil
,
err
...
...
This diff is collapsed.
Click to expand it.
diagnostics/diag.go
View file @
1d5b9036
...
...
@@ -14,12 +14,12 @@ import (
ggio
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/gogoprotobuf/io"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/goprotobuf/proto"
ctxutil
"github.com/jbenet/go-ipfs/util/ctx"
context
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
host
"github.com/jbenet/go-ipfs/p2p/host"
inet
"github.com/jbenet/go-ipfs/p2p/net"
peer
"github.com/jbenet/go-ipfs/p2p/peer"
protocol
"github.com/jbenet/go-ipfs/p2p/protocol"
ctxutil
"github.com/jbenet/go-ipfs/util/ctx"
pb
"github.com/jbenet/go-ipfs/diagnostics/internal/pb"
util
"github.com/jbenet/go-ipfs/util"
...
...
@@ -138,7 +138,8 @@ func newID() string {
// GetDiagnostic runs a diagnostics request across the entire network
func
(
d
*
Diagnostics
)
GetDiagnostic
(
timeout
time
.
Duration
)
([]
*
DiagInfo
,
error
)
{
log
.
Debug
(
"Getting diagnostic."
)
ctx
,
_
:=
context
.
WithTimeout
(
context
.
TODO
(),
timeout
)
ctx
,
cancel
:=
context
.
WithTimeout
(
context
.
TODO
(),
timeout
)
defer
cancel
()
diagID
:=
newID
()
d
.
diagLock
.
Lock
()
...
...
This diff is collapsed.
Click to expand it.
exchange/bitswap/bitswap.go
View file @
1d5b9036
...
...
@@ -269,7 +269,8 @@ func (bs *Bitswap) sendWantlistToProviders(ctx context.Context, entries []wantli
go
func
(
k
u
.
Key
)
{
defer
wg
.
Done
()
child
,
_
:=
context
.
WithTimeout
(
ctx
,
providerRequestTimeout
)
child
,
cancel
:=
context
.
WithTimeout
(
ctx
,
providerRequestTimeout
)
defer
cancel
()
providers
:=
bs
.
network
.
FindProvidersAsync
(
child
,
k
,
maxProvidersPerRequest
)
for
prov
:=
range
providers
{
sendToPeers
<-
prov
...
...
@@ -311,10 +312,11 @@ func (bs *Bitswap) ReceiveMessage(ctx context.Context, p peer.ID, incoming bsmsg
// Should only track *useful* messages in ledger
for
_
,
block
:=
range
incoming
.
Blocks
()
{
hasBlockCtx
,
_
:=
context
.
WithTimeout
(
ctx
,
hasBlockTimeout
)
hasBlockCtx
,
cancel
:=
context
.
WithTimeout
(
ctx
,
hasBlockTimeout
)
if
err
:=
bs
.
HasBlock
(
hasBlockCtx
,
block
);
err
!=
nil
{
log
.
Debug
(
err
)
}
cancel
()
}
var
keys
[]
u
.
Key
...
...
This diff is collapsed.
Click to expand it.
merkledag/merkledag.go
View file @
1d5b9036
...
...
@@ -88,7 +88,8 @@ func (n *dagService) Get(k u.Key) (*Node, error) {
return
nil
,
fmt
.
Errorf
(
"dagService is nil"
)
}
ctx
,
_
:=
context
.
WithTimeout
(
context
.
TODO
(),
time
.
Minute
)
ctx
,
cancel
:=
context
.
WithTimeout
(
context
.
TODO
(),
time
.
Minute
)
defer
cancel
()
// we shouldn't use an arbitrary timeout here.
// since Get doesnt take in a context yet, we give a large upper bound.
// think of an http request. we want it to go on as long as the client requests it.
...
...
This diff is collapsed.
Click to expand it.
namesys/publisher.go
View file @
1d5b9036
...
...
@@ -60,9 +60,11 @@ func (p *ipnsPublisher) Publish(ctx context.Context, k ci.PrivKey, value u.Key)
nameb
:=
u
.
Hash
(
pkbytes
)
namekey
:=
u
.
Key
(
"/pk/"
+
string
(
nameb
))
timectx
,
cancel
:=
context
.
WithDeadline
(
ctx
,
time
.
Now
()
.
Add
(
time
.
Second
*
10
))
defer
cancel
()
log
.
Debugf
(
"Storing pubkey at: %s"
,
namekey
)
// Store associated public key
timectx
,
_
:=
context
.
WithDeadline
(
ctx
,
time
.
Now
()
.
Add
(
time
.
Second
*
10
))
err
=
p
.
routing
.
PutValue
(
timectx
,
namekey
,
pkbytes
)
if
err
!=
nil
{
return
err
...
...
This diff is collapsed.
Click to expand it.
p2p/net/swarm/swarm_dial.go
View file @
1d5b9036
...
...
@@ -227,8 +227,9 @@ func (s *Swarm) gatedDialAttempt(ctx context.Context, p peer.ID) (*Conn, error)
// if it succeeds, dial will add the conn to the swarm itself.
defer
log
.
EventBegin
(
ctx
,
"swarmDialAttemptStart"
,
logdial
)
.
Done
()
ctxT
,
_
:=
context
.
WithTimeout
(
ctx
,
s
.
dialT
)
ctxT
,
cancel
:=
context
.
WithTimeout
(
ctx
,
s
.
dialT
)
conn
,
err
:=
s
.
dial
(
ctxT
,
p
)
cancel
()
s
.
dsync
.
Unlock
(
p
)
log
.
Debugf
(
"dial end %s"
,
conn
)
if
err
!=
nil
{
...
...
This diff is collapsed.
Click to expand it.
pin/pin.go
View file @
1d5b9036
...
...
@@ -172,7 +172,9 @@ func (p *pinner) pinIndirectRecurse(node *mdag.Node) error {
}
func
(
p
*
pinner
)
pinLinks
(
node
*
mdag
.
Node
)
error
{
ctx
,
_
:=
context
.
WithTimeout
(
context
.
Background
(),
time
.
Second
*
60
)
ctx
,
cancel
:=
context
.
WithTimeout
(
context
.
Background
(),
time
.
Second
*
60
)
defer
cancel
()
for
_
,
ng
:=
range
p
.
dserv
.
GetDAG
(
ctx
,
node
)
{
subnode
,
err
:=
ng
.
Get
()
if
err
!=
nil
{
...
...
This diff is collapsed.
Click to expand it.
routing/dht/dht.go
View file @
1d5b9036
...
...
@@ -357,11 +357,12 @@ func (dht *IpfsDHT) PingRoutine(t time.Duration) {
rand
.
Read
(
id
)
peers
:=
dht
.
routingTable
.
NearestPeers
(
kb
.
ConvertKey
(
u
.
Key
(
id
)),
5
)
for
_
,
p
:=
range
peers
{
ctx
,
_
:=
context
.
WithTimeout
(
dht
.
Context
(),
time
.
Second
*
5
)
ctx
,
cancel
:=
context
.
WithTimeout
(
dht
.
Context
(),
time
.
Second
*
5
)
_
,
err
:=
dht
.
Ping
(
ctx
,
p
)
if
err
!=
nil
{
log
.
Debugf
(
"Ping error: %s"
,
err
)
}
cancel
()
}
case
<-
dht
.
Closing
()
:
return
...
...
This diff is collapsed.
Click to expand it.
unixfs/tar/reader.go
View file @
1d5b9036
...
...
@@ -86,7 +86,8 @@ func (r *Reader) writeToBuf(dagnode *mdag.Node, path string, depth int) {
}
r
.
flush
()
ctx
,
_
:=
context
.
WithTimeout
(
context
.
TODO
(),
time
.
Second
*
60
)
ctx
,
cancel
:=
context
.
WithTimeout
(
context
.
TODO
(),
time
.
Second
*
60
)
defer
cancel
()
for
i
,
ng
:=
range
r
.
dag
.
GetDAG
(
ctx
,
dagnode
)
{
childNode
,
err
:=
ng
.
Get
()
...
...
This diff is collapsed.
Click to expand it.
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