]> git.mxchange.org Git - flightgear.git/blob - Time/timestamp.hxx
42f8734d41bcf76ef4195f920f1457a0134266fd
[flightgear.git] / Time / timestamp.hxx
1 //
2 // timestamp.hxx -- class for managing a timestamp (seconds & milliseconds.)
3 //
4 // Written by Curtis Olson, started December 1998.
5 //
6 // Copyright (C) 1998  Curtis L. Olson  - curt@flightgear.org
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 //
22 // $Id$
23 // (Log is kept at end of this file)
24
25
26 #ifndef _TIMESTAMP_HXX
27 #define _TIMESTAMP_HXX
28
29
30 #ifndef __cplusplus                                                          
31 # error This library requires C++
32 #endif                                   
33
34
35 #ifdef HAVE_CONFIG_H
36 #  include <config.h>
37 #endif
38
39 #ifdef HAVE_WINDOWS_H
40 #  include <windows.h>
41 #endif
42
43 #include "Include/compiler.h"
44 #ifdef FG_HAVE_STD_INCLUDES
45 #  include <ctime>
46 #else
47 #  include <time.h>
48 #endif
49
50 #ifdef HAVE_SYS_TIMEB_H
51 #  include <sys/timeb.h> // for ftime() and struct timeb
52 #endif
53 #ifdef HAVE_UNISTD_H
54 #  include <unistd.h>    // for gettimeofday()
55 #endif
56 #ifdef HAVE_SYS_TIME_H
57 #  include <sys/time.h>  // for get/setitimer, gettimeofday, struct timeval
58 #endif
59
60 #ifdef  WIN32
61 #  include <windows.h>
62 #  if defined( __CYGWIN__ ) || defined( __CYGWIN32__ )
63 #    define NEAR /* */
64 #    define FAR  /* */
65 #  endif
66 #  include <mmsystem.h>
67 #endif
68
69
70 class fgTIMESTAMP {
71
72 private:
73
74     long seconds;
75     long millis;
76
77 public:
78
79     fgTIMESTAMP();
80     fgTIMESTAMP( const long s, const long m );
81     ~fgTIMESTAMP();
82
83     // Set time to current time
84     void stamp();
85
86     fgTIMESTAMP& operator = ( const fgTIMESTAMP& t );
87
88     friend fgTIMESTAMP operator + (const fgTIMESTAMP& t, const long& m);
89     friend long operator - (const fgTIMESTAMP& a, const fgTIMESTAMP& b);
90
91     inline long get_seconds() const { return seconds; }
92     inline long get_millis() const { return millis; }
93 };
94
95 inline fgTIMESTAMP::fgTIMESTAMP() {
96 }
97
98 inline fgTIMESTAMP::fgTIMESTAMP( const long s, const long m ) {
99     seconds = s;
100     millis = m;
101 }
102
103 inline fgTIMESTAMP::~fgTIMESTAMP() {
104 }
105
106 inline fgTIMESTAMP& fgTIMESTAMP::operator = (const fgTIMESTAMP& t)
107 {
108     seconds = t.seconds;
109     millis = t.millis;
110     return *this;
111 }
112
113 inline void fgTIMESTAMP::stamp() {
114 #if defined( WIN32 )
115     unsigned int t;
116     t = timeGetTime();
117     seconds = 0;
118     millis =  t;
119 #elif defined( HAVE_GETTIMEOFDAY )
120     struct timeval current;
121     struct timezone tz;
122     // fg_timestamp currtime;
123     gettimeofday(&current, &tz);
124     seconds = current.tv_sec;
125     millis = current.tv_usec / 1000;
126 #elif defined( HAVE_GETLOCALTIME )
127     SYSTEMTIME current;
128     GetLocalTime(&current);
129     seconds = current.wSecond;
130     millis = current.wMilliseconds;
131 #elif defined( HAVE_FTIME )
132     struct timeb current;
133     ftime(&current);
134     seconds = current.time;
135     millis = current.millitm;
136 #else
137 # error Port me
138 #endif
139 }
140
141 // difference between time stamps in milliseconds
142 inline fgTIMESTAMP operator + (const fgTIMESTAMP& t, const long& m) {
143 #ifdef WIN32
144     return fgTIMESTAMP( 0, t.millis + m );
145 #else
146     return fgTIMESTAMP( t.seconds + ( t.millis + m ) / 1000,
147                         ( t.millis + m ) % 1000 );
148 #endif
149 }
150
151 // difference between time stamps in milliseconds
152 inline long operator - (const fgTIMESTAMP& a, const fgTIMESTAMP& b)
153 {
154 #if defined( WIN32 )
155     return a.millis - b.millis;
156 #else
157     return 1000 * (a.seconds - b.seconds) + (a.millis - b.millis);
158 #endif
159 }
160
161
162 #endif // _TIMESTAMP_HXX
163
164
165 // $Log$
166 // Revision 1.3  1999/01/07 20:25:39  curt
167 // Portability changes and updates from Bernie Bright.
168 //
169 // Revision 1.2  1998/12/11 20:26:56  curt
170 // #include tweaks.
171 //
172 // Revision 1.1  1998/12/05 14:21:33  curt
173 // Moved struct fg_timestamp to class fgTIMESTAMP and moved it's definition
174 // to it's own file, timestamp.hxx.
175 //