-
Notifications
You must be signed in to change notification settings - Fork 618
/
Copy pathSplitterTransform.ts
63 lines (55 loc) · 1.79 KB
/
SplitterTransform.ts
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
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import { TerminalWritable, type ITerminalWritableOptions } from './TerminalWritable';
import type { ITerminalChunk } from './ITerminalChunk';
/**
* Constructor options for {@link SplitterTransform}.
*
* @public
*/
export interface ISplitterTransformOptions extends ITerminalWritableOptions {
/**
* Each input chunk will be passed to each destination in the array.
*/
destinations: TerminalWritable[];
}
/**
* Use this instead of {@link TerminalTransform} if you need to output `ITerminalChunk`
* data to more than one destination.
*
* @remarks
*
* Splitting streams complicates the pipeline topology and can make debugging more difficult.
* For this reason, it is modeled as an explicit `SplitterTransform` node, rather than
* as a built-in feature of `TerminalTransform`.
*
* @public
*/
export class SplitterTransform extends TerminalWritable {
public readonly destinations: ReadonlyArray<TerminalWritable>;
public constructor(options: ISplitterTransformOptions) {
super();
this.destinations = [...options.destinations];
}
protected onWriteChunk(chunk: ITerminalChunk): void {
for (const destination of this.destinations) {
destination.writeChunk(chunk);
}
}
protected onClose(): void {
const errors: Error[] = [];
// If an exception is thrown, try to ensure that the other destinations get closed properly
for (const destination of this.destinations) {
if (!destination.preventAutoclose) {
try {
destination.close();
} catch (error) {
errors.push(error as Error);
}
}
}
if (errors.length > 0) {
throw errors[0];
}
}
}