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
881447e6
Commit
881447e6
authored
10 years ago
by
Brian Tiger Chow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refac(bitswap) use blockstore
parent
15a823d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
26 deletions
+19
-26
bitswap/bitswap.go
bitswap/bitswap.go
+19
-26
No files found.
bitswap/bitswap.go
View file @
881447e6
...
...
@@ -11,6 +11,7 @@ import (
bsnet
"github.com/jbenet/go-ipfs/bitswap/network"
notifications
"github.com/jbenet/go-ipfs/bitswap/notifications"
blocks
"github.com/jbenet/go-ipfs/blocks"
blockstore
"github.com/jbenet/go-ipfs/blockstore"
peer
"github.com/jbenet/go-ipfs/peer"
routing
"github.com/jbenet/go-ipfs/routing"
u
"github.com/jbenet/go-ipfs/util"
...
...
@@ -35,8 +36,8 @@ type BitSwap struct {
// sender delivers messages on behalf of the session
sender
bsnet
.
NetworkAdapter
//
data
store is the local database
// Ledgers of known
data
store
ds
.
Data
store
//
block
store is the local database
block
store
blockstore
.
Block
store
// routing interface for communication
routing
routing
.
IpfsRouting
...
...
@@ -66,7 +67,7 @@ func NewSession(parent context.Context, s bsnet.NetworkService, p *peer.Peer, d
receiver
:=
bsnet
.
Forwarder
{}
bs
:=
&
BitSwap
{
peer
:
p
,
data
store
:
d
,
block
store
:
blockstore
.
NewBlockstore
(
d
)
,
partners
:
LedgerMap
{},
wantList
:
KeySet
{},
routing
:
r
,
...
...
@@ -151,7 +152,9 @@ func (bs *BitSwap) HasBlock(blk blocks.Block) error {
return
bs
.
routing
.
Provide
(
blk
.
Key
())
}
// TODO(brian): get a return value
func
(
bs
*
BitSwap
)
SendBlock
(
p
*
peer
.
Peer
,
b
blocks
.
Block
)
{
u
.
DOut
(
"Sending block to peer.
\n
"
)
message
:=
bsmsg
.
New
()
// TODO(brian): change interface to accept value instead of pointer
message
.
AppendBlock
(
b
)
...
...
@@ -162,40 +165,26 @@ func (bs *BitSwap) SendBlock(p *peer.Peer, b blocks.Block) {
// and then if we do, check the ledger for whether or not we should send it.
func
(
bs
*
BitSwap
)
peerWantsBlock
(
p
*
peer
.
Peer
,
wanted
u
.
Key
)
{
u
.
DOut
(
"peer [%s] wants block [%s]
\n
"
,
p
.
ID
.
Pretty
(),
wanted
.
Pretty
())
ledger
:=
bs
.
getLedger
(
p
)
blk_i
,
err
:=
bs
.
datastore
.
Get
(
wanted
.
DatastoreKey
())
if
err
!=
nil
{
if
err
==
ds
.
ErrNotFound
{
ledger
.
Wants
(
wanted
)
}
u
.
PErr
(
"datastore get error: %v
\n
"
,
err
)
if
!
ledger
.
ShouldSend
()
{
return
}
blk
,
ok
:=
b
lk_i
.
([]
by
te
)
if
!
ok
{
u
.
PErr
(
"data conversion error.
\n
"
)
bl
oc
k
,
err
:=
b
s
.
blockstore
.
Get
(
wan
te
d
)
if
err
!=
nil
{
// TODO(brian): log/return the error
ledger
.
Wants
(
wanted
)
return
}
if
ledger
.
ShouldSend
()
{
u
.
DOut
(
"Sending block to peer.
\n
"
)
bblk
,
err
:=
blocks
.
NewBlock
(
blk
)
if
err
!=
nil
{
u
.
PErr
(
"newBlock error: %v
\n
"
,
err
)
return
}
bs
.
SendBlock
(
p
,
*
bblk
)
ledger
.
SentBytes
(
len
(
blk
))
}
else
{
u
.
DOut
(
"Decided not to send block."
)
}
bs
.
SendBlock
(
p
,
*
block
)
ledger
.
SentBytes
(
numBytes
(
*
block
))
}
// TODO(brian): return error
func
(
bs
*
BitSwap
)
blockReceive
(
p
*
peer
.
Peer
,
blk
blocks
.
Block
)
{
u
.
DOut
(
"blockReceive: %s
\n
"
,
blk
.
Key
()
.
Pretty
())
err
:=
bs
.
data
store
.
Put
(
ds
.
NewKey
(
string
(
blk
.
Key
())),
blk
.
Data
)
err
:=
bs
.
block
store
.
Put
(
blk
)
if
err
!=
nil
{
u
.
PErr
(
"blockReceive error: %v
\n
"
,
err
)
return
...
...
@@ -255,3 +244,7 @@ func (bs *BitSwap) ReceiveMessage(
}
return
nil
,
nil
,
errors
.
New
(
"TODO implement"
)
}
func
numBytes
(
b
blocks
.
Block
)
int
{
return
len
(
b
.
Data
)
}
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