2002-09-16 17:19:24 +08:00
< ? php
2002-09-24 06:08:50 +08:00
//
2002-09-23 19:28:09 +08:00
// Zone Monitor web interface file, $Date$, $Revision$
2002-09-24 06:08:50 +08:00
// Copyright (C) 2002 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.
//
2002-09-23 19:27:31 +08:00
2002-09-16 17:19:24 +08:00
import_request_variables ( " GPC " );
2002-09-20 23:29:41 +08:00
//phpinfo( INFO_VARIABLES );
2002-10-03 00:05:36 +08:00
$PHP_SELF = $HTTP_SERVER_VARS [ 'PHP_SELF' ];
2002-09-20 23:29:41 +08:00
2002-09-16 17:19:24 +08:00
if ( ! $bandwidth )
{
$new_bandwidth = " low " ;
}
if ( $new_bandwidth )
{
$bandwidth = $new_bandwidth ;
setcookie ( " bandwidth " , $new_bandwidth , time () + 3600 * 24 * 30 * 12 * 10 );
}
2002-09-24 04:30:39 +08:00
define ( " DB_SERVER " , " localhost " ); // Database Server machine
define ( " DB_NAME " , " zm " ); // Database containing the tables
define ( " DB_USER " , " zmadmin " ); // Database login
define ( " DB_PASS " , " zmadminzm " ); // Database password
2002-09-21 19:15:06 +08:00
2002-09-24 04:30:39 +08:00
define ( " MAX_EVENTS " , 12 ); // The maximum number of events to show in the default event listing
define ( " ALARM_POPUP " , 1 ); // Whether the watch window jumps to front if an alarm occurs
2002-09-28 02:15:21 +08:00
define ( " ALARM_SOUND " , " Yeow.wav " ); // A sound to play on alarm
2002-09-24 04:30:39 +08:00
define ( " ZM_PATH " , " /usr/local/bin " ); // Path to the general ZoneMonitor executables
define ( " ZMU_PATH " , ZM_PATH . " /zmu " ); // Path to the Zone Monitor Utility
define ( " ZMS_PATH " , " /cgi-bin/zms " ); // Path to the Zone Monitor Stream server
2002-09-24 17:44:36 +08:00
define ( " EVENT_PATH " , " events " ); // Local path to where events directory lives
2002-09-24 04:30:39 +08:00
define ( " ZMS_EVENT_PATH " , " /data/zm " ); // Full path (not web) to where events directory lives
define ( " CAMBOZOLA_PATH " , " cambozola.jar " ); // Path to (optional) cambozola java streaming client (recommended)
2002-09-24 05:54:57 +08:00
define ( " MPEG_ENCODE_PATH " , " ./mpeg_encode " ); // Path to (optional) mpeg video encoder
2002-10-03 00:05:36 +08:00
define ( " NETPBM_DIR " , " /usr/bin " ); // Path to (optional) Netpbm utilities
2002-09-21 19:15:06 +08:00
2002-09-16 17:19:24 +08:00
if ( $bandwidth == " high " )
{
2002-09-24 04:30:39 +08:00
define ( " REFRESH_MAIN " , 300 ); // How often (in seconds) the main console window refreshes
define ( " REFRESH_CYCLE " , 5 ); // How often the cycle watch windows swaps to the next monitor
define ( " REFRESH_IMAGE " , 5 ); // How often the watched image is refreshed (if not streaming)
define ( " REFRESH_STATUS " , 3 ); // How often the little status frame refreshes itself in the watch window
define ( " REFRESH_EVENTS " , 30 ); // How often the event listing is refreshed in the watch window, only for recent events
define ( " REFRESH_EVENTS_ALL " , 120 ); // How often the event listing is refreshed when looking at longer listings
define ( " STREAM_IDLE_DELAY " , 1000 ); // How long (in milliseconds) between streamed frames in the watch window
define ( " STREAM_FRAME_DELAY " , 50 ); // How long (in milliseconds) to wait before looking for the next streamed frame
define ( " STREAM_EVENT_DELAY " , 200 ); // How long (in milliseconds) to wait between each frame when streaming events
define ( " IMAGE_SCALING " , 1 ); // Image scaling for thumbnails, bandwidth versus cpu in rescaling
2002-09-16 17:19:24 +08:00
}
elseif ( $bandwidth == " medium " )
{
2002-09-24 04:30:39 +08:00
define ( " REFRESH_MAIN " , 300 ); // How often (in seconds) the main console window refreshes
define ( " REFRESH_CYCLE " , 10 ); // How often the cycle watch windows swaps to the next monitor
define ( " REFRESH_IMAGE " , 15 ); // How often the watched image is refreshed (if not streaming)
define ( " REFRESH_STATUS " , 5 ); // How often the little status frame refreshes itself in the watch window
define ( " REFRESH_EVENTS " , 60 ); // How often the event listing is refreshed in the watch window, only for recent events
define ( " REFRESH_EVENTS_ALL " , 300 ); // How often the event listing is refreshed when looking at longer listings
define ( " STREAM_IDLE_DELAY " , 5000 ); // How long (in milliseconds) between streamed frames in the watch window
define ( " STREAM_FRAME_DELAY " , 100 ); // How long (in milliseconds) to wait before looking for the next streamed frame
define ( " STREAM_EVENT_DELAY " , 50 ); // How long (in milliseconds) to wait between each frame when streaming events
define ( " IMAGE_SCALING " , 4 ); // Image scaling for thumbnails, bandwidth versus cpu in rescaling
2002-09-16 17:19:24 +08:00
}
else
{
2002-09-24 04:30:39 +08:00
define ( " REFRESH_MAIN " , 300 ); // How often (in seconds) the main console window refreshes
define ( " REFRESH_CYCLE " , 30 ); // How often the cycle watch windows swaps to the next monitor
define ( " REFRESH_IMAGE " , 30 ); // How often the watched image is refreshed (if not streaming)
define ( " REFRESH_STATUS " , 10 ); // How often the little status frame refreshes itself in the watch window
define ( " REFRESH_EVENTS " , 180 ); // How often the event listing is refreshed in the watch window, only for recent events
define ( " REFRESH_EVENTS_ALL " , 600 ); // How often the event listing is refreshed when looking at longer listings
define ( " STREAM_IDLE_DELAY " , 10000 ); // How long (in milliseconds) between streamed frames in the watch window
define ( " STREAM_FRAME_DELAY " , 250 ); // How long (in milliseconds) to wait before looking for the next streamed frame
define ( " STREAM_EVENT_DELAY " , 10 ); // How long (in milliseconds) to wait between each frame when streaming events
define ( " IMAGE_SCALING " , 4 ); // Image scaling for thumbnails, bandwidth versus cpu in rescaling
2002-09-16 17:19:24 +08:00
}
2002-09-21 19:15:06 +08:00
$conn = mysql_connect ( DB_SERVER , DB_USER , DB_PASS ) or die ( " Could not connect to database: " . mysql_error ());
mysql_select_db ( DB_NAME , $conn ) or die ( " Could not select database: " . mysql_error ());
2002-09-16 17:19:24 +08:00
2002-10-11 17:10:45 +08:00
require_once ( 'actions.php' );
2002-09-16 17:19:24 +08:00
if ( ! $view )
{
$view = " console " ;
}
if ( $view == " console " )
{
2002-09-21 03:48:31 +08:00
header ( " Refresh: " . REFRESH_MAIN . " ; URL=' $PHP_SELF ' " );
2002-09-16 17:19:24 +08:00
header ( " Expires: Mon, 26 Jul 1997 05:00:00 GMT " ); // Date in the past
header ( " Last-Modified: " . gmdate ( " D, d M Y H:i:s " ) . " GMT " ); // always modified
header ( " Cache-Control: no-store, no-cache, must-revalidate " ); // HTTP/1.1
header ( " Cache-Control: post-check=0, pre-check=0 " , false );
header ( " Pragma: no-cache " ); // HTTP/1.0
//$result = mysql_query( "select M.*, count(E.Id) as EventCount, count(if(E.Archived,1,NULL)) as ArchEventCount, count(if(E.StartTime>NOW() - INTERVAL 1 HOUR && E.Archived = 0,1,NULL)) as HourEventCount, count(if(E.StartTime>NOW() - INTERVAL 1 DAY && E.Archived = 0,1,NULL)) as DayEventCount, count(if(E.StartTime>NOW() - INTERVAL 7 DAY && E.Archived = 0,1,NULL)) as WeekEventCount, count(if(E.StartTime>NOW() - INTERVAL 1 MONTH && E.Archived = 0,1,NULL)) as MonthEventCount, count(Z.MonitorId) as ZoneCount from Monitors as M inner join Zones as Z on Z.MonitorId = M.Id left join Events as E on E.MonitorId = M.Id group by E.MonitorId,Z.MonitorId order by Id" );
$sql = " select M.*, count(E.Id) as EventCount, count(if(E.Archived,1,NULL)) as ArchEventCount, count(if(E.StartTime>NOW() - INTERVAL 1 HOUR && E.Archived = 0,1,NULL)) as HourEventCount, count(if(E.StartTime>NOW() - INTERVAL 1 DAY && E.Archived = 0,1,NULL)) as DayEventCount, count(if(E.StartTime>NOW() - INTERVAL 7 DAY && E.Archived = 0,1,NULL)) as WeekEventCount, count(if(E.StartTime>NOW() - INTERVAL 1 MONTH && E.Archived = 0,1,NULL)) as MonthEventCount from Monitors as M left join Events as E on E.MonitorId = M.Id group by E.MonitorId order by Id " ;
$result = mysql_query ( $sql );
if ( ! $result )
echo mysql_error ();
$monitors = array ();
$max_width = 0 ;
$max_height = 0 ;
2002-09-24 17:34:53 +08:00
$cycle_count = 0 ;
2002-09-16 17:19:24 +08:00
while ( $row = mysql_fetch_assoc ( $result ) )
{
if ( $max_width < $row [ Width ] ) $max_width = $row [ Width ];
if ( $max_height < $row [ Height ] ) $max_height = $row [ Height ];
$sql = " select count(Id) as ZoneCount, count(if(Type='Active',1,NULL)) as ActZoneCount, count(if(Type='Inclusive',1,NULL)) as IncZoneCount, count(if(Type='Exclusive',1,NULL)) as ExcZoneCount, count(if(Type='Inactive',1,NULL)) as InactZoneCount from Zones where MonitorId = ' $row[Id] ' " ;
$result2 = mysql_query ( $sql );
if ( ! $result2 )
echo mysql_error ();
$row2 = mysql_fetch_assoc ( $result2 );
$monitors [] = array_merge ( $row , $row2 );
2002-09-24 17:34:53 +08:00
if ( $row [ 'Function' ] != 'None' ) $cycle_count ++ ;
2002-09-16 17:19:24 +08:00
}
2002-09-20 23:29:41 +08:00
$sql = " select distinct Device from Monitors order by Device " ;
$result = mysql_query ( $sql );
if ( ! $result )
echo mysql_error ();
$devices = array ();
while ( $row = mysql_fetch_assoc ( $result ) )
{
$ps_array = preg_split ( " / \ s+/ " , exec ( " ps -edalf | grep 'zmc $row[Device] ' | grep -v grep " ) );
if ( $ps_array [ 3 ] )
{
$row [ 'zmc' ] = 1 ;
}
$ps_array = preg_split ( " / \ s+/ " , exec ( " ps -edalf | grep 'zma $row[Device] ' | grep -v grep " ) );
if ( $ps_array [ 3 ] )
{
$row [ 'zma' ] = 1 ;
}
$devices [] = $row ;
}
2002-09-16 17:19:24 +08:00
?>
< html >
< head >
< title > ZM - Console </ title >
2002-09-17 02:07:04 +08:00
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
2002-09-16 17:19:24 +08:00
< script language = " JavaScript " >
2002-09-24 00:37:41 +08:00
window . resizeTo ( 720 , 400 )
2002-09-16 17:19:24 +08:00
function newWindow ( Url , Name , Width , Height ) {
var Name = window . open ( Url , Name , " resizable,scrollbars,width= " + Width + " ,height= " + Height );
}
</ script >
</ head >
< body >
< p class = " head " align = " center " >< strong > Zone Monitor Console </ strong ></ p >
< table align = " center " border = " 0 " cellspacing = " 2 " cellpadding = " 2 " width = " 96% " >
< tr >
< td class = " smallhead " align = " left " >< ? php echo count ( $monitors ) ?> Monitors</td>
< td class = " smallhead " align = " center " > Currently configured for < strong >< ? php echo $bandwidth ?> </strong> bandwidth (change to
2002-09-21 03:48:31 +08:00
< ? php if ( $bandwidth != " high " ) { ?> <a href="<?php echo $PHP_SELF ?>?new_bandwidth=high">high</a><?php } ?>
< ? php if ( $bandwidth != " medium " ) { ?> <a href="<?php echo $PHP_SELF ?>?new_bandwidth=medium">medium</a><?php } ?>
< ? php if ( $bandwidth != " low " ) { ?> <a href="<?php echo $PHP_SELF ?>?new_bandwidth=low">low</a><?php } ?> )</td>
2002-09-24 17:34:53 +08:00
< ? php if ( $cycle_count > 1 ) { ?>
2002-09-24 00:09:47 +08:00
< td class = " smallhead " align = " right " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=cycle', 'zmCycle', <?php echo $max_width +36 ?>, <?php echo $max_height +72 ?> ); " > Watch All </ a ></ td >
2002-09-24 17:34:53 +08:00
< ? php } else { ?>
< td class = " smallhead " align = " right " >& nbsp ; </ td >
< ? php } ?>
2002-09-16 17:19:24 +08:00
</ tr >
</ table >
< table align = " center " border = " 0 " cellspacing = " 2 " cellpadding = " 2 " width = " 96% " >
2002-10-01 21:44:28 +08:00
< form name = " event_form " method = " get " action = " <?php echo $PHP_SELF ?> " >
2002-09-16 17:19:24 +08:00
< input type = " hidden " name = " view " value = " <?php echo $view ?> " >
< input type = " hidden " name = " action " value = " delete " >
< tr >< td align = " left " class = " smallhead " > Id </ td >
< td align = " left " class = " smallhead " > Name </ td >
< td align = " left " class = " smallhead " > Device / Channel </ td >
< td align = " left " class = " smallhead " > Function </ td >
2002-09-24 00:37:41 +08:00
<!--< td align = " left " class = " smallhead " > Dimensions </ td >-->
2002-09-16 17:19:24 +08:00
< td align = " right " class = " smallhead " > Events </ td >
< td align = " right " class = " smallhead " > Hour </ td >
< td align = " right " class = " smallhead " > Day </ td >
< td align = " right " class = " smallhead " > Week </ td >
< td align = " right " class = " smallhead " > Month </ td >
< td align = " right " class = " smallhead " > Archive </ td >
< td align = " right " class = " smallhead " > Zones </ td >
< td align = " center " class = " smallhead " > Delete </ td >
</ tr >
< ? php
$event_count = 0 ;
$hour_event_count = 0 ;
$day_event_count = 0 ;
$week_event_count = 0 ;
$month_event_count = 0 ;
$arch_event_count = 0 ;
$zone_count = 0 ;
foreach ( $monitors as $monitor )
{
2002-09-20 23:29:41 +08:00
$device = $devices [ $monitor [ Device ]];
2002-09-16 17:19:24 +08:00
$event_count += $monitor [ EventCount ];
$hour_event_count += $monitor [ HourEventCount ];
$day_event_count += $monitor [ DayEventCount ];
$week_event_count += $monitor [ WeekEventCount ];
$month_event_count += $monitor [ MonthEventCount ];
$arch_event_count += $monitor [ ArchEventCount ];
$zone_count += $monitor [ ZoneCount ];
?>
< tr >
2002-09-24 00:37:41 +08:00
< td align = " left " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=monitor&mid=<?php echo $monitor[Id] ?>', 'zmMonitor', 360, 320 ); " >< ? php echo $monitor [ Id ] ?> .</a></td>
< td align = " left " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=watch&mid=<?php echo $monitor[Id] ?>', 'zmWatch<?php echo $monitor[Name] ?>', <?php echo $monitor[Width] +72 ?>, <?php echo $monitor[Height] +360 ?> ); " >< ? php echo $monitor [ Name ] ?> </a></td>
2002-09-21 03:48:31 +08:00
< td align = " left " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=device&did=<?php echo $monitor[Device] ?>', 'zmDevice', 196, 164 ); " >< span class = " <?php if ( $device[zmc] ) { if ( $device[zma] ) { echo " gretext " ; } else { echo " oratext " ; } } else { echo " redtext " ; } ?> " >/ dev / video < ? php echo $monitor [ Device ] ?> (<?php echo $monitor[Channel] ?>)</span></a></td>
< td align = " left " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=function&mid=<?php echo $monitor[Id] ?>', 'zmFunction', 248, 72 ); " >< ? php echo $monitor [ 'Function' ] ?> </a></td>
2002-09-24 00:37:41 +08:00
<!--< td align = " left " class = " text " >< ? php echo $monitor [ Width ] ?> x<?php echo $monitor[Height] ?>x<?php echo $monitor[Colours]*8 ?></td>-->
< td align = " right " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=watch&mid=<?php echo $monitor[Id] ?>', 'zmWatch<?php echo $monitor[Name] ?>', <?php echo $monitor[Width] +72 ?>, <?php echo $monitor[Height] +360 ?> ); " >< ? php echo $monitor [ EventCount ] ?> </a></td>
< td align = " right " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=watch&period=hour&mid=<?php echo $monitor[Id] ?>', 'zmWatch<?php echo $monitor[Name] ?>', <?php echo $monitor[Width] +72 ?>, <?php echo $monitor[Height] +360 ?> ); " >< ? php echo $monitor [ HourEventCount ] ?> </a></td>
< td align = " right " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=watch&period=day&mid=<?php echo $monitor[Id] ?>', 'zmWatch<?php echo $monitor[Name] ?>', <?php echo $monitor[Width] +72 ?>, <?php echo $monitor[Height] +360 ?> ); " >< ? php echo $monitor [ DayEventCount ] ?> </a></td>
< td align = " right " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=watch&period=week&mid=<?php echo $monitor[Id] ?>', 'zmWatch<?php echo $monitor[Name] ?>', <?php echo $monitor[Width] +72 ?>, <?php echo $monitor[Height] +360 ?> ); " >< ? php echo $monitor [ WeekEventCount ] ?> </a></td>
< td align = " right " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=watch&period=month&mid=<?php echo $monitor[Id] ?>', 'zmWatch<?php echo $monitor[Name] ?>', <?php echo $monitor[Width] +72 ?>, <?php echo $monitor[Height] +360 ?> ); " >< ? php echo $monitor [ MonthEventCount ] ?> </a></td>
< td align = " right " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=watch&archived=1&mid=<?php echo $monitor[Id] ?>', 'zmWatch<?php echo $monitor[Name] ?>', <?php echo $monitor[Width] +72 ?>, <?php echo $monitor[Height] +360 ?> ); " >< ? php echo $monitor [ ArchEventCount ] ?> </a></td>
2002-09-23 19:21:57 +08:00
< td align = " right " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=zones&mid=<?php echo $monitor[Id] ?>', 'zmZones', <?php echo $monitor[Width] +72 ?>, <?php echo $monitor[Height] +232 ?> ); " >< ? php echo $monitor [ ZoneCount ] ?> </a></td>
2002-09-27 16:59:33 +08:00
< td align = " center " class = " text " >< input type = " checkbox " name = " delete_mids[] " value = " <?php echo $monitor[Id] ?> " ></ td >
2002-09-16 17:19:24 +08:00
</ tr >
< ? php
}
?>
< tr >< td align = " left " class = " text " >& nbsp ; </ td >
< td align = " left " class = " text " >& nbsp ; </ td >
2002-09-24 00:37:41 +08:00
< td colspan = " 2 " align = " center " >< input type = " button " value = " Add New Monitor " class = " form " onClick = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=monitor&zid=-1', 'zmMonitor', 320, 360 ); " ></ td >
2002-09-16 17:19:24 +08:00
< td align = " right " class = " text " >< ? php echo $event_count ?> </td>
< td align = " right " class = " text " >< ? php echo $hour_event_count ?> </td>
< td align = " right " class = " text " >< ? php echo $day_event_count ?> </td>
< td align = " right " class = " text " >< ? php echo $week_event_count ?> </td>
< td align = " right " class = " text " >< ? php echo $month_event_count ?> </td>
< td align = " right " class = " text " >< ? php echo $arch_event_count ?> </td>
< td align = " right " class = " text " >< ? php echo $zone_count ?> </td>
< td align = " center " >< input type = " submit " value = " Delete " class = " form " ></ td >
</ tr >
</ form >
</ table >
</ body >
</ html >
< ? php
}
elseif ( $view == " cycle " )
{
$result = mysql_query ( " select * from Monitors where Function != 'None' order by Id " );
$monitors = array ();
$mon_idx = 0 ;
while ( $row = mysql_fetch_assoc ( $result ) )
{
if ( $mid && $row [ Id ] == $mid )
$mon_idx = count ( $monitors );
$monitors [] = $row ;
}
$monitor = $monitors [ $mon_idx ];
$next_mid = $mon_idx == ( count ( $monitors ) - 1 ) ? $monitors [ 0 ][ Id ] : $monitors [ $mon_idx + 1 ][ Id ];
2002-09-21 03:48:31 +08:00
header ( " Refresh: " . REFRESH_CYCLE . " ; URL=' $PHP_SELF ?view=cycle&mid= $next_mid ' " );
2002-09-16 17:19:24 +08:00
header ( " Expires: Mon, 26 Jul 1997 05:00:00 GMT " ); // Date in the past
header ( " Last-Modified: " . gmdate ( " D, d M Y H:i:s " ) . " GMT " ); // always modified
header ( " Cache-Control: no-store, no-cache, must-revalidate " ); // HTTP/1.1
header ( " Cache-Control: post-check=0, pre-check=0 " , false );
header ( " Pragma: no-cache " ); // HTTP/1.0
?>
< html >
< head >
< title > ZM - Cycle Watch </ title >
2002-09-17 02:07:04 +08:00
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
2002-09-16 17:19:24 +08:00
< script language = " JavaScript " >
function newWindow ( Url , Name , Width , Height ) {
var Name = window . open ( Url , Name , " resizable,scrollbars,width= " + Width + " ,height= " + Height );
}
</ script >
</ head >
< body >
< p class = " head " align = " center " >< ? php echo $monitor [ Name ] ?> </p>
2002-09-24 00:37:41 +08:00
< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=watch&mid=<?php echo $monitor[Id] ?>', 'zmWatch<?php echo $monitor[Name] ?>', <?php echo $monitor[Width] +72 ?>, <?php echo $monitor[Height] +360 ?> ); " >< img src = '<?php echo $monitor[Name] ?>.jpg' border = " 0 " ></ a >
2002-09-16 17:19:24 +08:00
</ body >
</ html >
< ? php
}
2002-09-24 00:37:41 +08:00
elseif ( $view == " watch " )
2002-09-16 17:19:24 +08:00
{
$result = mysql_query ( " select * from Monitors where Id = ' $mid ' " );
if ( ! $result )
die ( mysql_error () );
$monitor = mysql_fetch_assoc ( $result );
2002-09-24 00:09:47 +08:00
if ( ! $max_events && ! $period && ! $archived )
{
$max_events = MAX_EVENTS ;
}
2002-09-16 17:19:24 +08:00
?>
< html >
< head >
2002-09-24 00:37:41 +08:00
< title > ZM - < ? php echo $monitor [ Name ] ?> - Watch</title>
2002-09-17 02:07:04 +08:00
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
2002-09-16 17:19:24 +08:00
< script language = " JavaScript " >
opener . location . reload ();
window . focus ();
</ script >
</ head >
< frameset rows = " <?php echo $monitor[Height] +32 ?>,16,* " border = " 1 " frameborder = " no " framespacing = " 0 " >
2002-09-24 00:37:41 +08:00
< frame src = " <?php echo $PHP_SELF ?>?view=feed&mid=<?php echo $monitor[Id] ?> " marginwidth = " 0 " marginheight = " 0 " name = " MonitorStream " scrolling = " no " >
2002-09-21 03:48:31 +08:00
< frame src = " <?php echo $PHP_SELF ?>?view=status&mid=<?php echo $monitor[Id] ?> " marginwidth = " 0 " marginheight = " 0 " name = " MonitorStatus " scrolling = " no " >
2002-09-23 18:55:05 +08:00
< frame src = " <?php echo $PHP_SELF ?>?view=events&max_events=<?php echo $max_events ?>&period=<?php echo $period ?>&archived=<?php echo $archived ?>&mid=<?php echo $monitor[Id] ?> " marginwidth = " 0 " marginheight = " 0 " name = " MonitorEvents " scrolling = " auto " >
2002-09-16 17:19:24 +08:00
</ frameset >
< ? php
}
2002-09-24 00:37:41 +08:00
elseif ( $view == " feed " )
2002-09-16 17:19:24 +08:00
{
if ( ! $mode )
2002-09-21 19:15:06 +08:00
{
if ( canStream () )
$mode = " stream " ;
else
$mode = " still " ;
}
2002-09-16 17:19:24 +08:00
$result = mysql_query ( " select * from Monitors where Id = ' $mid ' " );
if ( ! $result )
die ( mysql_error () );
$monitor = mysql_fetch_assoc ( $result );
if ( $mode != " stream " )
{
2002-09-24 00:37:41 +08:00
header ( " Refresh: " . REFRESH_IMAGE . " ; URL=' $PHP_SELF ?view=feed&mid= $mid &mode=still' " );
2002-09-16 17:19:24 +08:00
header ( " Expires: Mon, 26 Jul 1997 05:00:00 GMT " ); // Date in the past
header ( " Last-Modified: " . gmdate ( " D, d M Y H:i:s " ) . " GMT " ); // always modified
header ( " Cache-Control: no-store, no-cache, must-revalidate " ); // HTTP/1.1
header ( " Cache-Control: post-check=0, pre-check=0 " , false );
header ( " Pragma: no-cache " ); // HTTP/1.0
}
?>
< html >
< head >
2002-09-17 02:07:04 +08:00
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
2002-09-16 17:19:24 +08:00
< script language = " JavaScript " >
function closeWindow () {
top . window . close ();
}
</ script >
</ head >
< body >
< table width = " 96% " align = " center " border = " 0 " cellspacing = " 0 " cellpadding = " 4 " >
< tr >
2002-09-23 18:55:05 +08:00
< td width = " 33% " align = " left " class = " text " >< b >< ? php echo $monitor [ Name ] ?> </b></td>
2002-09-16 17:19:24 +08:00
< ? php if ( $mode == " stream " ) { ?>
2002-09-24 00:37:41 +08:00
< td width = " 34% " align = " center " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=feed&mode=still&mid=<?php echo $mid ?> " > Stills </ a ></ td >
2002-09-21 19:15:06 +08:00
< ? php } elseif ( canStream () ) { ?>
2002-09-24 00:37:41 +08:00
< td width = " 34% " align = " center " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=feed&mode=stream&mid=<?php echo $mid ?> " > Stream </ a ></ td >
2002-09-21 19:15:06 +08:00
< ? php } else { ?>
< td width = " 34% " align = " center " class = " text " >& nbsp ; </ td >
2002-09-16 17:19:24 +08:00
< ? php } ?>
< td width = " 33% " align = " right " class = " text " >< a href = " javascript: closeWindow(); " > Close </ a ></ td >
</ tr >
< ? php if ( $mode == " stream " )
{
2002-09-21 19:15:06 +08:00
$stream_src = ZMS_PATH . " ?monitor= $monitor[Id] &idle= " . STREAM_IDLE_DELAY . " &refresh= " . STREAM_FRAME_DELAY ;
if ( isNetscape () )
2002-09-16 17:19:24 +08:00
{
?>
< tr >< td colspan = " 3 " align = " center " >< img src = " <?php echo $stream_src ?> " border = " 0 " width = " <?php echo $monitor[Width] ?> " height = " <?php echo $monitor[Height] ?> " ></ td ></ tr >
< ? php
}
else
{
?>
2002-09-21 19:15:06 +08:00
< tr >< td colspan = " 3 " align = " center " >< applet code = " com.charliemouse.cambozola.Viewer " archive = " <?php echo CAMBOZOLA_PATH ?> " align = " middle " width = " <?php echo $monitor[Width] ?> " height = " <?php echo $monitor[Height] ?> " >< param name = " url " value = " <?php echo $stream_src ?> " ></ applet ></ td ></ tr >
2002-09-16 17:19:24 +08:00
< ? php
}
}
else
{
?>
< tr >< td colspan = " 3 " align = " center " >< img src = " <?php echo $monitor[Name] ?>.jpg " border = " 0 " width = " <?php echo $monitor[Width] ?> " height = " <?php echo $monitor[Height] ?> " ></ td ></ tr >
< ? php
}
?>
</ table >
</ body >
</ html >
< ? php
}
elseif ( $view == " status " )
{
2002-09-21 19:15:06 +08:00
$status = exec ( escapeshellcmd ( ZMU_PATH . " -m $mid -s " ) );
2002-09-16 17:19:24 +08:00
$status_string = " Unknown " ;
$class = " text " ;
if ( $status == 0 )
{
$status_string = " Idle " ;
}
elseif ( $status == 1 )
{
$status_string = " Alarm " ;
$class = " redtext " ;
}
elseif ( $status == 2 )
{
$status_string = " Alert " ;
2002-09-20 23:29:41 +08:00
$class = " oratext " ;
2002-09-16 17:19:24 +08:00
}
2002-09-28 02:15:21 +08:00
$new_alarm = ( $status > 0 && $last_status == 0 );
2002-09-21 03:48:31 +08:00
header ( " Refresh: " . REFRESH_STATUS . " ; URL=' $PHP_SELF ?view=status&mid= $mid &last_status= $status ' " );
2002-09-16 17:19:24 +08:00
header ( " Expires: Mon, 26 Jul 1997 05:00:00 GMT " ); // Date in the past
header ( " Last-Modified: " . gmdate ( " D, d M Y H:i:s " ) . " GMT " ); // always modified
header ( " Cache-Control: no-store, no-cache, must-revalidate " ); // HTTP/1.1
header ( " Cache-Control: post-check=0, pre-check=0 " , false );
header ( " Pragma: no-cache " ); // HTTP/1.0
?>
< html >
< head >
2002-09-17 02:07:04 +08:00
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
2002-09-16 17:19:24 +08:00
< script language = " JavaScript " >
< ? php
2002-09-28 02:15:21 +08:00
if ( ALARM_POPUP && $new_alarm )
2002-09-16 17:19:24 +08:00
{
?>
top . window . focus ();
< ? php
}
?>
</ script >
</ head >
< body >
< table width = " 100% " align = " center " border = " 0 " cellpadding = " 0 " cellspacing = " 0 " >< tr >< td class = " <?php echo $class ?> " align = " center " valign = " middle " > Status : < ? php echo $status_string ?> </td></tr></table>
2002-09-28 02:15:21 +08:00
< ? php
if ( ALARM_SOUND && $status == 1 )
{
?>
< embed src = " <?php echo ALARM_SOUND ?> " autostart = " yes " hidden = " true " ></ embed >
< ? php
}
?>
2002-09-16 17:19:24 +08:00
</ body >
</ html >
< ? php
}
elseif ( $view == " events " )
{
2002-09-24 04:17:11 +08:00
switch ( $sort_field )
{
case 'Id' :
$sort_column = " E.Id " ;
break ;
case 'Name' :
$sort_column = " E.Name " ;
break ;
case 'Time' :
$sort_column = " E.StartTime " ;
break ;
case 'Secs' :
$sort_column = " E.Length " ;
break ;
case 'Frames' :
$sort_column = " E.Frames " ;
break ;
case 'Score' :
$sort_column = " E.AvgScore " ;
break ;
default :
2002-09-24 04:19:20 +08:00
$sort_field = " Time " ;
2002-09-24 04:17:11 +08:00
$sort_column = " E.StartTime " ;
break ;
}
$sort_order = $sort_asc ? " asc " : " desc " ;
if ( ! $sort_asc ) $sort_asc = 0 ;
2002-09-16 17:19:24 +08:00
if ( ! $archived )
{
if ( $max_events )
{
2002-09-21 03:48:31 +08:00
header ( " Refresh: " . REFRESH_EVENTS . " ; URL=' $PHP_SELF ?view=events&mid= $mid &max_events= $max_events ' " );
2002-09-16 17:19:24 +08:00
}
else
{
2002-09-23 18:55:05 +08:00
header ( " Refresh: " . REFRESH_EVENTS_ALL . " ; URL=' $PHP_SELF ?view=events&period= $period &archived= $archived &mid= $mid ' " );
2002-09-16 17:19:24 +08:00
}
header ( " Expires: Mon, 26 Jul 1997 05:00:00 GMT " ); // Date in the past
header ( " Last-Modified: " . gmdate ( " D, d M Y H:i:s " ) . " GMT " ); // always modified
header ( " Cache-Control: no-store, no-cache, must-revalidate " ); // HTTP/1.1
header ( " Cache-Control: post-check=0, pre-check=0 " , false );
header ( " Pragma: no-cache " ); // HTTP/1.0
}
?>
< html >
< head >
< title > ZM - < ? php echo $monitor ?> - Events <?php if ( $archived ) { ?>Archive<?php } ?></title>
2002-09-17 02:07:04 +08:00
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
2002-09-16 17:19:24 +08:00
< script language = " JavaScript " >
function newWindow ( Url , Name ) {
2002-09-22 06:56:53 +08:00
var Name = window . open ( Url , Name , " resizable,scrollbars,width=420,height=500 " );
2002-09-16 17:19:24 +08:00
}
function closeWindow () {
top . window . close ();
}
function checkAll ( form , name ){
for ( var i = 0 ; i < form . elements . length ; i ++ )
if ( form . elements [ i ] . name . indexOf ( name ) == 0 )
form . elements [ i ] . checked = 1 ;
}
</ script >
</ head >
< body >
2002-10-01 21:44:28 +08:00
< form name = " event_form " method = " get " action = " <?php echo $PHP_SELF ?> " >
2002-09-16 17:19:24 +08:00
< input type = " hidden " name = " view " value = " <?php echo $view ?> " >
< input type = " hidden " name = " action " value = " delete " >
< input type = " hidden " name = " mid " value = " <?php echo $mid ?> " >
< ? php if ( $max_events ) { ?>
< input type = " hidden " name = " max_events " value = " <?php echo $max_events ?> " >
< ? php } ?>
2002-09-23 18:55:05 +08:00
< ? php if ( $period ) { ?>
< input type = " hidden " name = " period " value = " <?php echo $period ?> " >
< ? php } ?>
2002-09-16 17:19:24 +08:00
< ? php if ( $archived ) { ?>
< input type = " hidden " name = " archived " value = " <?php echo $archived ?> " >
< ? php } ?>
2002-09-17 02:33:50 +08:00
< center >< table width = " 96% " align = " center " border = " 0 " cellspacing = " 1 " cellpadding = " 0 " >
2002-09-16 17:19:24 +08:00
< tr >
< td valign = " top " >< table border = " 0 " cellspacing = " 0 " cellpadding = " 0 " width = " 100% " >
< ? php
2002-09-23 18:55:05 +08:00
$sql = " select E.Id, E.Name,unix_timestamp(E.StartTime) as Time,E.Length,E.Frames,E.AlarmFrames,E.AvgScore,E.MaxScore from Monitors as M, Events as E where M.Id = ' $mid ' and M.Id = E.MonitorId and E.Archived = " . ( $archived ? " 1 " : " 0 " );
if ( $period )
$sql .= " and E.StartTime >= now() - interval 1 $period " ;
2002-09-24 04:17:11 +08:00
$sql .= " order by $sort_column $sort_order " ;
2002-09-16 17:19:24 +08:00
if ( $max_events )
$sql .= " limit 0, $max_events " ;
$result = mysql_query ( $sql );
if ( ! $result )
{
die ( mysql_error () );
}
$n_rows = mysql_num_rows ( $result );
?>
< tr >
< td class = " text " >< b >< ? php if ( $max_events ) { ?> Last <?php } ?><?php echo $n_rows ?> events</b></td>
< ? php if ( ! $max_events ) { ?>
2002-09-21 03:48:31 +08:00
< td align = " center " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=events&mid=<?php echo $mid ?>&max_events=<?php echo MAX_EVENTS ?> " > Recent </ a ></ td >
2002-09-16 17:19:24 +08:00
< ? php } ?>
< ? php if ( $archived || $max_events ) { ?>
2002-09-21 03:48:31 +08:00
< td align = " center " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=events&mid=<?php echo $mid ?> " > All </ a ></ td >
2002-09-16 17:19:24 +08:00
< ? php } ?>
< ? php if ( ! $archived ) { ?>
2002-09-21 03:48:31 +08:00
< td align = " center " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=events&mid=<?php echo $mid ?>&archived=1 " > Archive </ a ></ td >
2002-09-16 17:19:24 +08:00
< ? php } ?>
< td align = " right " class = " text " >< a href = " javascript: checkAll( event_form, 'delete_eids' ); " > Check All </ a ></ td >
</ tr >
2002-09-17 02:07:04 +08:00
< tr >< td colspan = " 5 " class = " text " >& nbsp ; </ td ></ tr >
< tr >< td colspan = " 5 " >< table border = " 0 " cellspacing = " 0 " cellpadding = " 0 " width = " 100% " >
< tr align = " center " >
2002-09-24 04:17:11 +08:00
< td width = " 4% " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=events&mid=<?php echo $mid ?>&max_events=<?php echo $max_events ?>&archived=<?php echo $archived ?>&period=<?php echo $period ?>&sort_field=Id&sort_asc=<?php echo $sort_field == 'Id'?! $sort_asc :0 ?> " > Id < ? php if ( $sort_field == " Id " ) if ( $sort_asc ) echo " (^) " ; else echo " (v) " ; ?> </a></td>
< td width = " 24% " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=events&mid=<?php echo $mid ?>&max_events=<?php echo $max_events ?>&archived=<?php echo $archived ?>&period=<?php echo $period ?>&sort_field=Name&sort_asc=<?php echo $sort_field == 'Name'?! $sort_asc :0 ?> " > Name < ? php if ( $sort_field == " Name " ) if ( $sort_asc ) echo " (^) " ; else echo " (v) " ; ?> </a></td>
< td class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=events&mid=<?php echo $mid ?>&max_events=<?php echo $max_events ?>&archived=<?php echo $archived ?>&period=<?php echo $period ?>&sort_field=Time&sort_asc=<?php echo $sort_field == 'Time'?! $sort_asc :0 ?> " > Time < ? php if ( $sort_field == " Time " ) if ( $sort_asc ) echo " (^) " ; else echo " (v) " ; ?> </a></td>
< td class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=events&mid=<?php echo $mid ?>&max_events=<?php echo $max_events ?>&archived=<?php echo $archived ?>&period=<?php echo $period ?>&sort_field=Secs&sort_asc=<?php echo $sort_field == 'Secs'?! $sort_asc :0 ?> " > Secs < ? php if ( $sort_field == " Secs " ) if ( $sort_asc ) echo " (^) " ; else echo " (v) " ; ?> </a></td>
< td class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=events&mid=<?php echo $mid ?>&max_events=<?php echo $max_events ?>&archived=<?php echo $archived ?>&period=<?php echo $period ?>&sort_field=Frames&sort_asc=<?php echo $sort_field == 'Frames'?! $sort_asc :0 ?> " > Frames < ? php if ( $sort_field == " Frames " ) if ( $sort_asc ) echo " (^) " ; else echo " (v) " ; ?> </a></td>
< td class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=events&mid=<?php echo $mid ?>&max_events=<?php echo $max_events ?>&archived=<?php echo $archived ?>&period=<?php echo $period ?>&sort_field=Score&sort_asc=<?php echo $sort_field == 'Score'?! $sort_asc :0 ?> " > Score < ? php if ( $sort_field == " Score " ) if ( $sort_asc ) echo " (^) " ; else echo " (v) " ; ?> </a></td>
2002-09-17 02:07:04 +08:00
< td class = " text " > Delete </ td >
</ tr >
2002-09-16 17:19:24 +08:00
< ? php
while ( $row = mysql_fetch_assoc ( $result ) )
{
?>
< tr >
2002-09-21 03:48:31 +08:00
< td align = " center " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=event&eid=<?php echo $row[Id] ?>', 'zmEvent' ); " >< ? php echo $row [ Id ] ?> </a></td>
< td align = " center " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=event&eid=<?php echo $row[Id] ?>', 'zmEvent' ); " >< ? php echo $row [ Name ] ?> </a></td>
2002-09-16 17:19:24 +08:00
< td align = " center " class = " text " >< ? php echo strftime ( " %m/%d %H:%M:%S " , $row [ Time ] ) ?> </td>
< td align = " center " class = " text " >< ? php echo $row [ Length ] ?> </td>
< td align = " center " class = " text " >< ? php echo $row [ Frames ] ?> (<?php echo $row[AlarmFrames] ?>)</td>
2002-09-19 17:38:17 +08:00
< td align = " center " class = " text " >< ? php echo $row [ AvgScore ] ?> (<?php echo $row[MaxScore] ?>)</td>
2002-09-16 17:19:24 +08:00
< td align = " center " class = " text " >< input type = " checkbox " name = " delete_eids[] " value = " <?php echo $row[Id] ?> " ></ td >
</ tr >
< ? php
}
?>
</ table ></ td ></ tr >
</ table ></ td >
</ tr >
< tr >< td align = " right " >< input type = " submit " value = " Delete " class = " form " ></ td ></ tr >
2002-09-17 02:33:50 +08:00
</ table ></ center >
2002-09-16 17:19:24 +08:00
</ form >
</ body >
</ html >
< ? php
}
elseif ( $view == " image " )
{
2002-10-01 22:19:14 +08:00
$result = mysql_query ( " select E.*,M.Name as MonitorName,M.Width,M.Height from Events as E, Monitors as M where E.Id = ' $eid ' and E.MonitorId = M.Id " );
if ( ! $result )
die ( mysql_error () );
$event = mysql_fetch_assoc ( $result );
2002-09-16 17:19:24 +08:00
$result = mysql_query ( " select * from Frames where EventID = ' $eid ' and FrameId = ' $fid ' " );
if ( ! $result )
die ( mysql_error () );
$frame = mysql_fetch_assoc ( $result );
$result = mysql_query ( " select count(*) as FrameCount from Frames where EventID = ' $eid ' " );
if ( ! $result )
die ( mysql_error () );
$row = mysql_fetch_assoc ( $result );
$max_fid = $row [ FrameCount ];
$first_fid = 1 ;
$prev_fid = $fid - 1 ;
$next_fid = $fid + 1 ;
$last_fid = $max_fid ;
$image_path = $frame [ ImagePath ];
$anal_image = preg_replace ( " /capture/ " , " analyse " , $image_path );
if ( file_exists ( $anal_image ) )
{
$image_path = $anal_image ;
}
?>
< html >
< head >
< title > ZM - Image < ? php echo $eid . " - " . $fid ?> </title>
2002-09-17 02:07:04 +08:00
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
2002-09-16 17:19:24 +08:00
< script language = " JavaScript " >
window . focus ();
function newWindow ( Url , Name , Width , Height ) {
2002-09-24 20:18:22 +08:00
var Name = window . open ( Url , Name , " resizable,scrollbars,width= " + Width + " ,height= " + Height );
2002-09-16 17:19:24 +08:00
}
function closeWindow () {
2002-09-24 20:18:22 +08:00
window . close ();
2002-09-16 17:19:24 +08:00
}
2002-09-24 20:18:22 +08:00
function deleteEvent () {
opener . location . href = " <?php echo $PHP_SELF ?>?view=none&action=delete&delete_eid=<?php echo $eid ?> " ;
window . close ();
2002-09-16 17:19:24 +08:00
}
</ script >
</ head >
< body >
< table border = " 0 " >
2002-09-24 20:36:59 +08:00
< tr >< td colspan = " 2 " class = " text " >< b > Image < ? php echo $eid . " - " . $fid . " ( $frame[Score] ) " ?> </b></td>
2002-09-24 20:18:22 +08:00
< td align = " center " class = " text " >< a href = " javascript: deleteEvent(); " > Delete </ a ></ td >
2002-09-16 17:19:24 +08:00
< td align = " right " class = " text " >< a href = " javascript: closeWindow(); " > Close </ a ></ td >
</ tr >
2002-10-01 22:19:14 +08:00
< tr >< td colspan = " 4 " >< img src = " <?php echo $image_path ?> " width = " <?php echo $event[Width] ?> " height = " <?php echo $event[Height] ?> " border = " 0 " ></ td ></ tr >
2002-09-16 17:19:24 +08:00
< tr >
< ? php if ( $fid > 1 ) { ?>
2002-09-24 20:39:29 +08:00
< td align = " center " width = " 25% " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=image&eid=<?php echo $eid ?>&fid=<?php echo $first_fid ?> " > First </ a ></ td >
2002-09-16 17:19:24 +08:00
< ? php } else { ?>
2002-09-24 20:39:29 +08:00
< td align = " center " width = " 25% " class = " text " >& nbsp ; </ td >
2002-09-16 17:19:24 +08:00
< ? php } if ( $fid > 1 ) { ?>
2002-09-24 20:39:29 +08:00
< td align = " center " width = " 25% " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=image&eid=<?php echo $eid ?>&fid=<?php echo $prev_fid ?> " > Prev </ a ></ td >
2002-09-16 17:19:24 +08:00
< ? php } else { ?>
2002-09-24 20:39:29 +08:00
< td align = " center " width = " 25% " class = " text " >& nbsp ; </ td >
2002-09-16 17:19:24 +08:00
< ? php } if ( $fid < $max_fid ) { ?>
2002-09-24 20:39:29 +08:00
< td align = " center " width = " 25% " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=image&eid=<?php echo $eid ?>&fid=<?php echo $next_fid ?> " > Next </ a ></ td >
2002-09-16 17:19:24 +08:00
< ? php } else { ?>
2002-09-24 20:39:29 +08:00
< td align = " center " width = " 25% " class = " text " >& nbsp ; </ td >
2002-09-16 17:19:24 +08:00
< ? php } if ( $fid < $max_fid ) { ?>
2002-09-24 20:39:29 +08:00
< td align = " center " width = " 25% " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=image&eid=<?php echo $eid ?>&fid=<?php echo $last_fid ?> " > Last </ a ></ td >
2002-09-16 17:19:24 +08:00
< ? php } else { ?>
2002-09-24 20:39:29 +08:00
< td align = " center " width = " 25% " class = " text " >& nbsp ; </ td >
2002-09-16 17:19:24 +08:00
< ? php } ?>
</ tr >
</ table >
</ body >
</ html >
< ? php
}
elseif ( $view == " event " )
{
2002-09-22 06:56:53 +08:00
if ( ! $mode )
{
if ( canStream () )
$mode = " stream " ;
else
$mode = " still " ;
}
2002-09-16 17:19:24 +08:00
$result = mysql_query ( " select E.*,M.Name as MonitorName,M.Width,M.Height from Events as E, Monitors as M where E.Id = ' $eid ' and E.MonitorId = M.Id " );
if ( ! $result )
die ( mysql_error () );
$event = mysql_fetch_assoc ( $result );
?>
< html >
< head >
< title > ZM - Event - < ? php echo $event [ Name ] ?> </title>
2002-09-17 02:07:04 +08:00
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
2002-09-16 17:19:24 +08:00
< script language = " JavaScript " >
opener . location . reload ();
window . focus ();
function refreshWindow () {
window . location . reload ();
}
function closeWindow () {
window . close ();
}
function newWindow ( Url , Name , Width , Height ) {
var Name = window . open ( Url , Name , " resizable,scrollbars,width= " + Width + " ,height= " + Height );
}
</ script >
</ head >
< body >
< table border = " 0 " cellspacing = " 0 " cellpadding = " 4 " width = " 100% " >
< tr >
< td colspan = " 6 " align = " left " class = " text " >
2002-10-01 21:44:28 +08:00
< form method = " get " action = " <?php echo $PHP_SELF ?> " >
2002-09-16 17:19:24 +08:00
< input type = " hidden " name = " view " value = " <?php echo $view ?> " >
< input type = " hidden " name = " action " value = " rename " >
2002-09-24 20:22:48 +08:00
< input type = " hidden " name = " eid " value = " <?php echo $eid ?> " >
2002-09-16 17:19:24 +08:00
< input type = " text " size = " 16 " name = " event_name " value = " <?php echo $event[Name] ?> " class = " form " >
< input type = " submit " value = " Rename " class = " form " ></ td >
</ tr >
< tr >
2002-09-22 06:56:53 +08:00
< td align = " center " class = " text " >< a href = " javascript: refreshWindow(); " > Refresh </ a ></ td >
2002-09-24 20:18:22 +08:00
< td align = " center " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=none&action=delete&delete_eid=<?php echo $eid ?> " > Delete </ a ></ td >
2002-09-24 20:27:12 +08:00
< ? php if ( $event [ Archived ] ) { ?>
< td align = " center " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=<?php echo $view ?>&action=unarchive&mid=<?php echo $event[MonitorName] ?>&eid=<?php echo $eid ?> " > Unarchive </ a ></ td >
< ? php } else { ?>
2002-09-22 06:56:53 +08:00
< td align = " center " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=<?php echo $view ?>&action=archive&mid=<?php echo $event[MonitorName] ?>&eid=<?php echo $eid ?> " > Archive </ a ></ td >
2002-09-24 20:27:12 +08:00
< ? php } ?>
2002-09-22 06:56:53 +08:00
< ? php if ( $mode == " stream " ) { ?>
< td align = " center " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=event&mode=still&mid=<?php echo $mid ?>&eid=<?php echo $eid ?> " > Stills </ a ></ td >
< ? php } elseif ( canStream () ) { ?>
< td align = " center " class = " text " >< a href = " <?php echo $PHP_SELF ?>?view=event&mode=stream&mid=<?php echo $mid ?>&eid=<?php echo $eid ?> " > Stream </ a ></ td >
< ? php } else { ?>
< td align = " center " class = " text " >& nbsp ; </ td >
< ? php } ?>
2002-09-24 05:54:57 +08:00
< ? php if ( MPEG_ENCODE_PATH && file_exists ( MPEG_ENCODE_PATH ) ) { ?>
2002-09-22 06:56:53 +08:00
< td align = " center " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=video&eid=<?php echo $eid ?>', 'zmVideo', 100, 80 ); " > Video </ a ></ td >
2002-09-24 05:54:57 +08:00
< ? php } else { ?>
< td align = " center " class = " text " >& nbsp ; </ td >
< ? php } ?>
2002-09-22 06:56:53 +08:00
< td align = " right " class = " text " >< a href = " javascript: closeWindow(); " > Close </ a ></ td >
2002-09-16 17:19:24 +08:00
</ tr >
2002-09-22 06:56:53 +08:00
< ? php if ( $mode == " stream " )
{
2002-09-21 19:15:06 +08:00
$stream_src = ZMS_PATH . " ?path= " . ZMS_EVENT_PATH . " &event= $eid &refresh= " . STREAM_EVENT_DELAY ;
if ( isNetscape () )
2002-09-16 17:19:24 +08:00
{
?>
< tr >< td colspan = " 6 " align = " center " >< img src = " <?php echo $stream_src ?> " border = " 0 " width = " <?php echo $event[Width] ?> " height = " <?php echo $event[Height] ?> " ></ td ></ tr >
< ? php
}
else
{
?>
2002-09-21 19:15:06 +08:00
< tr >< td colspan = " 6 " align = " center " >< applet code = " com.charliemouse.cambozola.Viewer " archive = " <?php echo CAMBOZOLA_PATH ?> " align = " middle " width = " <?php echo $event[Width] ?> " height = " <?php echo $event[Height] ?> " >< param name = " url " value = " <?php echo $stream_src ?> " ></ applet ></ td ></ tr >
2002-09-16 17:19:24 +08:00
< ? php
}
2002-09-22 06:56:53 +08:00
}
else
{
$result = mysql_query ( " select * from Frames where EventID = ' $eid ' order by Id " );
if ( ! $result )
die ( mysql_error () );
?>
< tr >< td colspan = " 6 " >< table border = " 0 " cellpadding = " 0 " cellspacing = " 2 " align = " center " >
< tr >
< ? php
$count = 0 ;
$scale = IMAGE_SCALING ;
$fraction = sprintf ( " %.2f " , 1 / $scale );
$thumb_width = $event [ Width ] / 4 ;
$thumb_height = $event [ Height ] / 4 ;
while ( $row = mysql_fetch_assoc ( $result ) )
{
$frame_id = $row [ FrameId ];
$image_path = $row [ ImagePath ];
2002-09-23 20:47:04 +08:00
$capt_image = $image_path ;
2002-10-02 00:16:45 +08:00
if ( $scale == 1 || ! file_exists ( NETPBM_DIR . " /jpegtopnm " ) )
2002-09-22 06:56:53 +08:00
{
$anal_image = preg_replace ( " /capture/ " , " analyse " , $image_path );
if ( file_exists ( $anal_image ) && filesize ( $anal_image ) )
{
$thumb_image = $anal_image ;
}
else
{
$thumb_image = $capt_image ;
}
}
else
{
2002-09-23 20:47:04 +08:00
$thumb_image = preg_replace ( " /capture/ " , " thumb " , $capt_image );
2002-09-22 06:56:53 +08:00
if ( ! file_exists ( $thumb_image ) || ! filesize ( $thumb_image ) )
{
2002-09-23 20:47:04 +08:00
$anal_image = preg_replace ( " /capture/ " , " analyse " , $capt_image );
2002-09-22 06:56:53 +08:00
if ( file_exists ( $anal_image ) )
2002-10-03 00:05:36 +08:00
$command = NETPBM_DIR . " /jpegtopnm -dct fast $anal_image | " . NETPBM_DIR . " /pnmscalefixed $fraction | " . NETPBM_DIR . " /ppmtojpeg --dct=fast > $thumb_image " ;
2002-09-22 06:56:53 +08:00
else
2002-10-03 00:05:36 +08:00
$command = NETPBM_DIR . " /jpegtopnm -dct fast $capt_image | " . NETPBM_DIR . " /pnmscalefixed $fraction | " . NETPBM_DIR . " /ppmtojpeg --dct=fast > $thumb_image " ;
2002-09-22 06:56:53 +08:00
#exec( escapeshellcmd( $command ) );
exec ( $command );
}
}
?>
< td align = " center " width = " 88 " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=image&eid=<?php echo $eid ?>&fid=<?php echo $frame_id ?>', 'zmImage', <?php echo $event[Width] +48 ?>, <?php echo $event[Height] +72 ?> ); " >< img src = " <?php echo $thumb_image ?> " width = " <?php echo $thumb_width ?> " height = " <? echo $thumb_height ?> " border = " 0 " alt = " <?php echo $frame_id ?>/<?php echo $row[Score] ?> " ></ a ></ td >
< ? php
flush ();
if ( ! ( ++ $count % 4 ) )
{
?>
</ tr >
< tr >
< ? php
}
}
?>
</ tr >
</ table ></ td ></ tr >
< ? php
}
2002-09-16 17:19:24 +08:00
?>
</ table >
</ body >
</ html >
< ? php
}
elseif ( $view == " zones " )
{
2002-09-21 19:15:06 +08:00
$status = exec ( escapeshellcmd ( ZMU_PATH . " -m $mid -z " ) );
2002-09-16 17:19:24 +08:00
$result = mysql_query ( " select * from Monitors where Id = ' $mid ' " );
if ( ! $result )
die ( mysql_error () );
$monitor = mysql_fetch_assoc ( $result );
$result = mysql_query ( " select * from Zones where MonitorId = ' $mid ' " );
if ( ! $result )
die ( mysql_error () );
$zones = array ();
while ( $row = mysql_fetch_assoc ( $result ) )
{
$zones [] = $row ;
}
$image = $monitor [ Name ] . " -Zones.jpg " ;
?>
< html >
< head >
< title > ZM - < ? php echo $monitor [ Name ] ?> - Zones</title>
2002-09-17 02:07:04 +08:00
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
2002-09-23 19:21:57 +08:00
< script language = " JavaScript " >
window . focus ();
2002-09-23 20:28:43 +08:00
function newWindow ( Url , Name , Width , Height ) {
var Name = window . open ( Url , Name , " resizable,scrollbars,width= " + Width + " ,height= " + Height );
}
2002-09-23 19:21:57 +08:00
function closeWindow () {
window . close ();
}
</ script >
2002-09-16 17:19:24 +08:00
</ head >
< body >
< map name = " zonemap " >
< ? php
foreach ( $zones as $zone )
{
?>
2002-09-23 20:28:43 +08:00
< area shape = " rect " coords = " <?php echo " $zone [ LoX ], $zone [ LoY ], $zone [ HiX ], $zone [ HiY ] " ?> " href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=zone&mid=<?php echo $mid ?>&zid=<?php echo $zone[Id] ?>', 'zmZone', 360, 480 ); " >
2002-09-16 17:19:24 +08:00
< ? php
}
?>
< area shape = " default " nohref >
</ map >
< table align = " center " border = " 0 " cellspacing = " 2 " cellpadding = " 2 " width = " 96% " >
2002-09-23 19:21:57 +08:00
< tr >
< td width = " 33% " align = " left " class = " text " >& nbsp ; </ td >
< td width = " 34% " align = " center " class = " head " >< strong >< ? php echo $monitor [ Name ] ?> Zones</strong></td>
< td width = " 33% " align = " right " class = " text " >< a href = " javascript: closeWindow(); " > Close </ a ></ td >
</ tr >
2002-10-01 22:19:14 +08:00
< tr >< td colspan = " 3 " align = " center " >< img src = " <?php echo $image ?> " usemap = " #zonemap " width = " <?php echo $monitor[Width] ?> " height = " <?php echo $monitor[Height] ?> " border = " 0 " ></ td ></ tr >
2002-09-16 17:19:24 +08:00
</ table >
< table align = " center " border = " 0 " cellspacing = " 0 " cellpadding = " 0 " width = " 96% " >
2002-10-01 21:44:28 +08:00
< form name = " event_form " method = " get " action = " <?php echo $PHP_SELF ?> " >
2002-09-23 21:15:11 +08:00
< input type = " hidden " name = " view " value = " <?php echo $view ?> " >
2002-09-16 17:19:24 +08:00
< input type = " hidden " name = " action " value = " delete " >
< input type = " hidden " name = " mid " value = " <?php echo $mid ?> " >
< tr >< td align = " center " class = " smallhead " > Id </ td >
< td align = " center " class = " smallhead " > Name </ td >
< td align = " center " class = " smallhead " > Type </ td >
< td align = " center " class = " smallhead " > Units </ td >
< td align = " center " class = " smallhead " > Dimensions </ td >
< td align = " center " class = " smallhead " > Delete </ td >
</ tr >
< ? php
foreach ( $zones as $zone )
{
?>
< tr >
2002-09-23 20:28:43 +08:00
< td align = " center " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=zone&mid=<?php echo $mid ?>&zid=<?php echo $zone[Id] ?>', 'zmZone', 360, 480 ); " >< ? php echo $zone [ Id ] ?> .</a></td>
< td align = " center " class = " text " >< a href = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=zone&mid=<?php echo $mid ?>&zid=<?php echo $zone[Id] ?>', 'zmZone', 360, 480 ); " >< ? php echo $zone [ Name ] ?> </a></td>
2002-09-16 17:19:24 +08:00
< td align = " center " class = " text " >< ? php echo $zone [ 'Type' ] ?> </td>
< td align = " center " class = " text " >< ? php echo $zone [ Units ] ?> </td>
< td align = " center " class = " text " >< ? php echo $zone [ LoX ] ?> ,<?php echo $zone[LoY] ?>-<?php echo $zone[HiX] ?>,<?php echo $zone[HiY]?></td>
< td align = " center " class = " text " >< input type = " checkbox " name = " delete_zids[] " value = " <?php echo $zone[Id] ?> " ></ td >
</ tr >
< ? php
}
?>
< tr >
< td align = " center " class = " text " >& nbsp ; </ td >
2002-09-23 21:15:11 +08:00
< td colspan = " 4 " align = " center " >< input type = " button " value = " Add New Zone " class = " form " onClick = " javascript: newWindow( '<?php echo $PHP_SELF ?>?view=zone&mid=<?php echo $mid ?>&zid=-1', 'zmZone', 360, 480 ); " ></ td >
2002-09-16 17:19:24 +08:00
< td align = " center " >< input type = " submit " value = " Delete " class = " form " ></ td >
</ tr >
</ form >
</ table >
</ body >
</ html >
< ? php
}
2002-09-24 00:37:41 +08:00
elseif ( $view == " monitor " )
{
if ( $mid > 0 )
{
$result = mysql_query ( " select * from Monitors where Id = ' $mid ' " );
if ( ! $result )
die ( mysql_error () );
$monitor = mysql_fetch_assoc ( $result );
}
else
{
$monitor = array ();
$monitor [ Name ] = " New " ;
}
?>
< html >
< head >
< title > ZM - Monitor < ? php echo $monitor [ Name ] ?> </title>
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
< script language = " JavaScript " >
< ? php
if ( $refresh_parent )
{
?>
opener . location . reload ();
< ? php
}
?>
window . focus ();
function validateForm ( theForm )
{
return ( true );
}
function closeWindow () {
window . close ();
}
</ script >
</ head >
< body >
< table border = " 0 " cellspacing = " 0 " cellpadding = " 0 " width = " 100% " >
< tr >
< td colspan = " 2 " align = " left " class = " head " > Monitor < ? php echo $monitor [ Name ] ?> </td>
</ tr >
2002-10-01 21:44:28 +08:00
< form name = " monitorForm " method = " get " action = " <?php echo $PHP_SELF ?> " onsubmit = " return validateForm(this) " >
2002-09-24 00:37:41 +08:00
< input type = " hidden " name = " view " value = " <?php echo $view ?> " >
< input type = " hidden " name = " action " value = " monitor " >
< input type = " hidden " name = " mid " value = " <?php echo $mid ?> " >
< tr >
< td align = " left " class = " smallhead " > Parameter </ td >< td align = " left " class = " smallhead " > Value </ td >
</ tr >
< tr >< td align = " left " class = " text " > Name </ td >< td align = " left " class = " text " >< input type = " text " name = " new_name " value = " <?php echo $monitor[Name] ?> " size = " 12 " class = " form " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Function </ td >< td align = " left " class = " text " >< select name = " new_function " class = " form " >
< ? php
foreach ( getEnumValues ( 'Monitors' , 'Function' ) as $opt_function )
{
?>
< option value = " <?php echo $opt_function ?> " < ? php if ( $opt_function == $monitor [ 'Function' ] ) { ?> selected<?php } ?>><?php echo $opt_function ?></option>
< ? php
}
?>
</ select ></ td ></ tr >
< tr >< td align = " left " class = " text " > Device Number ( / dev / video ? ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_device " value = " <?php echo $monitor[Device] ?> " size = " 4 " class = " form " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Device Channel </ td >< td align = " left " class = " text " >< input type = " text " name = " new_channel " value = " <?php echo $monitor[Channel] ?> " size = " 4 " class = " form " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Device Format ( 1 = PAL , 2 = NTSC etc ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_format " value = " <?php echo $monitor[Format] ?> " size = " 4 " class = " form " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Device Width ( pixels ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_width " value = " <?php echo $monitor[Width] ?> " size = " 4 " class = " form " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Device Height ( pixels ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_height " value = " <?php echo $monitor[Height] ?> " size = " 4 " class = " form " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Device Colour Depth </ td >< td align = " left " class = " text " >< input type = " text " name = " new_colours " value = " <?php echo $monitor[Colours] ?> " size = " 4 " class = " form " ></ td ></ tr >
< tr >< td colspan = " 2 " align = " left " class = " text " >& nbsp ; </ td ></ tr >
< tr >
< td align = " left " >< input type = " submit " value = " Update " class = " form " ></ td >
< td align = " left " >< input type = " button " value = " Cancel " class = " form " onClick = " closeWindow() " ></ td >
</ tr >
</ table >
</ body >
</ html >
< ? php
}
2002-09-23 20:28:43 +08:00
elseif ( $view == " zone " )
{
$result = mysql_query ( " select * from Monitors where Id = ' $mid ' " );
if ( ! $result )
die ( mysql_error () );
$monitor = mysql_fetch_assoc ( $result );
2002-09-23 21:15:11 +08:00
if ( $zid > 0 )
{
$result = mysql_query ( " select * from Zones where MonitorId = ' $mid ' and Id = ' $zid ' " );
if ( ! $result )
die ( mysql_error () );
$zone = mysql_fetch_assoc ( $result );
}
else
{
$zone = array ();
$zone [ Name ] = " New " ;
$zone [ LoX ] = 0 ;
$zone [ LoY ] = 0 ;
$zone [ HiX ] = $monitor [ Width ] - 1 ;
$zone [ HiY ] = $monitor [ Height ] - 1 ;
}
2002-09-23 20:28:43 +08:00
?>
< html >
< head >
2002-09-23 21:15:11 +08:00
< title > ZM - < ? php echo $monitor [ Name ] ?> - Zone <?php echo $zone[Name] ?></title>
2002-09-23 20:28:43 +08:00
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
< script language = " JavaScript " >
< ? php
if ( $refresh_parent )
{
?>
opener . location . reload ();
< ? php
}
?>
window . focus ();
2002-09-23 23:56:46 +08:00
function validateForm ( theForm )
{
2002-09-24 04:51:21 +08:00
theForm . new_alarm_rgb . value = ( theForm . new_alarm_rgb_r . value << 16 ) | ( theForm . new_alarm_rgb_g . value << 8 ) | theForm . new_alarm_rgb_b . value ;
2002-09-23 23:56:46 +08:00
return ( true );
}
function applyZoneType ( theForm )
{
if ( theForm . new_type . value == 'Inactive' )
{
2002-09-24 04:51:21 +08:00
theForm . new_alarm_rgb_r . disabled = true ;
theForm . new_alarm_rgb_r . value = " " ;
theForm . new_alarm_rgb_g . disabled = true ;
theForm . new_alarm_rgb_g . value = " " ;
theForm . new_alarm_rgb_b . disabled = true ;
theForm . new_alarm_rgb_b . value = " " ;
2002-09-23 23:56:46 +08:00
theForm . new_alarm_threshold . disabled = true ;
theForm . new_alarm_threshold . value = " " ;
theForm . new_min_alarm_pixels . disabled = true ;
theForm . new_min_alarm_pixels . value = " " ;
theForm . new_max_alarm_pixels . disabled = true ;
theForm . new_max_alarm_pixels . value = " " ;
theForm . new_filter_x . disabled = true ;
theForm . new_filter_x . value = " " ;
theForm . new_filter_y . disabled = true ;
theForm . new_filter_y . value = " " ;
theForm . new_min_filter_pixels . disabled = true ;
theForm . new_min_filter_pixels . value = " " ;
theForm . new_max_filter_pixels . disabled = true ;
theForm . new_max_filter_pixels . value = " " ;
theForm . new_min_blob_pixels . disabled = true ;
theForm . new_min_blob_pixels . value = " " ;
theForm . new_max_blob_pixels . disabled = true ;
theForm . new_max_blob_pixels . value = " " ;
theForm . new_min_blobs . disabled = true ;
theForm . new_min_blobs . value = " " ;
theForm . new_max_blobs . disabled = true ;
theForm . new_max_blobs . value = " " ;
}
else
{
2002-09-24 04:51:21 +08:00
theForm . new_alarm_rgb_r . disabled = false ;
theForm . new_alarm_rgb_r . value = " <?php echo ( $zone[AlarmRGB] >>16)&0xff; ?> " ;
theForm . new_alarm_rgb_g . disabled = false ;
theForm . new_alarm_rgb_g . value = " <?php echo ( $zone[AlarmRGB] >>8)&0xff; ?> " ;
theForm . new_alarm_rgb_b . disabled = false ;
theForm . new_alarm_rgb_b . value = " <?php echo $zone[AlarmRGB] &0xff; ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_alarm_threshold . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_alarm_threshold . value = " <?php echo $zone[AlarmThreshold] ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_min_alarm_pixels . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_min_alarm_pixels . value = " <?php echo $zone[MinAlarmPixels] ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_max_alarm_pixels . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_max_alarm_pixels . value = " <?php echo $zone[MaxAlarmPixels] ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_filter_x . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_filter_x . value = " <?php echo $zone[FilterX] ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_filter_y . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_filter_y . value = " <?php echo $zone[FilterY] ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_min_filter_pixels . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_min_filter_pixels . value = " <?php echo $zone[MinFilterPixels] ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_max_filter_pixels . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_max_filter_pixels . value = " <?php echo $zone[MaxFilterPixels] ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_min_blob_pixels . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_min_blob_pixels . value = " <?php echo $zone[MinBlobPixels] ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_max_blob_pixels . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_max_blob_pixels . value = " <?php echo $zone[MaxBlobPixels] ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_min_blobs . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_min_blobs . value = " <?php echo $zone[MinBlobs] ?> " ;
2002-09-23 23:56:46 +08:00
theForm . new_max_blobs . disabled = false ;
2002-09-24 04:51:21 +08:00
theForm . new_max_blobs . value = " <?php echo $zone[MaxBlobs] ?> " ;
2002-09-23 23:56:46 +08:00
}
}
function toPixels ( theField , maxValue )
{
theField . value = Math . round (( theField . value * maxValue ) / 100 );
}
function toPercent ( theField , maxValue )
{
theField . value = Math . round (( 100 * theField . value ) / maxValue );
}
function applyZoneUnits ( theForm )
{
var max_width = < ? php echo $monitor [ Width ] - 1 ?> ;
var max_height = < ? php echo $monitor [ Height ] - 1 ?> ;
var area = ( max_width + 1 ) * ( max_height + 1 );
if ( theForm . new_units . value == 'Pixels' )
{
toPixels ( theForm . new_lo_x , max_width );
toPixels ( theForm . new_lo_y , max_height );
toPixels ( theForm . new_hi_x , max_width );
toPixels ( theForm . new_hi_y , max_height );
toPixels ( theForm . new_min_alarm_pixels , area );
toPixels ( theForm . new_max_alarm_pixels , area );
toPixels ( theForm . new_min_filter_pixels , area );
toPixels ( theForm . new_max_filter_pixels , area );
toPixels ( theForm . new_min_blob_pixels , area );
toPixels ( theForm . new_max_blob_pixels , area );
}
else
{
toPercent ( theForm . new_lo_x , max_width );
toPercent ( theForm . new_lo_y , max_height );
toPercent ( theForm . new_hi_x , max_width );
toPercent ( theForm . new_hi_y , max_height );
toPercent ( theForm . new_min_alarm_pixels , area );
toPercent ( theForm . new_max_alarm_pixels , area );
toPercent ( theForm . new_min_filter_pixels , area );
toPercent ( theForm . new_max_filter_pixels , area );
toPercent ( theForm . new_min_blob_pixels , area );
toPercent ( theForm . new_max_blob_pixels , area );
}
}
function checkBounds ( theField , fieldText , minValue , maxValue )
{
if ( document . zoneForm . new_units . value == " Percent " )
{
minValue = 0 ;
maxValue = 100 ;
}
if ( theField . value < minValue )
{
alert ( fieldText + " must be greater than or equal to " + minValue );
theField . value = minValue ;
}
if ( theField . value > maxValue )
{
alert ( fieldText + " must be less than or equal to " + maxValue );
theField . value = maxValue ;
}
}
function checkWidth ( theField , fieldText )
{
return ( checkBounds ( theField , fieldText , 0 , < ? php echo $monitor [ Width ] - 1 ?> ) );
}
function checkHeight ( theField , fieldText )
{
return ( checkBounds ( theField , fieldText , 0 , < ? php echo $monitor [ Height ] - 1 ?> ) );
}
function checkArea ( theField , fieldText )
{
return ( checkBounds ( theField , fieldText , 0 , < ? php echo $monitor [ Width ] * $monitor [ Height ] ?> ) );
}
2002-09-23 20:28:43 +08:00
function closeWindow () {
window . close ();
}
</ script >
</ head >
< body >
< table border = " 0 " cellspacing = " 0 " cellpadding = " 0 " width = " 100% " >
< tr >
2002-09-23 23:57:38 +08:00
< td colspan = " 2 " align = " left " class = " head " > Monitor < ? php echo $monitor [ Name ] ?> - Zone <?php echo $zone[Name] ?></td>
2002-09-23 20:28:43 +08:00
</ tr >
2002-10-01 21:44:28 +08:00
< form name = " zoneForm " method = " get " action = " <?php echo $PHP_SELF ?> " onsubmit = " return validateForm(this) " >
2002-09-23 20:28:43 +08:00
< input type = " hidden " name = " view " value = " <?php echo $view ?> " >
< input type = " hidden " name = " action " value = " zone " >
< input type = " hidden " name = " mid " value = " <?php echo $mid ?> " >
< input type = " hidden " name = " zid " value = " <?php echo $zid ?> " >
2002-09-24 04:51:21 +08:00
< input type = " hidden " name = " new_alarm_rgb " value = " " >
2002-09-23 20:28:43 +08:00
< tr >
< td align = " left " class = " smallhead " > Parameter </ td >< td align = " left " class = " smallhead " > Value </ td >
</ tr >
< tr >< td align = " left " class = " text " > Name </ td >< td align = " left " class = " text " >< input type = " text " name = " new_name " value = " <?php echo $zone[Name] ?> " size = " 12 " class = " form " ></ td ></ tr >
2002-09-23 23:56:46 +08:00
< tr >< td align = " left " class = " text " > Type </ td >< td align = " left " class = " text " >< select name = " new_type " class = " form " onchange = " applyZoneType(zoneForm) " >
2002-09-23 20:28:43 +08:00
< ? php
foreach ( getEnumValues ( 'Zones' , 'Type' ) as $opt_type )
{
?>
< option value = " <?php echo $opt_type ?> " < ? php if ( $opt_type == $zone [ 'Type' ] ) { ?> selected<?php } ?>><?php echo $opt_type ?></option>
< ? php
}
?>
</ select ></ td ></ tr >
2002-09-23 23:56:46 +08:00
< tr >< td align = " left " class = " text " > Units </ td >< td align = " left " class = " text " >< select name = " new_units " class = " form " onchange = " applyZoneUnits(zoneForm) " >
2002-09-23 20:28:43 +08:00
< ? php
foreach ( getEnumValues ( 'Zones' , 'Units' ) as $opt_units )
{
?>
< option value = " <?php echo $opt_units ?> " < ? php if ( $opt_units == $zone [ 'Units' ] ) { ?> selected<?php } ?>><?php echo $opt_units ?></option>
< ? php
}
?>
</ select ></ td ></ tr >
2002-09-23 23:56:46 +08:00
< tr >< td align = " left " class = " text " > Minimum X ( left ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_lo_x " value = " <?php echo $zone[LoX] ?> " size = " 4 " class = " form " onchange = " checkWidth(this,'Minimum X') " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Minimum Y ( top ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_lo_y " value = " <?php echo $zone[LoY] ?> " size = " 4 " class = " form " onchange = " checkHeight(this,'Minimum Y') " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Maximum X ( right ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_hi_x " value = " <?php echo $zone[HiX] ?> " size = " 4 " class = " form " onchange = " checkWidth(this,'Maximum X') " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Maximum Y ( bottom ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_hi_y " value = " <?php echo $zone[HiY] ?> " size = " 4 " class = " form " onchange = " checkHeight(this,'Maximum Y') " ></ td ></ tr >
2002-09-24 04:51:21 +08:00
< tr >< td align = " left " class = " text " > Alarm Colour ( RGB ) </ td >< td align = " left " class = " text " > R :< input type = " text " name = " new_alarm_rgb_r " value = " <?php echo ( $zone[AlarmRGB] >>16)&0xff ?> " size = " 3 " class = " form " >& nbsp ; G :< input type = " text " name = " new_alarm_rgb_g " value = " <?php echo ( $zone[AlarmRGB] >>8)&0xff ?> " size = " 3 " class = " form " >& nbsp ; B :< input type = " text " name = " new_alarm_rgb_b " value = " <?php echo $zone[AlarmRGB] &0xff ?> " size = " 3 " class = " form " ></ td ></ tr >
2002-09-23 20:28:43 +08:00
< tr >< td align = " left " class = " text " > Alarm Threshold ( 0 >= ? <= 255 ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_alarm_threshold " value = " <?php echo $zone[AlarmThreshold] ?> " size = " 4 " class = " form " ></ td ></ tr >
2002-09-23 23:56:46 +08:00
< tr >< td align = " left " class = " text " > Minimum Alarmed Area </ td >< td align = " left " class = " text " >< input type = " text " name = " new_min_alarm_pixels " value = " <?php echo $zone[MinAlarmPixels] ?> " size = " 6 " class = " form " onchange = " checkArea(this,'Minimum Alarmed Area') " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Maximum Alarmed Area </ td >< td align = " left " class = " text " >< input type = " text " name = " new_max_alarm_pixels " value = " <?php echo $zone[MaxAlarmPixels] ?> " size = " 6 " class = " form " onchange = " checkArea(this,'Maximum Alarmed Area') " ></ td ></ tr >
2002-09-23 20:28:43 +08:00
< tr >< td align = " left " class = " text " > Filter Width ( pixels ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_filter_x " value = " <?php echo $zone[FilterX] ?> " size = " 4 " class = " form " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Filter Height ( pixels ) </ td >< td align = " left " class = " text " >< input type = " text " name = " new_filter_y " value = " <?php echo $zone[FilterY] ?> " size = " 4 " class = " form " ></ td ></ tr >
2002-09-23 23:56:46 +08:00
< tr >< td align = " left " class = " text " > Minimum Filtered Area </ td >< td align = " left " class = " text " >< input type = " text " name = " new_min_filter_pixels " value = " <?php echo $zone[MinFilterPixels] ?> " size = " 6 " class = " form " onchange = " checkArea(this,'Minimum Filtered Area') " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Maximum Filtered Area </ td >< td align = " left " class = " text " >< input type = " text " name = " new_max_filter_pixels " value = " <?php echo $zone[MaxFilterPixels] ?> " size = " 6 " class = " form " onchange = " checkArea(this,'Minimum Filtered Area') " ></ td ></ tr >
2002-09-23 20:28:43 +08:00
< tr >< td align = " left " class = " text " > Minimum Blob Area </ td >< td align = " left " class = " text " >< input type = " text " name = " new_min_blob_pixels " value = " <?php echo $zone[MinBlobPixels] ?> " size = " 6 " class = " form " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Maximum Blob Area </ td >< td align = " left " class = " text " >< input type = " text " name = " new_max_blob_pixels " value = " <?php echo $zone[MaxBlobPixels] ?> " size = " 6 " class = " form " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Minimum Blobs </ td >< td align = " left " class = " text " >< input type = " text " name = " new_min_blobs " value = " <?php echo $zone[MinBlobs] ?> " size = " 4 " class = " form " ></ td ></ tr >
< tr >< td align = " left " class = " text " > Maximum Blobs </ td >< td align = " left " class = " text " >< input type = " text " name = " new_max_blobs " value = " <?php echo $zone[MaxBlobs] ?> " size = " 4 " class = " form " ></ td ></ tr >
< tr >< td colspan = " 2 " align = " left " class = " text " >& nbsp ; </ td ></ tr >
< tr >
< td align = " left " >< input type = " submit " value = " Update " class = " form " ></ td >
< td align = " left " >< input type = " button " value = " Cancel " class = " form " onClick = " closeWindow() " ></ td >
</ tr >
</ table >
</ body >
</ html >
< ? php
}
2002-09-16 17:19:24 +08:00
elseif ( $view == " video " )
{
$result = mysql_query ( " select E.*,M.Name as MonitorName, M.Colours from Events as E, Monitors as M where E.Id = ' $eid ' and E.MonitorId = M.Id " );
if ( ! $result )
die ( mysql_error () );
$event = mysql_fetch_assoc ( $result );
2002-09-24 17:44:36 +08:00
$event_dir = EVENT_PATH . " / $event[MonitorName] / " . sprintf ( " %04d " , $eid );
2002-09-16 17:19:24 +08:00
$param_file = $event_dir . " /mpeg.param " ;
$video_name = preg_replace ( " / \\ s/ " , " _ " , $event [ Name ] ) . " .mpeg " ;
$video_file = $event_dir . " / " . $video_name ;
if ( ! file_exists ( $video_file ) )
{
$fp = fopen ( $param_file , " w " );
fputs ( $fp , " PATTERN IBBPBBPBBPBBPBB \n " );
fputs ( $fp , " OUTPUT $video_file\n " );
fputs ( $fp , " BASE_FILE_FORMAT JPEG \n " );
fputs ( $fp , " GOP_SIZE 30 \n " );
fputs ( $fp , " SLICES_PER_FRAME 1 \n " );
fputs ( $fp , " PIXEL HALF \n " );
fputs ( $fp , " RANGE 10 \n " );
fputs ( $fp , " PSEARCH_ALG LOGARITHMIC \n " );
fputs ( $fp , " BSEARCH_ALG CROSS2 \n " );
fputs ( $fp , " IQSCALE 8 \n " );
fputs ( $fp , " PQSCALE 10 \n " );
fputs ( $fp , " BQSCALE 25 \n " );
fputs ( $fp , " REFERENCE_FRAME ORIGINAL \n " );
fputs ( $fp , " FRAME_RATE 24 \n " );
if ( $event [ Colours ] == 1 )
2002-10-02 00:16:45 +08:00
fputs ( $fp , " INPUT_CONVERT " . NETPBM_DIR . " /jpegtopnm * | " . NETPBM_DIR . " /pgmtoppm white | " . NETPBM_DIR . " /ppmtojpeg \n " );
2002-09-16 17:19:24 +08:00
else
fputs ( $fp , " INPUT_CONVERT * \n " );
fputs ( $fp , " INPUT_DIR $event_dir\n " );
fputs ( $fp , " INPUT \n " );
for ( $i = 1 ; $i < $event [ Frames ]; $i ++ )
{
fputs ( $fp , " capture- " . sprintf ( " %03d " , $i ) . " .jpg \n " );
fputs ( $fp , " capture- " . sprintf ( " %03d " , $i ) . " .jpg \n " );
}
fputs ( $fp , " END_INPUT \n " );
fclose ( $fp );
2002-09-24 20:29:53 +08:00
exec ( MPEG_ENCODE_PATH . " $param_file > $event_dir /mpeg.log " );
2002-09-16 17:19:24 +08:00
}
//chdir( $event_dir );
//header("Content-type: video/mpeg");
//header("Content-Disposition: inline; filename=$video_name");
header ( " Location: $video_file " );
}
2002-09-20 23:29:41 +08:00
elseif ( $view == " device " )
{
$ps_array = preg_split ( " / \ s+/ " , exec ( " ps -edalf | grep 'zmc $did ' | grep -v grep " ) );
if ( $ps_array [ 3 ] )
{
$zmc = 1 ;
}
$ps_array = preg_split ( " / \ s+/ " , exec ( " ps -edalf | grep 'zma $did ' | grep -v grep " ) );
if ( $ps_array [ 3 ] )
{
$zma = 1 ;
}
?>
< html >
< head >
< title > ZM - Device - / dev / video < ? php echo $did ?> </title>
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
< script language = " JavaScript " >
2002-09-21 03:48:31 +08:00
< ? php
if ( $zmc_status != $zmc_action || $zma_status != $zma_action )
{
?>
opener . location . reload ();
< ? php
}
?>
2002-09-20 23:29:41 +08:00
window . focus ();
function refreshWindow () {
window . location . reload ();
}
function closeWindow () {
window . close ();
}
</ script >
</ head >
< body >
< table border = " 0 " cellspacing = " 0 " cellpadding = " 2 " width = " 100% " >
< tr >
< td colspan = " 2 " align = " left " class = " head " > Device Daemon Status </ td >
</ tr >
2002-10-01 21:44:28 +08:00
< form method = " get " action = " <?php echo $PHP_SELF ?> " >
2002-09-20 23:29:41 +08:00
< input type = " hidden " name = " view " value = " <?php echo $view ?> " >
< input type = " hidden " name = " action " value = " device " >
< input type = " hidden " name = " zmc_status " value = " <?php echo $zmc ?> " >
< input type = " hidden " name = " zma_status " value = " <?php echo $zma ?> " >
< input type = " hidden " name = " did " value = " <?php echo $did ?> " >
< tr >
< td align = " left " class = " smallhead " > Daemon </ td >< td align = " left " class = " smallhead " > Active </ td >
</ tr >
< tr >
< td align = " left " class = " text " > Capture </ td >< td align = " left " class = " text " >< input type = " checkbox " name = " zmc_action " value = " 1 " < ? php if ( $zmc ) { echo " checked " ; } ?> class="form"></td>
</ tr >
< tr >
< td align = " left " class = " text " > Analysis </ td >< td align = " left " class = " text " >< input type = " checkbox " name = " zma_action " value = " 1 " < ? php if ( $zma ) { echo " checked " ; } ?> class="form"></td>
</ tr >
< tr >
< td colspan = " 2 " align = " left " class = " text " >& nbsp ; </ td >
</ tr >
< tr >
< td align = " left " >< input type = " submit " value = " Update " class = " form " ></ td >
< td align = " left " >< input type = " button " value = " Cancel " class = " form " onClick = " closeWindow() " ></ td >
</ tr >
</ table >
</ body >
</ html >
< ? php
}
elseif ( $view == " function " )
{
$result = mysql_query ( " select * from Monitors where Id = ' $mid ' " );
if ( ! $result )
die ( mysql_error () );
$monitor = mysql_fetch_assoc ( $result );
?>
< html >
< head >
< title > ZM - Function - < ? php echo $monitor [ Name ] ?> </title>
< link rel = " stylesheet " href = " zmstyles.css " type = " text/css " >
< script language = " JavaScript " >
2002-09-22 06:56:53 +08:00
< ? php
if ( $refresh_parent )
{
?>
opener . location . reload ();
< ? php
}
?>
2002-09-20 23:29:41 +08:00
window . focus ();
function refreshWindow () {
window . location . reload ();
}
function closeWindow () {
window . close ();
}
</ script >
</ head >
< body >
< table border = " 0 " cellspacing = " 0 " cellpadding = " 4 " width = " 100% " >
< tr >
< td colspan = " 2 " align = " center " class = " head " > Monitor '<?php echo $monitor[Name] ?>' Function </ td >
</ tr >
< tr >
2002-10-01 21:44:28 +08:00
< form method = " get " action = " <?php echo $PHP_SELF ?> " >
2002-09-20 23:29:41 +08:00
< input type = " hidden " name = " view " value = " <?php echo $view ?> " >
< input type = " hidden " name = " action " value = " function " >
2002-09-22 06:56:53 +08:00
< input type = " hidden " name = " mid " value = " <?php echo $mid ?> " >
2002-09-20 23:29:41 +08:00
< td colspan = " 2 " align = " center " >< select name = " new_function " class = " form " >
< ? php
foreach ( getEnumValues ( 'Monitors' , 'Function' ) as $opt_function )
{
?>
2002-09-23 20:28:43 +08:00
< option value = " <?php echo $opt_function ?> " < ? php if ( $opt_function == $monitor [ 'Function' ] ) { ?> selected<?php } ?>><?php echo $opt_function ?></option>
2002-09-20 23:29:41 +08:00
< ? php
}
?>
</ select ></ td >
</ tr >
< tr >
2002-09-22 06:56:53 +08:00
< td align = " center " >< input type = " submit " value = " Update " class = " form " ></ td >
2002-09-20 23:29:41 +08:00
< td align = " center " >< input type = " button " value = " Cancel " class = " form " onClick = " closeWindow() " ></ td >
</ tr >
</ table >
</ body >
</ html >
< ? php
}
2002-09-23 19:30:44 +08:00
elseif ( $view == " none " )
{
?>
< html >
< head >
< script language = " JavaScript " >
2002-09-23 21:15:11 +08:00
< ? php
if ( $refresh_parent )
{
?>
opener . location . reload ();
< ? php
}
?>
2002-09-23 19:30:44 +08:00
window . close ();
</ script >
</ head >
</ html >
< ? php
}
2002-09-20 23:29:41 +08:00
2002-09-25 19:24:22 +08:00
function getBrowser ( & $browser , & $version )
{
2002-10-03 00:05:36 +08:00
global $HTTP_SERVER_VARS ;
2002-09-25 19:24:22 +08:00
2002-10-03 00:05:36 +08:00
if ( ereg ( 'MSIE ([0-9].[0-9]{1,2})' , $HTTP_SERVER_VARS [ HTTP_USER_AGENT ], $log_version ))
2002-09-25 19:24:22 +08:00
{
$version = $log_version [ 1 ];
$browser = 'ie' ;
}
2002-10-03 00:05:36 +08:00
elseif ( ereg ( 'Opera ([0-9].[0-9]{1,2})' , $HTTP_SERVER_VARS [ HTTP_USER_AGENT ], $log_version ))
2002-09-25 19:24:22 +08:00
{
$version = $log_version [ 1 ];
$browser = 'opera' ;
}
2002-10-03 00:05:36 +08:00
elseif ( ereg ( 'Mozilla/([0-9].[0-9]{1,2})' , $HTTP_SERVER_VARS [ HTTP_USER_AGENT ], $log_version ))
2002-09-25 19:24:22 +08:00
{
$version = $log_version [ 1 ];
$browser = 'mozilla' ;
}
else
{
$version = 0 ;
$browser = 'unknown' ;
}
}
2002-09-21 19:15:06 +08:00
function isNetscape ()
{
2002-09-25 19:24:22 +08:00
getBrowser ( $browser , $version );
2002-09-21 19:15:06 +08:00
2002-09-25 19:24:22 +08:00
return ( $browser == " mozilla " );
2002-09-21 19:15:06 +08:00
}
function canStream ()
{
2002-09-24 05:54:57 +08:00
return ( isNetscape () || ( CAMBOZOLA_PATH && file_exists ( CAMBOZOLA_PATH )) );
2002-09-21 19:15:06 +08:00
}
2002-09-22 06:56:53 +08:00
function startDaemon ( $daemon , $did )
{
$ps_command = " ps -edalf | grep ' $daemon $did ' | grep -v grep " ;
$ps_array = preg_split ( " / \ s+/ " , exec ( $ps_command ) );
$pid = $ps_array [ 3 ];
if ( $pid )
2002-09-23 18:17:19 +08:00
{
exec ( " kill -HUP $pid " );
2002-09-22 06:56:53 +08:00
return ;
2002-09-23 18:17:19 +08:00
}
2002-09-22 06:56:53 +08:00
$command = ZM_PATH . " / $daemon $did " . ' 2>/dev/null >&- <&- >/dev/null &' ;
exec ( $command );
$ps_array = preg_split ( " / \ s+/ " , exec ( $ps_command ) );
while ( ! $pid )
{
sleep ( 1 );
$ps_array = preg_split ( " / \ s+/ " , exec ( $ps_command ) );
$pid = $ps_array [ 3 ];
}
}
function stopDaemon ( $daemon , $did )
{
$ps_command = " ps -edalf | grep ' $daemon $did ' | grep -v grep " ;
$ps_array = preg_split ( " / \ s+/ " , exec ( $ps_command ) );
if ( $ps_array [ 3 ] )
{
$pid = $ps_array [ 3 ];
exec ( " kill -TERM $pid " );
}
else
{
return ;
}
while ( $pid )
{
sleep ( 1 );
$ps_array = preg_split ( " / \ s+/ " , exec ( $ps_command ) );
$pid = $ps_array [ 3 ];
}
}
2002-09-24 00:37:41 +08:00
function controlDaemons ( $device )
{
$sql = " select count(if(Function='Passive',1,NULL)) as PassiveCount, count(if(Function='Active',1,NULL)) as ActiveCount from Monitors where Device = ' $device ' " ;
$result = mysql_query ( $sql );
if ( ! $result )
echo mysql_error ();
$row = mysql_fetch_assoc ( $result );
$passive_count = $row [ PassiveCount ];
$active_count = $row [ ActiveCount ];
if ( ! $passive_count && ! $active_count )
{
2002-09-24 05:00:12 +08:00
stopDaemon ( " zmc " , $device );
2002-09-24 00:37:41 +08:00
}
else
{
2002-09-24 05:00:12 +08:00
startDaemon ( " zmc " , $device );
2002-09-24 00:37:41 +08:00
}
if ( ! $active_count )
{
2002-09-24 05:00:12 +08:00
stopDaemon ( " zma " , $device );
2002-09-24 00:37:41 +08:00
}
else
{
2002-09-24 05:00:12 +08:00
startDaemon ( " zma " , $device );
2002-09-24 00:37:41 +08:00
}
}
2002-09-20 23:29:41 +08:00
function getEnumValues ( $table , $column )
{
$enum_values = array ();
$result = mysql_query ( " DESCRIBE $table $column " );
if ( $result )
{
$row = mysql_fetch_assoc ( $result );
preg_match_all ( " /'([^']+)'/ " , $row [ Type ], $enum_matches );
$enum_values = $enum_matches [ 1 ];
}
else
{
echo mysql_error ();
}
return $enum_values ;
}
?>