4 * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 1998-2001 Internet Software Consortium.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
20 /* Id: time.h,v 1.38.56.2 2009/01/05 23:47:23 tbox Exp */
28 #include <isc/types.h>
36 * The contents of this structure are private, and MUST NOT be accessed
37 * directly by callers.
39 * The contents are exposed only to allow callers to avoid dynamic allocation.
43 unsigned int nanoseconds
;
46 extern isc_interval_t
*isc_interval_zero
;
51 isc_interval_set(isc_interval_t
*i
,
52 unsigned int seconds
, unsigned int nanoseconds
);
54 * Set 'i' to a value representing an interval of 'seconds' seconds and
55 * 'nanoseconds' nanoseconds, suitable for use in isc_time_add() and
56 * isc_time_subtract().
60 *\li 't' is a valid pointer.
61 *\li nanoseconds < 1000000000.
65 isc_interval_iszero(const isc_interval_t
*i
);
67 * Returns ISC_TRUE iff. 'i' is the zero interval.
71 *\li 'i' is a valid pointer.
79 * The contents of this structure are private, and MUST NOT be accessed
80 * directly by callers.
82 * The contents are exposed only to allow callers to avoid dynamic allocation.
87 unsigned int nanoseconds
;
90 extern isc_time_t
*isc_time_epoch
;
93 isc_time_set(isc_time_t
*t
, unsigned int seconds
, unsigned int nanoseconds
);
95 * Set 't' to a value which represents the given number of seconds and
96 * nanoseconds since 00:00:00 January 1, 1970, UTC.
99 *\li The Unix version of this call is equivalent to:
101 * isc_time_settoepoch(t);
102 * isc_interval_set(i, seconds, nanoseconds);
103 * isc_time_add(t, i, t);
107 *\li 't' is a valid pointer.
108 *\li nanoseconds < 1000000000.
112 isc_time_settoepoch(isc_time_t
*t
);
114 * Set 't' to the time of the epoch.
117 *\li The date of the epoch is platform-dependent.
121 *\li 't' is a valid pointer.
125 isc_time_isepoch(const isc_time_t
*t
);
127 * Returns ISC_TRUE iff. 't' is the epoch ("time zero").
131 *\li 't' is a valid pointer.
135 isc_time_now(isc_time_t
*t
);
137 * Set 't' to the current absolute time.
141 *\li 't' is a valid pointer.
146 *\li Unexpected error
147 * Getting the time from the system failed.
149 * The time from the system is too large to be represented
150 * in the current definition of isc_time_t.
154 isc_time_nowplusinterval(isc_time_t
*t
, const isc_interval_t
*i
);
156 * Set *t to the current absolute time + i.
159 *\li This call is equivalent to:
163 * isc_time_add(t, i, t);
168 *\li 't' and 'i' are valid pointers.
173 *\li Unexpected error
174 * Getting the time from the system failed.
176 * The interval added to the time from the system is too large to
177 * be represented in the current definition of isc_time_t.
181 isc_time_compare(const isc_time_t
*t1
, const isc_time_t
*t2
);
183 * Compare the times referenced by 't1' and 't2'
187 *\li 't1' and 't2' are valid pointers.
191 *\li -1 t1 < t2 (comparing times, not pointers)
197 isc_time_add(const isc_time_t
*t
, const isc_interval_t
*i
, isc_time_t
*result
);
199 * Add 'i' to 't', storing the result in 'result'.
203 *\li 't', 'i', and 'result' are valid pointers.
208 * The interval added to the time is too large to
209 * be represented in the current definition of isc_time_t.
213 isc_time_subtract(const isc_time_t
*t
, const isc_interval_t
*i
,
216 * Subtract 'i' from 't', storing the result in 'result'.
220 *\li 't', 'i', and 'result' are valid pointers.
225 * The interval is larger than the time since the epoch.
229 isc_time_microdiff(const isc_time_t
*t1
, const isc_time_t
*t2
);
231 * Find the difference in microseconds between time t1 and time t2.
232 * t2 is the subtrahend of t1; ie, difference = t1 - t2.
236 *\li 't1' and 't2' are valid pointers.
239 *\li The difference of t1 - t2, or 0 if t1 <= t2.
243 isc_time_seconds(const isc_time_t
*t
);
245 * Return the number of seconds since the epoch stored in a time structure.
249 *\li 't' is a valid pointer.
253 isc_time_secondsastimet(const isc_time_t
*t
, time_t *secondsp
);
255 * Ensure the number of seconds in an isc_time_t is representable by a time_t.
258 *\li The number of seconds stored in an isc_time_t might be larger
259 * than the number of seconds a time_t is able to handle. Since
260 * time_t is mostly opaque according to the ANSI/ISO standard
261 * (essentially, all you can be sure of is that it is an arithmetic type,
262 * not even necessarily integral), it can be tricky to ensure that
263 * the isc_time_t is in the range a time_t can handle. Use this
264 * function in place of isc_time_seconds() any time you need to set a
265 * time_t from an isc_time_t.
268 *\li 't' is a valid pointer.
276 isc_time_nanoseconds(const isc_time_t
*t
);
278 * Return the number of nanoseconds stored in a time structure.
281 *\li This is the number of nanoseconds in excess of the number
282 * of seconds since the epoch; it will always be less than one
286 *\li 't' is a valid pointer.
289 *\li The returned value is less than 1*10^9.
293 isc_time_formattimestamp(const isc_time_t
*t
, char *buf
, unsigned int len
);
295 * Format the time 't' into the buffer 'buf' of length 'len',
296 * using a format like "30-Aug-2000 04:06:47.997" and the local time zone.
297 * If the text does not fit in the buffer, the result is indeterminate,
298 * but is always guaranteed to be null terminated.
302 *\li 'buf' points to an array of at least len chars
307 isc_time_formathttptimestamp(const isc_time_t
*t
, char *buf
, unsigned int len
);
309 * Format the time 't' into the buffer 'buf' of length 'len',
310 * using a format like "Mon, 30 Aug 2000 04:06:47 GMT"
311 * If the text does not fit in the buffer, the result is indeterminate,
312 * but is always guaranteed to be null terminated.
316 *\li 'buf' points to an array of at least len chars
321 isc_time_formatISO8601(const isc_time_t
*t
, char *buf
, unsigned int len
);
323 * Format the time 't' into the buffer 'buf' of length 'len',
324 * using the ISO8601 format: "yyyy-mm-ddThh:mm:ssZ"
325 * If the text does not fit in the buffer, the result is indeterminate,
326 * but is always guaranteed to be null terminated.
330 *\li 'buf' points to an array of at least len chars
336 #endif /* ISC_TIME_H */