-
Notifications
You must be signed in to change notification settings - Fork 408
/
Copy pathbase.js
47 lines (40 loc) · 964 Bytes
/
base.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
const extend = require('lodash/extend');
const { createWriteStream } = require('fs');
/**
* @interface
*/
class BaseExporter {
/**
* @param {!Object=} settings
*/
constructor(settings) {
this._settings = extend({ encoding: 'utf8' }, settings);
this._stream = createWriteStream(this._settings.file, this._settings.encoding);
if (!this._settings.file) throw new Error('File must be defined!');
}
end() {
this._stream.end();
}
/**
* @return {!Promise}
*/
async onEnd() {
await new Promise((resolve, reject) => {
this._stream.on('finish', resolve);
this._stream.on('error', reject);
});
}
/**
* @param {!Object} result
*/
writeLine() {
throw new Error('Write footer is not overridden!');
}
writeHeader() {
throw new Error('Write header is not overridden!');
}
writeFooter() {
throw new Error('Write footer is not overridden!');
}
}
module.exports = BaseExporter;