]> git.mxchange.org Git - simgear.git/blob - simgear/timing/sg_time.cxx
Remove duplicate members in SGSampleQueue.
[simgear.git] / simgear / timing / sg_time.cxx
1 // sg_time.cxx -- data structures and routines for managing time related stuff.
2 //
3 // Written by Curtis Olson, started August 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - http://www.flightgear.org/~curt
6 //
7 // This library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Library General Public
9 // License as published by the Free Software Foundation; either
10 // version 2 of the License, or (at your option) any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // Library 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21 // $Id$
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include <simgear_config.h>
26 #endif
27
28 #include <simgear/compiler.h>
29
30 #include <errno.h>              // for errno
31
32 #include <cstdio>
33 #include <cstdlib>
34 #include <ctime>
35 #include <cstring>
36
37 #include <string>
38
39 #ifdef HAVE_SYS_TIME_H
40 #  include <sys/time.h>  // for get/setitimer, gettimeofday, struct timeval
41 #endif
42 #ifdef HAVE_SYS_TIMEB_H
43 #  include <sys/timeb.h> // for ftime() and struct timeb
44 #endif
45 #ifdef HAVE_UNISTD_H
46 #  include <unistd.h>    // for gettimeofday()
47 #endif
48
49 #include <math.h>        // for NAN
50
51 #include <simgear/constants.h>
52 #include <simgear/debug/logstream.hxx>
53 #include <simgear/misc/sg_path.hxx>
54
55 #include "sg_time.hxx"
56 #include "timezone.h"
57 #include "lowleveltime.h"
58
59 #define DEGHR(x)        ((x)/15.)
60 #define RADHR(x)        DEGHR(x*SGD_RADIANS_TO_DEGREES)
61
62 using std::string;
63
64 static const double MJD0    = 2415020.0;
65 static const double J2000   = 2451545.0 - MJD0;
66 static const double SIDRATE = 0.9972695677;
67
68 // tzContainer stores all the current Timezone control points/
69 std::auto_ptr<SGTimeZoneContainer> static_tzContainer;
70
71 void SGTime::init( const SGGeod& location, const SGPath& root, time_t init_time )
72 {
73     gst_diff = -9999.0;
74
75     if ( init_time ) {
76         cur_time = init_time;
77     } else {
78         cur_time = time(NULL); 
79     }
80
81     SG_LOG( SG_EVENT, SG_DEBUG,
82                 "Current greenwich mean time = " << asctime(gmtime(&cur_time)));
83     SG_LOG( SG_EVENT, SG_DEBUG,
84              "Current local time          = " << asctime(localtime(&cur_time)));
85
86     if ( !root.isNull()) {
87         if (!static_tzContainer.get()) {
88             SGPath zone( root );
89             zone.append( "zone.tab" );
90             SG_LOG( SG_EVENT, SG_INFO, "Reading timezone info from: "
91                    << zone.str() );
92             static_tzContainer.reset(new SGTimeZoneContainer( zone.c_str() ));
93         }
94
95         SGTimeZone* nearestTz = static_tzContainer->getNearest(location);
96
97         SGPath name( root );
98         name.append( nearestTz->getDescription() );
99         zonename = name.str();
100         SG_LOG( SG_EVENT, SG_DEBUG, "Using zonename = " << zonename );
101     } else {
102         zonename.erase();
103     }
104 }
105
106 SGTime::SGTime( const SGGeod& location, const SGPath& root,
107            time_t init_time )
108 {
109     init(location, root, init_time);
110 }
111
112 SGTime::SGTime( const SGPath& root ) {
113     init( SGGeod(), root, 0 );
114 }
115
116
117 SGTime::SGTime() {
118     init( SGGeod(), SGPath(), 0 );
119 }
120
121
122 SGTime::~SGTime()
123 {
124 }
125
126
127 // given Julian Date and Longitude (decimal degrees West) compute
128 // Local Sidereal Time, in decimal hours.
129 //
130 // Provided courtesy of ecdowney@noao.edu (Elwood Downey) 
131 static double sidereal_precise( double mjd, double lng )
132 {
133     /* printf ("Current Lst on JD %13.5f at %8.4f degrees West: ", 
134        mjd + MJD0, lng); */
135
136     // convert to required internal units
137     lng *= SGD_DEGREES_TO_RADIANS;
138
139     // compute LST and print
140     double gst = sgTimeCalcGST( mjd );
141     double lst = gst - RADHR( lng );
142     lst -= 24.0 * floor( lst / 24.0 );
143     // printf ("%7.4f\n", lstTmp);
144
145     return lst;
146 }
147
148
149 // return a courser but cheaper estimate of sidereal time
150 static double sidereal_course( time_t cur_time, const struct tm *gmt, double lng )
151 {
152     time_t start_gmt, now;
153     double diff, part, days, hours, lstTmp;
154     char tbuf[64];
155   
156     now = cur_time;
157     start_gmt = sgTimeGetGMT(gmt->tm_year, 2, 21, 12, 0, 0);
158   
159     SG_LOG( SG_EVENT, SG_DEBUG, "  COURSE: GMT = "
160             << sgTimeFormatTime(gmt, tbuf) );
161     SG_LOG( SG_EVENT, SG_DEBUG, "  March 21 noon (GMT) = " << start_gmt );
162   
163     diff = (now - start_gmt) / (3600.0 * 24.0);
164   
165     SG_LOG( SG_EVENT, SG_DEBUG, 
166             "  Time since 3/21/" << gmt->tm_year << " GMT = " << diff );
167   
168     part = fmod(diff, 1.0);
169     days = diff - part;
170     hours = gmt->tm_hour + gmt->tm_min/60.0 + gmt->tm_sec/3600.0;
171   
172     lstTmp = (days - lng)/15.0 + hours - 12;
173   
174     while ( lstTmp < 0.0 ) {
175         lstTmp += 24.0;
176     }
177   
178     SG_LOG( SG_EVENT, SG_DEBUG,
179             "  days = " << days << "  hours = " << hours << "  lon = " 
180             << lng << "  lst = " << lstTmp );
181   
182     return lstTmp;
183 }
184
185
186 // Update the time related variables
187 void SGTime::update( const SGGeod& location, time_t ct, long int warp )
188 {
189     double gst_precise, gst_course;
190
191
192     tm * gmt = &m_gmt;
193
194
195     // get current Unix calendar time (in seconds)
196     // warp += warp_delta;
197     if ( ct ) {
198         cur_time = ct + warp;
199     } else {
200         cur_time = time(NULL) + warp;
201     }
202     SG_LOG( SG_EVENT, SG_DEBUG, 
203             "  Current Unix calendar time = " << cur_time 
204             << "  warp = " << warp );
205
206     // get GMT break down for current time
207
208     memcpy( gmt, gmtime(&cur_time), sizeof(tm) );
209     SG_LOG( SG_EVENT, SG_DEBUG, 
210             "  Current GMT = " << gmt->tm_mon+1 << "/" 
211             << gmt->tm_mday << "/" << (1900 + gmt->tm_year) << " "
212             << gmt->tm_hour << ":" << gmt->tm_min << ":" 
213             << gmt->tm_sec );
214
215     // calculate modified Julian date starting with current
216     mjd = sgTimeCurrentMJD( ct, warp );
217
218     // add in partial day
219     mjd += (gmt->tm_hour / 24.0) + (gmt->tm_min / (24.0 * 60.0)) +
220         (gmt->tm_sec / (24.0 * 60.0 * 60.0));
221
222     // convert "back" to Julian date + partial day (as a fraction of one)
223     jd = mjd + MJD0;
224     SG_LOG( SG_EVENT, SG_DEBUG, "  Current Julian Date = " << jd );
225
226     // printf("  Current Longitude = %.3f\n", FG_Longitude * SGD_RADIANS_TO_DEGREES);
227
228     // Calculate local side real time
229     if ( gst_diff < -100.0 ) {
230         // first time through do the expensive calculation & cheap
231         // calculation to get the difference.
232         SG_LOG( SG_EVENT, SG_DEBUG, "  First time, doing precise gst" );
233         gst_precise = gst = sidereal_precise( mjd, 0.00 );
234         gst_course = sidereal_course( cur_time, gmt, 0.00 );
235       
236         gst_diff = gst_precise - gst_course;
237
238         lst = sidereal_course( cur_time, gmt,
239                                -location.getLongitudeDeg() ) + gst_diff;
240     } else {
241         // course + difference should drift off very slowly
242         gst = sidereal_course( cur_time, gmt, 0.00 ) + gst_diff;
243         lst = sidereal_course( cur_time, gmt,
244                                -location.getLongitudeDeg()  ) + gst_diff;
245     }
246
247     SG_LOG( SG_EVENT, SG_DEBUG,
248             "  Current lon=0.00 Sidereal Time = " << gst );
249     SG_LOG( SG_EVENT, SG_DEBUG,
250             "  Current LOCAL Sidereal Time = " << lst << " (" 
251             << sidereal_precise( mjd, -location.getLongitudeDeg()  ) 
252             << ") (diff = " << gst_diff << ")" );
253 }
254
255
256 // Given lon/lat, update timezone information and local_offset
257 void SGTime::updateLocal( const SGGeod& aLocation, const string& root ) {
258   SGGeod location(aLocation);
259     if (!aLocation.isValid()) {
260         location = SGGeod();
261     }
262     
263     time_t currGMT;
264     time_t aircraftLocalTime;
265     SGTimeZone* nearestTz = static_tzContainer->getNearest(location);
266     SGPath zone( root );
267     zone.append ( nearestTz->getDescription() );
268     zonename = zone.str();
269
270     //Avoid troubles when zone.tab hasn't got the right line endings
271     if (zonename[zonename.size()-1] == '\r')
272     {
273       zonename[zonename.size()-1]=0;
274       zone.set( zonename );
275     }
276
277     currGMT = sgTimeGetGMT( gmtime(&cur_time) );
278     aircraftLocalTime = sgTimeGetGMT( (fgLocaltime(&cur_time, zone.c_str())) );
279     local_offset = aircraftLocalTime - currGMT;
280     // cout << "Using " << local_offset << " as local time offset Timezone is " 
281     //      << zonename << endl;
282 }
283
284
285 // given a date in months, mn, days, dy, years, yr, return the
286 // modified Julian date (number of days elapsed since 1900 jan 0.5),
287 // mjd.  Adapted from Xephem.
288 double sgTimeCalcMJD(int mn, double dy, int yr) {
289     double mjd;
290
291     // internal book keeping data
292     static double last_mjd, last_dy;
293     static int last_mn, last_yr;
294
295     int b, d, m, y;
296     long c;
297   
298     if (mn == last_mn && yr == last_yr && dy == last_dy) {
299         mjd = last_mjd;
300     }
301   
302     m = mn;
303     y = (yr < 0) ? yr + 1 : yr;
304     if (mn < 3) {
305         m += 12;
306         y -= 1;
307     }
308   
309     if (yr < 1582 || (yr == 1582 && (mn < 10 || (mn == 10 && dy < 15)))) {
310         b = 0;
311     } else {
312         int a;
313         a = y/100;
314         b = 2 - a + a/4;
315     }
316   
317     if (y < 0) {
318         c = (long)((365.25*y) - 0.75) - 694025L;
319     } else {
320         c = (long)(365.25*y) - 694025L;
321     }
322   
323     d = (int)(30.6001*(m+1));
324   
325     mjd = b + c + d + dy - 0.5;
326   
327     last_mn = mn;
328     last_dy = dy;
329     last_yr = yr;
330     last_mjd = mjd;
331
332     return mjd;
333 }
334
335
336 // return the current modified Julian date (number of days elapsed
337 // since 1900 jan 0.5), mjd.
338 double sgTimeCurrentMJD( time_t ct, long int warp ) {
339
340     struct tm m_gmt;    // copy of system gmtime(&time_t) structure
341     struct tm *gmt = &m_gmt;
342
343     // get current Unix calendar time (in seconds)
344     // warp += warp_delta;
345     time_t cur_time;
346     if ( ct ) {
347         cur_time = ct + warp;
348     } else {
349         cur_time = time(NULL) + warp;
350     }
351     SG_LOG( SG_EVENT, SG_DEBUG, 
352             "  Current Unix calendar time = " << cur_time 
353             << "  warp = " << warp );
354
355     // get GMT break down for current time
356     memcpy( gmt, gmtime(&cur_time), sizeof(tm) );
357     SG_LOG( SG_EVENT, SG_DEBUG, 
358             "  Current GMT = " << gmt->tm_mon+1 << "/" 
359             << gmt->tm_mday << "/" << (1900 + gmt->tm_year) << " "
360             << gmt->tm_hour << ":" << gmt->tm_min << ":" 
361             << gmt->tm_sec );
362
363     // calculate modified Julian date
364     // t->mjd = cal_mjd ((int)(t->gmt->tm_mon+1), (double)t->gmt->tm_mday, 
365     //     (int)(t->gmt->tm_year + 1900));
366     double mjd = sgTimeCalcMJD( (int)(gmt->tm_mon+1), (double)gmt->tm_mday, 
367                                 (int)(gmt->tm_year + 1900) );
368
369     return mjd;
370 }
371
372
373 // given an mjd, calculate greenwich mean sidereal time, gst
374 double sgTimeCalcGST( double mjd ) {
375     double gst;
376
377     double day = floor(mjd-0.5)+0.5;
378     double hr = (mjd-day)*24.0;
379     double T, x;
380
381     T = ((int)(mjd - 0.5) + 0.5 - J2000)/36525.0;
382     x = 24110.54841 + (8640184.812866 + (0.093104 - 6.2e-6 * T) * T) * T;
383     x /= 3600.0;
384     gst = (1.0/SIDRATE)*hr + x;
385
386     SG_LOG( SG_EVENT, SG_DEBUG, "  gst => " << gst );
387
388     return gst;
389 }
390
391
392 #if defined( HAVE_TIMEGM ) 
393     // ignore this function
394 #elif defined( MK_TIME_IS_GMT )
395     // ignore this function
396 #else // ! defined ( MK_TIME_IS_GMT )
397
398     // Fix up timezone if using ftime()
399     static long int fix_up_timezone( long int timezone_orig ) {
400 #   if !defined( HAVE_GETTIMEOFDAY ) && defined( HAVE_FTIME )
401         // ftime() needs a little extra help finding the current timezone
402         struct timeb current;
403         ftime(&current);
404         return( current.timezone * 60 );
405 #   else
406         return( timezone_orig );
407 #   endif
408     }
409 #endif
410
411
412 /******************************************************************
413  * The following are some functions that were included as SGTime
414  * members, although they currently don't make use of any of the
415  * class's variables. Maybe this'll change in the future
416  *****************************************************************/
417
418 // Return time_t for Sat Mar 21 12:00:00 GMT
419 //
420 // On many systems it is ambiguous if mktime() assumes the input is in
421 // GMT, or local timezone.  To address this, a new function called
422 // timegm() is appearing.  It works exactly like mktime() but
423 // explicitely interprets the input as GMT.
424 //
425 // timegm() is available and documented under FreeBSD.  It is
426 // available, but completely undocumented on my current Debian 2.1
427 // distribution.
428 //
429 // In the absence of timegm() we have to guess what mktime() might do.
430 //
431 // Many older BSD style systems have a mktime() that assumes the input
432 // time in GMT.  But FreeBSD explicitly states that mktime() assumes
433 // local time zone
434 //
435 // The mktime() on many SYSV style systems (such as Linux) usually
436 // returns its result assuming you have specified the input time in
437 // your local timezone.  Therefore, in the absence if timegm() you
438 // have to go to extra trouble to convert back to GMT.
439 //
440 // If you are having problems with incorrectly positioned astronomical
441 // bodies, this is a really good place to start looking.
442
443 time_t sgTimeGetGMT(int year, int month, int day, int hour, int min, int sec)
444 {
445     struct tm mt;
446
447     mt.tm_mon = month;
448     mt.tm_mday = day;
449     mt.tm_year = year;
450     mt.tm_hour = hour;
451     mt.tm_min = min;
452     mt.tm_sec = sec;
453     mt.tm_isdst = -1; // let the system determine the proper time zone
454
455     // For now we assume that if daylight is not defined in
456     // /usr/include/time.h that we have a machine with a mktime() that
457     // assumes input is in GMT ... this only matters if we are
458     // building on a system that does not have timegm()
459 #if !defined(HAVE_DAYLIGHT)
460 #  define MK_TIME_IS_GMT 1
461 #endif
462
463 #if defined( HAVE_TIMEGM )
464     return ( timegm(&mt) );
465 #elif defined( MK_TIME_IS_GMT )
466     time_t ret = mktime(&mt);
467
468 #ifdef __CYGWIN__
469         ret -= _timezone;
470 #endif
471
472     // This is necessary as some mktime() calls may
473     // try to access the system timezone files
474     // if this open fails errno is set to 2
475     // CYGWIN for one does this
476     // if ( errno ) {
477     //     perror( "sgTimeGetGMT()" );
478     //     errno = 0;
479     // }
480
481     // reset errno in any event.
482     errno = 0;
483
484     return ret;
485 #else // ! defined ( MK_TIME_IS_GMT )
486
487     // timezone seems to work as a proper offset for Linux & Solaris
488 #   if defined( __linux__ ) || defined(__sun) ||defined(__CYGWIN__)
489 #       define TIMEZONE_OFFSET_WORKS 1
490 #   endif
491
492 #if defined(__CYGWIN__)
493 #define TIMEZONE _timezone
494 #else
495 #define TIMEZONE timezone
496 #endif
497         
498     time_t start = mktime(&mt);
499
500     SG_LOG( SG_EVENT, SG_DEBUG, "start1 = " << start );
501     // the ctime() call can screw up time progression on some versions
502     // of Linux
503     // fgPrintf( SG_EVENT, SG_DEBUG, "start2 = %s", ctime(&start));
504     SG_LOG( SG_EVENT, SG_DEBUG, "(tm_isdst = " << mt.tm_isdst << ")" );
505
506     TIMEZONE = fix_up_timezone( TIMEZONE );
507
508 #  if defined( TIMEZONE_OFFSET_WORKS )
509     SG_LOG( SG_EVENT, SG_DEBUG,
510             "start = " << start << ", timezone = " << TIMEZONE );
511     return( start - TIMEZONE );
512 #  else // ! defined( TIMEZONE_OFFSET_WORKS )
513
514     daylight = mt.tm_isdst;
515     if ( daylight > 0 ) {
516         daylight = 1;
517     } else if ( daylight < 0 ) {
518         SG_LOG( SG_EVENT, SG_WARN, 
519                 "OOOPS, problem in sg_time.cxx, no daylight savings info." );
520     }
521
522     long int offset = -(TIMEZONE / 3600 - daylight);
523
524     SG_LOG( SG_EVENT, SG_DEBUG, "  Raw time zone offset = " << TIMEZONE );
525     SG_LOG( SG_EVENT, SG_DEBUG, "  Daylight Savings = " << daylight );
526     SG_LOG( SG_EVENT, SG_DEBUG, "  Local hours from GMT = " << offset );
527     
528     long int start_gmt = start - TIMEZONE + (daylight * 3600);
529     
530     SG_LOG( SG_EVENT, SG_DEBUG, "  March 21 noon (CST) = " << start );
531
532     return ( start_gmt );
533 #  endif // ! defined( TIMEZONE_OFFSET_WORKS )
534 #endif // ! defined ( MK_TIME_IS_GMT )
535 }
536
537
538 // format time
539 char* sgTimeFormatTime( const struct tm* p, char* buf )
540 {
541     sprintf( buf, "%d/%d/%2d %d:%02d:%02d", 
542              p->tm_mon, p->tm_mday, p->tm_year,
543              p->tm_hour, p->tm_min, p->tm_sec);
544     return buf;
545 }