mirror of
https://github.com/strukturag/nextcloud-spreed-signaling.git
synced 2025-03-14 11:32:46 +00:00
240 lines
6.1 KiB
Go
240 lines
6.1 KiB
Go
/**
|
|
* Standalone signaling server for the Nextcloud Spreed app.
|
|
* Copyright (C) 2017 struktur AG
|
|
*
|
|
* @author Joachim Bauch <bauch@struktur.de>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package signaling
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"github.com/dlintw/goconf"
|
|
)
|
|
|
|
const (
|
|
McuTypeJanus = "janus"
|
|
McuTypeProxy = "proxy"
|
|
|
|
McuTypeDefault = McuTypeJanus
|
|
|
|
defaultMaxStreamBitrate = 1024 * 1024
|
|
defaultMaxScreenBitrate = 2048 * 1024
|
|
)
|
|
|
|
var (
|
|
ErrNotConnected = fmt.Errorf("not connected")
|
|
)
|
|
|
|
type MediaType int
|
|
|
|
const (
|
|
MediaTypeAudio MediaType = 1 << 0
|
|
MediaTypeVideo MediaType = 1 << 1
|
|
MediaTypeScreen MediaType = 1 << 2
|
|
)
|
|
|
|
type McuListener interface {
|
|
PublicId() string
|
|
|
|
OnUpdateOffer(client McuClient, offer map[string]interface{})
|
|
|
|
OnIceCandidate(client McuClient, candidate interface{})
|
|
OnIceCompleted(client McuClient)
|
|
|
|
SubscriberSidUpdated(subscriber McuSubscriber)
|
|
|
|
PublisherClosed(publisher McuPublisher)
|
|
SubscriberClosed(subscriber McuSubscriber)
|
|
}
|
|
|
|
type McuInitiator interface {
|
|
Country() string
|
|
}
|
|
|
|
type McuSettings interface {
|
|
MaxStreamBitrate() int32
|
|
MaxScreenBitrate() int32
|
|
Timeout() time.Duration
|
|
|
|
Reload(config *goconf.ConfigFile)
|
|
}
|
|
|
|
type mcuCommonSettings struct {
|
|
maxStreamBitrate atomic.Int32
|
|
maxScreenBitrate atomic.Int32
|
|
|
|
timeout atomic.Int64
|
|
}
|
|
|
|
func (s *mcuCommonSettings) MaxStreamBitrate() int32 {
|
|
return s.maxStreamBitrate.Load()
|
|
}
|
|
|
|
func (s *mcuCommonSettings) MaxScreenBitrate() int32 {
|
|
return s.maxScreenBitrate.Load()
|
|
}
|
|
|
|
func (s *mcuCommonSettings) Timeout() time.Duration {
|
|
return time.Duration(s.timeout.Load())
|
|
}
|
|
|
|
func (s *mcuCommonSettings) setTimeout(timeout time.Duration) {
|
|
s.timeout.Store(int64(timeout))
|
|
}
|
|
|
|
func (s *mcuCommonSettings) load(config *goconf.ConfigFile) error {
|
|
maxStreamBitrate, _ := config.GetInt("mcu", "maxstreambitrate")
|
|
if maxStreamBitrate <= 0 {
|
|
maxStreamBitrate = defaultMaxStreamBitrate
|
|
}
|
|
log.Printf("Maximum bandwidth %d bits/sec per publishing stream", maxStreamBitrate)
|
|
s.maxStreamBitrate.Store(int32(maxStreamBitrate))
|
|
|
|
maxScreenBitrate, _ := config.GetInt("mcu", "maxscreenbitrate")
|
|
if maxScreenBitrate <= 0 {
|
|
maxScreenBitrate = defaultMaxScreenBitrate
|
|
}
|
|
log.Printf("Maximum bandwidth %d bits/sec per screensharing stream", maxScreenBitrate)
|
|
s.maxScreenBitrate.Store(int32(maxScreenBitrate))
|
|
return nil
|
|
}
|
|
|
|
type Mcu interface {
|
|
Start(ctx context.Context) error
|
|
Stop()
|
|
Reload(config *goconf.ConfigFile)
|
|
|
|
SetOnConnected(func())
|
|
SetOnDisconnected(func())
|
|
|
|
GetStats() interface{}
|
|
|
|
NewPublisher(ctx context.Context, listener McuListener, id string, sid string, streamType StreamType, settings NewPublisherSettings, initiator McuInitiator) (McuPublisher, error)
|
|
NewSubscriber(ctx context.Context, listener McuListener, publisher string, streamType StreamType, initiator McuInitiator) (McuSubscriber, error)
|
|
}
|
|
|
|
// PublisherStream contains the available properties when creating a
|
|
// remote publisher in Janus.
|
|
type PublisherStream struct {
|
|
Mid string `json:"mid"`
|
|
Mindex int `json:"mindex"`
|
|
Type string `json:"type"`
|
|
|
|
Description string `json:"description,omitempty"`
|
|
Disabled bool `json:"disabled,omitempty"`
|
|
|
|
// For types "audio" and "video"
|
|
Codec string `json:"codec,omitempty"`
|
|
|
|
// For type "audio"
|
|
Stereo bool `json:"stereo,omitempty"`
|
|
Fec bool `json:"fec,omitempty"`
|
|
Dtx bool `json:"dtx,omitempty"`
|
|
|
|
// For type "video"
|
|
Simulcast bool `json:"simulcast,omitempty"`
|
|
Svc bool `json:"svc,omitempty"`
|
|
|
|
ProfileH264 string `json:"h264_profile,omitempty"`
|
|
ProfileVP9 string `json:"vp9_profile,omitempty"`
|
|
|
|
ExtIdVideoOrientation int `json:"videoorient_ext_id,omitempty"`
|
|
ExtIdPlayoutDelay int `json:"playoutdelay_ext_id,omitempty"`
|
|
}
|
|
|
|
type RemotePublisherController interface {
|
|
PublisherId() string
|
|
|
|
StartPublishing(ctx context.Context, publisher McuRemotePublisherProperties) error
|
|
StopPublishing(ctx context.Context, publisher McuRemotePublisherProperties) error
|
|
GetStreams(ctx context.Context) ([]PublisherStream, error)
|
|
}
|
|
|
|
type RemoteMcu interface {
|
|
NewRemotePublisher(ctx context.Context, listener McuListener, controller RemotePublisherController, streamType StreamType) (McuRemotePublisher, error)
|
|
NewRemoteSubscriber(ctx context.Context, listener McuListener, publisher McuRemotePublisher) (McuRemoteSubscriber, error)
|
|
}
|
|
|
|
type StreamType string
|
|
|
|
const (
|
|
StreamTypeAudio StreamType = "audio"
|
|
StreamTypeVideo StreamType = "video"
|
|
StreamTypeScreen StreamType = "screen"
|
|
)
|
|
|
|
func IsValidStreamType(s string) bool {
|
|
switch s {
|
|
case string(StreamTypeAudio):
|
|
fallthrough
|
|
case string(StreamTypeVideo):
|
|
fallthrough
|
|
case string(StreamTypeScreen):
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
type McuClient interface {
|
|
Id() string
|
|
Sid() string
|
|
StreamType() StreamType
|
|
MaxBitrate() int
|
|
|
|
Close(ctx context.Context)
|
|
|
|
SendMessage(ctx context.Context, message *MessageClientMessage, data *MessageClientMessageData, callback func(error, map[string]interface{}))
|
|
}
|
|
|
|
type McuPublisher interface {
|
|
McuClient
|
|
|
|
HasMedia(MediaType) bool
|
|
SetMedia(MediaType)
|
|
|
|
GetStreams(ctx context.Context) ([]PublisherStream, error)
|
|
PublishRemote(ctx context.Context, remoteId string, hostname string, port int, rtcpPort int) error
|
|
UnpublishRemote(ctx context.Context, remoteId string, hostname string, port int, rtcpPort int) error
|
|
}
|
|
|
|
type McuSubscriber interface {
|
|
McuClient
|
|
|
|
Publisher() string
|
|
}
|
|
|
|
type McuRemotePublisherProperties interface {
|
|
Port() int
|
|
RtcpPort() int
|
|
}
|
|
|
|
type McuRemotePublisher interface {
|
|
McuClient
|
|
|
|
McuRemotePublisherProperties
|
|
}
|
|
|
|
type McuRemoteSubscriber interface {
|
|
McuSubscriber
|
|
}
|