2003-03-26 19:57:29 +08:00
|
|
|
//
|
2003-04-22 22:15:01 +08:00
|
|
|
// ZoneMinder Event Class Implementation, $Date$, $Revision$
|
2003-03-26 19:57:29 +08:00
|
|
|
// Copyright (C) 2003 Philip Coombes
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
//
|
|
|
|
|
2003-04-22 22:15:01 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
|
2003-03-26 19:57:29 +08:00
|
|
|
#include "zm.h"
|
|
|
|
#include "zm_db.h"
|
|
|
|
#include "zm_event.h"
|
|
|
|
#include "zm_monitor.h"
|
|
|
|
|
2003-04-22 22:15:01 +08:00
|
|
|
#include "zmf.h"
|
|
|
|
|
2003-03-26 19:57:29 +08:00
|
|
|
Event::Event( Monitor *p_monitor, struct timeval p_start_time ) : monitor( p_monitor ), start_time( p_start_time )
|
|
|
|
{
|
2003-07-04 04:39:47 +08:00
|
|
|
static char sql[BUFSIZ];
|
2003-03-26 19:57:29 +08:00
|
|
|
static char start_time_str[32];
|
|
|
|
|
|
|
|
strftime( start_time_str, sizeof(start_time_str), "%Y-%m-%d %H:%M:%S", localtime( &start_time.tv_sec ) );
|
2003-10-08 20:54:35 +08:00
|
|
|
sprintf( sql, "insert into Events ( MonitorId, Name, StartTime ) values ( %d, 'New Event', '%s' )", monitor->Id(), start_time_str );
|
2003-03-26 19:57:29 +08:00
|
|
|
if ( mysql_query( &dbconn, sql ) )
|
|
|
|
{
|
2003-04-15 17:04:38 +08:00
|
|
|
Error(( "Can't insert event: %s", mysql_error( &dbconn ) ));
|
2003-03-26 19:57:29 +08:00
|
|
|
exit( mysql_errno( &dbconn ) );
|
|
|
|
}
|
|
|
|
id = mysql_insert_id( &dbconn );
|
2003-09-23 17:52:45 +08:00
|
|
|
end_time.tv_sec = 0;
|
2003-03-26 19:57:29 +08:00
|
|
|
frames = 0;
|
|
|
|
alarm_frames = 0;
|
|
|
|
tot_score = 0;
|
|
|
|
max_score = 0;
|
2003-07-04 20:31:36 +08:00
|
|
|
sprintf( path, "%s/%s/%d", (const char *)config.Item( ZM_DIR_EVENTS ), monitor->Name(), id );
|
2003-03-26 19:57:29 +08:00
|
|
|
|
|
|
|
struct stat statbuf;
|
|
|
|
errno = 0;
|
|
|
|
stat( path, &statbuf );
|
|
|
|
if ( errno == ENOENT || errno == ENOTDIR )
|
|
|
|
{
|
|
|
|
if ( mkdir( path, 0755 ) )
|
|
|
|
{
|
2003-04-15 17:04:38 +08:00
|
|
|
Error(( "Can't make %s: %s", path, strerror(errno)));
|
2003-03-26 19:57:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Event::~Event()
|
|
|
|
{
|
2003-07-04 04:39:47 +08:00
|
|
|
static char sql[BUFSIZ];
|
2003-03-26 19:57:29 +08:00
|
|
|
static char end_time_str[32];
|
|
|
|
|
|
|
|
struct DeltaTimeval delta_time;
|
2003-05-16 18:17:05 +08:00
|
|
|
DELTA_TIMEVAL( delta_time, end_time, start_time, DT_PREC_2 );
|
2003-03-26 19:57:29 +08:00
|
|
|
|
|
|
|
strftime( end_time_str, sizeof(end_time_str), "%Y-%m-%d %H:%M:%S", localtime( &end_time.tv_sec ) );
|
|
|
|
|
2003-09-23 17:52:45 +08:00
|
|
|
sprintf( sql, "update Events set Name='Event-%d', EndTime = '%s', Length = %s%ld.%02ld, Frames = %d, AlarmFrames = %d, TotScore = %d, AvgScore = %d, MaxScore = %d where Id = %d", id, end_time_str, delta_time.positive?"":"-", delta_time.sec, delta_time.fsec, frames, alarm_frames, tot_score, (int)(alarm_frames?(tot_score/alarm_frames):0), max_score, id );
|
2003-03-26 19:57:29 +08:00
|
|
|
if ( mysql_query( &dbconn, sql ) )
|
|
|
|
{
|
2003-04-15 17:04:38 +08:00
|
|
|
Error(( "Can't update event: %s", mysql_error( &dbconn ) ));
|
2003-03-26 19:57:29 +08:00
|
|
|
exit( mysql_errno( &dbconn ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-22 22:15:01 +08:00
|
|
|
int Event::sd = -1;
|
|
|
|
|
|
|
|
bool Event::OpenFrameSocket( int monitor_id )
|
|
|
|
{
|
|
|
|
if ( sd > 0 )
|
|
|
|
{
|
|
|
|
close( sd );
|
|
|
|
}
|
|
|
|
|
|
|
|
sd = socket( AF_UNIX, SOCK_STREAM, 0);
|
|
|
|
if ( sd < 0 )
|
|
|
|
{
|
|
|
|
Error(( "Can't create socket: %s", strerror(errno) ));
|
|
|
|
return( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
int flags;
|
|
|
|
if ( (flags = fcntl( sd, F_GETFL )) < 0 )
|
|
|
|
{
|
|
|
|
Error(( "Can't get socket flags, error = %s", strerror(errno) ));
|
|
|
|
close( sd );
|
|
|
|
sd = -1;
|
|
|
|
return( false );
|
|
|
|
}
|
|
|
|
flags |= O_NONBLOCK;
|
|
|
|
if ( fcntl( sd, F_SETFL, flags ) < 0 )
|
|
|
|
{
|
|
|
|
Error(( "Can't set socket flags, error = %s", strerror(errno) ));
|
|
|
|
close( sd );
|
|
|
|
sd = -1;
|
|
|
|
return( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
char sock_path[PATH_MAX] = "";
|
2003-07-04 20:31:36 +08:00
|
|
|
sprintf( sock_path, "%s/zmf-%d.sock", (const char *)config.Item( ZM_PATH_SOCKS ), monitor_id );
|
2003-04-22 22:15:01 +08:00
|
|
|
|
|
|
|
struct sockaddr_un addr;
|
|
|
|
|
|
|
|
strcpy( addr.sun_path, sock_path );
|
|
|
|
addr.sun_family = AF_UNIX;
|
|
|
|
|
|
|
|
if ( connect( sd, (struct sockaddr *)&addr, strlen(addr.sun_path)+sizeof(addr.sun_family)) < 0 )
|
|
|
|
{
|
|
|
|
Warning(( "Can't connect: %s", strerror(errno) ));
|
|
|
|
close( sd );
|
|
|
|
sd = -1;
|
|
|
|
return( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
Info(( "Opened connection to frame server" ));
|
|
|
|
return( true );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Event::ValidateFrameSocket( int monitor_id )
|
|
|
|
{
|
|
|
|
if ( sd < 0 )
|
|
|
|
{
|
|
|
|
return( OpenFrameSocket( monitor_id ) );
|
|
|
|
}
|
|
|
|
return( true );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Event::SendFrameImage( const Image *image, bool alarm_frame )
|
|
|
|
{
|
|
|
|
if ( !ValidateFrameSocket( monitor->Id() ) )
|
|
|
|
{
|
|
|
|
return( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int jpg_buffer_size = 0;
|
2003-05-02 23:03:16 +08:00
|
|
|
static unsigned char jpg_buffer[ZM_MAX_IMAGE_SIZE];
|
2003-04-22 22:15:01 +08:00
|
|
|
|
|
|
|
image->EncodeJpeg( jpg_buffer, &jpg_buffer_size );
|
|
|
|
|
|
|
|
static FrameHeader frame_header;
|
|
|
|
|
|
|
|
frame_header.event_id = id;
|
|
|
|
frame_header.frame_id = frames;
|
|
|
|
frame_header.alarm_frame = alarm_frame;
|
|
|
|
frame_header.image_length = jpg_buffer_size;
|
|
|
|
|
|
|
|
struct iovec iovecs[2];
|
|
|
|
iovecs[0].iov_base = &frame_header;
|
|
|
|
iovecs[0].iov_len = sizeof(frame_header);
|
|
|
|
iovecs[1].iov_base = jpg_buffer;
|
|
|
|
iovecs[1].iov_len = jpg_buffer_size;
|
|
|
|
|
2004-01-15 05:26:47 +08:00
|
|
|
ssize_t writev_size = sizeof(frame_header)+jpg_buffer_size;
|
|
|
|
ssize_t writev_result = writev( sd, iovecs, sizeof(iovecs)/sizeof(*iovecs));
|
|
|
|
if ( writev_result != writev_size )
|
2003-04-22 22:15:01 +08:00
|
|
|
{
|
2004-01-15 05:26:47 +08:00
|
|
|
if ( writev_result < 0 )
|
2003-04-22 22:15:01 +08:00
|
|
|
{
|
2004-01-15 05:26:47 +08:00
|
|
|
if ( errno == EAGAIN )
|
|
|
|
{
|
|
|
|
Warning(( "Blocking write detected" ));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Error(( "Can't write frame: %s", strerror(errno) ));
|
|
|
|
close( sd );
|
|
|
|
sd = -1;
|
|
|
|
}
|
2003-04-22 22:15:01 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-01-15 05:26:47 +08:00
|
|
|
Error(( "Incomplete frame write: %d of %d bytes written", writev_result, writev_size ));
|
2003-04-22 22:15:01 +08:00
|
|
|
close( sd );
|
|
|
|
sd = -1;
|
|
|
|
}
|
|
|
|
return( false );
|
|
|
|
}
|
2003-10-19 17:48:10 +08:00
|
|
|
Debug( 1, ( "Wrote frame image, %d bytes", jpg_buffer_size ));
|
2003-04-22 22:15:01 +08:00
|
|
|
|
|
|
|
return( true );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Event::WriteFrameImage( const Image *image, const char *event_file, bool alarm_frame )
|
|
|
|
{
|
2003-07-04 20:31:36 +08:00
|
|
|
if ( !(bool)config.Item( ZM_OPT_FRAME_SERVER ) || !SendFrameImage( image, alarm_frame) )
|
2003-04-22 22:15:01 +08:00
|
|
|
{
|
|
|
|
image->WriteJpeg( event_file );
|
|
|
|
}
|
|
|
|
return( true );
|
|
|
|
}
|
|
|
|
|
2003-04-17 23:38:21 +08:00
|
|
|
void Event::AddFrames( int n_frames, struct timeval **timestamps, const Image **images )
|
|
|
|
{
|
2003-11-05 22:49:55 +08:00
|
|
|
static char sql[BUFSIZ];
|
2003-04-17 23:38:21 +08:00
|
|
|
strcpy( sql, "insert into Frames ( EventId, FrameId, ImagePath, Delta ) values " );
|
|
|
|
for ( int i = 0; i < n_frames; i++ )
|
|
|
|
{
|
|
|
|
frames++;
|
2003-04-22 22:15:01 +08:00
|
|
|
|
2003-04-17 23:38:21 +08:00
|
|
|
static char event_file[PATH_MAX];
|
|
|
|
sprintf( event_file, "%s/capture-%03d.jpg", path, frames );
|
2003-04-22 22:15:01 +08:00
|
|
|
|
|
|
|
Debug( 1, ( "Writing pre-capture frame %d", frames ));
|
|
|
|
WriteFrameImage( images[i], event_file );
|
2003-04-17 23:38:21 +08:00
|
|
|
|
|
|
|
struct DeltaTimeval delta_time;
|
2003-05-16 18:17:05 +08:00
|
|
|
DELTA_TIMEVAL( delta_time, *(timestamps[i]), start_time, DT_PREC_2 );
|
2003-04-17 23:38:21 +08:00
|
|
|
|
2003-05-16 18:17:05 +08:00
|
|
|
sprintf( sql+strlen(sql), "( %d, %d, '%s', %s%ld.%02ld ), ", id, frames, event_file, delta_time.positive?"":"-", delta_time.sec, delta_time.fsec );
|
2003-04-17 23:38:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Debug( 1, ( "Adding %d frames to DB", n_frames ));
|
|
|
|
*(sql+strlen(sql)-2) = '\0';
|
|
|
|
if ( mysql_query( &dbconn, sql ) )
|
|
|
|
|
|
|
|
{
|
|
|
|
Error(( "Can't insert frames: %s", mysql_error( &dbconn ) ));
|
|
|
|
exit( mysql_errno( &dbconn ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-21 18:38:41 +08:00
|
|
|
void Event::AddFrame( struct timeval timestamp, const Image *image, unsigned int score, const Image *alarm_image )
|
2003-03-26 19:57:29 +08:00
|
|
|
{
|
|
|
|
frames++;
|
|
|
|
|
|
|
|
static char event_file[PATH_MAX];
|
|
|
|
sprintf( event_file, "%s/capture-%03d.jpg", path, frames );
|
2003-04-22 22:15:01 +08:00
|
|
|
|
|
|
|
Debug( 1, ( "Writing capture frame %d", frames ));
|
|
|
|
WriteFrameImage( image, event_file );
|
2003-03-26 19:57:29 +08:00
|
|
|
|
|
|
|
struct DeltaTimeval delta_time;
|
2003-05-16 18:17:05 +08:00
|
|
|
DELTA_TIMEVAL( delta_time, timestamp, start_time, DT_PREC_2 );
|
2003-03-26 19:57:29 +08:00
|
|
|
|
2003-04-17 23:38:21 +08:00
|
|
|
Debug( 1, ( "Adding frame %d to DB", frames ));
|
2003-07-04 04:39:47 +08:00
|
|
|
static char sql[BUFSIZ];
|
2003-11-21 18:38:41 +08:00
|
|
|
sprintf( sql, "insert into Frames ( EventId, FrameId, AlarmFrame, ImagePath, Delta, Score ) values ( %d, %d, %d, '%s', %s%ld.%02ld, %d )", id, frames, score>0, event_file, delta_time.positive?"":"-", delta_time.sec, delta_time.fsec, score );
|
2003-03-26 19:57:29 +08:00
|
|
|
if ( mysql_query( &dbconn, sql ) )
|
|
|
|
{
|
2003-04-15 17:04:38 +08:00
|
|
|
Error(( "Can't insert frame: %s", mysql_error( &dbconn ) ));
|
2003-03-26 19:57:29 +08:00
|
|
|
exit( mysql_errno( &dbconn ) );
|
|
|
|
}
|
|
|
|
|
2003-11-21 18:38:41 +08:00
|
|
|
if ( score )
|
2003-03-26 19:57:29 +08:00
|
|
|
{
|
|
|
|
end_time = timestamp;
|
|
|
|
|
|
|
|
alarm_frames++;
|
2003-04-22 22:15:01 +08:00
|
|
|
|
2003-03-26 19:57:29 +08:00
|
|
|
tot_score += score;
|
|
|
|
if ( score > max_score )
|
|
|
|
max_score = score;
|
2003-11-21 18:38:41 +08:00
|
|
|
|
|
|
|
if ( alarm_image )
|
|
|
|
{
|
|
|
|
sprintf( event_file, "%s/analyse-%03d.jpg", path, frames );
|
|
|
|
|
|
|
|
Debug( 1, ( "Writing analysis frame %d", frames ));
|
|
|
|
WriteFrameImage( alarm_image, event_file, true );
|
|
|
|
}
|
2003-03-26 19:57:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-16 17:00:53 +08:00
|
|
|
void Event::StreamEvent( const char *path, int event_id, int rate, int scale, FILE *fd )
|
2003-03-26 19:57:29 +08:00
|
|
|
{
|
2003-07-04 04:39:47 +08:00
|
|
|
static char sql[BUFSIZ];
|
2003-05-27 16:59:11 +08:00
|
|
|
sprintf( sql, "select Id, EventId, ImagePath, Delta from Frames where EventId = %d order by Id", event_id );
|
2003-03-26 19:57:29 +08:00
|
|
|
if ( mysql_query( &dbconn, sql ) )
|
|
|
|
{
|
2003-04-15 17:04:38 +08:00
|
|
|
Error(( "Can't run query: %s", mysql_error( &dbconn ) ));
|
2003-03-26 19:57:29 +08:00
|
|
|
exit( mysql_errno( &dbconn ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
MYSQL_RES *result = mysql_store_result( &dbconn );
|
|
|
|
if ( !result )
|
|
|
|
{
|
2003-04-15 17:04:38 +08:00
|
|
|
Error(( "Can't use query result: %s", mysql_error( &dbconn ) ));
|
2003-03-26 19:57:29 +08:00
|
|
|
exit( mysql_errno( &dbconn ) );
|
|
|
|
}
|
|
|
|
|
2003-10-19 17:48:10 +08:00
|
|
|
|
2003-10-16 17:00:53 +08:00
|
|
|
setbuf( fd, 0 );
|
|
|
|
|
2003-10-19 21:54:40 +08:00
|
|
|
time_t cache_now = time( 0 );
|
|
|
|
char date_string[64];
|
|
|
|
strftime( date_string, sizeof(date_string)-1, "%a, %d %b %Y %H:%M:%S GMT", gmtime( &cache_now ) );
|
|
|
|
|
2003-04-04 18:00:57 +08:00
|
|
|
fprintf( fd, "Server: ZoneMinder Stream Server\r\n" );
|
2003-10-19 21:54:40 +08:00
|
|
|
|
|
|
|
fprintf( fd, "Expires: Mon, 26 Jul 1997 05:00:00 GMT\r\n" );
|
|
|
|
fprintf( fd, "Last-Modified: %s\r\n", date_string );
|
|
|
|
fprintf( fd, "Cache-Control: no-store, no-cache, must-revalidate\r\n" );
|
|
|
|
fprintf( fd, "Cache-Control: post-check=0, pre-check=0\r\n" );
|
|
|
|
fprintf( fd, "Pragma: no-cache\r\n");
|
|
|
|
|
2003-04-04 18:00:57 +08:00
|
|
|
fprintf( fd, "Content-Type: multipart/x-mixed-replace;boundary=ZoneMinderFrame\r\n\r\n" );
|
2003-06-04 05:21:57 +08:00
|
|
|
fprintf( fd, "--ZoneMinderFrame\n" );
|
2003-03-26 19:57:29 +08:00
|
|
|
|
2003-10-19 17:48:10 +08:00
|
|
|
//int n_frames = mysql_num_rows( result );
|
|
|
|
//Info(( "Got %d frames, at rate %d, scale %d", n_frames, rate, scale ));
|
2003-03-26 19:57:29 +08:00
|
|
|
FILE *fdj = NULL;
|
|
|
|
int n_bytes = 0;
|
2003-10-16 17:00:53 +08:00
|
|
|
static unsigned char buffer[ZM_MAX_IMAGE_SIZE];
|
2003-05-27 16:59:11 +08:00
|
|
|
double last_delta = 0;
|
2003-10-16 17:00:53 +08:00
|
|
|
struct timeval now, last_now;
|
|
|
|
struct DeltaTimeval delta_time;
|
|
|
|
|
|
|
|
gettimeofday( &now, &dummy_tz );
|
2003-03-26 19:57:29 +08:00
|
|
|
for( int i = 0; MYSQL_ROW dbrow = mysql_fetch_row( result ); i++ )
|
|
|
|
{
|
2003-10-10 18:38:30 +08:00
|
|
|
if ( rate )
|
2003-05-23 00:34:22 +08:00
|
|
|
{
|
2003-05-27 16:59:11 +08:00
|
|
|
if ( i )
|
2003-05-23 00:34:22 +08:00
|
|
|
{
|
2003-10-16 17:00:53 +08:00
|
|
|
gettimeofday( &now, &dummy_tz );
|
|
|
|
|
|
|
|
double frame_delta = atof(dbrow[3])-last_delta;
|
|
|
|
DELTA_TIMEVAL( delta_time, now, last_now, DT_PREC_6 );
|
|
|
|
|
|
|
|
int delay = (int)((DT_GRAN_1000000*frame_delta))-delta_time.delta;
|
|
|
|
|
2003-10-10 18:38:30 +08:00
|
|
|
if ( rate < 0 )
|
2003-10-16 17:00:53 +08:00
|
|
|
delay *= abs(rate);
|
2003-10-10 18:38:30 +08:00
|
|
|
else
|
2003-10-16 17:00:53 +08:00
|
|
|
delay /= rate;
|
|
|
|
|
|
|
|
//Info(( "FD:%lf, DDT:%d, D:%d, N:%d.%d, LN:%d.%d", frame_delta, delta_time.delta, delay, now.tv_sec, now.tv_usec, last_now.tv_sec, last_now.tv_usec ));
|
|
|
|
if ( delay > 0 )
|
|
|
|
usleep( delay );
|
2003-05-23 00:34:22 +08:00
|
|
|
}
|
2003-05-27 16:59:11 +08:00
|
|
|
last_delta = atof(dbrow[3]);
|
2003-10-16 17:00:53 +08:00
|
|
|
gettimeofday( &last_now, &dummy_tz );
|
2003-05-23 00:34:22 +08:00
|
|
|
}
|
2003-10-16 17:00:53 +08:00
|
|
|
static char filepath[PATH_MAX];
|
2003-03-26 19:57:29 +08:00
|
|
|
sprintf( filepath, "%s/%s", path, dbrow[2] );
|
2003-10-16 17:00:53 +08:00
|
|
|
|
|
|
|
fprintf( fd, "Content-type: image/jpg\n\n" );
|
|
|
|
if ( scale == 1 )
|
2003-03-26 19:57:29 +08:00
|
|
|
{
|
2003-10-16 17:00:53 +08:00
|
|
|
if ( (fdj = fopen( filepath, "r" )) )
|
|
|
|
{
|
|
|
|
while ( (n_bytes = fread( buffer, 1, sizeof(buffer), fdj )) )
|
|
|
|
{
|
|
|
|
//fwrite( buffer, 1, n_bytes, fd );
|
|
|
|
write( fileno(fd), buffer, n_bytes );
|
|
|
|
}
|
|
|
|
fclose( fdj );
|
|
|
|
}
|
|
|
|
else
|
2003-03-26 19:57:29 +08:00
|
|
|
{
|
2003-10-16 17:00:53 +08:00
|
|
|
Error(( "Can't open %s: %s", filepath, strerror(errno) ));
|
2003-03-26 19:57:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-10-16 17:00:53 +08:00
|
|
|
Image image( filepath );
|
|
|
|
|
|
|
|
image.Scale( scale );
|
|
|
|
|
|
|
|
image.EncodeJpeg( buffer, &n_bytes );
|
|
|
|
|
|
|
|
write( fileno(fd), buffer, n_bytes );
|
2003-03-26 19:57:29 +08:00
|
|
|
}
|
2003-10-16 17:00:53 +08:00
|
|
|
fprintf( fd, "\n--ZoneMinderFrame\n" );
|
|
|
|
fflush( fd );
|
2003-03-26 19:57:29 +08:00
|
|
|
}
|
|
|
|
if ( mysql_errno( &dbconn ) )
|
|
|
|
{
|
2003-04-15 17:04:38 +08:00
|
|
|
Error(( "Can't fetch row: %s", mysql_error( &dbconn ) ));
|
2003-03-26 19:57:29 +08:00
|
|
|
exit( mysql_errno( &dbconn ) );
|
|
|
|
}
|
|
|
|
// Yadda yadda
|
|
|
|
mysql_free_result( result );
|
|
|
|
}
|