aboutsummaryrefslogtreecommitdiff
path: root/node_modules/seek-bzip/bin/seek-bunzip
blob: da117fcf22e1cd62c6ed77916d370f094e89dd6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#!/usr/bin/env node

var program = require('commander');
var Bunzip = require('../');
var fs = require('fs');

program
    .version(Bunzip.version)
    .usage('-d|-z [infile] [outfile]')
    .option('-d, --decompress',
	    'Decompress stdin to stdout')
    //.option('-z, --compress',
    //      'Compress stdin to stdout')
    .option('-b, --block <n>',
	    'Extract a single block, starting at <n> bits.', undefined)
    .option('-m, --multistream',
	    'Read a multistream bzip2 file');
program.on('--help', function() {
    console.log('  If <infile> is omitted, reads from stdin.');
    console.log('  If <outfile> is omitted, writes to stdout.');
});
program.parse(process.argv);

if (!program.compress) { program.decompress = true; }

if (program.compress && program.block !== undefined) {
    console.error('--block can only be used with decompression');
    return 1;
}

if (program.decompress && program.compress) {
    console.error('Must specify either -d or -z.');
    return 1;
}

var makeInStream = function(in_fd) {
    var stat = fs.fstatSync(in_fd);
    var stream = {
	buffer: new Buffer(4096),
	filePos: null,
	pos: 0,
	end: 0,
	_fillBuffer: function() {
	    this.end = fs.readSync(in_fd, this.buffer, 0, this.buffer.length,
				  this.filePos);
	    this.pos = 0;
	    if (this.filePos !== null && this.end > 0) {
		this.filePos += this.end;
	    }
	},
	readByte: function() {
	    if (this.pos >= this.end) { this._fillBuffer(); }
	    if (this.pos < this.end) {
		return this.buffer[this.pos++];
	    }
	    return -1;
	},
	read: function(buffer, bufOffset, length) {
	    if (this.pos >= this.end) { this._fillBuffer(); }
	    var bytesRead = 0;
	    while (bytesRead < length && this.pos < this.end) {
		buffer[bufOffset++] = this.buffer[this.pos++];
		bytesRead++;
	    }
	    return bytesRead;
	},
	seek: function(seek_pos) {
	    this.filePos = seek_pos;
	    this.pos = this.end = 0;
	},
	eof: function() {
	  if (this.pos >= this.end) { this._fillBuffer(); }
	  return !(this.pos < this.end);
	}
    };
    if (stat.size) {
	stream.size = stat.size;
    }
    return stream;
};
var makeOutStream = function(out_fd) {
    return {
	buffer: new Buffer(4096),
	pos: 0,
	flush: function() {
	    fs.writeSync(out_fd, this.buffer, 0, this.pos);
	    this.pos = 0;
	},
	writeByte: function(byte) {
	    if (this.pos >= this.buffer.length) { this.flush(); }
	    this.buffer[this.pos++] = byte;
	}
    };
};

var in_fd = 0, close_in = function(){};
var out_fd = 1, close_out = function(){};
if (program.args.length > 0) {
    in_fd = fs.openSync(program.args.shift(), 'r');
    close_in = function() { fs.closeSync(in_fd); };
}
if (program.args.length > 0) {
    out_fd = fs.openSync(program.args.shift(), 'w');
    close_out = function() { fs.closeSync(out_fd); };
}

var inStream = makeInStream(in_fd);
var outStream= makeOutStream(out_fd);

if (program.decompress) {
    try {
        if (program.block !== undefined) {
	    Bunzip.decodeBlock(inStream, +program.block, outStream);
        } else {
	    Bunzip.decode(inStream, outStream, program.multistream);
        }
        outStream.flush();
    } catch (e) {
        if (e.code !== 'EPIPE') throw e;
    }
    close_in();
    close_out();
    return 0;
}
if (program.compress) {
    console.error('Compression not yet implemented.');
    return 1;
}
return 1;