]> git.sesse.net Git - vlc/blob - src/misc/mtime.c
Work-around for overaging POSIX systems
[vlc] / src / misc / mtime.c
1 /*****************************************************************************
2  * mtime.c: high resolution time management functions
3  * Functions are prototyped in vlc_mtime.h.
4  *****************************************************************************
5  * Copyright (C) 1998-2007 the VideoLAN team
6  * Copyright © 2006-2007 Rémi Denis-Courmont
7  * $Id$
8  *
9  * Authors: Vincent Seguin <seguin@via.ecp.fr>
10  *          Rémi Denis-Courmont <rem$videolan,org>
11  *          Gisle Vanem
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 /*****************************************************************************
29  * Preamble
30  *****************************************************************************/
31
32 #include <vlc/vlc.h>
33
34 #include <time.h>                      /* clock_gettime(), clock_nanosleep() */
35 #include <assert.h>
36 #include <errno.h>
37
38
39 #if defined( PTH_INIT_IN_PTH_H )                                  /* GNU Pth */
40 #   include <pth.h>
41 #endif
42
43 #ifdef HAVE_UNISTD_H
44 #   include <unistd.h>                                           /* select() */
45 #endif
46
47 #ifdef HAVE_KERNEL_OS_H
48 #   include <kernel/OS.h>
49 #endif
50
51 #if defined( WIN32 ) || defined( UNDER_CE )
52 #   include <windows.h>
53 #endif
54 #if defined(HAVE_SYS_TIME_H)
55 #   include <sys/time.h>
56 #endif
57
58 #if !defined(HAVE_STRUCT_TIMESPEC)
59 struct timespec
60 {
61     time_t  tv_sec;
62     int32_t tv_nsec;
63 };
64 #endif
65
66 #if defined(HAVE_NANOSLEEP) && !defined(HAVE_DECL_NANOSLEEP)
67 int nanosleep(struct timespec *, struct timespec *);
68 #endif
69
70 #if !defined (_POSIX_CLOCK_SELECTION)
71 #  define _POSIX_CLOCK_SELECTION (-1)
72 #endif
73
74 # if (_POSIX_CLOCK_SELECTION < 0)
75 /*
76  * We cannot use the monotonic clock is clock selection is not available,
77  * as it would screw vlc_cond_timedwait() completely. Instead, we have to
78  * stick to the realtime clock. Nevermind it screws everything when ntpdate
79  * warps the wall clock.
80  */
81 #  undef CLOCK_MONOTONIC
82 #  define CLOCK_MONOTONIC CLOCK_REALTIME
83 #elif !defined (HAVE_CLOCK_NANOSLEEP)
84 /* Clock selection without clock in the first place, I don't think so. */
85 #  error We have quite a situation here! Fix me if it ever happens.
86 #endif
87
88 /**
89  * Return a date in a readable format
90  *
91  * This function converts a mtime date into a string.
92  * psz_buffer should be a buffer long enough to store the formatted
93  * date.
94  * \param date to be converted
95  * \param psz_buffer should be a buffer at least MSTRTIME_MAX_SIZE characters
96  * \return psz_buffer is returned so this can be used as printf parameter.
97  */
98 char *mstrtime( char *psz_buffer, mtime_t date )
99 {
100     static mtime_t ll1000 = 1000, ll60 = 60, ll24 = 24;
101
102     snprintf( psz_buffer, MSTRTIME_MAX_SIZE, "%02d:%02d:%02d-%03d.%03d",
103              (int) (date / (ll1000 * ll1000 * ll60 * ll60) % ll24),
104              (int) (date / (ll1000 * ll1000 * ll60) % ll60),
105              (int) (date / (ll1000 * ll1000) % ll60),
106              (int) (date / ll1000 % ll1000),
107              (int) (date % ll1000) );
108     return( psz_buffer );
109 }
110
111 /**
112  * Convert seconds to a time in the format h:mm:ss.
113  *
114  * This function is provided for any interface function which need to print a
115  * time string in the format h:mm:ss
116  * date.
117  * \param secs  the date to be converted
118  * \param psz_buffer should be a buffer at least MSTRTIME_MAX_SIZE characters
119  * \return psz_buffer is returned so this can be used as printf parameter.
120  */
121 char *secstotimestr( char *psz_buffer, int i_seconds )
122 {
123     int i_hours, i_mins;
124     i_mins = i_seconds / 60;
125     i_hours = i_mins / 60 ;
126     if( i_hours )
127     {
128         snprintf( psz_buffer, MSTRTIME_MAX_SIZE, "%d:%2.2d:%2.2d",
129                  (int) i_hours,
130                  (int) (i_mins % 60),
131                  (int) (i_seconds % 60) );
132     }
133     else
134     {
135          snprintf( psz_buffer, MSTRTIME_MAX_SIZE, "%2.2d:%2.2d",
136                    (int) i_mins ,
137                    (int) (i_seconds % 60) );
138     }
139     return( psz_buffer );
140 }
141
142 /**
143  * Return a value that is no bigger than the clock precision
144  * (possibly zero).
145  */
146 static inline unsigned mprec( void )
147 {
148 #if defined (HAVE_CLOCK_NANOSLEEP)
149     struct timespec ts;
150     if( clock_getres( CLOCK_MONOTONIC, &ts ))
151         clock_getres( CLOCK_REALTIME, &ts );
152
153     return ts.tv_nsec / 1000;
154 #endif
155     return 0;
156 }
157
158 static unsigned prec = 0;
159 static volatile mtime_t cached_time = 0;
160
161 /**
162  * Return high precision date
163  *
164  * Uses the gettimeofday() function when possible (1 MHz resolution) or the
165  * ftime() function (1 kHz resolution).
166  */
167 mtime_t mdate( void )
168 {
169     mtime_t res;
170
171 #if defined (HAVE_CLOCK_NANOSLEEP)
172     struct timespec ts;
173
174     /* Try to use POSIX monotonic clock if available */
175     if( clock_gettime( CLOCK_MONOTONIC, &ts ) == EINVAL )
176         /* Run-time fallback to real-time clock (always available) */
177         (void)clock_gettime( CLOCK_REALTIME, &ts );
178
179     res = ((mtime_t)ts.tv_sec * (mtime_t)1000000)
180            + (mtime_t)(ts.tv_nsec / 1000);
181
182 #elif defined( HAVE_KERNEL_OS_H )
183     res = real_time_clock_usecs();
184
185 #elif defined( WIN32 ) || defined( UNDER_CE )
186     /* We don't need the real date, just the value of a high precision timer */
187     static mtime_t freq = I64C(-1);
188
189     if( freq == I64C(-1) )
190     {
191         /* Extract from the Tcl source code:
192          * (http://www.cs.man.ac.uk/fellowsd-bin/TIP/7.html)
193          *
194          * Some hardware abstraction layers use the CPU clock
195          * in place of the real-time clock as a performance counter
196          * reference.  This results in:
197          *    - inconsistent results among the processors on
198          *      multi-processor systems.
199          *    - unpredictable changes in performance counter frequency
200          *      on "gearshift" processors such as Transmeta and
201          *      SpeedStep.
202          * There seems to be no way to test whether the performance
203          * counter is reliable, but a useful heuristic is that
204          * if its frequency is 1.193182 MHz or 3.579545 MHz, it's
205          * derived from a colorburst crystal and is therefore
206          * the RTC rather than the TSC.  If it's anything else, we
207          * presume that the performance counter is unreliable.
208          */
209         LARGE_INTEGER buf;
210
211         freq = ( QueryPerformanceFrequency( &buf ) &&
212                  (buf.QuadPart == I64C(1193182) || buf.QuadPart == I64C(3579545) ) )
213                ? buf.QuadPart : 0;
214     }
215
216     if( freq != 0 )
217     {
218         LARGE_INTEGER counter;
219         QueryPerformanceCounter (&counter);
220
221         /* Convert to from (1/freq) to microsecond resolution */
222         /* We need to split the division to avoid 63-bits overflow */
223         lldiv_t d = lldiv (counter.QuadPart, freq);
224
225         res = (d.quot * 1000000) + ((d.rem * 1000000) / freq);
226     }
227     else
228     {
229         /* Fallback on GetTickCount() which has a milisecond resolution
230          * (actually, best case is about 10 ms resolution)
231          * GetTickCount() only returns a DWORD thus will wrap after
232          * about 49.7 days so we try to detect the wrapping. */
233
234         static CRITICAL_SECTION date_lock;
235         static mtime_t i_previous_time = I64C(-1);
236         static int i_wrap_counts = -1;
237
238         if( i_wrap_counts == -1 )
239         {
240             /* Initialization */
241             i_previous_time = I64C(1000) * GetTickCount();
242             InitializeCriticalSection( &date_lock );
243             i_wrap_counts = 0;
244         }
245
246         EnterCriticalSection( &date_lock );
247         res = I64C(1000) *
248             (i_wrap_counts * I64C(0x100000000) + GetTickCount());
249         if( i_previous_time > res )
250         {
251             /* Counter wrapped */
252             i_wrap_counts++;
253             res += I64C(0x100000000) * 1000;
254         }
255         i_previous_time = res;
256         LeaveCriticalSection( &date_lock );
257     }
258 #else
259     struct timeval tv_date;
260
261     /* gettimeofday() cannot fail given &tv_date is a valid address */
262     (void)gettimeofday( &tv_date, NULL );
263     res = (mtime_t) tv_date.tv_sec * 1000000 + (mtime_t) tv_date.tv_usec;
264 #endif
265
266     return cached_time = res;
267 }
268
269 /**
270  * Wait for a date
271  *
272  * This function uses select() and an system date function to wake up at a
273  * precise date. It should be used for process synchronization. If current date
274  * is posterior to wished date, the function returns immediately.
275  * \param date The date to wake up at
276  */
277 void mwait( mtime_t date )
278 {
279     if( prec == 0 )
280         prec = mprec();
281
282     /* If the deadline is already elapsed, or within the clock precision,
283      * do not even bother the clock. */
284     if( ( date - cached_time ) < (mtime_t)prec ) // OK: mtime_t is signed
285         return;
286
287 #if 0 && defined (HAVE_CLOCK_NANOSLEEP)
288     lldiv_t d = lldiv( date, 1000000 );
289     struct timespec ts = { d.quot, d.rem * 1000 };
290
291     int val;
292     while( ( val = clock_nanosleep( CLOCK_MONOTONIC, TIMER_ABSTIME, &ts,
293                                     NULL ) ) == EINTR );
294     if( val == EINVAL )
295     {
296         ts.tv_sec = d.quot; ts.tv_nsec = d.rem * 1000;
297         while( clock_nanosleep( CLOCK_REALTIME, 0, &ts, NULL ) == EINTR );
298     }
299 #else
300
301     mtime_t delay = date - mdate();
302     if( delay > 0 )
303         msleep( delay );
304
305 #endif
306 }
307
308 /**
309  * More precise sleep()
310  *
311  * Portable usleep() function.
312  * \param delay the amount of time to sleep
313  */
314 void msleep( mtime_t delay )
315 {
316     mtime_t earlier = cached_time;
317
318 #if defined( HAVE_CLOCK_NANOSLEEP )
319     lldiv_t d = lldiv( delay, 1000000 );
320     struct timespec ts = { d.quot, d.rem * 1000 };
321
322     int val;
323     while( ( val = clock_nanosleep( CLOCK_MONOTONIC, 0, &ts, &ts ) ) == EINTR );
324     if( val == EINVAL )
325     {
326         ts.tv_sec = d.quot; ts.tv_nsec = d.rem * 1000;
327         while( clock_nanosleep( CLOCK_REALTIME, 0, &ts, &ts ) == EINTR );
328     }
329
330 #elif defined( HAVE_KERNEL_OS_H )
331     snooze( delay );
332
333 #elif defined( PTH_INIT_IN_PTH_H )
334     pth_usleep( delay );
335
336 #elif defined( ST_INIT_IN_ST_H )
337     st_usleep( delay );
338
339 #elif defined( WIN32 ) || defined( UNDER_CE )
340     Sleep( (int) (delay / 1000) );
341
342 #elif defined( HAVE_NANOSLEEP )
343     struct timespec ts_delay;
344
345     ts_delay.tv_sec = delay / 1000000;
346     ts_delay.tv_nsec = (delay % 1000000) * 1000;
347
348     while( nanosleep( &ts_delay, &ts_delay ) && ( errno == EINTR ) );
349
350 #else
351     struct timeval tv_delay;
352
353     tv_delay.tv_sec = delay / 1000000;
354     tv_delay.tv_usec = delay % 1000000;
355
356     /* If a signal is caught, you are screwed. Update your OS to nanosleep()
357      * or clock_nanosleep() if this is an issue. */
358     select( 0, NULL, NULL, NULL, &tv_delay );
359 #endif
360
361     earlier += delay;
362     if( cached_time < earlier )
363         cached_time = earlier;
364 }
365
366 /*
367  * Date management (internal and external)
368  */
369
370 /**
371  * Initialize a date_t.
372  *
373  * \param date to initialize
374  * \param divider (sample rate) numerator
375  * \param divider (sample rate) denominator
376  */
377
378 void date_Init( date_t *p_date, uint32_t i_divider_n, uint32_t i_divider_d )
379 {
380     p_date->date = 0;
381     p_date->i_divider_num = i_divider_n;
382     p_date->i_divider_den = i_divider_d;
383     p_date->i_remainder = 0;
384 }
385
386 /**
387  * Change a date_t.
388  *
389  * \param date to change
390  * \param divider (sample rate) numerator
391  * \param divider (sample rate) denominator
392  */
393
394 void date_Change( date_t *p_date, uint32_t i_divider_n, uint32_t i_divider_d )
395 {
396     p_date->i_divider_num = i_divider_n;
397     p_date->i_divider_den = i_divider_d;
398 }
399
400 /**
401  * Set the date value of a date_t.
402  *
403  * \param date to set
404  * \param date value
405  */
406 void date_Set( date_t *p_date, mtime_t i_new_date )
407 {
408     p_date->date = i_new_date;
409     p_date->i_remainder = 0;
410 }
411
412 /**
413  * Get the date of a date_t
414  *
415  * \param date to get
416  * \return date value
417  */
418 mtime_t date_Get( const date_t *p_date )
419 {
420     return p_date->date;
421 }
422
423 /**
424  * Move forwards or backwards the date of a date_t.
425  *
426  * \param date to move
427  * \param difference value
428  */
429 void date_Move( date_t *p_date, mtime_t i_difference )
430 {
431     p_date->date += i_difference;
432 }
433
434 /**
435  * Increment the date and return the result, taking into account
436  * rounding errors.
437  *
438  * \param date to increment
439  * \param incrementation in number of samples
440  * \return date value
441  */
442 mtime_t date_Increment( date_t *p_date, uint32_t i_nb_samples )
443 {
444     mtime_t i_dividend = (mtime_t)i_nb_samples * 1000000;
445     p_date->date += i_dividend / p_date->i_divider_num * p_date->i_divider_den;
446     p_date->i_remainder += (int)(i_dividend % p_date->i_divider_num);
447
448     if( p_date->i_remainder >= p_date->i_divider_num )
449     {
450         /* This is Bresenham algorithm. */
451         p_date->date += p_date->i_divider_den;
452         p_date->i_remainder -= p_date->i_divider_num;
453     }
454
455     return p_date->date;
456 }
457
458 #ifndef HAVE_GETTIMEOFDAY
459
460 #ifdef WIN32
461
462 /*
463  * Number of micro-seconds between the beginning of the Windows epoch
464  * (Jan. 1, 1601) and the Unix epoch (Jan. 1, 1970).
465  *
466  * This assumes all Win32 compilers have 64-bit support.
467  */
468 #if defined(_MSC_VER) || defined(_MSC_EXTENSIONS) || defined(__WATCOMC__)
469 #   define DELTA_EPOCH_IN_USEC  11644473600000000Ui64
470 #else
471 #   define DELTA_EPOCH_IN_USEC  11644473600000000ULL
472 #endif
473
474 static uint64_t filetime_to_unix_epoch (const FILETIME *ft)
475 {
476     uint64_t res = (uint64_t) ft->dwHighDateTime << 32;
477
478     res |= ft->dwLowDateTime;
479     res /= 10;                   /* from 100 nano-sec periods to usec */
480     res -= DELTA_EPOCH_IN_USEC;  /* from Win epoch to Unix epoch */
481     return (res);
482 }
483
484 static int gettimeofday (struct timeval *tv, void *tz )
485 {
486     FILETIME  ft;
487     uint64_t tim;
488
489     if (!tv) {
490         return VLC_EGENERIC;
491     }
492     GetSystemTimeAsFileTime (&ft);
493     tim = filetime_to_unix_epoch (&ft);
494     tv->tv_sec  = (long) (tim / 1000000L);
495     tv->tv_usec = (long) (tim % 1000000L);
496     return (0);
497 }
498
499 #endif
500
501 #endif
502
503 /**
504  * @return NTP 64-bits timestamp in host byte order.
505  */
506 uint64_t NTPtime64 (void)
507 {
508     struct timespec ts;
509 #if defined (CLOCK_REALTIME)
510     clock_gettime (CLOCK_REALTIME, &ts);
511 #else
512     {
513         struct timeval tv;
514         gettimeofday (&tv, NULL);
515         ts.tv_sec = tv.tv_sec;
516         ts.tv_nsec = tv.tv_usec * 1000;
517     }
518 #endif
519
520     /* Convert nanoseconds to 32-bits fraction (232 picosecond units) */
521     uint64_t t = (uint64_t)(ts.tv_nsec) << 32;
522     t /= 1000000000;
523
524
525     /* There is 70 years (incl. 17 leap ones) offset to the Unix Epoch.
526      * No leap seconds during that period since they were not invented yet.
527      */
528     assert (t < 0x100000000);
529     t |= ((70LL * 365 + 17) * 24 * 60 * 60 + ts.tv_sec) << 32;
530     return t;
531 }
532