This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpeer-connection.js
278 lines (241 loc) · 8.63 KB
/
peer-connection.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
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
require('webrtc-adapter')
const MAX_SEND_RETRY_COUNT = 5
const MULTIPART_MASK = 0b00000001
const DISCONNECT_MASK = 0b00000010
const convertToProtobufCompatibleBuffer = require('./convert-to-protobuf-compatible-buffer')
const Errors = require('./errors')
module.exports =
class PeerConnection {
constructor (props) {
const {
localPeerId, remotePeerId, fragmentSize, iceServers, connectionTimeout,
signalingProvider, didReceiveMessage, didDisconnect, didError
} = props
this.localPeerId = localPeerId
this.remotePeerId = remotePeerId
this.fragmentSize = fragmentSize
this.iceServers = iceServers
this.connectionTimeout = connectionTimeout
this.signalingProvider = signalingProvider
this.didReceiveMessage = didReceiveMessage
this.didDisconnect = didDisconnect
this.didError = didError
this.receivedSignals = {}
this.incomingSignalSequenceNumber = 0
this.outgoingSignalSequenceNumber = 0
this.state = 'initial'
this.initiator = false
this.signalingProvider.receive = this.receiveSignal.bind(this)
this.rtcPeerConnection = new RTCPeerConnection({iceServers})
this.rtcPeerConnection.oniceconnectionstatechange = this.handleConnectionStateChange.bind(this)
this.rtcPeerConnection.onicecandidate = this.handleICECandidate.bind(this)
this.rtcPeerConnection.ondatachannel = this.handleDataChannel.bind(this)
this.rtcPeerConnection.onerror = this.handleError.bind(this)
this.connectedPromise = new Promise((resolve, reject) => {
this.resolveConnectedPromise = resolve
this.rejectConnectedPromise = reject
})
this.disconnectedPromise = new Promise((resolve) => this.resolveDisconnectedPromise = resolve)
}
connect () {
if (this.state === 'initial') {
this.state = 'connecting'
this.initiator = true
this.rtcPeerConnection.onnegotiationneeded = this.handleNegotiationNeeded.bind(this)
this.negotiationNeeded = true
const channel = this.rtcPeerConnection.createDataChannel(null, {ordered: true})
this.handleDataChannel({channel})
const timeoutError = new Errors.PeerConnectionError('Connecting to peer timed out')
setTimeout(() => {
if (this.state === 'connecting') {
this.disconnect()
this.rejectConnectedPromise(timeoutError)
}
}, this.connectionTimeout)
}
return this.getConnectedPromise()
}
getConnectedPromise () {
return this.connectedPromise
}
getDisconnectedPromise () {
return this.disconnectedPromise
}
disconnect () {
if (this.state === 'disconnected') return
this.state = 'disconnected'
this.didDisconnect(this.remotePeerId)
this.resolveDisconnectedPromise()
// Give channel a chance to flush. This helps avoid flaky tests where
// the a star network hub disconnects all its peers and needs to
// inform the remaining peers of the disconnection as each peer leaves.
process.nextTick(() => {
if (this.channel) {
try {
this.channel.send(Buffer.alloc(1, DISCONNECT_MASK))
} catch (e) {
// Ignore the exception since the connection is about to be closed.
} finally {
this.channel.close()
}
}
if (this.rtcPeerConnection.signalingState !== 'closed') {
this.rtcPeerConnection.close()
}
})
}
async handleNegotiationNeeded () {
if (!this.negotiationNeeded || this.state === 'disconnected') return
this.negotiationNeeded = false
const offer = await this.rtcPeerConnection.createOffer()
await this.rtcPeerConnection.setLocalDescription(offer)
try {
await this.sendSignal({offer, senderId: this.localPeerId})
} catch (error) {
this.disconnect()
this.rejectConnectedPromise(error)
}
}
async handleICECandidate ({candidate}) {
try {
await this.sendSignal({candidate})
} catch (error) {
this.disconnect()
if (this.initiator) {
this.rejectConnectedPromise(error)
} else {
this.handleError(error)
}
}
}
handleDataChannel ({channel}) {
this.channel = channel
this.channel.binaryType = 'arraybuffer'
this.channel.onerror = this.handleError.bind(this)
this.channel.onmessage = ({data}) => this.receive(Buffer.from(data))
this.channel.onclose = () => this.disconnect()
if (this.channel.readyState === 'open') {
this.handleConnectionStateChange()
} else {
this.channel.onopen = this.handleConnectionStateChange.bind(this)
}
}
handleConnectionStateChange () {
if (this.isConnectionOpen() && this.state !== 'connected') {
this.state = 'connected'
this.resolveConnectedPromise()
} else if (this.isConnectionClosed() && this.state !== 'disconnected') {
this.disconnect()
}
}
isConnectionOpen () {
const {iceConnectionState} = this.rtcPeerConnection
return (
(iceConnectionState === 'connected' || iceConnectionState === 'completed') &&
this.channel && this.channel.readyState === 'open'
)
}
isConnectionClosed () {
const {iceConnectionState, signalingState} = this.rtcPeerConnection
return (
iceConnectionState === 'closed' ||
iceConnectionState === 'failed' ||
(iceConnectionState === 'disconnected' && signalingState === 'stable')
)
}
handleError (event) {
this.didError({peerId: this.remotePeerId, event})
}
sendSignal (signal) {
if (this.state !== 'disconnected') {
return this.signalingProvider.send(signal)
}
}
async receiveSignal (signal) {
if (this.state === 'disconnected') return
if (signal.offer) {
await this.rtcPeerConnection.setRemoteDescription(signal.offer)
const answer = await this.rtcPeerConnection.createAnswer()
await this.rtcPeerConnection.setLocalDescription(answer)
try {
await this.sendSignal({answer})
} catch (error) {
this.disconnect()
this.handleError(error)
}
} else if (signal.answer) {
await this.rtcPeerConnection.setRemoteDescription(signal.answer)
} else if (signal.candidate) {
this.rtcPeerConnection.addIceCandidate(signal.candidate)
}
}
send (message) {
if (this.state !== 'connected') throw new Error('Must be connected to send')
message = convertToProtobufCompatibleBuffer(message)
let multiPartByte = 0
let envelopeSize = message.length + 1
if (envelopeSize > this.fragmentSize) {
multiPartByte = 1
envelopeSize += 4
}
const envelope = Buffer.alloc(envelopeSize)
let offset = 0
envelope.writeUInt8(multiPartByte, offset)
offset++
if (envelopeSize > this.fragmentSize) {
envelope.writeUInt32BE(envelopeSize, offset)
offset += 4
}
message.copy(envelope, offset)
if (envelopeSize > this.fragmentSize) {
let messageOffset = 0
while (messageOffset < envelopeSize) {
this.channel.send(envelope.slice(messageOffset, messageOffset + this.fragmentSize))
messageOffset += this.fragmentSize
}
} else {
let retryCount = 0
while (true) {
// Calling send on the data channel sometimes throws in tests
// even when the channel's readyState is 'open'. It always seems
// to work on the first retry, but we can retry a few times.
try {
this.channel.send(envelope)
break
} catch (error) {
if (retryCount++ === MAX_SEND_RETRY_COUNT) throw error
}
}
}
}
receive (data) {
if (this.state !== 'connected') return
if (this.incomingMultipartEnvelope) {
data.copy(this.incomingMultipartEnvelope, this.incomingMultipartEnvelopeOffset)
this.incomingMultipartEnvelopeOffset += data.length
if (this.incomingMultipartEnvelopeOffset === this.incomingMultipartEnvelope.length) {
this.finishReceiving(this.incomingMultipartEnvelope)
this.incomingMultipartEnvelope = null
this.incomingMultipartEnvelopeOffset = 0
}
} else {
const metadataByte = data.readUInt8(0)
if (metadataByte & MULTIPART_MASK) {
const envelopeSize = data.readUInt32BE(1)
this.incomingMultipartEnvelope = Buffer.alloc(envelopeSize)
data.copy(this.incomingMultipartEnvelope, 0)
this.incomingMultipartEnvelopeOffset = data.length
} else if (metadataByte & DISCONNECT_MASK) {
this.disconnect()
} else {
this.finishReceiving(data)
}
}
}
finishReceiving (envelope) {
const multiPartByte = envelope.readUInt8(0)
const startOffset = (multiPartByte & 1) ? 5 : 1
const message = convertToProtobufCompatibleBuffer(envelope.slice(startOffset))
this.didReceiveMessage({senderId: this.remotePeerId, message})
}
}