Release 960606
[wine.git] / windows / timer.c
blob189fc36be70b165573a35ca94c3f3f1c555f5a10
1 /*
2 * Timer functions
4 * Copyright 1993 Alexandre Julliard
5 */
7 #include "windows.h"
8 #include "queue.h"
9 #include "stddebug.h"
10 /* #define DEBUG_TIMER */
11 #include "debug.h"
14 typedef struct tagTIMER
16 HWND hwnd;
17 HQUEUE hq;
18 WORD msg; /* WM_TIMER or WM_SYSTIMER */
19 WORD id;
20 WORD timeout;
21 struct tagTIMER *next;
22 DWORD expires;
23 FARPROC proc;
24 } TIMER;
26 #define NB_TIMERS 34
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 /***********************************************************************
39 * TIMER_InsertTimer
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;
48 pNextTimer = pTimer;
50 else
52 TIMER * ptr = pNextTimer;
53 while (ptr->next && (pTimer->expires >= ptr->next->expires))
54 ptr = ptr->next;
55 pTimer->next = ptr->next;
56 ptr->next = pTimer;
61 /***********************************************************************
62 * TIMER_RemoveTimer
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;
72 pTimer->next = NULL;
76 /***********************************************************************
77 * TIMER_ClearTimer
79 * Clear and remove a timer.
81 static void TIMER_ClearTimer( TIMER * pTimer )
83 TIMER_RemoveTimer( pTimer );
84 QUEUE_DecTimerCount( pTimer->hq );
85 pTimer->hwnd = 0;
86 pTimer->msg = 0;
87 pTimer->id = 0;
88 pTimer->timeout = 0;
89 pTimer->proc = 0;
93 /***********************************************************************
94 * TIMER_SwitchQueue
96 void TIMER_SwitchQueue(HQUEUE old, HQUEUE new)
98 TIMER * pT = pNextTimer;
100 while (pT)
102 if (pT->hq == old) pT->hq = new;
103 pT = pT->next;
108 /***********************************************************************
109 * TIMER_RemoveWindowTimers
111 * Remove all timers for a given window.
113 void TIMER_RemoveWindowTimers( HWND hwnd )
115 int i;
116 TIMER *pTimer;
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 )
131 int i;
132 TIMER *pTimer;
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_GetNextExp
156 * Return next timer expiration time, or -1 if none.
158 LONG TIMER_GetNextExp(void)
160 return pNextTimer ? EXPIRE_TIME( pNextTimer, GetTickCount() ) : -1;
164 /***********************************************************************
165 * TIMER_CheckTimer
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, MSG *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;
197 msg->time = curTime;
198 return TRUE;
202 /***********************************************************************
203 * TIMER_SetTimer
205 static WORD TIMER_SetTimer( HWND hwnd, WORD id, WORD timeout,
206 FARPROC proc, BOOL sys )
208 int i;
209 TIMER * pTimer;
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;
223 pTimer->proc = proc;
224 TIMER_RemoveTimer( pTimer );
225 TIMER_InsertTimer( pTimer );
226 return id;
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;
238 /* Add the timer */
240 pTimer->hwnd = hwnd;
241 pTimer->hq = (hwnd) ? GetTaskQueue( GetWindowTask( hwnd ) )
242 : GetTaskQueue( 0 );
243 pTimer->msg = sys ? WM_SYSTIMER : WM_TIMER;
244 pTimer->id = id;
245 pTimer->timeout = timeout;
246 pTimer->expires = GetTickCount() + timeout;
247 pTimer->proc = proc;
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 );
252 if (!id)
253 return TRUE;
254 else
255 return id;
259 /***********************************************************************
260 * TIMER_KillTimer
262 static BOOL TIMER_KillTimer( HWND hwnd, WORD id, BOOL sys )
264 int i;
265 TIMER * pTimer;
267 /* Find the timer */
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 );
280 return TRUE;
284 /***********************************************************************
285 * SetTimer (USER.10)
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 );