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