mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 15:35:41 +00:00
764 lines
20 KiB
Go
764 lines
20 KiB
Go
package rtc
|
|
|
|
import (
|
|
"math"
|
|
"sort"
|
|
"sync"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"github.com/go-logr/logr"
|
|
"github.com/livekit/livekit-server/pkg/routing"
|
|
"github.com/livekit/protocol/logger"
|
|
livekit "github.com/livekit/protocol/proto"
|
|
"github.com/pion/ion-sfu/pkg/buffer"
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"github.com/livekit/livekit-server/pkg/config"
|
|
"github.com/livekit/livekit-server/pkg/rtc/types"
|
|
"github.com/livekit/livekit-server/pkg/utils/stats"
|
|
)
|
|
|
|
const (
|
|
DefaultEmptyTimeout = 5 * 60 // 5m
|
|
DefaultRoomDepartureGrace = 20
|
|
AudioLevelQuantization = 8 // ideally power of 2 to minimize float decimal
|
|
)
|
|
|
|
type Room struct {
|
|
Room *livekit.Room
|
|
Logger logger.Logger
|
|
config WebRTCConfig
|
|
lock sync.RWMutex
|
|
// map of identity -> Participant
|
|
participants map[string]types.Participant
|
|
participantOpts map[string]*ParticipantOptions
|
|
bufferFactory *buffer.Factory
|
|
|
|
// time the first participant joined the room
|
|
joinedAt atomic.Value
|
|
// time that the last participant left the room
|
|
leftAt atomic.Value
|
|
closed chan struct{}
|
|
closeOnce sync.Once
|
|
|
|
// for active speaker updates
|
|
audioConfig *config.AudioConfig
|
|
|
|
statsReporter *stats.RoomStatsReporter
|
|
|
|
onParticipantChanged func(p types.Participant)
|
|
onMetadataUpdate func(metadata string)
|
|
onClose func()
|
|
}
|
|
|
|
type ParticipantOptions struct {
|
|
AutoSubscribe bool
|
|
}
|
|
|
|
func NewRoom(room *livekit.Room, config WebRTCConfig, audioConfig *config.AudioConfig) *Room {
|
|
r := &Room{
|
|
Room: proto.Clone(room).(*livekit.Room),
|
|
Logger: logger.Logger(logger.GetLogger().WithValues("room", room.Name)),
|
|
config: config,
|
|
audioConfig: audioConfig,
|
|
statsReporter: stats.NewRoomStatsReporter(),
|
|
participants: make(map[string]types.Participant),
|
|
participantOpts: make(map[string]*ParticipantOptions),
|
|
bufferFactory: buffer.NewBufferFactory(config.Receiver.packetBufferSize, logr.Logger{}),
|
|
closed: make(chan struct{}),
|
|
}
|
|
if r.Room.EmptyTimeout == 0 {
|
|
r.Room.EmptyTimeout = DefaultEmptyTimeout
|
|
}
|
|
if r.Room.CreationTime == 0 {
|
|
r.Room.CreationTime = time.Now().Unix()
|
|
}
|
|
r.statsReporter.RoomStarted()
|
|
go r.audioUpdateWorker()
|
|
go r.connectionQualityWorker()
|
|
|
|
return r
|
|
}
|
|
|
|
func (r *Room) GetParticipant(identity string) types.Participant {
|
|
r.lock.RLock()
|
|
defer r.lock.RUnlock()
|
|
return r.participants[identity]
|
|
}
|
|
|
|
func (r *Room) GetParticipants() []types.Participant {
|
|
r.lock.RLock()
|
|
defer r.lock.RUnlock()
|
|
participants := make([]types.Participant, 0, len(r.participants))
|
|
for _, p := range r.participants {
|
|
participants = append(participants, p)
|
|
}
|
|
return participants
|
|
}
|
|
|
|
func (r *Room) GetActiveSpeakers() []*livekit.SpeakerInfo {
|
|
participants := r.GetParticipants()
|
|
speakers := make([]*livekit.SpeakerInfo, 0, len(participants))
|
|
for _, p := range participants {
|
|
level, active := p.GetAudioLevel()
|
|
if !active {
|
|
continue
|
|
}
|
|
speakers = append(speakers, &livekit.SpeakerInfo{
|
|
Sid: p.ID(),
|
|
Level: ConvertAudioLevel(level),
|
|
Active: active,
|
|
})
|
|
}
|
|
|
|
sort.Slice(speakers, func(i, j int) bool {
|
|
return speakers[i].Level > speakers[j].Level
|
|
})
|
|
return speakers
|
|
}
|
|
|
|
func (r *Room) GetStatsReporter() *stats.RoomStatsReporter {
|
|
return r.statsReporter
|
|
}
|
|
|
|
func (r *Room) GetBufferFactor() *buffer.Factory {
|
|
return r.bufferFactory
|
|
}
|
|
|
|
func (r *Room) FirstJoinedAt() int64 {
|
|
j := r.joinedAt.Load()
|
|
if t, ok := j.(int64); ok {
|
|
return t
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (r *Room) LastLeftAt() int64 {
|
|
l := r.leftAt.Load()
|
|
if t, ok := l.(int64); ok {
|
|
return t
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (r *Room) Join(participant types.Participant, opts *ParticipantOptions, iceServers []*livekit.ICEServer) error {
|
|
if r.IsClosed() {
|
|
stats.PromServiceOperationCounter.WithLabelValues("participant_join", "error", "room_closed").Add(1)
|
|
return ErrRoomClosed
|
|
}
|
|
|
|
r.lock.Lock()
|
|
defer r.lock.Unlock()
|
|
|
|
if r.participants[participant.Identity()] != nil {
|
|
stats.PromServiceOperationCounter.WithLabelValues("participant_join", "error", "already_joined").Add(1)
|
|
return ErrAlreadyJoined
|
|
}
|
|
|
|
if r.Room.MaxParticipants > 0 && int(r.Room.MaxParticipants) == len(r.participants) {
|
|
stats.PromServiceOperationCounter.WithLabelValues("participant_join", "error", "max_exceeded").Add(1)
|
|
return ErrMaxParticipantsExceeded
|
|
}
|
|
|
|
if r.FirstJoinedAt() == 0 {
|
|
r.joinedAt.Store(time.Now().Unix())
|
|
}
|
|
|
|
r.statsReporter.AddParticipant()
|
|
|
|
// it's important to set this before connection, we don't want to miss out on any publishedTracks
|
|
participant.OnTrackPublished(r.onTrackPublished)
|
|
participant.OnStateChange(func(p types.Participant, oldState livekit.ParticipantInfo_State) {
|
|
r.Logger.Debugw("participant state changed", "state", p.State(), "participant", p.Identity(), "pID", p.ID(),
|
|
"oldState", oldState)
|
|
if r.onParticipantChanged != nil {
|
|
r.onParticipantChanged(participant)
|
|
}
|
|
r.broadcastParticipantState(p, true)
|
|
|
|
state := p.State()
|
|
if state == livekit.ParticipantInfo_ACTIVE {
|
|
// subscribe participant to existing publishedTracks
|
|
r.subscribeToExistingTracks(p)
|
|
|
|
// start the workers once connectivity is established
|
|
p.Start()
|
|
|
|
} else if state == livekit.ParticipantInfo_DISCONNECTED {
|
|
// remove participant from room
|
|
go r.RemoveParticipant(p.Identity())
|
|
}
|
|
})
|
|
participant.OnTrackUpdated(r.onTrackUpdated)
|
|
participant.OnMetadataUpdate(r.onParticipantMetadataUpdate)
|
|
participant.OnDataPacket(r.onDataPacket)
|
|
r.Logger.Infow("new participant joined",
|
|
"pID", participant.ID(),
|
|
"participant", participant.Identity(),
|
|
"protocol", participant.ProtocolVersion(),
|
|
"room", r.Room.Name,
|
|
"roomID", r.Room.Sid)
|
|
|
|
r.participants[participant.Identity()] = participant
|
|
r.participantOpts[participant.Identity()] = opts
|
|
|
|
// gather other participants and send join response
|
|
otherParticipants := make([]types.Participant, 0, len(r.participants))
|
|
for _, p := range r.participants {
|
|
if p.ID() != participant.ID() && !p.Hidden() {
|
|
otherParticipants = append(otherParticipants, p)
|
|
}
|
|
}
|
|
|
|
if r.onParticipantChanged != nil {
|
|
r.onParticipantChanged(participant)
|
|
}
|
|
|
|
time.AfterFunc(time.Minute, func() {
|
|
state := participant.State()
|
|
if state == livekit.ParticipantInfo_JOINING || state == livekit.ParticipantInfo_JOINED {
|
|
r.RemoveParticipant(participant.Identity())
|
|
}
|
|
})
|
|
|
|
if err := participant.SendJoinResponse(r.Room, otherParticipants, iceServers); err != nil {
|
|
stats.PromServiceOperationCounter.WithLabelValues("participant_join", "error", "send_response").Add(1)
|
|
return err
|
|
}
|
|
|
|
if participant.ProtocolVersion().SubscriberAsPrimary() {
|
|
// initiates sub connection as primary
|
|
participant.Negotiate()
|
|
}
|
|
|
|
stats.PromServiceOperationCounter.WithLabelValues("participant_join", "success", "").Add(1)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (r *Room) ResumeParticipant(p types.Participant, responseSink routing.MessageSink) error {
|
|
// close previous sink, and link to new one
|
|
if prevSink := p.GetResponseSink(); prevSink != nil {
|
|
prevSink.Close()
|
|
}
|
|
p.SetResponseSink(responseSink)
|
|
|
|
updates := ToProtoParticipants(r.GetParticipants())
|
|
if err := p.SendParticipantUpdate(updates, time.Now()); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := p.ICERestart(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (r *Room) RemoveParticipant(identity string) {
|
|
r.lock.Lock()
|
|
p, ok := r.participants[identity]
|
|
if ok {
|
|
delete(r.participants, identity)
|
|
delete(r.participantOpts, identity)
|
|
}
|
|
r.lock.Unlock()
|
|
if !ok {
|
|
return
|
|
}
|
|
r.statsReporter.SubParticipant()
|
|
|
|
// send broadcast only if it's not already closed
|
|
sendUpdates := p.State() != livekit.ParticipantInfo_DISCONNECTED
|
|
|
|
p.OnTrackUpdated(nil)
|
|
p.OnTrackPublished(nil)
|
|
p.OnStateChange(nil)
|
|
p.OnMetadataUpdate(nil)
|
|
p.OnDataPacket(nil)
|
|
|
|
// close participant as well
|
|
_ = p.Close()
|
|
|
|
r.lock.RLock()
|
|
if len(r.participants) == 0 {
|
|
r.leftAt.Store(time.Now().Unix())
|
|
}
|
|
r.lock.RUnlock()
|
|
|
|
if sendUpdates {
|
|
if r.onParticipantChanged != nil {
|
|
r.onParticipantChanged(p)
|
|
}
|
|
r.broadcastParticipantState(p, true)
|
|
}
|
|
}
|
|
|
|
func (r *Room) UpdateSubscriptions(participant types.Participant, trackIds []string, subscribe bool) error {
|
|
if !participant.CanSubscribe() {
|
|
return ErrCannotSubscribe
|
|
}
|
|
|
|
// find all matching tracks
|
|
var tracks []types.PublishedTrack
|
|
participants := r.GetParticipants()
|
|
for _, p := range participants {
|
|
for _, sid := range trackIds {
|
|
for _, track := range p.GetPublishedTracks() {
|
|
if sid == track.ID() {
|
|
tracks = append(tracks, track)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// handle subscription changes
|
|
for _, track := range tracks {
|
|
if subscribe {
|
|
if err := track.AddSubscriber(participant); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
track.RemoveSubscriber(participant.ID())
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (r *Room) IsClosed() bool {
|
|
select {
|
|
case <-r.closed:
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
// CloseIfEmpty closes the room if all participants had left, or it's still empty past timeout
|
|
func (r *Room) CloseIfEmpty() {
|
|
if r.IsClosed() {
|
|
return
|
|
}
|
|
|
|
r.lock.RLock()
|
|
visibleParticipants := 0
|
|
for _, p := range r.participants {
|
|
if !p.Hidden() {
|
|
visibleParticipants++
|
|
}
|
|
}
|
|
r.lock.RUnlock()
|
|
|
|
if visibleParticipants > 0 {
|
|
return
|
|
}
|
|
|
|
timeout := r.Room.EmptyTimeout
|
|
var elapsed int64
|
|
if r.FirstJoinedAt() > 0 {
|
|
// exit 20s after
|
|
elapsed = time.Now().Unix() - r.LastLeftAt()
|
|
if timeout > DefaultRoomDepartureGrace {
|
|
timeout = DefaultRoomDepartureGrace
|
|
}
|
|
} else {
|
|
elapsed = time.Now().Unix() - r.Room.CreationTime
|
|
}
|
|
|
|
if elapsed >= int64(timeout) {
|
|
r.Close()
|
|
}
|
|
}
|
|
|
|
func (r *Room) Close() {
|
|
r.closeOnce.Do(func() {
|
|
close(r.closed)
|
|
r.Logger.Infow("closing room", "roomID", r.Room.Sid, "room", r.Room.Name)
|
|
|
|
r.statsReporter.RoomEnded()
|
|
if r.onClose != nil {
|
|
r.onClose()
|
|
}
|
|
})
|
|
}
|
|
|
|
func (r *Room) GetIncomingStats() stats.PacketStats {
|
|
return *r.statsReporter.Incoming
|
|
}
|
|
|
|
func (r *Room) GetOutgoingStats() stats.PacketStats {
|
|
return *r.statsReporter.Outgoing
|
|
}
|
|
|
|
func (r *Room) OnClose(f func()) {
|
|
r.onClose = f
|
|
}
|
|
|
|
func (r *Room) OnParticipantChanged(f func(participant types.Participant)) {
|
|
r.onParticipantChanged = f
|
|
}
|
|
|
|
func (r *Room) SendDataPacket(up *livekit.UserPacket, kind livekit.DataPacket_Kind) {
|
|
dp := &livekit.DataPacket{
|
|
Kind: kind,
|
|
Value: &livekit.DataPacket_User{
|
|
User: up,
|
|
},
|
|
}
|
|
r.onDataPacket(nil, dp)
|
|
}
|
|
|
|
func (r *Room) SetMetadata(metadata string) {
|
|
r.Room.Metadata = metadata
|
|
|
|
// Send update to participants
|
|
for _, p := range r.GetParticipants() {
|
|
if !p.IsReady() {
|
|
continue
|
|
}
|
|
|
|
err := p.SendRoomUpdate(r.Room)
|
|
if err != nil {
|
|
r.Logger.Warnw("failed to send room update", err, "room", r.Room.Name, "participant", p.Identity())
|
|
}
|
|
}
|
|
|
|
if r.onMetadataUpdate != nil {
|
|
r.onMetadataUpdate(metadata)
|
|
}
|
|
}
|
|
|
|
func (r *Room) OnMetadataUpdate(f func(metadata string)) {
|
|
r.onMetadataUpdate = f
|
|
}
|
|
|
|
// checks if participant should be autosubscribed to new tracks, assumes lock is already acquired
|
|
func (r *Room) autoSubscribe(participant types.Participant) bool {
|
|
if !participant.CanSubscribe() {
|
|
return false
|
|
}
|
|
|
|
opts := r.participantOpts[participant.Identity()]
|
|
// default to true if no options are set
|
|
if opts != nil && !opts.AutoSubscribe {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
// a ParticipantImpl in the room added a new remoteTrack, subscribe other participants to it
|
|
func (r *Room) onTrackPublished(participant types.Participant, track types.PublishedTrack) {
|
|
// publish participant update, since track state is changed
|
|
r.broadcastParticipantState(participant, true)
|
|
|
|
r.lock.RLock()
|
|
defer r.lock.RUnlock()
|
|
|
|
// subscribe all existing participants to this PublishedTrack
|
|
for _, existingParticipant := range r.participants {
|
|
if existingParticipant == participant {
|
|
// skip publishing participant
|
|
continue
|
|
}
|
|
if existingParticipant.State() != livekit.ParticipantInfo_ACTIVE {
|
|
// not fully joined. don't subscribe yet
|
|
continue
|
|
}
|
|
if !r.autoSubscribe(existingParticipant) {
|
|
continue
|
|
}
|
|
|
|
r.Logger.Debugw("subscribing to new track",
|
|
"participants", []string{participant.Identity(), existingParticipant.Identity()},
|
|
"pIDs", []string{participant.ID(), existingParticipant.ID()},
|
|
"track", track.ID())
|
|
if err := track.AddSubscriber(existingParticipant); err != nil {
|
|
r.Logger.Errorw("could not subscribe to remoteTrack", err,
|
|
"participants", []string{participant.Identity(), existingParticipant.Identity()},
|
|
"pIDs", []string{participant.ID(), existingParticipant.ID()},
|
|
"track", track.ID())
|
|
}
|
|
}
|
|
|
|
if r.onParticipantChanged != nil {
|
|
r.onParticipantChanged(participant)
|
|
}
|
|
}
|
|
|
|
func (r *Room) onTrackUpdated(p types.Participant, _ types.PublishedTrack) {
|
|
// send track updates to everyone, especially if track was updated by admin
|
|
r.broadcastParticipantState(p, false)
|
|
if r.onParticipantChanged != nil {
|
|
r.onParticipantChanged(p)
|
|
}
|
|
}
|
|
|
|
func (r *Room) onParticipantMetadataUpdate(p types.Participant) {
|
|
r.broadcastParticipantState(p, false)
|
|
if r.onParticipantChanged != nil {
|
|
r.onParticipantChanged(p)
|
|
}
|
|
}
|
|
|
|
func (r *Room) onDataPacket(source types.Participant, dp *livekit.DataPacket) {
|
|
// don't forward if source isn't allowed to publish data
|
|
if source != nil && !source.CanPublishData() {
|
|
return
|
|
}
|
|
dest := dp.GetUser().GetDestinationSids()
|
|
|
|
for _, op := range r.GetParticipants() {
|
|
if op.State() != livekit.ParticipantInfo_ACTIVE {
|
|
continue
|
|
}
|
|
if source != nil && op.ID() == source.ID() {
|
|
continue
|
|
}
|
|
if len(dest) > 0 {
|
|
found := false
|
|
for _, dSid := range dest {
|
|
if op.ID() == dSid {
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
if !found {
|
|
continue
|
|
}
|
|
}
|
|
_ = op.SendDataPacket(dp)
|
|
}
|
|
}
|
|
|
|
func (r *Room) subscribeToExistingTracks(p types.Participant) {
|
|
r.lock.RLock()
|
|
shouldSubscribe := r.autoSubscribe(p)
|
|
r.lock.RUnlock()
|
|
if !shouldSubscribe {
|
|
return
|
|
}
|
|
|
|
tracksAdded := 0
|
|
for _, op := range r.GetParticipants() {
|
|
if p.ID() == op.ID() {
|
|
// don't send to itself
|
|
continue
|
|
}
|
|
if n, err := op.AddSubscriber(p); err != nil {
|
|
// TODO: log error? or disconnect?
|
|
r.Logger.Errorw("could not subscribe to participant", err,
|
|
"participants", []string{op.Identity(), p.Identity()},
|
|
"pIDs", []string{op.ID(), p.ID()})
|
|
} else {
|
|
tracksAdded += n
|
|
}
|
|
}
|
|
if tracksAdded > 0 {
|
|
r.Logger.Debugw("subscribed participants to existing tracks", "tracks", tracksAdded)
|
|
}
|
|
}
|
|
|
|
// broadcast an update about participant p
|
|
func (r *Room) broadcastParticipantState(p types.Participant, skipSource bool) {
|
|
r.lock.Lock()
|
|
updatedAt := time.Now()
|
|
updates := ToProtoParticipants([]types.Participant{p})
|
|
r.lock.Unlock()
|
|
if p.Hidden() {
|
|
if !skipSource {
|
|
// send update only to hidden participant
|
|
err := p.SendParticipantUpdate(updates, updatedAt)
|
|
if err != nil {
|
|
r.Logger.Errorw("could not send update to participant", err,
|
|
"participant", p.Identity(), "pID", p.ID())
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
participants := r.GetParticipants()
|
|
for _, op := range participants {
|
|
// skip itself && closed participants
|
|
if (skipSource && p.ID() == op.ID()) || op.State() == livekit.ParticipantInfo_DISCONNECTED {
|
|
continue
|
|
}
|
|
|
|
err := op.SendParticipantUpdate(updates, updatedAt)
|
|
if err != nil {
|
|
r.Logger.Errorw("could not send update to participant", err,
|
|
"participant", p.Identity(), "pID", p.ID())
|
|
}
|
|
}
|
|
}
|
|
|
|
// for protocol 2, send all active speakers
|
|
func (r *Room) sendActiveSpeakers(speakers []*livekit.SpeakerInfo) {
|
|
dp := &livekit.DataPacket{
|
|
Kind: livekit.DataPacket_LOSSY,
|
|
Value: &livekit.DataPacket_Speaker{
|
|
Speaker: &livekit.ActiveSpeakerUpdate{
|
|
Speakers: speakers,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, p := range r.GetParticipants() {
|
|
if p.ProtocolVersion().HandlesDataPackets() && !p.ProtocolVersion().SupportsSpeakerChanged() {
|
|
_ = p.SendDataPacket(dp)
|
|
}
|
|
}
|
|
}
|
|
|
|
// for protocol 3, send only changed updates
|
|
func (r *Room) sendSpeakerChanges(speakers []*livekit.SpeakerInfo) {
|
|
for _, p := range r.GetParticipants() {
|
|
if p.ProtocolVersion().SupportsSpeakerChanged() {
|
|
_ = p.SendSpeakerUpdate(speakers)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (r *Room) audioUpdateWorker() {
|
|
var smoothValues map[string]float32
|
|
var smoothFactor float32
|
|
var activeThreshold float32
|
|
if ss := r.audioConfig.SmoothIntervals; ss > 1 {
|
|
smoothValues = make(map[string]float32)
|
|
// exponential moving average (EMA), same center of mass with simple moving average (SMA)
|
|
smoothFactor = 2 / float32(ss+1)
|
|
activeThreshold = ConvertAudioLevel(r.audioConfig.ActiveLevel)
|
|
}
|
|
|
|
lastActiveMap := make(map[string]*livekit.SpeakerInfo)
|
|
for {
|
|
if r.IsClosed() {
|
|
return
|
|
}
|
|
|
|
activeSpeakers := r.GetActiveSpeakers()
|
|
if smoothValues != nil {
|
|
for _, speaker := range activeSpeakers {
|
|
sid := speaker.Sid
|
|
level := smoothValues[sid]
|
|
delete(smoothValues, sid)
|
|
// exponential moving average (EMA)
|
|
level += (speaker.Level - level) * smoothFactor
|
|
speaker.Level = level
|
|
}
|
|
|
|
// ensure that previous active speakers are also included
|
|
for sid, level := range smoothValues {
|
|
delete(smoothValues, sid)
|
|
level += -level * smoothFactor
|
|
if level > activeThreshold {
|
|
activeSpeakers = append(activeSpeakers, &livekit.SpeakerInfo{
|
|
Sid: sid,
|
|
Level: level,
|
|
Active: true,
|
|
})
|
|
}
|
|
}
|
|
|
|
// smoothValues map is drained, now repopulate it back
|
|
for _, speaker := range activeSpeakers {
|
|
smoothValues[speaker.Sid] = speaker.Level
|
|
}
|
|
|
|
sort.Slice(activeSpeakers, func(i, j int) bool {
|
|
return activeSpeakers[i].Level > activeSpeakers[j].Level
|
|
})
|
|
}
|
|
|
|
const invAudioLevelQuantization = 1.0 / AudioLevelQuantization
|
|
for _, speaker := range activeSpeakers {
|
|
speaker.Level = float32(math.Ceil(float64(speaker.Level*AudioLevelQuantization)) * invAudioLevelQuantization)
|
|
}
|
|
|
|
changedSpeakers := make([]*livekit.SpeakerInfo, 0, len(activeSpeakers))
|
|
nextActiveMap := make(map[string]*livekit.SpeakerInfo, len(activeSpeakers))
|
|
for _, speaker := range activeSpeakers {
|
|
prev := lastActiveMap[speaker.Sid]
|
|
if prev == nil || prev.Level != speaker.Level {
|
|
changedSpeakers = append(changedSpeakers, speaker)
|
|
}
|
|
nextActiveMap[speaker.Sid] = speaker
|
|
}
|
|
// changedSpeakers need to include previous speakers that are no longer speaking
|
|
for sid, speaker := range lastActiveMap {
|
|
if nextActiveMap[sid] == nil {
|
|
speaker.Level = 0
|
|
speaker.Active = false
|
|
changedSpeakers = append(changedSpeakers, speaker)
|
|
}
|
|
}
|
|
|
|
// see if an update is needed
|
|
if len(changedSpeakers) > 0 {
|
|
r.sendActiveSpeakers(activeSpeakers)
|
|
r.sendSpeakerChanges(changedSpeakers)
|
|
}
|
|
|
|
lastActiveMap = nextActiveMap
|
|
|
|
time.Sleep(time.Duration(r.audioConfig.UpdateInterval) * time.Millisecond)
|
|
}
|
|
}
|
|
|
|
func (r *Room) connectionQualityWorker() {
|
|
// send updates to only users that are subscribed to each other
|
|
for {
|
|
if r.IsClosed() {
|
|
return
|
|
}
|
|
|
|
participants := r.GetParticipants()
|
|
connectionInfos := make(map[string]*livekit.ConnectionQualityInfo, len(participants))
|
|
|
|
for _, p := range participants {
|
|
connectionInfos[p.Identity()] = &livekit.ConnectionQualityInfo{
|
|
ParticipantSid: p.ID(),
|
|
Quality: p.GetConnectionQuality(),
|
|
}
|
|
}
|
|
|
|
for _, op := range participants {
|
|
update := &livekit.ConnectionQualityUpdate{}
|
|
|
|
// send to user itself
|
|
if info, ok := connectionInfos[op.Identity()]; ok {
|
|
update.Updates = append(update.Updates, info)
|
|
}
|
|
|
|
// send to other participants its subscribed to
|
|
for _, identity := range op.GetSubscribedParticipants() {
|
|
if info, ok := connectionInfos[identity]; ok {
|
|
update.Updates = append(update.Updates, info)
|
|
}
|
|
}
|
|
if err := op.SendConnectionQualityUpdate(update); err != nil {
|
|
r.Logger.Warnw("could not send connection quality update", err,
|
|
"participant", op.Identity())
|
|
}
|
|
}
|
|
|
|
time.Sleep(time.Second * 5)
|
|
}
|
|
}
|
|
|
|
func (r *Room) DebugInfo() map[string]interface{} {
|
|
info := map[string]interface{}{
|
|
"Name": r.Room.Name,
|
|
"Sid": r.Room.Sid,
|
|
"CreatedAt": r.Room.CreationTime,
|
|
}
|
|
|
|
participants := r.GetParticipants()
|
|
participantInfo := make(map[string]interface{})
|
|
for _, p := range participants {
|
|
participantInfo[p.Identity()] = p.DebugInfo()
|
|
}
|
|
info["Participants"] = participantInfo
|
|
|
|
return info
|
|
}
|