2002-09-24 06:08:50 +08:00
|
|
|
//
|
2002-12-10 21:21:41 +08:00
|
|
|
// ZoneMinder Capture Daemon, $Date$, $Revision$
|
2008-07-25 17:33:23 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2002-09-24 06:08:50 +08:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program 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 this program; if not, write to the Free Software
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2002-09-24 06:08:50 +08:00
|
|
|
//
|
|
|
|
|
2015-06-21 06:11:20 +08:00
|
|
|
/*
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
zmc - The ZoneMinder Capture daemon
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
zmc -d <device_path>
|
|
|
|
zmc --device <device_path>
|
|
|
|
zmc -f <file_path>
|
|
|
|
zmc --file <file_path>
|
|
|
|
zmc -m <monitor_id>
|
|
|
|
zmc --monitor <monitor_id>
|
|
|
|
zmc -h
|
|
|
|
zmc --help
|
|
|
|
zmc -v
|
|
|
|
zmc --version
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This binary's job is to sit on a video device and suck frames off it as fast as
|
|
|
|
possible, this should run at more or less constant speed.
|
|
|
|
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
2016-04-04 22:11:48 +08:00
|
|
|
-d, --device <device_path> - For local cameras, device to access. e.g /dev/video0 etc
|
|
|
|
-f, --file <file_path> - For local images, jpg file to access.
|
|
|
|
-m, --monitor_id - ID of the monitor to analyse
|
|
|
|
-h, --help - Display usage information
|
|
|
|
-v, --version - Print the installed version of ZoneMinder
|
2015-06-21 06:11:20 +08:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2002-12-24 20:02:08 +08:00
|
|
|
#include <getopt.h>
|
2003-03-26 20:00:16 +08:00
|
|
|
#include <signal.h>
|
2015-02-24 22:22:55 +08:00
|
|
|
#if defined(__FreeBSD__)
|
2015-01-04 02:59:23 +08:00
|
|
|
#include <limits.h>
|
2015-01-04 03:07:18 +08:00
|
|
|
#else
|
|
|
|
#include <values.h>
|
2015-01-02 06:18:12 +08:00
|
|
|
#endif
|
2003-03-26 20:00:16 +08:00
|
|
|
|
2015-02-24 22:22:55 +08:00
|
|
|
#if !defined(MAXINT)
|
|
|
|
#define MAXINT INT_MAX
|
|
|
|
#endif
|
|
|
|
|
2002-09-16 17:19:24 +08:00
|
|
|
#include "zm.h"
|
2003-03-26 20:00:16 +08:00
|
|
|
#include "zm_db.h"
|
2008-07-16 16:35:59 +08:00
|
|
|
#include "zm_time.h"
|
2006-04-05 20:22:27 +08:00
|
|
|
#include "zm_signal.h"
|
2003-03-26 20:00:16 +08:00
|
|
|
#include "zm_monitor.h"
|
2002-09-16 17:19:24 +08:00
|
|
|
|
2017-03-31 23:12:52 +08:00
|
|
|
void Usage() {
|
2017-09-05 03:28:23 +08:00
|
|
|
fprintf(stderr, "zmc -d <device_path> or -r <proto> -H <host> -P <port> -p <path> or -f <file_path> or -m <monitor_id>\n");
|
2004-02-16 03:17:38 +08:00
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
fprintf(stderr, "Options:\n");
|
2014-11-14 03:47:07 +08:00
|
|
|
#if defined(BSD)
|
2017-09-05 03:28:23 +08:00
|
|
|
fprintf(stderr, " -d, --device <device_path> : For local cameras, device to access. E.g /dev/bktr0 etc\n");
|
2014-11-14 03:47:07 +08:00
|
|
|
#else
|
2017-09-05 03:28:23 +08:00
|
|
|
fprintf(stderr, " -d, --device <device_path> : For local cameras, device to access. E.g /dev/video0 etc\n");
|
2014-11-14 03:47:07 +08:00
|
|
|
#endif
|
2017-09-05 03:28:23 +08:00
|
|
|
fprintf(stderr, " -f, --file <file_path> : For local images, jpg file to access.\n");
|
|
|
|
fprintf(stderr, " -m, --monitor <monitor_id> : For sources associated with a single monitor\n");
|
|
|
|
fprintf(stderr, " -h, --help : This screen\n");
|
|
|
|
fprintf(stderr, " -v, --version : Report the installed version of ZoneMinder\n");
|
|
|
|
exit(0);
|
2002-12-24 20:02:08 +08:00
|
|
|
}
|
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
int main(int argc, char *argv[]) {
|
2016-04-04 22:11:48 +08:00
|
|
|
self = argv[0];
|
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
srand(getpid() * time(0));
|
2016-04-04 22:11:48 +08:00
|
|
|
|
|
|
|
const char *device = "";
|
|
|
|
const char *protocol = "";
|
|
|
|
const char *host = "";
|
|
|
|
const char *port = "";
|
|
|
|
const char *path = "";
|
|
|
|
const char *file = "";
|
|
|
|
int monitor_id = -1;
|
|
|
|
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{"device", 1, 0, 'd'},
|
|
|
|
{"protocol", 1, 0, 'r'},
|
|
|
|
{"host", 1, 0, 'H'},
|
|
|
|
{"port", 1, 0, 'P'},
|
2017-03-31 23:12:52 +08:00
|
|
|
{"path", 1, 0, 'p'},
|
|
|
|
{"file", 1, 0, 'f'},
|
2016-04-04 22:11:48 +08:00
|
|
|
{"monitor", 1, 0, 'm'},
|
|
|
|
{"help", 0, 0, 'h'},
|
|
|
|
{"version", 0, 0, 'v'},
|
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
|
|
|
|
2017-03-31 23:12:52 +08:00
|
|
|
while (1) {
|
2016-04-04 22:11:48 +08:00
|
|
|
int option_index = 0;
|
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
int c = getopt_long(argc, argv, "d:H:P:p:f:m:h:v", long_options, &option_index);
|
|
|
|
if ( c == -1 ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
switch (c) {
|
2016-04-04 22:11:48 +08:00
|
|
|
case 'd':
|
|
|
|
device = optarg;
|
|
|
|
break;
|
|
|
|
case 'H':
|
|
|
|
host = optarg;
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
port = optarg;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
path = optarg;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
file = optarg;
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
monitor_id = atoi(optarg);
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
Usage();
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
std::cout << ZM_VERSION << "\n";
|
|
|
|
exit(0);
|
|
|
|
default:
|
|
|
|
//fprintf( stderr, "?? getopt returned character code 0%o ??\n", c );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
if ( optind < argc ) {
|
|
|
|
fprintf(stderr, "Extraneous options, ");
|
|
|
|
while ( optind < argc )
|
|
|
|
printf("%s ", argv[optind++]);
|
|
|
|
printf("\n");
|
2016-04-04 22:11:48 +08:00
|
|
|
Usage();
|
|
|
|
}
|
|
|
|
|
2017-11-13 04:18:39 +08:00
|
|
|
int modes = ( (device[0]?1:0) + (host[0]?1:0) + (file[0]?1:0) + (monitor_id > 0 ? 1 : 0));
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( modes > 1 ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
fprintf(stderr, "Only one of device, host/port/path, file or monitor id allowed\n");
|
2016-04-04 22:11:48 +08:00
|
|
|
Usage();
|
2017-09-05 03:28:23 +08:00
|
|
|
exit(0);
|
2016-04-04 22:11:48 +08:00
|
|
|
}
|
|
|
|
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( modes < 1 ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
fprintf(stderr, "One of device, host/port/path, file or monitor id must be specified\n");
|
2016-04-04 22:11:48 +08:00
|
|
|
Usage();
|
2017-09-05 03:28:23 +08:00
|
|
|
exit(0);
|
2016-04-04 22:11:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
char log_id_string[32] = "";
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( device[0] ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
const char *slash_ptr = strrchr(device, '/');
|
|
|
|
snprintf(log_id_string, sizeof(log_id_string), "zmc_d%s", slash_ptr?slash_ptr+1:device);
|
2017-03-31 23:12:52 +08:00
|
|
|
} else if ( host[0] ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
snprintf(log_id_string, sizeof(log_id_string), "zmc_h%s", host);
|
2017-03-31 23:12:52 +08:00
|
|
|
} else if ( file[0] ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
const char *slash_ptr = strrchr(file, '/');
|
|
|
|
snprintf(log_id_string, sizeof(log_id_string), "zmc_f%s", slash_ptr?slash_ptr+1:file);
|
2017-03-31 23:12:52 +08:00
|
|
|
} else {
|
2017-09-05 03:28:23 +08:00
|
|
|
snprintf(log_id_string, sizeof(log_id_string), "zmc_m%d", monitor_id);
|
2016-04-04 22:11:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
zmLoadConfig();
|
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
logInit(log_id_string);
|
|
|
|
|
2017-03-19 08:05:01 +08:00
|
|
|
hwcaps_detect();
|
2016-04-04 22:11:48 +08:00
|
|
|
|
|
|
|
Monitor **monitors = 0;
|
|
|
|
int n_monitors = 0;
|
2011-02-16 05:59:06 +08:00
|
|
|
#if ZM_HAS_V4L
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( device[0] ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
n_monitors = Monitor::LoadLocalMonitors(device, monitors, Monitor::CAPTURE);
|
2017-03-31 23:12:52 +08:00
|
|
|
} else
|
2011-02-16 05:59:06 +08:00
|
|
|
#endif // ZM_HAS_V4L
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( host[0] ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
if ( !port )
|
|
|
|
port = "80";
|
2017-09-05 03:28:23 +08:00
|
|
|
n_monitors = Monitor::LoadRemoteMonitors(protocol, host, port, path, monitors, Monitor::CAPTURE);
|
2017-03-31 23:12:52 +08:00
|
|
|
} else if ( file[0] ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
n_monitors = Monitor::LoadFileMonitors(file, monitors, Monitor::CAPTURE);
|
2017-03-31 23:12:52 +08:00
|
|
|
} else {
|
2017-09-05 03:28:23 +08:00
|
|
|
Monitor *monitor = Monitor::Load(monitor_id, true, Monitor::CAPTURE);
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( monitor ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
monitors = new Monitor *[1];
|
|
|
|
monitors[0] = monitor;
|
|
|
|
n_monitors = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( !n_monitors ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
Error("No monitors found");
|
|
|
|
exit(-1);
|
2016-04-04 22:11:48 +08:00
|
|
|
}
|
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
Info("Starting Capture version %s", ZM_VERSION);
|
2017-10-25 07:08:31 +08:00
|
|
|
static char sql[ZM_SQL_SML_BUFSIZ];
|
|
|
|
for ( int i = 0; i < n_monitors; i ++ ) {
|
2018-01-30 12:06:59 +08:00
|
|
|
snprintf( sql, sizeof(sql), "REPLACE INTO Monitor_Status (MonitorId, Status ) VALUES ('%d','Running')", monitors[i]->Id() );
|
2017-10-25 07:08:31 +08:00
|
|
|
if ( mysql_query( &dbconn, sql ) ) {
|
|
|
|
Error( "Can't run query: %s", mysql_error( &dbconn ) );
|
|
|
|
}
|
|
|
|
}
|
2016-04-04 22:11:48 +08:00
|
|
|
|
|
|
|
zmSetDefaultTermHandler();
|
|
|
|
zmSetDefaultDieHandler();
|
|
|
|
|
|
|
|
sigset_t block_set;
|
2017-09-05 03:28:23 +08:00
|
|
|
sigemptyset(&block_set);
|
2016-04-04 22:11:48 +08:00
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
sigaddset(&block_set, SIGUSR1);
|
|
|
|
sigaddset(&block_set, SIGUSR2);
|
2016-04-04 22:11:48 +08:00
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
monitors[0]->setStartupTime((time_t)time(NULL));
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( monitors[0]->PrimeCapture() < 0 ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
Error("Failed to prime capture of initial monitor");
|
|
|
|
exit(-1);
|
2016-04-04 22:11:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
long *capture_delays = new long[n_monitors];
|
|
|
|
long *alarm_capture_delays = new long[n_monitors];
|
|
|
|
long *next_delays = new long[n_monitors];
|
|
|
|
struct timeval * last_capture_times = new struct timeval[n_monitors];
|
2017-03-31 23:12:52 +08:00
|
|
|
for ( int i = 0; i < n_monitors; i++ ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
last_capture_times[i].tv_sec = last_capture_times[i].tv_usec = 0;
|
|
|
|
capture_delays[i] = monitors[i]->GetCaptureDelay();
|
|
|
|
alarm_capture_delays[i] = monitors[i]->GetAlarmCaptureDelay();
|
|
|
|
}
|
|
|
|
|
|
|
|
int result = 0;
|
|
|
|
struct timeval now;
|
|
|
|
struct DeltaTimeval delta_time;
|
2017-09-05 03:28:23 +08:00
|
|
|
while ( !zm_terminate ) {
|
|
|
|
sigprocmask(SIG_BLOCK, &block_set, 0);
|
2017-03-31 23:12:52 +08:00
|
|
|
for ( int i = 0; i < n_monitors; i++ ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
long min_delay = MAXINT;
|
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
gettimeofday(&now, NULL);
|
2017-03-31 23:12:52 +08:00
|
|
|
for ( int j = 0; j < n_monitors; j++ ) {
|
|
|
|
if ( last_capture_times[j].tv_sec ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
DELTA_TIMEVAL(delta_time, now, last_capture_times[j], DT_PREC_3);
|
2016-04-04 22:11:48 +08:00
|
|
|
if ( monitors[i]->GetState() == Monitor::ALARM )
|
|
|
|
next_delays[j] = alarm_capture_delays[j]-delta_time.delta;
|
|
|
|
else
|
|
|
|
next_delays[j] = capture_delays[j]-delta_time.delta;
|
|
|
|
if ( next_delays[j] < 0 )
|
|
|
|
next_delays[j] = 0;
|
2017-03-31 23:12:52 +08:00
|
|
|
} else {
|
2016-04-04 22:11:48 +08:00
|
|
|
next_delays[j] = 0;
|
|
|
|
}
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( next_delays[j] <= min_delay ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
min_delay = next_delays[j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( next_delays[i] <= min_delay || next_delays[i] <= 0 ) {
|
|
|
|
if ( monitors[i]->PreCapture() < 0 ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
Error("Failed to pre-capture monitor %d %d (%d/%d)", monitors[i]->Id(), monitors[i]->Name(), i+1, n_monitors);
|
2016-04-04 22:11:48 +08:00
|
|
|
zm_terminate = true;
|
|
|
|
result = -1;
|
|
|
|
break;
|
|
|
|
}
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( monitors[i]->Capture() < 0 ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
Error("Failed to capture image from monitor %d %s (%d/%d)", monitors[i]->Id(), monitors[i]->Name(), i+1, n_monitors);
|
2016-04-04 22:11:48 +08:00
|
|
|
zm_terminate = true;
|
|
|
|
result = -1;
|
|
|
|
break;
|
|
|
|
}
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( monitors[i]->PostCapture() < 0 ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
Error("Failed to post-capture monitor %d %s (%d/%d)", monitors[i]->Id(), monitors[i]->Name(), i+1, n_monitors);
|
2016-04-04 22:11:48 +08:00
|
|
|
zm_terminate = true;
|
|
|
|
result = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( next_delays[i] > 0 ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
gettimeofday(&now, NULL);
|
|
|
|
DELTA_TIMEVAL(delta_time, now, last_capture_times[i], DT_PREC_3);
|
2016-04-04 22:11:48 +08:00
|
|
|
long sleep_time = next_delays[i]-delta_time.delta;
|
2017-03-31 23:12:52 +08:00
|
|
|
if ( sleep_time > 0 ) {
|
2017-09-05 03:28:23 +08:00
|
|
|
usleep(sleep_time*(DT_MAXGRAN/DT_PREC_3));
|
2016-04-04 22:11:48 +08:00
|
|
|
}
|
|
|
|
}
|
2017-09-05 03:28:23 +08:00
|
|
|
gettimeofday(&(last_capture_times[i]), NULL);
|
|
|
|
} // end if next_delay <= min_delay || next_delays[i] <= 0 )
|
2016-11-04 04:44:03 +08:00
|
|
|
|
2017-09-05 03:28:23 +08:00
|
|
|
} // end foreach n_monitors
|
|
|
|
sigprocmask(SIG_UNBLOCK, &block_set, 0);
|
2018-01-11 01:59:42 +08:00
|
|
|
if ( zm_reload ) {
|
|
|
|
for ( int i = 0; i < n_monitors; i++ ) {
|
|
|
|
monitors[i]->Reload();
|
|
|
|
}
|
|
|
|
logTerm();
|
|
|
|
logInit( log_id_string );
|
|
|
|
zm_reload = false;
|
|
|
|
}
|
2017-09-05 03:28:23 +08:00
|
|
|
} // end while ! zm_terminate
|
2017-03-31 23:12:52 +08:00
|
|
|
for ( int i = 0; i < n_monitors; i++ ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
delete monitors[i];
|
|
|
|
}
|
|
|
|
delete [] monitors;
|
|
|
|
delete [] alarm_capture_delays;
|
|
|
|
delete [] capture_delays;
|
|
|
|
delete [] next_delays;
|
|
|
|
delete [] last_capture_times;
|
|
|
|
|
2016-10-07 23:33:25 +08:00
|
|
|
Image::Deinitialise();
|
2016-04-04 22:11:48 +08:00
|
|
|
logTerm();
|
|
|
|
zmDbClose();
|
|
|
|
|
|
|
|
return( result );
|
2002-09-16 17:19:24 +08:00
|
|
|
}
|