main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
1021 bytes
|
Rev | Line | |
---|
[d565449] | 1 | "use strict";
|
---|
| 2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
| 3 | const stream_1 = require("stream");
|
---|
| 4 | const async_1 = require("../readers/async");
|
---|
| 5 | class StreamProvider {
|
---|
| 6 | constructor(_root, _settings) {
|
---|
| 7 | this._root = _root;
|
---|
| 8 | this._settings = _settings;
|
---|
| 9 | this._reader = new async_1.default(this._root, this._settings);
|
---|
| 10 | this._stream = new stream_1.Readable({
|
---|
| 11 | objectMode: true,
|
---|
| 12 | read: () => { },
|
---|
| 13 | destroy: () => {
|
---|
| 14 | if (!this._reader.isDestroyed) {
|
---|
| 15 | this._reader.destroy();
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
| 18 | });
|
---|
| 19 | }
|
---|
| 20 | read() {
|
---|
| 21 | this._reader.onError((error) => {
|
---|
| 22 | this._stream.emit('error', error);
|
---|
| 23 | });
|
---|
| 24 | this._reader.onEntry((entry) => {
|
---|
| 25 | this._stream.push(entry);
|
---|
| 26 | });
|
---|
| 27 | this._reader.onEnd(() => {
|
---|
| 28 | this._stream.push(null);
|
---|
| 29 | });
|
---|
| 30 | this._reader.read();
|
---|
| 31 | return this._stream;
|
---|
| 32 | }
|
---|
| 33 | }
|
---|
| 34 | exports.default = StreamProvider;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.