1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
32 #include "glibconfig.h"
38 #endif /* HAVE_UNISTD_H */
44 #endif /* G_OS_WIN32 */
48 #endif /* G_OS_WIN32 */
57 * @short_description: keep track of elapsed time
59 * #GTimer records a start time, and counts microseconds elapsed since
60 * that time. This is done somewhat differently on different platforms,
61 * and can be tricky to get exactly right, so #GTimer provides a
62 * portable/convenient interface.
65 * #GTimer uses a higher-quality clock when thread support is available.
66 * Therefore, calling g_thread_init() while timers are running may lead to
67 * unreliable results. It is best to call g_thread_init() before starting any
68 * timers, if you are using threads at all.
72 #define G_NSEC_PER_SEC 1000000000
74 #define GETTIME(v) (v = g_thread_gettime ())
79 * Opaque datatype that records a start time.
91 * @Returns: a new #GTimer.
93 * Creates a new timer, and starts timing (i.e. g_timer_start() is
94 * implicitly called for you).
101 timer = g_new (GTimer, 1);
102 timer->active = TRUE;
104 GETTIME (timer->start);
111 * @timer: a #GTimer to destroy.
113 * Destroys a timer, freeing associated resources.
116 g_timer_destroy (GTimer *timer)
118 g_return_if_fail (timer != NULL);
127 * Marks a start time, so that future calls to g_timer_elapsed() will
128 * report the time since g_timer_start() was called. g_timer_new()
129 * automatically marks the start time, so no need to call
130 * g_timer_start() immediately after creating the timer.
133 g_timer_start (GTimer *timer)
135 g_return_if_fail (timer != NULL);
137 timer->active = TRUE;
139 GETTIME (timer->start);
146 * Marks an end time, so calls to g_timer_elapsed() will return the
147 * difference between this end time and the start time.
150 g_timer_stop (GTimer *timer)
152 g_return_if_fail (timer != NULL);
154 timer->active = FALSE;
156 GETTIME (timer->end);
163 * This function is useless; it's fine to call g_timer_start() on an
164 * already-started timer to reset the start time, so g_timer_reset()
168 g_timer_reset (GTimer *timer)
170 g_return_if_fail (timer != NULL);
172 GETTIME (timer->start);
179 * Resumes a timer that has previously been stopped with
180 * g_timer_stop(). g_timer_stop() must be called before using this
186 g_timer_continue (GTimer *timer)
190 g_return_if_fail (timer != NULL);
191 g_return_if_fail (timer->active == FALSE);
193 /* Get elapsed time and reset timer start time
194 * to the current time minus the previously
198 elapsed = timer->end - timer->start;
200 GETTIME (timer->start);
202 timer->start -= elapsed;
204 timer->active = TRUE;
210 * @microseconds: return location for the fractional part of seconds
211 * elapsed, in microseconds (that is, the total number
212 * of microseconds elapsed, modulo 1000000), or %NULL
213 * @Returns: seconds elapsed as a floating point value, including any
216 * If @timer has been started but not stopped, obtains the time since
217 * the timer was started. If @timer has been stopped, obtains the
218 * elapsed time between the time it was started and the time it was
219 * stopped. The return value is the number of seconds elapsed,
220 * including any fractional part. The @microseconds out parameter is
221 * essentially useless.
224 * Calling initialization functions, in particular g_thread_init(), while a
225 * timer is running will cause invalid return values from this function.
229 g_timer_elapsed (GTimer *timer,
230 gulong *microseconds)
235 g_return_val_if_fail (timer != NULL, 0);
238 GETTIME (timer->end);
240 elapsed = timer->end - timer->start;
242 total = elapsed / 1e9;
245 *microseconds = (elapsed / 1000) % 1000000;
251 g_usleep (gulong microseconds)
254 Sleep (microseconds / 1000);
255 #else /* !G_OS_WIN32 */
256 # ifdef HAVE_NANOSLEEP
257 struct timespec request, remaining;
258 request.tv_sec = microseconds / G_USEC_PER_SEC;
259 request.tv_nsec = 1000 * (microseconds % G_USEC_PER_SEC);
260 while (nanosleep (&request, &remaining) == -1 && errno == EINTR)
262 # else /* !HAVE_NANOSLEEP */
264 /* on AIX, nsleep is analogous to nanosleep */
265 struct timespec request, remaining;
266 request.tv_sec = microseconds / G_USEC_PER_SEC;
267 request.tv_nsec = 1000 * (microseconds % G_USEC_PER_SEC);
268 while (nsleep (&request, &remaining) == -1 && errno == EINTR)
270 # else /* !HAVE_NSLEEP */
271 if (g_thread_supported ())
273 static GStaticMutex mutex = G_STATIC_MUTEX_INIT;
274 static GCond* cond = NULL;
277 g_get_current_time (&end_time);
278 if (microseconds > G_MAXLONG)
280 microseconds -= G_MAXLONG;
281 g_time_val_add (&end_time, G_MAXLONG);
283 g_time_val_add (&end_time, microseconds);
285 g_static_mutex_lock (&mutex);
288 cond = g_cond_new ();
290 while (g_cond_timed_wait (cond, g_static_mutex_get_mutex (&mutex),
294 g_static_mutex_unlock (&mutex);
299 tv.tv_sec = microseconds / G_USEC_PER_SEC;
300 tv.tv_usec = microseconds % G_USEC_PER_SEC;
301 select(0, NULL, NULL, NULL, &tv);
303 # endif /* !HAVE_NSLEEP */
304 # endif /* !HAVE_NANOSLEEP */
305 #endif /* !G_OS_WIN32 */
310 * @time_: a #GTimeVal
311 * @microseconds: number of microseconds to add to @time
313 * Adds the given number of microseconds to @time_. @microseconds can
314 * also be negative to decrease the value of @time_.
317 g_time_val_add (GTimeVal *time_, glong microseconds)
319 g_return_if_fail (time_->tv_usec >= 0 && time_->tv_usec < G_USEC_PER_SEC);
321 if (microseconds >= 0)
323 time_->tv_usec += microseconds % G_USEC_PER_SEC;
324 time_->tv_sec += microseconds / G_USEC_PER_SEC;
325 if (time_->tv_usec >= G_USEC_PER_SEC)
327 time_->tv_usec -= G_USEC_PER_SEC;
334 time_->tv_usec -= microseconds % G_USEC_PER_SEC;
335 time_->tv_sec -= microseconds / G_USEC_PER_SEC;
336 if (time_->tv_usec < 0)
338 time_->tv_usec += G_USEC_PER_SEC;
344 /* converts a broken down date representation, relative to UTC, to
345 * a timestamp; it uses timegm() if it's available.
348 mktime_utc (struct tm *tm)
353 static const gint days_before[] =
355 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
360 if (tm->tm_mon < 0 || tm->tm_mon > 11)
363 retval = (tm->tm_year - 70) * 365;
364 retval += (tm->tm_year - 68) / 4;
365 retval += days_before[tm->tm_mon] + tm->tm_mday - 1;
367 if (tm->tm_year % 4 == 0 && tm->tm_mon < 2)
370 retval = ((((retval * 24) + tm->tm_hour) * 60) + tm->tm_min) * 60 + tm->tm_sec;
372 retval = timegm (tm);
373 #endif /* !HAVE_TIMEGM */
379 * g_time_val_from_iso8601:
380 * @iso_date: an ISO 8601 encoded date string
381 * @time_: a #GTimeVal
383 * Converts a string containing an ISO 8601 encoded date and time
384 * to a #GTimeVal and puts it into @time_.
386 * Return value: %TRUE if the conversion was successful.
391 g_time_val_from_iso8601 (const gchar *iso_date,
397 g_return_val_if_fail (iso_date != NULL, FALSE);
398 g_return_val_if_fail (time_ != NULL, FALSE);
400 /* Ensure that the first character is a digit,
401 * the first digit of the date, otherwise we don't
402 * have an ISO 8601 date */
403 while (g_ascii_isspace (*iso_date))
406 if (*iso_date == '\0')
409 if (!g_ascii_isdigit (*iso_date) && *iso_date != '-' && *iso_date != '+')
412 val = strtoul (iso_date, (char **)&iso_date, 10);
413 if (*iso_date == '-')
416 tm.tm_year = val - 1900;
418 tm.tm_mon = strtoul (iso_date, (char **)&iso_date, 10) - 1;
420 if (*iso_date++ != '-')
423 tm.tm_mday = strtoul (iso_date, (char **)&iso_date, 10);
428 tm.tm_mday = val % 100;
429 tm.tm_mon = (val % 10000) / 100 - 1;
430 tm.tm_year = val / 10000 - 1900;
433 if (*iso_date++ != 'T')
436 val = strtoul (iso_date, (char **)&iso_date, 10);
437 if (*iso_date == ':')
442 tm.tm_min = strtoul (iso_date, (char **)&iso_date, 10);
444 if (*iso_date++ != ':')
447 tm.tm_sec = strtoul (iso_date, (char **)&iso_date, 10);
452 tm.tm_sec = val % 100;
453 tm.tm_min = (val % 10000) / 100;
454 tm.tm_hour = val / 10000;
459 if (*iso_date == ',' || *iso_date == '.')
463 while (g_ascii_isdigit (*++iso_date))
465 time_->tv_usec += (*iso_date - '0') * mul;
470 /* Now parse the offset and convert tm to a time_t */
471 if (*iso_date == 'Z')
474 time_->tv_sec = mktime_utc (&tm);
476 else if (*iso_date == '+' || *iso_date == '-')
478 gint sign = (*iso_date == '+') ? -1 : 1;
480 val = strtoul (iso_date + 1, (char **)&iso_date, 10);
482 if (*iso_date == ':')
483 val = 60 * val + strtoul (iso_date + 1, (char **)&iso_date, 10);
485 val = 60 * (val / 100) + (val % 100);
487 time_->tv_sec = mktime_utc (&tm) + (time_t) (60 * val * sign);
491 /* No "Z" or offset, so local time */
492 tm.tm_isdst = -1; /* locale selects DST */
493 time_->tv_sec = mktime (&tm);
496 while (g_ascii_isspace (*iso_date))
499 return *iso_date == '\0';
503 * g_time_val_to_iso8601:
504 * @time_: a #GTimeVal
506 * Converts @time_ into an ISO 8601 encoded string, relative to the
507 * Coordinated Universal Time (UTC).
509 * Return value: a newly allocated string containing an ISO 8601 date
514 g_time_val_to_iso8601 (GTimeVal *time_)
523 g_return_val_if_fail (time_->tv_usec >= 0 && time_->tv_usec < G_USEC_PER_SEC, NULL);
525 secs = time_->tv_sec;
530 tm = gmtime_r (&secs, &tm_);
536 if (time_->tv_usec != 0)
538 /* ISO 8601 date and time format, with fractionary seconds:
539 * YYYY-MM-DDTHH:MM:SS.MMMMMMZ
541 retval = g_strdup_printf ("%4d-%02d-%02dT%02d:%02d:%02d.%06ldZ",
552 /* ISO 8601 date and time format:
553 * YYYY-MM-DDTHH:MM:SSZ
555 retval = g_strdup_printf ("%4d-%02d-%02dT%02d:%02d:%02dZ",
567 #define __G_TIMER_C__
568 #include "galiasdef.c"