Room.kt
12.8 KB
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
package io.livekit.android.room
import com.github.ajalt.timberkt.Timber
import dagger.assisted.Assisted
import dagger.assisted.AssistedFactory
import dagger.assisted.AssistedInject
import io.livekit.android.ConnectOptions
import io.livekit.android.room.participant.LocalParticipant
import io.livekit.android.room.participant.Participant
import io.livekit.android.room.participant.ParticipantListener
import io.livekit.android.room.participant.RemoteParticipant
import io.livekit.android.room.track.DataTrack
import io.livekit.android.room.track.Track
import io.livekit.android.room.track.TrackPublication
import io.livekit.android.room.util.unpackedTrackLabel
import livekit.LivekitModels
import livekit.LivekitRtc
import org.webrtc.*
import java.nio.ByteBuffer
import kotlin.coroutines.Continuation
import kotlin.coroutines.resume
import kotlin.coroutines.suspendCoroutine
class Room
@AssistedInject
constructor(
@Assisted private val connectOptions: ConnectOptions,
private val engine: RTCEngine,
private val eglBase: EglBase,
) : RTCEngine.Listener, ParticipantListener {
init {
engine.listener = this
}
enum class State {
CONNECTING,
CONNECTED,
DISCONNECTED,
RECONNECTING;
}
inline class Sid(val sid: String)
var listener: RoomListener? = null
var sid: Sid? = null
private set
var name: String? = null
private set
var state: State = State.DISCONNECTED
private set
lateinit var localParticipant: LocalParticipant
private set
private val mutableRemoteParticipants = mutableMapOf<String, RemoteParticipant>()
val remoteParticipants: Map<String, RemoteParticipant>
get() = mutableRemoteParticipants
private val mutableActiveSpeakers = mutableListOf<Participant>()
val activeSpeakers: List<Participant>
get() = mutableActiveSpeakers
private var connectContinuation: Continuation<Unit>? = null
suspend fun connect(url: String, token: String) {
engine.join(url, token)
return suspendCoroutine { connectContinuation = it }
}
fun disconnect() {
engine.close()
state = State.DISCONNECTED
listener?.onDisconnect(this, null)
}
private fun handleParticipantDisconnect(sid: String, participant: RemoteParticipant) {
val removedParticipant = mutableRemoteParticipants.remove(sid) ?: return
removedParticipant.tracks.values.forEach { publication ->
removedParticipant.unpublishTrack(publication.sid)
}
listener?.onParticipantDisconnected(this, removedParticipant)
}
private fun getOrCreateRemoteParticipant(
sid: String,
info: LivekitModels.ParticipantInfo? = null
): RemoteParticipant {
var participant = remoteParticipants[sid]
if (participant != null) {
return participant
}
participant = if (info != null) {
RemoteParticipant(info)
} else {
RemoteParticipant(sid, null)
}
participant.internalListener = this
mutableRemoteParticipants[sid] = participant
return participant
}
private fun handleSpeakerUpdate(speakerInfos: List<LivekitRtc.SpeakerInfo>) {
val speakers = mutableListOf<Participant>()
val seenSids = mutableSetOf<String>()
val localParticipant = localParticipant
speakerInfos.forEach { speakerInfo ->
val speakerSid = speakerInfo.sid!!
seenSids.add(speakerSid)
if (speakerSid == localParticipant.sid) {
localParticipant.audioLevel = speakerInfo.level
localParticipant.isSpeaking = true
speakers.add(localParticipant)
} else {
val participant = remoteParticipants[speakerSid]
if (participant != null) {
participant.audioLevel = speakerInfo.level
participant.isSpeaking = true
speakers.add(participant)
}
}
}
if (!seenSids.contains(localParticipant.sid)) {
localParticipant.audioLevel = 0.0f
localParticipant.isSpeaking = false
}
remoteParticipants.values
.filterNot { seenSids.contains(it.sid) }
.forEach {
it.audioLevel = 0.0f
it.isSpeaking = false
}
mutableActiveSpeakers.clear()
mutableActiveSpeakers.addAll(speakers)
listener?.onActiveSpeakersChanged(speakers, this)
}
/**
* @suppress
*/
@AssistedFactory
interface Factory {
fun create(connectOptions: ConnectOptions): Room
}
//----------------------------------- RTCEngine.Listener ------------------------------------//
/**
* @suppress
*/
override fun onJoin(response: LivekitRtc.JoinResponse) {
Timber.v { "engine did join, version: ${response.serverVersion}" }
state = State.CONNECTED
sid = Sid(response.room.sid)
name = response.room.name
if (!response.hasParticipant()) {
listener?.onFailedToConnect(this, RoomException.ConnectException("server didn't return any participants"))
return
}
val lp = LocalParticipant(response.participant, engine)
lp.listener = this
localParticipant = lp
if (response.otherParticipantsList.isNotEmpty()) {
response.otherParticipantsList.forEach {
getOrCreateRemoteParticipant(it.sid, it)
}
}
connectContinuation?.resume(Unit)
connectContinuation = null
}
/**
* @suppress
*/
override fun onAddTrack(track: MediaStreamTrack, streams: Array<out MediaStream>) {
if (streams.count() < 0) {
Timber.i { "add track with empty streams?" }
return
}
val participantSid = streams.first().id
val trackSid = track.id()
val participant = getOrCreateRemoteParticipant(participantSid)
participant.addSubscribedMediaTrack(track, trackSid)
}
/**
* @suppress
*/
override fun onAddDataChannel(channel: DataChannel) {
val unpackedTrackLabel = channel.unpackedTrackLabel()
val (participantSid, trackSid, name) = unpackedTrackLabel
val participant = getOrCreateRemoteParticipant(participantSid)
participant.addSubscribedDataTrack(channel, trackSid, name)
}
/**
* @suppress
*/
override fun onUpdateParticipants(updates: List<LivekitModels.ParticipantInfo>) {
for (info in updates) {
val participantSid = info.sid
if(localParticipant.sid == participantSid) {
localParticipant.updateFromInfo(info)
continue
}
val isNewParticipant = remoteParticipants.contains(participantSid)
val participant = getOrCreateRemoteParticipant(participantSid, info)
if (info.state == LivekitModels.ParticipantInfo.State.DISCONNECTED) {
handleParticipantDisconnect(participantSid, participant)
} else if (isNewParticipant) {
listener?.onParticipantConnected(this, participant)
} else {
participant.updateFromInfo(info)
}
}
}
/**
* @suppress
*/
override fun onUpdateSpeakers(speakers: List<LivekitRtc.SpeakerInfo>) {
handleSpeakerUpdate(speakers)
}
/**
* @suppress
*/
override fun onDisconnect(reason: String) {
Timber.v { "engine did disconnect: $reason" }
listener?.onDisconnect(this, null)
}
/**
* @suppress
*/
override fun onFailToConnect(error: Exception) {
listener?.onFailedToConnect(this, error)
}
//------------------------------- RemoteParticipant.Listener --------------------------------//
/**
* This is called for both Local and Remote participants
* @suppress
*/
override fun onMetadataChanged(participant: Participant, prevMetadata: String?) {
listener?.onMetadataChanged(participant, prevMetadata, this)
}
/**
* @suppress
*/
override fun onTrackPublished(publication: TrackPublication, participant: RemoteParticipant) {
listener?.onTrackPublished(publication, participant, this)
}
/**
* @suppress
*/
override fun onTrackUnpublished(publication: TrackPublication, participant: RemoteParticipant) {
listener?.onTrackUnpublished(publication, participant, this)
}
/**
* @suppress
*/
override fun onTrackSubscribed(track: Track, publication: TrackPublication, participant: RemoteParticipant) {
listener?.onTrackSubscribed(track, publication, participant, this)
}
/**
* @suppress
*/
override fun onTrackSubscriptionFailed(
sid: String,
exception: Exception,
participant: RemoteParticipant
) {
listener?.onTrackSubscriptionFailed(sid, exception, participant, this)
}
/**
* @suppress
*/
override fun onTrackUnsubscribed(
track: Track,
publication: TrackPublication,
participant: RemoteParticipant
) {
listener?.onTrackUnsubscribed(track, publication, participant, this)
}
/**
* @suppress
*/
override fun onDataReceived(
data: ByteBuffer,
dataTrack: DataTrack,
participant: RemoteParticipant
) {
listener?.onDataReceived(data, dataTrack, participant, this)
}
/**
* @suppress
* // TODO(@dl): can this be moved out of Room/SDK?
*/
fun initVideoRenderer(viewRenderer: SurfaceViewRenderer) {
viewRenderer.init(eglBase.eglBaseContext, null)
viewRenderer.setScalingType(RendererCommon.ScalingType.SCALE_ASPECT_FIT)
viewRenderer.setEnableHardwareScaler(false /* enabled */);
}
}
/**
* Room Listener, this class provides callbacks that clients should override.
*
*/
interface RoomListener {
/**
* Disconnected from room
*/
fun onDisconnect(room: Room, error: Exception?) {}
/**
* When a [RemoteParticipant] joins after the local participant. It will not emit events
* for participants that are already in the room
*/
fun onParticipantConnected(room: Room, participant: RemoteParticipant) {}
/**
* When a [RemoteParticipant] leaves after the local participant has joined.
*/
fun onParticipantDisconnected(room: Room, participant: RemoteParticipant) {}
/**
* Could not connect to the room
*/
fun onFailedToConnect(room: Room, error: Exception) {}
// fun onReconnecting(room: Room, error: Exception) {}
// fun onReconnect(room: Room) {}
/**
* Active speakers changed. List of speakers are ordered by their audio level. loudest
* speakers first. This will include the [LocalParticipant] too.
*/
fun onActiveSpeakersChanged(speakers: List<Participant>, room: Room) {}
// Participant callbacks
/**
* Participant metadata is a simple way for app-specific state to be pushed to all users.
* When RoomService.UpdateParticipantMetadata is called to change a participant's state,
* this event will be fired for all clients in the room.
*/
fun onMetadataChanged(participant: Participant, prevMetadata: String?, room: Room) {}
/**
* When a new track is published to room after the local participant has joined. It will
* not fire for tracks that are already published
*/
fun onTrackPublished(publication: TrackPublication, participant: RemoteParticipant, room: Room) {}
/**
* A [RemoteParticipant] has unpublished a track
*/
fun onTrackUnpublished(publication: TrackPublication, participant: RemoteParticipant, room: Room) {}
/**
* The [LocalParticipant] has subscribed to a new track. This event will always fire as
* long as new tracks are ready for use.
*/
fun onTrackSubscribed(track: Track, publication: TrackPublication, participant: RemoteParticipant, room: Room) {}
/**
* Could not subscribe to a track
*/
fun onTrackSubscriptionFailed(sid: String, exception: Exception, participant: RemoteParticipant, room: Room) {}
/**
* A subscribed track is no longer available. Clients should listen to this event and ensure
* the track removes all renderers
*/
fun onTrackUnsubscribed(track: Track, publications: TrackPublication, participant: RemoteParticipant, room: Room) {}
/**
* Message received over a [DataTrack]
*/
fun onDataReceived(data: ByteBuffer, dataTrack: DataTrack, participant: RemoteParticipant, room: Room) {}
}
sealed class RoomException(message: String? = null, cause: Throwable? = null) :
Exception(message, cause) {
class ConnectException(message: String? = null, cause: Throwable? = null) :
RoomException(message, cause)
}