git ssb

0+

cel / pull-git-remote-helper



Tree: b2cf98073f3c52efa61e1a9d9a2a6b4af4944906

Files: b2cf98073f3c52efa61e1a9d9a2a6b4af4944906 / test / remote / git-remote-empty.js

1209 bytesRaw
1#!/usr/bin/env node
2
3var toPull = require('stream-to-pull-stream')
4var pull = require('pull-stream')
5var util = require('../../util')
6
7process.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
14pull(
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, length)
28 process.send({object: {
29 type: type,
30 data: buf.toString('ascii'),
31 length: length,
32 hash: hasher.digest('hex')
33 }})
34 readObject(null, next)
35 })
36 )
37 })
38 },
39 refSink: pull.drain(function (ref) {
40 process.send({ref: ref})
41 })
42 }),
43 toPull(process.stdout, function (err) {
44 if (err)
45 throw err
46 process.disconnect()
47 })
48)
49

Built with git-ssb-web