forked from RustyMarvin/line-by-line
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathline-by-line.js
172 lines (138 loc) · 3.56 KB
/
line-by-line.js
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*
* Line By Line
*
* A NodeJS module that helps you reading large text files, line by line,
* without buffering the files into memory.
*
* Copyright (c) 2012 Markus von der Wehd <mvdw@mwin.de>
* MIT License, see LICENSE.txt, see http://www.opensource.org/licenses/mit-license.php
*/
var stream = require('stream');
var StringDecoder = require('string_decoder').StringDecoder;
var path = require('path');
var fs = require('fs');
var events = require("events");
// let's make sure we have a setImmediate function (node.js <0.10)
if (typeof global.setImmediate == 'undefined') { setImmediate = process.nextTick;}
var LineByLineReader = function (filepath, options) {
var self = this;
this._encoding = options && options.encoding || 'utf8';
if (filepath instanceof stream.Readable) {
this._readStream = filepath;
}
else {
this._readStream = null;
this._filepath = path.normalize(filepath);
this._streamOptions = { encoding: this._encoding };
if (options && options.start) {
this._streamOptions.start = options.start;
}
if (options && options.end) {
this._streamOptions.end = options.end;
}
}
this._skipEmptyLines = options && options.skipEmptyLines || false;
this._lines = [];
this._lineFragment = '';
this._paused = false;
this._end = false;
this._ended = false;
this.decoder = new StringDecoder(this._encoding);
events.EventEmitter.call(this);
setImmediate(function () {
self._initStream();
});
};
LineByLineReader.prototype = Object.create(events.EventEmitter.prototype, {
constructor: {
value: LineByLineReader,
enumerable: false
}
});
LineByLineReader.prototype._initStream = function () {
var self = this,
readStream = this._readStream ? this._readStream :
fs.createReadStream(this._filepath, this._streamOptions);
readStream.on('error', function (err) {
self.emit('error', err);
});
readStream.on('open', function () {
self.emit('open');
});
readStream.on('data', function (data) {
self._readStream.pause();
var dataAsString = data;
if (data instanceof Buffer) {
dataAsString = self.decoder.write(data);
}
self._lines = self._lines.concat(dataAsString.split(/(?:\n|\r\n|\r)/g));
self._lines[0] = self._lineFragment + self._lines[0];
self._lineFragment = self._lines.pop() || '';
setImmediate(function () {
self._nextLine();
});
});
readStream.on('end', function () {
self._end = true;
setImmediate(function () {
self._nextLine();
});
});
this._readStream = readStream;
};
LineByLineReader.prototype._nextLine = function () {
var self = this,
line;
if (this._paused) {
return;
}
if (this._lines.length === 0) {
if (this._end) {
if (this._lineFragment) {
this.emit('line', this._lineFragment);
this._lineFragment = '';
}
if (!this._paused) {
this.end();
}
} else {
this._readStream.resume();
}
return;
}
line = this._lines.shift();
if (!this._skipEmptyLines || line.length > 0) {
this.emit('line', line);
}
setImmediate(function () {
if (!this._paused) {
self._nextLine();
}
});
};
LineByLineReader.prototype.pause = function () {
this._paused = true;
};
LineByLineReader.prototype.resume = function () {
var self = this;
this._paused = false;
setImmediate(function () {
self._nextLine();
});
};
LineByLineReader.prototype.end = function () {
if (!this._ended){
this._ended = true;
this.emit('end');
}
};
LineByLineReader.prototype.close = function () {
var self = this;
this._readStream.destroy();
this._end = true;
this._lines = [];
setImmediate(function () {
self._nextLine();
});
};
module.exports = LineByLineReader;