]> git.sesse.net Git - vlc/blob - src/misc/mtime.c
Fix overflows
[vlc] / src / misc / mtime.c
1 /*****************************************************************************
2  * mtime.c: high resolution time management functions
3  * Functions are prototyped in mtime.h.
4  *****************************************************************************
5  * Copyright (C) 1998-2004 the VideoLAN team
6  * $Id$
7  *
8  * Authors: Vincent Seguin <seguin@via.ecp.fr>
9  *          RĂ©mi Denis-Courmont <rem$videolan,org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <stdio.h>                                              /* sprintf() */
30 #include <time.h>                      /* clock_gettime(), clock_nanosleep() */
31 #include <stdlib.h>                                               /* lldiv() */
32
33 #include <vlc/vlc.h>
34
35 #if defined( PTH_INIT_IN_PTH_H )                                  /* GNU Pth */
36 #   include <pth.h>
37 #endif
38
39 #ifdef HAVE_UNISTD_H
40 #   include <unistd.h>                                           /* select() */
41 #endif
42
43 #ifdef HAVE_KERNEL_OS_H
44 #   include <kernel/OS.h>
45 #endif
46
47 #if defined( WIN32 ) || defined( UNDER_CE )
48 #   include <windows.h>
49 #else
50 #   include <sys/time.h>
51 #endif
52
53 #if defined(HAVE_NANOSLEEP) && !defined(HAVE_STRUCT_TIMESPEC)
54 struct timespec
55 {
56     time_t  tv_sec;
57     int32_t tv_nsec;
58 };
59 #endif
60
61 #if defined(HAVE_NANOSLEEP) && !defined(HAVE_DECL_NANOSLEEP)
62 int nanosleep(struct timespec *, struct timespec *);
63 #endif
64
65 /**
66  * Return a date in a readable format
67  *
68  * This function converts a mtime date into a string.
69  * psz_buffer should be a buffer long enough to store the formatted
70  * date.
71  * \param date to be converted
72  * \param psz_buffer should be a buffer at least MSTRTIME_MAX_SIZE characters
73  * \return psz_buffer is returned so this can be used as printf parameter.
74  */
75 char *mstrtime( char *psz_buffer, mtime_t date )
76 {
77     static mtime_t ll1000 = 1000, ll60 = 60, ll24 = 24;
78
79     snprintf( psz_buffer, MSTRTIME_MAX_SIZE, "%02d:%02d:%02d-%03d.%03d",
80              (int) (date / (ll1000 * ll1000 * ll60 * ll60) % ll24),
81              (int) (date / (ll1000 * ll1000 * ll60) % ll60),
82              (int) (date / (ll1000 * ll1000) % ll60),
83              (int) (date / ll1000 % ll1000),
84              (int) (date % ll1000) );
85     return( psz_buffer );
86 }
87
88 /**
89  * Convert seconds to a time in the format h:mm:ss.
90  *
91  * This function is provided for any interface function which need to print a
92  * time string in the format h:mm:ss
93  * date.
94  * \param secs  the 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 *secstotimestr( char *psz_buffer, int i_seconds )
99 {
100     snprintf( psz_buffer, MSTRTIME_MAX_SIZE, "%d:%2.2d:%2.2d",
101               (int) (i_seconds / (60 *60)),
102               (int) ((i_seconds / 60) % 60),
103               (int) (i_seconds % 60) );
104     return( psz_buffer );
105 }
106
107
108 /**
109  * Return high precision date
110  *
111  * Uses the gettimeofday() function when possible (1 MHz resolution) or the
112  * ftime() function (1 kHz resolution).
113  */
114 mtime_t mdate( void )
115 {
116 #if defined( HAVE_KERNEL_OS_H )
117     return( real_time_clock_usecs() );
118
119 #elif defined( WIN32 ) || defined( UNDER_CE )
120     /* We don't need the real date, just the value of a high precision timer */
121     static mtime_t freq = I64C(-1);
122     mtime_t usec_time;
123
124     if( freq == I64C(-1) )
125     {
126         /* Extract from the Tcl source code:
127          * (http://www.cs.man.ac.uk/fellowsd-bin/TIP/7.html)
128          *
129          * Some hardware abstraction layers use the CPU clock
130          * in place of the real-time clock as a performance counter
131          * reference.  This results in:
132          *    - inconsistent results among the processors on
133          *      multi-processor systems.
134          *    - unpredictable changes in performance counter frequency
135          *      on "gearshift" processors such as Transmeta and
136          *      SpeedStep.
137          * There seems to be no way to test whether the performance
138          * counter is reliable, but a useful heuristic is that
139          * if its frequency is 1.193182 MHz or 3.579545 MHz, it's
140          * derived from a colorburst crystal and is therefore
141          * the RTC rather than the TSC.  If it's anything else, we
142          * presume that the performance counter is unreliable.
143          */
144
145         freq = ( QueryPerformanceFrequency( (LARGE_INTEGER *)&freq ) &&
146                  (freq == I64C(1193182) || freq == I64C(3579545) ) )
147                ? freq : 0;
148     }
149
150     if( freq != 0 )
151     {
152         /* Microsecond resolution */
153         QueryPerformanceCounter( (LARGE_INTEGER *)&usec_time );
154         return ( usec_time * 1000000 ) / freq;
155     }
156     else
157     {
158         /* Fallback on GetTickCount() which has a milisecond resolution
159          * (actually, best case is about 10 ms resolution)
160          * GetTickCount() only returns a DWORD thus will wrap after
161          * about 49.7 days so we try to detect the wrapping. */
162
163         static CRITICAL_SECTION date_lock;
164         static mtime_t i_previous_time = I64C(-1);
165         static int i_wrap_counts = -1;
166
167         if( i_wrap_counts == -1 )
168         {
169             /* Initialization */
170             i_previous_time = I64C(1000) * GetTickCount();
171             InitializeCriticalSection( &date_lock );
172             i_wrap_counts = 0;
173         }
174
175         EnterCriticalSection( &date_lock );
176         usec_time = I64C(1000) *
177             (i_wrap_counts * I64C(0x100000000) + GetTickCount());
178         if( i_previous_time > usec_time )
179         {
180             /* Counter wrapped */
181             i_wrap_counts++;
182             usec_time += I64C(0x100000000000);
183         }
184         i_previous_time = usec_time;
185         LeaveCriticalSection( &date_lock );
186
187         return usec_time;
188     }
189
190 #elif defined (HAVE_CLOCK_GETTIME)
191     struct timespec ts;
192
193 # if (_POSIX_MONOTONIC_CLOCK - 0 >= 0)
194     /* Try to use POSIX monotonic clock if available */
195     if( clock_gettime( CLOCK_MONOTONIC, &ts ) )
196 # endif
197         /* Run-time fallback to real-time clock (always available) */
198         (void)clock_gettime( CLOCK_REALTIME, &ts );
199
200     return ((mtime_t)ts.tv_sec * (mtime_t)1000000)
201            + (mtime_t)(ts.tv_nsec / 1000);
202 #else
203     struct timeval tv_date;
204
205     /* gettimeofday() cannot fail given &tv_date is a valid address */
206     (void)gettimeofday( &tv_date, NULL );
207     return( (mtime_t) tv_date.tv_sec * 1000000 + (mtime_t) tv_date.tv_usec );
208 #endif
209 }
210
211 /**
212  * Wait for a date
213  *
214  * This function uses select() and an system date function to wake up at a
215  * precise date. It should be used for process synchronization. If current date
216  * is posterior to wished date, the function returns immediately.
217  * \param date The date to wake up at
218  */
219 void mwait( mtime_t date )
220 {
221 #if defined( HAVE_KERNEL_OS_H )
222     mtime_t delay;
223
224     delay = date - real_time_clock_usecs();
225     if( delay <= 0 )
226     {
227         return;
228     }
229     snooze( delay );
230
231 #elif defined( WIN32 ) || defined( UNDER_CE )
232     mtime_t usec_time, delay;
233
234     usec_time = mdate();
235     delay = date - usec_time;
236     if( delay <= 0 )
237     {
238         return;
239     }
240     msleep( delay );
241
242 #elif defined (HAVE_CLOCK_GETTIME)
243     lldiv_t d = lldiv( date, 1000000 );
244     struct timespec ts = { d.quot, d.rem };
245
246 # if (_POSIX_MONOTONIC_CLOCK - 0 >= 0)
247     if( clock_nanosleep( CLOCK_MONOTONIC, TIMER_ABSTIME, &ts, NULL ) )
248 # endif
249         clock_nanosleep( CLOCK_REALTIME, TIMER_ABSTIME, &ts, NULL );
250 #else
251
252     struct timeval tv_date;
253     mtime_t        delay;          /* delay in msec, signed to detect errors */
254
255     /* see mdate() about gettimeofday() possible errors */
256     gettimeofday( &tv_date, NULL );
257
258     /* calculate delay and check if current date is before wished date */
259     delay = date - (mtime_t) tv_date.tv_sec * 1000000
260                  - (mtime_t) tv_date.tv_usec
261                  - 10000;
262
263     /* Linux/i386 has a granularity of 10 ms. It's better to be in advance
264      * than to be late. */
265     if( delay <= 0 )                 /* wished date is now or already passed */
266     {
267         return;
268     }
269
270 #   if defined( PTH_INIT_IN_PTH_H )
271     pth_usleep( delay );
272
273 #   elif defined( ST_INIT_IN_ST_H )
274     st_usleep( delay );
275
276 #   else
277
278 #       if defined( HAVE_NANOSLEEP )
279     {
280         struct timespec ts_delay;
281         ts_delay.tv_sec = delay / 1000000;
282         ts_delay.tv_nsec = (delay % 1000000) * 1000;
283
284         nanosleep( &ts_delay, NULL );
285     }
286
287 #       else
288     tv_date.tv_sec = delay / 1000000;
289     tv_date.tv_usec = delay % 1000000;
290     /* see msleep() about select() errors */
291     select( 0, NULL, NULL, NULL, &tv_date );
292 #       endif
293
294 #   endif
295
296 #endif
297 }
298
299 /**
300  * More precise sleep()
301  *
302  * Portable usleep() function.
303  * \param delay the amount of time to sleep
304  */
305 void msleep( mtime_t delay )
306 {
307 #if defined( HAVE_KERNEL_OS_H )
308     snooze( delay );
309
310 #elif defined( PTH_INIT_IN_PTH_H )
311     pth_usleep( delay );
312
313 #elif defined( ST_INIT_IN_ST_H )
314     st_usleep( delay );
315
316 #elif defined( WIN32 ) || defined( UNDER_CE )
317     Sleep( (int) (delay / 1000) );
318
319 #elif defined( HAVE_CLOCK_GETTIME )
320     lldiv_t d = lldiv( delay, 1000000 );
321     struct timespec ts = { d.quot, d.rem * 1000 };
322 # if (_POSIX_CLOCK_MONOTONIC - 0 >= 0)
323     if (clock_nanosleep( CLOCK_MONOTONIC, 0, &ts, NULL ) )
324 # endif
325         clock_nanosleep( CLOCK_REALTIME, 0, &ts, NULL );
326
327 #elif defined( HAVE_NANOSLEEP )
328     struct timespec ts_delay;
329
330     ts_delay.tv_sec = delay / 1000000;
331     ts_delay.tv_nsec = (delay % 1000000) * 1000;
332
333     nanosleep( &ts_delay, NULL );
334
335 #else
336     struct timeval tv_delay;
337
338     tv_delay.tv_sec = delay / 1000000;
339     tv_delay.tv_usec = delay % 1000000;
340
341     /* select() return value should be tested, since several possible errors
342      * can occur. However, they should only happen in very particular occasions
343      * (i.e. when a signal is sent to the thread, or when memory is full), and
344      * can be ignored. */
345     select( 0, NULL, NULL, NULL, &tv_delay );
346
347 #endif
348 }
349
350 /*
351  * Date management (internal and external)
352  */
353
354 /**
355  * Initialize a date_t.
356  *
357  * \param date to initialize
358  * \param divider (sample rate) numerator
359  * \param divider (sample rate) denominator
360  */
361
362 void date_Init( date_t *p_date, uint32_t i_divider_n, uint32_t i_divider_d )
363 {
364     p_date->date = 0;
365     p_date->i_divider_num = i_divider_n;
366     p_date->i_divider_den = i_divider_d;
367     p_date->i_remainder = 0;
368 }
369
370 /**
371  * Change a date_t.
372  *
373  * \param date to change
374  * \param divider (sample rate) numerator
375  * \param divider (sample rate) denominator
376  */
377
378 void date_Change( date_t *p_date, uint32_t i_divider_n, uint32_t i_divider_d )
379 {
380     p_date->i_divider_num = i_divider_n;
381     p_date->i_divider_den = i_divider_d;
382 }
383
384 /**
385  * Set the date value of a date_t.
386  *
387  * \param date to set
388  * \param date value
389  */
390 void date_Set( date_t *p_date, mtime_t i_new_date )
391 {
392     p_date->date = i_new_date;
393     p_date->i_remainder = 0;
394 }
395
396 /**
397  * Get the date of a date_t
398  *
399  * \param date to get
400  * \return date value
401  */
402 mtime_t date_Get( const date_t *p_date )
403 {
404     return p_date->date;
405 }
406
407 /**
408  * Move forwards or backwards the date of a date_t.
409  *
410  * \param date to move
411  * \param difference value
412  */
413 void date_Move( date_t *p_date, mtime_t i_difference )
414 {
415     p_date->date += i_difference;
416 }
417
418 /**
419  * Increment the date and return the result, taking into account
420  * rounding errors.
421  *
422  * \param date to increment
423  * \param incrementation in number of samples
424  * \return date value
425  */
426 mtime_t date_Increment( date_t *p_date, uint32_t i_nb_samples )
427 {
428     mtime_t i_dividend = (mtime_t)i_nb_samples * 1000000;
429     p_date->date += i_dividend / p_date->i_divider_num * p_date->i_divider_den;
430     p_date->i_remainder += (int)(i_dividend % p_date->i_divider_num);
431
432     if( p_date->i_remainder >= p_date->i_divider_num )
433     {
434         /* This is Bresenham algorithm. */
435         p_date->date += p_date->i_divider_den;
436         p_date->i_remainder -= p_date->i_divider_num;
437     }
438
439     return p_date->date;
440 }