2018-01-09 07:26:34 +03:00
|
|
|
/*
|
|
|
|
NAME
|
|
|
|
revid - a testbed for re-muxing and re-directing video streams as MPEG-TS over various protocols.
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
See Readme.md
|
|
|
|
|
|
|
|
AUTHORS
|
|
|
|
Alan Noble <anoble@gmail.com>
|
|
|
|
Saxon A. Nelson-Milton <saxon.milton@gmail.com>
|
|
|
|
|
|
|
|
LICENSE
|
|
|
|
revid is Copyright (C) 2017 Alan Noble.
|
|
|
|
|
|
|
|
It is free software: you can redistribute it and/or modify them
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with revid in gpl.txt. If not, see [GNU licenses](http://www.gnu.org/licenses).
|
|
|
|
*/
|
|
|
|
|
|
|
|
// revid is a testbed for re-muxing and re-directing video streams as MPEG-TS over various protocols.
|
|
|
|
package revid
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"bytes"
|
2018-01-31 04:00:03 +03:00
|
|
|
"errors"
|
2018-01-09 07:26:34 +03:00
|
|
|
"fmt"
|
2018-01-16 08:06:51 +03:00
|
|
|
"io"
|
2018-01-09 07:26:34 +03:00
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"strconv"
|
|
|
|
"time"
|
|
|
|
|
2018-02-08 10:21:43 +03:00
|
|
|
//"bitbucket.org/ausocean/av/parser"
|
|
|
|
//"bitbucket.org/ausocean/av/tsgenerator"
|
|
|
|
"../parser"
|
|
|
|
"../tsgenerator"
|
|
|
|
|
|
|
|
//"bitbucket.org/ausocean/av/ringbuffer"
|
|
|
|
//"bitbucket.org/ausocean/utils/smartLogger"
|
|
|
|
"../../utils/smartLogger"
|
|
|
|
"../ringbuffer"
|
2018-01-09 07:26:34 +03:00
|
|
|
)
|
|
|
|
|
2018-01-31 02:51:53 +03:00
|
|
|
// Misc constants
|
2018-01-09 07:26:34 +03:00
|
|
|
const (
|
2018-02-08 10:21:43 +03:00
|
|
|
clipDuration = 1 // s
|
|
|
|
mp2tPacketSize = 188 // MPEG-TS packet size
|
|
|
|
mp2tMaxPackets = 2016 * clipDuration // # first multiple of 7 and 8 greater than 2000
|
|
|
|
ringBufferSize = 100 / clipDuration
|
2018-02-09 09:23:06 +03:00
|
|
|
ringBufferElementSize = 10000000
|
|
|
|
maxClipSize = 100000
|
2018-02-08 10:21:43 +03:00
|
|
|
httpTimeOut = 5 // s
|
|
|
|
packetsPerFrame = 7
|
|
|
|
h264BufferSize = 1000000
|
|
|
|
bitrateTime = 60
|
|
|
|
mjpegParserInChanLen = 100000
|
2018-02-09 09:23:06 +03:00
|
|
|
ffmpegPath = "/home/saxon/bin/ffmpeg"
|
2018-01-10 06:57:56 +03:00
|
|
|
)
|
|
|
|
|
2018-01-24 07:12:22 +03:00
|
|
|
// Log Types
|
2018-01-24 04:40:03 +03:00
|
|
|
const (
|
2018-01-24 07:12:22 +03:00
|
|
|
Error = "Error"
|
2018-01-24 04:40:03 +03:00
|
|
|
Warning = "Warning"
|
2018-01-24 07:12:22 +03:00
|
|
|
Info = "Info"
|
|
|
|
Debug = "Debug"
|
2018-01-24 04:40:03 +03:00
|
|
|
)
|
|
|
|
|
2018-01-31 02:51:53 +03:00
|
|
|
// RevidInst provides methods to control a revidInst session; providing methods
|
|
|
|
// to start, stop and change the state of an instance using the Config struct.
|
2018-01-09 07:26:34 +03:00
|
|
|
type RevidInst interface {
|
2018-01-10 06:57:56 +03:00
|
|
|
Start()
|
2018-01-09 07:26:34 +03:00
|
|
|
Stop()
|
2018-01-23 06:15:06 +03:00
|
|
|
ChangeState(newconfig Config) error
|
|
|
|
GetConfigRef() *Config
|
2018-01-24 05:31:33 +03:00
|
|
|
Log(logType, m string)
|
2018-01-24 05:26:33 +03:00
|
|
|
IsRunning() bool
|
2018-01-09 07:26:34 +03:00
|
|
|
}
|
|
|
|
|
2018-01-31 02:51:53 +03:00
|
|
|
// The revidInst struct provides fields to describe the state of a RevidInst.
|
2018-01-09 07:26:34 +03:00
|
|
|
type revidInst struct {
|
2018-01-31 04:00:03 +03:00
|
|
|
ffmpegPath string
|
|
|
|
tempDir string
|
|
|
|
ringBuffer ringbuffer.RingBuffer
|
|
|
|
config Config
|
|
|
|
isRunning bool
|
|
|
|
outputFile *os.File
|
|
|
|
inputFile *os.File
|
2018-02-10 09:59:56 +03:00
|
|
|
generator generator.TsGenerator
|
2018-01-31 04:00:03 +03:00
|
|
|
parser parser.Parser
|
|
|
|
cmd *exec.Cmd
|
2018-02-08 10:21:43 +03:00
|
|
|
ffmpegCmd *exec.Cmd
|
2018-01-31 04:00:03 +03:00
|
|
|
inputReader *bufio.Reader
|
2018-02-08 10:21:43 +03:00
|
|
|
ffmpegStdin io.WriteCloser
|
2018-02-09 09:23:06 +03:00
|
|
|
outputChan chan []byte
|
2018-02-10 09:59:56 +03:00
|
|
|
configureOutput func()
|
|
|
|
getFrame func()[]byte
|
|
|
|
flushData func()
|
2018-01-23 06:15:06 +03:00
|
|
|
}
|
|
|
|
|
2018-01-31 02:51:53 +03:00
|
|
|
// NewRevidInstance returns a pointer to a new revidInst with the desired
|
|
|
|
// configuration, and/or an error if construction of the new instant was not
|
|
|
|
// successful.
|
2018-01-23 06:15:06 +03:00
|
|
|
func NewRevidInstance(config Config) (r *revidInst, err error) {
|
2018-01-10 06:57:56 +03:00
|
|
|
r = new(revidInst)
|
2018-01-31 09:13:04 +03:00
|
|
|
r.ringBuffer = ringbuffer.NewRingBuffer(ringBufferSize, ringBufferElementSize)
|
2018-01-31 05:23:18 +03:00
|
|
|
err = r.ChangeState(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-02-10 09:59:56 +03:00
|
|
|
r.outputChan = make(chan []byte, 10000)
|
|
|
|
r.parser.Start()
|
|
|
|
go r.packClips()
|
|
|
|
r.Log(Info, "New revid instance created! config is:")
|
|
|
|
r.Log(Info, fmt.Sprintf("%v", r.config))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetConfigRef returns a pointer to the revidInst's Config struct object
|
|
|
|
func (r *revidInst) GetConfigRef() *Config {
|
|
|
|
return &r.config
|
|
|
|
}
|
|
|
|
|
|
|
|
// ChangeState swaps the current config of a revidInst with the passed
|
|
|
|
// configuration; checking validity and returning errors if not valid.
|
|
|
|
func (r *revidInst) ChangeState(config Config) error {
|
|
|
|
r.config.Logger = config.Logger
|
2018-02-10 10:08:14 +03:00
|
|
|
err := config.Validate(r)
|
2018-02-10 09:59:56 +03:00
|
|
|
if err != nil {
|
|
|
|
return errors.New("Config struct is bad!: " + err.Error())
|
|
|
|
}
|
2018-01-23 06:15:06 +03:00
|
|
|
switch r.config.Output {
|
2018-01-31 05:23:18 +03:00
|
|
|
case File:
|
2018-01-23 06:15:06 +03:00
|
|
|
r.outputFile, err = os.Create(r.config.OutputFileName)
|
2018-01-10 04:32:16 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-02-10 09:59:56 +03:00
|
|
|
configureOutput = configureOutputForFile
|
|
|
|
case Rtmp:
|
|
|
|
configureOutput = configureOutputForRtmp
|
|
|
|
}
|
|
|
|
switch r.config.Input {
|
|
|
|
case Raspivid:
|
|
|
|
configureInput = configureInputForRaspivid
|
|
|
|
case File:
|
|
|
|
configureInput = configureInputForFile
|
2018-01-10 04:32:16 +03:00
|
|
|
}
|
2018-01-30 09:24:39 +03:00
|
|
|
switch r.config.InputCodec {
|
2018-01-31 05:23:18 +03:00
|
|
|
case H264:
|
|
|
|
r.Log(Info, "Using H264 parser!")
|
2018-01-30 09:24:39 +03:00
|
|
|
r.parser = parser.NewH264Parser()
|
2018-01-31 05:23:18 +03:00
|
|
|
case Mjpeg:
|
2018-02-10 09:59:56 +03:00
|
|
|
r.Log(Info, "Using MJPEG parser!")
|
2018-01-30 09:24:39 +03:00
|
|
|
r.parser = parser.NewMJPEGParser(mjpegParserInChanLen)
|
|
|
|
}
|
2018-02-11 09:34:52 +03:00
|
|
|
if r.config.Packetization == None {
|
2018-02-09 09:23:06 +03:00
|
|
|
r.parser.SetOutputChan(r.outputChan)
|
2018-02-10 09:59:56 +03:00
|
|
|
getFrame = getFrameForNoPacketization
|
2018-02-11 09:34:52 +03:00
|
|
|
} else {
|
|
|
|
switch r.config.Packetization {
|
|
|
|
case Mpegts:
|
|
|
|
frameRateAsInt, _ := strconv.Atoi(r.config.FrameRate)
|
|
|
|
r.generator = tsgenerator.NewTsGenerator(uint(frameRateAsInt))
|
|
|
|
case Flv:
|
|
|
|
frameRateAsInt, _ := strconv.Atoi(r.config.FrameRate)
|
|
|
|
r.generator = flvGenerator.NewFlvGenerator(uint(frameRateAsInt))
|
|
|
|
}
|
|
|
|
getFrame = getFrameForPacketization
|
|
|
|
r.parser.SetOutputChan(r.generator.GetInputChan())
|
2018-01-30 09:24:39 +03:00
|
|
|
r.generator.Start()
|
|
|
|
}
|
2018-02-10 09:59:56 +03:00
|
|
|
r.config = config
|
|
|
|
return nil
|
2018-01-10 04:32:16 +03:00
|
|
|
}
|
|
|
|
|
2018-02-10 09:59:56 +03:00
|
|
|
// Log takes a logtype and message and tries to send this information to the
|
|
|
|
// logger provided in the revidInst config - if there is one, otherwise the message
|
|
|
|
// is sent to stdout
|
|
|
|
func (r *revidInst) Log(logType, m string) {
|
|
|
|
if r.config.Logger != nil {
|
|
|
|
r.config.Logger.Log(logType, m)
|
|
|
|
} else {
|
|
|
|
fmt.Println(logType + ": " + m)
|
|
|
|
}
|
2018-01-24 07:12:22 +03:00
|
|
|
}
|
|
|
|
|
2018-02-10 09:59:56 +03:00
|
|
|
// IsRunning returns true if the revidInst is currently running and false otherwise
|
|
|
|
func (r *revidInst) IsRunning() bool {
|
|
|
|
return r.isRunning
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start invokes a revidInst to start processing video from a defined input
|
|
|
|
// and packetising to a defined output.
|
|
|
|
func (r *revidInst) Start() {
|
|
|
|
if r.isRunning {
|
|
|
|
r.Log(Warning, "revidInst.Start() called but revid already running!")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Log(Info, "Starting Revid!")
|
|
|
|
r.setupOutput()
|
|
|
|
r.setupInput()
|
|
|
|
go r.outputClips()
|
|
|
|
r.isRunning = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop halts any processing of video data from a camera or file
|
|
|
|
func (r *revidInst) Stop() {
|
|
|
|
if r.isRunning {
|
|
|
|
r.Log(Info, "Stopping revid!")
|
|
|
|
r.isRunning = false
|
|
|
|
if r.cmd != nil {
|
|
|
|
r.cmd.Process.Kill()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
r.Log(Warning, "revidInst.Stop() called but revid not running!")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start invokes a revidInst to start processing video from a defined input
|
|
|
|
// and packetising to a defined output.
|
|
|
|
func (r *revidInst) getFrameNoPacketization() []byte {
|
|
|
|
return <-r.outputChan
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start invokes a revidInst to start processing video from a defined input
|
|
|
|
// and packetising to a defined output.
|
|
|
|
func (r *revidInst) getFrameWithPacketization() []byte {
|
|
|
|
return <-(r.generator.GetOutputChan())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start invokes a revidInst to start processing video from a defined input
|
|
|
|
// and packetising to a defined output.
|
|
|
|
func (r *revidInst) flushDataNoPacketisation(){
|
|
|
|
for len(r.outputChan) > 0 {
|
|
|
|
<-(r.outputChan)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start invokes a revidInst to start processing video from a defined input
|
|
|
|
func (r *revidInst) flushDataMpegtsPacketisation(){
|
|
|
|
for len(r.generator.GetOutputChan()) > 0 {
|
|
|
|
<-(r.generator.GetTsOutputChan())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// packClips takes data segments; whether that be tsPackets or jpeg frames and
|
|
|
|
// packs them into clips 1s long.
|
|
|
|
func (r *revidInst) packClips() {
|
|
|
|
clipSize := 0
|
|
|
|
packetCount := 0
|
|
|
|
now := time.Now()
|
|
|
|
prevTime := now
|
|
|
|
for {
|
|
|
|
if clip, err := r.ringBuffer.Get(); err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
r.Log(Warning, "Clearing output chan!")
|
|
|
|
r.flushOutputData()
|
|
|
|
} else {
|
|
|
|
for {
|
|
|
|
frame := r.getFrame()
|
|
|
|
lenOfFrame := len(frame)
|
|
|
|
upperBound := clipSize + lenOfFrame
|
|
|
|
copy(clip[clipSize:upperBound], frame)
|
|
|
|
packetCount++
|
|
|
|
clipSize += lenOfFrame
|
|
|
|
now = time.Now()
|
|
|
|
if packetCount >= r.config.FramesPerClip {
|
|
|
|
if err := r.ringBuffer.DoneWriting(clipSize); err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
r.Log(Warning, "Dropping clip!")
|
|
|
|
}
|
|
|
|
clipSize = 0
|
|
|
|
packetCount = 0
|
|
|
|
prevTime = now
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// outputClips takes the clips produced in the packClips method and outputs them
|
|
|
|
// to the desired output defined in the revidInst config
|
|
|
|
func (r *revidInst) outputClips() {
|
|
|
|
now := time.Now()
|
|
|
|
prevTime := now
|
|
|
|
bytes := 0
|
|
|
|
delay := 0
|
|
|
|
for r.isRunning {
|
|
|
|
// Here we slow things down as much as we can to decrease cpu usage
|
|
|
|
switch {
|
|
|
|
case r.ringBuffer.GetNoOfElements() < 2:
|
|
|
|
delay++
|
|
|
|
time.Sleep(time.Duration(delay) * time.Millisecond)
|
|
|
|
case delay > 10:
|
|
|
|
delay -= 10
|
|
|
|
}
|
|
|
|
// If the ringbuffer has something we can read and send off
|
|
|
|
if clip, err := r.ringBuffer.Read(); err == nil {
|
|
|
|
r.Log(Debug, fmt.Sprintf("Delay is: %v\n", delay))
|
|
|
|
r.Log(Debug, fmt.Sprintf("Ring buffer size: %v\n", r.ringBuffer.GetNoOfElements()))
|
|
|
|
// Output clip to the output specified in the configuration struct
|
|
|
|
bytes += len(clip)
|
|
|
|
for err := r.sendClip(clip); err != nil; {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
r.Log(Warning, "Send failed trying again!")
|
|
|
|
err = r.sendClip(clip)
|
|
|
|
}
|
|
|
|
if err := r.ringBuffer.DoneReading(); err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
}
|
|
|
|
// Log some information regarding bitrate and ring buffer size if it's time
|
|
|
|
now = time.Now()
|
|
|
|
deltaTime := now.Sub(prevTime)
|
|
|
|
if deltaTime > time.Duration(bitrateTime)*time.Second {
|
|
|
|
r.Log(Info, fmt.Sprintf("Bitrate: %v bits/s\n", int64(float64(bytes*8)/float64(deltaTime/1e9))))
|
|
|
|
r.Log(Info, fmt.Sprintf("Ring buffer size: %v\n", r.ringBuffer.GetNoOfElements()))
|
|
|
|
prevTime = now
|
|
|
|
bytes = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start invokes a revidInst to start processing video from a defined input
|
|
|
|
// and packetising to a defined output.
|
|
|
|
func (r *revidInst) sendClipToFile(clip []byte) error {
|
|
|
|
err := r.outputFile.Write(clip)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// sendClipToHTTP takes a clip and an output url and posts through http.
|
|
|
|
func (r *revidInst) sendClipToHTTP(clip []byte) error {
|
|
|
|
timeout := time.Duration(httpTimeOut * time.Second)
|
|
|
|
client := http.Client{
|
|
|
|
Timeout: timeout,
|
|
|
|
}
|
|
|
|
r.Log(Debug, fmt.Sprintf("Posting %s (%d bytes)\n", url, len(clip)))
|
|
|
|
resp, err := client.Post(r.config.HttpAddress + strconv.Itoa(len(clip)), "video/mp2t", bytes.NewReader(clip)) // lighter than NewBuffer
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error posting to %s: %s", output, err)
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err == nil {
|
|
|
|
r.Log(Debug, fmt.Sprintf("%s\n", body))
|
|
|
|
} else {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start invokes a revidInst to start processing video from a defined input
|
|
|
|
// and packetising to a defined output.
|
|
|
|
func (r *revidInst) sendClipToRtmp(clip []byte) error {
|
|
|
|
fmt.Println("Outputting!")
|
|
|
|
_, err := r.ffmpegStdin.Write(clip)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start invokes a revidInst to start processing video from a defined input
|
|
|
|
// and packetising to a defined output.
|
|
|
|
func (r *revidInst) setupOutputForRtmp(){
|
|
|
|
r.ffmpegCmd = exec.Command(ffmpegPath,
|
|
|
|
"-f", "h264",
|
|
|
|
"-r", r.config.FrameRate,
|
|
|
|
"-i", "-",
|
|
|
|
"-f", "lavfi",
|
|
|
|
"-i", "aevalsrc=0",
|
|
|
|
"-fflags", "nobuffer",
|
|
|
|
"-vcodec", "copy",
|
|
|
|
"-acodec", "aac",
|
|
|
|
"-map", "0:0",
|
|
|
|
"-map", "1:0",
|
|
|
|
"-strict", "experimental",
|
|
|
|
"-f", "flv",
|
|
|
|
r.config.RtmpUrl,
|
|
|
|
)
|
|
|
|
var err error
|
|
|
|
r.ffmpegStdin, err = r.ffmpegCmd.StdinPipe()
|
|
|
|
if err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
r.Stop()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
err = r.ffmpegCmd.Start()
|
|
|
|
if err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
r.Stop()
|
|
|
|
return
|
2018-01-30 09:24:39 +03:00
|
|
|
}
|
2018-01-23 08:13:13 +03:00
|
|
|
}
|
|
|
|
|
2018-01-31 02:51:53 +03:00
|
|
|
// Start invokes a revidInst to start processing video from a defined input
|
|
|
|
// and packetising to a defined output.
|
2018-02-10 09:59:56 +03:00
|
|
|
func (r *revidInst) setupInputForRaspivid(){
|
|
|
|
r.Log(Info, "Starting raspivid!")
|
|
|
|
switch r.config.InputCodec {
|
|
|
|
case H264:
|
|
|
|
r.cmd = exec.Command("raspivid",
|
|
|
|
"-cd", "H264",
|
|
|
|
"-o", "-",
|
|
|
|
"-n",
|
|
|
|
"-t", r.config.Timeout,
|
|
|
|
"-b", r.config.Bitrate,
|
|
|
|
"-qp", r.config.Quantization,
|
|
|
|
"-w", r.config.Width,
|
|
|
|
"-h", r.config.Height,
|
|
|
|
"-fps", r.config.FrameRate,
|
|
|
|
"-ih",
|
|
|
|
"-g", r.config.IntraRefreshPeriod,
|
|
|
|
)
|
|
|
|
case Mjpeg:
|
|
|
|
r.cmd = exec.Command("raspivid",
|
|
|
|
"-cd", "MJPEG",
|
|
|
|
"-o", "-",
|
|
|
|
"-n",
|
|
|
|
"-t", r.config.Timeout,
|
|
|
|
"-fps", r.config.FrameRate,
|
2018-02-09 09:23:06 +03:00
|
|
|
)
|
|
|
|
}
|
2018-02-10 09:59:56 +03:00
|
|
|
stdout, _ := r.cmd.StdoutPipe()
|
|
|
|
err := r.cmd.Start()
|
|
|
|
r.inputReader = bufio.NewReader(stdout)
|
|
|
|
if err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
return
|
2018-01-30 09:24:39 +03:00
|
|
|
}
|
2018-02-10 09:59:56 +03:00
|
|
|
go r.readCamera()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start invokes a revidInst to start processing video from a defined input
|
|
|
|
func (r *revidInst) setupInputForFile(){
|
|
|
|
go r.readFile()
|
2018-01-30 09:24:39 +03:00
|
|
|
}
|
|
|
|
|
2018-01-31 02:51:53 +03:00
|
|
|
// readCamera reads data from the defined camera while the revidInst is running.
|
2018-01-31 04:00:03 +03:00
|
|
|
func (r *revidInst) readCamera() {
|
2018-01-30 09:24:39 +03:00
|
|
|
r.Log(Info, "Reading camera data!")
|
|
|
|
for r.isRunning {
|
|
|
|
data := make([]byte, 1)
|
|
|
|
_, err := io.ReadFull(r.inputReader, data)
|
|
|
|
switch {
|
|
|
|
case err != nil && err.Error() == "EOF" && r.isRunning:
|
|
|
|
r.Log(Error, "No data from camera!")
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
case err != nil && r.isRunning:
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
default:
|
2018-01-31 04:00:03 +03:00
|
|
|
r.parser.GetInputChan() <- data[0]
|
2018-01-11 09:49:33 +03:00
|
|
|
}
|
|
|
|
}
|
2018-01-30 09:24:39 +03:00
|
|
|
r.Log(Info, "Out of reading routine!")
|
2018-01-16 08:06:51 +03:00
|
|
|
}
|
|
|
|
|
2018-02-09 09:23:06 +03:00
|
|
|
// readFile reads data from the defined file while the revidInst is running.
|
|
|
|
func (r *revidInst) readFile() {
|
|
|
|
for {
|
|
|
|
if len(r.parser.GetInputChan()) == 0 {
|
|
|
|
var err error
|
|
|
|
r.inputFile, err = os.Open(r.config.InputFileName)
|
|
|
|
if err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
r.Stop()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
stats, err := r.inputFile.Stat()
|
|
|
|
if err != nil {
|
|
|
|
r.Log(Error, "Could not get input file stats!")
|
|
|
|
r.Stop()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
data := make([]byte, stats.Size())
|
|
|
|
_, err = r.inputFile.Read(data)
|
|
|
|
if err != nil {
|
|
|
|
r.Log(Error, err.Error())
|
|
|
|
r.Stop()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for i := range data {
|
|
|
|
r.parser.GetInputChan() <- data[i]
|
|
|
|
}
|
|
|
|
r.inputFile.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|