You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lal/pkg/rtsp/client_push_session.go

160 lines
4.9 KiB
Go

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// Copyright 2020, Chef. All rights reserved.
// https://github.com/q191201771/lal
//
// Use of this source code is governed by a MIT-style license
// that can be found in the License file.
//
// Author: Chef (191201771@qq.com)
package rtsp
import (
"github.com/q191201771/lal/pkg/base"
"github.com/q191201771/lal/pkg/rtprtcp"
"github.com/q191201771/lal/pkg/sdp"
"github.com/q191201771/naza/pkg/nazaerrors"
"github.com/q191201771/naza/pkg/nazalog"
"github.com/q191201771/naza/pkg/nazanet"
)
type PushSessionOption struct {
PushTimeoutMS int
OverTCP bool
}
var defaultPushSessionOption = PushSessionOption{
PushTimeoutMS: 10000,
OverTCP: false,
}
type PushSession struct {
uniqueKey string
cmdSession *ClientCommandSession
baseOutSession *BaseOutSession
}
type ModPushSessionOption func(option *PushSessionOption)
func NewPushSession(modOptions ...ModPushSessionOption) *PushSession {
option := defaultPushSessionOption
for _, fn := range modOptions {
fn(&option)
}
uk := base.GenUKRTSPPushSession()
s := &PushSession{
uniqueKey: uk,
}
cmdSession := NewClientCommandSession(CCSTPushSession, uk, s, func(opt *ClientCommandSessionOption) {
opt.DoTimeoutMS = option.PushTimeoutMS
opt.OverTCP = option.OverTCP
})
baseOutSession := NewBaseOutSession(uk, s)
s.cmdSession = cmdSession
s.baseOutSession = baseOutSession
nazalog.Infof("[%s] lifecycle new rtsp PushSession. session=%p", uk, s)
return s
}
// 阻塞直到和对端完成推流前握手部分的工作也即收到RTSP Record response或者发生错误
func (session *PushSession) Push(rawURL string, rawSDP []byte, sdpLogicCtx sdp.LogicContext) error {
nazalog.Debugf("[%s] push. url=%s", session.uniqueKey, rawURL)
session.cmdSession.InitWithSDP(rawSDP, sdpLogicCtx)
session.baseOutSession.InitWithSDP(rawSDP, sdpLogicCtx)
return session.cmdSession.Do(rawURL)
}
func (session *PushSession) WriteRTPPacket(packet rtprtcp.RTPPacket) {
session.baseOutSession.WriteRTPPacket(packet)
}
// 文档请参考: interface IClientSessionLifecycle
func (session *PushSession) Dispose() error {
nazalog.Infof("[%s] lifecycle dispose rtsp PushSession. session=%p", session.uniqueKey, session)
e1 := session.cmdSession.Dispose()
e2 := session.baseOutSession.Dispose()
return nazaerrors.CombineErrors(e1, e2)
}
// 文档请参考: interface IClientSessionLifecycle
func (session *PushSession) WaitChan() <-chan error {
return session.cmdSession.WaitChan()
}
// 文档请参考: interface ISessionURLContext
func (session *PushSession) URL() string {
return session.cmdSession.URL()
}
// 文档请参考: interface ISessionURLContext
func (session *PushSession) AppName() string {
return session.cmdSession.AppName()
}
// 文档请参考: interface ISessionURLContext
func (session *PushSession) StreamName() string {
return session.cmdSession.StreamName()
}
// 文档请参考: interface ISessionURLContext
func (session *PushSession) RawQuery() string {
return session.cmdSession.RawQuery()
}
// 文档请参考: interface IObject
func (session *PushSession) UniqueKey() string {
return session.uniqueKey
}
// 文档请参考: interface ISessionStat
func (session *PushSession) GetStat() base.StatSession {
stat := session.baseOutSession.GetStat()
stat.RemoteAddr = session.cmdSession.RemoteAddr()
return stat
}
// 文档请参考: interface ISessionStat
func (session *PushSession) UpdateStat(intervalSec uint32) {
session.baseOutSession.UpdateStat(intervalSec)
}
// 文档请参考: interface ISessionStat
func (session *PushSession) IsAlive() (readAlive, writeAlive bool) {
return session.baseOutSession.IsAlive()
}
// ClientCommandSessionObserver, callback by ClientCommandSession
func (session *PushSession) OnConnectResult() {
// noop
}
// ClientCommandSessionObserver, callback by ClientCommandSession
func (session *PushSession) OnDescribeResponse(rawSDP []byte, sdpLogicCtx sdp.LogicContext) {
// noop
}
// ClientCommandSessionObserver, callback by ClientCommandSession
func (session *PushSession) OnSetupWithConn(uri string, rtpConn, rtcpConn *nazanet.UDPConnection) {
_ = session.baseOutSession.SetupWithConn(uri, rtpConn, rtcpConn)
}
// ClientCommandSessionObserver, callback by ClientCommandSession
func (session *PushSession) OnSetupWithChannel(uri string, rtpChannel, rtcpChannel int) {
_ = session.baseOutSession.SetupWithChannel(uri, rtpChannel, rtcpChannel)
}
// ClientCommandSessionObserver, callback by ClientCommandSession
func (session *PushSession) OnSetupResult() {
// noop
}
// ClientCommandSessionObserver, callback by ClientCommandSession
func (session *PushSession) OnInterleavedPacket(packet []byte, channel int) {
session.baseOutSession.HandleInterleavedPacket(packet, channel)
}
// IInterleavedPacketWriter, callback by BaseOutSession
func (session *PushSession) WriteInterleavedPacket(packet []byte, channel int) error {
return session.cmdSession.WriteInterleavedPacket(packet, channel)
}