fixing types
[oweals/gnunet.git] / src / include / gnunet_time_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file include/gnunet_time_lib.h
23  * @brief functions related to time
24  *
25  * @author Christian Grothoff
26  */
27
28 #ifndef GNUNET_TIME_LIB_H
29 #define GNUNET_TIME_LIB_H
30
31 #ifdef __cplusplus
32 extern "C"
33 {
34 #if 0                           /* keep Emacsens' auto-indent happy */
35 }
36 #endif
37 #endif
38
39 #include "gnunet_common.h"
40
41 /**
42  * Time for absolute times used by GNUnet, in milliseconds.
43  */
44 struct GNUNET_TIME_Absolute
45 {
46   /**
47    * The actual value.
48    */
49   uint64_t value;
50 };
51
52 /**
53  * Time for relative time used by GNUnet, in milliseconds.
54  * Always positive, so we can only refer to future time.
55  */
56 struct GNUNET_TIME_Relative
57 {
58   /**
59    * The actual value.
60    */
61   uint64_t value;
62 };
63
64
65 /**
66  * Time for relative time used by GNUnet, in milliseconds and in network byte order.
67  */
68 struct GNUNET_TIME_RelativeNBO
69 {
70   /**
71    * The actual value (in network byte order).
72    */
73   uint64_t value__ GNUNET_PACKED;
74 };
75
76
77 /**
78  * Time for absolute time used by GNUnet, in milliseconds and in network byte order.
79  */
80 struct GNUNET_TIME_AbsoluteNBO
81 {
82   /**
83    * The actual value (in network byte order).
84    */
85   uint64_t value__ GNUNET_PACKED;
86 };
87
88
89 /**
90  * Relative time zero.
91  */
92 #define GNUNET_TIME_UNIT_ZERO     GNUNET_TIME_relative_get_zero()
93
94 /**
95  * Absolute time zero.
96  */
97 #define GNUNET_TIME_UNIT_ZERO_ABS GNUNET_TIME_absolute_get_zero()
98
99 /**
100  * One millisecond, our basic time unit.
101  */
102 #define GNUNET_TIME_UNIT_MILLISECONDS GNUNET_TIME_relative_get_unit()
103
104 /**
105  * One second.
106  */
107 #define GNUNET_TIME_UNIT_SECONDS GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 1000)
108
109 /**
110  * One minute.
111  */
112 #define GNUNET_TIME_UNIT_MINUTES GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 60)
113
114 /**
115  * One hour.
116  */
117 #define GNUNET_TIME_UNIT_HOURS   GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 60)
118
119 /**
120  * One day.
121  */
122 #define GNUNET_TIME_UNIT_DAYS    GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_HOURS,   24)
123
124 /**
125  * One week.
126  */
127 #define GNUNET_TIME_UNIT_WEEKS   GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_DAYS,     7)
128
129 /**
130  * One month (30 days).
131  */
132 #define GNUNET_TIME_UNIT_MONTHS  GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_DAYS,    30)
133
134 /**
135  * One year (365 days).
136  */
137 #define GNUNET_TIME_UNIT_YEARS   GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_DAYS,   365)
138
139 /**
140  * Constant used to specify "forever".  This constant
141  * will be treated specially in all time operations.
142  */
143 #define GNUNET_TIME_UNIT_FOREVER_REL GNUNET_TIME_relative_get_forever ()
144
145 /**
146  * Constant used to specify "forever".  This constant
147  * will be treated specially in all time operations.
148  */
149 #define GNUNET_TIME_UNIT_FOREVER_ABS GNUNET_TIME_absolute_get_forever ()
150
151 /**
152  * Return relative time of 0ms.
153  */
154 struct GNUNET_TIME_Relative GNUNET_TIME_relative_get_zero (void);
155
156 /**
157  * Return absolute time of 0ms.
158  */
159 struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_get_zero (void);
160
161 /**
162  * Return relative time of 1ms.
163  */
164 struct GNUNET_TIME_Relative GNUNET_TIME_relative_get_unit (void);
165
166 /**
167  * Return "forever".
168  */
169 struct GNUNET_TIME_Relative GNUNET_TIME_relative_get_forever (void);
170
171 /**
172  * Return "forever".
173  */
174 struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_get_forever (void);
175
176 /**
177  * Get the current time.
178  *
179  * @return the current time
180  */
181 struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_get (void);
182
183 /**
184  * Convert relative time to an absolute time in the
185  * future.
186  *
187  * @param rel relative time to convert
188  * @return timestamp that is "rel" in the future, or FOREVER if rel==FOREVER (or if we would overflow)
189  */
190 struct GNUNET_TIME_Absolute GNUNET_TIME_relative_to_absolute (struct
191                                                               GNUNET_TIME_Relative
192                                                               rel);
193
194 /**
195  * Return the minimum of two relative time values.
196  *
197  * @param t1 first timestamp
198  * @param t2 other timestamp
199  * @return timestamp that is smaller
200  */
201 struct GNUNET_TIME_Relative GNUNET_TIME_relative_min (struct
202                                                       GNUNET_TIME_Relative
203                                                       t1,
204                                                       struct
205                                                       GNUNET_TIME_Relative t2);
206
207 /**
208  * Given a timestamp in the future, how much time
209  * remains until then?
210  *
211  * @param future some absolute time, typically in the future
212  * @return future - now, or 0 if now >= future, or FOREVER if future==FOREVER.
213  */
214 struct GNUNET_TIME_Relative GNUNET_TIME_absolute_get_remaining (struct
215                                                                 GNUNET_TIME_Absolute
216                                                                 future);
217
218
219 /**
220  * Calculate the estimate time of arrival/completion 
221  * for an operation.
222  *
223  * @param start when did the operation start?
224  * @param finished how much has been done?
225  * @param total how much must be done overall (same unit as for "finished")
226  * @return remaining duration for the operation,
227  *        assuming it continues at the same speed
228  */
229 struct GNUNET_TIME_Relative GNUNET_TIME_calculate_eta (struct GNUNET_TIME_Absolute start,
230                                                        uint64_t finished,
231                                                        uint64_t total);
232
233
234 /**
235  * Compute the time difference between the given start and end times.
236  * Use this function instead of actual subtraction to ensure that
237  * "FOREVER" and overflows are handeled correctly.
238  *
239  * @param start some absolute time
240  * @param end some absolute time (typically larger or equal to start)
241  * @return 0 if start >= end; FOREVER if end==FOREVER; otherwise end - start
242  */
243 struct GNUNET_TIME_Relative GNUNET_TIME_absolute_get_difference (struct
244                                                                  GNUNET_TIME_Absolute
245                                                                  start,
246                                                                  struct
247                                                                  GNUNET_TIME_Absolute
248                                                                  end);
249
250 /**
251  * Get the duration of an operation as the
252  * difference of the current time and the given start time "hence".
253  *
254  * @param hence some absolute time, typically in the past
255  * @return aborts if hence==FOREVER, 0 if hence > now, otherwise now-hence.
256  */
257 struct GNUNET_TIME_Relative GNUNET_TIME_absolute_get_duration (struct
258                                                                GNUNET_TIME_Absolute
259                                                                hence);
260
261
262 /**
263  * Add a given relative duration to the
264  * given start time.
265  *
266  * @param start some absolute time
267  * @param duration some relative time to add
268  * @return FOREVER if either argument is FOREVER or on overflow; start+duration otherwise
269  */
270 struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_add (struct
271                                                       GNUNET_TIME_Absolute
272                                                       start,
273                                                       struct
274                                                       GNUNET_TIME_Relative
275                                                       duration);
276
277 /**
278  * Multiply relative time by a given factor.
279  *
280  * @param rel some duration
281  * @param factor integer to multiply with
282  * @return FOREVER if rel=FOREVER or on overflow; otherwise rel*factor
283  */
284 struct GNUNET_TIME_Relative GNUNET_TIME_relative_multiply (struct
285                                                            GNUNET_TIME_Relative
286                                                            rel,
287                                                            unsigned int
288                                                            factor);
289
290 /**
291  * Add relative times together.
292  *
293  * @param a1 some relative time
294  * @param a2 some other relative time
295  * @return FOREVER if either argument is FOREVER or on overflow; a1+a2 otherwise
296  */
297 struct GNUNET_TIME_Relative GNUNET_TIME_relative_add (struct
298                                                       GNUNET_TIME_Relative a1,
299                                                       struct
300                                                       GNUNET_TIME_Relative
301                                                       a2);
302
303
304 /**
305  * Convert relative time to network byte order.
306  * 
307  * @param a time to convert
308  * @return converted time value
309  */
310 struct GNUNET_TIME_RelativeNBO GNUNET_TIME_relative_hton (struct
311                                                           GNUNET_TIME_Relative
312                                                           a);
313
314 /**
315  * Convert relative time from network byte order.
316  *
317  * @param a time to convert
318  * @return converted time value
319  */
320 struct GNUNET_TIME_Relative GNUNET_TIME_relative_ntoh (struct
321                                                        GNUNET_TIME_RelativeNBO
322                                                        a);
323
324 /**
325  * Convert relative time to network byte order.
326  *
327  * @param a time to convert
328  * @return converted time value
329  */
330 struct GNUNET_TIME_AbsoluteNBO GNUNET_TIME_absolute_hton (struct
331                                                           GNUNET_TIME_Absolute
332                                                           a);
333
334 /**
335  * Convert relative time from network byte order.
336  *
337  * @param a time to convert
338  * @return converted time value
339  */
340 struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_ntoh (struct
341                                                        GNUNET_TIME_AbsoluteNBO
342                                                        a);
343
344 #if 0                           /* keep Emacsens' auto-indent happy */
345 {
346 #endif
347 #ifdef __cplusplus
348 }
349 #endif
350
351 /* ifndef GNUNET_TIME_LIB_H */
352 #endif
353 /* end of gnunet_time_lib.h */