2018-04-19 10:03:12 +03:00
|
|
|
/*
|
|
|
|
NAME
|
|
|
|
RevidCLI.go
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
See Readme.md
|
|
|
|
|
|
|
|
AUTHORS
|
|
|
|
Saxon A. Nelson-Milton <saxon@ausocean.org>
|
|
|
|
Jack Richardson <jack@ausocean.org>
|
|
|
|
|
|
|
|
LICENSE
|
|
|
|
RevidCLI.go is Copyright (C) 2017 the Australian Ocean Lab (AusOcean)
|
|
|
|
|
|
|
|
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).
|
|
|
|
*/
|
2018-04-15 13:42:06 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-04-19 12:04:08 +03:00
|
|
|
"errors"
|
2018-04-15 13:42:06 +03:00
|
|
|
"flag"
|
2018-05-06 11:38:45 +03:00
|
|
|
"fmt"
|
|
|
|
"os/exec"
|
2018-04-19 09:42:07 +03:00
|
|
|
"strconv"
|
2018-04-19 11:19:36 +03:00
|
|
|
"time"
|
2018-04-19 08:58:16 +03:00
|
|
|
|
2018-04-19 11:19:36 +03:00
|
|
|
"bitbucket.org/ausocean/av/revid"
|
2018-05-03 06:51:28 +03:00
|
|
|
"bitbucket.org/ausocean/iot/pi/netsender"
|
2018-05-06 11:40:36 +03:00
|
|
|
"bitbucket.org/ausocean/utils/smartLogger"
|
2018-04-19 12:04:08 +03:00
|
|
|
|
|
|
|
linuxproc "github.com/c9s/goprocinfo/linux"
|
2018-04-15 13:42:06 +03:00
|
|
|
)
|
|
|
|
|
2018-04-19 11:11:18 +03:00
|
|
|
// Indexes for configFlags
|
2018-04-15 13:42:06 +03:00
|
|
|
const (
|
|
|
|
inputPtr = 0
|
|
|
|
inputCodecPtr = 1
|
|
|
|
outputPtr = 2
|
|
|
|
rtmpMethodPtr = 3
|
2018-04-19 11:19:36 +03:00
|
|
|
packetizationPtr = 4
|
2018-04-15 13:42:06 +03:00
|
|
|
quantizationModePtr = 5
|
|
|
|
verbosityPtr = 6
|
2018-04-19 11:24:44 +03:00
|
|
|
framesPerClipPtr = 7
|
2018-04-15 13:42:06 +03:00
|
|
|
rtmpUrlPtr = 8
|
|
|
|
bitratePtr = 9
|
|
|
|
outputFileNamePtr = 10
|
|
|
|
inputFileNamePtr = 11
|
|
|
|
heightPtr = 12
|
|
|
|
widthPtr = 13
|
|
|
|
frameRatePtr = 14
|
|
|
|
httpAddressPtr = 15
|
2018-04-19 12:31:53 +03:00
|
|
|
quantizationPtr = 16
|
|
|
|
timeoutPtr = 17
|
|
|
|
intraRefreshPeriodPtr = 18
|
2018-05-06 11:38:45 +03:00
|
|
|
verticalFlipPtr = 19
|
|
|
|
horizontalFlipPtr = 20
|
2018-04-15 13:42:06 +03:00
|
|
|
)
|
|
|
|
|
2018-04-19 09:42:07 +03:00
|
|
|
// Other misc consts
|
|
|
|
const (
|
2018-05-07 04:16:44 +03:00
|
|
|
netSendRetryTime = 5
|
2018-05-06 11:38:45 +03:00
|
|
|
sleepTime = 2 * 43200
|
2018-04-19 09:42:07 +03:00
|
|
|
defaultRunDuration = 2 * 43200
|
2018-05-06 11:38:45 +03:00
|
|
|
noOfConfigFlags = 21
|
|
|
|
revidStopTime = 5
|
|
|
|
prepTime = 20
|
|
|
|
loggerVerbosity = 3
|
2018-04-19 09:42:07 +03:00
|
|
|
)
|
|
|
|
|
2018-04-19 12:04:08 +03:00
|
|
|
const (
|
2018-05-14 09:12:46 +03:00
|
|
|
cpuUsage = 20
|
|
|
|
cpuTemp = 21
|
|
|
|
revidBitrate = 23
|
2018-04-19 12:04:08 +03:00
|
|
|
)
|
|
|
|
|
2018-04-19 09:42:07 +03:00
|
|
|
// Globals
|
|
|
|
var (
|
2018-05-07 02:56:22 +03:00
|
|
|
varSum int = 0
|
|
|
|
vars = make(map[string]string)
|
|
|
|
revidInst revid.Revid
|
|
|
|
config revid.Config
|
2018-04-19 08:58:16 +03:00
|
|
|
)
|
|
|
|
|
2018-04-15 13:42:06 +03:00
|
|
|
func main() {
|
2018-05-05 08:20:52 +03:00
|
|
|
flagNames := [noOfConfigFlags][2]string{
|
2018-05-06 11:38:45 +03:00
|
|
|
{"Input", "The input type"},
|
|
|
|
{"InputCodec", "The codec of the input"},
|
|
|
|
{"Output", "The output type"},
|
|
|
|
{"RtmpMethod", "The method used to send over rtmp (ffmpeg or librtmp)"},
|
|
|
|
{"Packetization", "The method of data packetisation"},
|
|
|
|
{"QuantizationMode", "The level of quantization"},
|
|
|
|
{"Verbosity", "Verbosity on or off"},
|
|
|
|
{"FramesPerClip", "Number of frames per clip sent"},
|
|
|
|
{"RtmpUrl", "Url of rtmp endpoint"},
|
|
|
|
{"Bitrate", "Bitrate of recorded video"},
|
|
|
|
{"OutputFileName", "The directory of the output file"},
|
|
|
|
{"InputFileName", "The directory of the input file"},
|
|
|
|
{"Height", "Height in pixels"},
|
|
|
|
{"Width", "Width in pixels"},
|
|
|
|
{"FrameRate", "Frame rate of captured video"},
|
|
|
|
{"HttpAddress", "Destination address of http posts"},
|
|
|
|
{"Quantization", "Desired quantization value"},
|
|
|
|
{"Timeout", "Http timeout in seconds"},
|
|
|
|
{"IntraRefreshPeriod", "The IntraRefreshPeriod i.e. how many keyframes we send"},
|
|
|
|
{"VerticalFlip", "Flip video vertically"},
|
2018-05-05 06:47:07 +03:00
|
|
|
{"HorizontalFlip", "Flip video horizontally"},
|
2018-04-15 13:42:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-19 11:11:18 +03:00
|
|
|
// Create the configFlags based on the flagNames array
|
2018-05-06 11:38:45 +03:00
|
|
|
configFlags := make([](*string), noOfConfigFlags)
|
2018-05-05 08:20:52 +03:00
|
|
|
for i := 0; i < noOfConfigFlags; i++ {
|
2018-04-19 11:11:18 +03:00
|
|
|
configFlags[i] = flag.String(flagNames[i][0], "", flagNames[i][1])
|
2018-04-15 13:42:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-19 10:03:12 +03:00
|
|
|
// Do we want a netsender session
|
2018-05-05 08:23:18 +03:00
|
|
|
netSenderFlagPtr := flag.Bool("NetSender", false, "Are we checking vars through netsender?")
|
2018-04-19 10:03:12 +03:00
|
|
|
// User might also want to define how long revid runs for
|
2018-05-06 11:38:45 +03:00
|
|
|
runDurationPtr := flag.Int("runDuration", defaultRunDuration, "How long do you want revid to run for?")
|
2018-04-19 09:42:07 +03:00
|
|
|
|
2018-04-15 13:42:06 +03:00
|
|
|
flag.Parse()
|
|
|
|
|
2018-04-19 11:14:38 +03:00
|
|
|
switch *configFlags[inputPtr] {
|
2018-04-15 13:42:06 +03:00
|
|
|
case "Raspivid":
|
2018-04-19 11:16:26 +03:00
|
|
|
config.Input = revid.Raspivid
|
2018-04-15 13:42:06 +03:00
|
|
|
case "Rtp":
|
2018-04-19 11:16:26 +03:00
|
|
|
config.Input = revid.Rtp
|
2018-04-15 13:42:06 +03:00
|
|
|
case "File":
|
2018-04-19 11:16:26 +03:00
|
|
|
config.Input = revid.File
|
2018-04-19 12:37:25 +03:00
|
|
|
case "":
|
|
|
|
default:
|
|
|
|
fmt.Println("Bad input argument!")
|
2018-04-15 13:42:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-19 11:14:38 +03:00
|
|
|
switch *configFlags[inputCodecPtr] {
|
2018-04-15 13:42:06 +03:00
|
|
|
case "H264Codec":
|
2018-04-19 11:16:26 +03:00
|
|
|
config.InputCodec = revid.H264Codec
|
2018-04-19 12:37:25 +03:00
|
|
|
case "":
|
|
|
|
default:
|
|
|
|
fmt.Println("Bad input codec argument!")
|
2018-04-15 13:42:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-19 11:14:38 +03:00
|
|
|
switch *configFlags[outputPtr] {
|
2018-04-15 13:42:06 +03:00
|
|
|
case "File":
|
2018-04-19 11:16:26 +03:00
|
|
|
config.Output = revid.File
|
2018-04-15 13:42:06 +03:00
|
|
|
case "Http":
|
2018-04-19 11:16:26 +03:00
|
|
|
config.Output = revid.Http
|
2018-04-19 12:39:48 +03:00
|
|
|
case "NativeRtmp":
|
|
|
|
config.Output = revid.NativeRtmp
|
|
|
|
case "FfmpegRtmp":
|
|
|
|
config.Output = revid.FfmpegRtmp
|
2018-04-19 12:37:25 +03:00
|
|
|
case "":
|
|
|
|
default:
|
|
|
|
fmt.Println("Bad output argument!")
|
2018-04-15 13:42:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-19 11:14:38 +03:00
|
|
|
switch *configFlags[rtmpMethodPtr] {
|
2018-04-15 13:42:06 +03:00
|
|
|
case "Ffmpeg":
|
2018-04-19 11:16:26 +03:00
|
|
|
config.RtmpMethod = revid.Ffmpeg
|
2018-04-15 13:42:06 +03:00
|
|
|
case "LibRtmp":
|
2018-04-19 11:16:26 +03:00
|
|
|
config.RtmpMethod = revid.LibRtmp
|
2018-04-19 12:37:25 +03:00
|
|
|
case "":
|
|
|
|
default:
|
|
|
|
fmt.Println("Bad rtmp method argument!")
|
2018-04-15 13:42:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-19 11:24:44 +03:00
|
|
|
switch *configFlags[packetizationPtr] {
|
2018-04-15 13:42:06 +03:00
|
|
|
case "None":
|
2018-04-19 11:19:36 +03:00
|
|
|
config.Packetization = revid.None
|
2018-04-15 13:42:06 +03:00
|
|
|
case "Rtp":
|
2018-04-19 11:19:36 +03:00
|
|
|
config.Packetization = revid.Rtp
|
2018-04-15 13:42:06 +03:00
|
|
|
case "Flv":
|
2018-04-19 11:19:36 +03:00
|
|
|
config.Packetization = revid.Flv
|
2018-04-19 12:37:25 +03:00
|
|
|
case "":
|
|
|
|
default:
|
|
|
|
fmt.Println("Bad packetization argument!")
|
2018-04-15 13:42:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-19 11:19:36 +03:00
|
|
|
switch *configFlags[quantizationModePtr] {
|
2018-04-15 13:42:06 +03:00
|
|
|
case "QuantizationOn":
|
2018-04-19 11:24:44 +03:00
|
|
|
config.QuantizationMode = revid.QuantizationOn
|
2018-04-15 13:42:06 +03:00
|
|
|
case "QuantizationOff":
|
2018-04-19 11:24:44 +03:00
|
|
|
config.QuantizationMode = revid.QuantizationOff
|
2018-04-19 12:37:25 +03:00
|
|
|
case "":
|
|
|
|
default:
|
|
|
|
fmt.Println("Bad quantization mode argument!")
|
2018-04-15 13:42:06 +03:00
|
|
|
}
|
|
|
|
|
2018-04-19 11:14:38 +03:00
|
|
|
switch *configFlags[verbosityPtr] {
|
2018-04-15 13:42:06 +03:00
|
|
|
case "No":
|
2018-04-19 11:16:26 +03:00
|
|
|
config.Verbosity = revid.No
|
2018-04-15 13:42:06 +03:00
|
|
|
case "Yes":
|
2018-04-19 11:16:26 +03:00
|
|
|
config.Verbosity = revid.Yes
|
2018-04-19 12:37:25 +03:00
|
|
|
case "":
|
|
|
|
default:
|
|
|
|
fmt.Println("Bad verbosity argument!")
|
2018-04-15 13:42:06 +03:00
|
|
|
}
|
|
|
|
|
2018-05-03 15:36:17 +03:00
|
|
|
switch *configFlags[horizontalFlipPtr] {
|
2018-05-03 11:32:36 +03:00
|
|
|
case "No":
|
2018-05-05 06:45:45 +03:00
|
|
|
config.HorizontalFlip = revid.No
|
2018-05-03 11:32:36 +03:00
|
|
|
case "Yes":
|
2018-05-05 06:45:45 +03:00
|
|
|
config.HorizontalFlip = revid.Yes
|
2018-05-03 11:32:36 +03:00
|
|
|
case "":
|
2018-05-06 10:18:17 +03:00
|
|
|
config.HorizontalFlip = revid.No
|
2018-05-03 11:32:36 +03:00
|
|
|
default:
|
2018-05-03 15:36:17 +03:00
|
|
|
fmt.Println("Bad horizontal flip option!")
|
|
|
|
}
|
|
|
|
|
|
|
|
switch *configFlags[verticalFlipPtr] {
|
|
|
|
case "No":
|
2018-05-05 06:45:45 +03:00
|
|
|
config.VerticalFlip = revid.No
|
2018-05-03 15:36:17 +03:00
|
|
|
case "Yes":
|
|
|
|
config.VerticalFlip = revid.Yes
|
|
|
|
case "":
|
2018-05-06 10:18:17 +03:00
|
|
|
config.VerticalFlip = revid.No
|
2018-05-03 15:36:17 +03:00
|
|
|
default:
|
|
|
|
fmt.Println("Bad vertical flip option!")
|
2018-05-03 11:32:36 +03:00
|
|
|
}
|
|
|
|
|
2018-05-06 11:38:45 +03:00
|
|
|
config.FramesPerClip = *configFlags[framesPerClipPtr]
|
|
|
|
config.RtmpUrl = *configFlags[rtmpUrlPtr]
|
|
|
|
config.Bitrate = *configFlags[bitratePtr]
|
|
|
|
config.OutputFileName = *configFlags[outputFileNamePtr]
|
|
|
|
config.InputFileName = *configFlags[inputFileNamePtr]
|
|
|
|
config.Height = *configFlags[heightPtr]
|
|
|
|
config.Width = *configFlags[widthPtr]
|
|
|
|
config.FrameRate = *configFlags[frameRatePtr]
|
|
|
|
config.HttpAddress = *configFlags[httpAddressPtr]
|
|
|
|
config.Quantization = *configFlags[quantizationPtr]
|
|
|
|
config.Timeout = *configFlags[timeoutPtr]
|
|
|
|
config.IntraRefreshPeriod = *configFlags[intraRefreshPeriodPtr]
|
2018-04-19 09:42:07 +03:00
|
|
|
|
2018-04-25 05:58:30 +03:00
|
|
|
// Also give the config a logger object
|
2018-05-06 11:39:28 +03:00
|
|
|
config.Logger = smartLogger.New(loggerVerbosity, smartLogger.White)
|
2018-05-06 11:30:25 +03:00
|
|
|
|
2018-04-20 05:20:33 +03:00
|
|
|
//init netsender
|
2018-05-06 11:38:45 +03:00
|
|
|
if *netSenderFlagPtr {
|
2018-04-20 05:20:33 +03:00
|
|
|
netsenderInit()
|
|
|
|
}
|
2018-04-20 09:53:51 +03:00
|
|
|
|
2018-05-06 11:30:25 +03:00
|
|
|
time.Sleep(time.Duration(prepTime) * time.Second)
|
2018-05-07 04:16:44 +03:00
|
|
|
startRevid()
|
|
|
|
paused := false
|
2018-04-19 08:58:16 +03:00
|
|
|
|
2018-04-19 10:03:12 +03:00
|
|
|
// Is the netsender flag been used ? if so run this loop
|
2018-04-19 09:42:07 +03:00
|
|
|
for *netSenderFlagPtr {
|
2018-05-07 04:16:44 +03:00
|
|
|
varsChanged, err := netSend()
|
|
|
|
if err != nil {
|
|
|
|
config.Logger.Log("Error", err.Error())
|
|
|
|
time.Sleep(time.Duration(netSendRetryTime) * time.Second)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if varsChanged {
|
|
|
|
if vars["mode"] == "Paused" {
|
|
|
|
if !paused {
|
|
|
|
config.Logger.Log("Info", "Pausing revid")
|
|
|
|
stopRevid()
|
|
|
|
paused = true
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
updateRevid(!paused)
|
|
|
|
if paused {
|
|
|
|
paused = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-19 12:14:56 +03:00
|
|
|
sleepTime, _ := strconv.Atoi(netsender.GetConfigParam("monPeriod"))
|
2018-04-19 08:58:16 +03:00
|
|
|
time.Sleep(time.Duration(sleepTime) * time.Second)
|
|
|
|
}
|
2018-04-19 09:42:07 +03:00
|
|
|
|
2018-04-19 10:03:12 +03:00
|
|
|
// If we're not running a netsender session then we run revid for the amount
|
|
|
|
// of time the user defined or the default 2 days
|
2018-05-06 11:38:45 +03:00
|
|
|
time.Sleep(time.Duration(*runDurationPtr) * time.Second)
|
2018-05-07 04:16:44 +03:00
|
|
|
stopRevid()
|
2018-04-19 08:58:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func netsenderInit() {
|
2018-04-20 05:13:29 +03:00
|
|
|
//initialize netsender and assign function to check X pins
|
2018-05-05 19:08:19 +03:00
|
|
|
config.Logger = netsender.GetLogger()
|
2018-05-01 09:58:05 +03:00
|
|
|
netsender.Init(false)
|
2018-04-19 08:58:16 +03:00
|
|
|
netsender.ExternalReader = revidReportActions
|
|
|
|
}
|
|
|
|
|
2018-05-07 04:16:44 +03:00
|
|
|
// netSend implements the NetSender client, and is called every monPeriod seconds.
|
|
|
|
// It handles NetReceiver configuration and sends requested data to the cloud.
|
|
|
|
// Finally, it updates vars and returns true when vars have changed
|
|
|
|
func netSend() (bool, error) {
|
|
|
|
var err error
|
|
|
|
|
2018-05-07 02:56:22 +03:00
|
|
|
if !netsender.IsConfigured() {
|
2018-05-07 04:16:44 +03:00
|
|
|
if err = netsender.GetConfig(); err != nil {
|
|
|
|
return false, err
|
2018-04-19 08:58:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-02 04:07:53 +03:00
|
|
|
inputs := netsender.SplitCSV(netsender.GetConfigParam("inputs"))
|
2018-05-07 04:16:44 +03:00
|
|
|
var reconfig bool
|
|
|
|
if _, reconfig, err = netsender.Send(netsender.RequestPoll, inputs); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
if reconfig {
|
2018-05-07 02:56:22 +03:00
|
|
|
if err = netsender.GetConfig(); err != nil {
|
2018-05-07 04:16:44 +03:00
|
|
|
return false, err
|
2018-05-07 02:56:22 +03:00
|
|
|
}
|
2018-04-19 08:58:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if cloudVarSum := netsender.GetVarSum(); cloudVarSum != varSum {
|
2018-05-07 04:16:44 +03:00
|
|
|
var newVars map[string]string
|
|
|
|
if newVars, err = netsender.GetVars(); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
varSum = cloudVarSum
|
|
|
|
for newVar, value := range newVars {
|
|
|
|
if currentValue, varExists := vars[newVar]; !varExists || currentValue != value {
|
|
|
|
vars[newVar] = value
|
2018-04-19 08:58:16 +03:00
|
|
|
}
|
|
|
|
}
|
2018-05-07 04:16:44 +03:00
|
|
|
return true, nil
|
2018-04-19 09:42:07 +03:00
|
|
|
}
|
2018-05-07 04:16:44 +03:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// wrappers for stopping and starting revid
|
|
|
|
func startRevid() {
|
|
|
|
createRevidInstance()
|
|
|
|
revidInst.Start()
|
2018-04-19 08:58:16 +03:00
|
|
|
}
|
|
|
|
|
2018-05-07 04:16:44 +03:00
|
|
|
func stopRevid() {
|
2018-04-19 11:11:18 +03:00
|
|
|
revidInst.Stop()
|
2018-05-06 11:38:45 +03:00
|
|
|
time.Sleep(time.Duration(revidStopTime) * time.Second)
|
2018-05-07 04:16:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func updateRevid(stop bool) {
|
|
|
|
if stop {
|
|
|
|
stopRevid()
|
|
|
|
}
|
2018-04-20 11:23:59 +03:00
|
|
|
|
2018-05-07 04:16:44 +03:00
|
|
|
//look through var map and update revid where needed
|
2018-04-19 08:58:16 +03:00
|
|
|
for key, value := range vars {
|
|
|
|
switch key {
|
2018-05-06 11:38:45 +03:00
|
|
|
case "FramesPerClip":
|
|
|
|
asInt, err := strconv.Atoi(value)
|
|
|
|
if asInt > 0 && err == nil {
|
|
|
|
config.FramesPerClip = value
|
|
|
|
}
|
|
|
|
case "RtmpUrl":
|
|
|
|
config.RtmpUrl = value
|
|
|
|
case "Bitrate":
|
|
|
|
asInt, err := strconv.Atoi(value)
|
|
|
|
if asInt > 0 && err == nil {
|
|
|
|
config.Bitrate = value
|
|
|
|
}
|
|
|
|
case "OutputFileName":
|
|
|
|
config.OutputFileName = value
|
|
|
|
case "InputFileName":
|
|
|
|
config.InputFileName = value
|
|
|
|
case "Height":
|
|
|
|
asInt, err := strconv.Atoi(value)
|
|
|
|
if asInt > 0 && err == nil {
|
|
|
|
config.Height = value
|
|
|
|
}
|
|
|
|
case "Width":
|
|
|
|
asInt, err := strconv.Atoi(value)
|
|
|
|
if asInt > 0 && err == nil {
|
|
|
|
config.Width = value
|
|
|
|
}
|
|
|
|
case "FrameRate":
|
|
|
|
asInt, err := strconv.Atoi(value)
|
|
|
|
if asInt > 0 && err == nil {
|
|
|
|
config.FrameRate = value
|
|
|
|
}
|
|
|
|
case "HttpAddress":
|
|
|
|
config.HttpAddress = value
|
|
|
|
case "Quantization":
|
|
|
|
asInt, err := strconv.Atoi(value)
|
|
|
|
if asInt > 0 && err == nil {
|
|
|
|
config.Quantization = value
|
|
|
|
}
|
|
|
|
case "Timeout":
|
|
|
|
asInt, err := strconv.Atoi(value)
|
|
|
|
if asInt > 0 && err == nil {
|
|
|
|
config.Timeout = value
|
|
|
|
}
|
|
|
|
case "IntraRefreshPeriod":
|
|
|
|
asInt, err := strconv.Atoi(value)
|
|
|
|
if asInt > 0 && err == nil {
|
|
|
|
config.IntraRefreshPeriod = value
|
|
|
|
}
|
|
|
|
case "HorizontalFlip":
|
|
|
|
switch value {
|
|
|
|
case "Yes":
|
|
|
|
config.HorizontalFlip = revid.Yes
|
|
|
|
case "No":
|
|
|
|
config.HorizontalFlip = revid.No
|
|
|
|
}
|
|
|
|
case "VerticalFlip":
|
|
|
|
switch value {
|
|
|
|
case "Yes":
|
|
|
|
config.VerticalFlip = revid.Yes
|
|
|
|
case "No":
|
|
|
|
config.VerticalFlip = revid.No
|
|
|
|
}
|
2018-04-19 08:58:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-07 04:16:44 +03:00
|
|
|
startRevid()
|
2018-04-19 08:58:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func revidReportActions(pin int) (int, error) {
|
|
|
|
switch {
|
|
|
|
|
2018-04-20 05:13:29 +03:00
|
|
|
//function to measure temp of cpu
|
2018-04-19 08:58:16 +03:00
|
|
|
case pin == cpuTemp:
|
|
|
|
var out []byte
|
|
|
|
var err error
|
|
|
|
var val float64
|
|
|
|
if out, err = exec.Command("/opt/vc/bin/vcgencmd", "measure_temp").Output(); err != nil {
|
|
|
|
return -1, errors.New("CPU Temp Read Err: " + err.Error())
|
|
|
|
}
|
|
|
|
if val, err = strconv.ParseFloat(string(out[5:len(out)-3]), 32); err != nil {
|
|
|
|
return -1, errors.New("CPU Temp Read Err: " + err.Error())
|
|
|
|
}
|
|
|
|
return int(val), nil
|
2018-04-20 05:13:29 +03:00
|
|
|
//function to measure usage of cpu
|
2018-04-19 08:58:16 +03:00
|
|
|
case pin == cpuUsage:
|
|
|
|
stat, err := linuxproc.ReadStat("/proc/stat")
|
|
|
|
if err != nil {
|
|
|
|
return -1, errors.New("CPU Uage Read Err: " + err.Error())
|
|
|
|
}
|
2018-04-19 09:42:07 +03:00
|
|
|
total1 := stat.CPUStatAll.User + stat.CPUStatAll.Nice + stat.CPUStatAll.System +
|
|
|
|
stat.CPUStatAll.Idle + stat.CPUStatAll.IOWait + stat.CPUStatAll.IRQ +
|
|
|
|
stat.CPUStatAll.SoftIRQ + stat.CPUStatAll.Steal + stat.CPUStatAll.Guest +
|
|
|
|
stat.CPUStatAll.GuestNice
|
2018-04-19 08:58:16 +03:00
|
|
|
idle1 := stat.CPUStatAll.Idle
|
|
|
|
|
2018-05-03 08:04:33 +03:00
|
|
|
time.Sleep(time.Millisecond * 1000)
|
2018-04-19 08:58:16 +03:00
|
|
|
|
|
|
|
stat, err = linuxproc.ReadStat("/proc/stat")
|
|
|
|
if err != nil {
|
2018-04-19 12:04:08 +03:00
|
|
|
return -1, errors.New("CPU Usage Read Err: " + err.Error())
|
2018-04-19 08:58:16 +03:00
|
|
|
}
|
2018-04-19 09:42:07 +03:00
|
|
|
total2 := stat.CPUStatAll.User + stat.CPUStatAll.Nice + stat.CPUStatAll.System +
|
|
|
|
stat.CPUStatAll.Idle + stat.CPUStatAll.IOWait + stat.CPUStatAll.IRQ +
|
|
|
|
stat.CPUStatAll.SoftIRQ + stat.CPUStatAll.Steal + stat.CPUStatAll.Guest +
|
|
|
|
stat.CPUStatAll.GuestNice
|
2018-04-19 08:58:16 +03:00
|
|
|
idle2 := stat.CPUStatAll.Idle
|
|
|
|
|
|
|
|
return int((1.0 - (float64(idle2-idle1) / float64(total2-total1))) * 100), nil
|
|
|
|
|
2018-05-14 09:12:46 +03:00
|
|
|
case pin == revidBitrate:
|
|
|
|
return int(revidInst.GetBitrate()), nil
|
2018-04-19 08:58:16 +03:00
|
|
|
|
|
|
|
default:
|
2018-04-20 05:17:19 +03:00
|
|
|
return -1, errors.New("External pin" + strconv.Itoa(pin) + " not defined")
|
2018-04-19 08:58:16 +03:00
|
|
|
}
|
2018-04-15 13:42:06 +03:00
|
|
|
}
|
2018-04-19 10:03:12 +03:00
|
|
|
|
2018-05-06 11:38:45 +03:00
|
|
|
func createRevidInstance() {
|
2018-04-19 10:03:12 +03:00
|
|
|
// Try to create the revid instance with the given config
|
2018-04-19 12:14:56 +03:00
|
|
|
var err error
|
|
|
|
for revidInst, err = revid.NewRevid(config); err != nil; {
|
2018-04-19 10:03:12 +03:00
|
|
|
// If the config does have a logger, use it to output error, otherwise
|
|
|
|
// just output to std output
|
|
|
|
if config.Logger != nil {
|
2018-04-19 12:13:24 +03:00
|
|
|
config.Logger.Log("FATAL ERROR", err.Error())
|
2018-04-19 10:03:12 +03:00
|
|
|
} else {
|
2018-04-19 12:13:24 +03:00
|
|
|
fmt.Printf("FATAL ERROR: %v", err.Error())
|
2018-04-19 10:03:12 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|