mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 13:25:42 +00:00
212 lines
5.4 KiB
Go
212 lines
5.4 KiB
Go
// Copyright 2023 LiveKit, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package routing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/redis/go-redis/v9"
|
|
"go.uber.org/atomic"
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"github.com/livekit/protocol/livekit"
|
|
)
|
|
|
|
const (
|
|
// hash of node_id => Node proto
|
|
NodesKey = "nodes"
|
|
|
|
// hash of room_name => node_id
|
|
NodeRoomKey = "room_node_map"
|
|
)
|
|
|
|
var redisCtx = context.Background()
|
|
|
|
// location of the participant's RTC connection, hash
|
|
func participantRTCKey(participantKey livekit.ParticipantKey) string {
|
|
return "participant_rtc:" + string(participantKey)
|
|
}
|
|
|
|
// location of the participant's Signal connection, hash
|
|
func participantSignalKey(connectionID livekit.ConnectionID) string {
|
|
return "participant_signal:" + string(connectionID)
|
|
}
|
|
|
|
func rtcNodeChannel(nodeID livekit.NodeID) string {
|
|
return "rtc_channel:" + string(nodeID)
|
|
}
|
|
|
|
func signalNodeChannel(nodeID livekit.NodeID) string {
|
|
return "signal_channel:" + string(nodeID)
|
|
}
|
|
|
|
func publishRTCMessage(rc redis.UniversalClient, nodeID livekit.NodeID, participantKey livekit.ParticipantKey, participantKeyB62 livekit.ParticipantKey, msg proto.Message) error {
|
|
rm := &livekit.RTCNodeMessage{
|
|
ParticipantKey: string(participantKey),
|
|
ParticipantKeyB62: string(participantKeyB62),
|
|
}
|
|
switch o := msg.(type) {
|
|
case *livekit.StartSession:
|
|
rm.Message = &livekit.RTCNodeMessage_StartSession{
|
|
StartSession: o,
|
|
}
|
|
case *livekit.SignalRequest:
|
|
rm.Message = &livekit.RTCNodeMessage_Request{
|
|
Request: o,
|
|
}
|
|
case *livekit.RTCNodeMessage:
|
|
rm = o
|
|
rm.ParticipantKey = string(participantKey)
|
|
rm.ParticipantKeyB62 = string(participantKeyB62)
|
|
default:
|
|
return ErrInvalidRouterMessage
|
|
}
|
|
data, err := proto.Marshal(rm)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// logger.Debugw("publishing to rtc", "rtcChannel", rtcNodeChannel(nodeID),
|
|
// "message", rm.Message)
|
|
return rc.Publish(redisCtx, rtcNodeChannel(nodeID), data).Err()
|
|
}
|
|
|
|
func publishSignalMessage(rc redis.UniversalClient, nodeID livekit.NodeID, connectionID livekit.ConnectionID, msg proto.Message) error {
|
|
rm := &livekit.SignalNodeMessage{
|
|
ConnectionId: string(connectionID),
|
|
}
|
|
switch o := msg.(type) {
|
|
case *livekit.SignalResponse:
|
|
rm.Message = &livekit.SignalNodeMessage_Response{
|
|
Response: o,
|
|
}
|
|
case *livekit.EndSession:
|
|
rm.Message = &livekit.SignalNodeMessage_EndSession{
|
|
EndSession: o,
|
|
}
|
|
default:
|
|
return ErrInvalidRouterMessage
|
|
}
|
|
data, err := proto.Marshal(rm)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// logger.Debugw("publishing to signal", "signalChannel", signalNodeChannel(nodeID),
|
|
// "message", rm.Message)
|
|
return rc.Publish(redisCtx, signalNodeChannel(nodeID), data).Err()
|
|
}
|
|
|
|
type RTCNodeSink struct {
|
|
rc redis.UniversalClient
|
|
nodeID livekit.NodeID
|
|
connectionID livekit.ConnectionID
|
|
participantKey livekit.ParticipantKey
|
|
participantKeyB62 livekit.ParticipantKey
|
|
isClosed atomic.Bool
|
|
onClose func()
|
|
}
|
|
|
|
func NewRTCNodeSink(
|
|
rc redis.UniversalClient,
|
|
nodeID livekit.NodeID,
|
|
connectionID livekit.ConnectionID,
|
|
participantKey livekit.ParticipantKey,
|
|
participantKeyB62 livekit.ParticipantKey,
|
|
) *RTCNodeSink {
|
|
return &RTCNodeSink{
|
|
rc: rc,
|
|
nodeID: nodeID,
|
|
connectionID: connectionID,
|
|
participantKey: participantKey,
|
|
participantKeyB62: participantKeyB62,
|
|
}
|
|
}
|
|
|
|
func (s *RTCNodeSink) WriteMessage(msg proto.Message) error {
|
|
if s.isClosed.Load() {
|
|
return ErrChannelClosed
|
|
}
|
|
return publishRTCMessage(s.rc, s.nodeID, s.participantKey, s.participantKeyB62, msg)
|
|
}
|
|
|
|
func (s *RTCNodeSink) Close() {
|
|
if s.isClosed.Swap(true) {
|
|
return
|
|
}
|
|
if s.onClose != nil {
|
|
s.onClose()
|
|
}
|
|
}
|
|
|
|
func (s *RTCNodeSink) IsClosed() bool {
|
|
return s.isClosed.Load()
|
|
}
|
|
|
|
func (s *RTCNodeSink) OnClose(f func()) {
|
|
s.onClose = f
|
|
}
|
|
|
|
func (s *RTCNodeSink) ConnectionID() livekit.ConnectionID {
|
|
return s.connectionID
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
type SignalNodeSink struct {
|
|
rc redis.UniversalClient
|
|
nodeID livekit.NodeID
|
|
connectionID livekit.ConnectionID
|
|
isClosed atomic.Bool
|
|
onClose func()
|
|
}
|
|
|
|
func NewSignalNodeSink(rc redis.UniversalClient, nodeID livekit.NodeID, connectionID livekit.ConnectionID) *SignalNodeSink {
|
|
return &SignalNodeSink{
|
|
rc: rc,
|
|
nodeID: nodeID,
|
|
connectionID: connectionID,
|
|
}
|
|
}
|
|
|
|
func (s *SignalNodeSink) WriteMessage(msg proto.Message) error {
|
|
if s.isClosed.Load() {
|
|
return ErrChannelClosed
|
|
}
|
|
return publishSignalMessage(s.rc, s.nodeID, s.connectionID, msg)
|
|
}
|
|
|
|
func (s *SignalNodeSink) Close() {
|
|
if s.isClosed.Swap(true) {
|
|
return
|
|
}
|
|
_ = publishSignalMessage(s.rc, s.nodeID, s.connectionID, &livekit.EndSession{})
|
|
if s.onClose != nil {
|
|
s.onClose()
|
|
}
|
|
}
|
|
|
|
func (s *SignalNodeSink) IsClosed() bool {
|
|
return s.isClosed.Load()
|
|
}
|
|
|
|
func (s *SignalNodeSink) OnClose(f func()) {
|
|
s.onClose = f
|
|
}
|
|
|
|
func (s *SignalNodeSink) ConnectionID() livekit.ConnectionID {
|
|
return s.connectionID
|
|
}
|