smartstream/ts/smartstream.classes.streamintake.ts

53 lines
1.6 KiB
TypeScript
Raw Normal View History

2022-06-07 14:16:14 +00:00
import * as plugins from './smartstream.plugins.js';
2023-11-03 12:55:56 +00:00
export class StreamIntake<T> extends plugins.stream.Readable {
2022-06-07 14:16:14 +00:00
private signalEndBoolean = false;
private chunkStore: T[] = [];
public pushNextObservable = new plugins.smartrx.ObservableIntake<any>();
private pushedNextDeferred = plugins.smartpromise.defer();
2023-11-03 12:55:56 +00:00
constructor(options?: plugins.stream.ReadableOptions) {
super({ ...options, objectMode: true }); // Ensure that we are in object mode.
2022-06-07 14:16:14 +00:00
this.pushNextObservable.push('please push next');
}
2023-11-03 12:55:56 +00:00
_read(size: number): void {
// console.log('get next');
const pushChunk = (): void => {
if (this.chunkStore.length > 0) {
// If push returns false, then we should stop reading
if (!this.push(this.chunkStore.shift())) {
return;
}
}
if (this.chunkStore.length === 0) {
if (this.signalEndBoolean) {
// If we're done, push null to signal the end of the stream
this.push(null);
} else {
// Ask for more data and wait
this.pushNextObservable.push('please push next');
this.pushedNextDeferred.promise.then(() => {
this.pushedNextDeferred = plugins.smartpromise.defer(); // Reset the deferred
pushChunk(); // Try pushing the next chunk
});
}
}
};
pushChunk();
2022-06-07 14:16:14 +00:00
}
public pushData(chunkData: T) {
this.chunkStore.push(chunkData);
this.pushedNextDeferred.resolve();
}
public signalEnd() {
this.signalEndBoolean = true;
this.pushedNextDeferred.resolve();
this.pushNextObservable.signalComplete();
}
}