4 * Copyright 1993 Alexandre Julliard
14 typedef struct tagTIMER
18 UINT16 msg
; /* WM_TIMER or WM_SYSTIMER */
21 struct tagTIMER
*next
;
22 DWORD expires
; /* Next expiration, or 0 if already expired */
27 #define NB_RESERVED_TIMERS 2 /* for SetSystemTimer */
29 static TIMER TimersArray
[NB_TIMERS
];
31 static TIMER
* pNextTimer
= NULL
; /* Next timer to expire */
33 /* Duration from 'time' until expiration of the timer */
34 #define EXPIRE_TIME(pTimer,time) \
35 (((pTimer)->expires <= (time)) ? 0 : (pTimer)->expires - (time))
38 /***********************************************************************
41 * Insert the timer at its place in the chain.
43 static void TIMER_InsertTimer( TIMER
* pTimer
)
45 if (!pNextTimer
|| (pTimer
->expires
< pNextTimer
->expires
))
47 pTimer
->next
= pNextTimer
;
52 TIMER
* ptr
= pNextTimer
;
53 while (ptr
->next
&& (pTimer
->expires
>= ptr
->next
->expires
))
55 pTimer
->next
= ptr
->next
;
61 /***********************************************************************
64 * Remove the timer from the chain.
66 static void TIMER_RemoveTimer( TIMER
* pTimer
)
68 TIMER
**ppTimer
= &pNextTimer
;
70 while (*ppTimer
&& (*ppTimer
!= pTimer
)) ppTimer
= &(*ppTimer
)->next
;
71 if (*ppTimer
) *ppTimer
= pTimer
->next
;
73 if (!pTimer
->expires
) QUEUE_DecTimerCount( pTimer
->hq
);
77 /***********************************************************************
80 * Clear and remove a timer.
82 static void TIMER_ClearTimer( TIMER
* pTimer
)
84 TIMER_RemoveTimer( pTimer
);
89 WINPROC_FreeProc( pTimer
->proc
, WIN_PROC_TIMER
);
93 /***********************************************************************
96 void TIMER_SwitchQueue( HQUEUE16 old
, HQUEUE16
new )
98 TIMER
* pT
= pNextTimer
;
102 if (pT
->hq
== old
) pT
->hq
= new;
108 /***********************************************************************
109 * TIMER_RemoveWindowTimers
111 * Remove all timers for a given window.
113 void TIMER_RemoveWindowTimers( HWND32 hwnd
)
118 for (i
= NB_TIMERS
, pTimer
= TimersArray
; i
> 0; i
--, pTimer
++)
119 if ((pTimer
->hwnd
== hwnd
) && pTimer
->timeout
)
120 TIMER_ClearTimer( pTimer
);
124 /***********************************************************************
125 * TIMER_RemoveQueueTimers
127 * Remove all timers for a given queue.
129 void TIMER_RemoveQueueTimers( HQUEUE16 hqueue
)
134 for (i
= NB_TIMERS
, pTimer
= TimersArray
; i
> 0; i
--, pTimer
++)
135 if ((pTimer
->hq
== hqueue
) && pTimer
->timeout
)
136 TIMER_ClearTimer( pTimer
);
140 /***********************************************************************
141 * TIMER_RestartTimers
143 * Restart an expired timer.
145 static void TIMER_RestartTimer( TIMER
* pTimer
, DWORD curTime
)
147 TIMER_RemoveTimer( pTimer
);
148 pTimer
->expires
= curTime
+ pTimer
->timeout
;
149 TIMER_InsertTimer( pTimer
);
153 /***********************************************************************
154 * TIMER_GetNextExpiration
156 * Return next timer expiration time, or -1 if none.
158 LONG
TIMER_GetNextExpiration(void)
160 return pNextTimer
? EXPIRE_TIME( pNextTimer
, GetTickCount() ) : -1;
164 /***********************************************************************
167 * Mark expired timers and wake the appropriate queues.
169 void TIMER_ExpireTimers(void)
171 TIMER
*pTimer
= pNextTimer
;
172 DWORD curTime
= GetTickCount();
174 while (pTimer
&& !pTimer
->expires
) /* Skip already expired timers */
175 pTimer
= pTimer
->next
;
176 while (pTimer
&& (pTimer
->expires
<= curTime
))
179 QUEUE_IncTimerCount( pTimer
->hq
);
180 pTimer
= pTimer
->next
;
185 /***********************************************************************
188 * Build a message for an expired timer.
190 BOOL32
TIMER_GetTimerMsg( MSG32
*msg
, HWND32 hwnd
,
191 HQUEUE16 hQueue
, BOOL32 remove
)
193 TIMER
*pTimer
= pNextTimer
;
194 DWORD curTime
= GetTickCount();
196 if (hwnd
) /* Find first timer for this window */
197 while (pTimer
&& (pTimer
->hwnd
!= hwnd
)) pTimer
= pTimer
->next
;
198 else /* Find first timer for this queue */
199 while (pTimer
&& (pTimer
->hq
!= hQueue
)) pTimer
= pTimer
->next
;
201 if (!pTimer
|| (pTimer
->expires
> curTime
)) return FALSE
; /* No timer */
202 if (remove
) TIMER_RestartTimer( pTimer
, curTime
); /* Restart it */
204 TRACE(timer
, "Timer expired: %04x, %04x, %04x, %08lx\n",
205 pTimer
->hwnd
, pTimer
->msg
, pTimer
->id
, (DWORD
)pTimer
->proc
);
207 /* Build the message */
208 msg
->hwnd
= pTimer
->hwnd
;
209 msg
->message
= pTimer
->msg
;
210 msg
->wParam
= pTimer
->id
;
211 msg
->lParam
= (LONG
)pTimer
->proc
;
217 /***********************************************************************
220 static UINT32
TIMER_SetTimer( HWND32 hwnd
, UINT32 id
, UINT32 timeout
,
221 WNDPROC16 proc
, WINDOWPROCTYPE type
, BOOL32 sys
)
226 if (!timeout
) return 0;
228 /* Check if there's already a timer with the same hwnd and id */
230 for (i
= 0, pTimer
= TimersArray
; i
< NB_TIMERS
; i
++, pTimer
++)
231 if ((pTimer
->hwnd
== hwnd
) && (pTimer
->id
== id
) &&
232 (pTimer
->timeout
!= 0))
234 /* Got one: set new values and return */
235 TIMER_RemoveTimer( pTimer
);
236 pTimer
->timeout
= timeout
;
237 WINPROC_FreeProc( pTimer
->proc
, WIN_PROC_TIMER
);
238 pTimer
->proc
= (HWINDOWPROC
)0;
239 if (proc
) WINPROC_SetProc( &pTimer
->proc
, proc
,
240 type
, WIN_PROC_TIMER
);
241 pTimer
->expires
= GetTickCount() + timeout
;
242 TIMER_InsertTimer( pTimer
);
246 /* Find a free timer */
248 for (i
= 0, pTimer
= TimersArray
; i
< NB_TIMERS
; i
++, pTimer
++)
249 if (!pTimer
->timeout
) break;
251 if (i
>= NB_TIMERS
) return 0;
252 if (!sys
&& (i
>= NB_TIMERS
-NB_RESERVED_TIMERS
)) return 0;
253 if (!hwnd
) id
= i
+ 1;
258 pTimer
->hq
= (hwnd
) ? GetThreadQueue( GetWindowThreadProcessId( hwnd
, NULL
) )
260 pTimer
->msg
= sys
? WM_SYSTIMER
: WM_TIMER
;
262 pTimer
->timeout
= timeout
;
263 pTimer
->expires
= GetTickCount() + timeout
;
264 pTimer
->proc
= (HWINDOWPROC
)0;
265 if (proc
) WINPROC_SetProc( &pTimer
->proc
, proc
, type
, WIN_PROC_TIMER
);
266 TRACE(timer
, "Timer added: %p, %04x, %04x, %04x, %08lx\n",
267 pTimer
, pTimer
->hwnd
, pTimer
->msg
, pTimer
->id
,
268 (DWORD
)pTimer
->proc
);
269 TIMER_InsertTimer( pTimer
);
270 if (!id
) return TRUE
;
275 /***********************************************************************
278 static BOOL32
TIMER_KillTimer( HWND32 hwnd
, UINT32 id
, BOOL32 sys
)
285 for (i
= 0, pTimer
= TimersArray
; i
< NB_TIMERS
; i
++, pTimer
++)
286 if ((pTimer
->hwnd
== hwnd
) && (pTimer
->id
== id
) &&
287 (pTimer
->timeout
!= 0)) break;
288 if (i
>= NB_TIMERS
) return FALSE
;
289 if (!sys
&& (i
>= NB_TIMERS
-NB_RESERVED_TIMERS
)) return FALSE
;
290 if (!sys
&& (pTimer
->msg
!= WM_TIMER
)) return FALSE
;
291 else if (sys
&& (pTimer
->msg
!= WM_SYSTIMER
)) return FALSE
;
293 /* Delete the timer */
295 TIMER_ClearTimer( pTimer
);
300 /***********************************************************************
301 * SetTimer16 (USER.10)
303 UINT16 WINAPI
SetTimer16( HWND16 hwnd
, UINT16 id
, UINT16 timeout
,
306 TRACE(timer
, "%04x %d %d %08lx\n",
307 hwnd
, id
, timeout
, (LONG
)proc
);
308 return TIMER_SetTimer( hwnd
, id
, timeout
, (WNDPROC16
)proc
,
309 WIN_PROC_16
, FALSE
);
313 /***********************************************************************
314 * SetTimer32 (USER32.511)
316 UINT32 WINAPI
SetTimer32( HWND32 hwnd
, UINT32 id
, UINT32 timeout
,
319 TRACE(timer
, "%04x %d %d %08lx\n",
320 hwnd
, id
, timeout
, (LONG
)proc
);
321 return TIMER_SetTimer( hwnd
, id
, timeout
, (WNDPROC16
)proc
,
322 WIN_PROC_32A
, FALSE
);
326 /***********************************************************************
327 * SetSystemTimer16 (USER.11)
329 UINT16 WINAPI
SetSystemTimer16( HWND16 hwnd
, UINT16 id
, UINT16 timeout
,
332 TRACE(timer
, "%04x %d %d %08lx\n",
333 hwnd
, id
, timeout
, (LONG
)proc
);
334 return TIMER_SetTimer( hwnd
, id
, timeout
, (WNDPROC16
)proc
,
339 /***********************************************************************
340 * SetSystemTimer32 (USER32.509)
342 UINT32 WINAPI
SetSystemTimer32( HWND32 hwnd
, UINT32 id
, UINT32 timeout
,
345 TRACE(timer
, "%04x %d %d %08lx\n",
346 hwnd
, id
, timeout
, (LONG
)proc
);
347 return TIMER_SetTimer( hwnd
, id
, timeout
, (WNDPROC16
)proc
,
348 WIN_PROC_32A
, TRUE
);
352 /***********************************************************************
353 * KillTimer16 (USER.12)
355 BOOL16 WINAPI
KillTimer16( HWND16 hwnd
, UINT16 id
)
357 TRACE(timer
, "%04x %d\n", hwnd
, id
);
358 return TIMER_KillTimer( hwnd
, id
, FALSE
);
362 /***********************************************************************
363 * KillTimer32 (USER32.354)
365 BOOL32 WINAPI
KillTimer32( HWND32 hwnd
, UINT32 id
)
367 TRACE(timer
, "%04x %d\n", hwnd
, id
);
368 return TIMER_KillTimer( hwnd
, id
, FALSE
);
372 /***********************************************************************
373 * KillSystemTimer16 (USER.182)
375 BOOL16 WINAPI
KillSystemTimer16( HWND16 hwnd
, UINT16 id
)
377 TRACE(timer
, "%04x %d\n", hwnd
, id
);
378 return TIMER_KillTimer( hwnd
, id
, TRUE
);
382 /***********************************************************************
383 * KillSystemTimer32 (USER32.353)
385 BOOL32 WINAPI
KillSystemTimer32( HWND32 hwnd
, UINT32 id
)
387 TRACE(timer
, "%04x %d\n", hwnd
, id
);
388 return TIMER_KillTimer( hwnd
, id
, TRUE
);