4 * Copyright 1993 Alexandre Julliard
10 /* #define DEBUG_TIMER */
14 typedef struct tagTIMER
18 WORD msg
; /* WM_TIMER or WM_SYSTIMER */
21 struct tagTIMER
*next
;
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
;
76 /***********************************************************************
79 * Clear and remove a timer.
81 static void TIMER_ClearTimer( TIMER
* pTimer
)
83 TIMER_RemoveTimer( pTimer
);
84 QUEUE_DecTimerCount( pTimer
->hq
);
93 /***********************************************************************
96 void TIMER_SwitchQueue(HQUEUE old
, HQUEUE
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( HWND 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( HQUEUE 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 /***********************************************************************
156 * Return next timer expiration time, or -1 if none.
158 LONG
TIMER_GetNextExp(void)
160 return pNextTimer
? EXPIRE_TIME( pNextTimer
, GetTickCount() ) : -1;
164 /***********************************************************************
167 * Check whether a timer has expired, and create a message if necessary.
168 * Otherwise, return time until next timer expiration in 'next'.
169 * If 'hwnd' is not NULL, only consider timers for this window.
170 * If 'remove' is TRUE, remove all expired timers up to the returned one.
172 BOOL
TIMER_CheckTimer( LONG
*next
, MSG16
*msg
, HWND hwnd
, BOOL remove
)
174 TIMER
* pTimer
= pNextTimer
;
175 DWORD curTime
= GetTickCount();
177 if (hwnd
) /* Find first timer for this window */
178 while (pTimer
&& (pTimer
->hwnd
!= hwnd
)) pTimer
= pTimer
->next
;
180 if (!pTimer
) *next
= -1;
181 else *next
= EXPIRE_TIME( pTimer
, curTime
);
182 if (*next
!= 0) return FALSE
; /* No timer expired */
184 if (remove
) /* Restart all timers before pTimer, and then pTimer itself */
186 while (pNextTimer
!= pTimer
) TIMER_RestartTimer( pNextTimer
, curTime
);
187 TIMER_RestartTimer( pTimer
, curTime
);
190 dprintf_timer(stddeb
, "Timer expired: %p, %04x, %04x, %04x, %08lx\n",
191 pTimer
, pTimer
->hwnd
, pTimer
->msg
, pTimer
->id
, (DWORD
)pTimer
->proc
);
192 /* Build the message */
193 msg
->hwnd
= pTimer
->hwnd
;
194 msg
->message
= pTimer
->msg
;
195 msg
->wParam
= pTimer
->id
;
196 msg
->lParam
= (LONG
)pTimer
->proc
;
202 /***********************************************************************
205 static WORD
TIMER_SetTimer( HWND hwnd
, WORD id
, WORD timeout
,
206 FARPROC proc
, BOOL sys
)
211 if (!timeout
) return 0;
212 /* if (!hwnd && !proc) return 0; */
214 /* Check if there's already a timer with the same hwnd and id */
216 for (i
= 0, pTimer
= TimersArray
; i
< NB_TIMERS
; i
++, pTimer
++)
217 if ((pTimer
->hwnd
== hwnd
) && (pTimer
->id
== id
) &&
218 (pTimer
->timeout
!= 0))
220 /* Got one: set new values and return */
221 pTimer
->timeout
= timeout
;
222 pTimer
->expires
= GetTickCount() + timeout
;
224 TIMER_RemoveTimer( pTimer
);
225 TIMER_InsertTimer( pTimer
);
229 /* Find a free timer */
231 for (i
= 0, pTimer
= TimersArray
; i
< NB_TIMERS
; i
++, pTimer
++)
232 if (!pTimer
->timeout
) break;
234 if (i
>= NB_TIMERS
) return 0;
235 if (!sys
&& (i
>= NB_TIMERS
-NB_RESERVED_TIMERS
)) return 0;
236 if (!hwnd
) id
= i
+ 1;
241 pTimer
->hq
= (hwnd
) ? GetTaskQueue( GetWindowTask( hwnd
) )
243 pTimer
->msg
= sys
? WM_SYSTIMER
: WM_TIMER
;
245 pTimer
->timeout
= timeout
;
246 pTimer
->expires
= GetTickCount() + timeout
;
248 dprintf_timer(stddeb
, "Timer added: %p, %04x, %04x, %04x, %08lx\n",
249 pTimer
, pTimer
->hwnd
, pTimer
->msg
, pTimer
->id
, (DWORD
)pTimer
->proc
);
250 TIMER_InsertTimer( pTimer
);
251 QUEUE_IncTimerCount( pTimer
->hq
);
259 /***********************************************************************
262 static BOOL
TIMER_KillTimer( HWND hwnd
, WORD id
, BOOL sys
)
269 for (i
= 0, pTimer
= TimersArray
; i
< NB_TIMERS
; i
++, pTimer
++)
270 if ((pTimer
->hwnd
== hwnd
) && (pTimer
->id
== id
) &&
271 (pTimer
->timeout
!= 0)) break;
272 if (i
>= NB_TIMERS
) return FALSE
;
273 if (!sys
&& (i
>= NB_TIMERS
-NB_RESERVED_TIMERS
)) return FALSE
;
274 if (!sys
&& (pTimer
->msg
!= WM_TIMER
)) return FALSE
;
275 else if (sys
&& (pTimer
->msg
!= WM_SYSTIMER
)) return FALSE
;
277 /* Delete the timer */
279 TIMER_ClearTimer( pTimer
);
284 /***********************************************************************
287 WORD
SetTimer( HWND hwnd
, WORD id
, WORD timeout
, FARPROC proc
)
289 dprintf_timer(stddeb
, "SetTimer: %04x %d %d %08lx\n", hwnd
, id
, timeout
, (LONG
)proc
);
290 return TIMER_SetTimer( hwnd
, id
, timeout
, proc
, FALSE
);
294 /***********************************************************************
295 * SetSystemTimer (USER.11)
297 WORD
SetSystemTimer( HWND hwnd
, WORD id
, WORD timeout
, FARPROC proc
)
299 dprintf_timer(stddeb
, "SetSystemTimer: %04x %d %d %08lx\n",
300 hwnd
, id
, timeout
, (LONG
)proc
);
301 return TIMER_SetTimer( hwnd
, id
, timeout
, proc
, TRUE
);
305 /***********************************************************************
306 * KillTimer (USER.12)
308 BOOL
KillTimer( HWND hwnd
, WORD id
)
310 dprintf_timer(stddeb
, "KillTimer: %04x %d\n", hwnd
, id
);
311 return TIMER_KillTimer( hwnd
, id
, FALSE
);
315 /***********************************************************************
316 * KillSystemTimer (USER.182)
318 BOOL
KillSystemTimer( HWND hwnd
, WORD id
)
320 dprintf_timer(stddeb
, "KillSystemTimer: %04x %d\n", hwnd
, id
);
321 return TIMER_KillTimer( hwnd
, id
, TRUE
);