]> git.mxchange.org Git - flightgear.git/blob - Time/event.cxx
Log message clean ups.
[flightgear.git] / Time / event.cxx
1 // event.cxx -- Flight Gear periodic event scheduler
2 //
3 // Written by Curtis Olson, started December 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23
24
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #include <string.h>
30 #include <stdio.h>
31
32 #ifdef HAVE_STDLIB_H
33 #include <stdlib.h>
34 #endif
35
36 #if defined( HAVE_WINDOWS_H ) && defined(__MWERKS__)
37 #  include <windows.h>   // For Metrowerks environment
38 #  include <winbase.h>   // There is no ANSI/MSL time function that
39                          // contains milliseconds
40 #endif
41
42 #include "Include/fg_stl_config.h"
43 #include STL_ALGORITHM
44 #include STL_FUNCTIONAL
45
46 #include <Debug/logstream.hxx>
47
48 #include "event.hxx"
49
50
51 fgEVENT_MGR global_events;
52
53
54 fgEVENT::fgEVENT( const string& desc,
55                   const fgCallback& cb,
56                   EventState _status,
57                   int _interval )
58     : description(desc),
59       event_cb(cb.clone()),
60       status(_status),
61       interval(_interval),
62       cum_time(0),
63       min_time(100000),
64       max_time(0),
65       count(0)
66 {
67 }
68
69 fgEVENT::fgEVENT( const fgEVENT& evt )
70     : description(evt.description),
71 #ifdef _FG_NEED_AUTO_PTR
72       // Ugly - cast away const until proper auto_ptr implementation.
73       event_cb((auto_ptr<fgCallback>&)(evt.event_cb)),
74 #else
75       event_cb(evt.event_cb),
76 #endif
77       status(evt.status),
78       interval(evt.interval),
79       last_run(evt.last_run),
80       current(evt.current),
81       next_run(evt.next_run),
82       cum_time(evt.cum_time),
83       min_time(evt.min_time),
84       max_time(evt.max_time),
85       count(evt.count)
86 {
87 }
88
89 fgEVENT::~fgEVENT()
90 {
91 //     cout << "fgEVENT::~fgEVENT" << endl;
92 }
93
94 void
95 fgEVENT::run()
96 {
97     FG_LOG(FG_EVENT, FG_INFO, "Running " << description );
98
99     // record starting time
100     timestamp( &last_run );
101
102     // run the event
103     event_cb->call( (void**)NULL );
104
105     // increment the counter for this event
106     count++;
107
108     // update the event status
109     status = FG_EVENT_READY;
110
111     // calculate duration and stats
112     timestamp( &current );
113     long duration = timediff( &last_run, &current );
114
115     cum_time += duration;
116
117     if ( duration < min_time ) {
118         min_time = duration;
119     }
120
121     if ( duration > max_time ) {
122         max_time = duration;
123     }
124
125     // determine the next absolute run time
126     timesum( &next_run, &last_run, interval );
127 }
128
129
130 // Dump scheduling stats
131 int
132 fgEVENT::PrintStats() const
133 {
134     FG_LOG( FG_EVENT, FG_INFO, 
135             "  " << description 
136             << " int=" << interval / 1000.0
137             << " cum=" << cum_time
138             << " min=" << min_time
139             << " max=" <<  max_time
140             << " count=" << count
141             << " ave=" << cum_time / (double)count );
142     return 0;
143 }
144
145 // Constructor
146 fgEVENT_MGR::fgEVENT_MGR( void ) {
147 }
148
149
150 // Initialize the scheduling subsystem
151 void fgEVENT_MGR::Init( void ) {
152     FG_LOG(FG_EVENT, FG_INFO, "Initializing event manager" );
153
154     run_queue.erase( run_queue.begin(), run_queue.end() );
155     event_table.erase( event_table.begin(), event_table.end() );
156 }
157
158
159 // Register an event with the scheduler.
160 void
161 fgEVENT_MGR::Register( const string& desc,
162                        const fgCallback& cb,
163                        fgEVENT::EventState status, 
164                        int interval )
165 {
166     fgEVENT e( desc, cb, status, interval );
167
168     FG_LOG( FG_EVENT, FG_INFO, "Registering event: " << desc );
169
170     // Actually run the event
171     e.run();
172
173     // Now add to event_table
174     event_table.push_back(e);
175 }
176
177
178 // Update the scheduling parameters for an event
179 void fgEVENT_MGR::Update( void ) {
180 }
181
182
183 // Delete a scheduled event
184 void fgEVENT_MGR::Delete( void ) {
185 }
186
187
188 // Temporarily suspend scheduling of an event
189 void fgEVENT_MGR::Suspend( void ) {
190 }
191
192
193 // Resume scheduling and event
194 void fgEVENT_MGR::Resume( void ) {
195 }
196
197 // Dump scheduling stats
198 void
199 fgEVENT_MGR::PrintStats()
200 {
201     FG_LOG( FG_EVENT, FG_INFO, "" );
202     FG_LOG( FG_EVENT, FG_INFO, "Event Stats" );
203     FG_LOG( FG_EVENT, FG_INFO, "-----------" );
204
205     for_each( event_table.begin(),
206               event_table.end(),
207               mem_fun_ref( &fgEVENT::PrintStats ));
208
209     FG_LOG( FG_EVENT, FG_INFO, "");
210 }
211
212
213 // Add pending jobs to the run queue and run the job at the front of
214 // the queue
215 void fgEVENT_MGR::Process( void ) {
216     fgEVENT *e_ptr;
217     fg_timestamp cur_time;
218     unsigned int i, size;
219
220     FG_LOG( FG_EVENT, FG_DEBUG, "Processing events" );
221     
222     // get the current time
223     timestamp(&cur_time);
224
225     FG_LOG( FG_EVENT, FG_DEBUG, 
226             "  Current timestamp = " << cur_time.seconds );
227
228     // printf("Checking if anything is ready to move to the run queue\n");
229
230     // see if anything else is ready to be placed on the run queue
231     size = event_table.size();
232     // while ( current != last ) {
233     for ( i = 0; i < size; i++ ) {
234         // e = *current++;
235         e_ptr = &event_table[i];
236         if ( e_ptr->status == fgEVENT::FG_EVENT_READY ) {
237             FG_LOG( FG_EVENT, FG_DEBUG, 
238                     "  Item " << i << " current " << cur_time.seconds 
239                     << " next run @ " << e_ptr->next_run.seconds );
240             if ( timediff(&cur_time, &(e_ptr->next_run)) <= 0) {
241                 run_queue.push_back(e_ptr);
242                 e_ptr->status = fgEVENT::FG_EVENT_QUEUED;
243             }
244         }
245     }
246
247     // Checking to see if there is anything on the run queue
248     // printf("Checking to see if there is anything on the run queue\n");
249     if ( run_queue.size() ) {
250         // printf("Yep, running it\n");
251         e_ptr = run_queue.front();
252         run_queue.pop_front();
253         e_ptr->run();
254     }
255 }
256
257
258 // Destructor
259 fgEVENT_MGR::~fgEVENT_MGR( void ) {
260 }
261
262
263 // $Log$
264 // Revision 1.11  1998/11/09 23:41:51  curt
265 // Log message clean ups.
266 //
267 // Revision 1.10  1998/11/07 19:07:13  curt
268 // Enable release builds using the --without-logging option to the configure
269 // script.  Also a couple log message cleanups, plus some C to C++ comment
270 // conversion.
271 //
272 // Revision 1.9  1998/11/06 21:18:24  curt
273 // Converted to new logstream debugging facility.  This allows release
274 // builds with no messages at all (and no performance impact) by using
275 // the -DFG_NDEBUG flag.
276 //
277 // Revision 1.8  1998/09/15 02:09:29  curt
278 // Include/fg_callback.hxx
279 //   Moved code inline to stop g++ 2.7 from complaining.
280 //
281 // Simulator/Time/event.[ch]xx
282 //   Changed return type of fgEVENT::printStat().  void caused g++ 2.7 to
283 //   complain bitterly.
284 //
285 // Minor bugfix and changes.
286 //
287 // Simulator/Main/GLUTmain.cxx
288 //   Added missing type to idle_state definition - eliminates a warning.
289 //
290 // Simulator/Main/fg_init.cxx
291 //   Changes to airport lookup.
292 //
293 // Simulator/Main/options.cxx
294 //   Uses fg_gzifstream when loading config file.
295 //
296 // Revision 1.7  1998/08/29 13:11:31  curt
297 // Bernie Bright writes:
298 //   I've created some new classes to enable pointers-to-functions and
299 //   pointers-to-class-methods to be treated like objects.  These objects
300 //   can be registered with fgEVENT_MGR.
301 //
302 //   File "Include/fg_callback.hxx" contains the callback class defns.
303 //
304 //   Modified fgEVENT and fgEVENT_MGR to use the callback classes.  Also
305 //   some minor tweaks to STL usage.
306 //
307 //   Added file "Include/fg_stl_config.h" to deal with STL portability
308 //   issues.  I've added an initial config for egcs (and probably gcc-2.8.x).
309 //   I don't have access to Visual C++ so I've left that for someone else.
310 //   This file is influenced by the stl_config.h file delivered with egcs.
311 //
312 //   Added "Include/auto_ptr.hxx" which contains an implementation of the
313 //   STL auto_ptr class which is not provided in all STL implementations
314 //   and is needed to use the callback classes.
315 //
316 //   Deleted fgLightUpdate() which was just a wrapper to call
317 //   fgLIGHT::Update().
318 //
319 //   Modified fg_init.cxx to register two method callbacks in place of the
320 //   old wrapper functions.
321 //
322 // Revision 1.6  1998/08/20 15:12:26  curt
323 // Tweak ...
324 //
325 // Revision 1.5  1998/06/12 00:59:52  curt
326 // Build only static libraries.
327 // Declare memmove/memset for Sloaris.
328 // Rewrote fg_time.c routine to get LST start seconds to better handle
329 //   Solaris, and be easier to port, and understand the GMT vs. local
330 //   timezone issues.
331 //
332 // Revision 1.4  1998/06/05 18:18:12  curt
333 // Incorporated some automake conditionals to try to support mktime() correctly
334 // on a wider variety of platforms.
335 // Added the declaration of memmove needed by the stl which apparently
336 // solaris only defines for cc compilations and not for c++ (__STDC__)
337 //
338 // Revision 1.3  1998/05/22 21:14:53  curt
339 // Rewrote event.cxx in C++ as a class using STL for the internal event list
340 // and run queue this removes the arbitrary list sizes and makes things much
341 // more dynamic.  Because this is C++-classified we can now have multiple
342 // event_tables if we'd ever want them.
343 //
344 // Revision 1.2  1998/04/25 22:06:33  curt
345 // Edited cvs log messages in source files ... bad bad bad!
346 //
347 // Revision 1.1  1998/04/24 00:52:26  curt
348 // Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
349 // Fog color fixes.
350 // Separated out lighting calcs into their own file.
351 //
352 // Revision 1.13  1998/04/18 04:14:08  curt
353 // Moved fg_debug.c to it's own library.
354 //
355 // Revision 1.12  1998/04/09 18:40:13  curt
356 // We had unified some of the platform disparate time handling code, and
357 // there was a bug in timesum() which calculated a new time stamp based on
358 // the current time stamp + offset.  This hosed the periodic event processing
359 // logic because you'd never arrive at the time the event was scheduled for.
360 // Sky updates and lighting changes are handled via this event mechanism so
361 // they never changed ... it is fixed now.
362 //
363 // Revision 1.11  1998/04/03 22:12:55  curt
364 // Converting to Gnu autoconf system.
365 // Centralized time handling differences.
366 //
367 // Revision 1.10  1998/03/14 00:28:34  curt
368 // replaced a printf() with an fgPrintf().
369 //
370 // Revision 1.9  1998/01/31 00:43:44  curt
371 // Added MetroWorks patches from Carmen Volpe.
372 //
373 // Revision 1.8  1998/01/27 00:48:05  curt
374 // Incorporated Paul Bleisch's <pbleisch@acm.org> new debug message
375 // system and commandline/config file processing code.
376 //
377 // Revision 1.7  1998/01/19 19:27:19  curt
378 // Merged in make system changes from Bob Kuehne <rpk@sgi.com>
379 // This should simplify things tremendously.
380 //
381 // Revision 1.6  1998/01/19 18:40:39  curt
382 // Tons of little changes to clean up the code and to remove fatal errors
383 // when building with the c++ compiler.
384 //
385 // Revision 1.5  1998/01/06 01:20:27  curt
386 // Tweaks to help building with MSVC++
387 //
388 // Revision 1.4  1997/12/31 17:46:50  curt
389 // Tweaked fg_time.c to be able to use ftime() instead of gettimeofday()
390 //
391 // Revision 1.3  1997/12/30 22:22:42  curt
392 // Further integration of event manager.
393 //
394 // Revision 1.2  1997/12/30 20:47:58  curt
395 // Integrated new event manager with subsystem initializations.
396 //
397 // Revision 1.1  1997/12/30 04:19:22  curt
398 // Initial revision.