This repository was archived by the owner on Aug 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Integration with bitswap #19
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# API | ||
|
||
```js | ||
const BlockService = require('ipfs-block-service') | ||
``` | ||
|
||
### `new BlockService(repo)` | ||
|
||
Creates a new block service backed by [IPFS Repo][repo] `repo` for storage. | ||
|
||
### `goOnline(bitswap)` | ||
|
||
Add a bitswap instance that communicates with the network to retreive blocks | ||
that are not in the local store. | ||
|
||
If the node is online all requests for blocks first check locally and | ||
afterwards ask the network for the blocks. | ||
|
||
### `goOffline()` | ||
|
||
Remove the bitswap instance and fall back to offline mode. | ||
|
||
### `isOnline()` | ||
|
||
Returns a `Boolean` indicating if the block service is online or not. | ||
|
||
### `addBlock(block, callback(err))` | ||
|
||
Asynchronously adds a block instance to the underlying repo. | ||
|
||
### `addBlocks(blocks, callback(err))` | ||
|
||
Asynchronously adds an array of block instances to the underlying repo. | ||
|
||
*Does not guarantee atomicity.* | ||
|
||
### `getBlock(multihash, callback(err, block))` | ||
|
||
Asynchronously returns the block whose content multihash matches `multihash`. | ||
Returns an error (`err.code === 'ENOENT'`) if the block does not exist. | ||
|
||
If the block could not be found, expect `err.code` to be `'ENOENT'`. | ||
|
||
### `getBlocks(multihashes, callback(err, blocks))` | ||
|
||
Asynchronously returns the blocks whose content multihashes match the array | ||
`multihashes`. | ||
|
||
`blocks` is an object that maps each `multihash` to an object of the form | ||
|
||
```js | ||
{ | ||
err: Error | ||
block: Block | ||
} | ||
``` | ||
|
||
Expect `blocks[multihash].err.code === 'ENOENT'` and `blocks[multihash].block | ||
=== null` if a block did not exist. | ||
|
||
*Does not guarantee atomicity.* | ||
|
||
### `deleteBlock(multihash, callback(err))` | ||
|
||
Asynchronously deletes the block from the store with content multihash matching | ||
`multihash`, if it exists. | ||
|
||
### `bs.deleteBlocks(multihashes, callback(err))` | ||
|
||
Asynchronously deletes all blocks from the store with content multihashes matching | ||
from the array `multihashes`. | ||
|
||
*Does not guarantee atomicity.* | ||
|
||
[multihash]: https://github.com/jbenet/js-multihash | ||
[repo]: https://github.com/ipfs/specs/tree/master/repo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,107 @@ | ||
'use strict' | ||
|
||
exports = module.exports = require('./block-service.js') | ||
const async = require('async') | ||
|
||
// BlockService is a hybrid block datastore. It stores data in a local | ||
// datastore and may retrieve data from a remote Exchange. | ||
// It uses an internal `datastore.Datastore` instance to store values. | ||
module.exports = class BlockService { | ||
constructor (ipfsRepo) { | ||
this._repo = ipfsRepo | ||
this._bitswap = null | ||
} | ||
|
||
goOnline (bitswap) { | ||
this._bitswap = bitswap | ||
} | ||
|
||
goOffline () { | ||
this._bitswap = null | ||
} | ||
|
||
isOnline () { | ||
return this._bitswap != null | ||
} | ||
|
||
addBlock (block, extension, callback) { | ||
if (this.isOnline()) { | ||
if (typeof extension === 'function') { | ||
callback = extension | ||
extension = undefined | ||
} | ||
|
||
this._bitswap.hasBlock(block, callback) | ||
} else { | ||
this._repo.datastore.put(block, extension, callback) | ||
} | ||
} | ||
|
||
addBlocks (blocks, callback) { | ||
if (!Array.isArray(blocks)) { | ||
return callback(new Error('expects an array of Blocks')) | ||
} | ||
|
||
async.eachLimit(blocks, 100, (block, next) => { | ||
this.addBlock(block, next) | ||
}, callback) | ||
} | ||
|
||
getBlock (key, extension, callback) { | ||
if (this.isOnline()) { | ||
if (typeof extension === 'function') { | ||
callback = extension | ||
extension = undefined | ||
} | ||
|
||
this._bitswap.getBlock(key, callback) | ||
} else { | ||
this._repo.datastore.get(key, extension, callback) | ||
} | ||
} | ||
|
||
getBlocks (multihashes, extension, callback) { | ||
if (typeof extension === 'function') { | ||
callback = extension | ||
extension = undefined | ||
} | ||
|
||
if (!Array.isArray(multihashes)) { | ||
return callback(new Error('Invalid batch of multihashes')) | ||
} | ||
|
||
var results = {} | ||
|
||
async.eachLimit(multihashes, 100, (multihash, next) => { | ||
this.getBlock(multihash, extension, (err, block) => { | ||
results[multihash] = { | ||
err: err, | ||
block: block | ||
} | ||
next() | ||
}) | ||
}, (err) => { | ||
callback(err, results) | ||
}) | ||
} | ||
|
||
deleteBlock (key, extension, callback) { | ||
this._repo.datastore.delete(key, extension, callback) | ||
} | ||
|
||
deleteBlocks (multihashes, extension, callback) { | ||
if (typeof extension === 'function') { | ||
callback = extension | ||
extension = undefined | ||
} | ||
|
||
if (!Array.isArray(multihashes)) { | ||
return callback(new Error('Invalid batch of multihashes')) | ||
} | ||
|
||
async.eachLimit(multihashes, 100, (multihash, next) => { | ||
this.deleteBlock(multihash, extension, next) | ||
}, (err) => { | ||
callback(err) | ||
}) | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, bitswap will check the repo if it already has the block? (Thought that logic would be here, but having bitswap doing the job is also fine)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can docs be improved along the way too, please?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I need that logic in bitswap to be sure that no inefficiencies happen, so no need to replicate it here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@diasdavid done