Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 3f3ce8a

Browse files
JGAntunesdaviddias
authored andcommitted
feat: streamable ping and optional packet number (#723)
1 parent 2dc6969 commit 3f3ce8a

8 files changed

+314
-34
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,9 @@ $ ipfs config --json API.HTTPHeaders.Access-Control-Allow-Methods "[\"PUT\", \"P
252252
- [miscellaneous operations](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md)
253253
- [`ipfs.id([callback])`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md#id)
254254
- [`ipfs.version([callback])`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md#version)
255-
- [`ipfs.ping()`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md#ping)
255+
- [`ipfs.ping(id, [options, callback])`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md#ping)
256+
- `ipfs.pingPullStream(id, [options])`
257+
- `ipfs.pingReadableStream(id, [options])`
256258
- [`ipfs.dns(domain, [callback])`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md#dns)
257259
- [`ipfs.stop([callback])`](https://github.com/ipfs/interface-ipfs-core/tree/master/SPEC/MISCELLANEOUS.md#stop). Alias to `ipfs.shutdown`.
258260

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
"ipfs": "~0.28.2",
7878
"ipfsd-ctl": "~0.30.4",
7979
"pre-commit": "^1.2.2",
80+
"pull-stream": "^3.6.2",
8081
"socket.io": "^2.0.4",
8182
"socket.io-client": "^2.0.4",
8283
"stream-equal": "^1.1.1"

src/ping-pull-stream.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
'use strict'
2+
3+
const toPull = require('stream-to-pull-stream')
4+
const deferred = require('pull-defer')
5+
const moduleConfig = require('./utils/module-config')
6+
7+
module.exports = (arg) => {
8+
const send = moduleConfig(arg)
9+
10+
return (id, opts = {}) => {
11+
// Default number of packtes to 1
12+
if (!opts.n && !opts.count) {
13+
opts.n = 1
14+
}
15+
const request = {
16+
path: 'ping',
17+
args: id,
18+
qs: opts
19+
}
20+
const p = deferred.source()
21+
22+
send(request, (err, stream) => {
23+
if (err) { return p.abort(err) }
24+
p.resolve(toPull.source(stream))
25+
})
26+
27+
return p
28+
}
29+
}

src/ping-readable-stream.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
'use strict'
2+
3+
const Stream = require('readable-stream')
4+
const pump = require('pump')
5+
const moduleConfig = require('./utils/module-config')
6+
7+
module.exports = (arg) => {
8+
const send = moduleConfig(arg)
9+
10+
return (id, opts = {}) => {
11+
// Default number of packtes to 1
12+
if (!opts.n && !opts.count) {
13+
opts.n = 1
14+
}
15+
const request = {
16+
path: 'ping',
17+
args: id,
18+
qs: opts
19+
}
20+
// ndjson streams objects
21+
const pt = new Stream.PassThrough({
22+
objectMode: true
23+
})
24+
25+
send(request, (err, stream) => {
26+
if (err) { return pt.destroy(err) }
27+
28+
pump(stream, pt)
29+
})
30+
31+
return pt
32+
}
33+
}

src/ping.js

+12-12
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,30 @@ const streamToValue = require('./utils/stream-to-value')
77
module.exports = (arg) => {
88
const send = moduleConfig(arg)
99

10-
return promisify((id, callback) => {
10+
return promisify((id, opts, callback) => {
11+
if (typeof opts === 'function') {
12+
callback = opts
13+
opts = {}
14+
}
15+
// Default number of packtes to 1
16+
if (!opts.n && !opts.count) {
17+
opts.n = 1
18+
}
1119
const request = {
1220
path: 'ping',
1321
args: id,
14-
qs: { n: 1 }
22+
qs: opts
1523
}
1624

1725
// Transform the response stream to a value:
18-
// { Success: <boolean>, Time: <number>, Text: <string> }
26+
// [{ Success: <boolean>, Time: <number>, Text: <string> }]
1927
const transform = (res, callback) => {
2028
streamToValue(res, (err, res) => {
2129
if (err) {
2230
return callback(err)
2331
}
2432

25-
// go-ipfs http api currently returns 3 lines for a ping.
26-
// they're a little messed, so take the correct values from each lines.
27-
const pingResult = {
28-
Success: res[1].Success,
29-
Time: res[1].Time,
30-
Text: res[2].Text
31-
}
32-
33-
callback(null, pingResult)
33+
callback(null, res)
3434
})
3535
}
3636

src/utils/load-commands.js

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ function requireCommands () {
3131
object: require('../object'),
3232
pin: require('../pin'),
3333
ping: require('../ping'),
34+
pingReadableStream: require('../ping-readable-stream'),
35+
pingPullStream: require('../ping-pull-stream'),
3436
refs: require('../refs'),
3537
repo: require('../repo'),
3638
stop: require('../stop'),

0 commit comments

Comments
 (0)