-
Notifications
You must be signed in to change notification settings - Fork 59
/
videostreamer.go
496 lines (413 loc) · 12.5 KB
/
videostreamer.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
package main
import (
"flag"
"fmt"
"log"
"net"
"net/http"
"net/http/fcgi"
"os"
"sync"
"unsafe"
)
// #include "videostreamer.h"
// #include <stdlib.h>
// #cgo LDFLAGS: -lavformat -lavdevice -lavcodec -lavutil
// #cgo CFLAGS: -std=c11
// #cgo pkg-config: libavcodec
import "C"
// Args holds command line arguments.
type Args struct {
ListenHost string
ListenPort int
InputFormat string
InputURL string
Verbose bool
// Serve with FCGI protocol (true) or HTTP (false).
FCGI bool
}
// HTTPHandler allows us to pass information to our request handlers.
type HTTPHandler struct {
Verbose bool
ClientChan chan<- *Client
}
// Client is servicing one HTTP client.
type Client struct {
// Protect access to Output in particular. Destroying it when we clean up
// the client can race with packetWriter().
mutex *sync.RWMutex
// packetWriter goroutine writes out video packets to this pipe. HTTP
// goroutine reads from the read side.
OutPipe *os.File
// Reference to a media output context. Through this, the packetWriter
// goroutine writes packets to the write side of the pipe.
Output *C.struct_VSOutput
// Encoder writes packets to this channel, then the packetWriter goroutine
// writes them to the pipe.
PacketChan chan *C.AVPacket
}
func main() {
args, err := getArgs()
if err != nil {
log.Fatalf("Invalid argument: %s", err)
}
C.vs_setup()
// Clients provide encoder info about themselves when they start up.
clientChan := make(chan *Client)
go encoder(args.InputFormat, args.InputURL, args.Verbose, clientChan)
// Start serving either with HTTP or FastCGI.
hostPort := fmt.Sprintf("%s:%d", args.ListenHost, args.ListenPort)
handler := HTTPHandler{
Verbose: args.Verbose,
ClientChan: clientChan,
}
if args.FCGI {
listener, err := net.Listen("tcp", hostPort)
if err != nil {
log.Fatalf("Unable to listen: %s", err)
}
log.Printf("Starting to serve requests on %s (FastCGI)", hostPort)
err = fcgi.Serve(listener, handler)
if err != nil {
log.Fatalf("Unable to serve: %s", err)
}
} else {
s := &http.Server{
Addr: hostPort,
Handler: handler,
}
log.Printf("Starting to serve requests on %s (HTTP)", hostPort)
err = s.ListenAndServe()
if err != nil {
log.Fatalf("Unable to serve: %s", err)
}
}
}
// getArgs retrieves and validates command line arguments.
func getArgs() (Args, error) {
listenHost := flag.String("host", "0.0.0.0", "Host to listen on.")
listenPort := flag.Int("port", 8080, "Port to listen on.")
format := flag.String("format", "rtsp", "Input format. Example: rtsp for RTSP.")
input := flag.String("input", "rtsp://rtsp.stream/pattern", "Input URL valid for the given format. For RTSP you can provide a rtsp:// URL.")
verbose := flag.Bool("verbose", false, "Enable verbose logging output.")
fcgiVar := flag.Bool("fcgi", false, "Serve using FastCGI (true) or as a regular HTTP server.")
flag.Parse()
if len(*listenHost) == 0 {
flag.PrintDefaults()
return Args{}, fmt.Errorf("you must provide a host")
}
if len(*format) == 0 {
flag.PrintDefaults()
return Args{}, fmt.Errorf("you must provide an input format")
}
if len(*input) == 0 {
flag.PrintDefaults()
return Args{}, fmt.Errorf("you must provide an input URL")
}
return Args{
ListenHost: *listenHost,
ListenPort: *listenPort,
InputFormat: *format,
InputURL: *input,
Verbose: *verbose,
FCGI: *fcgiVar,
}, nil
}
func encoder(inputFormat, inputURL string, verbose bool,
clientChan <-chan *Client) {
clients := []*Client{}
var input *Input
for {
// If there are no clients, then block waiting for one.
if len(clients) == 0 {
log.Printf("encoder: Waiting for clients...")
client := <-clientChan
log.Printf("encoder: New client")
clients = append(clients, client)
continue
}
// There is at least one client.
// Get any new clients, but don't block.
clientCountBefore := len(clients)
clients = acceptClients(clientChan, clients)
clientCountAfter := len(clients)
if clientCountBefore != clientCountAfter {
log.Printf("encoder: %d clients", clientCountAfter)
}
// Open the input if it is not open yet.
if input == nil {
input = openInput(inputFormat, inputURL, verbose)
if input == nil {
log.Printf("encoder: Unable to open input")
cleanupClients(clients)
return
}
if verbose {
log.Printf("encoder: Opened input")
}
}
// Read a packet.
var pkt C.AVPacket
readRes := C.int(0)
// We might want to lock input here. It's probably not necessary though.
// Other goroutines should only be reading it. We're the writer.
readRes = C.vs_read_packet(input.vsInput, &pkt, C.bool(verbose))
if readRes == -1 {
log.Printf("encoder: Failure reading packet")
destroyInput(input)
cleanupClients(clients)
return
}
if readRes == 0 {
continue
}
// Write the packet to all clients.
clientCountBefore = len(clients)
clients = writePacketToClients(input, &pkt, clients, verbose)
clientCountAfter = len(clients)
if clientCountBefore != clientCountAfter {
log.Printf("encoder: %d clients", clientCountAfter)
}
C.av_packet_unref(&pkt)
// If we get down to zero clients, close the input.
if len(clients) == 0 {
destroyInput(input)
input = nil
log.Printf("encoder: Closed input")
}
}
}
func acceptClients(clientChan <-chan *Client, clients []*Client) []*Client {
for {
select {
case client := <-clientChan:
clients = append(clients, client)
default:
return clients
}
}
}
func cleanupClients(clients []*Client) {
for _, client := range clients {
cleanupClient(client)
}
}
func cleanupClient(client *Client) {
client.mutex.Lock()
// Closing write side will make read side receive EOF.
if client.OutPipe != nil {
_ = client.OutPipe.Close()
client.OutPipe = nil
}
if client.Output != nil {
C.vs_destroy_output(client.Output)
client.Output = nil
}
client.mutex.Unlock()
if client.PacketChan != nil {
close(client.PacketChan)
// Drain it. The packetWriter should be draining it too. However it is
// possible that it ended.
//
// Note one may think that draining both here and in the packetWriter could
// lead to the unfortunate likelihood that the client will receive some
// packets but not others, leading to corruption. But since we closed the
// write side of the pipe above, this will not happen. No further packets
// will be reaching the client.
for pkt := range client.PacketChan {
C.av_packet_free(&pkt)
}
client.PacketChan = nil
}
}
// Input represents a video input.
type Input struct {
mutex *sync.RWMutex
vsInput *C.struct_VSInput
}
func openInput(inputFormat, inputURL string, verbose bool) *Input {
inputFormatC := C.CString(inputFormat)
inputURLC := C.CString(inputURL)
input := C.vs_open_input(inputFormatC, inputURLC, C.bool(verbose))
if input == nil {
C.free(unsafe.Pointer(inputFormatC))
C.free(unsafe.Pointer(inputURLC))
return nil
}
C.free(unsafe.Pointer(inputFormatC))
C.free(unsafe.Pointer(inputURLC))
return &Input{
mutex: &sync.RWMutex{},
vsInput: input,
}
}
func destroyInput(input *Input) {
input.mutex.Lock()
defer input.mutex.Unlock()
if input.vsInput != nil {
C.vs_destroy_input(input.vsInput)
input.vsInput = nil
}
}
// Try to write the packet to each client. If we fail, we clean up the client
// and it will not be in the returned list of clients.
func writePacketToClients(input *Input, pkt *C.AVPacket,
clients []*Client, verbose bool) []*Client {
// Rewrite clients slice with only those we succeeded in writing to. If we
// failed for some reason we clean up the client and no longer send it
// anything further.
clients2 := []*Client{}
for _, client := range clients {
// Open the client's output if it is not yet open.
client.mutex.Lock()
if client.Output == nil {
outputFormat := "mp4"
outputURL := fmt.Sprintf("pipe:%d", client.OutPipe.Fd())
client.Output = openOutput(outputFormat, outputURL, verbose, input)
if client.Output == nil {
log.Printf("Unable to open output for client")
cleanupClient(client)
client.mutex.Unlock()
continue
}
// We pass packets to the client via this channel. We give each client
// its own goroutine for the purposes of receiving these packets and
// writing them to the write side of the pipe. We do it this way rather
// than directly here because we do not want the encoder to block waiting
// on a write to the write side of the pipe because there is a slow HTTP
// client.
client.PacketChan = make(chan *C.AVPacket, 32)
go packetWriter(client, input, verbose)
log.Printf("Opened output for client")
}
client.mutex.Unlock()
// Duplicate the packet. Each client's goroutine will receive a copy.
pktCopy := C.av_packet_clone(pkt)
if pktCopy == nil {
log.Printf("Unable to clone packet")
cleanupClient(client)
continue
}
// Pass the packet to a goroutine that writes it to this client.
select {
case client.PacketChan <- pktCopy:
default:
log.Printf("Client too slow")
C.av_packet_free(&pktCopy)
cleanupClient(client)
continue
}
// Successful so far. Keep the client around.
clients2 = append(clients2, client)
}
return clients2
}
// Receive packets from the encoder, and write them out to the client's pipe.
//
// We end when encoder closes the channel, or if we encounter a write error.
func packetWriter(client *Client, input *Input, verbose bool) {
for pkt := range client.PacketChan {
writeRes := C.int(0)
client.mutex.RLock()
input.mutex.RLock()
writeRes = C.vs_write_packet(input.vsInput, client.Output, pkt,
C.bool(verbose))
input.mutex.RUnlock()
if writeRes == -1 {
log.Printf("Failure writing packet")
C.av_packet_free(&pkt)
client.mutex.RUnlock()
return
}
client.mutex.RUnlock()
C.av_packet_free(&pkt)
}
}
// Open the output file. This creates an MP4 container and writes the header to
// the given output URL.
func openOutput(outputFormat, outputURL string, verbose bool,
input *Input) *C.struct_VSOutput {
outputFormatC := C.CString("mp4")
outputURLC := C.CString(outputURL)
input.mutex.RLock()
output := C.vs_open_output(outputFormatC, outputURLC, input.vsInput,
C.bool(verbose))
input.mutex.RUnlock()
if output == nil {
log.Printf("Unable to open output")
C.free(unsafe.Pointer(outputFormatC))
C.free(unsafe.Pointer(outputURLC))
return nil
}
C.free(unsafe.Pointer(outputFormatC))
C.free(unsafe.Pointer(outputURLC))
return output
}
// ServeHTTP handles an HTTP request.
func (h HTTPHandler) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
log.Printf("Serving [%s] request from [%s] to path [%s] (%d bytes)",
r.Method, r.RemoteAddr, r.URL.Path, r.ContentLength)
if r.Method == "GET" && r.URL.Path == "/stream" {
h.streamRequest(rw, r)
return
}
log.Printf("Unknown request.")
rw.WriteHeader(http.StatusNotFound)
_, _ = rw.Write([]byte("<h1>404 Not found</h1>"))
}
// Read from a pipe where streaming media shows up. We read a chunk and write it
// immediately to the client, and repeat forever (until either the client goes
// away, or an error of some kind occurs).
func (h HTTPHandler) streamRequest(rw http.ResponseWriter, r *http.Request) {
// The encoder writes to the out pipe (using the packetWriter goroutine). We
// read from the in pipe.
inPipe, outPipe, err := os.Pipe()
if err != nil {
log.Printf("Unable to open pipe: %s", err)
rw.WriteHeader(http.StatusInternalServerError)
_, _ = rw.Write([]byte("<h1>500 Internal server error</h1>"))
return
}
c := &Client{
mutex: &sync.RWMutex{},
OutPipe: outPipe,
}
// Tell the encoder we're here.
h.ClientChan <- c
rw.Header().Set("Content-Type", "video/mp4")
rw.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
// We send chunked by default
for {
buf := make([]byte, 1024)
readSize, err := inPipe.Read(buf)
if err != nil {
log.Printf("%s: Read error: %s", r.RemoteAddr, err)
break
}
// We get EOF if write side of pipe closed.
if readSize == 0 {
log.Printf("%s: EOF", r.RemoteAddr)
break
}
writeSize, err := rw.Write(buf[:readSize])
if err != nil {
log.Printf("%s: Write error: %s", r.RemoteAddr, err)
break
}
if writeSize != readSize {
log.Printf("%s: Short write", r.RemoteAddr)
break
}
// ResponseWriter buffers chunks. Flush them out ASAP to reduce the time a
// client is waiting, especially initially.
if flusher, ok := rw.(http.Flusher); ok {
flusher.Flush()
}
if h.Verbose {
//log.Printf("%s: Sent %d bytes to client", r.RemoteAddr, n)
}
}
// Writes to write side will raise error when read side is closed.
_ = inPipe.Close()
log.Printf("%s: Client cleaned up", r.RemoteAddr)
}