Mercurial > hg > octave-lyh
annotate liboctave/oct-time.h @ 12440:2ed62b9f949e
synchronization of axes position and outerposition
author | Konstantinos Poulios <logari81@googlemail.com> |
---|---|
date | Sun, 13 Feb 2011 15:11:56 +0100 |
parents | fd0a3ac60b0e |
children | f5bd61eb032f |
rev | line source |
---|---|
3253 | 1 /* |
2 | |
11523 | 3 Copyright (C) 1999-2011 John W. Eaton |
3253 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
3253 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
3253 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_time_h) | |
24 #define octave_time_h 1 | |
25 | |
10240
fa7b5751730c
use gnulib time, sys_time, and sys_times modules
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
26 #include <ctime> |
3253 | 27 #include <string> |
28 | |
7231 | 29 #include "lo-math.h" |
3253 | 30 |
31 class octave_base_tm; | |
32 | |
33 class | |
6108 | 34 OCTAVE_API |
3253 | 35 octave_time |
36 { | |
37 public: | |
38 | |
39 octave_time (void) | |
40 : ot_unix_time (0), ot_usec (0) { stamp (); } | |
41 | |
3255 | 42 octave_time (time_t t) |
43 : ot_unix_time (t), ot_usec (0) { } | |
44 | |
9748
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
45 octave_time (time_t t, int us) |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
46 : ot_unix_time (t), ot_usec () |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
47 { |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
48 int rem, extra; |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
49 |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
50 if (us >= 0) |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
51 { |
10312
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
52 rem = us % 1000000; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
53 extra = (us - rem) / 1000000; |
9748
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
54 } |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
55 else |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
56 { |
10312
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
57 us = -us; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
58 rem = us % 1000000; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
59 extra = - (1 + (us - rem) / 1000000); |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
60 rem = 1000000 - us % 1000000; |
9748
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
61 } |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
62 |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
63 ot_usec = rem; |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
64 ot_unix_time += extra; |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
65 } |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
66 |
3253 | 67 octave_time (double d) |
3255 | 68 : ot_unix_time (static_cast<time_t> (d)), ot_usec (0) |
3253 | 69 { |
70 double ip; | |
10458
9684b3c3b417
Revert modf usage now that cmath is back.
David Grundberg <davidg@cs.umu.se>
parents:
10447
diff
changeset
|
71 ot_usec = static_cast<int> (std::modf (d, &ip) * 1e6); |
3253 | 72 } |
73 | |
74 octave_time (const octave_base_tm& tm); | |
75 | |
76 octave_time (const octave_time& ot) | |
77 : ot_unix_time (ot.ot_unix_time), ot_usec (ot.ot_usec) { } | |
78 | |
79 octave_time& operator = (const octave_time& ot) | |
80 { | |
81 if (this != &ot) | |
82 { | |
10312
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
83 ot_unix_time = ot.ot_unix_time; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
84 ot_usec = ot.ot_usec; |
3253 | 85 } |
86 | |
87 return *this; | |
88 } | |
89 | |
90 ~octave_time (void) { } | |
91 | |
92 void stamp (void); | |
93 | |
7065 | 94 double double_value (void) const { return ot_unix_time + ot_usec / 1e6; } |
3253 | 95 |
96 time_t unix_time (void) const { return ot_unix_time; } | |
97 | |
98 int usec (void) const { return ot_usec; } | |
99 | |
3504 | 100 std::string ctime (void) const; |
3255 | 101 |
3253 | 102 private: |
103 | |
104 // Seconds since the epoch. | |
105 time_t ot_unix_time; | |
106 | |
107 // Additional microseconds. | |
108 int ot_usec; | |
109 }; | |
110 | |
3255 | 111 inline bool |
112 operator == (const octave_time& t1, const octave_time& t2) | |
113 { | |
114 return (t1.unix_time () == t2.unix_time () && t1.usec () == t2.usec ()); | |
115 } | |
116 | |
117 inline bool | |
118 operator != (const octave_time& t1, const octave_time& t2) | |
119 { | |
120 return ! (t1 == t2); | |
121 } | |
122 | |
123 inline bool | |
124 operator < (const octave_time& t1, const octave_time& t2) | |
125 { | |
126 if (t1.unix_time () < t2.unix_time ()) | |
127 return true; | |
128 else if (t1.unix_time () > t2.unix_time ()) | |
129 return false; | |
130 else if (t1.usec () < t2.usec ()) | |
131 return true; | |
132 else | |
133 return false; | |
134 } | |
135 | |
136 inline bool | |
137 operator <= (const octave_time& t1, const octave_time& t2) | |
138 { | |
139 return (t1 < t2 || t1 == t2); | |
140 } | |
141 | |
142 inline bool | |
143 operator > (const octave_time& t1, const octave_time& t2) | |
144 { | |
145 if (t1.unix_time () > t2.unix_time ()) | |
146 return true; | |
147 else if (t1.unix_time () < t2.unix_time ()) | |
148 return false; | |
149 else if (t1.usec () > t2.usec ()) | |
150 return true; | |
151 else | |
152 return false; | |
153 } | |
154 | |
155 inline bool | |
156 operator >= (const octave_time& t1, const octave_time& t2) | |
157 { | |
158 return (t1 > t2 || t1 == t2); | |
159 } | |
160 | |
9748
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
161 inline octave_time |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
162 operator + (const octave_time& t1, const octave_time& t2) |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
163 { |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
164 return octave_time (t1.unix_time () + t2.unix_time (), |
10312
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
165 t1.usec () + t2.usec ()); |
9748
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
166 } |
d6b2b708b6b0
load-path: compare directory timestamps with tolerance
John W. Eaton <jwe@octave.org>
parents:
7231
diff
changeset
|
167 |
3253 | 168 class |
6108 | 169 OCTAVE_API |
3253 | 170 octave_base_tm |
171 { | |
172 public: | |
173 | |
174 octave_base_tm (void) | |
175 : tm_usec (0), tm_sec (0), tm_min (0), tm_hour (0), | |
176 tm_mday (0), tm_mon (0), tm_year (0), tm_wday (0), | |
177 tm_yday (0), tm_isdst (0), tm_zone ("unknown") | |
178 { } | |
179 | |
180 octave_base_tm (const octave_base_tm& tm) | |
181 : tm_usec (tm.tm_usec), tm_sec (tm.tm_sec), tm_min (tm.tm_min), | |
182 tm_hour (tm.tm_hour), tm_mday (tm.tm_mday), tm_mon (tm.tm_mon), | |
183 tm_year (tm.tm_year), tm_wday (tm.tm_wday), tm_yday (tm.tm_yday), | |
184 tm_isdst (tm.tm_isdst), tm_zone (tm.tm_zone) | |
185 { } | |
186 | |
187 octave_base_tm& operator = (const octave_base_tm& tm) | |
188 { | |
189 if (this != &tm) | |
190 { | |
10312
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
191 tm_usec = tm.tm_usec; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
192 tm_sec = tm.tm_sec; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
193 tm_min = tm.tm_min; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
194 tm_hour = tm.tm_hour; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
195 tm_mday = tm.tm_mday; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
196 tm_mon = tm.tm_mon; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
197 tm_year = tm.tm_year; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
198 tm_wday = tm.tm_wday; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
199 tm_yday = tm.tm_yday; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
200 tm_isdst = tm.tm_isdst; |
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10240
diff
changeset
|
201 tm_zone = tm.tm_zone; |
3253 | 202 } |
203 | |
204 return *this; | |
205 } | |
206 | |
207 virtual ~octave_base_tm (void) { } | |
208 | |
209 int usec (void) const { return tm_usec; } | |
210 int sec (void) const { return tm_sec; } | |
211 int min (void) const { return tm_min; } | |
212 int hour (void) const { return tm_hour; } | |
213 int mday (void) const { return tm_mday; } | |
214 int mon (void) const { return tm_mon; } | |
215 int year (void) const { return tm_year; } | |
216 int wday (void) const { return tm_wday; } | |
217 int yday (void) const { return tm_yday; } | |
218 int isdst (void) const { return tm_isdst; } | |
3504 | 219 std::string zone (void) const { return tm_zone; } |
3253 | 220 |
221 octave_base_tm& usec (int v); | |
222 octave_base_tm& sec (int v); | |
223 octave_base_tm& min (int v); | |
224 octave_base_tm& hour (int v); | |
225 octave_base_tm& mday (int v); | |
226 octave_base_tm& mon (int v); | |
227 octave_base_tm& year (int v); | |
228 octave_base_tm& wday (int v); | |
229 octave_base_tm& yday (int v); | |
230 octave_base_tm& isdst (int v); | |
3504 | 231 octave_base_tm& zone (const std::string& s); |
3253 | 232 |
3504 | 233 std::string strftime (const std::string& fmt) const; |
3255 | 234 |
3504 | 235 std::string asctime (void) const |
236 { return strftime ("%a %b %d %H:%M:%S %Y\n"); } | |
3253 | 237 |
238 protected: | |
239 | |
240 // Microseconds after the second (0, 999999). | |
241 int tm_usec; | |
242 | |
243 // Seconds after the minute (0, 61). | |
244 int tm_sec; | |
245 | |
246 // Minutes after the hour (0, 59). | |
247 int tm_min; | |
248 | |
249 // Hours since midnight (0, 23). | |
250 int tm_hour; | |
251 | |
252 // Day of the month (1, 31). | |
253 int tm_mday; | |
254 | |
255 // Months since January (0, 11). | |
256 int tm_mon; | |
257 | |
258 // Years since 1900. | |
259 int tm_year; | |
260 | |
261 // Days since Sunday (0, 6). | |
262 int tm_wday; | |
263 | |
264 // Days since January 1 (0, 365). | |
265 int tm_yday; | |
266 | |
267 // Daylight Savings Time flag. | |
268 int tm_isdst; | |
269 | |
270 // Time zone. | |
3504 | 271 std::string tm_zone; |
3253 | 272 |
273 void init (void *p); | |
274 }; | |
275 | |
276 class | |
6108 | 277 OCTAVE_API |
3253 | 278 octave_localtime : public octave_base_tm |
279 { | |
280 public: | |
281 | |
282 octave_localtime (void) | |
283 : octave_base_tm () { init (octave_time ()); } | |
284 | |
285 octave_localtime (const octave_time& ot) | |
286 : octave_base_tm () { init (ot); } | |
287 | |
288 octave_localtime (const octave_localtime& t) | |
289 : octave_base_tm (t) { } | |
290 | |
291 octave_localtime& operator = (const octave_localtime& t) | |
292 { | |
293 octave_base_tm::operator = (t); | |
294 return *this; | |
295 } | |
296 | |
297 ~octave_localtime (void) { } | |
298 | |
299 private: | |
300 | |
301 void init (const octave_time& ot); | |
302 }; | |
303 | |
304 class | |
6108 | 305 OCTAVE_API |
3253 | 306 octave_gmtime : public octave_base_tm |
307 { | |
308 public: | |
309 | |
310 octave_gmtime (void) | |
311 : octave_base_tm () { init (octave_time ()); } | |
312 | |
313 octave_gmtime (const octave_time& ot) | |
314 : octave_base_tm () { init (ot); } | |
315 | |
316 octave_gmtime& operator = (const octave_gmtime& t) | |
317 { | |
318 octave_base_tm::operator = (t); | |
319 return *this; | |
320 } | |
321 | |
322 ~octave_gmtime (void) { } | |
323 | |
324 private: | |
325 | |
326 void init (const octave_time& ot); | |
327 }; | |
328 | |
3465 | 329 class |
6108 | 330 OCTAVE_API |
3465 | 331 octave_strptime : public octave_base_tm |
332 { | |
333 public: | |
334 | |
3504 | 335 octave_strptime (const std::string& str, const std::string& fmt) |
11501
331fcc41ca23
data member initialization fixes
John W. Eaton <jwe@octave.org>
parents:
10458
diff
changeset
|
336 : octave_base_tm (), nchars (0) |
331fcc41ca23
data member initialization fixes
John W. Eaton <jwe@octave.org>
parents:
10458
diff
changeset
|
337 { |
331fcc41ca23
data member initialization fixes
John W. Eaton <jwe@octave.org>
parents:
10458
diff
changeset
|
338 init (str, fmt); |
331fcc41ca23
data member initialization fixes
John W. Eaton <jwe@octave.org>
parents:
10458
diff
changeset
|
339 } |
3465 | 340 |
341 octave_strptime (const octave_strptime& s) | |
11501
331fcc41ca23
data member initialization fixes
John W. Eaton <jwe@octave.org>
parents:
10458
diff
changeset
|
342 : octave_base_tm (s), nchars (s.nchars) { } |
3465 | 343 |
344 octave_strptime& operator = (const octave_strptime& s) | |
345 { | |
346 octave_base_tm::operator = (s); | |
347 nchars = s.nchars; | |
348 return *this; | |
349 } | |
350 | |
351 int characters_converted (void) const { return nchars; } | |
352 | |
353 ~octave_strptime (void) { } | |
354 | |
355 private: | |
356 | |
357 int nchars; | |
358 | |
3504 | 359 void init (const std::string& str, const std::string& fmt); |
3465 | 360 }; |
361 | |
3253 | 362 #endif |