2003-03-26 19:57:29 +08:00
//
// ZoneMinder Monitor Class Implementation, $Date$, $Revision$
2008-07-25 17:33:23 +08:00
// Copyright (C) 2001-2008 Philip Coombes
2003-03-26 19:57:29 +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.
2003-03-26 19:57:29 +08:00
//
2008-07-14 23:21:16 +08:00
# include <sys/types.h>
# include <sys/stat.h>
2008-12-06 07:14:20 +08:00
# include <arpa/inet.h>
2007-08-30 02:11:09 +08:00
# include <glob.h>
2003-03-26 19:57:29 +08:00
# include "zm.h"
# include "zm_db.h"
2008-07-16 16:35:59 +08:00
# include "zm_time.h"
2004-03-04 23:05:54 +08:00
# include "zm_mpeg.h"
2007-08-30 02:11:09 +08:00
# include "zm_signal.h"
2003-03-26 19:57:29 +08:00
# include "zm_monitor.h"
2013-12-20 00:38:07 +08:00
# include "zm_video.h"
2017-06-23 05:58:32 +08:00
# include "zm_eventstream.h"
2011-02-16 05:59:06 +08:00
# if ZM_HAS_V4L
2003-03-26 19:57:29 +08:00
# include "zm_local_camera.h"
2011-02-16 05:59:06 +08:00
# endif // ZM_HAS_V4L
2003-03-26 19:57:29 +08:00
# include "zm_remote_camera.h"
2008-07-16 16:35:59 +08:00
# include "zm_remote_camera_http.h"
2017-10-04 04:28:56 +08:00
# include "zm_remote_camera_nvsocket.h"
2008-10-17 00:11:49 +08:00
# if HAVE_LIBAVFORMAT
2008-07-16 16:35:59 +08:00
# include "zm_remote_camera_rtsp.h"
2008-10-17 00:11:49 +08:00
# endif // HAVE_LIBAVFORMAT
2005-10-18 05:55:02 +08:00
# include "zm_file_camera.h"
2009-01-20 23:01:32 +08:00
# if HAVE_LIBAVFORMAT
# include "zm_ffmpeg_camera.h"
# endif // HAVE_LIBAVFORMAT
2013-12-13 01:45:29 +08:00
# if HAVE_LIBVLC
# include "zm_libvlc_camera.h"
# endif // HAVE_LIBVLC
2013-11-04 23:10:07 +08:00
# if HAVE_LIBCURL
# include "zm_curl_camera.h"
# endif // HAVE_LIBCURL
2003-03-26 19:57:29 +08:00
2008-07-14 23:21:16 +08:00
# if ZM_MEM_MAPPED
# include <sys/mman.h>
# include <fcntl.h>
# else // ZM_MEM_MAPPED
# include <sys/ipc.h>
# include <sys/shm.h>
# endif // ZM_MEM_MAPPED
2015-05-18 08:18:54 +08:00
// SOLARIS - we don't have MAP_LOCKED on openSolaris/illumos
# ifndef MAP_LOCKED
# define MAP_LOCKED 0
# endif
2017-11-28 22:50:09 +08:00
Monitor : : MonitorLink : : MonitorLink ( int p_id , const char * p_name ) :
id ( p_id ) ,
shared_data ( NULL ) ,
trigger_data ( NULL ) ,
video_store_data ( NULL )
{
2017-12-13 02:42:48 +08:00
strncpy ( name , p_name , sizeof ( name ) - 1 ) ;
2006-01-23 02:31:55 +08:00
2008-07-14 23:21:16 +08:00
# if ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
map_fd = - 1 ;
2017-06-13 09:39:37 +08:00
snprintf ( mem_file , sizeof ( mem_file ) , " %s/zm.mmap.%d " , staticConfig . PATH_MAP . c_str ( ) , id ) ;
2008-07-14 23:21:16 +08:00
# else // ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
shm_id = 0 ;
2008-07-14 23:21:16 +08:00
# endif // ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
mem_size = 0 ;
mem_ptr = 0 ;
2006-01-23 02:31:55 +08:00
2017-10-23 21:51:41 +08:00
last_event_id = 0 ;
2016-04-29 20:57:31 +08:00
last_state = IDLE ;
2006-01-23 02:31:55 +08:00
2016-04-29 20:57:31 +08:00
last_connect_time = 0 ;
connected = false ;
2006-01-23 02:31:55 +08:00
}
2016-04-01 00:54:56 +08:00
Monitor : : MonitorLink : : ~ MonitorLink ( ) {
2016-04-29 20:57:31 +08:00
disconnect ( ) ;
2006-01-23 02:31:55 +08:00
}
2016-04-01 00:54:56 +08:00
bool Monitor : : MonitorLink : : connect ( ) {
2016-04-29 20:57:31 +08:00
if ( ! last_connect_time | | ( time ( 0 ) - last_connect_time ) > 60 ) {
last_connect_time = time ( 0 ) ;
2006-01-23 02:31:55 +08:00
2016-04-29 20:57:31 +08:00
mem_size = sizeof ( SharedData ) + sizeof ( TriggerData ) ;
2008-07-14 23:21:16 +08:00
2016-04-29 20:57:31 +08:00
Debug ( 1 , " link.mem.size=%d " , mem_size ) ;
2008-07-14 23:21:16 +08:00
# if ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
map_fd = open ( mem_file , O_RDWR , ( mode_t ) 0600 ) ;
if ( map_fd < 0 ) {
Debug ( 3 , " Can't open linked memory map file %s: %s " , mem_file , strerror ( errno ) ) ;
disconnect ( ) ;
return ( false ) ;
}
while ( map_fd < = 2 ) {
int new_map_fd = dup ( map_fd ) ;
Warning ( " Got one of the stdio fds for our mmap handle. map_fd was %d, new one is %d " , map_fd , new_map_fd ) ;
close ( map_fd ) ;
map_fd = new_map_fd ;
}
struct stat map_stat ;
if ( fstat ( map_fd , & map_stat ) < 0 ) {
Error ( " Can't stat linked memory map file %s: %s " , mem_file , strerror ( errno ) ) ;
disconnect ( ) ;
return ( false ) ;
}
if ( map_stat . st_size = = 0 ) {
Error ( " Linked memory map file %s is empty: %s " , mem_file , strerror ( errno ) ) ;
disconnect ( ) ;
return ( false ) ;
} else if ( map_stat . st_size < mem_size ) {
Error ( " Got unexpected memory map file size %ld, expected %d " , map_stat . st_size , mem_size ) ;
disconnect ( ) ;
return ( false ) ;
}
mem_ptr = ( unsigned char * ) mmap ( NULL , mem_size , PROT_READ | PROT_WRITE , MAP_SHARED , map_fd , 0 ) ;
if ( mem_ptr = = MAP_FAILED ) {
Error ( " Can't map file %s (%d bytes) to memory: %s " , mem_file , mem_size , strerror ( errno ) ) ;
disconnect ( ) ;
return ( false ) ;
}
2008-07-14 23:21:16 +08:00
# else // ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
shm_id = shmget ( ( config . shm_key & 0xffff0000 ) | id , mem_size , 0700 ) ;
if ( shm_id < 0 ) {
Debug ( 3 , " Can't shmget link memory: %s " , strerror ( errno ) ) ;
connected = false ;
return ( false ) ;
}
mem_ptr = ( unsigned char * ) shmat ( shm_id , 0 , 0 ) ;
2017-05-11 01:16:08 +08:00
if ( mem_ptr < ( void * ) 0 ) {
2016-04-29 20:57:31 +08:00
Debug ( 3 , " Can't shmat link memory: %s " , strerror ( errno ) ) ;
connected = false ;
return ( false ) ;
}
2008-07-14 23:21:16 +08:00
# endif // ZM_MEM_MAPPED
2006-01-23 02:31:55 +08:00
2016-04-29 20:57:31 +08:00
shared_data = ( SharedData * ) mem_ptr ;
trigger_data = ( TriggerData * ) ( ( char * ) shared_data + sizeof ( SharedData ) ) ;
2006-01-23 02:31:55 +08:00
2016-04-29 20:57:31 +08:00
if ( ! shared_data - > valid ) {
Debug ( 3 , " Linked memory not initialised by capture daemon " ) ;
disconnect ( ) ;
return ( false ) ;
}
2006-01-23 02:31:55 +08:00
2016-04-29 20:57:31 +08:00
last_state = shared_data - > state ;
2017-10-23 21:51:41 +08:00
last_event_id = shared_data - > last_event_id ;
2016-04-29 20:57:31 +08:00
connected = true ;
2006-01-23 02:31:55 +08:00
2016-04-29 20:57:31 +08:00
return ( true ) ;
}
return ( false ) ;
2006-01-23 02:31:55 +08:00
}
2016-04-01 00:54:56 +08:00
bool Monitor : : MonitorLink : : disconnect ( ) {
2016-04-29 20:57:31 +08:00
if ( connected ) {
connected = false ;
2006-01-23 02:31:55 +08:00
2008-07-14 23:21:16 +08:00
# if ZM_MEM_MAPPED
2017-02-03 01:43:13 +08:00
if ( mem_ptr > ( void * ) 0 ) {
2016-04-29 20:57:31 +08:00
msync ( mem_ptr , mem_size , MS_ASYNC ) ;
munmap ( mem_ptr , mem_size ) ;
}
if ( map_fd > = 0 )
close ( map_fd ) ;
map_fd = - 1 ;
2008-07-14 23:21:16 +08:00
# else // ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
struct shmid_ds shm_data ;
if ( shmctl ( shm_id , IPC_STAT , & shm_data ) < 0 ) {
Debug ( 3 , " Can't shmctl: %s " , strerror ( errno ) ) ;
return ( false ) ;
}
shm_id = 0 ;
if ( shm_data . shm_nattch < = 1 ) {
if ( shmctl ( shm_id , IPC_RMID , 0 ) < 0 ) {
Debug ( 3 , " Can't shmctl: %s " , strerror ( errno ) ) ;
return ( false ) ;
}
}
if ( shmdt ( mem_ptr ) < 0 ) {
Debug ( 3 , " Can't shmdt: %s " , strerror ( errno ) ) ;
return ( false ) ;
}
2006-01-23 02:31:55 +08:00
2008-07-14 23:21:16 +08:00
# endif // ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
mem_size = 0 ;
mem_ptr = 0 ;
}
return ( true ) ;
2006-01-23 02:31:55 +08:00
}
2016-04-01 00:54:56 +08:00
bool Monitor : : MonitorLink : : isAlarmed ( ) {
2016-04-29 20:57:31 +08:00
if ( ! connected ) {
return ( false ) ;
}
return ( shared_data - > state = = ALARM ) ;
2006-01-23 02:31:55 +08:00
}
2016-04-01 00:54:56 +08:00
bool Monitor : : MonitorLink : : inAlarm ( ) {
2016-04-29 20:57:31 +08:00
if ( ! connected ) {
return ( false ) ;
}
return ( shared_data - > state = = ALARM | | shared_data - > state = = ALERT ) ;
2006-01-23 02:31:55 +08:00
}
2016-12-09 00:49:54 +08:00
bool Monitor : : MonitorLink : : hasAlarmed ( ) {
2016-04-29 20:57:31 +08:00
if ( shared_data - > state = = ALARM ) {
return ( true ) ;
}
2017-10-23 21:51:41 +08:00
//} else if ( shared_data->last_event_id != (unsigned int)last_event ) {
// Why test for it, just set it...
last_event_id = shared_data - > last_event_id ;
//}
2016-04-29 20:57:31 +08:00
return ( false ) ;
2006-01-23 02:31:55 +08:00
}
2003-09-23 17:52:45 +08:00
Monitor : : Monitor (
2016-04-29 20:57:31 +08:00
int p_id ,
const char * p_name ,
const unsigned int p_server_id ,
const unsigned int p_storage_id ,
int p_function ,
bool p_enabled ,
const char * p_linked_monitors ,
Camera * p_camera ,
int p_orientation ,
unsigned int p_deinterlacing ,
int p_savejpegs ,
2017-10-28 11:36:49 +08:00
int p_colours ,
2016-09-13 09:35:14 +08:00
VideoWriter p_videowriter ,
2017-11-21 00:48:56 +08:00
std : : string & p_encoderparams ,
std : : string & p_output_codec ,
std : : string & p_output_container ,
2016-04-29 20:57:31 +08:00
bool p_record_audio ,
const char * p_event_prefix ,
const char * p_label_format ,
const Coord & p_label_coord ,
int p_label_size ,
int p_image_buffer_count ,
int p_warmup_count ,
int p_pre_event_count ,
int p_post_event_count ,
int p_stream_replay_buffer ,
int p_alarm_frame_count ,
int p_section_length ,
int p_frame_skip ,
int p_motion_frame_skip ,
2017-11-22 08:55:40 +08:00
double p_analysis_fps_limit ,
2016-04-29 20:57:31 +08:00
unsigned int p_analysis_update_delay ,
int p_capture_delay ,
int p_alarm_capture_delay ,
int p_fps_report_interval ,
int p_ref_blend_perc ,
int p_alarm_ref_blend_perc ,
bool p_track_motion ,
Rgb p_signal_check_colour ,
bool p_embed_exif ,
Purpose p_purpose ,
int p_n_zones ,
Zone * p_zones [ ]
2003-09-23 17:52:45 +08:00
) : id ( p_id ) ,
2016-04-29 20:57:31 +08:00
server_id ( p_server_id ) ,
storage_id ( p_storage_id ) ,
function ( ( Function ) p_function ) ,
enabled ( p_enabled ) ,
2016-04-26 03:57:39 +08:00
width ( ( p_orientation = = ROTATE_90 | | p_orientation = = ROTATE_270 ) ? p_camera - > Height ( ) : p_camera - > Width ( ) ) ,
height ( ( p_orientation = = ROTATE_90 | | p_orientation = = ROTATE_270 ) ? p_camera - > Width ( ) : p_camera - > Height ( ) ) ,
2016-04-29 20:57:31 +08:00
orientation ( ( Orientation ) p_orientation ) ,
deinterlacing ( p_deinterlacing ) ,
savejpegspref ( p_savejpegs ) ,
2017-10-28 11:36:49 +08:00
colours ( p_colours ) ,
2016-09-13 09:35:14 +08:00
videowriter ( p_videowriter ) ,
2016-04-29 20:57:31 +08:00
encoderparams ( p_encoderparams ) ,
2017-11-14 14:59:15 +08:00
output_codec ( p_output_codec ) ,
output_container ( p_output_container ) ,
2016-04-29 20:57:31 +08:00
record_audio ( p_record_audio ) ,
label_coord ( p_label_coord ) ,
label_size ( p_label_size ) ,
image_buffer_count ( p_image_buffer_count ) ,
warmup_count ( p_warmup_count ) ,
pre_event_count ( p_pre_event_count ) ,
post_event_count ( p_post_event_count ) ,
stream_replay_buffer ( p_stream_replay_buffer ) ,
section_length ( p_section_length ) ,
frame_skip ( p_frame_skip ) ,
motion_frame_skip ( p_motion_frame_skip ) ,
2017-11-22 08:55:40 +08:00
analysis_fps_limit ( p_analysis_fps_limit ) ,
2016-04-29 20:57:31 +08:00
analysis_update_delay ( p_analysis_update_delay ) ,
capture_delay ( p_capture_delay ) ,
alarm_capture_delay ( p_alarm_capture_delay ) ,
alarm_frame_count ( p_alarm_frame_count ) ,
fps_report_interval ( p_fps_report_interval ) ,
ref_blend_perc ( p_ref_blend_perc ) ,
alarm_ref_blend_perc ( p_alarm_ref_blend_perc ) ,
track_motion ( p_track_motion ) ,
signal_check_colour ( p_signal_check_colour ) ,
embed_exif ( p_embed_exif ) ,
delta_image ( width , height , ZM_COLOUR_GRAY8 , ZM_SUBPIX_ORDER_NONE ) ,
ref_image ( width , height , p_camera - > Colours ( ) , p_camera - > SubpixelOrder ( ) ) ,
purpose ( p_purpose ) ,
last_motion_score ( 0 ) ,
camera ( p_camera ) ,
n_zones ( p_n_zones ) ,
zones ( p_zones ) ,
timestamps ( 0 ) ,
images ( 0 ) ,
privacy_bitmask ( NULL )
2003-03-26 19:57:29 +08:00
{
2016-04-29 20:57:31 +08:00
strncpy ( name , p_name , sizeof ( name ) - 1 ) ;
strncpy ( event_prefix , p_event_prefix , sizeof ( event_prefix ) - 1 ) ;
strncpy ( label_format , p_label_format , sizeof ( label_format ) - 1 ) ;
// Change \n to actual line feeds
char * token_ptr = label_format ;
const char * token_string = " \n " ;
2016-12-09 00:49:54 +08:00
while ( ( token_ptr = strstr ( token_ptr , token_string ) ) ) {
if ( * ( token_ptr + 1 ) ) {
2016-04-29 20:57:31 +08:00
* token_ptr = ' \n ' ;
token_ptr + + ;
strcpy ( token_ptr , token_ptr + 1 ) ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
* token_ptr = ' \0 ' ;
break ;
}
}
/* Parse encoder parameters */
ParseEncoderParameters ( encoderparams . c_str ( ) , & encoderparamsvec ) ;
2017-10-28 11:36:49 +08:00
2017-11-22 08:55:40 +08:00
capture_fps = 0.0 ;
analysis_fps = 0.0 ;
2016-04-29 20:57:31 +08:00
event_count = 0 ;
image_count = 0 ;
2017-11-18 03:30:38 +08:00
analysis_image_count = 0 ;
2017-12-06 05:16:52 +08:00
deinterlacing_value = deinterlacing & 0xff ;
2017-12-02 03:33:51 +08:00
// How many frames we need to have before we start analysing
2016-04-29 20:57:31 +08:00
ready_count = warmup_count ;
2017-12-02 03:33:51 +08:00
2016-04-29 20:57:31 +08:00
last_alarm_count = 0 ;
state = IDLE ;
2017-11-28 04:43:06 +08:00
last_signal = false ;
2016-04-29 20:57:31 +08:00
if ( alarm_frame_count < 1 )
alarm_frame_count = 1 ;
else if ( alarm_frame_count > MAX_PRE_ALARM_FRAMES )
alarm_frame_count = MAX_PRE_ALARM_FRAMES ;
auto_resume_time = 0 ;
if ( strcmp ( config . event_close_mode , " time " ) = = 0 )
event_close_mode = CLOSE_TIME ;
else if ( strcmp ( config . event_close_mode , " alarm " ) = = 0 )
event_close_mode = CLOSE_ALARM ;
else
event_close_mode = CLOSE_IDLE ;
Debug ( 1 , " monitor purpose=%d " , purpose ) ;
mem_size = sizeof ( SharedData )
+ sizeof ( TriggerData )
+ sizeof ( VideoStoreData ) //Information to pass back to the capture process
2017-11-22 08:55:40 +08:00
+ ( image_buffer_count * sizeof ( struct timeval ) )
2016-04-29 20:57:31 +08:00
+ ( image_buffer_count * camera - > ImageSize ( ) )
2017-04-16 15:57:37 +08:00
+ 64 ; /* Padding used to permit aligning the images buffer to 64 byte boundary */
2016-04-29 20:57:31 +08:00
Debug ( 1 , " mem.size=%d " , mem_size ) ;
mem_ptr = NULL ;
2017-01-18 22:31:08 +08:00
storage = new Storage ( storage_id ) ;
Debug ( 1 , " Storage path: %s " , storage - > Path ( ) ) ;
// Should maybe store this for later use
2016-11-28 09:10:12 +08:00
char monitor_dir [ PATH_MAX ] = " " ;
2017-01-18 22:31:08 +08:00
snprintf ( monitor_dir , sizeof ( monitor_dir ) , " %s/%d " , storage - > Path ( ) , id ) ;
2016-11-28 09:10:12 +08:00
struct stat statbuf ;
2017-07-11 07:37:55 +08:00
// If we are going to actually do capture, then yes, we should stat this dir, otherwise not
2017-01-18 22:31:08 +08:00
if ( stat ( monitor_dir , & statbuf ) ) {
if ( errno = = ENOENT | | errno = = ENOTDIR ) {
if ( mkdir ( monitor_dir , 0755 ) ) {
Error ( " Can't mkdir %s: %s " , monitor_dir , strerror ( errno ) ) ;
2016-11-28 09:10:12 +08:00
}
2017-01-18 22:31:08 +08:00
} else {
Warning ( " Error stat'ing %s, may be fatal. error is %s " , monitor_dir , strerror ( errno ) ) ;
}
}
2016-11-28 09:10:12 +08:00
2016-04-29 20:57:31 +08:00
if ( purpose = = CAPTURE ) {
2016-05-07 00:39:10 +08:00
2017-08-12 00:03:37 +08:00
if ( ! this - > connect ( ) ) {
Error ( " unable to connect, but doing capture " ) ;
exit ( - 1 ) ;
}
2016-04-29 20:57:31 +08:00
memset ( mem_ptr , 0 , mem_size ) ;
shared_data - > size = sizeof ( SharedData ) ;
2017-12-02 03:33:51 +08:00
Debug ( 1 , " shared.size=%d " , shared_data - > size ) ;
2016-04-29 20:57:31 +08:00
shared_data - > active = enabled ;
shared_data - > signal = false ;
shared_data - > state = IDLE ;
shared_data - > last_write_index = image_buffer_count ;
shared_data - > last_read_index = image_buffer_count ;
shared_data - > last_write_time = 0 ;
2017-10-23 21:51:41 +08:00
shared_data - > last_event_id = 0 ;
2016-04-29 20:57:31 +08:00
shared_data - > action = ( Action ) 0 ;
shared_data - > brightness = - 1 ;
shared_data - > hue = - 1 ;
shared_data - > colour = - 1 ;
shared_data - > contrast = - 1 ;
shared_data - > alarm_x = - 1 ;
shared_data - > alarm_y = - 1 ;
shared_data - > format = camera - > SubpixelOrder ( ) ;
shared_data - > imagesize = camera - > ImageSize ( ) ;
trigger_data - > size = sizeof ( TriggerData ) ;
trigger_data - > trigger_state = TRIGGER_CANCEL ;
trigger_data - > trigger_score = 0 ;
trigger_data - > trigger_cause [ 0 ] = 0 ;
trigger_data - > trigger_text [ 0 ] = 0 ;
trigger_data - > trigger_showtext [ 0 ] = 0 ;
shared_data - > valid = true ;
2017-04-13 01:36:39 +08:00
video_store_data - > recording = ( struct timeval ) { 0 } ;
2017-10-07 23:30:41 +08:00
// Uh, why nothing? Why not NULL?
2016-04-29 20:57:31 +08:00
snprintf ( video_store_data - > event_file , sizeof ( video_store_data - > event_file ) , " nothing " ) ;
video_store_data - > size = sizeof ( VideoStoreData ) ;
//video_store_data->frameNumber = 0;
}
2017-07-11 07:37:55 +08:00
//if ( ( ! mem_ptr ) || ! shared_data->valid ) {
//if ( purpose != QUERY ) {
//Error( "Shared data not initialised by capture daemon for monitor %s", name );
//exit( -1 );
//}
//}
2016-04-29 20:57:31 +08:00
start_time = last_fps_time = time ( 0 ) ;
event = 0 ;
2017-12-02 03:33:51 +08:00
last_section_mod = 0 ;
pre_event_buffer_count = pre_event_count + alarm_frame_count + warmup_count - 1 ;
2016-04-29 20:57:31 +08:00
2017-10-23 21:51:41 +08:00
Debug ( 1 , " Monitor %s \
function : % d \
label_format : ' % s ' , label_x = % d , label_y = % d , label size = % d \
IBC = % d , WUC = % d , pEC = % d , PEC = % d , EAF = % d , FRI = % d , RBP = % d , ARBP = % d , FM = % d " ,
name ,
function , label_format , label_coord . X ( ) , label_coord . Y ( ) , label_size ,
2017-12-02 03:33:51 +08:00
image_buffer_count , warmup_count ,
pre_event_count , post_event_count , alarm_frame_count ,
fps_report_interval , ref_blend_perc , alarm_ref_blend_perc , track_motion
2017-10-23 21:51:41 +08:00
) ;
2016-09-27 08:08:09 +08:00
2017-10-07 23:30:41 +08:00
n_linked_monitors = 0 ;
linked_monitors = 0 ;
2016-04-29 20:57:31 +08:00
2017-10-07 23:30:41 +08:00
adaptive_skip = true ;
2016-04-29 20:57:31 +08:00
2017-10-07 23:30:41 +08:00
ReloadLinkedMonitors ( p_linked_monitors ) ;
2017-11-10 03:50:20 +08:00
videoStore = NULL ;
2017-10-20 05:12:36 +08:00
} // Monitor::Monitor
2003-03-26 19:57:29 +08:00
2014-06-27 02:54:47 +08:00
bool Monitor : : connect ( ) {
2016-06-22 00:21:18 +08:00
Debug ( 3 , " Connecting to monitor. Purpose is %d " , purpose ) ;
2014-06-27 02:54:47 +08:00
# if ZM_MEM_MAPPED
2017-06-13 09:39:37 +08:00
snprintf ( mem_file , sizeof ( mem_file ) , " %s/zm.mmap.%d " , staticConfig . PATH_MAP . c_str ( ) , id ) ;
2016-04-29 20:57:31 +08:00
map_fd = open ( mem_file , O_RDWR | O_CREAT , ( mode_t ) 0600 ) ;
2017-08-12 00:03:37 +08:00
if ( map_fd < 0 ) {
2016-04-29 20:57:31 +08:00
Fatal ( " Can't open memory map file %s, probably not enough space free: %s " , mem_file , strerror ( errno ) ) ;
2017-08-12 00:03:37 +08:00
} else {
Debug ( 3 , " Success opening mmap file at (%s) " , mem_file ) ;
}
2016-04-29 20:57:31 +08:00
struct stat map_stat ;
if ( fstat ( map_fd , & map_stat ) < 0 )
Fatal ( " Can't stat memory map file %s: %s, is the zmc process for this monitor running? " , mem_file , strerror ( errno ) ) ;
2017-08-12 00:03:37 +08:00
if ( map_stat . st_size ! = mem_size ) {
if ( purpose = = CAPTURE ) {
// Allocate the size
if ( ftruncate ( map_fd , mem_size ) < 0 ) {
Fatal ( " Can't extend memory map file %s to %d bytes: %s " , mem_file , mem_size , strerror ( errno ) ) ;
}
} else if ( map_stat . st_size = = 0 ) {
Error ( " Got empty memory map file size %ld, is the zmc process for this monitor running? " , map_stat . st_size , mem_size ) ;
return false ;
} else {
Error ( " Got unexpected memory map file size %ld, expected %d " , map_stat . st_size , mem_size ) ;
return false ;
2016-04-29 20:57:31 +08:00
}
2017-08-12 00:03:37 +08:00
}
Debug ( 3 , " MMap file size is %ld " , map_stat . st_size ) ;
2015-04-21 00:53:02 +08:00
# ifdef MAP_LOCKED
2017-08-12 00:03:37 +08:00
mem_ptr = ( unsigned char * ) mmap ( NULL , mem_size , PROT_READ | PROT_WRITE , MAP_SHARED | MAP_LOCKED , map_fd , 0 ) ;
if ( mem_ptr = = MAP_FAILED ) {
if ( errno = = EAGAIN ) {
Debug ( 1 , " Unable to map file %s (%d bytes) to locked memory, trying unlocked " , mem_file , mem_size ) ;
2015-04-21 00:53:02 +08:00
# endif
2017-08-12 00:03:37 +08:00
mem_ptr = ( unsigned char * ) mmap ( NULL , mem_size , PROT_READ | PROT_WRITE , MAP_SHARED , map_fd , 0 ) ;
Debug ( 1 , " Mapped file %s (%d bytes) to unlocked memory " , mem_file , mem_size ) ;
2015-04-21 00:53:02 +08:00
# ifdef MAP_LOCKED
2017-08-12 00:03:37 +08:00
} else {
Error ( " Unable to map file %s (%d bytes) to locked memory (%s) " , mem_file , mem_size , strerror ( errno ) ) ;
2016-04-29 20:57:31 +08:00
}
2017-08-12 00:03:37 +08:00
}
2015-04-21 00:53:02 +08:00
# endif
2017-08-12 00:03:37 +08:00
if ( mem_ptr = = MAP_FAILED )
Fatal ( " Can't map file %s (%d bytes) to memory: %s(%d) " , mem_file , mem_size , strerror ( errno ) , errno ) ;
if ( mem_ptr = = NULL ) {
Error ( " mmap gave a null address: " ) ;
} else {
Debug ( 3 , " mmapped to %p " , mem_ptr ) ;
2016-04-29 20:57:31 +08:00
}
2014-06-27 02:54:47 +08:00
# else // ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
shm_id = shmget ( ( config . shm_key & 0xffff0000 ) | id , mem_size , IPC_CREAT | 0700 ) ;
if ( shm_id < 0 ) {
Error ( " Can't shmget, probably not enough shared memory space free: %s " , strerror ( errno ) ) ;
exit ( - 1 ) ;
}
mem_ptr = ( unsigned char * ) shmat ( shm_id , 0 , 0 ) ;
2017-05-11 01:16:08 +08:00
if ( mem_ptr < ( void * ) 0 ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't shmat: %s " , strerror ( errno ) ) ;
exit ( - 1 ) ;
}
2014-06-27 02:54:47 +08:00
# endif // ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
shared_data = ( SharedData * ) mem_ptr ;
trigger_data = ( TriggerData * ) ( ( char * ) shared_data + sizeof ( SharedData ) ) ;
video_store_data = ( VideoStoreData * ) ( ( char * ) trigger_data + sizeof ( TriggerData ) ) ;
2017-11-22 08:55:40 +08:00
shared_timestamps = ( struct timeval * ) ( ( char * ) video_store_data + sizeof ( VideoStoreData ) ) ;
shared_images = ( unsigned char * ) ( ( char * ) shared_timestamps + ( image_buffer_count * sizeof ( struct timeval ) ) ) ;
2017-12-01 20:26:34 +08:00
packetqueue = NULL ;
2017-08-12 00:03:37 +08:00
if ( ( ( unsigned long ) shared_images % 64 ) ! = 0 ) {
2017-04-16 15:57:37 +08:00
/* Align images buffer to nearest 64 byte boundary */
Debug ( 3 , " Aligning shared memory images to the next 64 byte boundary " ) ;
shared_images = ( uint8_t * ) ( ( unsigned long ) shared_images + ( 64 - ( ( unsigned long ) shared_images % 64 ) ) ) ;
2016-04-29 20:57:31 +08:00
}
2017-10-07 23:30:41 +08:00
Debug ( 3 , " Allocating %d image buffers " , image_buffer_count ) ;
2017-11-14 01:14:57 +08:00
image_buffer = new ZMPacket [ image_buffer_count ] ;
2017-10-07 23:30:41 +08:00
for ( int i = 0 ; i < image_buffer_count ; i + + ) {
2017-11-22 08:55:40 +08:00
image_buffer [ i ] . image_index = i ;
image_buffer [ i ] . timestamp = & ( shared_timestamps [ i ] ) ;
2017-10-07 23:30:41 +08:00
image_buffer [ i ] . image = new Image ( width , height , camera - > Colours ( ) , camera - > SubpixelOrder ( ) , & ( shared_images [ i * camera - > ImageSize ( ) ] ) ) ;
image_buffer [ i ] . image - > HoldBuffer ( true ) ; /* Don't release the internal buffer or replace it with another */
}
2017-12-06 05:16:52 +08:00
if ( deinterlacing_value = = 4 ) {
2017-10-07 23:30:41 +08:00
/* Four field motion adaptive deinterlacing in use */
/* Allocate a buffer for the next image */
next_buffer . image = new Image ( width , height , camera - > Colours ( ) , camera - > SubpixelOrder ( ) ) ;
}
2017-11-22 08:55:40 +08:00
2017-10-07 23:30:41 +08:00
Debug ( 3 , " Success connecting " ) ;
2016-04-29 20:57:31 +08:00
return true ;
2017-10-07 23:30:41 +08:00
} // Monitor::connect
2014-06-27 02:54:47 +08:00
2016-06-22 02:02:36 +08:00
Monitor : : ~ Monitor ( ) {
2017-10-23 21:51:41 +08:00
if ( videoStore ) {
delete videoStore ;
videoStore = NULL ;
}
2017-12-01 20:26:34 +08:00
delete packetqueue ;
packetqueue = NULL ;
2017-11-23 21:40:49 +08:00
2016-04-29 20:57:31 +08:00
if ( timestamps ) {
delete [ ] timestamps ;
timestamps = 0 ;
}
if ( images ) {
delete [ ] images ;
images = 0 ;
}
if ( privacy_bitmask ) {
delete [ ] privacy_bitmask ;
privacy_bitmask = NULL ;
}
if ( mem_ptr ) {
2016-09-13 21:36:45 +08:00
if ( event ) {
2017-11-25 04:37:50 +08:00
Info ( " %s: image_count:%d - Closing event %d, shutting down " , name , image_count , event - > Id ( ) ) ;
2016-09-13 21:36:45 +08:00
closeEvent ( ) ;
}
2016-04-29 20:57:31 +08:00
2017-12-06 05:16:52 +08:00
if ( deinterlacing_value = = 4 ) {
2016-04-29 20:57:31 +08:00
delete next_buffer . image ;
}
2017-11-28 04:43:06 +08:00
# if 1
2016-06-22 02:02:36 +08:00
for ( int i = 0 ; i < image_buffer_count ; i + + ) {
2017-11-28 04:43:06 +08:00
delete image_buffer [ i ] . image ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
# endif
2016-04-29 20:57:31 +08:00
delete [ ] image_buffer ;
2016-06-22 02:02:36 +08:00
if ( purpose = = ANALYSIS ) {
2016-04-29 20:57:31 +08:00
shared_data - > state = state = IDLE ;
2017-11-18 05:49:01 +08:00
// I think we set it to the count so that it is technically 1 behind capture, which starts at 0
2016-04-29 20:57:31 +08:00
shared_data - > last_read_index = image_buffer_count ;
shared_data - > last_read_time = 0 ;
2016-06-22 02:02:36 +08:00
} else if ( purpose = = CAPTURE ) {
2016-04-29 20:57:31 +08:00
shared_data - > valid = false ;
memset ( mem_ptr , 0 , mem_size ) ;
}
2006-01-23 02:31:55 +08:00
2008-07-14 23:21:16 +08:00
# if ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
if ( msync ( mem_ptr , mem_size , MS_SYNC ) < 0 )
Error ( " Can't msync: %s " , strerror ( errno ) ) ;
if ( munmap ( mem_ptr , mem_size ) < 0 )
Fatal ( " Can't munmap: %s " , strerror ( errno ) ) ;
close ( map_fd ) ;
2016-11-14 06:40:54 +08:00
2016-11-15 09:01:00 +08:00
if ( purpose = = CAPTURE ) {
2017-06-14 06:02:28 +08:00
// How about we store this in the object on instantiation so that we don't have to do this again.
2017-05-17 00:04:56 +08:00
char mmap_path [ PATH_MAX ] = " " ;
2017-06-13 09:39:37 +08:00
snprintf ( mmap_path , sizeof ( mmap_path ) , " %s/zm.mmap.%d " , staticConfig . PATH_MAP . c_str ( ) , id ) ;
2016-11-14 06:40:54 +08:00
2017-05-17 00:04:56 +08:00
if ( unlink ( mmap_path ) < 0 ) {
Warning ( " Can't unlink '%s': %s " , mmap_path , strerror ( errno ) ) ;
}
2016-11-14 06:40:54 +08:00
}
2008-07-14 23:21:16 +08:00
# else // ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
struct shmid_ds shm_data ;
if ( shmctl ( shm_id , IPC_STAT , & shm_data ) < 0 ) {
Error ( " Can't shmctl: %s " , strerror ( errno ) ) ;
exit ( - 1 ) ;
}
if ( shm_data . shm_nattch < = 1 ) {
if ( shmctl ( shm_id , IPC_RMID , 0 ) < 0 ) {
Error ( " Can't shmctl: %s " , strerror ( errno ) ) ;
exit ( - 1 ) ;
}
}
2008-07-14 23:21:16 +08:00
# endif // ZM_MEM_MAPPED
2016-04-29 20:57:31 +08:00
} // end if mem_ptr
2017-10-07 23:30:41 +08:00
for ( int i = 0 ; i < n_zones ; i + + ) {
delete zones [ i ] ;
}
delete [ ] zones ;
delete camera ;
delete storage ;
2006-01-23 02:31:55 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : AddZones ( int p_n_zones , Zone * p_zones [ ] ) {
2016-04-29 20:57:31 +08:00
for ( int i = 0 ; i < n_zones ; i + + )
delete zones [ i ] ;
delete [ ] zones ;
n_zones = p_n_zones ;
zones = p_zones ;
2003-03-26 19:57:29 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : AddPrivacyBitmask ( Zone * p_zones [ ] ) {
2017-12-13 01:52:30 +08:00
if ( privacy_bitmask ) {
2016-04-29 20:57:31 +08:00
delete [ ] privacy_bitmask ;
2017-12-13 01:52:30 +08:00
privacy_bitmask = NULL ;
}
2016-04-29 20:57:31 +08:00
Image * privacy_image = NULL ;
2016-06-22 02:02:36 +08:00
for ( int i = 0 ; i < n_zones ; i + + ) {
if ( p_zones [ i ] - > IsPrivacy ( ) ) {
if ( ! privacy_image ) {
2016-04-29 20:57:31 +08:00
privacy_image = new Image ( width , height , 1 , ZM_SUBPIX_ORDER_NONE ) ;
privacy_image - > Clear ( ) ;
}
privacy_image - > Fill ( 0xff , p_zones [ i ] - > GetPolygon ( ) ) ;
privacy_image - > Outline ( 0xff , p_zones [ i ] - > GetPolygon ( ) ) ;
}
} // end foreach zone
if ( privacy_image )
privacy_bitmask = privacy_image - > Buffer ( ) ;
2015-08-20 20:20:41 +08:00
}
2016-06-22 02:02:36 +08:00
Monitor : : State Monitor : : GetState ( ) const {
2016-04-29 20:57:31 +08:00
return ( ( State ) shared_data - > state ) ;
2003-03-26 19:57:29 +08:00
}
2016-06-22 02:02:36 +08:00
int Monitor : : GetImage ( int index , int scale ) {
if ( index < 0 | | index > image_buffer_count ) {
2016-04-29 20:57:31 +08:00
index = shared_data - > last_write_index ;
}
2017-10-07 23:30:41 +08:00
Debug ( 3 , " GetImage " ) ;
2016-06-22 02:02:36 +08:00
if ( index ! = image_buffer_count ) {
2016-04-29 20:57:31 +08:00
Image * image ;
// If we are going to be modifying the snapshot before writing, then we need to copy it
if ( ( scale ! = ZM_SCALE_BASE ) | | ( ! config . timestamp_on_capture ) ) {
2017-11-14 01:14:57 +08:00
ZMPacket * snap = & image_buffer [ index ] ;
2016-04-29 20:57:31 +08:00
Image * snap_image = snap - > image ;
alarm_image . Assign ( * snap_image ) ;
//write_image.Assign( *snap_image );
if ( scale ! = ZM_SCALE_BASE ) {
alarm_image . Scale ( scale ) ;
}
if ( ! config . timestamp_on_capture ) {
2017-11-22 08:55:40 +08:00
TimestampImage ( & alarm_image , snap - > timestamp ) ;
2016-04-29 20:57:31 +08:00
}
image = & alarm_image ;
} else {
image = image_buffer [ index ] . image ;
}
static char filename [ PATH_MAX ] ;
snprintf ( filename , sizeof ( filename ) , " Monitor%d.jpg " , id ) ;
image - > WriteJpeg ( filename ) ;
2016-06-22 02:02:36 +08:00
} else {
2016-04-29 20:57:31 +08:00
Error ( " Unable to generate image, no images in buffer " ) ;
}
return ( 0 ) ;
2003-03-26 19:57:29 +08:00
}
2017-11-22 08:55:40 +08:00
ZMPacket * Monitor : : getSnapshot ( int index ) {
2016-06-22 02:02:36 +08:00
if ( index < 0 | | index > image_buffer_count ) {
2016-04-29 20:57:31 +08:00
index = shared_data - > last_write_index ;
}
2017-11-22 08:55:40 +08:00
return & image_buffer [ index ] ;
2016-04-29 20:57:31 +08:00
2017-11-22 08:55:40 +08:00
return NULL ;
}
2016-04-29 20:57:31 +08:00
2017-11-22 08:55:40 +08:00
struct timeval Monitor : : GetTimestamp ( int index ) {
ZMPacket * packet = getSnapshot ( index ) ;
if ( packet )
return * packet - > timestamp ;
2016-04-29 20:57:31 +08:00
2017-11-22 08:55:40 +08:00
static struct timeval null_tv = { 0 , 0 } ;
return null_tv ;
2003-03-26 19:57:29 +08:00
}
2016-06-22 02:02:36 +08:00
unsigned int Monitor : : GetLastReadIndex ( ) const {
2016-04-29 20:57:31 +08:00
return ( shared_data - > last_read_index ! = ( unsigned int ) image_buffer_count ? shared_data - > last_read_index : - 1 ) ;
2003-03-26 19:57:29 +08:00
}
2016-06-22 02:02:36 +08:00
unsigned int Monitor : : GetLastWriteIndex ( ) const {
2016-04-29 20:57:31 +08:00
return ( shared_data - > last_write_index ! = ( unsigned int ) image_buffer_count ? shared_data - > last_write_index : - 1 ) ;
2003-03-26 19:57:29 +08:00
}
2017-11-29 00:55:47 +08:00
uint32_t Monitor : : GetLastEventId ( ) const {
2017-12-02 03:33:51 +08:00
Debug ( 2 , " mem_ptr(%x), size(%d) State(%d) last_read_index(%d) last_read_time(%d) last_event(%d) " ,
2017-11-29 00:55:47 +08:00
mem_ptr ,
2017-12-02 03:33:51 +08:00
shared_data - > size ,
2017-11-29 00:55:47 +08:00
shared_data - > state ,
shared_data - > last_read_index ,
shared_data - > last_read_time ,
2017-12-01 03:37:36 +08:00
shared_data - > last_event_id
2017-11-29 00:55:47 +08:00
) ;
2017-10-23 21:51:41 +08:00
return ( shared_data - > last_event_id ) ;
2003-03-26 19:57:29 +08:00
}
2017-11-25 04:37:50 +08:00
// This function is crap.
2016-06-22 02:02:36 +08:00
double Monitor : : GetFPS ( ) const {
2018-01-19 00:39:33 +08:00
// last_write_index is the last capture index. It starts as == image_buffer_count so that the first asignment % image_buffer_count = 0;
2016-04-29 20:57:31 +08:00
int index1 = shared_data - > last_write_index ;
2017-12-01 05:10:30 +08:00
if ( index1 > = image_buffer_count ) {
2017-11-25 04:37:50 +08:00
// last_write_index only has this value on startup before capturing anything.
2017-11-14 01:14:57 +08:00
return 0.0 ;
2016-04-29 20:57:31 +08:00
}
2017-12-01 05:10:30 +08:00
Debug ( 2 , " index1(%d) " , index1 ) ;
2017-11-14 01:14:57 +08:00
ZMPacket * snap1 = & image_buffer [ index1 ] ;
2017-11-22 08:55:40 +08:00
if ( ! snap1 - > timestamp - > tv_sec ) {
2017-11-25 04:37:50 +08:00
// This should be impossible
2018-01-19 00:39:33 +08:00
Warning ( " Impossible situation. No timestamp on captured image " ) ;
2017-11-14 01:14:57 +08:00
return 0.0 ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
struct timeval time1 = * snap1 - > timestamp ;
2016-04-29 20:57:31 +08:00
2017-12-02 03:33:51 +08:00
int fps_image_count = image_buffer_count ;
2017-11-18 03:30:38 +08:00
2016-04-29 20:57:31 +08:00
int index2 = ( index1 + 1 ) % image_buffer_count ;
2017-12-01 05:10:30 +08:00
Debug ( 2 , " index2(%d) " , index2 ) ;
2017-11-28 00:28:36 +08:00
ZMPacket * snap2 = & image_buffer [ index2 ] ;
2017-11-25 04:37:50 +08:00
// the timestamp pointers are initialized on connection, so that's redundant
// tv_sec is probably only zero during the first loop of capturing, so this basically just counts the unused images.
2018-01-19 00:39:33 +08:00
// The problem is that there is no locking, and we set the timestamp before we set last_write_index,
// so there is a small window where the next image can have a timestamp in the future
2018-01-19 02:44:26 +08:00
while ( ! snap2 - > timestamp - > tv_sec | | tvDiffSec ( * snap2 - > timestamp , * snap1 - > timestamp ) < 0 ) {
2016-06-22 02:02:36 +08:00
if ( index1 = = index2 ) {
2018-01-19 00:39:33 +08:00
// All images are uncaptured
2017-11-14 01:14:57 +08:00
return 0.0 ;
2016-04-29 20:57:31 +08:00
}
index2 = ( index2 + 1 ) % image_buffer_count ;
2017-11-22 08:55:40 +08:00
snap2 = & image_buffer [ index2 ] ;
2017-12-02 03:33:51 +08:00
fps_image_count - - ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
struct timeval time2 = * snap2 - > timestamp ;
2016-04-29 20:57:31 +08:00
double time_diff = tvDiffSec ( time2 , time1 ) ;
2017-11-18 03:30:38 +08:00
if ( ! time_diff ) {
return 0.0 ;
}
2017-12-02 03:33:51 +08:00
double curr_fps = fps_image_count / time_diff ;
2016-04-29 20:57:31 +08:00
2016-06-22 02:02:36 +08:00
if ( curr_fps < 0.0 ) {
2017-12-02 03:33:51 +08:00
Error ( " Negative FPS %f, time_diff = %lf (%d:%ld.%ld - %d:%ld.%ld), ibc: %d " ,
curr_fps , time_diff , index2 , time2 . tv_sec , time2 . tv_usec , index1 , time1 . tv_sec , time1 . tv_usec , image_buffer_count ) ;
2017-11-14 01:14:57 +08:00
return 0.0 ;
2017-12-13 03:37:02 +08:00
} else {
Debug ( 2 , " GetFPS %f, time_diff = %lf (%d:%ld.%ld - %d:%ld.%ld), ibc: %d " , curr_fps , time_diff , index2 , time2 . tv_sec , time2 . tv_usec , index1 , time1 . tv_sec , time1 . tv_usec , image_buffer_count ) ;
2016-04-29 20:57:31 +08:00
}
2017-11-14 01:14:57 +08:00
return curr_fps ;
2003-03-26 19:57:29 +08:00
}
2016-06-22 02:02:36 +08:00
useconds_t Monitor : : GetAnalysisRate ( ) {
2017-11-22 08:55:40 +08:00
capture_fps = GetFPS ( ) ;
if ( ! analysis_fps_limit ) {
2017-11-28 03:57:24 +08:00
return 0 ;
2017-11-22 08:55:40 +08:00
} else if ( analysis_fps_limit > capture_fps ) {
Warning ( " Analysis fps (%.2f) is greater than capturing fps (%.2f) " , analysis_fps_limit , capture_fps ) ;
2017-11-28 03:57:24 +08:00
return 0 ;
2016-06-22 02:02:36 +08:00
} else {
2017-11-22 08:55:40 +08:00
return ( ( 1000000 / analysis_fps_limit ) - ( 1000000 / capture_fps ) ) ;
2016-04-29 20:57:31 +08:00
}
2015-07-24 04:36:30 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : UpdateAdaptiveSkip ( ) {
if ( config . opt_adaptive_skip ) {
2016-04-29 20:57:31 +08:00
double capturing_fps = GetFPS ( ) ;
2016-06-22 02:02:36 +08:00
if ( adaptive_skip & & analysis_fps & & ( analysis_fps < capturing_fps ) ) {
2016-04-29 20:57:31 +08:00
Info ( " Analysis fps (%.2f) is lower than capturing fps (%.2f), disabling adaptive skip feature " , analysis_fps , capturing_fps ) ;
adaptive_skip = false ;
2016-06-22 02:02:36 +08:00
} else if ( ! adaptive_skip & & ( ! analysis_fps | | ( analysis_fps > = capturing_fps ) ) ) {
2016-04-29 20:57:31 +08:00
Info ( " Enabling adaptive skip feature " ) ;
adaptive_skip = true ;
}
2016-06-22 02:02:36 +08:00
} else {
2016-04-29 20:57:31 +08:00
adaptive_skip = false ;
}
2015-07-24 04:36:30 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : ForceAlarmOn ( int force_score , const char * force_cause , const char * force_text ) {
2016-04-29 20:57:31 +08:00
trigger_data - > trigger_state = TRIGGER_ON ;
trigger_data - > trigger_score = force_score ;
2017-12-13 02:42:48 +08:00
strncpy ( trigger_data - > trigger_cause , force_cause , sizeof ( trigger_data - > trigger_cause ) - 1 ) ;
strncpy ( trigger_data - > trigger_text , force_text , sizeof ( trigger_data - > trigger_text ) - 1 ) ;
2003-03-26 19:57:29 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : ForceAlarmOff ( ) {
2016-04-29 20:57:31 +08:00
trigger_data - > trigger_state = TRIGGER_OFF ;
2003-03-26 21:18:26 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : CancelForced ( ) {
2016-04-29 20:57:31 +08:00
trigger_data - > trigger_state = TRIGGER_CANCEL ;
2003-03-26 19:57:29 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : actionReload ( ) {
2016-04-29 20:57:31 +08:00
shared_data - > action | = RELOAD ;
2005-12-23 00:46:25 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : actionEnable ( ) {
2016-04-29 20:57:31 +08:00
shared_data - > action | = RELOAD ;
static char sql [ ZM_SQL_SML_BUFSIZ ] ;
2017-11-22 08:55:40 +08:00
snprintf ( sql , sizeof ( sql ) , " update Monitors set Enabled = 1 where Id='%d' " , id ) ;
2016-06-22 02:02:36 +08:00
if ( mysql_query ( & dbconn , sql ) ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't run query: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
2005-12-23 00:46:25 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : actionDisable ( ) {
2016-04-29 20:57:31 +08:00
shared_data - > action | = RELOAD ;
static char sql [ ZM_SQL_SML_BUFSIZ ] ;
2017-11-22 08:55:40 +08:00
snprintf ( sql , sizeof ( sql ) , " update Monitors set Enabled = 0 where Id='%d' " , id ) ;
2016-06-22 02:02:36 +08:00
if ( mysql_query ( & dbconn , sql ) ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't run query: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
2005-12-23 00:46:25 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : actionSuspend ( ) {
2016-04-29 20:57:31 +08:00
shared_data - > action | = SUSPEND ;
2005-02-24 18:43:29 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : actionResume ( ) {
2016-04-29 20:57:31 +08:00
shared_data - > action | = RESUME ;
2005-02-24 18:43:29 +08:00
}
2016-06-22 02:02:36 +08:00
int Monitor : : actionBrightness ( int p_brightness ) {
if ( purpose ! = CAPTURE ) {
if ( p_brightness > = 0 ) {
2016-04-29 20:57:31 +08:00
shared_data - > brightness = p_brightness ;
shared_data - > action | = SET_SETTINGS ;
int wait_loops = 10 ;
2016-06-22 02:02:36 +08:00
while ( shared_data - > action & SET_SETTINGS ) {
2016-12-09 00:49:54 +08:00
if ( wait_loops - - ) {
2016-04-29 20:57:31 +08:00
usleep ( 100000 ) ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
Warning ( " Timed out waiting to set brightness " ) ;
return ( - 1 ) ;
}
}
2016-06-22 02:02:36 +08:00
} else {
2016-04-29 20:57:31 +08:00
shared_data - > action | = GET_SETTINGS ;
int wait_loops = 10 ;
2016-06-22 02:02:36 +08:00
while ( shared_data - > action & GET_SETTINGS ) {
2016-12-09 00:49:54 +08:00
if ( wait_loops - - ) {
2016-04-29 20:57:31 +08:00
usleep ( 100000 ) ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
Warning ( " Timed out waiting to get brightness " ) ;
return ( - 1 ) ;
}
}
}
return ( shared_data - > brightness ) ;
}
return ( camera - > Brightness ( p_brightness ) ) ;
2003-06-25 17:47:09 +08:00
}
2016-06-22 02:02:36 +08:00
int Monitor : : actionContrast ( int p_contrast ) {
if ( purpose ! = CAPTURE ) {
if ( p_contrast > = 0 ) {
2016-04-29 20:57:31 +08:00
shared_data - > contrast = p_contrast ;
shared_data - > action | = SET_SETTINGS ;
int wait_loops = 10 ;
2016-06-22 02:02:36 +08:00
while ( shared_data - > action & SET_SETTINGS ) {
2016-12-09 00:49:54 +08:00
if ( wait_loops - - ) {
2016-04-29 20:57:31 +08:00
usleep ( 100000 ) ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
Warning ( " Timed out waiting to set contrast " ) ;
return ( - 1 ) ;
}
}
2016-06-22 02:02:36 +08:00
} else {
2016-04-29 20:57:31 +08:00
shared_data - > action | = GET_SETTINGS ;
int wait_loops = 10 ;
2016-06-22 02:02:36 +08:00
while ( shared_data - > action & GET_SETTINGS ) {
2016-12-09 00:49:54 +08:00
if ( wait_loops - - ) {
2016-04-29 20:57:31 +08:00
usleep ( 100000 ) ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
Warning ( " Timed out waiting to get contrast " ) ;
return ( - 1 ) ;
}
}
}
return ( shared_data - > contrast ) ;
}
return ( camera - > Contrast ( p_contrast ) ) ;
2003-06-25 17:47:09 +08:00
}
2016-06-22 02:02:36 +08:00
int Monitor : : actionHue ( int p_hue ) {
if ( purpose ! = CAPTURE ) {
if ( p_hue > = 0 ) {
2016-04-29 20:57:31 +08:00
shared_data - > hue = p_hue ;
shared_data - > action | = SET_SETTINGS ;
int wait_loops = 10 ;
2016-06-22 02:02:36 +08:00
while ( shared_data - > action & SET_SETTINGS ) {
2016-12-09 00:49:54 +08:00
if ( wait_loops - - ) {
2016-04-29 20:57:31 +08:00
usleep ( 100000 ) ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
Warning ( " Timed out waiting to set hue " ) ;
return ( - 1 ) ;
}
}
2016-06-22 02:02:36 +08:00
} else {
2016-04-29 20:57:31 +08:00
shared_data - > action | = GET_SETTINGS ;
int wait_loops = 10 ;
2016-06-22 02:02:36 +08:00
while ( shared_data - > action & GET_SETTINGS ) {
2016-12-09 00:49:54 +08:00
if ( wait_loops - - ) {
2016-04-29 20:57:31 +08:00
usleep ( 100000 ) ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
Warning ( " Timed out waiting to get hue " ) ;
return ( - 1 ) ;
}
}
}
return ( shared_data - > hue ) ;
}
return ( camera - > Hue ( p_hue ) ) ;
2003-06-25 17:47:09 +08:00
}
2016-06-22 02:02:36 +08:00
int Monitor : : actionColour ( int p_colour ) {
if ( purpose ! = CAPTURE ) {
if ( p_colour > = 0 ) {
2016-04-29 20:57:31 +08:00
shared_data - > colour = p_colour ;
shared_data - > action | = SET_SETTINGS ;
int wait_loops = 10 ;
2016-06-22 02:02:36 +08:00
while ( shared_data - > action & SET_SETTINGS ) {
2016-12-09 00:49:54 +08:00
if ( wait_loops - - ) {
2016-04-29 20:57:31 +08:00
usleep ( 100000 ) ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
Warning ( " Timed out waiting to set colour " ) ;
return ( - 1 ) ;
}
}
2016-06-22 02:02:36 +08:00
} else {
2016-04-29 20:57:31 +08:00
shared_data - > action | = GET_SETTINGS ;
int wait_loops = 10 ;
2016-06-22 02:02:36 +08:00
while ( shared_data - > action & GET_SETTINGS ) {
2016-12-09 00:49:54 +08:00
if ( wait_loops - - ) {
2016-04-29 20:57:31 +08:00
usleep ( 100000 ) ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
Warning ( " Timed out waiting to get colour " ) ;
return ( - 1 ) ;
}
}
}
return ( shared_data - > colour ) ;
}
return ( camera - > Colour ( p_colour ) ) ;
2003-06-25 17:47:09 +08:00
}
2016-04-01 02:02:56 +08:00
void Monitor : : DumpZoneImage ( const char * zone_string ) {
2016-04-29 20:57:31 +08:00
int exclude_id = 0 ;
int extra_colour = 0 ;
Polygon extra_zone ;
2016-06-22 02:02:36 +08:00
if ( zone_string ) {
if ( ! Zone : : ParseZoneString ( zone_string , exclude_id , extra_colour , extra_zone ) ) {
2016-04-29 20:57:31 +08:00
Error ( " Failed to parse zone string, ignoring " ) ;
}
}
Image * zone_image = NULL ;
if ( ( ( ! staticConfig . SERVER_ID ) | | ( staticConfig . SERVER_ID = = server_id ) ) & & mem_ptr ) {
Debug ( 3 , " Trying to load from local zmc " ) ;
int index = shared_data - > last_write_index ;
2017-11-22 08:55:40 +08:00
ZMPacket * snap = getSnapshot ( index ) ;
2016-04-29 20:57:31 +08:00
zone_image = new Image ( * snap - > image ) ;
} else {
Debug ( 3 , " Trying to load from event " ) ;
// Grab the most revent event image
std : : string sql = stringtf ( " SELECT MAX(Id) FROM Events WHERE MonitorId=%d AND Frames > 0 " , id ) ;
zmDbRow eventid_row ;
if ( eventid_row . fetch ( sql . c_str ( ) ) ) {
int event_id = atoi ( eventid_row [ 0 ] ) ;
Debug ( 3 , " Got event %d " , event_id ) ;
EventStream * stream = new EventStream ( ) ;
stream - > setStreamStart ( event_id , ( unsigned int ) 1 ) ;
zone_image = stream - > getImage ( ) ;
} else {
Error ( " Unable to load an event for monitor %d " , id ) ;
return ;
}
}
if ( zone_image - > Colours ( ) = = ZM_COLOUR_GRAY8 ) {
zone_image - > Colourise ( ZM_COLOUR_RGB24 , ZM_SUBPIX_ORDER_RGB ) ;
}
2016-06-22 02:02:36 +08:00
for ( int i = 0 ; i < n_zones ; i + + ) {
2016-04-29 20:57:31 +08:00
if ( exclude_id & & ( ! extra_colour | | extra_zone . getNumCoords ( ) ) & & zones [ i ] - > Id ( ) = = exclude_id )
continue ;
Rgb colour ;
2016-06-22 02:02:36 +08:00
if ( exclude_id & & ! extra_zone . getNumCoords ( ) & & zones [ i ] - > Id ( ) = = exclude_id ) {
2016-04-29 20:57:31 +08:00
colour = extra_colour ;
2016-06-22 02:02:36 +08:00
} else {
if ( zones [ i ] - > IsActive ( ) ) {
2016-04-29 20:57:31 +08:00
colour = RGB_RED ;
2016-06-22 02:02:36 +08:00
} else if ( zones [ i ] - > IsInclusive ( ) ) {
2016-04-29 20:57:31 +08:00
colour = RGB_ORANGE ;
2016-06-22 02:02:36 +08:00
} else if ( zones [ i ] - > IsExclusive ( ) ) {
2016-04-29 20:57:31 +08:00
colour = RGB_PURPLE ;
2016-06-22 02:02:36 +08:00
} else if ( zones [ i ] - > IsPreclusive ( ) ) {
2016-04-29 20:57:31 +08:00
colour = RGB_BLUE ;
2016-06-22 02:02:36 +08:00
} else {
2016-04-29 20:57:31 +08:00
colour = RGB_WHITE ;
}
}
zone_image - > Fill ( colour , 2 , zones [ i ] - > GetPolygon ( ) ) ;
zone_image - > Outline ( colour , zones [ i ] - > GetPolygon ( ) ) ;
}
2016-06-22 02:02:36 +08:00
if ( extra_zone . getNumCoords ( ) ) {
2016-04-29 20:57:31 +08:00
zone_image - > Fill ( extra_colour , 2 , extra_zone ) ;
zone_image - > Outline ( extra_colour , extra_zone ) ;
}
static char filename [ PATH_MAX ] ;
snprintf ( filename , sizeof ( filename ) , " Zones%d.jpg " , id ) ;
zone_image - > WriteJpeg ( filename ) ;
delete zone_image ;
2003-03-26 19:57:29 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : DumpImage ( Image * dump_image ) const {
if ( image_count & & ! ( image_count % 10 ) ) {
2016-04-29 20:57:31 +08:00
static char filename [ PATH_MAX ] ;
static char new_filename [ PATH_MAX ] ;
snprintf ( filename , sizeof ( filename ) , " Monitor%d.jpg " , id ) ;
snprintf ( new_filename , sizeof ( new_filename ) , " Monitor%d-new.jpg " , id ) ;
2017-12-13 02:39:36 +08:00
if ( dump_image - > WriteJpeg ( new_filename ) )
rename ( new_filename , filename ) ;
2016-04-29 20:57:31 +08:00
}
2003-03-26 19:57:29 +08:00
}
2016-06-22 02:02:36 +08:00
bool Monitor : : CheckSignal ( const Image * image ) {
2016-04-29 20:57:31 +08:00
static bool static_undef = true ;
/* RGB24 colors */
static uint8_t red_val ;
static uint8_t green_val ;
static uint8_t blue_val ;
static uint8_t grayscale_val ; /* 8bit grayscale color */
static Rgb colour_val ; /* RGB32 color */
static int usedsubpixorder ;
2016-06-22 02:02:36 +08:00
if ( config . signal_check_points > 0 ) {
if ( static_undef ) {
2016-04-29 20:57:31 +08:00
static_undef = false ;
usedsubpixorder = camera - > SubpixelOrder ( ) ;
colour_val = rgb_convert ( signal_check_colour , ZM_SUBPIX_ORDER_BGR ) ; /* HTML colour code is actually BGR in memory, we want RGB */
colour_val = rgb_convert ( colour_val , usedsubpixorder ) ;
red_val = RED_VAL_BGRA ( signal_check_colour ) ;
green_val = GREEN_VAL_BGRA ( signal_check_colour ) ;
blue_val = BLUE_VAL_BGRA ( signal_check_colour ) ;
grayscale_val = signal_check_colour & 0xff ; /* Clear all bytes but lowest byte */
}
const uint8_t * buffer = image - > Buffer ( ) ;
int pixels = image - > Pixels ( ) ;
int width = image - > Width ( ) ;
int colours = image - > Colours ( ) ;
int index = 0 ;
2016-06-22 02:02:36 +08:00
for ( int i = 0 ; i < config . signal_check_points ; i + + ) {
while ( true ) {
2016-04-29 20:57:31 +08:00
index = ( int ) ( ( ( long long ) rand ( ) * ( long long ) ( pixels - 1 ) ) / RAND_MAX ) ;
if ( ! config . timestamp_on_capture | | ! label_format [ 0 ] )
break ;
// Avoid sampling the rows with timestamp in
if ( index < ( label_coord . Y ( ) * width ) | | index > = ( label_coord . Y ( ) + Image : : LINE_HEIGHT ) * width )
break ;
}
2016-06-22 02:02:36 +08:00
if ( colours = = ZM_COLOUR_GRAY8 ) {
if ( * ( buffer + index ) ! = grayscale_val )
2016-04-29 20:57:31 +08:00
return true ;
2016-06-22 02:02:36 +08:00
} else if ( colours = = ZM_COLOUR_RGB24 ) {
const uint8_t * ptr = buffer + ( index * colours ) ;
if ( usedsubpixorder = = ZM_SUBPIX_ORDER_BGR ) {
if ( ( RED_PTR_BGRA ( ptr ) ! = red_val ) | | ( GREEN_PTR_BGRA ( ptr ) ! = green_val ) | | ( BLUE_PTR_BGRA ( ptr ) ! = blue_val ) )
return true ;
} else {
/* Assume RGB */
if ( ( RED_PTR_RGBA ( ptr ) ! = red_val ) | | ( GREEN_PTR_RGBA ( ptr ) ! = green_val ) | | ( BLUE_PTR_RGBA ( ptr ) ! = blue_val ) )
return true ;
}
2017-10-28 11:36:49 +08:00
} else if ( colours = = ZM_COLOUR_RGB32 ) {
2016-06-22 02:02:36 +08:00
if ( usedsubpixorder = = ZM_SUBPIX_ORDER_ARGB | | usedsubpixorder = = ZM_SUBPIX_ORDER_ABGR ) {
if ( ARGB_ABGR_ZEROALPHA ( * ( ( ( const Rgb * ) buffer ) + index ) ) ! = ARGB_ABGR_ZEROALPHA ( colour_val ) )
return true ;
} else {
/* Assume RGBA or BGRA */
if ( RGBA_BGRA_ZEROALPHA ( * ( ( ( const Rgb * ) buffer ) + index ) ) ! = RGBA_BGRA_ZEROALPHA ( colour_val ) )
return true ;
}
2016-04-29 20:57:31 +08:00
}
}
return ( false ) ;
}
return ( true ) ;
2006-01-15 06:47:02 +08:00
}
2017-11-21 00:48:56 +08:00
void Monitor : : CheckAction ( ) {
2017-11-22 08:55:40 +08:00
struct timeval now ;
gettimeofday ( & now , NULL ) ;
2017-11-21 00:48:56 +08:00
if ( shared_data - > action ) {
// Can there be more than 1 bit set in the action? Shouldn't these be elseifs?
if ( shared_data - > action & RELOAD ) {
Info ( " Received reload indication at count %d " , image_count ) ;
shared_data - > action & = ~ RELOAD ;
Reload ( ) ;
}
if ( shared_data - > action & SUSPEND ) {
if ( Active ( ) ) {
Info ( " Received suspend indication at count %d " , image_count ) ;
shared_data - > active = false ;
//closeEvent();
} else {
Info ( " Received suspend indication at count %d, but wasn't active " , image_count ) ;
}
if ( config . max_suspend_time ) {
auto_resume_time = now . tv_sec + config . max_suspend_time ;
}
shared_data - > action & = ~ SUSPEND ;
} else if ( shared_data - > action & RESUME ) {
if ( Enabled ( ) & & ! Active ( ) ) {
Info ( " Received resume indication at count %d " , image_count ) ;
shared_data - > active = true ;
ref_image = * ( image_buffer [ shared_data - > last_write_index ] . image ) ;
ready_count = image_count + ( warmup_count / 2 ) ;
shared_data - > alarm_x = shared_data - > alarm_y = - 1 ;
}
shared_data - > action & = ~ RESUME ;
}
} // end if shared_data->action
2017-11-22 08:55:40 +08:00
if ( auto_resume_time & & ( now . tv_sec > = auto_resume_time ) ) {
Info ( " Auto resuming at count %d " , image_count ) ;
shared_data - > active = true ;
ref_image = * ( image_buffer [ shared_data - > last_write_index ] . image ) ;
ready_count = image_count + ( warmup_count / 2 ) ;
auto_resume_time = 0 ;
2017-11-21 00:48:56 +08:00
}
2017-11-22 08:55:40 +08:00
}
2017-11-21 00:48:56 +08:00
2017-11-22 08:55:40 +08:00
void Monitor : : UpdateAnalysisFPS ( ) {
2016-04-29 20:57:31 +08:00
struct timeval now ;
gettimeofday ( & now , NULL ) ;
2017-11-14 03:35:47 +08:00
if ( analysis_image_count & & fps_report_interval & & ! ( analysis_image_count % fps_report_interval ) ) {
2018-02-06 23:34:17 +08:00
double new_analysis_fps = double ( fps_report_interval ) / ( now . tv_sec - last_analysis_fps_time ) ;
Info ( " %s: %d - Analysing at %.2f fps " , name , image_count , new_analysis_fps ) ;
if ( new_analysis_fps ! = analysis_fps ) {
analysis_fps = new_analysis_fps ;
2016-04-29 20:57:31 +08:00
2018-02-06 23:34:17 +08:00
static char sql [ ZM_SQL_SML_BUFSIZ ] ;
snprintf ( sql , sizeof ( sql ) , " INSERT INTO Monitor_Status (MonitorId,AnalysisFPS) VALUES (%d, %.2lf) ON DUPLICATE KEY UPDATE AnalysisFPS = %.2lf " , id , analysis_fps , analysis_fps ) ;
if ( mysql_query ( & dbconn , sql ) ) {
Error ( " Can't run query: %s " , mysql_error ( & dbconn ) ) ;
}
2017-10-25 07:08:31 +08:00
}
2017-11-14 03:35:47 +08:00
last_analysis_fps_time = now . tv_sec ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
}
2016-04-29 20:57:31 +08:00
2017-11-22 08:55:40 +08:00
// Would be nice if this JUST did analysis
// This idea is that we should be analysing as close to the capture frame as possible.
// This function should process as much as possible before returning
//
// If there is an event, the we should do our best to empty the queue.
// If there isn't then we keep pre-event + alarm frames. = pre_event_count
bool Monitor : : Analyse ( ) {
// last_write_index is the last capture
// last_read_index is the last analysis
if ( ! Enabled ( ) ) {
Warning ( " SHouldn't be doing Analyze when not Enabled " ) ;
2017-11-18 03:30:38 +08:00
return false ;
}
2017-12-09 02:46:02 +08:00
// if have event, send frames until we find a video packet, at which point do analysis. Adaptive skip should only affect which frames we do analysis on.
2016-04-29 20:57:31 +08:00
2017-11-28 21:29:03 +08:00
int packets_processed = 0 ;
2017-12-01 03:37:36 +08:00
ZMPacket * snap ;
2017-12-09 02:46:02 +08:00
// Is it possible for snap->score to be ! -1?
2017-12-01 20:26:34 +08:00
while ( ( snap = packetqueue - > get_analysis_packet ( ) ) & & ( snap - > score = = - 1 ) ) {
2017-12-04 00:09:01 +08:00
snap - > lock ( ) ;
2017-12-02 07:42:19 +08:00
unsigned int index = snap - > image_index ;
2017-12-01 03:37:36 +08:00
Debug ( 2 , " Analysis index (%d), last_Write(%d) " , index , shared_data - > last_write_index ) ;
2017-11-28 21:29:03 +08:00
packets_processed + = 1 ;
2017-11-22 08:55:40 +08:00
struct timeval * timestamp = snap - > timestamp ;
Image * snap_image = snap - > image ;
2017-11-28 03:57:24 +08:00
if ( snap - > image_index = = - 1 ) {
2017-12-04 00:09:01 +08:00
snap - > unlock ( ) ;
2017-11-28 03:57:24 +08:00
Debug ( 2 , " skipping because audio " ) ;
2017-12-01 20:26:34 +08:00
if ( ! packetqueue - > increment_analysis_it ( ) ) {
2017-12-01 03:37:36 +08:00
Debug ( 2 , " No more packets to analyse " ) ;
2017-12-01 11:18:33 +08:00
return false ;
2017-12-01 03:37:36 +08:00
}
2017-11-28 03:57:24 +08:00
continue ;
}
2017-11-22 08:55:40 +08:00
// signal is set by capture
bool signal = shared_data - > signal ;
bool signal_change = ( signal ! = last_signal ) ;
Debug ( 3 , " Motion detection is enabled signal(%d) signal_change(%d) " , signal , signal_change ) ;
// if we have been told to be OFF, then we are off and don't do any processing.
if ( trigger_data - > trigger_state ! = TRIGGER_OFF ) {
Debug ( 4 , " Trigger not oFF state is (%d) " , trigger_data - > trigger_state ) ;
unsigned int score = 0 ;
// Ready means that we have captured the warmpup # of frames
if ( Ready ( ) ) {
Debug ( 4 , " Ready " ) ;
std : : string cause ;
Event : : StringSetMap noteSetMap ;
// Specifically told to be on. Setting the score here will trigger the alarm.
if ( trigger_data - > trigger_state = = TRIGGER_ON ) {
score + = trigger_data - > trigger_score ;
2016-06-22 02:02:36 +08:00
if ( ! event ) {
2016-04-29 20:57:31 +08:00
if ( cause . length ( ) )
cause + = " , " ;
2017-11-22 08:55:40 +08:00
cause + = trigger_data - > trigger_cause ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
Event : : StringSet noteSet ;
noteSet . insert ( trigger_data - > trigger_text ) ;
noteSetMap [ trigger_data - > trigger_cause ] = noteSet ;
} // end if trigger_on
if ( signal_change ) {
const char * signalText ;
if ( ! signal ) {
signalText = " Lost " ;
if ( event ) {
2017-12-02 03:33:51 +08:00
Info ( " %s: %03d - Closing event %d, signal loss " , name , analysis_image_count , event - > Id ( ) ) ;
2017-11-22 08:55:40 +08:00
closeEvent ( ) ;
last_section_mod = 0 ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
} else {
signalText = " Reacquired " ;
score + = 100 ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
Warning ( " %s: %s " , SIGNAL_CAUSE , signalText ) ;
if ( ! event ) {
if ( cause . length ( ) )
cause + = " , " ;
cause + = SIGNAL_CAUSE ;
}
Event : : StringSet noteSet ;
noteSet . insert ( signalText ) ;
noteSetMap [ SIGNAL_CAUSE ] = noteSet ;
shared_data - > state = state = IDLE ;
shared_data - > active = signal ;
ref_image = * snap_image ;
2017-11-28 03:57:24 +08:00
} // else
if ( signal ) {
2017-11-22 08:55:40 +08:00
if ( Active ( ) & & ( function = = MODECT | | function = = MOCORD ) ) {
Debug ( 3 , " signal and active and modect " ) ;
Event : : StringSet zoneSet ;
int motion_score = last_motion_score ;
if ( ! ( analysis_image_count % ( motion_frame_skip + 1 ) ) ) {
// Get new score.
Debug ( 3 , " before DetectMotion " ) ;
motion_score = DetectMotion ( * snap_image , zoneSet ) ;
Debug ( 3 , " After motion detection, last_motion_score(%d), new motion score(%d) " , last_motion_score , motion_score ) ;
// Why are we updating the last_motion_score too?
last_motion_score = motion_score ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
if ( motion_score ) {
score + = motion_score ;
if ( ! event ) {
if ( cause . length ( ) )
cause + = " , " ;
cause + = MOTION_CAUSE ;
}
noteSetMap [ MOTION_CAUSE ] = zoneSet ;
} // end if motion_score
shared_data - > active = signal ;
2017-11-21 00:48:56 +08:00
}
2016-04-29 20:57:31 +08:00
2017-11-22 08:55:40 +08:00
// If we aren't recording, check linked monitors to see if we should be.
if ( n_linked_monitors > 0 ) {
Event : : StringSet noteSet ;
for ( int i = 0 ; i < n_linked_monitors ; i + + ) {
if ( ! linked_monitors [ i ] - > isConnected ( ) )
linked_monitors [ i ] - > connect ( ) ;
if ( linked_monitors [ i ] - > isConnected ( ) & & linked_monitors [ i ] - > hasAlarmed ( ) ) {
if ( ! event ) {
if ( cause . length ( ) )
cause + = " , " ;
cause + = LINKED_CAUSE ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
noteSet . insert ( linked_monitors [ i ] - > Name ( ) ) ;
score + = 50 ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
} // end foreach linked_monitor
if ( noteSet . size ( ) > 0 )
noteSetMap [ LINKED_CAUSE ] = noteSet ;
} // end if linked_monitors
if ( function = = RECORD | | function = = MOCORD ) {
// If doing record, check to see if we need to close the event or not.
if ( event ) {
if ( section_length ) {
// TODO: Wouldn't this be clearer if we just did something like if now - event->start > section_length ?
int section_mod = timestamp - > tv_sec % section_length ;
2017-12-01 03:37:36 +08:00
Debug ( 3 , " Section length (%d) Last Section Mod(%d), tv_sec(%d) new section mod(%d) " , section_length , last_section_mod , timestamp - > tv_sec , section_mod ) ;
2017-11-22 08:55:40 +08:00
// This is not clear, but basically due to pauses, etc we might not get section_mod == 0
2017-12-19 02:39:08 +08:00
if ( ( section_mod < last_section_mod ) & & ( timestamp - > tv_sec > = 10 ) ) {
2017-12-02 03:33:51 +08:00
Info ( " %s: %03d - Closing event %d, section end forced " , name , analysis_image_count , event - > Id ( ) ) ;
2017-11-22 08:55:40 +08:00
closeEvent ( ) ;
last_section_mod = 0 ;
2016-12-09 00:49:54 +08:00
} else {
2017-11-22 08:55:40 +08:00
last_section_mod = section_mod ;
2017-05-17 00:04:56 +08:00
}
2017-11-22 08:55:40 +08:00
} // end if section_length
} // end if event
2016-04-04 22:11:48 +08:00
2017-11-22 08:55:40 +08:00
if ( ! event ) {
// Create event
event = new Event ( this , * timestamp , " Continuous " , noteSetMap ) ;
shared_data - > last_event_id = event - > Id ( ) ;
video_store_data - > recording = event - > StartTime ( ) ;
2017-12-02 03:33:51 +08:00
Info ( " %s: %03d - Opening new event %d, section start " , name , analysis_image_count , event - > Id ( ) ) ;
2017-11-22 08:55:40 +08:00
/* To prevent cancelling out an existing alert\prealarm\alarm state */
if ( state = = IDLE ) {
shared_data - > state = state = TAPE ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
} // end if ! event
} // end if RECORDING
if ( score ) {
Debug ( 9 , " Score: (%d) " , score ) ;
2017-12-19 02:39:08 +08:00
if ( state = = IDLE | | state = = TAPE | | state = = PREALARM ) {
2017-12-17 06:07:53 +08:00
if ( Event : : PreAlarmCount ( ) > = ( alarm_frame_count - 1 ) ) {
Info ( " %s: %03d - Gone into alarm state " , name , analysis_image_count ) ;
shared_data - > state = state = ALARM ;
if ( ! event ) {
event = new Event ( this , * timestamp , cause , noteSetMap ) ;
shared_data - > last_event_id = event - > Id ( ) ;
}
} else if ( state ! = PREALARM ) {
Info ( " %s: %03d - Gone into prealarm state " , name , analysis_image_count ) ;
shared_data - > state = state = PREALARM ;
2017-11-22 08:55:40 +08:00
}
2017-12-17 06:07:53 +08:00
} else if ( state = = ALERT ) {
Info ( " %s: %03d - Gone back into alarm state " , name , analysis_image_count ) ;
shared_data - > state = state = ALARM ;
2016-04-29 20:57:31 +08:00
}
2017-12-02 03:33:51 +08:00
last_alarm_count = analysis_image_count ;
2017-11-22 08:55:40 +08:00
} else { // no score?
if ( state = = ALARM ) {
2017-12-02 03:33:51 +08:00
Info ( " %s: %03d - Gone into alert state " , name , analysis_image_count ) ;
2017-11-22 08:55:40 +08:00
shared_data - > state = state = ALERT ;
} else if ( state = = ALERT ) {
2017-12-02 03:33:51 +08:00
if ( analysis_image_count - last_alarm_count > post_event_count ) {
Info ( " %s: %03d - Left alarm state (%d) - %d(%d) images " , name , analysis_image_count , event - > Id ( ) , event - > Frames ( ) , event - > AlarmFrames ( ) ) ;
2017-11-22 08:55:40 +08:00
//if ( function != MOCORD || event_close_mode == CLOSE_ALARM || event->Cause() == SIGNAL_CAUSE )
2017-12-17 06:07:53 +08:00
if ( ( function ! = RECORD & & function ! = MOCORD ) | | event_close_mode = = CLOSE_ALARM ) {
2017-11-22 08:55:40 +08:00
shared_data - > state = state = IDLE ;
2017-12-02 03:33:51 +08:00
Info ( " %s: %03d - Closing event %d, alarm end%s " , name , analysis_image_count , event - > Id ( ) , ( function = = MOCORD ) ? " , section truncated " : " " ) ;
2017-11-22 08:55:40 +08:00
closeEvent ( ) ;
} else {
shared_data - > state = state = TAPE ;
2016-04-29 20:57:31 +08:00
}
}
2017-11-22 08:55:40 +08:00
} else if ( state = = PREALARM ) {
// Back to IDLE
shared_data - > state = state = function ! = MOCORD ? IDLE : TAPE ;
2017-11-21 00:48:56 +08:00
}
2017-11-22 08:55:40 +08:00
if ( Event : : PreAlarmCount ( ) )
Event : : EmptyPreAlarmFrames ( ) ;
} // end if score or not
2017-12-01 03:37:36 +08:00
// Flag the packet so we don't analyse it again
snap - > score = score ;
2017-11-22 08:55:40 +08:00
if ( state = = PREALARM | | state = = ALARM ) {
if ( config . create_analysis_images ) {
bool got_anal_image = false ;
2017-11-28 04:43:06 +08:00
Image * anal_image = new Image ( * snap_image ) ;
//alarm_image.Assign( *snap_image );
2017-11-22 08:55:40 +08:00
for ( int i = 0 ; i < n_zones ; i + + ) {
if ( zones [ i ] - > Alarmed ( ) ) {
if ( zones [ i ] - > AlarmImage ( ) ) {
2017-11-28 04:43:06 +08:00
anal_image - > Overlay ( * ( zones [ i ] - > AlarmImage ( ) ) ) ;
2017-11-22 08:55:40 +08:00
got_anal_image = true ;
}
if ( config . record_event_stats | | state = = ALARM ) {
zones [ i ] - > RecordStats ( event ) ;
}
}
} // end foreach zone
if ( got_anal_image ) {
2017-12-01 20:26:34 +08:00
snap - > analysis_image = anal_image ;
2017-11-28 04:43:06 +08:00
} else {
delete anal_image ;
2017-11-22 08:55:40 +08:00
}
} else if ( config . record_event_stats & & state = = ALARM ) {
for ( int i = 0 ; i < n_zones ; i + + ) {
if ( zones [ i ] - > Alarmed ( ) ) {
2017-11-21 00:48:56 +08:00
zones [ i ] - > RecordStats ( event ) ;
}
2017-11-22 08:55:40 +08:00
} // end foreach zone
} // analsys_images or record stats
if ( noteSetMap . size ( ) > 0 )
event - > updateNotes ( noteSetMap ) ;
} else if ( state = = ALERT ) {
// Alert means this frame has no motion, but we were alarmed and are still recording.
if ( noteSetMap . size ( ) > 0 )
event - > updateNotes ( noteSetMap ) ;
} else if ( state = = TAPE ) {
2017-12-02 03:33:51 +08:00
if ( ! ( analysis_image_count % ( frame_skip + 1 ) ) ) {
2016-04-29 20:57:31 +08:00
}
}
2017-11-22 08:55:40 +08:00
if ( function = = MODECT | | function = = MOCORD ) {
ref_image . Blend ( * snap_image , ( state = = ALARM ? alarm_ref_blend_perc : ref_blend_perc ) ) ;
2017-11-21 00:48:56 +08:00
}
2017-11-22 08:55:40 +08:00
last_signal = signal ;
2017-11-28 03:57:24 +08:00
} // end if signal
2017-04-06 04:10:21 +08:00
2017-11-22 08:55:40 +08:00
} else {
Debug ( 3 , " Not ready? " ) ;
2017-12-04 00:09:01 +08:00
snap - > unlock ( ) ;
2017-12-02 03:33:51 +08:00
return false ;
2017-11-22 08:55:40 +08:00
}
2017-11-21 00:48:56 +08:00
} else {
2017-11-22 08:55:40 +08:00
Debug ( 3 , " trigger == off " ) ;
if ( event ) {
2017-12-02 03:33:51 +08:00
Info ( " %s: %03d - Closing event %d, trigger off " , name , analysis_image_count , event - > Id ( ) ) ;
2017-11-22 08:55:40 +08:00
closeEvent ( ) ;
}
shared_data - > state = state = IDLE ;
last_section_mod = 0 ;
} // end if ( trigger_data->trigger_state != TRIGGER_OFF )
2016-04-29 20:57:31 +08:00
2017-12-01 03:37:36 +08:00
if ( event ) {
2017-12-02 07:42:19 +08:00
int last_write = shared_data - > last_write_index ;
int written = 0 ;
2017-12-01 03:37:36 +08:00
ZMPacket * queued_packet ;
//popPacket will increment analysis_it if neccessary, so this will write out all packets in queue
2017-12-02 07:42:19 +08:00
// We can't just loop here forever, because we may be capturing just as fast, and never leave the loop.
// Only loop until we hit the analysis index
2017-12-01 20:26:34 +08:00
while ( ( queued_packet = packetqueue - > popPacket ( ) ) ) {
2017-12-09 02:46:02 +08:00
Debug ( 2 , " adding packet (%d) qp last_write_index(%d), written(%d) " , queued_packet - > image_index , last_write , written ) ;
2017-12-04 00:09:01 +08:00
if ( snap = = queued_packet ) {
event - > AddPacket ( queued_packet ) ;
2017-12-09 02:46:02 +08:00
// Pop may have already incrememented it
//packetqueue->increment_analysis_it();
2017-12-02 07:42:19 +08:00
break ;
2017-12-04 00:09:01 +08:00
} else {
queued_packet - > lock ( ) ;
2017-12-09 02:46:02 +08:00
Debug ( 2 , " adding packet (%d) qp last_write_index(%d), written(%d) " , queued_packet - > image_index , last_write , written ) ;
2017-12-04 00:09:01 +08:00
event - > AddPacket ( queued_packet ) ;
queued_packet - > unlock ( ) ;
2017-12-01 03:37:36 +08:00
}
2017-12-04 00:09:01 +08:00
written + + ;
2017-12-01 03:37:36 +08:00
if ( queued_packet - > image_index = = - 1 ) {
delete queued_packet ;
2017-12-04 00:09:01 +08:00
}
2017-12-02 07:42:19 +08:00
// encoding can take a long time, so
shared_data - > last_read_time = time ( NULL ) ;
2017-12-01 03:37:36 +08:00
} // end while write out queued_packets
2017-12-02 07:42:19 +08:00
queued_packet = NULL ;
2017-12-01 03:37:36 +08:00
} else {
2017-12-01 20:26:34 +08:00
packetqueue - > increment_analysis_it ( ) ;
2016-04-29 20:57:31 +08:00
}
2017-11-22 08:55:40 +08:00
shared_data - > last_read_index = snap - > image_index ;
2017-12-02 07:42:19 +08:00
shared_data - > last_read_time = time ( NULL ) ;
2017-11-28 03:57:24 +08:00
analysis_image_count + + ;
2017-12-04 00:09:01 +08:00
snap - > unlock ( ) ;
2017-11-22 08:55:40 +08:00
} // end while not at end of packetqueue
2017-12-01 03:37:36 +08:00
if ( packets_processed > 0 )
return true ;
return false ;
} // end Monitor::Analyze
2016-04-01 00:54:56 +08:00
2016-06-22 02:02:36 +08:00
void Monitor : : Reload ( ) {
2016-04-29 20:57:31 +08:00
Debug ( 1 , " Reloading monitor %s " , name ) ;
if ( event )
Info ( " %s: %03d - Closing event %d, reloading " , name , image_count , event - > Id ( ) ) ;
closeEvent ( ) ;
static char sql [ ZM_SQL_MED_BUFSIZ ] ;
// This seems to have fallen out of date.
2017-10-25 07:08:31 +08:00
snprintf ( sql , sizeof ( sql ) , " select Function+0, Enabled, LinkedMonitors, EventPrefix, LabelFormat, LabelX, LabelY, LabelSize, WarmupCount, PreEventCount, PostEventCount, AlarmFrameCount, SectionLength, FrameSkip, MotionFrameSkip, AnalysisFPSLimit, AnalysisUpdateDelay, MaxFPS, AlarmMaxFPS, FPSReportInterval, RefBlendPerc, AlarmRefBlendPerc, TrackMotion, SignalCheckColour from Monitors where Id = '%d' " , id ) ;
2016-04-29 20:57:31 +08:00
2016-06-22 02:02:36 +08:00
if ( mysql_query ( & dbconn , sql ) ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't run query: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
MYSQL_RES * result = mysql_store_result ( & dbconn ) ;
2016-06-22 02:02:36 +08:00
if ( ! result ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't use query result: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
int n_monitors = mysql_num_rows ( result ) ;
2016-06-22 02:02:36 +08:00
if ( n_monitors ! = 1 ) {
2016-04-29 20:57:31 +08:00
Error ( " Bogus number of monitors, %d, returned. Can't reload " , n_monitors ) ;
return ;
}
2016-06-22 02:02:36 +08:00
if ( MYSQL_ROW dbrow = mysql_fetch_row ( result ) ) {
2016-04-29 20:57:31 +08:00
int index = 0 ;
function = ( Function ) atoi ( dbrow [ index + + ] ) ;
enabled = atoi ( dbrow [ index + + ] ) ;
const char * p_linked_monitors = dbrow [ index + + ] ;
2018-01-17 00:08:35 +08:00
if ( dbrow [ index ] ) {
strncpy ( event_prefix , dbrow [ index + + ] , sizeof ( event_prefix ) - 1 ) ;
} else {
event_prefix [ 0 ] = 0 ;
index + + ;
}
if ( dbrow [ index ] ) {
strncpy ( label_format , dbrow [ index + + ] , sizeof ( label_format ) - 1 ) ;
} else {
label_format [ 0 ] = 0 ;
index + + ;
}
2016-04-29 20:57:31 +08:00
label_coord = Coord ( atoi ( dbrow [ index ] ) , atoi ( dbrow [ index + 1 ] ) ) ; index + = 2 ;
label_size = atoi ( dbrow [ index + + ] ) ;
warmup_count = atoi ( dbrow [ index + + ] ) ;
pre_event_count = atoi ( dbrow [ index + + ] ) ;
post_event_count = atoi ( dbrow [ index + + ] ) ;
alarm_frame_count = atoi ( dbrow [ index + + ] ) ;
section_length = atoi ( dbrow [ index + + ] ) ;
frame_skip = atoi ( dbrow [ index + + ] ) ;
motion_frame_skip = atoi ( dbrow [ index + + ] ) ;
analysis_fps = dbrow [ index ] ? strtod ( dbrow [ index ] , NULL ) : 0 ; index + + ;
analysis_update_delay = strtoul ( dbrow [ index + + ] , NULL , 0 ) ;
capture_delay = ( dbrow [ index ] & & atof ( dbrow [ index ] ) > 0.0 ) ? int ( DT_PREC_3 / atof ( dbrow [ index ] ) ) : 0 ; index + + ;
alarm_capture_delay = ( dbrow [ index ] & & atof ( dbrow [ index ] ) > 0.0 ) ? int ( DT_PREC_3 / atof ( dbrow [ index ] ) ) : 0 ; index + + ;
fps_report_interval = atoi ( dbrow [ index + + ] ) ;
ref_blend_perc = atoi ( dbrow [ index + + ] ) ;
alarm_ref_blend_perc = atoi ( dbrow [ index + + ] ) ;
track_motion = atoi ( dbrow [ index + + ] ) ;
if ( dbrow [ index ] [ 0 ] = = ' # ' )
signal_check_colour = strtol ( dbrow [ index ] + 1 , 0 , 16 ) ;
else
signal_check_colour = strtol ( dbrow [ index ] , 0 , 16 ) ;
index + + ;
shared_data - > state = state = IDLE ;
shared_data - > alarm_x = shared_data - > alarm_y = - 1 ;
if ( enabled )
shared_data - > active = true ;
ready_count = image_count + warmup_count ;
ReloadLinkedMonitors ( p_linked_monitors ) ;
}
2016-06-22 02:02:36 +08:00
if ( mysql_errno ( & dbconn ) ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't fetch row: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
mysql_free_result ( result ) ;
ReloadZones ( ) ;
2016-04-01 00:54:56 +08:00
}
2005-12-23 00:46:25 +08:00
2016-06-22 02:02:36 +08:00
void Monitor : : ReloadZones ( ) {
2016-04-29 20:57:31 +08:00
Debug ( 1 , " Reloading zones for monitor %s " , name ) ;
2016-06-22 02:02:36 +08:00
for ( int i = 0 ; i < n_zones ; i + + ) {
2016-04-29 20:57:31 +08:00
delete zones [ i ] ;
}
delete [ ] zones ;
zones = 0 ;
n_zones = Zone : : Load ( this , zones ) ;
//DumpZoneImage();
2003-03-26 19:57:29 +08:00
}
2016-06-22 02:02:36 +08:00
void Monitor : : ReloadLinkedMonitors ( const char * p_linked_monitors ) {
2016-04-29 20:57:31 +08:00
Debug ( 1 , " Reloading linked monitors for monitor %s, '%s' " , name , p_linked_monitors ) ;
2016-06-22 02:02:36 +08:00
if ( n_linked_monitors ) {
for ( int i = 0 ; i < n_linked_monitors ; i + + ) {
2016-04-29 20:57:31 +08:00
delete linked_monitors [ i ] ;
}
delete [ ] linked_monitors ;
linked_monitors = 0 ;
}
n_linked_monitors = 0 ;
2016-06-22 02:02:36 +08:00
if ( p_linked_monitors ) {
2016-04-29 20:57:31 +08:00
int n_link_ids = 0 ;
unsigned int link_ids [ 256 ] ;
char link_id_str [ 8 ] ;
char * dest_ptr = link_id_str ;
const char * src_ptr = p_linked_monitors ;
2016-06-22 02:02:36 +08:00
while ( 1 ) {
2016-04-29 20:57:31 +08:00
dest_ptr = link_id_str ;
2016-06-22 02:02:36 +08:00
while ( * src_ptr > = ' 0 ' & & * src_ptr < = ' 9 ' ) {
if ( ( dest_ptr - link_id_str ) < ( unsigned int ) ( sizeof ( link_id_str ) - 1 ) ) {
2016-04-29 20:57:31 +08:00
* dest_ptr + + = * src_ptr + + ;
2016-06-22 02:02:36 +08:00
} else {
2016-04-29 20:57:31 +08:00
break ;
}
}
// Add the link monitor
2016-06-22 02:02:36 +08:00
if ( dest_ptr ! = link_id_str ) {
2016-04-29 20:57:31 +08:00
* dest_ptr = ' \0 ' ;
unsigned int link_id = atoi ( link_id_str ) ;
2016-06-22 02:02:36 +08:00
if ( link_id > 0 & & link_id ! = id ) {
2016-04-29 20:57:31 +08:00
Debug ( 3 , " Found linked monitor id %d " , link_id ) ;
int j ;
2016-06-22 02:02:36 +08:00
for ( j = 0 ; j < n_link_ids ; j + + ) {
2016-04-29 20:57:31 +08:00
if ( link_ids [ j ] = = link_id )
break ;
}
2017-05-17 00:04:56 +08:00
if ( j = = n_link_ids ) {
// Not already found
2016-04-29 20:57:31 +08:00
link_ids [ n_link_ids + + ] = link_id ;
}
}
}
if ( ! * src_ptr )
break ;
while ( * src_ptr & & ( * src_ptr < ' 0 ' | | * src_ptr > ' 9 ' ) )
src_ptr + + ;
if ( ! * src_ptr )
break ;
}
2016-06-22 02:02:36 +08:00
if ( n_link_ids > 0 ) {
2016-04-29 20:57:31 +08:00
Debug ( 1 , " Linking to %d monitors " , n_link_ids ) ;
linked_monitors = new MonitorLink * [ n_link_ids ] ;
int count = 0 ;
2016-06-22 02:02:36 +08:00
for ( int i = 0 ; i < n_link_ids ; i + + ) {
2016-04-29 20:57:31 +08:00
Debug ( 1 , " Checking linked monitor %d " , link_ids [ i ] ) ;
static char sql [ ZM_SQL_SML_BUFSIZ ] ;
snprintf ( sql , sizeof ( sql ) , " select Id, Name from Monitors where Id = %d and Function != 'None' and Function != 'Monitor' and Enabled = 1 " , link_ids [ i ] ) ;
2016-06-22 02:02:36 +08:00
if ( mysql_query ( & dbconn , sql ) ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't run query: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
MYSQL_RES * result = mysql_store_result ( & dbconn ) ;
2016-06-22 02:02:36 +08:00
if ( ! result ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't use query result: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
int n_monitors = mysql_num_rows ( result ) ;
2016-06-22 02:02:36 +08:00
if ( n_monitors = = 1 ) {
2016-04-29 20:57:31 +08:00
MYSQL_ROW dbrow = mysql_fetch_row ( result ) ;
Debug ( 1 , " Linking to monitor %d " , link_ids [ i ] ) ;
linked_monitors [ count + + ] = new MonitorLink ( link_ids [ i ] , dbrow [ 1 ] ) ;
2016-06-22 02:02:36 +08:00
} else {
2016-04-29 20:57:31 +08:00
Warning ( " Can't link to monitor %d, invalid id, function or not enabled " , link_ids [ i ] ) ;
}
mysql_free_result ( result ) ;
}
n_linked_monitors = count ;
}
}
2006-01-23 02:31:55 +08:00
}
2011-02-16 05:59:06 +08:00
# if ZM_HAS_V4L
2016-04-01 02:02:56 +08:00
int Monitor : : LoadLocalMonitors ( const char * device , Monitor * * & monitors , Purpose purpose ) {
2017-11-14 14:59:15 +08:00
std : : string sql = " select Id, Name, ServerId, StorageId, Function+0, Enabled, LinkedMonitors, Device, Channel, Format, V4LMultiBuffer, V4LCapturesPerFrame, Method, Width, Height, Colours, Palette, Orientation+0, Deinterlacing, SaveJPEGs, VideoWriter, EncoderParameters, OutputCodec, OutputContainer, RecordAudio, Brightness, Contrast, Hue, Colour, EventPrefix, LabelFormat, LabelX, LabelY, LabelSize, ImageBufferCount, WarmupCount, PreEventCount, PostEventCount, StreamReplayBuffer, AlarmFrameCount, SectionLength, FrameSkip, MotionFrameSkip, AnalysisFPSLimit, AnalysisUpdateDelay, MaxFPS, AlarmMaxFPS, FPSReportInterval, RefBlendPerc, AlarmRefBlendPerc, TrackMotion, SignalCheckColour, Exif from Monitors where Function != 'None' and Type = 'Local' " ;
2015-07-21 04:28:21 +08:00
;
2016-04-29 20:57:31 +08:00
if ( device [ 0 ] ) {
sql + = " AND Device=' " ;
sql + = device ;
sql + = " ' " ;
}
if ( staticConfig . SERVER_ID ) {
sql + = stringtf ( " AND ServerId=%d " , staticConfig . SERVER_ID ) ;
}
Debug ( 1 , " Loading Local Monitors with %s " , sql . c_str ( ) ) ;
MYSQL_RES * result = zmDbFetch ( sql . c_str ( ) ) ;
if ( ! result ) {
Error ( " Can't load local monitors: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
int n_monitors = mysql_num_rows ( result ) ;
Debug ( 1 , " Got %d monitors " , n_monitors ) ;
delete [ ] monitors ;
monitors = new Monitor * [ n_monitors ] ;
for ( int i = 0 ; MYSQL_ROW dbrow = mysql_fetch_row ( result ) ; i + + ) {
int col = 0 ;
int id = atoi ( dbrow [ col ] ) ; col + + ;
const char * name = dbrow [ col ] ; col + + ;
unsigned int server_id = dbrow [ col ] ? atoi ( dbrow [ col ] ) : 0 ; col + + ;
2016-09-14 21:31:57 +08:00
unsigned int storage_id = atoi ( dbrow [ col ] ) ; col + + ;
2016-04-29 20:57:31 +08:00
int function = atoi ( dbrow [ col ] ) ; col + + ;
int enabled = atoi ( dbrow [ col ] ) ; col + + ;
const char * linked_monitors = dbrow [ col ] ; col + + ;
const char * device = dbrow [ col ] ; col + + ;
int channel = atoi ( dbrow [ col ] ) ; col + + ;
int format = atoi ( dbrow [ col ] ) ; col + + ;
bool v4l_multi_buffer = config . v4l_multi_buffer ;
if ( dbrow [ col ] ) {
if ( * dbrow [ col ] = = ' 0 ' ) {
v4l_multi_buffer = false ;
} else if ( * dbrow [ col ] = = ' 1 ' ) {
v4l_multi_buffer = true ;
}
}
col + + ;
int v4l_captures_per_frame = 0 ;
if ( dbrow [ col ] ) {
v4l_captures_per_frame = atoi ( dbrow [ col ] ) ;
} else {
v4l_captures_per_frame = config . captures_per_frame ;
}
Debug ( 1 , " Got %d for v4l_captures_per_frame " , v4l_captures_per_frame ) ;
col + + ;
2018-02-02 23:31:55 +08:00
const char * method = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
int width = atoi ( dbrow [ col ] ) ; col + + ;
int height = atoi ( dbrow [ col ] ) ; col + + ;
int colours = atoi ( dbrow [ col ] ) ; col + + ;
int palette = atoi ( dbrow [ col ] ) ; col + + ;
Orientation orientation = ( Orientation ) atoi ( dbrow [ col ] ) ; col + + ;
unsigned int deinterlacing = atoi ( dbrow [ col ] ) ; col + + ;
int savejpegs = atoi ( dbrow [ col ] ) ; col + + ;
2016-09-13 09:35:14 +08:00
VideoWriter videowriter = ( VideoWriter ) atoi ( dbrow [ col ] ) ; col + + ;
2016-06-23 23:13:26 +08:00
std : : string encoderparams = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2017-11-14 14:59:15 +08:00
std : : string output_codec = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string output_container = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
bool record_audio = ( * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
int brightness = atoi ( dbrow [ col ] ) ; col + + ;
int contrast = atoi ( dbrow [ col ] ) ; col + + ;
int hue = atoi ( dbrow [ col ] ) ; col + + ;
int colour = atoi ( dbrow [ col ] ) ; col + + ;
2017-05-20 02:03:28 +08:00
const char * event_prefix = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
const char * label_format = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
int label_x = atoi ( dbrow [ col ] ) ; col + + ;
int label_y = atoi ( dbrow [ col ] ) ; col + + ;
int label_size = atoi ( dbrow [ col ] ) ; col + + ;
int image_buffer_count = atoi ( dbrow [ col ] ) ; col + + ;
int warmup_count = atoi ( dbrow [ col ] ) ; col + + ;
int pre_event_count = atoi ( dbrow [ col ] ) ; col + + ;
int post_event_count = atoi ( dbrow [ col ] ) ; col + + ;
int stream_replay_buffer = atoi ( dbrow [ col ] ) ; col + + ;
int alarm_frame_count = atoi ( dbrow [ col ] ) ; col + + ;
int section_length = atoi ( dbrow [ col ] ) ; col + + ;
int frame_skip = atoi ( dbrow [ col ] ) ; col + + ;
int motion_frame_skip = atoi ( dbrow [ col ] ) ; col + + ;
double analysis_fps = dbrow [ col ] ? strtod ( dbrow [ col ] , NULL ) : 0 ; col + + ;
unsigned int analysis_update_delay = strtoul ( dbrow [ col + + ] , NULL , 0 ) ;
int capture_delay = ( dbrow [ col ] & & atof ( dbrow [ col ] ) > 0.0 ) ? int ( DT_PREC_3 / atof ( dbrow [ col ] ) ) : 0 ; col + + ;
int alarm_capture_delay = ( dbrow [ col ] & & atof ( dbrow [ col ] ) > 0.0 ) ? int ( DT_PREC_3 / atof ( dbrow [ col ] ) ) : 0 ; col + + ;
int fps_report_interval = atoi ( dbrow [ col ] ) ; col + + ;
int ref_blend_perc = atoi ( dbrow [ col ] ) ; col + + ;
int alarm_ref_blend_perc = atoi ( dbrow [ col ] ) ; col + + ;
int track_motion = atoi ( dbrow [ col ] ) ; col + + ;
int signal_check_colour ;
if ( dbrow [ col ] [ 0 ] = = ' # ' )
signal_check_colour = strtol ( dbrow [ col ] + 1 , 0 , 16 ) ;
else
signal_check_colour = strtol ( dbrow [ col ] , 0 , 16 ) ;
col + + ;
bool embed_exif = ( * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
int extras = ( deinterlacing > > 24 ) & 0xff ;
Camera * camera = new LocalCamera (
id ,
device ,
channel ,
format ,
v4l_multi_buffer ,
v4l_captures_per_frame ,
method ,
width ,
height ,
colours ,
palette ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio ,
extras
) ;
monitors [ i ] = new Monitor (
id ,
name ,
server_id ,
storage_id ,
function ,
enabled ,
linked_monitors ,
camera ,
orientation ,
deinterlacing ,
savejpegs ,
2017-10-28 11:36:49 +08:00
colours ,
2016-04-29 20:57:31 +08:00
videowriter ,
encoderparams ,
2017-11-14 14:59:15 +08:00
output_codec ,
output_container ,
2016-04-29 20:57:31 +08:00
record_audio ,
event_prefix ,
label_format ,
Coord ( label_x , label_y ) ,
label_size ,
image_buffer_count ,
warmup_count ,
pre_event_count ,
post_event_count ,
stream_replay_buffer ,
alarm_frame_count ,
section_length ,
frame_skip ,
motion_frame_skip ,
analysis_fps ,
analysis_update_delay ,
capture_delay ,
alarm_capture_delay ,
fps_report_interval ,
ref_blend_perc ,
alarm_ref_blend_perc ,
track_motion ,
signal_check_colour ,
embed_exif ,
2016-09-09 21:15:04 +08:00
purpose ,
2016-04-29 20:57:31 +08:00
0 ,
0
) ;
2016-09-09 21:15:04 +08:00
camera - > setMonitor ( monitors [ i ] ) ;
2016-04-29 20:57:31 +08:00
Zone * * zones = 0 ;
int n_zones = Zone : : Load ( monitors [ i ] , zones ) ;
monitors [ i ] - > AddZones ( n_zones , zones ) ;
monitors [ i ] - > AddPrivacyBitmask ( zones ) ;
Debug ( 1 , " Loaded monitor %d(%s), %d zones " , id , name , n_zones ) ;
}
2016-12-09 00:49:54 +08:00
if ( mysql_errno ( & dbconn ) ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't fetch row: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
// Yadda yadda
mysql_free_result ( result ) ;
return ( n_monitors ) ;
2003-03-26 19:57:29 +08:00
}
2011-02-16 05:59:06 +08:00
# endif // ZM_HAS_V4L
2003-03-26 19:57:29 +08:00
2016-12-09 00:49:54 +08:00
int Monitor : : LoadRemoteMonitors ( const char * protocol , const char * host , const char * port , const char * path , Monitor * * & monitors , Purpose purpose ) {
2017-11-14 14:59:15 +08:00
std : : string sql = " select Id, Name, ServerId, StorageId, Function+0, Enabled, LinkedMonitors, Protocol, Method, Host, Port, Path, Width, Height, Colours, Palette, Orientation+0, Deinterlacing, RTSPDescribe, SaveJPEGs, VideoWriter, EncoderParameters, OutputCodec, OutputContainer, RecordAudio, Brightness, Contrast, Hue, Colour, EventPrefix, LabelFormat, LabelX, LabelY, LabelSize, ImageBufferCount, WarmupCount, PreEventCount, PostEventCount, StreamReplayBuffer, AlarmFrameCount, SectionLength, FrameSkip, MotionFrameSkip, AnalysisFPSLimit, AnalysisUpdateDelay, MaxFPS, AlarmMaxFPS, FPSReportInterval, RefBlendPerc, AlarmRefBlendPerc, TrackMotion, Exif from Monitors where Function != 'None' and Type = 'Remote' " ;
2016-04-29 20:57:31 +08:00
if ( staticConfig . SERVER_ID ) {
sql + = stringtf ( " AND ServerId=%d " , staticConfig . SERVER_ID ) ;
}
if ( protocol ) {
sql + = stringtf ( " AND Protocol = '%s' and Host = '%s' and Port = '%s' and Path = '%s' " , protocol , host , port , path ) ;
}
Debug ( 1 , " Loading Remote Monitors with %s " , sql . c_str ( ) ) ;
MYSQL_RES * result = zmDbFetch ( sql . c_str ( ) ) ;
if ( ! result ) {
Error ( " Can't use query result: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
int n_monitors = mysql_num_rows ( result ) ;
Debug ( 1 , " Got %d monitors " , n_monitors ) ;
delete [ ] monitors ;
monitors = new Monitor * [ n_monitors ] ;
for ( int i = 0 ; MYSQL_ROW dbrow = mysql_fetch_row ( result ) ; i + + ) {
int col = 0 ;
int id = atoi ( dbrow [ col ] ) ; col + + ;
std : : string name = dbrow [ col ] ; col + + ;
unsigned int server_id = dbrow [ col ] ? atoi ( dbrow [ col ] ) : 0 ; col + + ;
2016-09-14 21:31:57 +08:00
unsigned int storage_id = atoi ( dbrow [ col ] ) ; col + + ;
2016-04-29 20:57:31 +08:00
int function = atoi ( dbrow [ col ] ) ; col + + ;
int enabled = atoi ( dbrow [ col ] ) ; col + + ;
const char * linked_monitors = dbrow [ col ] ; col + + ;
2016-06-24 22:29:50 +08:00
std : : string protocol = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string method = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string host = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string port = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string path = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
int width = atoi ( dbrow [ col ] ) ; col + + ;
int height = atoi ( dbrow [ col ] ) ; col + + ;
int colours = atoi ( dbrow [ col ] ) ; col + + ;
/* int palette = atoi(dbrow[col]); */ col + + ;
Orientation orientation = ( Orientation ) atoi ( dbrow [ col ] ) ; col + + ;
unsigned int deinterlacing = atoi ( dbrow [ col ] ) ; col + + ;
2016-07-14 22:27:24 +08:00
bool rtsp_describe = ( dbrow [ col ] & & * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
2016-04-29 20:57:31 +08:00
int savejpegs = atoi ( dbrow [ col ] ) ; col + + ;
2016-09-13 09:35:14 +08:00
VideoWriter videowriter = ( VideoWriter ) atoi ( dbrow [ col ] ) ; col + + ;
2016-06-23 23:25:50 +08:00
std : : string encoderparams = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2017-11-14 14:59:15 +08:00
std : : string output_codec = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string output_container = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
bool record_audio = ( * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
2016-04-30 20:27:10 +08:00
2016-04-29 20:57:31 +08:00
int brightness = atoi ( dbrow [ col ] ) ; col + + ;
int contrast = atoi ( dbrow [ col ] ) ; col + + ;
int hue = atoi ( dbrow [ col ] ) ; col + + ;
int colour = atoi ( dbrow [ col ] ) ; col + + ;
2017-05-20 02:03:28 +08:00
const char * event_prefix = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
const char * label_format = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
int label_x = atoi ( dbrow [ col ] ) ; col + + ;
int label_y = atoi ( dbrow [ col ] ) ; col + + ;
int label_size = atoi ( dbrow [ col ] ) ; col + + ;
int image_buffer_count = atoi ( dbrow [ col ] ) ; col + + ;
int warmup_count = atoi ( dbrow [ col ] ) ; col + + ;
int pre_event_count = atoi ( dbrow [ col ] ) ; col + + ;
int post_event_count = atoi ( dbrow [ col ] ) ; col + + ;
int stream_replay_buffer = atoi ( dbrow [ col ] ) ; col + + ;
int alarm_frame_count = atoi ( dbrow [ col ] ) ; col + + ;
int section_length = atoi ( dbrow [ col ] ) ; col + + ;
int frame_skip = atoi ( dbrow [ col ] ) ; col + + ;
int motion_frame_skip = atoi ( dbrow [ col ] ) ; col + + ;
double analysis_fps = dbrow [ col ] ? strtod ( dbrow [ col ] , NULL ) : 0 ; col + + ;
unsigned int analysis_update_delay = strtoul ( dbrow [ col + + ] , NULL , 0 ) ;
int capture_delay = ( dbrow [ col ] & & atof ( dbrow [ col ] ) > 0.0 ) ? int ( DT_PREC_3 / atof ( dbrow [ col ] ) ) : 0 ; col + + ;
int alarm_capture_delay = ( dbrow [ col ] & & atof ( dbrow [ col ] ) > 0.0 ) ? int ( DT_PREC_3 / atof ( dbrow [ col ] ) ) : 0 ; col + + ;
int fps_report_interval = atoi ( dbrow [ col ] ) ; col + + ;
int ref_blend_perc = atoi ( dbrow [ col ] ) ; col + + ;
int alarm_ref_blend_perc = atoi ( dbrow [ col ] ) ; col + + ;
int track_motion = atoi ( dbrow [ col ] ) ; col + + ;
bool embed_exif = ( * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
Camera * camera = 0 ;
if ( protocol = = " http " ) {
camera = new RemoteCameraHttp (
id ,
method ,
host , // Host
port , // Port
path , // Path
width ,
height ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
}
2008-10-17 00:11:49 +08:00
# if HAVE_LIBAVFORMAT
2016-04-29 20:57:31 +08:00
else if ( protocol = = " rtsp " ) {
camera = new RemoteCameraRtsp (
id ,
method ,
host , // Host
port , // Port
path , // Path
width ,
height ,
rtsp_describe ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
}
2008-10-17 00:11:49 +08:00
# endif // HAVE_LIBAVFORMAT
2016-04-29 20:57:31 +08:00
else {
Fatal ( " Unexpected remote camera protocol '%s' " , protocol . c_str ( ) ) ;
}
monitors [ i ] = new Monitor (
id ,
name . c_str ( ) ,
server_id ,
storage_id ,
function ,
enabled ,
linked_monitors ,
camera ,
orientation ,
deinterlacing ,
savejpegs ,
2017-10-28 11:36:49 +08:00
colours ,
2016-04-29 20:57:31 +08:00
videowriter ,
encoderparams ,
2017-11-14 14:59:15 +08:00
output_codec ,
output_container ,
2016-04-29 20:57:31 +08:00
record_audio ,
2017-05-20 02:03:28 +08:00
event_prefix ,
label_format ,
2016-04-29 20:57:31 +08:00
Coord ( label_x , label_y ) ,
label_size ,
image_buffer_count ,
warmup_count ,
pre_event_count ,
post_event_count ,
stream_replay_buffer ,
alarm_frame_count ,
section_length ,
frame_skip ,
motion_frame_skip ,
analysis_fps ,
analysis_update_delay ,
capture_delay ,
alarm_capture_delay ,
fps_report_interval ,
ref_blend_perc ,
alarm_ref_blend_perc ,
track_motion ,
RGB_WHITE ,
embed_exif ,
2016-08-31 22:00:10 +08:00
purpose ,
2016-04-29 20:57:31 +08:00
0 ,
0
) ;
2016-09-09 21:15:04 +08:00
camera - > setMonitor ( monitors [ i ] ) ;
2016-04-29 20:57:31 +08:00
Zone * * zones = 0 ;
int n_zones = Zone : : Load ( monitors [ i ] , zones ) ;
monitors [ i ] - > AddZones ( n_zones , zones ) ;
monitors [ i ] - > AddPrivacyBitmask ( zones ) ;
Debug ( 1 , " Loaded monitor %d(%s), %d zones " , id , name . c_str ( ) , n_zones ) ;
}
2016-12-09 00:49:54 +08:00
if ( mysql_errno ( & dbconn ) ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't fetch row: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
// Yadda yadda
mysql_free_result ( result ) ;
return ( n_monitors ) ;
2003-03-26 19:57:29 +08:00
}
2016-04-01 00:54:56 +08:00
int Monitor : : LoadFileMonitors ( const char * file , Monitor * * & monitors , Purpose purpose ) {
2017-11-14 14:59:15 +08:00
std : : string sql = " select Id, Name, ServerId, StorageId, Function+0, Enabled, LinkedMonitors, Path, Width, Height, Colours, Palette, Orientation+0, Deinterlacing, SaveJPEGs, VideoWriter, EncoderParameters, OutputCodec, OutputContainer, RecordAudio, Brightness, Contrast, Hue, Colour, EventPrefix, LabelFormat, LabelX, LabelY, LabelSize, ImageBufferCount, WarmupCount, PreEventCount, PostEventCount, StreamReplayBuffer, AlarmFrameCount, SectionLength, FrameSkip, MotionFrameSkip, AnalysisFPSLimit, AnalysisUpdateDelay, MaxFPS, AlarmMaxFPS, FPSReportInterval, RefBlendPerc, AlarmRefBlendPerc, TrackMotion, Exif from Monitors where Function != 'None' and Type = 'File' " ;
2016-04-29 20:57:31 +08:00
if ( file [ 0 ] ) {
sql + = " AND Path=' " ;
sql + = file ;
sql + = " ' " ;
}
if ( staticConfig . SERVER_ID ) {
sql + = stringtf ( " AND ServerId=%d " , staticConfig . SERVER_ID ) ;
}
Debug ( 1 , " Loading File Monitors with %s " , sql . c_str ( ) ) ;
MYSQL_RES * result = zmDbFetch ( sql . c_str ( ) ) ;
if ( ! result ) {
Error ( " Can't use query result: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
int n_monitors = mysql_num_rows ( result ) ;
Debug ( 1 , " Got %d monitors " , n_monitors ) ;
delete [ ] monitors ;
monitors = new Monitor * [ n_monitors ] ;
for ( int i = 0 ; MYSQL_ROW dbrow = mysql_fetch_row ( result ) ; i + + ) {
int col = 0 ;
int id = atoi ( dbrow [ col ] ) ; col + + ;
const char * name = dbrow [ col ] ; col + + ;
unsigned int server_id = dbrow [ col ] ? atoi ( dbrow [ col ] ) : 0 ; col + + ;
2016-09-14 21:31:57 +08:00
unsigned int storage_id = atoi ( dbrow [ col ] ) ; col + + ;
2016-04-29 20:57:31 +08:00
int function = atoi ( dbrow [ col ] ) ; col + + ;
int enabled = atoi ( dbrow [ col ] ) ; col + + ;
const char * linked_monitors = dbrow [ col ] ; col + + ;
const char * path = dbrow [ col ] ; col + + ;
int width = atoi ( dbrow [ col ] ) ; col + + ;
int height = atoi ( dbrow [ col ] ) ; col + + ;
int colours = atoi ( dbrow [ col ] ) ; col + + ;
/* int palette = atoi(dbrow[col]); */ col + + ;
Orientation orientation = ( Orientation ) atoi ( dbrow [ col ] ) ; col + + ;
unsigned int deinterlacing = atoi ( dbrow [ col ] ) ; col + + ;
int savejpegs = atoi ( dbrow [ col ] ) ; col + + ;
2016-09-13 09:35:14 +08:00
VideoWriter videowriter = ( VideoWriter ) atoi ( dbrow [ col ] ) ; col + + ;
2016-04-29 20:57:31 +08:00
std : : string encoderparams = dbrow [ col ] ; col + + ;
2017-11-14 14:59:15 +08:00
std : : string output_codec = dbrow [ col ] ; col + + ;
std : : string output_container = dbrow [ col ] ; col + + ;
2016-04-29 20:57:31 +08:00
bool record_audio = ( * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
int brightness = atoi ( dbrow [ col ] ) ; col + + ;
int contrast = atoi ( dbrow [ col ] ) ; col + + ;
int hue = atoi ( dbrow [ col ] ) ; col + + ;
int colour = atoi ( dbrow [ col ] ) ; col + + ;
2017-05-20 02:03:28 +08:00
const char * event_prefix = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
const char * label_format = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
int label_x = atoi ( dbrow [ col ] ) ; col + + ;
int label_y = atoi ( dbrow [ col ] ) ; col + + ;
int label_size = atoi ( dbrow [ col ] ) ; col + + ;
int image_buffer_count = atoi ( dbrow [ col ] ) ; col + + ;
int warmup_count = atoi ( dbrow [ col ] ) ; col + + ;
int pre_event_count = atoi ( dbrow [ col ] ) ; col + + ;
int post_event_count = atoi ( dbrow [ col ] ) ; col + + ;
int stream_replay_buffer = atoi ( dbrow [ col ] ) ; col + + ;
int alarm_frame_count = atoi ( dbrow [ col ] ) ; col + + ;
int section_length = atoi ( dbrow [ col ] ) ; col + + ;
int frame_skip = atoi ( dbrow [ col ] ) ; col + + ;
int motion_frame_skip = atoi ( dbrow [ col ] ) ; col + + ;
double analysis_fps = dbrow [ col ] ? strtod ( dbrow [ col ] , NULL ) : 0 ; col + + ;
unsigned int analysis_update_delay = strtoul ( dbrow [ col + + ] , NULL , 0 ) ;
int capture_delay = ( dbrow [ col ] & & atof ( dbrow [ col ] ) > 0.0 ) ? int ( DT_PREC_3 / atof ( dbrow [ col ] ) ) : 0 ; col + + ;
int alarm_capture_delay = ( dbrow [ col ] & & atof ( dbrow [ col ] ) > 0.0 ) ? int ( DT_PREC_3 / atof ( dbrow [ col ] ) ) : 0 ; col + + ;
int fps_report_interval = atoi ( dbrow [ col ] ) ; col + + ;
int ref_blend_perc = atoi ( dbrow [ col ] ) ; col + + ;
int alarm_ref_blend_perc = atoi ( dbrow [ col ] ) ; col + + ;
int track_motion = atoi ( dbrow [ col ] ) ; col + + ;
bool embed_exif = ( * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
Camera * camera = new FileCamera (
id ,
path , // File
width ,
height ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
monitors [ i ] = new Monitor (
id ,
name ,
server_id ,
storage_id ,
function ,
enabled ,
linked_monitors ,
camera ,
orientation ,
deinterlacing ,
savejpegs ,
2017-10-28 11:36:49 +08:00
colours ,
2016-04-29 20:57:31 +08:00
videowriter ,
encoderparams ,
2017-11-14 14:59:15 +08:00
output_codec ,
output_container ,
2016-04-29 20:57:31 +08:00
record_audio ,
2017-05-20 03:08:04 +08:00
event_prefix ,
label_format ,
2016-04-29 20:57:31 +08:00
Coord ( label_x , label_y ) ,
label_size ,
image_buffer_count ,
warmup_count ,
pre_event_count ,
post_event_count ,
stream_replay_buffer ,
alarm_frame_count ,
section_length ,
frame_skip ,
motion_frame_skip ,
analysis_fps ,
analysis_update_delay ,
capture_delay ,
alarm_capture_delay ,
fps_report_interval ,
ref_blend_perc ,
alarm_ref_blend_perc ,
track_motion ,
embed_exif ,
RGB_WHITE ,
purpose ,
0 ,
0
) ;
2016-09-09 21:15:04 +08:00
camera - > setMonitor ( monitors [ i ] ) ;
2016-04-29 20:57:31 +08:00
Zone * * zones = 0 ;
int n_zones = Zone : : Load ( monitors [ i ] , zones ) ;
monitors [ i ] - > AddZones ( n_zones , zones ) ;
monitors [ i ] - > AddPrivacyBitmask ( zones ) ;
Debug ( 1 , " Loaded monitor %d(%s), %d zones " , id , name , n_zones ) ;
}
2016-12-09 00:49:54 +08:00
if ( mysql_errno ( & dbconn ) ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't fetch row: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
// Yadda yadda
mysql_free_result ( result ) ;
return ( n_monitors ) ;
2005-10-18 05:55:02 +08:00
}
2009-01-28 23:02:33 +08:00
# if HAVE_LIBAVFORMAT
2016-12-09 00:49:54 +08:00
int Monitor : : LoadFfmpegMonitors ( const char * file , Monitor * * & monitors , Purpose purpose ) {
2017-11-14 14:59:15 +08:00
std : : string sql = " select Id, Name, ServerId, StorageId, Function+0, Enabled, LinkedMonitors, Path, Method, Options, Width, Height, Colours, Palette, Orientation+0, Deinterlacing, SaveJPEGs, VideoWriter, EncoderParameters, OutputCodec, OutputContainer, RecordAudio, Brightness, Contrast, Hue, Colour, EventPrefix, LabelFormat, LabelX, LabelY, LabelSize, ImageBufferCount, WarmupCount, PreEventCount, PostEventCount, StreamReplayBuffer, AlarmFrameCount, SectionLength, FrameSkip, MotionFrameSkip, AnalysisFPSLimit, AnalysisUpdateDelay, MaxFPS, AlarmMaxFPS, FPSReportInterval, RefBlendPerc, AlarmRefBlendPerc, TrackMotion, Exif from Monitors where Function != 'None' and Type = 'Ffmpeg' " ;
2016-04-29 20:57:31 +08:00
if ( file [ 0 ] ) {
sql + = " AND Path = ' " ;
sql + = file ;
sql + = " ' " ;
}
if ( staticConfig . SERVER_ID ) {
sql + = stringtf ( " AND ServerId=%d " , staticConfig . SERVER_ID ) ;
}
Debug ( 1 , " Loading FFMPEG Monitors with %s " , sql . c_str ( ) ) ;
MYSQL_RES * result = zmDbFetch ( sql . c_str ( ) ) ;
if ( ! result ) {
Error ( " Cannot load FfmpegMonitors " ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
int n_monitors = mysql_num_rows ( result ) ;
Debug ( 1 , " Got %d monitors " , n_monitors ) ;
delete [ ] monitors ;
monitors = new Monitor * [ n_monitors ] ;
for ( int i = 0 ; MYSQL_ROW dbrow = mysql_fetch_row ( result ) ; i + + ) {
int col = 0 ;
int id = atoi ( dbrow [ col ] ) ; col + + ;
const char * name = dbrow [ col ] ; col + + ;
unsigned int server_id = dbrow [ col ] ? atoi ( dbrow [ col ] ) : 0 ; col + + ;
2016-09-14 21:31:57 +08:00
unsigned int storage_id = atoi ( dbrow [ col ] ) ; col + + ;
2016-04-29 20:57:31 +08:00
int function = atoi ( dbrow [ col ] ) ; col + + ;
int enabled = atoi ( dbrow [ col ] ) ; col + + ;
2016-06-10 00:51:22 +08:00
const char * linked_monitors = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
const char * path = dbrow [ col ] ; col + + ;
2018-02-02 23:31:55 +08:00
const char * method = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-06-10 00:51:22 +08:00
const char * options = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
int width = atoi ( dbrow [ col ] ) ; col + + ;
int height = atoi ( dbrow [ col ] ) ; col + + ;
int colours = atoi ( dbrow [ col ] ) ; col + + ;
/* int palette = atoi(dbrow[col]); */ col + + ;
Orientation orientation = ( Orientation ) atoi ( dbrow [ col ] ) ; col + + ;
unsigned int deinterlacing = atoi ( dbrow [ col ] ) ; col + + ;
int savejpegs = atoi ( dbrow [ col ] ) ; col + + ;
2016-09-13 09:35:14 +08:00
VideoWriter videowriter = ( VideoWriter ) atoi ( dbrow [ col ] ) ; col + + ;
2016-06-10 00:51:22 +08:00
std : : string encoderparams = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2017-11-14 14:59:15 +08:00
std : : string output_codec = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string output_container = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
bool record_audio = ( * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
int brightness = atoi ( dbrow [ col ] ) ; col + + ;
int contrast = atoi ( dbrow [ col ] ) ; col + + ;
int hue = atoi ( dbrow [ col ] ) ; col + + ;
int colour = atoi ( dbrow [ col ] ) ; col + + ;
2017-05-20 02:03:28 +08:00
const char * event_prefix = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
const char * label_format = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
int label_x = atoi ( dbrow [ col ] ) ; col + + ;
int label_y = atoi ( dbrow [ col ] ) ; col + + ;
int label_size = atoi ( dbrow [ col ] ) ; col + + ;
int image_buffer_count = atoi ( dbrow [ col ] ) ; col + + ;
int warmup_count = atoi ( dbrow [ col ] ) ; col + + ;
int pre_event_count = atoi ( dbrow [ col ] ) ; col + + ;
int post_event_count = atoi ( dbrow [ col ] ) ; col + + ;
int stream_replay_buffer = atoi ( dbrow [ col ] ) ; col + + ;
int alarm_frame_count = atoi ( dbrow [ col ] ) ; col + + ;
int section_length = atoi ( dbrow [ col ] ) ; col + + ;
int frame_skip = atoi ( dbrow [ col ] ) ; col + + ;
int motion_frame_skip = atoi ( dbrow [ col ] ) ; col + + ;
2017-05-20 02:03:28 +08:00
2016-04-29 20:57:31 +08:00
double analysis_fps = dbrow [ col ] ? strtod ( dbrow [ col ] , NULL ) : 0 ; col + + ;
unsigned int analysis_update_delay = strtoul ( dbrow [ col + + ] , NULL , 0 ) ;
2016-10-18 21:50:01 +08:00
double capture_fps = dbrow [ col ] ? atof ( dbrow [ col ] ) : 0 ; col + + ;
int capture_delay = capture_fps > 0.0 ? int ( DT_PREC_3 / capture_fps ) : 0 ;
double alarm_capture_fps = dbrow [ col ] ? atof ( dbrow [ col ] ) : 0 ; col + + ;
int alarm_capture_delay = alarm_capture_fps > 0.0 ? int ( DT_PREC_3 / alarm_capture_fps ) : 0 ;
2017-05-20 02:03:28 +08:00
2016-04-29 20:57:31 +08:00
int fps_report_interval = atoi ( dbrow [ col ] ) ; col + + ;
int ref_blend_perc = atoi ( dbrow [ col ] ) ; col + + ;
int alarm_ref_blend_perc = atoi ( dbrow [ col ] ) ; col + + ;
int track_motion = atoi ( dbrow [ col ] ) ; col + + ;
bool embed_exif = ( * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
Camera * camera = new FfmpegCamera (
id ,
path , // File
method ,
options ,
width ,
height ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
monitors [ i ] = new Monitor (
id ,
name ,
server_id ,
storage_id ,
function ,
enabled ,
linked_monitors ,
camera ,
orientation ,
deinterlacing ,
savejpegs ,
2017-10-28 11:36:49 +08:00
colours ,
2016-04-29 20:57:31 +08:00
videowriter ,
encoderparams ,
2017-11-14 14:59:15 +08:00
output_codec ,
output_container ,
2016-04-29 20:57:31 +08:00
record_audio ,
2017-05-20 03:08:04 +08:00
event_prefix ,
label_format ,
2016-04-29 20:57:31 +08:00
Coord ( label_x , label_y ) ,
label_size ,
image_buffer_count ,
warmup_count ,
pre_event_count ,
post_event_count ,
stream_replay_buffer ,
alarm_frame_count ,
section_length ,
frame_skip ,
motion_frame_skip ,
analysis_fps ,
analysis_update_delay ,
capture_delay ,
alarm_capture_delay ,
fps_report_interval ,
ref_blend_perc ,
alarm_ref_blend_perc ,
track_motion ,
embed_exif ,
RGB_WHITE ,
purpose ,
0 ,
0
) ;
2016-09-09 21:15:04 +08:00
camera - > setMonitor ( monitors [ i ] ) ;
2016-04-29 20:57:31 +08:00
Zone * * zones = 0 ;
int n_zones = Zone : : Load ( monitors [ i ] , zones ) ;
monitors [ i ] - > AddZones ( n_zones , zones ) ;
monitors [ i ] - > AddPrivacyBitmask ( zones ) ;
Debug ( 1 , " Loaded monitor %d(%s), %d zones " , id , name , n_zones ) ;
}
2016-12-09 00:49:54 +08:00
if ( mysql_errno ( & dbconn ) ) {
2016-04-29 20:57:31 +08:00
Error ( " Can't fetch row: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
// Yadda yadda
mysql_free_result ( result ) ;
return ( n_monitors ) ;
2009-01-20 23:01:32 +08:00
}
2009-01-28 23:02:33 +08:00
# endif // HAVE_LIBAVFORMAT
2009-01-20 23:01:32 +08:00
2016-04-01 00:54:56 +08:00
Monitor * Monitor : : Load ( unsigned int p_id , bool load_zones , Purpose purpose ) {
2017-11-14 14:59:15 +08:00
std : : string sql = stringtf ( " select Id, Name, ServerId, StorageId, Type, Function+0, Enabled, LinkedMonitors, Device, Channel, Format, V4LMultiBuffer, V4LCapturesPerFrame, Protocol, Method, Host, Port, Path, Options, User, Pass, Width, Height, Colours, Palette, Orientation+0, Deinterlacing, RTSPDescribe, SaveJPEGs, VideoWriter, EncoderParameters, OutputCodec, OutputContainer, RecordAudio, Brightness, Contrast, Hue, Colour, EventPrefix, LabelFormat, LabelX, LabelY, LabelSize, ImageBufferCount, WarmupCount, PreEventCount, PostEventCount, StreamReplayBuffer, AlarmFrameCount, SectionLength, FrameSkip, MotionFrameSkip, AnalysisFPSLimit, AnalysisUpdateDelay, MaxFPS, AlarmMaxFPS, FPSReportInterval, RefBlendPerc, AlarmRefBlendPerc, TrackMotion, SignalCheckColour, Exif from Monitors where Id = %d " , p_id ) ;
2016-04-29 20:57:31 +08:00
zmDbRow dbrow ;
if ( ! dbrow . fetch ( sql . c_str ( ) ) ) {
Error ( " Can't use query result: %s " , mysql_error ( & dbconn ) ) ;
exit ( mysql_errno ( & dbconn ) ) ;
}
Monitor * monitor = 0 ;
unsigned int col = 0 ;
unsigned int id = atoi ( dbrow [ col ] ) ; col + + ;
std : : string name = dbrow [ col ] ; col + + ;
unsigned int server_id = dbrow [ col ] ? atoi ( dbrow [ col ] ) : 0 ; col + + ;
2017-10-07 04:17:37 +08:00
unsigned int storage_id = dbrow [ col ] ? atoi ( dbrow [ col ] ) : 0 ; col + + ;
2016-04-29 20:57:31 +08:00
std : : string type = dbrow [ col ] ; col + + ;
int function = atoi ( dbrow [ col ] ) ; col + + ;
int enabled = atoi ( dbrow [ col ] ) ; col + + ;
2016-06-10 01:06:57 +08:00
std : : string linked_monitors = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
2017-10-07 04:17:37 +08:00
std : : string device = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
int channel = atoi ( dbrow [ col ] ) ; col + + ;
int format = atoi ( dbrow [ col ] ) ; col + + ;
bool v4l_multi_buffer = config . v4l_multi_buffer ;
if ( dbrow [ col ] ) {
if ( * dbrow [ col ] = = ' 0 ' ) {
v4l_multi_buffer = false ;
} else if ( * dbrow [ col ] = = ' 1 ' ) {
v4l_multi_buffer = true ;
}
}
col + + ;
int v4l_captures_per_frame = 0 ;
if ( dbrow [ col ] ) {
v4l_captures_per_frame = atoi ( dbrow [ col ] ) ;
} else {
v4l_captures_per_frame = config . captures_per_frame ;
}
Debug ( 1 , " Got %d for v4l_captures_per_frame " , v4l_captures_per_frame ) ;
col + + ;
2016-06-24 22:29:50 +08:00
std : : string protocol = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string method = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string host = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string port = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string path = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-06-10 00:51:22 +08:00
std : : string options = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-06-24 22:29:50 +08:00
std : : string user = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string pass = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
int width = atoi ( dbrow [ col ] ) ; col + + ;
int height = atoi ( dbrow [ col ] ) ; col + + ;
int colours = atoi ( dbrow [ col ] ) ; col + + ;
int palette = atoi ( dbrow [ col ] ) ; col + + ;
Orientation orientation = ( Orientation ) atoi ( dbrow [ col ] ) ; col + + ;
unsigned int deinterlacing = atoi ( dbrow [ col ] ) ; col + + ;
2016-07-14 22:27:24 +08:00
bool rtsp_describe = ( dbrow [ col ] & & * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
2016-04-29 20:57:31 +08:00
int savejpegs = atoi ( dbrow [ col ] ) ; col + + ;
2016-09-13 09:35:14 +08:00
VideoWriter videowriter = ( VideoWriter ) atoi ( dbrow [ col ] ) ; col + + ;
2017-11-14 14:59:15 +08:00
std : : string encoderparams = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string output_codec = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
std : : string output_container = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
bool record_audio = ( * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
int brightness = atoi ( dbrow [ col ] ) ; col + + ;
int contrast = atoi ( dbrow [ col ] ) ; col + + ;
int hue = atoi ( dbrow [ col ] ) ; col + + ;
int colour = atoi ( dbrow [ col ] ) ; col + + ;
2017-05-20 02:03:28 +08:00
const char * event_prefix = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
const char * label_format = dbrow [ col ] ? dbrow [ col ] : " " ; col + + ;
2016-04-29 20:57:31 +08:00
int label_x = atoi ( dbrow [ col ] ) ; col + + ;
int label_y = atoi ( dbrow [ col ] ) ; col + + ;
int label_size = atoi ( dbrow [ col ] ) ; col + + ;
int image_buffer_count = atoi ( dbrow [ col ] ) ; col + + ;
int warmup_count = atoi ( dbrow [ col ] ) ; col + + ;
int pre_event_count = atoi ( dbrow [ col ] ) ; col + + ;
int post_event_count = atoi ( dbrow [ col ] ) ; col + + ;
int stream_replay_buffer = atoi ( dbrow [ col ] ) ; col + + ;
int alarm_frame_count = atoi ( dbrow [ col ] ) ; col + + ;
int section_length = atoi ( dbrow [ col ] ) ; col + + ;
int frame_skip = atoi ( dbrow [ col ] ) ; col + + ;
int motion_frame_skip = atoi ( dbrow [ col ] ) ; col + + ;
double analysis_fps = dbrow [ col ] ? strtod ( dbrow [ col ] , NULL ) : 0 ; col + + ;
unsigned int analysis_update_delay = strtoul ( dbrow [ col + + ] , NULL , 0 ) ;
int capture_delay = ( dbrow [ col ] & & atof ( dbrow [ col ] ) > 0.0 ) ? int ( DT_PREC_3 / atof ( dbrow [ col ] ) ) : 0 ; col + + ;
int alarm_capture_delay = ( dbrow [ col ] & & atof ( dbrow [ col ] ) > 0.0 ) ? int ( DT_PREC_3 / atof ( dbrow [ col ] ) ) : 0 ; col + + ;
int fps_report_interval = atoi ( dbrow [ col ] ) ; col + + ;
int ref_blend_perc = atoi ( dbrow [ col ] ) ; col + + ;
int alarm_ref_blend_perc = atoi ( dbrow [ col ] ) ; col + + ;
int track_motion = atoi ( dbrow [ col ] ) ; col + + ;
int signal_check_colour ;
if ( dbrow [ col ] [ 0 ] = = ' # ' )
signal_check_colour = strtol ( dbrow [ col ] + 1 , 0 , 16 ) ;
else
signal_check_colour = strtol ( dbrow [ col ] , 0 , 16 ) ;
col + + ;
bool embed_exif = ( * dbrow [ col ] ! = ' 0 ' ) ; col + + ;
int extras = ( deinterlacing > > 24 ) & 0xff ;
Camera * camera = 0 ;
if ( type = = " Local " ) {
2011-02-16 05:59:06 +08:00
# if ZM_HAS_V4L
2016-04-29 20:57:31 +08:00
camera = new LocalCamera (
id ,
device . c_str ( ) ,
channel ,
format ,
v4l_multi_buffer ,
v4l_captures_per_frame ,
method ,
width ,
height ,
colours ,
palette ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio ,
extras
) ;
2011-02-16 05:59:06 +08:00
# else // ZM_HAS_V4L
2016-04-29 20:57:31 +08:00
Fatal ( " You must have video4linux libraries and headers installed to use local analog or USB cameras for monitor %d " , id ) ;
2011-02-16 05:59:06 +08:00
# endif // ZM_HAS_V4L
2017-10-04 04:28:56 +08:00
} else if ( type = = " NVSocket " ) {
camera = new RemoteCameraNVSocket (
id ,
host . c_str ( ) ,
port . c_str ( ) ,
path . c_str ( ) ,
width ,
height ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
2016-04-29 20:57:31 +08:00
} else if ( type = = " Remote " ) {
if ( protocol = = " http " ) {
camera = new RemoteCameraHttp (
id ,
method . c_str ( ) ,
host . c_str ( ) ,
port . c_str ( ) ,
path . c_str ( ) ,
width ,
height ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
} else if ( protocol = = " rtsp " ) {
2011-02-16 05:59:06 +08:00
# if HAVE_LIBAVFORMAT
2016-04-29 20:57:31 +08:00
camera = new RemoteCameraRtsp (
id ,
method . c_str ( ) ,
host . c_str ( ) ,
port . c_str ( ) ,
path . c_str ( ) ,
width ,
height ,
rtsp_describe ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
2011-02-16 05:59:06 +08:00
# else // HAVE_LIBAVFORMAT
2016-04-29 20:57:31 +08:00
Fatal ( " You must have ffmpeg libraries installed to use remote camera protocol '%s' for monitor %d " , protocol . c_str ( ) , id ) ;
2009-01-28 23:02:33 +08:00
# endif // HAVE_LIBAVFORMAT
2016-04-29 20:57:31 +08:00
} else {
Fatal ( " Unexpected remote camera protocol '%s' for monitor %d " , protocol . c_str ( ) , id ) ;
}
} else if ( type = = " File " ) {
camera = new FileCamera (
id ,
path . c_str ( ) ,
width ,
height ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
} else if ( type = = " Ffmpeg " ) {
2011-02-16 05:59:06 +08:00
# if HAVE_LIBAVFORMAT
2016-04-29 20:57:31 +08:00
camera = new FfmpegCamera (
id ,
path . c_str ( ) ,
method ,
options ,
width ,
height ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
2011-02-16 05:59:06 +08:00
# else // HAVE_LIBAVFORMAT
2016-04-29 20:57:31 +08:00
Fatal ( " You must have ffmpeg libraries installed to use ffmpeg cameras for monitor %d " , id ) ;
2009-01-28 23:02:33 +08:00
# endif // HAVE_LIBAVFORMAT
2016-04-29 20:57:31 +08:00
} else if ( type = = " Libvlc " ) {
2013-12-13 01:45:29 +08:00
# if HAVE_LIBVLC
2016-04-29 20:57:31 +08:00
camera = new LibvlcCamera (
id ,
path . c_str ( ) ,
method ,
options ,
width ,
height ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
2013-12-13 01:45:29 +08:00
# else // HAVE_LIBVLC
2016-04-29 20:57:31 +08:00
Fatal ( " You must have vlc libraries installed to use vlc cameras for monitor %d " , id ) ;
2013-12-13 01:45:29 +08:00
# endif // HAVE_LIBVLC
2016-04-29 20:57:31 +08:00
} else if ( type = = " cURL " ) {
2013-11-04 22:52:21 +08:00
# if HAVE_LIBCURL
2016-04-29 20:57:31 +08:00
camera = new cURLCamera (
id ,
path . c_str ( ) ,
user . c_str ( ) ,
pass . c_str ( ) ,
width ,
height ,
colours ,
brightness ,
contrast ,
hue ,
colour ,
purpose = = CAPTURE ,
record_audio
) ;
2013-11-04 22:52:21 +08:00
# else // HAVE_LIBCURL
2016-04-29 20:57:31 +08:00
Fatal ( " You must have libcurl installed to use ffmpeg cameras for monitor %d " , id ) ;
2013-11-04 22:52:21 +08:00
# endif // HAVE_LIBCURL
2016-04-29 20:57:31 +08:00
} else {
Fatal ( " Bogus monitor type '%s' for monitor %d " , type . c_str ( ) , id ) ;
}
monitor = new Monitor (
id ,
name . c_str ( ) ,
server_id ,
storage_id ,
function ,
enabled ,
linked_monitors . c_str ( ) ,
camera ,
orientation ,
deinterlacing ,
savejpegs ,
2017-10-28 11:36:49 +08:00
colours ,
2016-04-29 20:57:31 +08:00
videowriter ,
encoderparams ,
2017-11-14 14:59:15 +08:00
output_codec ,
output_container ,
2016-04-29 20:57:31 +08:00
record_audio ,
2017-05-20 02:03:28 +08:00
event_prefix ,
label_format ,
2016-04-29 20:57:31 +08:00
Coord ( label_x , label_y ) ,
label_size ,
image_buffer_count ,
warmup_count ,
pre_event_count ,
post_event_count ,
stream_replay_buffer ,
alarm_frame_count ,
section_length ,
frame_skip ,
motion_frame_skip ,
analysis_fps ,
analysis_update_delay ,
capture_delay ,
alarm_capture_delay ,
fps_report_interval ,
ref_blend_perc ,
alarm_ref_blend_perc ,
track_motion ,
signal_check_colour ,
embed_exif ,
purpose ,
0 ,
0
) ;
2016-09-09 21:15:04 +08:00
camera - > setMonitor ( monitor ) ;
2016-04-29 20:57:31 +08:00
int n_zones = 0 ;
if ( load_zones ) {
Zone * * zones = 0 ;
n_zones = Zone : : Load ( monitor , zones ) ;
monitor - > AddZones ( n_zones , zones ) ;
monitor - > AddPrivacyBitmask ( zones ) ;
}
Debug ( 1 , " Loaded monitor %d(%s), %d zones " , id , name . c_str ( ) , n_zones ) ;
return ( monitor ) ;
2003-03-26 19:57:29 +08:00
}
2016-09-13 09:35:14 +08:00
/* Returns 0 on success, even if no new images are available (transient error)
* Returns - 1 on failure .
*/
int Monitor : : Capture ( ) {
static int FirstCapture = 1 ; // Used in de-interlacing to indicate whether this is the even or odd image
2016-04-29 20:57:31 +08:00
2017-11-13 00:42:34 +08:00
unsigned int index = image_count % image_buffer_count ;
2016-04-29 20:57:31 +08:00
2017-11-15 05:16:07 +08:00
if ( ( index = = shared_data - > last_read_index ) & & ( function > MONITOR ) ) {
Warning ( " Buffer overrun at index %d, image %d, slow down capture, speed up analysis or increase ring buffer size " , index , image_count ) ;
time_t now = time ( 0 ) ;
2017-11-22 08:55:40 +08:00
double approxFps = double ( image_buffer_count ) / double ( now - image_buffer [ index ] . timestamp - > tv_sec ) ;
2017-11-15 05:16:07 +08:00
time_t last_read_delta = now - shared_data - > last_read_time ;
if ( last_read_delta > ( image_buffer_count / approxFps ) ) {
Warning ( " Last image read from shared memory %ld seconds ago, zma may have gone away " , last_read_delta )
shared_data - > last_read_index = image_buffer_count ;
}
2017-12-06 05:16:52 +08:00
} else {
2017-12-20 03:06:58 +08:00
Debug ( 2 , " Capture: Current write index %d, last read index %d, current (%d) " , shared_data - > last_write_index , shared_data - > last_read_index , index ) ;
2017-11-15 05:16:07 +08:00
}
2016-09-13 09:35:14 +08:00
2017-11-14 01:14:57 +08:00
ZMPacket * packet = & image_buffer [ index ] ;
2017-12-04 00:09:01 +08:00
packet - > lock ( ) ;
2017-11-21 00:48:56 +08:00
packet - > reset ( ) ;
2017-11-22 08:55:40 +08:00
Image * capture_image = packet - > image ;
2017-10-23 21:51:41 +08:00
int captureResult = 0 ;
2016-09-26 23:01:47 +08:00
if ( deinterlacing_value = = 4 ) {
2016-04-29 20:57:31 +08:00
if ( FirstCapture ! = 1 ) {
/* Copy the next image into the shared memory */
capture_image - > CopyBuffer ( * ( next_buffer . image ) ) ;
}
/* Capture a new next image */
2017-11-14 01:14:57 +08:00
captureResult = camera - > Capture ( * packet ) ;
2017-11-22 08:55:40 +08:00
gettimeofday ( packet - > timestamp , NULL ) ;
2016-04-29 20:57:31 +08:00
if ( FirstCapture ) {
2016-09-13 09:35:14 +08:00
FirstCapture = 0 ;
return 0 ;
}
2016-04-29 20:57:31 +08:00
} else {
2017-11-14 01:14:57 +08:00
captureResult = camera - > Capture ( * packet ) ;
2017-11-22 08:55:40 +08:00
gettimeofday ( packet - > timestamp , NULL ) ;
2017-11-13 00:42:34 +08:00
if ( captureResult < 0 ) {
2017-10-23 21:51:41 +08:00
// Unable to capture image for temporary reason
// Fake a signal loss image
Rgb signalcolor ;
2017-11-13 00:42:34 +08:00
/* HTML colour code is actually BGR in memory, we want RGB */
signalcolor = rgb_convert ( signal_check_colour , ZM_SUBPIX_ORDER_BGR ) ;
2017-10-23 21:51:41 +08:00
capture_image - > Fill ( signalcolor ) ;
2017-11-13 00:42:34 +08:00
shared_data - > signal = false ;
2017-12-04 00:09:01 +08:00
packet - > unlock ( ) ;
2017-11-13 00:42:34 +08:00
return - 1 ;
2017-11-15 05:16:07 +08:00
} else if ( captureResult > 0 ) {
2017-10-23 21:51:41 +08:00
2017-11-22 00:58:15 +08:00
// Analysis thread will take care of consuming and emptying the packets.
2017-10-23 21:51:41 +08:00
2017-11-28 00:28:36 +08:00
if ( packet - > packet . stream_index ! = video_stream_id ) {
Debug ( 2 , " Have audio packet (%d) != videostream_id:(%d) q.vpktcount(%d) event?(%d) " ,
2017-12-01 20:26:34 +08:00
packet - > packet . stream_index , video_stream_id , packetqueue - > video_packet_count , ( event ? 1 : 0 ) ) ;
2017-11-22 08:55:40 +08:00
// Only queue if we have some video packets in there.
2017-12-01 20:26:34 +08:00
mutex . lock ( ) ;
if ( packetqueue - > video_packet_count | | event ) {
2017-11-23 21:40:49 +08:00
// Need to copy it into another ZMPacket.
ZMPacket * audio_packet = new ZMPacket ( * packet ) ;
2017-12-02 07:50:28 +08:00
# if LIBAVCODEC_VERSION_CHECK(57, 64, 0, 64, 0)
2017-11-23 21:40:49 +08:00
audio_packet - > codec_type = camera - > get_AudioStream ( ) - > codecpar - > codec_type ;
2017-12-02 07:50:28 +08:00
# else
audio_packet - > codec_type = camera - > get_AudioStream ( ) - > codec - > codec_type ;
# endif
2017-11-22 08:55:40 +08:00
Debug ( 2 , " Queueing packet " ) ;
2017-12-01 20:26:34 +08:00
packetqueue - > queuePacket ( audio_packet ) ;
2017-11-22 08:55:40 +08:00
}
2017-11-22 00:58:15 +08:00
// Don't update last_write_index because that is used for live streaming
2017-11-23 21:40:49 +08:00
//shared_data->last_write_time = image_buffer[index].timestamp->tv_sec;
2017-12-04 00:09:01 +08:00
2017-11-22 00:58:15 +08:00
mutex . unlock ( ) ;
2017-12-04 00:09:01 +08:00
packet - > unlock ( ) ;
2017-11-22 00:58:15 +08:00
return 1 ;
2017-11-18 03:30:38 +08:00
}
2017-10-23 21:51:41 +08:00
2017-12-02 07:50:28 +08:00
# if LIBAVCODEC_VERSION_CHECK(57, 64, 0, 64, 0)
2017-11-28 00:28:36 +08:00
packet - > codec_type = camera - > get_VideoStream ( ) - > codecpar - > codec_type ;
2017-12-02 07:50:28 +08:00
# else
packet - > codec_type = camera - > get_VideoStream ( ) - > codec - > codec_type ;
# endif
2016-04-29 20:57:31 +08:00
2017-11-28 00:28:36 +08:00
if ( packet - > packet . size & & ! packet - > in_frame ) {
2017-12-01 03:37:36 +08:00
//Debug(2,"About to decode");
2017-11-28 00:28:36 +08:00
if ( packet - > decode ( camera - > get_VideoCodecContext ( ) ) ) {
2017-12-01 03:37:36 +08:00
//Debug(2,"Getimage");
2017-11-28 00:28:36 +08:00
packet - > get_image ( ) ;
}
2017-11-28 21:29:03 +08:00
// Have an av_packet,
2017-12-01 20:26:34 +08:00
mutex . lock ( ) ;
if ( packetqueue - > video_packet_count | | packet - > keyframe | | event ) {
2017-12-04 00:09:01 +08:00
Debug ( 2 , " Have video packet for index (%d) " , index ) ;
2017-12-01 20:26:34 +08:00
packetqueue - > queuePacket ( packet ) ;
2017-12-02 07:42:19 +08:00
} else {
Debug ( 2 , " Not queiing video packet for index (%d) " , index ) ;
2017-11-28 21:29:03 +08:00
}
2017-12-01 20:26:34 +08:00
mutex . unlock ( ) ;
2017-11-28 21:29:03 +08:00
} else {
2017-12-01 20:26:34 +08:00
mutex . lock ( ) ;
2017-11-28 21:29:03 +08:00
// Non-avpackets are all keyframes.
2017-12-01 20:26:34 +08:00
Debug ( 2 , " Queueing decoded video packet " ) ;
packetqueue - > queuePacket ( packet ) ;
mutex . unlock ( ) ;
2016-04-29 20:57:31 +08:00
}
2017-11-21 00:48:56 +08:00
/* Deinterlacing */
if ( deinterlacing_value ) {
if ( deinterlacing_value = = 1 ) {
capture_image - > Deinterlace_Discard ( ) ;
} else if ( deinterlacing_value = = 2 ) {
capture_image - > Deinterlace_Linear ( ) ;
} else if ( deinterlacing_value = = 3 ) {
capture_image - > Deinterlace_Blend ( ) ;
} else if ( deinterlacing_value = = 4 ) {
capture_image - > Deinterlace_4Field ( next_buffer . image , ( deinterlacing > > 8 ) & 0xff ) ;
} else if ( deinterlacing_value = = 5 ) {
capture_image - > Deinterlace_Blend_CustomRatio ( ( deinterlacing > > 8 ) & 0xff ) ;
2016-04-29 20:57:31 +08:00
}
2017-11-15 05:16:07 +08:00
}
2017-10-23 21:51:41 +08:00
2017-11-21 00:48:56 +08:00
if ( orientation ! = ROTATE_0 ) {
switch ( orientation ) {
case ROTATE_0 :
// No action required
break ;
case ROTATE_90 :
case ROTATE_180 :
case ROTATE_270 :
capture_image - > Rotate ( ( orientation - 1 ) * 90 ) ;
break ;
case FLIP_HORI :
case FLIP_VERT :
capture_image - > Flip ( orientation = = FLIP_HORI ) ;
break ;
2016-04-29 20:57:31 +08:00
}
2017-11-15 05:16:07 +08:00
}
2017-10-23 21:51:41 +08:00
2017-11-21 00:48:56 +08:00
if ( privacy_bitmask )
capture_image - > MaskPrivacy ( privacy_bitmask ) ;
2017-10-23 21:51:41 +08:00
2017-11-21 00:48:56 +08:00
if ( config . timestamp_on_capture ) {
2017-11-22 08:55:40 +08:00
TimestampImage ( capture_image , packet - > timestamp ) ;
2016-04-29 20:57:31 +08:00
}
2017-10-23 21:51:41 +08:00
2017-11-18 05:49:01 +08:00
shared_data - > signal = CheckSignal ( capture_image ) ;
shared_data - > last_write_index = index ;
2017-11-22 08:55:40 +08:00
shared_data - > last_write_time = image_buffer [ index ] . timestamp - > tv_sec ;
2017-11-18 05:49:01 +08:00
image_count + + ;
2017-12-04 00:09:01 +08:00
packet - > unlock ( ) ;
2017-11-23 21:40:49 +08:00
if ( fps_report_interval & & ! ( image_count % fps_report_interval ) ) {
time_t now = image_buffer [ index ] . timestamp - > tv_sec ;
// If we are too fast, we get div by zero. This seems to happen in the case of audio packets.
if ( now ! = last_fps_time ) {
// # of images per interval / the amount of time it took
2018-02-06 23:34:17 +08:00
double new_capture_fps = double ( fps_report_interval ) / ( now - last_fps_time ) ;
2017-12-06 05:16:52 +08:00
//Info( "%d -> %d -> %d", fps_report_interval, now, last_fps_time );
2017-11-23 21:40:49 +08:00
//Info( "%d -> %d -> %lf -> %lf", now-last_fps_time, fps_report_interval/(now-last_fps_time), double(fps_report_interval)/(now-last_fps_time), fps );
2018-02-06 23:34:17 +08:00
Info ( " %s: %d - Capturing at %.2lf fps " , name , image_count , capture_fps ) ;
if ( new_capture_fps ! = capture_fps ) {
last_fps_time = now ;
static char sql [ ZM_SQL_SML_BUFSIZ ] ;
snprintf ( sql , sizeof ( sql ) , " INSERT INTO Monitor_Status (MonitorId,CaptureFPS) VALUES (%d, %.2lf) ON DUPLICATE KEY UPDATE CaptureFPS = %.2lf " , id , capture_fps , capture_fps ) ;
if ( mysql_query ( & dbconn , sql ) ) {
Error ( " Can't run query: %s " , mysql_error ( & dbconn ) ) ;
}
} // end if fps has changed
2017-11-23 21:40:49 +08:00
}
} // end if report fps
2017-11-15 05:16:07 +08:00
} else { // result == 0
2017-11-21 00:48:56 +08:00
// Question is, do we update last_write_index etc?
2017-12-20 03:06:58 +08:00
packet - > unlock ( ) ;
return 0 ;
2016-04-29 20:57:31 +08:00
2017-11-15 05:16:07 +08:00
} // end if result
2017-11-13 23:17:46 +08:00
} // end if deinterlacing
2016-04-29 20:57:31 +08:00
2017-10-23 21:51:41 +08:00
// Icon: I'm not sure these should be here. They have nothing to do with capturing
if ( shared_data - > action & GET_SETTINGS ) {
shared_data - > brightness = camera - > Brightness ( ) ;
shared_data - > hue = camera - > Hue ( ) ;
shared_data - > colour = camera - > Colour ( ) ;
shared_data - > contrast = camera - > Contrast ( ) ;
shared_data - > action & = ~ GET_SETTINGS ;
}
if ( shared_data - > action & SET_SETTINGS ) {
camera - > Brightness ( shared_data - > brightness ) ;
camera - > Hue ( shared_data - > hue ) ;
camera - > Colour ( shared_data - > colour ) ;
camera - > Contrast ( shared_data - > contrast ) ;
shared_data - > action & = ~ SET_SETTINGS ;
}
2017-11-04 01:49:42 +08:00
return captureResult ;
2017-11-10 03:50:20 +08:00
} // end Monitor::Capture
2016-04-01 00:54:56 +08:00
2016-12-09 00:49:54 +08:00
void Monitor : : TimestampImage ( Image * ts_image , const struct timeval * ts_time ) const {
if ( label_format [ 0 ] ) {
2016-04-29 20:57:31 +08:00
// Expand the strftime macros first
char label_time_text [ 256 ] ;
strftime ( label_time_text , sizeof ( label_time_text ) , label_format , localtime ( & ts_time - > tv_sec ) ) ;
char label_text [ 1024 ] ;
const char * s_ptr = label_time_text ;
char * d_ptr = label_text ;
2016-12-09 00:49:54 +08:00
while ( * s_ptr & & ( ( d_ptr - label_text ) < ( unsigned int ) sizeof ( label_text ) ) ) {
2017-08-21 23:27:11 +08:00
if ( * s_ptr = = config . timestamp_code_char [ 0 ] ) {
2016-04-29 20:57:31 +08:00
bool found_macro = false ;
2016-12-09 00:49:54 +08:00
switch ( * ( s_ptr + 1 ) ) {
2016-04-29 20:57:31 +08:00
case ' N ' :
d_ptr + = snprintf ( d_ptr , sizeof ( label_text ) - ( d_ptr - label_text ) , " %s " , name ) ;
found_macro = true ;
break ;
case ' Q ' :
d_ptr + = snprintf ( d_ptr , sizeof ( label_text ) - ( d_ptr - label_text ) , " %s " , trigger_data - > trigger_showtext ) ;
found_macro = true ;
break ;
case ' f ' :
d_ptr + = snprintf ( d_ptr , sizeof ( label_text ) - ( d_ptr - label_text ) , " %02ld " , ts_time - > tv_usec / 10000 ) ;
found_macro = true ;
break ;
}
2016-12-09 00:49:54 +08:00
if ( found_macro ) {
2016-04-29 20:57:31 +08:00
s_ptr + = 2 ;
continue ;
}
}
* d_ptr + + = * s_ptr + + ;
}
* d_ptr = ' \0 ' ;
ts_image - > Annotate ( label_text , label_coord , label_size ) ;
}
2016-04-01 00:54:56 +08:00
}
2016-09-13 20:58:38 +08:00
bool Monitor : : closeEvent ( ) {
2016-12-09 00:49:54 +08:00
if ( event ) {
if ( function = = RECORD | | function = = MOCORD ) {
2016-04-29 20:57:31 +08:00
gettimeofday ( & ( event - > EndTime ( ) ) , NULL ) ;
}
delete event ;
2017-04-13 01:36:39 +08:00
video_store_data - > recording = ( struct timeval ) { 0 } ;
2016-04-29 20:57:31 +08:00
event = 0 ;
return ( true ) ;
}
return ( false ) ;
2016-04-01 00:54:56 +08:00
}
2016-12-09 00:49:54 +08:00
unsigned int Monitor : : DetectMotion ( const Image & comp_image , Event : : StringSet & zoneSet ) {
2016-04-29 20:57:31 +08:00
bool alarm = false ;
unsigned int score = 0 ;
if ( n_zones < = 0 ) return ( alarm ) ;
Storage * storage = this - > getStorage ( ) ;
2016-12-09 00:49:54 +08:00
if ( config . record_diag_images ) {
2016-04-29 20:57:31 +08:00
static char diag_path [ PATH_MAX ] = " " ;
2016-12-09 00:49:54 +08:00
if ( ! diag_path [ 0 ] ) {
2016-04-29 20:57:31 +08:00
snprintf ( diag_path , sizeof ( diag_path ) , " %s/%d/diag-r.jpg " , storage - > Path ( ) , id ) ;
}
ref_image . WriteJpeg ( diag_path ) ;
}
2017-02-19 04:22:56 +08:00
ref_image . Delta ( comp_image , & delta_image ) ;
2016-04-29 20:57:31 +08:00
2016-12-09 00:49:54 +08:00
if ( config . record_diag_images ) {
2016-04-29 20:57:31 +08:00
static char diag_path [ PATH_MAX ] = " " ;
2016-12-09 00:49:54 +08:00
if ( ! diag_path [ 0 ] ) {
2016-04-29 20:57:31 +08:00
snprintf ( diag_path , sizeof ( diag_path ) , " %s/%d/diag-d.jpg " , storage - > Path ( ) , id ) ;
}
delta_image . WriteJpeg ( diag_path ) ;
}
// Blank out all exclusion zones
2016-12-09 00:49:54 +08:00
for ( int n_zone = 0 ; n_zone < n_zones ; n_zone + + ) {
2016-04-29 20:57:31 +08:00
Zone * zone = zones [ n_zone ] ;
// need previous alarmed state for preclusive zone, so don't clear just yet
if ( ! zone - > IsPreclusive ( ) )
zone - > ClearAlarm ( ) ;
2016-12-09 00:49:54 +08:00
if ( ! zone - > IsInactive ( ) ) {
2016-04-29 20:57:31 +08:00
continue ;
}
Debug ( 3 , " Blanking inactive zone %s " , zone - > Label ( ) ) ;
delta_image . Fill ( RGB_BLACK , zone - > GetPolygon ( ) ) ;
}
// Check preclusive zones first
2016-12-09 00:49:54 +08:00
for ( int n_zone = 0 ; n_zone < n_zones ; n_zone + + ) {
2016-04-29 20:57:31 +08:00
Zone * zone = zones [ n_zone ] ;
2016-12-09 00:49:54 +08:00
if ( ! zone - > IsPreclusive ( ) ) {
2016-04-29 20:57:31 +08:00
continue ;
}
int old_zone_score = zone - > Score ( ) ;
bool old_zone_alarmed = zone - > Alarmed ( ) ;
Debug ( 3 , " Checking preclusive zone %s - old score: %d, state: %s " , zone - > Label ( ) , old_zone_score , zone - > Alarmed ( ) ? " alarmed " : " quiet " ) ;
2016-12-09 00:49:54 +08:00
if ( zone - > CheckAlarms ( & delta_image ) ) {
2016-04-29 20:57:31 +08:00
alarm = true ;
score + = zone - > Score ( ) ;
zone - > SetAlarm ( ) ;
Debug ( 3 , " Zone is alarmed, zone score = %d " , zone - > Score ( ) ) ;
zoneSet . insert ( zone - > Label ( ) ) ;
//zone->ResetStats();
} else {
// check if end of alarm
if ( old_zone_alarmed ) {
Debug ( 3 , " Preclusive Zone %s alarm Ends. Prevíous score: %d " , zone - > Label ( ) , old_zone_score ) ;
if ( old_zone_score > 0 ) {
zone - > SetExtendAlarmCount ( zone - > GetExtendAlarmFrames ( ) ) ;
}
if ( zone - > CheckExtendAlarmCount ( ) ) {
alarm = true ;
2017-05-17 00:04:56 +08:00
zone - > SetAlarm ( ) ;
2016-04-29 20:57:31 +08:00
} else {
zone - > ClearAlarm ( ) ;
}
}
}
}
Coord alarm_centre ;
int top_score = - 1 ;
2017-05-17 00:04:56 +08:00
if ( alarm ) {
2016-04-29 20:57:31 +08:00
alarm = false ;
score = 0 ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
// Find all alarm pixels in active zones
2016-12-09 00:49:54 +08:00
for ( int n_zone = 0 ; n_zone < n_zones ; n_zone + + ) {
2016-04-29 20:57:31 +08:00
Zone * zone = zones [ n_zone ] ;
2016-12-09 00:49:54 +08:00
if ( ! zone - > IsActive ( ) | | zone - > IsPreclusive ( ) ) {
2016-04-29 20:57:31 +08:00
continue ;
}
Debug ( 3 , " Checking active zone %s " , zone - > Label ( ) ) ;
2016-12-09 00:49:54 +08:00
if ( zone - > CheckAlarms ( & delta_image ) ) {
2016-04-29 20:57:31 +08:00
alarm = true ;
score + = zone - > Score ( ) ;
zone - > SetAlarm ( ) ;
Debug ( 3 , " Zone is alarmed, zone score = %d " , zone - > Score ( ) ) ;
zoneSet . insert ( zone - > Label ( ) ) ;
2016-12-09 00:49:54 +08:00
if ( config . opt_control & & track_motion ) {
if ( ( int ) zone - > Score ( ) > top_score ) {
2016-04-29 20:57:31 +08:00
top_score = zone - > Score ( ) ;
alarm_centre = zone - > GetAlarmCentre ( ) ;
}
}
}
}
2016-12-09 00:49:54 +08:00
if ( alarm ) {
for ( int n_zone = 0 ; n_zone < n_zones ; n_zone + + ) {
2016-04-29 20:57:31 +08:00
Zone * zone = zones [ n_zone ] ;
2017-02-19 04:22:56 +08:00
// Wasn't this zone already checked above?
2016-12-09 00:49:54 +08:00
if ( ! zone - > IsInclusive ( ) ) {
2016-04-29 20:57:31 +08:00
continue ;
}
Debug ( 3 , " Checking inclusive zone %s " , zone - > Label ( ) ) ;
2016-12-09 00:49:54 +08:00
if ( zone - > CheckAlarms ( & delta_image ) ) {
2016-04-29 20:57:31 +08:00
alarm = true ;
score + = zone - > Score ( ) ;
zone - > SetAlarm ( ) ;
Debug ( 3 , " Zone is alarmed, zone score = %d " , zone - > Score ( ) ) ;
zoneSet . insert ( zone - > Label ( ) ) ;
2016-12-09 00:49:54 +08:00
if ( config . opt_control & & track_motion ) {
if ( zone - > Score ( ) > ( unsigned int ) top_score ) {
2016-04-29 20:57:31 +08:00
top_score = zone - > Score ( ) ;
alarm_centre = zone - > GetAlarmCentre ( ) ;
}
}
}
}
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
// Find all alarm pixels in exclusive zones
2016-12-09 00:49:54 +08:00
for ( int n_zone = 0 ; n_zone < n_zones ; n_zone + + ) {
2016-04-29 20:57:31 +08:00
Zone * zone = zones [ n_zone ] ;
2016-12-09 00:49:54 +08:00
if ( ! zone - > IsExclusive ( ) ) {
2016-04-29 20:57:31 +08:00
continue ;
}
Debug ( 3 , " Checking exclusive zone %s " , zone - > Label ( ) ) ;
2016-12-09 00:49:54 +08:00
if ( zone - > CheckAlarms ( & delta_image ) ) {
2016-04-29 20:57:31 +08:00
alarm = true ;
score + = zone - > Score ( ) ;
zone - > SetAlarm ( ) ;
Debug ( 3 , " Zone is alarmed, zone score = %d " , zone - > Score ( ) ) ;
zoneSet . insert ( zone - > Label ( ) ) ;
}
}
2017-02-19 04:22:56 +08:00
} // end if alarm or not
2016-04-29 20:57:31 +08:00
}
2016-12-09 00:49:54 +08:00
if ( top_score > 0 ) {
2016-04-29 20:57:31 +08:00
shared_data - > alarm_x = alarm_centre . X ( ) ;
shared_data - > alarm_y = alarm_centre . Y ( ) ;
2017-12-02 03:33:51 +08:00
Info ( " Got alarm centre at %d,%d, at count %d " , shared_data - > alarm_x , shared_data - > alarm_y , analysis_image_count ) ;
2016-12-09 00:49:54 +08:00
} else {
2016-04-29 20:57:31 +08:00
shared_data - > alarm_x = shared_data - > alarm_y = - 1 ;
}
// This is a small and innocent hack to prevent scores of 0 being returned in alarm state
return ( score ? score : alarm ) ;
2003-03-26 19:57:29 +08:00
}
2005-12-23 00:46:25 +08:00
2016-12-09 00:49:54 +08:00
bool Monitor : : DumpSettings ( char * output , bool verbose ) {
2016-04-29 20:57:31 +08:00
output [ 0 ] = 0 ;
2009-05-08 17:47:37 +08:00
2016-04-29 20:57:31 +08:00
sprintf ( output + strlen ( output ) , " Id : %d \n " , id ) ;
sprintf ( output + strlen ( output ) , " Name : %s \n " , name ) ;
sprintf ( output + strlen ( output ) , " Type : %s \n " , camera - > IsLocal ( ) ? " Local " : ( camera - > IsRemote ( ) ? " Remote " : " File " ) ) ;
2011-02-16 05:59:06 +08:00
# if ZM_HAS_V4L
2016-12-09 00:49:54 +08:00
if ( camera - > IsLocal ( ) ) {
2016-04-29 20:57:31 +08:00
sprintf ( output + strlen ( output ) , " Device : %s \n " , ( ( LocalCamera * ) camera ) - > Device ( ) . c_str ( ) ) ;
sprintf ( output + strlen ( output ) , " Channel : %d \n " , ( ( LocalCamera * ) camera ) - > Channel ( ) ) ;
sprintf ( output + strlen ( output ) , " Standard : %d \n " , ( ( LocalCamera * ) camera ) - > Standard ( ) ) ;
2016-12-09 00:49:54 +08:00
} else
2011-02-16 05:59:06 +08:00
# endif // ZM_HAS_V4L
2016-12-09 00:49:54 +08:00
if ( camera - > IsRemote ( ) ) {
2016-04-29 20:57:31 +08:00
sprintf ( output + strlen ( output ) , " Protocol : %s \n " , ( ( RemoteCamera * ) camera ) - > Protocol ( ) . c_str ( ) ) ;
sprintf ( output + strlen ( output ) , " Host : %s \n " , ( ( RemoteCamera * ) camera ) - > Host ( ) . c_str ( ) ) ;
sprintf ( output + strlen ( output ) , " Port : %s \n " , ( ( RemoteCamera * ) camera ) - > Port ( ) . c_str ( ) ) ;
sprintf ( output + strlen ( output ) , " Path : %s \n " , ( ( RemoteCamera * ) camera ) - > Path ( ) . c_str ( ) ) ;
2016-12-09 00:49:54 +08:00
} else if ( camera - > IsFile ( ) ) {
2016-04-29 20:57:31 +08:00
sprintf ( output + strlen ( output ) , " Path : %s \n " , ( ( FileCamera * ) camera ) - > Path ( ) ) ;
}
2009-01-28 23:02:33 +08:00
# if HAVE_LIBAVFORMAT
2016-12-09 00:49:54 +08:00
else if ( camera - > IsFfmpeg ( ) ) {
2016-04-29 20:57:31 +08:00
sprintf ( output + strlen ( output ) , " Path : %s \n " , ( ( FfmpegCamera * ) camera ) - > Path ( ) . c_str ( ) ) ;
}
2009-01-28 23:02:33 +08:00
# endif // HAVE_LIBAVFORMAT
2016-04-29 20:57:31 +08:00
sprintf ( output + strlen ( output ) , " Width : %d \n " , camera - > Width ( ) ) ;
sprintf ( output + strlen ( output ) , " Height : %d \n " , camera - > Height ( ) ) ;
2011-02-16 05:59:06 +08:00
# if ZM_HAS_V4L
2016-12-09 00:49:54 +08:00
if ( camera - > IsLocal ( ) ) {
2016-04-29 20:57:31 +08:00
sprintf ( output + strlen ( output ) , " Palette : %d \n " , ( ( LocalCamera * ) camera ) - > Palette ( ) ) ;
}
2011-02-16 05:59:06 +08:00
# endif // ZM_HAS_V4L
2016-04-29 20:57:31 +08:00
sprintf ( output + strlen ( output ) , " Colours : %d \n " , camera - > Colours ( ) ) ;
sprintf ( output + strlen ( output ) , " Subpixel Order : %d \n " , camera - > SubpixelOrder ( ) ) ;
sprintf ( output + strlen ( output ) , " Event Prefix : %s \n " , event_prefix ) ;
sprintf ( output + strlen ( output ) , " Label Format : %s \n " , label_format ) ;
sprintf ( output + strlen ( output ) , " Label Coord : %d,%d \n " , label_coord . X ( ) , label_coord . Y ( ) ) ;
sprintf ( output + strlen ( output ) , " Label Size : %d \n " , label_size ) ;
sprintf ( output + strlen ( output ) , " Image Buffer Count : %d \n " , image_buffer_count ) ;
sprintf ( output + strlen ( output ) , " Warmup Count : %d \n " , warmup_count ) ;
sprintf ( output + strlen ( output ) , " Pre Event Count : %d \n " , pre_event_count ) ;
sprintf ( output + strlen ( output ) , " Post Event Count : %d \n " , post_event_count ) ;
sprintf ( output + strlen ( output ) , " Stream Replay Buffer : %d \n " , stream_replay_buffer ) ;
sprintf ( output + strlen ( output ) , " Alarm Frame Count : %d \n " , alarm_frame_count ) ;
sprintf ( output + strlen ( output ) , " Section Length : %d \n " , section_length ) ;
2017-12-13 01:56:19 +08:00
sprintf ( output + strlen ( output ) , " Maximum FPS : %.2f \n " , capture_delay ? ( double ) DT_PREC_3 / capture_delay : 0.0 ) ;
sprintf ( output + strlen ( output ) , " Alarm Maximum FPS : %.2f \n " , alarm_capture_delay ? ( double ) DT_PREC_3 / alarm_capture_delay : 0.0 ) ;
2016-04-29 20:57:31 +08:00
sprintf ( output + strlen ( output ) , " Reference Blend %%ge : %d \n " , ref_blend_perc ) ;
sprintf ( output + strlen ( output ) , " Alarm Reference Blend %%ge : %d \n " , alarm_ref_blend_perc ) ;
sprintf ( output + strlen ( output ) , " Track Motion : %d \n " , track_motion ) ;
sprintf ( output + strlen ( output ) , " Function: %d - %s \n " , function ,
function = = NONE ? " None " : (
function = = MONITOR ? " Monitor Only " : (
function = = MODECT ? " Motion Detection " : (
function = = RECORD ? " Continuous Record " : (
function = = MOCORD ? " Continuous Record with Motion Detection " : (
function = = NODECT ? " Externally Triggered only, no Motion Detection " : " Unknown "
) ) ) ) ) ) ;
sprintf ( output + strlen ( output ) , " Zones : %d \n " , n_zones ) ;
2016-12-09 00:49:54 +08:00
for ( int i = 0 ; i < n_zones ; i + + ) {
2016-04-29 20:57:31 +08:00
zones [ i ] - > DumpSettings ( output + strlen ( output ) , verbose ) ;
}
return ( true ) ;
2016-04-01 00:54:56 +08:00
} // bool Monitor::DumpSettings( char *output, bool verbose )
2006-01-23 02:31:55 +08:00
2016-05-14 02:51:26 +08:00
unsigned int Monitor : : Colours ( ) const { return ( camera - > Colours ( ) ) ; }
2016-06-22 01:48:32 +08:00
unsigned int Monitor : : SubpixelOrder ( ) const { return ( camera - > SubpixelOrder ( ) ) ; }
2017-11-28 21:29:03 +08:00
2016-06-22 01:48:32 +08:00
int Monitor : : PrimeCapture ( ) {
2017-11-22 00:58:15 +08:00
int ret = camera - > PrimeCapture ( ) ;
2017-12-01 20:26:34 +08:00
if ( ret = = 0 ) {
video_stream_id = camera - > get_VideoStreamId ( ) ;
2017-12-02 07:42:19 +08:00
packetqueue = new zm_packetqueue ( image_buffer_count , video_stream_id ) ;
2017-12-01 20:26:34 +08:00
}
2017-12-02 03:33:51 +08:00
Debug ( 2 , " Video stream id is (%d), minimum_packets to keep in buffer(%d) " , video_stream_id , pre_event_buffer_count ) ;
2017-11-22 00:58:15 +08:00
return ret ;
2016-06-22 01:48:32 +08:00
}
int Monitor : : PreCapture ( ) {
return ( camera - > PreCapture ( ) ) ;
}
int Monitor : : PostCapture ( ) {
return ( camera - > PostCapture ( ) ) ;
}
2016-10-12 21:12:09 +08:00
Monitor : : Orientation Monitor : : getOrientation ( ) const { return orientation ; }
2017-04-11 09:51:18 +08:00
2017-10-07 23:30:41 +08:00
// Wait for camera to get an image, and then assign it as the base reference image. So this should be done as the first task in the analysis thread startup.
void Monitor : : get_ref_image ( ) {
2017-11-18 03:30:38 +08:00
while (
2017-10-07 23:30:41 +08:00
( shared_data - > last_write_index = = ( unsigned int ) image_buffer_count )
& &
( shared_data - > last_write_time = = 0 )
2017-12-01 03:37:36 +08:00
& & ! zm_terminate
2017-10-07 23:30:41 +08:00
) {
2017-12-15 23:46:43 +08:00
Warning ( " Waiting for capture daemon lwi(%d) lwt(%d) " , shared_data - > last_write_index , shared_data - > last_write_time ) ;
2017-12-09 10:29:05 +08:00
usleep ( 50000 ) ;
2017-10-07 23:30:41 +08:00
}
2017-12-09 10:29:05 +08:00
int last_write_index = shared_data - > last_write_index ;
Warning ( " Waiting for capture daemon unlock " ) ;
image_buffer [ last_write_index ] . mutex . lock ( ) ;
ref_image . Assign ( width , height , camera - > Colours ( ) , camera - > SubpixelOrder ( ) , image_buffer [ last_write_index ] . image - > Buffer ( ) , camera - > ImageSize ( ) ) ;
image_buffer [ last_write_index ] . mutex . unlock ( ) ;
2017-10-07 23:30:41 +08:00
}