Files: 666eaeb2e3d956c1c7e70c3e279e5b993a71a829 / test / remote / git-remote-empty.js
1287 bytesRaw
1 | |
2 | |
3 | var toPull = require('stream-to-pull-stream') |
4 | var pull = require('pull-stream') |
5 | var util = require('../../util') |
6 | |
7 | process.on('uncaughtException', function (err) { |
8 | if (err.stack) |
9 | err = {stack: err.stack, message: err.message} |
10 | process.send({error: err}) |
11 | process.exit(1) |
12 | }) |
13 | |
14 | pull( |
15 | toPull(process.stdin), |
16 | require('../../')({ |
17 | objectSink: function (readObject) { |
18 | readObject(null, function next(end, type, length, read) { |
19 | if (end === true) return |
20 | if (end) throw end |
21 | var hasher = util.createGitObjectHash(type, length) |
22 | pull( |
23 | read, |
24 | hasher, |
25 | pull.collect(function (err, bufs) { |
26 | if (err) throw err |
27 | var buf = Buffer.concat(bufs) |
28 | console.error('obj', type, length, JSON.stringify(buf.toString('ascii'))) |
29 | process.send({object: { |
30 | type: type, |
31 | data: buf.toString('ascii'), |
32 | length: length, |
33 | hash: hasher.digest('hex') |
34 | }}) |
35 | readObject(null, next) |
36 | }) |
37 | ) |
38 | }) |
39 | }, |
40 | refSink: pull.drain(function (ref) { |
41 | process.send({ref: ref}) |
42 | }) |
43 | }), |
44 | toPull(process.stdout, function (err) { |
45 | if (err) |
46 | throw err |
47 | process.disconnect() |
48 | }) |
49 | ) |
50 |
Built with git-ssb-web