1998-05-22 21:14:53 +00:00
|
|
|
// event.cxx -- Flight Gear periodic event scheduler
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started December 1997.
|
|
|
|
//
|
|
|
|
// Copyright (C) 1997 Curtis L. Olson - curt@infoplane.com
|
|
|
|
//
|
|
|
|
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
// (Log is kept at end of this file)
|
1997-12-30 04:19:22 +00:00
|
|
|
|
|
|
|
|
1998-04-24 00:52:24 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
1998-04-03 22:12:53 +00:00
|
|
|
|
1997-12-30 04:19:22 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
1998-04-03 22:12:53 +00:00
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined( HAVE_WINDOWS_H ) && defined(__MWERKS__)
|
1998-05-22 21:14:53 +00:00
|
|
|
# include <windows.h> // For Metrowerks environment
|
|
|
|
# include <winbase.h> // There is no ANSI/MSL time function that
|
|
|
|
// contains milliseconds
|
1998-04-03 22:12:53 +00:00
|
|
|
#endif
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-08-29 13:11:31 +00:00
|
|
|
#include "Include/fg_stl_config.h"
|
|
|
|
#include STL_ALGORITHM
|
|
|
|
#include STL_FUNCTIONAL
|
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
#include <Debug/logstream.hxx>
|
1998-04-24 00:52:24 +00:00
|
|
|
|
|
|
|
#include "event.hxx"
|
|
|
|
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
fgEVENT_MGR global_events;
|
1997-12-30 04:19:22 +00:00
|
|
|
|
|
|
|
|
1998-08-29 13:11:31 +00:00
|
|
|
fgEVENT::fgEVENT( const string& desc,
|
|
|
|
const fgCallback& cb,
|
|
|
|
EventState _status,
|
|
|
|
int _interval )
|
|
|
|
: description(desc),
|
|
|
|
event_cb(cb.clone()),
|
|
|
|
status(_status),
|
|
|
|
interval(_interval),
|
|
|
|
cum_time(0),
|
|
|
|
min_time(100000),
|
|
|
|
max_time(0),
|
|
|
|
count(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fgEVENT::fgEVENT( const fgEVENT& evt )
|
|
|
|
: description(evt.description),
|
|
|
|
#ifdef _FG_NEED_AUTO_PTR
|
|
|
|
// Ugly - cast away const until proper auto_ptr implementation.
|
|
|
|
event_cb((auto_ptr<fgCallback>&)(evt.event_cb)),
|
|
|
|
#else
|
|
|
|
event_cb(evt.event_cb),
|
|
|
|
#endif
|
|
|
|
status(evt.status),
|
|
|
|
interval(evt.interval),
|
|
|
|
last_run(evt.last_run),
|
|
|
|
current(evt.current),
|
|
|
|
next_run(evt.next_run),
|
|
|
|
cum_time(evt.cum_time),
|
|
|
|
min_time(evt.min_time),
|
|
|
|
max_time(evt.max_time),
|
|
|
|
count(evt.count)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fgEVENT::~fgEVENT()
|
|
|
|
{
|
|
|
|
// cout << "fgEVENT::~fgEVENT" << endl;
|
|
|
|
}
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-08-29 13:11:31 +00:00
|
|
|
void
|
|
|
|
fgEVENT::run()
|
|
|
|
{
|
1998-11-07 19:07:06 +00:00
|
|
|
FG_LOG(FG_TIME, FG_INFO, "Running " << description );
|
1997-12-30 20:47:34 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// record starting time
|
1998-08-29 13:11:31 +00:00
|
|
|
timestamp( &last_run );
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// run the event
|
1998-08-29 13:11:31 +00:00
|
|
|
event_cb->call( (void**)NULL );
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// increment the counter for this event
|
1998-08-29 13:11:31 +00:00
|
|
|
count++;
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// update the event status
|
1998-08-29 13:11:31 +00:00
|
|
|
status = FG_EVENT_READY;
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// calculate duration and stats
|
1998-08-29 13:11:31 +00:00
|
|
|
timestamp( ¤t );
|
|
|
|
long duration = timediff( &last_run, ¤t );
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-08-29 13:11:31 +00:00
|
|
|
cum_time += duration;
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-08-29 13:11:31 +00:00
|
|
|
if ( duration < min_time ) {
|
|
|
|
min_time = duration;
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
1998-08-29 13:11:31 +00:00
|
|
|
if ( duration > max_time ) {
|
|
|
|
max_time = duration;
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// determine the next absolute run time
|
1998-08-29 13:11:31 +00:00
|
|
|
timesum( &next_run, &last_run, interval );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Dump scheduling stats
|
1998-09-15 02:09:24 +00:00
|
|
|
int
|
1998-08-29 13:11:31 +00:00
|
|
|
fgEVENT::PrintStats() const
|
|
|
|
{
|
1998-11-07 19:07:06 +00:00
|
|
|
FG_LOG( FG_TIME, FG_INFO,
|
|
|
|
" " << description
|
|
|
|
<< " int=" << interval / 1000.0
|
|
|
|
<< " cum=" << cum_time
|
|
|
|
<< " min=" << min_time
|
|
|
|
<< " max=" << max_time
|
|
|
|
<< " count=" << count
|
|
|
|
<< " ave=" << cum_time / (double)count );
|
1998-09-15 02:09:24 +00:00
|
|
|
return 0;
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Constructor
|
|
|
|
fgEVENT_MGR::fgEVENT_MGR( void ) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Initialize the scheduling subsystem
|
|
|
|
void fgEVENT_MGR::Init( void ) {
|
1998-11-07 19:07:06 +00:00
|
|
|
FG_LOG(FG_TIME, FG_INFO, "Initializing event manager" );
|
1998-05-22 21:14:53 +00:00
|
|
|
|
1998-08-29 13:11:31 +00:00
|
|
|
run_queue.erase( run_queue.begin(), run_queue.end() );
|
|
|
|
event_table.erase( event_table.begin(), event_table.end() );
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-08-29 13:11:31 +00:00
|
|
|
// Register an event with the scheduler.
|
|
|
|
void
|
|
|
|
fgEVENT_MGR::Register( const string& desc,
|
|
|
|
const fgCallback& cb,
|
|
|
|
fgEVENT::EventState status,
|
|
|
|
int interval )
|
1998-01-19 18:40:15 +00:00
|
|
|
{
|
1998-08-29 13:11:31 +00:00
|
|
|
fgEVENT e( desc, cb, status, interval );
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-11-07 19:07:06 +00:00
|
|
|
FG_LOG( FG_TIME, FG_INFO, "Registering event: " << desc );
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Actually run the event
|
1998-08-29 13:11:31 +00:00
|
|
|
e.run();
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Now add to event_table
|
|
|
|
event_table.push_back(e);
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Update the scheduling parameters for an event
|
|
|
|
void fgEVENT_MGR::Update( void ) {
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Delete a scheduled event
|
|
|
|
void fgEVENT_MGR::Delete( void ) {
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Temporarily suspend scheduling of an event
|
|
|
|
void fgEVENT_MGR::Suspend( void ) {
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Resume scheduling and event
|
|
|
|
void fgEVENT_MGR::Resume( void ) {
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Dump scheduling stats
|
1998-08-29 13:11:31 +00:00
|
|
|
void
|
|
|
|
fgEVENT_MGR::PrintStats()
|
|
|
|
{
|
1998-11-07 19:07:06 +00:00
|
|
|
FG_LOG( FG_TIME, FG_INFO, "" );
|
|
|
|
FG_LOG( FG_TIME, FG_INFO, "Event Stats" );
|
|
|
|
FG_LOG( FG_TIME, FG_INFO, "-----------" );
|
1998-05-22 21:14:53 +00:00
|
|
|
|
1998-08-29 13:11:31 +00:00
|
|
|
for_each( event_table.begin(),
|
|
|
|
event_table.end(),
|
|
|
|
mem_fun_ref( &fgEVENT::PrintStats ));
|
1998-05-22 21:14:53 +00:00
|
|
|
|
1998-11-07 19:07:06 +00:00
|
|
|
FG_LOG( FG_TIME, FG_INFO, "");
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Add pending jobs to the run queue and run the job at the front of
|
|
|
|
// the queue
|
|
|
|
void fgEVENT_MGR::Process( void ) {
|
|
|
|
fgEVENT *e_ptr;
|
|
|
|
fg_timestamp cur_time;
|
|
|
|
unsigned int i, size;
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_EVENT, FG_DEBUG, "Processing events" );
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// get the current time
|
|
|
|
timestamp(&cur_time);
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_EVENT, FG_DEBUG,
|
|
|
|
" Current timestamp = " << cur_time.seconds );
|
1998-04-09 18:40:13 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// printf("Checking if anything is ready to move to the run queue\n");
|
1997-12-30 04:19:22 +00:00
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// see if anything else is ready to be placed on the run queue
|
|
|
|
size = event_table.size();
|
|
|
|
// while ( current != last ) {
|
|
|
|
for ( i = 0; i < size; i++ ) {
|
|
|
|
// e = *current++;
|
|
|
|
e_ptr = &event_table[i];
|
1998-08-29 13:11:31 +00:00
|
|
|
if ( e_ptr->status == fgEVENT::FG_EVENT_READY ) {
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_EVENT, FG_DEBUG,
|
|
|
|
" Item " << i << " current " << cur_time.seconds
|
|
|
|
<< " next run @ " << e_ptr->next_run.seconds );
|
1998-05-22 21:14:53 +00:00
|
|
|
if ( timediff(&cur_time, &(e_ptr->next_run)) <= 0) {
|
|
|
|
run_queue.push_back(e_ptr);
|
1998-08-29 13:11:31 +00:00
|
|
|
e_ptr->status = fgEVENT::FG_EVENT_QUEUED;
|
1998-01-31 00:42:57 +00:00
|
|
|
}
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Checking to see if there is anything on the run queue
|
|
|
|
// printf("Checking to see if there is anything on the run queue\n");
|
|
|
|
if ( run_queue.size() ) {
|
|
|
|
// printf("Yep, running it\n");
|
|
|
|
e_ptr = run_queue.front();
|
|
|
|
run_queue.pop_front();
|
1998-08-29 13:11:31 +00:00
|
|
|
e_ptr->run();
|
1997-12-30 04:19:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-05-22 21:14:53 +00:00
|
|
|
// Destructor
|
|
|
|
fgEVENT_MGR::~fgEVENT_MGR( void ) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// $Log$
|
1998-11-07 19:07:06 +00:00
|
|
|
// Revision 1.10 1998/11/07 19:07:13 curt
|
|
|
|
// Enable release builds using the --without-logging option to the configure
|
|
|
|
// script. Also a couple log message cleanups, plus some C to C++ comment
|
|
|
|
// conversion.
|
|
|
|
//
|
1998-11-06 21:17:31 +00:00
|
|
|
// Revision 1.9 1998/11/06 21:18:24 curt
|
|
|
|
// Converted to new logstream debugging facility. This allows release
|
|
|
|
// builds with no messages at all (and no performance impact) by using
|
|
|
|
// the -DFG_NDEBUG flag.
|
|
|
|
//
|
1998-09-15 02:09:24 +00:00
|
|
|
// Revision 1.8 1998/09/15 02:09:29 curt
|
|
|
|
// Include/fg_callback.hxx
|
|
|
|
// Moved code inline to stop g++ 2.7 from complaining.
|
|
|
|
//
|
|
|
|
// Simulator/Time/event.[ch]xx
|
|
|
|
// Changed return type of fgEVENT::printStat(). void caused g++ 2.7 to
|
|
|
|
// complain bitterly.
|
|
|
|
//
|
|
|
|
// Minor bugfix and changes.
|
|
|
|
//
|
|
|
|
// Simulator/Main/GLUTmain.cxx
|
|
|
|
// Added missing type to idle_state definition - eliminates a warning.
|
|
|
|
//
|
|
|
|
// Simulator/Main/fg_init.cxx
|
|
|
|
// Changes to airport lookup.
|
|
|
|
//
|
|
|
|
// Simulator/Main/options.cxx
|
|
|
|
// Uses fg_gzifstream when loading config file.
|
|
|
|
//
|
1998-08-29 13:11:31 +00:00
|
|
|
// Revision 1.7 1998/08/29 13:11:31 curt
|
|
|
|
// Bernie Bright writes:
|
|
|
|
// I've created some new classes to enable pointers-to-functions and
|
|
|
|
// pointers-to-class-methods to be treated like objects. These objects
|
|
|
|
// can be registered with fgEVENT_MGR.
|
|
|
|
//
|
|
|
|
// File "Include/fg_callback.hxx" contains the callback class defns.
|
|
|
|
//
|
|
|
|
// Modified fgEVENT and fgEVENT_MGR to use the callback classes. Also
|
|
|
|
// some minor tweaks to STL usage.
|
|
|
|
//
|
|
|
|
// Added file "Include/fg_stl_config.h" to deal with STL portability
|
|
|
|
// issues. I've added an initial config for egcs (and probably gcc-2.8.x).
|
|
|
|
// I don't have access to Visual C++ so I've left that for someone else.
|
|
|
|
// This file is influenced by the stl_config.h file delivered with egcs.
|
|
|
|
//
|
|
|
|
// Added "Include/auto_ptr.hxx" which contains an implementation of the
|
|
|
|
// STL auto_ptr class which is not provided in all STL implementations
|
|
|
|
// and is needed to use the callback classes.
|
|
|
|
//
|
|
|
|
// Deleted fgLightUpdate() which was just a wrapper to call
|
|
|
|
// fgLIGHT::Update().
|
|
|
|
//
|
|
|
|
// Modified fg_init.cxx to register two method callbacks in place of the
|
|
|
|
// old wrapper functions.
|
|
|
|
//
|
1998-08-20 15:12:26 +00:00
|
|
|
// Revision 1.6 1998/08/20 15:12:26 curt
|
|
|
|
// Tweak ...
|
|
|
|
//
|
1998-06-12 00:59:52 +00:00
|
|
|
// Revision 1.5 1998/06/12 00:59:52 curt
|
|
|
|
// Build only static libraries.
|
|
|
|
// Declare memmove/memset for Sloaris.
|
|
|
|
// Rewrote fg_time.c routine to get LST start seconds to better handle
|
|
|
|
// Solaris, and be easier to port, and understand the GMT vs. local
|
|
|
|
// timezone issues.
|
|
|
|
//
|
1998-06-05 18:18:12 +00:00
|
|
|
// Revision 1.4 1998/06/05 18:18:12 curt
|
|
|
|
// Incorporated some automake conditionals to try to support mktime() correctly
|
|
|
|
// on a wider variety of platforms.
|
|
|
|
// Added the declaration of memmove needed by the stl which apparently
|
|
|
|
// solaris only defines for cc compilations and not for c++ (__STDC__)
|
|
|
|
//
|
1998-05-22 21:14:53 +00:00
|
|
|
// Revision 1.3 1998/05/22 21:14:53 curt
|
|
|
|
// Rewrote event.cxx in C++ as a class using STL for the internal event list
|
|
|
|
// and run queue this removes the arbitrary list sizes and makes things much
|
|
|
|
// more dynamic. Because this is C++-classified we can now have multiple
|
|
|
|
// event_tables if we'd ever want them.
|
|
|
|
//
|
|
|
|
// Revision 1.2 1998/04/25 22:06:33 curt
|
|
|
|
// Edited cvs log messages in source files ... bad bad bad!
|
|
|
|
//
|
|
|
|
// Revision 1.1 1998/04/24 00:52:26 curt
|
|
|
|
// Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
|
|
|
|
// Fog color fixes.
|
|
|
|
// Separated out lighting calcs into their own file.
|
|
|
|
//
|
|
|
|
// Revision 1.13 1998/04/18 04:14:08 curt
|
|
|
|
// Moved fg_debug.c to it's own library.
|
|
|
|
//
|
|
|
|
// Revision 1.12 1998/04/09 18:40:13 curt
|
|
|
|
// We had unified some of the platform disparate time handling code, and
|
|
|
|
// there was a bug in timesum() which calculated a new time stamp based on
|
|
|
|
// the current time stamp + offset. This hosed the periodic event processing
|
|
|
|
// logic because you'd never arrive at the time the event was scheduled for.
|
|
|
|
// Sky updates and lighting changes are handled via this event mechanism so
|
|
|
|
// they never changed ... it is fixed now.
|
|
|
|
//
|
|
|
|
// Revision 1.11 1998/04/03 22:12:55 curt
|
|
|
|
// Converting to Gnu autoconf system.
|
|
|
|
// Centralized time handling differences.
|
|
|
|
//
|
|
|
|
// Revision 1.10 1998/03/14 00:28:34 curt
|
|
|
|
// replaced a printf() with an fgPrintf().
|
|
|
|
//
|
|
|
|
// Revision 1.9 1998/01/31 00:43:44 curt
|
|
|
|
// Added MetroWorks patches from Carmen Volpe.
|
|
|
|
//
|
|
|
|
// Revision 1.8 1998/01/27 00:48:05 curt
|
|
|
|
// Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
|
|
|
|
// system and commandline/config file processing code.
|
|
|
|
//
|
|
|
|
// Revision 1.7 1998/01/19 19:27:19 curt
|
|
|
|
// Merged in make system changes from Bob Kuehne <rpk@sgi.com>
|
|
|
|
// This should simplify things tremendously.
|
|
|
|
//
|
|
|
|
// Revision 1.6 1998/01/19 18:40:39 curt
|
|
|
|
// Tons of little changes to clean up the code and to remove fatal errors
|
|
|
|
// when building with the c++ compiler.
|
|
|
|
//
|
|
|
|
// Revision 1.5 1998/01/06 01:20:27 curt
|
|
|
|
// Tweaks to help building with MSVC++
|
|
|
|
//
|
|
|
|
// Revision 1.4 1997/12/31 17:46:50 curt
|
|
|
|
// Tweaked fg_time.c to be able to use ftime() instead of gettimeofday()
|
|
|
|
//
|
|
|
|
// Revision 1.3 1997/12/30 22:22:42 curt
|
|
|
|
// Further integration of event manager.
|
|
|
|
//
|
|
|
|
// Revision 1.2 1997/12/30 20:47:58 curt
|
|
|
|
// Integrated new event manager with subsystem initializations.
|
|
|
|
//
|
|
|
|
// Revision 1.1 1997/12/30 04:19:22 curt
|
|
|
|
// Initial revision.
|