forked from murat-dogan/node-datachannel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRTCDataChannel.ts
198 lines (169 loc) · 6.17 KB
/
RTCDataChannel.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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/* eslint-disable @typescript-eslint/no-explicit-any */
import * as exceptions from './Exception';
import { DataChannel } from '../lib/index';
export default class RTCDataChannel extends EventTarget implements globalThis.RTCDataChannel {
#dataChannel: DataChannel;
#readyState: RTCDataChannelState;
#bufferedAmountLowThreshold: number;
#binaryType: BinaryType;
#maxPacketLifeTime: number | null;
#maxRetransmits: number | null;
#negotiated: boolean;
#ordered: boolean;
#closeRequested = false;
// events
onbufferedamountlow: ((this: RTCDataChannel, ev: Event) => any) | null;
onclose: ((this: RTCDataChannel, ev: Event) => any) | null;
onclosing: ((this: RTCDataChannel, ev: Event) => any) | null;
onerror: ((this: RTCDataChannel, ev: Event) => any) | null;
onmessage: ((this: RTCDataChannel, ev: MessageEvent) => any) | null;
onopen: ((this: RTCDataChannel, ev: Event) => any) | null;
constructor(dataChannel: DataChannel, opts: globalThis.RTCDataChannelInit = {}) {
super();
this.#dataChannel = dataChannel;
this.#binaryType = 'blob';
this.#readyState = this.#dataChannel.isOpen() ? 'open' : 'connecting';
this.#bufferedAmountLowThreshold = 0;
this.#maxPacketLifeTime = opts.maxPacketLifeTime || null;
this.#maxRetransmits = opts.maxRetransmits || null;
this.#negotiated = opts.negotiated || false;
this.#ordered = opts.ordered || true;
// forward dataChannel events
this.#dataChannel.onOpen(() => {
this.#readyState = 'open';
this.dispatchEvent(new Event('open', {}));
});
this.#dataChannel.onClosed(() => {
// Simulate closing event
if (!this.#closeRequested) {
this.#readyState = 'closing';
this.dispatchEvent(new Event('closing'));
}
setImmediate(() => {
this.#readyState = 'closed';
this.dispatchEvent(new Event('close'));
});
});
this.#dataChannel.onError((msg) => {
this.dispatchEvent(
new globalThis.RTCErrorEvent('error', {
error: new RTCError(
{
errorDetail: 'data-channel-failure',
},
msg,
),
}),
);
});
this.#dataChannel.onBufferedAmountLow(() => {
this.dispatchEvent(new Event('bufferedamountlow'));
});
this.#dataChannel.onMessage((data) => {
if (ArrayBuffer.isView(data)) {
if (this.binaryType == 'arraybuffer')
data = data.buffer;
else
data = Buffer.from(data.buffer);
}
this.dispatchEvent(new MessageEvent('message', { data }));
});
// forward events to properties
this.addEventListener('message', (e) => {
if (this.onmessage) this.onmessage(e as MessageEvent);
});
this.addEventListener('bufferedamountlow', (e) => {
if (this.onbufferedamountlow) this.onbufferedamountlow(e);
});
this.addEventListener('error', (e) => {
if (this.onerror) this.onerror(e);
});
this.addEventListener('close', (e) => {
if (this.onclose) this.onclose(e);
});
this.addEventListener('closing', (e) => {
if (this.onclosing) this.onclosing(e);
});
this.addEventListener('open', (e) => {
if (this.onopen) this.onopen(e);
});
}
set binaryType(type) {
if (type !== 'blob' && type !== 'arraybuffer') {
throw new DOMException(
"Failed to set the 'binaryType' property on 'RTCDataChannel': Unknown binary type : " + type,
'TypeMismatchError',
);
}
this.#binaryType = type;
}
get binaryType(): BinaryType {
return this.#binaryType;
}
get bufferedAmount(): number {
return this.#dataChannel.bufferedAmount();
}
get bufferedAmountLowThreshold(): number {
return this.#bufferedAmountLowThreshold;
}
set bufferedAmountLowThreshold(value) {
const number = Number(value) || 0;
this.#bufferedAmountLowThreshold = number;
this.#dataChannel.setBufferedAmountLowThreshold(number);
}
get id(): number | null {
return this.#dataChannel.getId();
}
get label(): string {
return this.#dataChannel.getLabel();
}
get maxPacketLifeTime(): number | null {
return this.#maxPacketLifeTime;
}
get maxRetransmits(): number | null {
return this.#maxRetransmits;
}
get negotiated(): boolean {
return this.#negotiated;
}
get ordered(): boolean {
return this.#ordered;
}
get protocol(): string {
return this.#dataChannel.getProtocol();
}
get readyState(): globalThis.RTCDataChannelState {
return this.#readyState;
}
send(data): void {
if (this.#readyState !== 'open') {
throw new exceptions.InvalidStateError(
"Failed to execute 'send' on 'RTCDataChannel': RTCDataChannel.readyState is not 'open'",
);
}
// Needs network error, type error implemented
if (typeof data === 'string') {
this.#dataChannel.sendMessage(data);
} else if (data instanceof Blob) {
data.arrayBuffer().then((ab) => {
if (process?.versions?.bun) {
this.#dataChannel.sendMessageBinary(Buffer.from(ab));
} else {
this.#dataChannel.sendMessageBinary(new Uint8Array(ab));
}
});
} else {
if (process?.versions?.bun) {
this.#dataChannel.sendMessageBinary(Buffer.from(data));
} else {
this.#dataChannel.sendMessageBinary(new Uint8Array(data));
}
}
}
close(): void {
this.#closeRequested = true;
setImmediate(() => {
this.#dataChannel.close();
});
}
}