forked from deepch/RTSPtoWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
storageStruct.go
117 lines (104 loc) · 4.19 KB
/
storageStruct.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package main
import (
"errors"
"net"
"sync"
"time"
"github.com/deepch/vdk/av"
"github.com/sirupsen/logrus"
)
var Storage = NewStreamCore()
//Default stream type
const (
MSE = iota
WEBRTC
RTSP
)
//Default stream status type
const (
OFFLINE = iota
ONLINE
)
//Default stream errors
var (
Success = "success"
ErrorStreamNotFound = errors.New("stream not found")
ErrorStreamAlreadyExists = errors.New("stream already exists")
ErrorStreamChannelAlreadyExists = errors.New("stream channel already exists")
ErrorStreamNotHLSSegments = errors.New("stream hls not ts seq found")
ErrorStreamNoVideo = errors.New("stream no video")
ErrorStreamNoClients = errors.New("stream no clients")
ErrorStreamRestart = errors.New("stream restart")
ErrorStreamStopCoreSignal = errors.New("stream stop core signal")
ErrorStreamStopRTSPSignal = errors.New("stream stop rtsp signal")
ErrorStreamChannelNotFound = errors.New("stream channel not found")
ErrorStreamChannelCodecNotFound = errors.New("stream channel codec not ready, possible stream offline")
ErrorStreamsLen0 = errors.New("streams len zero")
)
//StorageST main storage struct
type StorageST struct {
mutex sync.RWMutex
Server ServerST `json:"server" groups:"api,config"`
Streams map[string]StreamST `json:"streams,omitempty" groups:"api,config"`
ChannelDefaults ChannelST `json:"channel_defaults,omitempty" groups:"api,config"`
}
//ServerST server storage section
type ServerST struct {
Debug bool `json:"debug" groups:"api,config"`
LogLevel logrus.Level `json:"log_level" groups:"api,config"`
HTTPDemo bool `json:"http_demo" groups:"api,config"`
HTTPDebug bool `json:"http_debug" groups:"api,config"`
HTTPLogin string `json:"http_login" groups:"api,config"`
HTTPPassword string `json:"http_password" groups:"api,config"`
HTTPDir string `json:"http_dir" groups:"api,config"`
HTTPPort string `json:"http_port" groups:"api,config"`
RTSPPort string `json:"rtsp_port" groups:"api,config"`
HTTPS bool `json:"https" groups:"api,config"`
HTTPSPort string `json:"https_port" groups:"api,config"`
HTTPSCert string `json:"https_cert" groups:"api,config"`
HTTPSKey string `json:"https_key" groups:"api,config"`
HTTPSAutoTLSEnable bool `json:"https_auto_tls" groups:"api,config"`
HTTPSAutoTLSName string `json:"https_auto_tls_name" groups:"api,config"`
Token Token `json:"token,omitempty" groups:"api,config"`
}
//Token auth
type Token struct {
Enable bool `json:"enable" groups:"api,config"`
Backend string `json:"backend" groups:"api,config"`
}
//ServerST stream storage section
type StreamST struct {
Name string `json:"name,omitempty" groups:"api,config"`
Channels map[string]ChannelST `json:"channels,omitempty" groups:"api,config"`
}
type ChannelST struct {
Name string `json:"name,omitempty" groups:"api,config"`
URL string `json:"url,omitempty" groups:"api,config"`
OnDemand bool `json:"on_demand,omitempty" groups:"api,config"`
Debug bool `json:"debug,omitempty" groups:"api,config"`
Status int `json:"status,omitempty" groups:"api"`
InsecureSkipVerify bool `json:"insecure_skip_verify,omitempty" groups:"api,config"`
Audio bool `json:"audio,omitempty" groups:"api,config"`
runLock bool
codecs []av.CodecData
sdp []byte
signals chan int
hlsSegmentBuffer map[int]SegmentOld
hlsSegmentNumber int
clients map[string]ClientST
ack time.Time
hlsMuxer *MuxerHLS `json:"-"`
}
//ClientST client storage section
type ClientST struct {
mode int
signals chan int
outgoingAVPacket chan *av.Packet
outgoingRTPPacket chan *[]byte
socket net.Conn
}
//SegmentOld HLS cache section
type SegmentOld struct {
dur time.Duration
data []*av.Packet
}