1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
4 * MMSYSTEM time functions
6 * Copyright 1993 Martin Ayotte
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/port.h"
29 #ifdef HAVE_SYS_TIME_H
30 # include <sys/time.h>
38 #ifdef HAVE_SYS_POLL_H
48 #include "wine/list.h"
49 #include "wine/debug.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(mmtime
);
53 typedef struct tagWINE_TIMERENTRY
{
57 LPTIMECALLBACK lpFunc
; /* can be lots of things */
62 } WINE_TIMERENTRY
, *LPWINE_TIMERENTRY
;
64 static struct list timer_list
= LIST_INIT(timer_list
);
66 static CRITICAL_SECTION TIME_cbcrst
;
67 static CRITICAL_SECTION_DEBUG critsect_debug
=
70 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
71 0, 0, { (DWORD_PTR
)(__FILE__
": TIME_cbcrst") }
73 static CRITICAL_SECTION TIME_cbcrst
= { &critsect_debug
, -1, 0, 0, 0, 0 };
75 static HANDLE TIME_hMMTimer
;
76 static BOOL TIME_TimeToDie
= TRUE
;
77 static int TIME_fdWake
[2] = { -1, -1 };
79 /* link timer at the appropriate spot in the list */
80 static inline void link_timer( WINE_TIMERENTRY
*timer
)
82 WINE_TIMERENTRY
*next
;
84 LIST_FOR_EACH_ENTRY( next
, &timer_list
, WINE_TIMERENTRY
, entry
)
85 if ((int)(next
->dwTriggerTime
- timer
->dwTriggerTime
) >= 0) break;
87 list_add_before( &next
->entry
, &timer
->entry
);
91 * Some observations on the behavior of winmm on Windows.
92 * First, the call to timeBeginPeriod(xx) can never be used
93 * to raise the timer resolution, only lower it.
95 * Second, a brief survey of a variety of Win 2k and Win X
96 * machines showed that a 'standard' (aka default) timer
97 * resolution was 1 ms (Win9x is documented as being 1). However, one
98 * machine had a standard timer resolution of 10 ms.
100 * Further, if we set our default resolution to 1,
101 * the implementation of timeGetTime becomes GetTickCount(),
102 * and we can optimize the code to reduce overhead.
104 * Additionally, a survey of Event behaviors shows that
105 * if we request a Periodic event every 50 ms, then Windows
106 * makes sure to trigger that event 20 times in the next
107 * second. If delays prevent that from happening on exact
108 * schedule, Windows will trigger the events as close
109 * to the original schedule as is possible, and will eventually
110 * bring the event triggers back onto a schedule that is
111 * consistent with what would have happened if there were
114 * Jeremy White, October 2004
116 #define MMSYSTIME_MININTERVAL (1)
117 #define MMSYSTIME_MAXINTERVAL (65535)
121 /**************************************************************************
122 * TIME_MMSysTimeCallback
124 static int TIME_MMSysTimeCallback(void)
126 WINE_TIMERENTRY
*timer
, *to_free
;
129 /* since timeSetEvent() and timeKillEvent() can be called
130 * from 16 bit code, there are cases where win16 lock is
131 * locked upon entering timeSetEvent(), and then the mm timer
132 * critical section is locked. This function cannot call the
133 * timer callback with the crit sect locked (because callback
134 * may need to acquire Win16 lock, thus providing a deadlock
136 * To cope with that, we just copy the WINE_TIMERENTRY struct
137 * that need to trigger the callback, and call it without the
138 * mm timer crit sect locked.
141 EnterCriticalSection(&WINMM_cs
);
144 struct list
*ptr
= list_head( &timer_list
);
151 timer
= LIST_ENTRY( ptr
, WINE_TIMERENTRY
, entry
);
152 delta_time
= timer
->dwTriggerTime
- GetTickCount();
153 if (delta_time
> 0) break;
155 list_remove( &timer
->entry
);
156 if (timer
->wFlags
& TIME_PERIODIC
)
158 timer
->dwTriggerTime
+= timer
->wDelay
;
159 link_timer( timer
); /* restart it */
162 else to_free
= timer
;
164 switch(timer
->wFlags
& (TIME_CALLBACK_EVENT_SET
|TIME_CALLBACK_EVENT_PULSE
))
166 case TIME_CALLBACK_EVENT_SET
:
167 SetEvent(timer
->lpFunc
);
169 case TIME_CALLBACK_EVENT_PULSE
:
170 PulseEvent(timer
->lpFunc
);
172 case TIME_CALLBACK_FUNCTION
:
174 DWORD_PTR user
= timer
->dwUser
;
175 UINT16 id
= timer
->wTimerID
;
176 UINT16 flags
= timer
->wFlags
;
177 LPTIMECALLBACK func
= timer
->lpFunc
;
179 if (flags
& TIME_KILL_SYNCHRONOUS
) EnterCriticalSection(&TIME_cbcrst
);
180 LeaveCriticalSection(&WINMM_cs
);
182 func(id
, 0, user
, 0, 0);
184 EnterCriticalSection(&WINMM_cs
);
185 if (flags
& TIME_KILL_SYNCHRONOUS
) LeaveCriticalSection(&TIME_cbcrst
);
189 HeapFree( GetProcessHeap(), 0, to_free
);
191 LeaveCriticalSection(&WINMM_cs
);
195 /**************************************************************************
196 * TIME_MMSysTimeThread
198 static DWORD CALLBACK
TIME_MMSysTimeThread(LPVOID arg
)
204 pfd
.fd
= TIME_fdWake
[0];
207 TRACE("Starting main winmm thread\n");
209 /* FIXME: As an optimization, we could have
210 this thread die when there are no more requests
211 pending, and then get recreated on the first
212 new event; it's not clear if that would be worth
215 while (! TIME_TimeToDie
)
217 sleep_time
= TIME_MMSysTimeCallback();
222 if ((ret
= poll(&pfd
, 1, sleep_time
)) < 0)
224 if (errno
!= EINTR
&& errno
!= EAGAIN
)
226 ERR("Unexpected error in poll: %s(%d)\n", strerror(errno
), errno
);
231 while (ret
> 0) ret
= read(TIME_fdWake
[0], readme
, sizeof(readme
));
233 TRACE("Exiting main winmm thread\n");
237 /**************************************************************************
240 static void TIME_MMTimeStart(void)
242 if (!TIME_hMMTimer
) {
243 if (pipe(TIME_fdWake
) < 0)
245 TIME_fdWake
[0] = TIME_fdWake
[1] = -1;
246 ERR("Cannot create pipe: %s\n", strerror(errno
));
248 fcntl(TIME_fdWake
[0], F_SETFL
, O_NONBLOCK
);
249 fcntl(TIME_fdWake
[1], F_SETFL
, O_NONBLOCK
);
251 TIME_TimeToDie
= FALSE
;
252 TIME_hMMTimer
= CreateThread(NULL
, 0, TIME_MMSysTimeThread
, NULL
, 0, NULL
);
253 SetThreadPriority(TIME_hMMTimer
, THREAD_PRIORITY_TIME_CRITICAL
);
257 #else /* HAVE_POLL */
259 static void TIME_MMTimeStart(void)
261 FIXME( "not starting system thread\n" );
264 #endif /* HAVE_POLL */
266 /**************************************************************************
269 void TIME_MMTimeStop(void)
274 TIME_TimeToDie
= TRUE
;
275 write(TIME_fdWake
[1], &a
, sizeof(a
));
277 WaitForSingleObject(TIME_hMMTimer
, INFINITE
);
278 close(TIME_fdWake
[0]);
279 close(TIME_fdWake
[1]);
280 TIME_fdWake
[0] = TIME_fdWake
[1] = -1;
281 CloseHandle(TIME_hMMTimer
);
283 DeleteCriticalSection(&TIME_cbcrst
);
287 /**************************************************************************
288 * timeGetSystemTime [WINMM.@]
290 MMRESULT WINAPI
timeGetSystemTime(LPMMTIME lpTime
, UINT wSize
)
293 if (wSize
>= sizeof(*lpTime
)) {
294 lpTime
->wType
= TIME_MS
;
295 lpTime
->u
.ms
= GetTickCount();
302 /**************************************************************************
303 * timeSetEvent [WINMM.@]
305 MMRESULT WINAPI
timeSetEvent(UINT wDelay
, UINT wResol
, LPTIMECALLBACK lpFunc
,
306 DWORD_PTR dwUser
, UINT wFlags
)
309 LPWINE_TIMERENTRY lpNewTimer
;
310 LPWINE_TIMERENTRY lpTimer
;
313 TRACE("(%u, %u, %p, %08lX, %04X);\n", wDelay
, wResol
, lpFunc
, dwUser
, wFlags
);
315 if (wDelay
< MMSYSTIME_MININTERVAL
|| wDelay
> MMSYSTIME_MAXINTERVAL
)
318 lpNewTimer
= HeapAlloc(GetProcessHeap(), 0, sizeof(WINE_TIMERENTRY
));
319 if (lpNewTimer
== NULL
)
322 lpNewTimer
->wDelay
= wDelay
;
323 lpNewTimer
->dwTriggerTime
= GetTickCount() + wDelay
;
325 /* FIXME - wResol is not respected, although it is not clear
326 that we could change our precision meaningfully */
327 lpNewTimer
->wResol
= wResol
;
328 lpNewTimer
->lpFunc
= lpFunc
;
329 lpNewTimer
->dwUser
= dwUser
;
330 lpNewTimer
->wFlags
= wFlags
;
332 EnterCriticalSection(&WINMM_cs
);
334 LIST_FOR_EACH_ENTRY( lpTimer
, &timer_list
, WINE_TIMERENTRY
, entry
)
335 wNewID
= max(wNewID
, lpTimer
->wTimerID
);
337 link_timer( lpNewTimer
);
338 lpNewTimer
->wTimerID
= wNewID
+ 1;
342 LeaveCriticalSection(&WINMM_cs
);
344 /* Wake the service thread in case there is work to be done */
345 write(TIME_fdWake
[1], &c
, sizeof(c
));
347 TRACE("=> %u\n", wNewID
+ 1);
352 /**************************************************************************
353 * timeKillEvent [WINMM.@]
355 MMRESULT WINAPI
timeKillEvent(UINT wID
)
357 WINE_TIMERENTRY
*lpSelf
= NULL
, *lpTimer
;
360 TRACE("(%u)\n", wID
);
361 EnterCriticalSection(&WINMM_cs
);
362 /* remove WINE_TIMERENTRY from list */
363 LIST_FOR_EACH_ENTRY( lpTimer
, &timer_list
, WINE_TIMERENTRY
, entry
)
365 if (wID
== lpTimer
->wTimerID
) {
367 list_remove( &lpTimer
->entry
);
371 LeaveCriticalSection(&WINMM_cs
);
375 WARN("wID=%u is not a valid timer ID\n", wID
);
376 return MMSYSERR_INVALPARAM
;
378 wFlags
= lpSelf
->wFlags
;
379 if (wFlags
& TIME_KILL_SYNCHRONOUS
)
380 EnterCriticalSection(&TIME_cbcrst
);
381 HeapFree(GetProcessHeap(), 0, lpSelf
);
382 if (wFlags
& TIME_KILL_SYNCHRONOUS
)
383 LeaveCriticalSection(&TIME_cbcrst
);
384 return TIMERR_NOERROR
;
387 /**************************************************************************
388 * timeGetDevCaps [WINMM.@]
390 MMRESULT WINAPI
timeGetDevCaps(LPTIMECAPS lpCaps
, UINT wSize
)
392 TRACE("(%p, %u)\n", lpCaps
, wSize
);
395 WARN("invalid lpCaps\n");
396 return TIMERR_NOCANDO
;
399 if (wSize
< sizeof(TIMECAPS
)) {
400 WARN("invalid wSize\n");
401 return TIMERR_NOCANDO
;
404 lpCaps
->wPeriodMin
= MMSYSTIME_MININTERVAL
;
405 lpCaps
->wPeriodMax
= MMSYSTIME_MAXINTERVAL
;
406 return TIMERR_NOERROR
;
409 /**************************************************************************
410 * timeBeginPeriod [WINMM.@]
412 MMRESULT WINAPI
timeBeginPeriod(UINT wPeriod
)
414 if (wPeriod
< MMSYSTIME_MININTERVAL
|| wPeriod
> MMSYSTIME_MAXINTERVAL
)
415 return TIMERR_NOCANDO
;
417 if (wPeriod
> MMSYSTIME_MININTERVAL
)
419 WARN("Stub; we set our timer resolution at minimum\n");
425 /**************************************************************************
426 * timeEndPeriod [WINMM.@]
428 MMRESULT WINAPI
timeEndPeriod(UINT wPeriod
)
430 if (wPeriod
< MMSYSTIME_MININTERVAL
|| wPeriod
> MMSYSTIME_MAXINTERVAL
)
431 return TIMERR_NOCANDO
;
433 if (wPeriod
> MMSYSTIME_MININTERVAL
)
435 WARN("Stub; we set our timer resolution at minimum\n");
440 /**************************************************************************
441 * timeGetTime [WINMM.@]
443 DWORD WINAPI
timeGetTime(void)
445 #if defined(COMMENTOUTPRIORTODELETING)
448 /* FIXME: releasing the win16 lock here is a temporary hack (I hope)
449 * that lets mciavi32.dll run correctly
451 if (pFnReleaseThunkLock
) pFnReleaseThunkLock(&count
);
452 if (pFnRestoreThunkLock
) pFnRestoreThunkLock(count
);
455 return GetTickCount();