// // Zone Monitor Control Utility, $Date$, $Revision$ // 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. // #include #include "zm.h" void Usage() { fprintf( stderr, "zmu [-m monitor_id] [function]\n" ); fprintf( stderr, "Options:\n" ); fprintf( stderr, " -m, --monitor : Specify which monitor to address, default 0 if absent\n" ); fprintf( stderr, " -s, --state : Output the current monitor state, 0 = idle, 1 = alarm, 2 = alert\n" ); fprintf( stderr, " -i, --image [image_index] : Write captured image to disk as .jpg, last image captured\n" ); fprintf( stderr, " or specified ring buffer index if given.\n" ); fprintf( stderr, " -t, --timestamp [image_index] : Output captured image timestamp, last image captured or specified\n" ); fprintf( stderr, " ring buffer index if given\n" ); fprintf( stderr, " -r, --read_index : Output ring buffer read index\n" ); fprintf( stderr, " -w, --write_index : Output ring buffer write index\n" ); fprintf( stderr, " -f, --fps : Output last Frames Per Second captured reading\n" ); fprintf( stderr, " -z, --zones : Write last captured image overlaid with zones to -Zones.jpg\n" ); fprintf( stderr, " -h, --help - This screen\n" ); exit( 0 ); } int main( int argc, char *argv[] ) { static struct option long_options[] = { {"monitor", 1, 0, 'm'}, {"image", 2, 0, 'i'}, {"timestamp", 2, 0, 't'}, {"state", 0, 0, 's'}, {"read_index", 0, 0, 'r'}, {"write_index", 0, 0, 'w'}, {"fps", 0, 0, 'f'}, {"zones", 0, 0, 'z'}, {"help", 0, 0, 'h'}, {0, 0, 0, 0} }; int id = 1; enum { BOGUS, STATE, IMAGE, TIME, READ_IDX, WRITE_IDX, FPS, ZONES } function = BOGUS; int image_idx = -1; while (1) { int this_option_optind = optind ? optind : 1; int option_index = 0; int opterr = 1; int c = getopt_long (argc, argv, "m:srwi::t::fzh", long_options, &option_index); if (c == -1) { break; } switch (c) { case 'm': id = atoi(optarg); break; case 's': function = STATE; break; case 'i': function = IMAGE; if ( optarg ) { image_idx = atoi( optarg ); } break; case 't': function = TIME; if ( optarg ) { image_idx = atoi( optarg ); } break; case 'r': function = READ_IDX; break; case 'w': function = WRITE_IDX; break; case 'f': function = FPS; break; case 'z': function = ZONES; break; case 'h': Usage(); break; case '?': Usage(); break; default: //fprintf( stderr, "?? getopt returned character code 0%o ??\n", c ); break; } } if (optind < argc) { fprintf( stderr, "Extraneous options, " ); while (optind < argc) printf ("%s ", argv[optind++]); printf ("\n"); Usage(); } //printf( "Monitor %d, Function %d, ImageIdx %d\n", id, function, image_idx ); dbg_name = "zmu"; dbg_level = -1; DbgInit(); if ( !mysql_init( &dbconn ) ) { fprintf( stderr, "Can't initialise structure: %s\n", mysql_error( &dbconn ) ); exit( mysql_errno( &dbconn ) ); } if ( !mysql_connect( &dbconn, "", ZM_DB_USERB, ZM_DB_PASSB ) ) { fprintf( stderr, "Can't connect to server: %s\n", mysql_error( &dbconn ) ); exit( mysql_errno( &dbconn ) ); } if ( mysql_select_db( &dbconn, ZM_DATABASE ) ) { fprintf( stderr, "Can't select database: %s\n", mysql_error( &dbconn ) ); exit( mysql_errno( &dbconn ) ); } Monitor *monitor = Monitor::Load( id ); if ( monitor ) { if ( function == STATE ) { printf( "%d\n", monitor->GetState() ); } else if ( function == IMAGE ) { monitor->GetImage( image_idx ); } else if ( function == TIME ) { printf( "%d\n", monitor->GetTimestamp( image_idx ) ); } else if ( function == READ_IDX ) { printf( "%d\n", monitor->GetLastReadIndex() ); } else if ( function == WRITE_IDX ) { printf( "%d\n", monitor->GetLastWriteIndex() ); } else if ( function == FPS ) { printf( "%.2f\n", monitor->GetFPS() ); } else if ( function == ZONES ) { monitor->ReloadZones(); } else { Usage(); } } return( 0 ); }