feat: new super simplified API

This commit is contained in:
David Dias 2017-03-27 12:26:34 +01:00
parent 5d4d94e75f
commit a6623c1ba2
3 changed files with 53 additions and 124 deletions

View File

@ -168,6 +168,10 @@ class Node extends libp2p {
> Check if libp2p is started > Check if libp2p is started
#### `libp2p.ping(peer [, options], callback)`
> Ping a node in the network
#### `libp2p.peerBook` #### `libp2p.peerBook`
> PeerBook instance of the node > PeerBook instance of the node

View File

@ -34,7 +34,7 @@
}, },
"homepage": "https://github.com/libp2p/js-libp2p", "homepage": "https://github.com/libp2p/js-libp2p",
"devDependencies": { "devDependencies": {
"aegir": "^11.0.0", "aegir": "^11.0.1",
"chai": "^3.5.0", "chai": "^3.5.0",
"dirty-chai": "^1.2.2", "dirty-chai": "^1.2.2",
"pre-commit": "^1.2.2" "pre-commit": "^1.2.2"
@ -42,8 +42,7 @@
"dependencies": { "dependencies": {
"libp2p-ping": "~0.3.2", "libp2p-ping": "~0.3.2",
"libp2p-swarm": "~0.26.19", "libp2p-swarm": "~0.26.19",
"mafmt": "^2.1.6", "multiaddr": "^2.2.3",
"multiaddr": "^2.2.2",
"peer-book": "~0.3.1", "peer-book": "~0.3.1",
"peer-id": "~0.8.4", "peer-id": "~0.8.4",
"peer-info": "~0.8.4" "peer-info": "~0.8.4"

View File

@ -5,8 +5,7 @@ const PeerId = require('peer-id')
const PeerInfo = require('peer-info') const PeerInfo = require('peer-info')
const PeerBook = require('peer-book') const PeerBook = require('peer-book')
const multiaddr = require('multiaddr') const multiaddr = require('multiaddr')
const mafmt = require('mafmt') const EventEmitter = require('events').EventEmitter
const EE = require('events').EventEmitter
const assert = require('assert') const assert = require('assert')
const Ping = require('libp2p-ping') const Ping = require('libp2p-ping')
const setImmediate = require('async/setImmediate') const setImmediate = require('async/setImmediate')
@ -14,10 +13,10 @@ const setImmediate = require('async/setImmediate')
exports = module.exports exports = module.exports
const OFFLINE_ERROR_MESSAGE = 'The libp2p node is not started yet' const OFFLINE_ERROR_MESSAGE = 'The libp2p node is not started yet'
const IPFS_CODE = 421
class Node { class Node extends EventEmitter {
constructor (_modules, _peerInfo, _peerBook, _options) { constructor (_modules, _peerInfo, _peerBook, _options) {
super()
assert(_modules, 'requires modules to equip libp2p with features') assert(_modules, 'requires modules to equip libp2p with features')
assert(_peerInfo, 'requires a PeerInfo instance') assert(_peerInfo, 'requires a PeerInfo instance')
@ -26,8 +25,6 @@ class Node {
this.peerBook = _peerBook || new PeerBook() this.peerBook = _peerBook || new PeerBook()
this.isOnline = false this.isOnline = false
this.discovery = new EE()
this.swarm = new Swarm(this.peerInfo) this.swarm = new Swarm(this.peerInfo)
// Attach stream multiplexers // Attach stream multiplexers
@ -66,9 +63,7 @@ class Node {
let discoveries = this.modules.discovery let discoveries = this.modules.discovery
discoveries = Array.isArray(discoveries) ? discoveries : [discoveries] discoveries = Array.isArray(discoveries) ? discoveries : [discoveries]
discoveries.forEach((discovery) => { discoveries.forEach((discovery) => {
discovery.on('peer', (peerInfo) => { discovery.on('peer', (peerInfo) => this.emit('peer', peerInfo))
this.discovery.emit('peer', peerInfo)
})
}) })
} }
@ -142,88 +137,26 @@ class Node {
this.swarm.close(callback) this.swarm.close(callback)
} }
// isOn () {
// Ping return this.isOnline
//
// TODO
pingById (id, callback) {
assert(this.isOnline, OFFLINE_ERROR_MESSAGE)
callback(new Error('not implemented yet'))
} }
// TODO ping (peer, callback) {
pingByMultiaddr (maddr, callback) { assert(this.isOn, OFFLINE_ERROR_MESSAGE)
assert(this.isOnline, OFFLINE_ERROR_MESSAGE) const peerInfo = this._getPeerInfo(peer)
callback(new Error('not implemented yet'))
}
pingByPeerInfo (peerInfo, callback) {
assert(this.isOnline, OFFLINE_ERROR_MESSAGE)
callback(null, new Ping(this.swarm, peerInfo)) callback(null, new Ping(this.swarm, peerInfo))
} }
// dial (peer, protocol, callback) {
// Dialing methods
//
// TODO
dialById (id, protocol, callback) {
// NOTE: dialById only works if a previous dial was made. This will
// change once we have PeerRouting
assert(this.isOnline, OFFLINE_ERROR_MESSAGE) assert(this.isOnline, OFFLINE_ERROR_MESSAGE)
const peerInfo = this._getPeerInfo(peer)
if (typeof protocol === 'function') { if (typeof protocol === 'function') {
callback = protocol callback = protocol
protocol = undefined protocol = undefined
} }
callback(new Error('not implemented yet')) this.swarm.dial(peerInfo, protocol, (err, conn) => {
}
dialByMultiaddr (maddr, protocol, callback) {
assert(this.isOnline, OFFLINE_ERROR_MESSAGE)
if (typeof protocol === 'function') {
callback = protocol
protocol = undefined
}
if (typeof maddr === 'string') {
maddr = multiaddr(maddr)
}
if (!mafmt.IPFS.matches(maddr.toString())) {
return callback(new Error('multiaddr not valid'))
}
const ipfsIdB58String = maddr.stringTuples().filter((tuple) => {
if (tuple[0] === IPFS_CODE) {
return true
}
})[0][1]
let peer
try {
peer = this.peerBook.getByB58String(ipfsIdB58String)
} catch (err) {
peer = new PeerInfo(PeerId.createFromB58String(ipfsIdB58String))
}
peer.multiaddr.add(maddr)
this.dialByPeerInfo(peer, protocol, callback)
}
dialByPeerInfo (peer, protocol, callback) {
assert(this.isOnline, OFFLINE_ERROR_MESSAGE)
if (typeof protocol === 'function') {
callback = protocol
protocol = undefined
}
this.swarm.dial(peer, protocol, (err, conn) => {
if (err) { if (err) {
return callback(err) return callback(err)
} }
@ -232,52 +165,14 @@ class Node {
}) })
} }
// hangUp (peer, callback) {
// Disconnecting (hangUp) methods
//
hangUpById (id, callback) {
// TODO
callback(new Error('not implemented yet'))
}
hangUpByMultiaddr (maddr, callback) {
assert(this.isOnline, OFFLINE_ERROR_MESSAGE) assert(this.isOnline, OFFLINE_ERROR_MESSAGE)
const peerInfo = this._getPeerInfo(peer)
if (typeof maddr === 'string') { this.peerBook.removeByB58String(peerInfo.id.toB58String())
maddr = multiaddr(maddr)
}
if (!mafmt.IPFS.matches(maddr.toString())) {
return callback(new Error('multiaddr not valid'))
}
const ipfsIdB58String = maddr.stringTuples().filter((tuple) => {
if (tuple[0] === IPFS_CODE) {
return true
}
})[0][1]
try {
const pi = this.peerBook.getByB58String(ipfsIdB58String)
this.hangUpByPeerInfo(pi, callback)
} catch (err) {
// already disconnected
callback()
}
}
hangUpByPeerInfo (peer, callback) {
assert(this.isOnline, OFFLINE_ERROR_MESSAGE)
this.peerBook.removeByB58String(peer.id.toB58String())
this.swarm.hangUp(peer, callback) this.swarm.hangUp(peer, callback)
} }
//
// Protocol multiplexing handling
//
handle (protocol, handlerFunc, matchFunc) { handle (protocol, handlerFunc, matchFunc) {
this.swarm.handle(protocol, handlerFunc, matchFunc) this.swarm.handle(protocol, handlerFunc, matchFunc)
} }
@ -285,6 +180,37 @@ class Node {
unhandle (protocol) { unhandle (protocol) {
this.swarm.unhandle(protocol) this.swarm.unhandle(protocol)
} }
/*
* Helper method to check the data type of peer and convert it to PeerInfo
*/
_getPeerInfo (peer) {
let p
switch (peer) {
case PeerInfo.isPeerInfo(peer): p = peer; break
case multiaddr.isMultiaddr(peer): {
const peerIdB58Str = multiaddr.getPeerId(peer)
try {
p = this.peerBook.getByB58String(peerIdB58Str)
} catch (err) {
p = new PeerInfo(PeerId.createFromB58String(peerIdB58Str))
}
p.multiaddr.add(peer)
} break
case PeerId.isPeerId(peer): {
const peerIdB58Str = peer.toB58String()
try {
p = this.peerBook.getByB58String(peerIdB58Str)
} catch (err) {
// TODO this is where PeerRouting comes into place
throw new Error('No knowledge about: ' + peerIdB58Str)
}
} break
default: throw new Error('Peer type not recognized')
}
return p
}
} }
module.exports = Node module.exports = Node