-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.go
183 lines (157 loc) · 4.56 KB
/
main.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
/**
* LiveDetect
* Copyright (c) 2018 Jolibrain
* Author: Corentin Barreau <[email protected]>
*
* This file is part of livedetect.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in livedetect without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of livedetect, and to permit persons to whom livedetect is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of livedetect.
*
* LIVEDETECT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH LIVEDETECT OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package main
import (
"fmt"
"net"
"net/http"
"os"
"strconv"
"time"
"github.com/gosuri/uilive"
client "github.com/influxdata/influxdb1-client/v2"
"github.com/korandiz/v4l"
"github.com/korandiz/v4l/fmt/mjpeg"
"github.com/labstack/gommon/color"
live "github.com/mattn/go-mjpeg"
"golang.org/x/crypto/ssh/terminal"
)
var (
// Declare wrtier for one-line logging
writer = uilive.New()
// Declare stream for web preview
stream = live.NewStream()
// InfluxDB variables
influxConnection = false
influxClient client.Client
// Elapsed time logging
elapsedTimes []time.Duration
// HTTP settings
httpTransport = &http.Transport{
Dial: (&net.Dialer{
Timeout: 60 * time.Second,
}).Dial,
TLSHandshakeTimeout: 60 * time.Second,
}
httpClient = &http.Client{
Timeout: time.Second * 60,
Transport: httpTransport,
}
)
func init() {
/*
Safety net for 'too many open files' issue on legacy code.
Set a sane timeout duration for the http.DefaultClient, to ensure idle connections are terminated.
Reference: https://stackoverflow.com/questions/37454236/net-http-server-too-many-open-files-error
*/
http.DefaultClient.Timeout = time.Minute * 10
}
func main() {
var cam *v4l.Device
var err error
// Parse arguments
argumentsParsing(os.Args)
// InfluxDB
if arguments.Influx == true {
initDB()
}
// If --detection is triggered, set --best to 1
if arguments.Detection == true {
arguments.Best = 1
}
// Service creation
if arguments.SSL == true && arguments.Create == true {
logSuccess("Creating service..", "[INFO]")
createService("https://" + arguments.Host + ":" + arguments.Port)
} else if arguments.Create == true {
logSuccess("Creating service..", "[INFO]")
createService("http://" + arguments.Host + ":" + arguments.Port)
}
// Start capture
logSuccess("Starting capture", "[INFO]")
devicePath := "/dev/video" + strconv.Itoa(arguments.DeviceID)
logSuccess("Device: "+devicePath, "[INFO]")
// Open camera
cam, err = v4l.Open(devicePath)
if err != nil {
logError("Error opening video capture device", "[FATAL]")
os.Exit(1)
}
// Set camera properties
// Fetch config
cfg, err := cam.GetConfig()
if err != nil {
logError(err.Error(), "[ERROR]")
os.Exit(1)
}
// Set parameters
cfg.Format = mjpeg.FourCC
cfg.Width = arguments.Width
cfg.Height = arguments.Height
// Apply config
err = cam.SetConfig(cfg)
if err != nil {
logError(err.Error(), "[ERROR]")
os.Exit(1)
}
// Turn on cam
err = cam.TurnOn()
if err != nil {
logError(err.Error(), "[ERROR]")
os.Exit(1)
}
// Verify config
cfg, err = cam.GetConfig()
if err != nil {
logError(err.Error(), "[ERROR]")
os.Exit(1)
}
if cfg.Format != mjpeg.FourCC {
logError("Failed to set MJPEG format.", "[ERROR]")
os.Exit(1)
}
// Info message for web preview
if arguments.Preview != "" {
logSuccess("Starting web preview on "+arguments.Preview, "[INFO]")
go http.Handle("/", stream)
go http.ListenAndServe(arguments.Preview, nil)
}
// Get terminal size and print pretty horizontal bar
width, _, err := terminal.GetSize(1)
if err != nil {
logError("Unable to get terminal dimensions!", "[ERROR]")
}
// Pretty horizontal bar displaying
for j := 0; j < width; j++ {
fmt.Print(color.Green("="))
}
// Start listening for updates and render
if arguments.Verbose != "DEBUG" && arguments.Verbose != "INFO" {
writer.Start()
}
// Start image processing
process(cam)
}