Merge branch 'master' of git+ssh://gnunet.org/gnunet
[oweals/gnunet.git] / src / include / gnunet_time_lib.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2001-2013 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      Affero General Public License for more details.
14     
15      You should have received a copy of the GNU Affero General Public License
16      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 /**
20  * @author Christian Grothoff
21  *
22  * @file
23  * Functions related to time
24  *
25  * @defgroup time  Time library
26  * Time and time calculations.
27  * @{
28  */
29
30 #ifndef GNUNET_TIME_LIB_H
31 #define GNUNET_TIME_LIB_H
32
33 #ifdef __cplusplus
34 extern "C"
35 {
36 #if 0                           /* keep Emacsens' auto-indent happy */
37 }
38 #endif
39 #endif
40
41 #include "gnunet_common.h"
42
43 /**
44  * Time for absolute times used by GNUnet, in microseconds.
45  */
46 struct GNUNET_TIME_Absolute
47 {
48   /**
49    * The actual value.
50    */
51   uint64_t abs_value_us;
52 };
53
54 /**
55  * Time for relative time used by GNUnet, in microseconds.
56  * Always positive, so we can only refer to future time.
57  */
58 struct GNUNET_TIME_Relative
59 {
60   /**
61    * The actual value.
62    */
63   uint64_t rel_value_us;
64 };
65
66 GNUNET_NETWORK_STRUCT_BEGIN
67
68 /**
69  * Time for relative time used by GNUnet, in microseconds and in network byte order.
70  */
71 struct GNUNET_TIME_RelativeNBO
72 {
73   /**
74    * The actual value (in network byte order).
75    */
76   uint64_t rel_value_us__ GNUNET_PACKED;
77 };
78
79
80 /**
81  * Time for absolute time used by GNUnet, in microseconds and in network byte order.
82  */
83 struct GNUNET_TIME_AbsoluteNBO
84 {
85   /**
86    * The actual value (in network byte order).
87    */
88   uint64_t abs_value_us__ GNUNET_PACKED;
89 };
90 GNUNET_NETWORK_STRUCT_END
91
92 /**
93  * Relative time zero.
94  */
95 #define GNUNET_TIME_UNIT_ZERO     GNUNET_TIME_relative_get_zero_()
96
97 /**
98  * Absolute time zero.
99  */
100 #define GNUNET_TIME_UNIT_ZERO_ABS GNUNET_TIME_absolute_get_zero_()
101
102 /**
103  * One microsecond, our basic time unit.
104  */
105 #define GNUNET_TIME_UNIT_MICROSECONDS GNUNET_TIME_relative_get_unit_()
106
107 /**
108  * One millisecond.
109  */
110 #define GNUNET_TIME_UNIT_MILLISECONDS GNUNET_TIME_relative_get_millisecond_()
111
112 /**
113  * One second.
114  */
115 #define GNUNET_TIME_UNIT_SECONDS GNUNET_TIME_relative_get_second_()
116
117 /**
118  * One minute.
119  */
120 #define GNUNET_TIME_UNIT_MINUTES GNUNET_TIME_relative_get_minute_()
121
122 /**
123  * One hour.
124  */
125 #define GNUNET_TIME_UNIT_HOURS   GNUNET_TIME_relative_get_hour_()
126
127 /**
128  * One day.
129  */
130 #define GNUNET_TIME_UNIT_DAYS    GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_HOURS,   24)
131
132 /**
133  * One week.
134  */
135 #define GNUNET_TIME_UNIT_WEEKS   GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_DAYS,     7)
136
137 /**
138  * One month (30 days).
139  */
140 #define GNUNET_TIME_UNIT_MONTHS  GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_DAYS,    30)
141
142 /**
143  * One year (365 days).
144  */
145 #define GNUNET_TIME_UNIT_YEARS   GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_DAYS,   365)
146
147 /**
148  * Constant used to specify "forever".  This constant
149  * will be treated specially in all time operations.
150  */
151 #define GNUNET_TIME_UNIT_FOREVER_REL GNUNET_TIME_relative_get_forever_ ()
152
153 /**
154  * Constant used to specify "forever".  This constant
155  * will be treated specially in all time operations.
156  */
157 #define GNUNET_TIME_UNIT_FOREVER_ABS GNUNET_TIME_absolute_get_forever_ ()
158
159
160
161 /**
162  * Threshold after which exponential backoff should not increase (15 m).
163  */
164 #define GNUNET_TIME_STD_EXPONENTIAL_BACKOFF_THRESHOLD GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
165
166
167 /**
168  * Perform our standard exponential back-off calculation, starting at 1 ms
169  * and then going by a factor of 2 up unto a maximum of 15 m.
170  *
171  * @param r current backoff time, initially zero
172  */
173 #define GNUNET_TIME_STD_BACKOFF(r) GNUNET_TIME_relative_min (GNUNET_TIME_STD_EXPONENTIAL_BACKOFF_THRESHOLD, \
174    GNUNET_TIME_relative_multiply (GNUNET_TIME_relative_max (GNUNET_TIME_UNIT_MILLISECONDS, (r)), 2));
175
176
177 /**
178  * Randomized exponential back-off, starting at 1 ms
179  * and going up by a factor of 2+r, where 0 <= r <= 0.5, up
180  * to a maximum of the given threshold.
181  *
182  * @param rt current backoff time, initially zero
183  * @param threshold maximum value for backoff
184  * @return the next backoff time
185  */
186 struct GNUNET_TIME_Relative
187 GNUNET_TIME_randomized_backoff(struct GNUNET_TIME_Relative rt, struct GNUNET_TIME_Relative threshold);
188
189
190 /**
191  * Return relative time of 0ms.
192  */
193 struct GNUNET_TIME_Relative
194 GNUNET_TIME_relative_get_zero_ (void);
195
196
197 /**
198  * Return absolute time of 0ms.
199  */
200 struct GNUNET_TIME_Absolute
201 GNUNET_TIME_absolute_get_zero_ (void);
202
203
204 /**
205  * Return relative time of 1 microsecond.
206  */
207 struct GNUNET_TIME_Relative
208 GNUNET_TIME_relative_get_unit_ (void);
209
210
211 /**
212  * Return relative time of 1ms.
213  */
214 struct GNUNET_TIME_Relative
215 GNUNET_TIME_relative_get_millisecond_ (void);
216
217
218 /**
219  * Return relative time of 1s.
220  */
221 struct GNUNET_TIME_Relative
222 GNUNET_TIME_relative_get_second_ (void);
223
224
225 /**
226  * Return relative time of 1 minute.
227  */
228 struct GNUNET_TIME_Relative
229 GNUNET_TIME_relative_get_minute_ (void);
230
231
232 /**
233  * Return relative time of 1 hour.
234  */
235 struct GNUNET_TIME_Relative
236 GNUNET_TIME_relative_get_hour_ (void);
237
238
239 /**
240  * Return "forever".
241  */
242 struct GNUNET_TIME_Relative
243 GNUNET_TIME_relative_get_forever_ (void);
244
245
246 /**
247  * Return "forever".
248  */
249 struct GNUNET_TIME_Absolute
250 GNUNET_TIME_absolute_get_forever_ (void);
251
252
253 /**
254  * Get the current time.
255  *
256  * @return the current time
257  */
258 struct GNUNET_TIME_Absolute
259 GNUNET_TIME_absolute_get (void);
260
261
262 /**
263  * Convert relative time to an absolute time in the
264  * future.
265  *
266  * @param rel relative time to convert
267  * @return timestamp that is "rel" in the future, or FOREVER if rel==FOREVER (or if we would overflow)
268  */
269 struct GNUNET_TIME_Absolute
270 GNUNET_TIME_relative_to_absolute (struct GNUNET_TIME_Relative rel);
271
272
273 /**
274  * Round a time value so that it is suitable for transmission
275  * via JSON encodings.
276  *
277  * @param at time to round
278  * @return #GNUNET_OK if time was already rounded, #GNUNET_NO if
279  *         it was just now rounded
280  */
281 int
282 GNUNET_TIME_round_abs (struct GNUNET_TIME_Absolute *at);
283
284
285 /**
286  * Round a time value so that it is suitable for transmission
287  * via JSON encodings.
288  *
289  * @param rt time to round
290  * @return #GNUNET_OK if time was already rounded, #GNUNET_NO if
291  *         it was just now rounded
292  */
293 int
294 GNUNET_TIME_round_rel (struct GNUNET_TIME_Relative *rt);
295
296
297 /**
298  * Return the minimum of two relative time values.
299  *
300  * @param t1 first timestamp
301  * @param t2 other timestamp
302  * @return timestamp that is smaller
303  */
304 struct GNUNET_TIME_Relative
305 GNUNET_TIME_relative_min (struct GNUNET_TIME_Relative t1,
306                           struct GNUNET_TIME_Relative t2);
307
308
309
310 /**
311  * Return the maximum of two relative time values.
312  *
313  * @param t1 first timestamp
314  * @param t2 other timestamp
315  * @return timestamp that is larger
316  */
317 struct GNUNET_TIME_Relative
318 GNUNET_TIME_relative_max (struct GNUNET_TIME_Relative t1,
319                           struct GNUNET_TIME_Relative t2);
320
321
322 /**
323  * Return the minimum of two absolute time values.
324  *
325  * @param t1 first timestamp
326  * @param t2 other timestamp
327  * @return timestamp that is smaller
328  */
329 struct GNUNET_TIME_Absolute
330 GNUNET_TIME_absolute_min (struct GNUNET_TIME_Absolute t1,
331                           struct GNUNET_TIME_Absolute t2);
332
333
334 /**
335  * Return the maximum of two absolute time values.
336  *
337  * @param t1 first timestamp
338  * @param t2 other timestamp
339  * @return timestamp that is smaller
340  */
341 struct GNUNET_TIME_Absolute
342 GNUNET_TIME_absolute_max (struct GNUNET_TIME_Absolute t1,
343                           struct GNUNET_TIME_Absolute t2);
344
345
346 /**
347  * Given a timestamp in the future, how much time
348  * remains until then?
349  *
350  * @param future some absolute time, typically in the future
351  * @return future - now, or 0 if now >= future, or FOREVER if future==FOREVER.
352  */
353 struct GNUNET_TIME_Relative
354 GNUNET_TIME_absolute_get_remaining (struct GNUNET_TIME_Absolute future);
355
356
357 /**
358  * Calculate the estimate time of arrival/completion
359  * for an operation.
360  *
361  * @param start when did the operation start?
362  * @param finished how much has been done?
363  * @param total how much must be done overall (same unit as for "finished")
364  * @return remaining duration for the operation,
365  *        assuming it continues at the same speed
366  */
367 struct GNUNET_TIME_Relative
368 GNUNET_TIME_calculate_eta (struct GNUNET_TIME_Absolute start, uint64_t finished,
369                            uint64_t total);
370
371
372 /**
373  * Compute the time difference between the given start and end times.
374  * Use this function instead of actual subtraction to ensure that
375  * "FOREVER" and overflows are handeled correctly.
376  *
377  * @param start some absolute time
378  * @param end some absolute time (typically larger or equal to start)
379  * @return 0 if start >= end; FOREVER if end==FOREVER; otherwise end - start
380  */
381 struct GNUNET_TIME_Relative
382 GNUNET_TIME_absolute_get_difference (struct GNUNET_TIME_Absolute start,
383                                      struct GNUNET_TIME_Absolute end);
384
385
386 /**
387  * Get the duration of an operation as the
388  * difference of the current time and the given start time "hence".
389  *
390  * @param whence some absolute time, typically in the past
391  * @return 0 if hence > now, otherwise now-hence.
392  */
393 struct GNUNET_TIME_Relative
394 GNUNET_TIME_absolute_get_duration (struct GNUNET_TIME_Absolute whence);
395
396
397 /**
398  * Add a given relative duration to the
399  * given start time.
400  *
401  * @param start some absolute time
402  * @param duration some relative time to add
403  * @return FOREVER if either argument is FOREVER or on overflow; start+duration otherwise
404  */
405 struct GNUNET_TIME_Absolute
406 GNUNET_TIME_absolute_add (struct GNUNET_TIME_Absolute start,
407                           struct GNUNET_TIME_Relative duration);
408
409
410 /**
411  * Subtract a given relative duration from the
412  * given start time.
413  *
414  * @param start some absolute time
415  * @param duration some relative time to subtract
416  * @return ZERO if start <= duration, or FOREVER if start time is FOREVER; start-duration otherwise
417  */
418 struct GNUNET_TIME_Absolute
419 GNUNET_TIME_absolute_subtract (struct GNUNET_TIME_Absolute start,
420                                struct GNUNET_TIME_Relative duration);
421
422
423 /**
424  * Multiply relative time by a given factor.
425  *
426  * @param rel some duration
427  * @param factor integer to multiply with
428  * @return FOREVER if rel=FOREVER or on overflow; otherwise rel*factor
429  */
430 struct GNUNET_TIME_Relative
431 GNUNET_TIME_relative_multiply (struct GNUNET_TIME_Relative rel,
432                                unsigned long long factor);
433
434
435 /**
436  * Saturating multiply relative time by a given factor.
437  *
438  * @param rel some duration
439  * @param factor integer to multiply with
440  * @return FOREVER if rel=FOREVER or on overflow; otherwise rel*factor
441  */
442 struct GNUNET_TIME_Relative
443 GNUNET_TIME_relative_saturating_multiply (struct GNUNET_TIME_Relative rel,
444                                           unsigned long long factor);
445
446
447 /**
448  * Divide relative time by a given factor.
449  *
450  * @param rel some duration
451  * @param factor integer to divide by
452  * @return FOREVER if rel=FOREVER or factor==0; otherwise rel/factor
453  */
454 struct GNUNET_TIME_Relative
455 GNUNET_TIME_relative_divide (struct GNUNET_TIME_Relative rel,
456                              unsigned long long factor);
457
458
459 /**
460  * Add relative times together.
461  *
462  * @param a1 some relative time
463  * @param a2 some other relative time
464  * @return FOREVER if either argument is FOREVER or on overflow; a1+a2 otherwise
465  */
466 struct GNUNET_TIME_Relative
467 GNUNET_TIME_relative_add (struct GNUNET_TIME_Relative a1,
468                           struct GNUNET_TIME_Relative a2);
469
470
471 /**
472  * Subtract relative timestamp from the other.
473  *
474  * @param a1 first timestamp
475  * @param a2 second timestamp
476  * @return ZERO if a2>=a1 (including both FOREVER), FOREVER if a1 is FOREVER, a1-a2 otherwise
477  */
478 struct GNUNET_TIME_Relative
479 GNUNET_TIME_relative_subtract (struct GNUNET_TIME_Relative a1,
480                                struct GNUNET_TIME_Relative a2);
481
482
483 /**
484  * Convert relative time to network byte order.
485  *
486  * @param a time to convert
487  * @return converted time value
488  */
489 struct GNUNET_TIME_RelativeNBO
490 GNUNET_TIME_relative_hton (struct GNUNET_TIME_Relative a);
491
492
493 /**
494  * Convert relative time from network byte order.
495  *
496  * @param a time to convert
497  * @return converted time value
498  */
499 struct GNUNET_TIME_Relative
500 GNUNET_TIME_relative_ntoh (struct GNUNET_TIME_RelativeNBO a);
501
502
503 /**
504  * Convert absolute time to network byte order.
505  *
506  * @param a time to convert
507  * @return converted time value
508  */
509 struct GNUNET_TIME_AbsoluteNBO
510 GNUNET_TIME_absolute_hton (struct GNUNET_TIME_Absolute a);
511
512
513 /**
514  * Convert absolute time from network byte order.
515  *
516  * @param a time to convert
517  * @return converted time value
518  */
519 struct GNUNET_TIME_Absolute
520 GNUNET_TIME_absolute_ntoh (struct GNUNET_TIME_AbsoluteNBO a);
521
522
523 /**
524  * Set the timestamp offset for this instance.
525  *
526  * @param offset the offset to skew the locale time by
527  */
528 void
529 GNUNET_TIME_set_offset (long long offset);
530
531
532 /**
533  * Get the timestamp offset for this instance.
534  *
535  * @return the offset we currently skew the locale time by
536  */
537 long long
538 GNUNET_TIME_get_offset (void);
539
540
541 /**
542  * Return the current year (i.e. '2011').
543  */
544 unsigned int
545 GNUNET_TIME_get_current_year (void);
546
547
548 /**
549  * Convert a year to an expiration time of January 1st of that year.
550  *
551  * @param year a year (after 1970, please ;-)).
552  * @return absolute time for January 1st of that year.
553  */
554 struct GNUNET_TIME_Absolute
555 GNUNET_TIME_year_to_time (unsigned int year);
556
557
558 /**
559  * Convert an expiration time to the respective year (rounds)
560  *
561  * @param at absolute time
562  * @return year a year (after 1970), 0 on error
563  */
564 unsigned int
565 GNUNET_TIME_time_to_year (struct GNUNET_TIME_Absolute at);
566
567
568 #if 0                           /* keep Emacsens' auto-indent happy */
569 {
570 #endif
571 #ifdef __cplusplus
572 }
573 #endif
574
575 /* ifndef GNUNET_TIME_LIB_H */
576 #endif
577
578 /** @} */ /* end of group time */
579
580 /* end of gnunet_time_lib.h */