1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
4 * MMSYTEM time functions
6 * Copyright 1993 Martin Ayotte
13 #include "multimedia.h"
16 #include "debugtools.h"
18 DEFAULT_DEBUG_CHANNEL(mmtime)
22 * We're using "1" as the mininum resolution to the timer,
23 * as Windows 95 does, according to the docs. Maybe it should
24 * depend on the computers resources!
26 #define MMSYSTIME_MININTERVAL /* (1) */ (10)
27 #define MMSYSTIME_MAXINTERVAL (65535)
29 static void TIME_TriggerCallBack(LPWINE_TIMERENTRY lpTimer, DWORD dwCurrent)
31 TRACE("before CallBack (%lu)!\n", dwCurrent);
32 TRACE("lpFunc=%p wTimerID=%04X dwUser=%08lX !\n",
33 lpTimer->lpFunc, lpTimer->wTimerID, lpTimer->dwUser);
35 /* - TimeProc callback that is called here is something strange, under Windows 3.1x it is called
36 * during interrupt time, is allowed to execute very limited number of API calls (like
37 * PostMessage), and must reside in DLL (therefore uses stack of active application). So I
38 * guess current implementation via SetTimer has to be improved upon.
40 switch (lpTimer->wFlags & 0x30) {
41 case TIME_CALLBACK_FUNCTION:
42 if (lpTimer->wFlags & WINE_TIMER_IS32)
43 ((LPTIMECALLBACK)lpTimer->lpFunc)(lpTimer->wTimerID, 0, lpTimer->dwUser, 0, 0);
45 Callbacks->CallTimeFuncProc(lpTimer->lpFunc,
47 lpTimer->dwUser, 0, 0);
49 case TIME_CALLBACK_EVENT_SET:
50 SetEvent((HANDLE)lpTimer->lpFunc);
52 case TIME_CALLBACK_EVENT_PULSE:
53 PulseEvent((HANDLE)lpTimer->lpFunc);
56 FIXME("Unknown callback type 0x%04x for mmtime callback (%p), ignored.\n", lpTimer->wFlags, lpTimer->lpFunc);
59 TRACE("after CallBack !\n");
62 /**************************************************************************
63 * TIME_MMSysTimeCallback
65 static void CALLBACK TIME_MMSysTimeCallback(ULONG_PTR ptr_)
67 LPWINE_TIMERENTRY lpTimer, lpNextTimer;
68 LPWINE_MM_IDATA iData = (LPWINE_MM_IDATA)ptr_;
71 iData->mmSysTimeMS += MMSYSTIME_MININTERVAL;
73 /* since timeSetEvent() and timeKillEvent() can be called
74 * from 16 bit code, there are cases where win16 lock is
75 * locked upon entering timeSetEvent(), and then the mm timer
76 * critical section is locked. This function cannot call the
77 * timer callback with the crit sect locked (because callback
78 * may need to acquire Win16 lock, thus providing a deadlock
80 * To cope with that, we just copy the WINE_TIMERENTRY struct
81 * that need to trigger the callback, and call it without the
82 * mm timer crit sect locked. The bad side of this
83 * implementation is that, in some cases, the callback may be
84 * invoked *after* a timer has been destroyed...
89 EnterCriticalSection(&iData->cs);
90 for (lpTimer = iData->lpTimerList; lpTimer != NULL; ) {
91 lpNextTimer = lpTimer->lpNext;
92 if (lpTimer->wCurTime < MMSYSTIME_MININTERVAL) {
93 /* since lpTimer->wDelay is >= MININTERVAL, wCurTime value
94 * shall be correct (>= 0)
96 lpTimer->wCurTime += lpTimer->wDelay - MMSYSTIME_MININTERVAL;
97 if (lpTimer->lpFunc) {
98 if (idx == iData->nSizeLpTimers) {
99 iData->lpTimers = (LPWINE_TIMERENTRY)
100 HeapReAlloc(GetProcessHeap(), 0,
102 ++iData->nSizeLpTimers * sizeof(WINE_TIMERENTRY));
104 iData->lpTimers[idx++] = *lpTimer;
106 if (lpTimer->wFlags & TIME_ONESHOT)
107 timeKillEvent(lpTimer->wTimerID);
109 lpTimer->wCurTime -= MMSYSTIME_MININTERVAL;
111 lpTimer = lpNextTimer;
113 LeaveCriticalSection(&iData->cs);
116 TIME_TriggerCallBack(iData->lpTimers + --idx, iData->mmSysTimeMS);
120 /**************************************************************************
121 * MULTIMEDIA_MMTimeStart [internal]
123 static LPWINE_MM_IDATA MULTIMEDIA_MMTimeStart(void)
125 LPWINE_MM_IDATA iData = MULTIMEDIA_GetIData();
127 if (!iData || IsBadWritePtr(iData, sizeof(WINE_MM_IDATA))) {
128 ERR("iData is not correctly set, please report. Expect failure.\n");
131 /* FIXME: the service timer is never killed, even when process is
132 * detached from this DLL
134 /* one could think it's possible to stop the service thread activity when no more
135 * mm timers are active, but this would require to keep mmSysTimeMS up-to-date
136 * without being incremented within the service thread callback.
138 if (!iData->hMMTimer) {
139 iData->mmSysTimeMS = GetTickCount();
140 iData->lpTimerList = NULL;
141 iData->hMMTimer = SERVICE_AddTimer(MMSYSTIME_MININTERVAL*1000L, TIME_MMSysTimeCallback, (DWORD)iData);
142 InitializeCriticalSection(&iData->cs);
148 /**************************************************************************
149 * timeGetSystemTime [WINMM.140]
151 MMRESULT WINAPI timeGetSystemTime(LPMMTIME lpTime, UINT wSize)
153 LPWINE_MM_IDATA iData;
155 TRACE("(%p, %u);\n", lpTime, wSize);
157 if (wSize >= sizeof(*lpTime)) {
158 iData = MULTIMEDIA_MMTimeStart();
160 return MMSYSERR_NOMEM;
161 lpTime->wType = TIME_MS;
162 lpTime->u.ms = iData->mmSysTimeMS;
164 TRACE("=> %lu\n", iData->mmSysTimeMS);
170 /**************************************************************************
171 * timeGetSystemTime [MMSYSTEM.601]
173 MMRESULT16 WINAPI timeGetSystemTime16(LPMMTIME16 lpTime, UINT16 wSize)
175 LPWINE_MM_IDATA iData;
177 TRACE("(%p, %u);\n", lpTime, wSize);
179 if (wSize >= sizeof(*lpTime)) {
180 iData = MULTIMEDIA_MMTimeStart();
182 return MMSYSERR_NOMEM;
183 lpTime->wType = TIME_MS;
184 lpTime->u.ms = iData->mmSysTimeMS;
186 TRACE("=> %lu\n", iData->mmSysTimeMS);
192 /**************************************************************************
193 * timeSetEventInternal [internal]
195 static WORD timeSetEventInternal(UINT wDelay, UINT wResol,
196 FARPROC16 lpFunc, DWORD dwUser, UINT wFlags)
199 LPWINE_TIMERENTRY lpNewTimer;
200 LPWINE_TIMERENTRY lpTimer;
201 LPWINE_MM_IDATA iData;
203 TRACE("(%u, %u, %p, %08lX, %04X);\n", wDelay, wResol, lpFunc, dwUser, wFlags);
205 lpNewTimer = (LPWINE_TIMERENTRY)HeapAlloc(GetProcessHeap(), 0, sizeof(WINE_TIMERENTRY));
206 if (lpNewTimer == NULL)
209 if (wDelay < MMSYSTIME_MININTERVAL || wDelay > MMSYSTIME_MAXINTERVAL)
212 iData = MULTIMEDIA_MMTimeStart();
217 lpNewTimer->wCurTime = wDelay;
218 lpNewTimer->wDelay = wDelay;
219 lpNewTimer->wResol = wResol;
220 lpNewTimer->lpFunc = lpFunc;
221 lpNewTimer->dwUser = dwUser;
222 lpNewTimer->wFlags = wFlags;
224 TRACE("lpFunc=0x%08lx !\n", (DWORD)lpFunc);
226 EnterCriticalSection(&iData->cs);
228 for (lpTimer = iData->lpTimerList; lpTimer != NULL; lpTimer = lpTimer->lpNext) {
229 wNewID = MAX(wNewID, lpTimer->wTimerID);
232 lpNewTimer->lpNext = iData->lpTimerList;
233 iData->lpTimerList = lpNewTimer;
234 lpNewTimer->wTimerID = wNewID + 1;
236 LeaveCriticalSection(&iData->cs);
241 /**************************************************************************
242 * timeSetEvent [MMSYSTEM.602]
244 MMRESULT WINAPI timeSetEvent(UINT wDelay, UINT wResol, LPTIMECALLBACK lpFunc,
245 DWORD dwUser, UINT wFlags)
247 if (wFlags & WINE_TIMER_IS32)
248 WARN("Unknown windows flag... wine internally used.. ooch\n");
250 return timeSetEventInternal(wDelay, wResol, (FARPROC16)lpFunc,
251 dwUser, wFlags|WINE_TIMER_IS32);
254 /**************************************************************************
255 * timeSetEvent [MMSYSTEM.602]
257 MMRESULT16 WINAPI timeSetEvent16(UINT16 wDelay, UINT16 wResol, LPTIMECALLBACK16 lpFunc,
258 DWORD dwUser, UINT16 wFlags)
260 if (wFlags & WINE_TIMER_IS32)
261 WARN("Unknown windows flag... wine internally used.. ooch\n");
263 return timeSetEventInternal(wDelay, wResol, (FARPROC16)lpFunc,
264 dwUser, wFlags & ~WINE_TIMER_IS32);
267 /**************************************************************************
268 * timeKillEvent [WINMM.142]
270 MMRESULT WINAPI timeKillEvent(UINT wID)
272 LPWINE_TIMERENTRY* lpTimer;
273 LPWINE_MM_IDATA iData = MULTIMEDIA_GetIData();
274 MMRESULT ret = MMSYSERR_INVALPARAM;
276 EnterCriticalSection(&iData->cs);
277 /* remove WINE_TIMERENTRY from list */
278 for (lpTimer = &iData->lpTimerList; *lpTimer; lpTimer = &((*lpTimer)->lpNext)) {
279 if (wID == (*lpTimer)->wTimerID) {
280 *lpTimer = (*lpTimer)->lpNext;
284 LeaveCriticalSection(&iData->cs);
287 HeapFree(GetProcessHeap(), 0, *lpTimer);
288 ret = TIMERR_NOERROR;
294 /**************************************************************************
295 * timeKillEvent [MMSYSTEM.603]
297 MMRESULT16 WINAPI timeKillEvent16(UINT16 wID)
299 return timeKillEvent(wID);
302 /**************************************************************************
303 * timeGetDevCaps [WINMM.139]
305 MMRESULT WINAPI timeGetDevCaps(LPTIMECAPS lpCaps, UINT wSize)
307 TRACE("(%p, %u) !\n", lpCaps, wSize);
309 lpCaps->wPeriodMin = MMSYSTIME_MININTERVAL;
310 lpCaps->wPeriodMax = MMSYSTIME_MAXINTERVAL;
314 /**************************************************************************
315 * timeGetDevCaps [MMSYSTEM.604]
317 MMRESULT16 WINAPI timeGetDevCaps16(LPTIMECAPS16 lpCaps, UINT16 wSize)
319 TRACE("(%p, %u) !\n", lpCaps, wSize);
321 lpCaps->wPeriodMin = MMSYSTIME_MININTERVAL;
322 lpCaps->wPeriodMax = MMSYSTIME_MAXINTERVAL;
326 /**************************************************************************
327 * timeBeginPeriod [WINMM.137]
329 MMRESULT WINAPI timeBeginPeriod(UINT wPeriod)
331 TRACE("(%u) !\n", wPeriod);
333 if (wPeriod < MMSYSTIME_MININTERVAL || wPeriod > MMSYSTIME_MAXINTERVAL)
334 return TIMERR_NOCANDO;
338 /**************************************************************************
339 * timeBeginPeriod16 [MMSYSTEM.605]
341 MMRESULT16 WINAPI timeBeginPeriod16(UINT16 wPeriod)
343 TRACE("(%u) !\n", wPeriod);
345 if (wPeriod < MMSYSTIME_MININTERVAL || wPeriod > MMSYSTIME_MAXINTERVAL)
346 return TIMERR_NOCANDO;
350 /**************************************************************************
351 * timeEndPeriod [WINMM.138]
353 MMRESULT WINAPI timeEndPeriod(UINT wPeriod)
355 TRACE("(%u) !\n", wPeriod);
357 if (wPeriod < MMSYSTIME_MININTERVAL || wPeriod > MMSYSTIME_MAXINTERVAL)
358 return TIMERR_NOCANDO;
362 /**************************************************************************
363 * timeEndPeriod16 [MMSYSTEM.606]
365 MMRESULT16 WINAPI timeEndPeriod16(UINT16 wPeriod)
367 TRACE("(%u) !\n", wPeriod);
369 if (wPeriod < MMSYSTIME_MININTERVAL || wPeriod > MMSYSTIME_MAXINTERVAL)
370 return TIMERR_NOCANDO;
374 /**************************************************************************
375 * timeGetTime [MMSYSTEM.607][WINMM.141]
377 DWORD WINAPI timeGetTime(void)
379 return MULTIMEDIA_MMTimeStart()->mmSysTimeMS;