ghostream/stream/srt/srt.go

131 lines
3.4 KiB
Go
Raw Normal View History

2020-09-27 09:14:22 +00:00
package srt
import (
2020-10-01 21:31:14 +00:00
"gitlab.crans.org/nounous/ghostream/auth"
"gitlab.crans.org/nounous/ghostream/auth/bypass"
2020-09-27 09:14:22 +00:00
"log"
"net"
"strconv"
2020-10-01 21:31:14 +00:00
"strings"
2020-09-27 09:14:22 +00:00
2020-09-27 18:43:00 +00:00
"github.com/haivision/srtgo"
2020-09-27 09:14:22 +00:00
)
// Options holds web package configuration
type Options struct {
ListenAddress string
MaxClients int
}
2020-10-01 17:05:39 +00:00
// Packet contains the necessary data to broadcast events like stream creating, packet receiving or stream closing.
type Packet struct {
Data []byte
PacketType string
StreamName string
}
// Split host and port from listen address
func splitHostPort(hostport string) (string, uint16) {
host, portS, err := net.SplitHostPort(hostport)
if err != nil {
log.Fatalf("Failed to split host and port from %s", hostport)
}
if host == "" {
host = "0.0.0.0"
}
port64, err := strconv.ParseUint(portS, 10, 16)
if err != nil {
log.Fatalf("Port is not a integer: %s", err)
}
return host, uint16(port64)
2020-09-27 09:14:22 +00:00
}
// Serve SRT server
2020-10-01 21:31:14 +00:00
func Serve(cfg *Options, authBackend auth.Backend, forwardingChannel chan Packet) {
if authBackend == nil {
authBackend, _ = bypass.New()
}
2020-09-27 18:43:00 +00:00
options := make(map[string]string)
2020-09-28 14:32:35 +00:00
options["transtype"] = "live"
2020-09-27 18:43:00 +00:00
2020-09-29 18:58:55 +00:00
// Start SRT in listen mode
log.Printf("SRT server listening on %s", cfg.ListenAddress)
host, port := splitHostPort(cfg.ListenAddress)
2020-10-01 21:31:14 +00:00
sck := srtgo.NewSrtSocket(host, port, options)
2020-09-30 14:53:15 +00:00
if err := sck.Listen(cfg.MaxClients); err != nil {
log.Fatal("Unable to listen to SRT clients:", err)
}
2020-09-27 09:14:22 +00:00
2020-09-29 18:58:55 +00:00
// FIXME: See srtgo.SocketOptions and value, err := s.GetSockOptString to get parameters
// http://ffmpeg.org/ffmpeg-protocols.html#srt
2020-09-27 18:43:00 +00:00
for {
2020-09-29 18:58:55 +00:00
// Wait for new connection
2020-09-27 20:10:47 +00:00
s, err := sck.Accept()
if err != nil {
2020-09-28 14:32:35 +00:00
log.Println("Error occurred while accepting request:", err)
2020-09-29 18:58:55 +00:00
break // FIXME: should not break here
2020-09-27 18:43:00 +00:00
}
2020-09-27 20:10:47 +00:00
2020-10-01 21:31:14 +00:00
streamId, err := s.GetSockOptString(46) // SRTO_STREAMID
if err != nil {
log.Println("Error while fetching stream key:", err)
s.Close()
continue
}
if !strings.Contains(streamId, "|") {
log.Printf("Warning: stream id must be at the format streamId|password. Input: %s", streamId)
s.Close()
continue
}
splittedStreamId := strings.SplitN(streamId, "|", 2)
streamName, password := splittedStreamId[0], splittedStreamId[1]
loggedIn, err := authBackend.Login(streamName, password)
if !loggedIn {
log.Printf("Invalid credentials for stream %s.", streamName)
s.Close()
continue
}
log.Printf("Starting stream %s...", streamName)
2020-09-29 18:58:55 +00:00
// Create a new buffer
2020-09-28 14:32:35 +00:00
buff := make([]byte, 2048)
2020-09-30 13:07:36 +00:00
// Setup stream forwarding
2020-10-01 21:31:14 +00:00
forwardingChannel <- Packet{StreamName: streamName, PacketType: "register", Data: nil}
2020-09-28 14:32:35 +00:00
// Read RTP packets forever and send them to the WebRTC Client
for {
n, err := s.Read(buff, 10000)
if err != nil {
log.Println("Error occured while reading SRT socket:", err)
break
}
2020-09-29 18:58:55 +00:00
if n == 0 {
// End of stream
log.Printf("Received no bytes, stopping stream.")
break
}
// log.Printf("Received %d bytes", n)
2020-09-28 14:32:35 +00:00
// Send raw packet to other streams
// Copy data in another buffer to ensure that the data would not be overwritten
data := make([]byte, n)
copy(data, buff[:n])
2020-10-01 21:31:14 +00:00
forwardingChannel <- Packet{StreamName: streamName, PacketType: "sendData", Data: data}
2020-09-28 14:32:35 +00:00
2020-09-29 18:58:55 +00:00
// TODO: Send to WebRTC
2020-09-30 13:07:36 +00:00
// See https://github.com/ebml-go/webm/blob/master/reader.go
//err := videoTrack.WriteSample(media.Sample{Data: data, Samples: uint32(sampleCount)})
2020-09-28 14:32:35 +00:00
}
2020-10-01 21:31:14 +00:00
forwardingChannel <- Packet{StreamName: streamName, PacketType: "close", Data: nil}
2020-09-27 09:14:22 +00:00
}
2020-10-01 21:31:14 +00:00
sck.Close()
2020-09-27 09:14:22 +00:00
}