forked from deepch/RTSPtoWSMP4f
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.go
167 lines (143 loc) · 3.74 KB
/
config.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package main
import (
"crypto/rand"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"sync"
"github.com/webver/vdk/av"
)
type ConfigST struct {
mutex sync.Mutex
Server ServerST `json:"server"`
Streams map[string]*StreamST `json:"streams"`
HlsMsPerSegment int64 `json:"hlsMsPerSegment"`
HlsDirectory string `json:"hlsDirectory"`
HlsWindowSize uint `json:"hlsWindowSize"`
HlsCapacity uint `json:"hlsWindowCapacity"`
}
type ServerST struct {
HTTPPort string `json:"http_port"`
HTTPTimeout int `json:"http_timeout"`
}
type StreamST struct {
URL string `json:"url"`
Status bool `json:"status"`
Codecs []av.CodecData
Clients map[string]viewer
HlsChanel chan av.Packet
}
type viewer struct {
c chan av.Packet
}
const (
defaultHttpPort = ":8083"
defaultHlsDir = "./hls"
defaultHlsMsPerSegment = 10000
defaultHlsCapacity = 10
defaultHlsWindowSize = 5
)
func NewAppConfiguration(fname string) *ConfigST {
var jsonConf ConfigST
data, err := ioutil.ReadFile(fname)
if err != nil {
log.Fatalln(err)
}
err = json.Unmarshal(data, &jsonConf)
if err != nil {
log.Fatalln(err)
}
if jsonConf.Server.HTTPPort == "" {
jsonConf.Server.HTTPPort = defaultHttpPort
}
if jsonConf.HlsDirectory == "" {
jsonConf.HlsDirectory = defaultHlsDir
}
if jsonConf.HlsMsPerSegment == 0 {
jsonConf.HlsMsPerSegment = defaultHlsMsPerSegment
}
if jsonConf.HlsCapacity == 0 {
jsonConf.HlsCapacity = defaultHlsCapacity
}
if jsonConf.HlsWindowSize == 0 {
jsonConf.HlsWindowSize = defaultHlsWindowSize
}
if jsonConf.HlsWindowSize > jsonConf.HlsCapacity {
jsonConf.HlsWindowSize = jsonConf.HlsCapacity
}
for i, v := range jsonConf.Streams {
v.Clients = make(map[string]viewer)
v.HlsChanel = make(chan av.Packet, 100)
jsonConf.Streams[i] = v
}
return &jsonConf
}
func (element *ConfigST) Cast(uuid string, pck av.Packet) {
element.Streams[uuid].HlsChanel <- pck
for _, v := range element.Streams[uuid].Clients {
if len(v.c) < cap(v.c) {
v.c <- pck
}
}
}
func (element *ConfigST) Ext(suuid string) bool {
_, ok := element.Streams[suuid]
return ok
}
func (element *ConfigST) CodecAdd(suuid string, codecs []av.CodecData) {
defer element.mutex.Unlock()
element.mutex.Lock()
t := element.Streams[suuid]
t.Codecs = codecs
element.Streams[suuid] = t
}
func (element *ConfigST) CodecGet(suuid string) []av.CodecData {
return element.Streams[suuid].Codecs
}
func (element *ConfigST) UpdateStatus(suuid string, status bool) {
defer element.mutex.Unlock()
element.mutex.Lock()
t := element.Streams[suuid]
t.Status = status
element.Streams[suuid] = t
}
func (element *ConfigST) ClientAdd(suuid string) (string, chan av.Packet) {
defer element.mutex.Unlock()
element.mutex.Lock()
cuuid := pseudoUUID()
ch := make(chan av.Packet, 100)
element.Streams[suuid].Clients[cuuid] = viewer{c: ch}
return cuuid, ch
}
func (element *ConfigST) ClientDelete(suuid, cuuid string) {
defer element.mutex.Unlock()
element.mutex.Lock()
delete(element.Streams[suuid].Clients, cuuid)
}
func (element *ConfigST) StartHlsCast(config *ConfigST, suuid string, stopCast chan bool) {
defer element.mutex.Unlock()
element.mutex.Lock()
go startHls(config, suuid, element.Streams[suuid].HlsChanel, stopCast)
}
func (element *ConfigST) List() (string, []string) {
var res []string
var fist string
for k := range element.Streams {
if fist == "" {
fist = k
}
res = append(res, k)
}
return fist, res
}
func pseudoUUID() (uuid string) {
b := make([]byte, 16)
_, err := rand.Read(b)
if err != nil {
fmt.Println("Error: ", err)
return
}
uuid = fmt.Sprintf("%X-%X-%X-%X-%X", b[0:4], b[4:6], b[6:8], b[8:10], b[10:])
return
}