Auto-commit of generated files.
[emacs.git] / src / atimer.c
blobd67e1375f9a742a972ea4c2f7b60527576983c82
1 /* Asynchronous timers.
2 Copyright (C) 2000-2012 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19 #include <config.h>
20 #include <signal.h>
21 #include <stdio.h>
22 #include <setjmp.h>
23 #include "lisp.h"
24 #include "syssignal.h"
25 #include "systime.h"
26 #include "blockinput.h"
27 #include "atimer.h"
28 #include <unistd.h>
30 /* Free-list of atimer structures. */
32 static struct atimer *free_atimers;
34 /* List of currently not running timers due to a call to
35 lock_atimer. */
37 static struct atimer *stopped_atimers;
39 /* List of active atimers, sorted by expiration time. The timer that
40 will become ripe next is always at the front of this list. */
42 static struct atimer *atimers;
44 /* Non-zero means alarm_signal_handler has found ripe timers but
45 interrupt_input_blocked was non-zero. In this case, timer
46 functions are not called until the next UNBLOCK_INPUT because timer
47 functions are expected to call X, and X cannot be assumed to be
48 reentrant. */
50 int pending_atimers;
52 /* Block/unblock SIGALRM. */
54 #define BLOCK_ATIMERS sigblock (sigmask (SIGALRM))
55 #define UNBLOCK_ATIMERS sigunblock (sigmask (SIGALRM))
57 /* Function prototypes. */
59 static void set_alarm (void);
60 static void schedule_atimer (struct atimer *);
61 static struct atimer *append_atimer_lists (struct atimer *,
62 struct atimer *);
63 static void alarm_signal_handler (int signo);
66 /* Start a new atimer of type TYPE. TIME specifies when the timer is
67 ripe. FN is the function to call when the timer fires.
68 CLIENT_DATA is stored in the client_data member of the atimer
69 structure returned and so made available to FN when it is called.
71 If TYPE is ATIMER_ABSOLUTE, TIME is the absolute time at which the
72 timer fires.
74 If TYPE is ATIMER_RELATIVE, the timer is ripe TIME s/us in the
75 future.
77 In both cases, the timer is automatically freed after it has fired.
79 If TYPE is ATIMER_CONTINUOUS, the timer fires every TIME s/us.
81 Value is a pointer to the atimer started. It can be used in calls
82 to cancel_atimer; don't free it yourself. */
84 struct atimer *
85 start_atimer (enum atimer_type type, EMACS_TIME timestamp, atimer_callback fn,
86 void *client_data)
88 struct atimer *t;
90 /* Round TIME up to the next full second if we don't have
91 itimers. */
92 #ifndef HAVE_SETITIMER
93 if (EMACS_NSECS (timestamp) != 0
94 && EMACS_SECS (timestamp) < TYPE_MAXIMUM (time_t))
95 timestamp = make_emacs_time (EMACS_SECS (timestamp) + 1, 0);
96 #endif /* not HAVE_SETITIMER */
98 /* Get an atimer structure from the free-list, or allocate
99 a new one. */
100 if (free_atimers)
102 t = free_atimers;
103 free_atimers = t->next;
105 else
106 t = xmalloc (sizeof *t);
108 /* Fill the atimer structure. */
109 memset (t, 0, sizeof *t);
110 t->type = type;
111 t->fn = fn;
112 t->client_data = client_data;
114 BLOCK_ATIMERS;
116 /* Compute the timer's expiration time. */
117 switch (type)
119 case ATIMER_ABSOLUTE:
120 t->expiration = timestamp;
121 break;
123 case ATIMER_RELATIVE:
124 t->expiration = add_emacs_time (current_emacs_time (), timestamp);
125 break;
127 case ATIMER_CONTINUOUS:
128 t->expiration = add_emacs_time (current_emacs_time (), timestamp);
129 t->interval = timestamp;
130 break;
133 /* Insert the timer in the list of active atimers. */
134 schedule_atimer (t);
135 UNBLOCK_ATIMERS;
137 /* Arrange for a SIGALRM at the time the next atimer is ripe. */
138 set_alarm ();
140 return t;
144 /* Cancel and free atimer TIMER. */
146 void
147 cancel_atimer (struct atimer *timer)
149 int i;
151 BLOCK_ATIMERS;
153 for (i = 0; i < 2; ++i)
155 struct atimer *t, *prev;
156 struct atimer **list = i ? &stopped_atimers : &atimers;
158 /* See if TIMER is active or stopped. */
159 for (t = *list, prev = NULL; t && t != timer; prev = t, t = t->next)
162 /* If it is, take it off its list, and put in on the free-list.
163 We don't bother to arrange for setting a different alarm time,
164 since a too early one doesn't hurt. */
165 if (t)
167 if (prev)
168 prev->next = t->next;
169 else
170 *list = t->next;
172 t->next = free_atimers;
173 free_atimers = t;
174 break;
178 UNBLOCK_ATIMERS;
182 /* Append two lists of atimers LIST_1 and LIST_2 and return the
183 result list. */
185 static struct atimer *
186 append_atimer_lists (struct atimer *list_1, struct atimer *list_2)
188 if (list_1 == NULL)
189 return list_2;
190 else if (list_2 == NULL)
191 return list_1;
192 else
194 struct atimer *p;
196 for (p = list_1; p->next; p = p->next)
198 p->next = list_2;
199 return list_1;
204 /* Stop all timers except timer T. T null means stop all timers. */
206 void
207 stop_other_atimers (struct atimer *t)
209 BLOCK_ATIMERS;
211 if (t)
213 struct atimer *p, *prev;
215 /* See if T is active. */
216 for (p = atimers, prev = NULL; p && p != t; prev = p, p = p->next)
219 if (p == t)
221 if (prev)
222 prev->next = t->next;
223 else
224 atimers = t->next;
225 t->next = NULL;
227 else
228 /* T is not active. Let's handle this like T == 0. */
229 t = NULL;
232 stopped_atimers = append_atimer_lists (atimers, stopped_atimers);
233 atimers = t;
234 UNBLOCK_ATIMERS;
238 /* Run all timers again, if some have been stopped with a call to
239 stop_other_atimers. */
241 static void
242 run_all_atimers (void)
244 if (stopped_atimers)
246 struct atimer *t = atimers;
247 struct atimer *next;
249 BLOCK_ATIMERS;
250 atimers = stopped_atimers;
251 stopped_atimers = NULL;
253 while (t)
255 next = t->next;
256 schedule_atimer (t);
257 t = next;
260 UNBLOCK_ATIMERS;
265 /* A version of run_all_atimers suitable for a record_unwind_protect. */
267 Lisp_Object
268 unwind_stop_other_atimers (Lisp_Object dummy)
270 run_all_atimers ();
271 return Qnil;
275 /* Arrange for a SIGALRM to arrive when the next timer is ripe. */
277 static void
278 set_alarm (void)
280 if (atimers)
282 #ifdef HAVE_SETITIMER
283 struct itimerval it;
284 #endif
286 /* Determine s/us till the next timer is ripe. */
287 EMACS_TIME now = current_emacs_time ();
289 /* Don't set the interval to 0; this disables the timer. */
290 EMACS_TIME interval = (EMACS_TIME_LE (atimers->expiration, now)
291 ? make_emacs_time (0, 1000 * 1000)
292 : sub_emacs_time (atimers->expiration, now));
294 #ifdef HAVE_SETITIMER
296 memset (&it, 0, sizeof it);
297 it.it_value = make_timeval (interval);
298 setitimer (ITIMER_REAL, &it, 0);
299 #else /* not HAVE_SETITIMER */
300 alarm (max (EMACS_SECS (interval), 1));
301 #endif /* not HAVE_SETITIMER */
306 /* Insert timer T into the list of active atimers `atimers', keeping
307 the list sorted by expiration time. T must not be in this list
308 already. */
310 static void
311 schedule_atimer (struct atimer *t)
313 struct atimer *a = atimers, *prev = NULL;
315 /* Look for the first atimer that is ripe after T. */
316 while (a && EMACS_TIME_GT (t->expiration, a->expiration))
317 prev = a, a = a->next;
319 /* Insert T in front of the atimer found, if any. */
320 if (prev)
321 prev->next = t;
322 else
323 atimers = t;
325 t->next = a;
328 static void
329 run_timers (void)
331 EMACS_TIME now;
333 while (atimers
334 && (pending_atimers = interrupt_input_blocked) == 0
335 && (now = current_emacs_time (),
336 EMACS_TIME_LE (atimers->expiration, now)))
338 struct atimer *t;
340 t = atimers;
341 atimers = atimers->next;
342 t->fn (t);
344 if (t->type == ATIMER_CONTINUOUS)
346 t->expiration = add_emacs_time (now, t->interval);
347 schedule_atimer (t);
349 else
351 t->next = free_atimers;
352 free_atimers = t;
356 if (! atimers)
357 pending_atimers = 0;
359 #ifdef SYNC_INPUT
360 if (pending_atimers)
361 pending_signals = 1;
362 else
364 pending_signals = interrupt_input_pending;
365 set_alarm ();
367 #else
368 if (! pending_atimers)
369 set_alarm ();
370 #endif
374 /* Signal handler for SIGALRM. SIGNO is the signal number, i.e.
375 SIGALRM. */
377 void
378 alarm_signal_handler (int signo)
380 #ifndef SYNC_INPUT
381 SIGNAL_THREAD_CHECK (signo);
382 #endif
384 pending_atimers = 1;
385 #ifdef SYNC_INPUT
386 pending_signals = 1;
387 #else
388 run_timers ();
389 #endif
393 /* Call alarm_signal_handler for pending timers. */
395 void
396 do_pending_atimers (void)
398 if (pending_atimers)
400 BLOCK_ATIMERS;
401 run_timers ();
402 UNBLOCK_ATIMERS;
407 /* Turn alarms on/off. This seems to be temporarily necessary on
408 some systems like HPUX (see process.c). */
410 void
411 turn_on_atimers (int on)
413 if (on)
415 signal (SIGALRM, alarm_signal_handler);
416 set_alarm ();
418 else
419 alarm (0);
423 void
424 init_atimer (void)
426 free_atimers = stopped_atimers = atimers = NULL;
427 pending_atimers = 0;
428 /* pending_signals is initialized in init_keyboard.*/
429 signal (SIGALRM, alarm_signal_handler);