aboutsummaryrefslogtreecommitdiff
path: root/git.js
diff options
context:
space:
mode:
authorScott Prager <splinterofchaos@gmail.com>2015-06-06 16:17:35 -0400
committerScott Prager <splinterofchaos@gmail.com>2015-06-06 19:00:15 -0400
commit25bcaeaa0c66cdb9219517dc479444f4d7938c83 (patch)
tree0171d1334128b8e77403321610de7e0437c6556d /git.js
parentff2e993343f689312a51c1bbbf620c05e41a4f62 (diff)
gittorrentd: Use git-upload-pack for pack files.
Add `upload_pack` to the git module to (partially) implement the pack protocol, then use this in gittorrentd instead of `git pack-objects`. This lets us generate packs based off HEAD instead of packing the whole tree each time.
Diffstat (limited to 'git.js')
-rw-r--r--git.js104
1 files changed, 103 insertions, 1 deletions
diff --git a/git.js b/git.js
index cd9efe3..b564e74 100644
--- a/git.js
+++ b/git.js
@@ -24,4 +24,106 @@ function ls (url, with_ref) {
return ls
}
-module.exports = {ls: ls}
+function pad4 (num) {
+ num = num.toString(16)
+ while (num.length < 4) {
+ num = '0' + num
+ }
+ return num
+}
+
+// Invokes `$ git-upload-pack --strict <dir>`, communicates haves and wants and
+// emits 'ready' when stdout becomes a pack file stream.
+function upload_pack (dir, want, have) {
+ // reference:
+ // https://github.com/git/git/blob/b594c975c7e865be23477989d7f36157ad437dc7/Documentation/technical/pack-protocol.txt#L346-L393
+ var upload = spawn('git-upload-pack', ['--strict', dir])
+ writeln('want ' + want)
+ writeln()
+ if (have) {
+ writeln('have ' + have)
+ writeln()
+ }
+ writeln('done')
+
+ // We want to read git's output one line at a time, and not read any more
+ // than we have to. That way, when we finish discussing wants and haves, we
+ // can pipe the rest of the output to a stream.
+ //
+ // We use `mode` to keep track of state and formulate responses. It returns
+ // `false` when we should stop reading.
+ var mode = list
+ upload.stdout.on('readable', function () {
+ while (true) {
+ var line = getline()
+ if (line === null) {
+ return // to wait for more output
+ }
+ if (!mode(line)) {
+ upload.stdout.removeAllListeners('readable')
+ upload.emit('ready')
+ return
+ }
+ }
+ })
+
+ var getline_len = null
+ // Extracts exactly one line from the stream. Uses `getline_len` in case the
+ // whole line could not be read.
+ function getline () {
+ // Format: '####line' where '####' represents the length of 'line' in hex.
+ if (!getline_len) {
+ getline_len = upload.stdout.read(4)
+ if (getline_len === null) {
+ return null
+ }
+ getline_len = parseInt(getline_len, 16)
+ }
+
+ if (getline_len === 0) {
+ return ''
+ }
+
+ // Subtract by the four we just read, and the terminating newline.
+ var line = upload.stdout.read(getline_len - 4 - 1)
+ if (!line) {
+ return null
+ }
+ getline_len = null
+ upload.stdout.read(1) // And discard the newline.
+ return line.toString()
+ }
+
+ // First, the server lists the refs it has, but we already know from
+ // `git ls-remote`, so wait for it to signal the end.
+ function list (line) {
+ if (line === '') {
+ mode = have ? ack_objects_continue : wait_for_nak
+ }
+ return true
+ }
+
+ // If we only gave wants, git should respond with 'NAK', then the pack file.
+ function wait_for_nak (line) {
+ return line !== 'NAK'
+ }
+
+ // With haves, we wait for 'ACK', but only if not ending in 'continue'.
+ function ack_objects_continue (line) {
+ return !(line.search(/^ACK/) !== -1 && line.search(/continue$/) === -1)
+ }
+
+ // Writes one line to stdin so git-upload-pack can understand.
+ function writeln (line) {
+ if (line) {
+ var len = pad4(line.length + 4 + 1) // Add one for the newline.
+ upload.stdin.write(len + line + '\n')
+ } else {
+ upload.stdin.write('0000')
+ }
+ }
+
+ return upload
+}
+
+module.exports = {ls: ls, upload_pack: upload_pack}