mirror of
https://github.com/langhuihui/monibuca.git
synced 2026-05-10 10:12:31 +08:00
70 lines
1.7 KiB
Go
70 lines
1.7 KiB
Go
package plugin_gb28181pro
|
|
|
|
import (
|
|
"log/slog"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"m7s.live/v5"
|
|
"m7s.live/v5/pkg/util"
|
|
gb28181 "m7s.live/v5/plugin/gb28181/pkg"
|
|
)
|
|
|
|
type RecordRequest struct {
|
|
SN, SumNum int
|
|
ReceivedNum int // 已接收的记录数
|
|
Response []gb28181.Message
|
|
*util.Promise
|
|
}
|
|
|
|
func (r *RecordRequest) GetKey() int {
|
|
return r.SN
|
|
}
|
|
|
|
// AddResponse 添加响应并检查是否完成
|
|
func (r *RecordRequest) AddResponse(msg gb28181.Message) bool {
|
|
r.Response = append(r.Response, msg)
|
|
r.ReceivedNum += msg.RecordList.Num
|
|
// 当接收到的记录数等于总数时,表示接收完成
|
|
return r.ReceivedNum >= msg.SumNum
|
|
}
|
|
|
|
// PresetRequest 预置位请求结构体
|
|
type PresetRequest struct {
|
|
SN int
|
|
Response []gb28181.PresetItem
|
|
*util.Promise
|
|
}
|
|
|
|
func (r *PresetRequest) GetKey() int {
|
|
return r.SN
|
|
}
|
|
|
|
type Channel struct {
|
|
Device *Device // 所属设备
|
|
State atomic.Int32 // 通道状态,0:空闲,1:正在invite,2:正在播放/对讲
|
|
GpsTime time.Time // gps时间
|
|
Longitude, Latitude string // 经度
|
|
RecordReqs util.Collection[int, *RecordRequest]
|
|
PresetReqs util.Collection[int, *PresetRequest] // 预置位请求集合
|
|
*slog.Logger
|
|
gb28181.DeviceChannel
|
|
AbstractDevice *m7s.PullProxy
|
|
}
|
|
|
|
func (c *Channel) GetKey() string {
|
|
return c.DeviceID
|
|
}
|
|
|
|
func (c *Channel) Pull() {
|
|
pubConf := c.Device.plugin.GetCommonConf().Publish
|
|
pubConf.PubAudio = c.AbstractDevice.Audio
|
|
pubConf.DelayCloseTimeout = util.Conditional(c.AbstractDevice.StopOnIdle, time.Second*5, 0)
|
|
c.Info("into channel.Pull")
|
|
c.Device.plugin.Pull(c.AbstractDevice.GetStreamPath(), c.AbstractDevice.Pull, &pubConf)
|
|
}
|
|
|
|
func (c *Channel) GetDeviceID() string {
|
|
return c.DeviceID
|
|
}
|