Merge from emacs-24; up to 2014-06-06T02:22:40Z!monnier@iro.umontreal.ca
[emacs.git] / src / atimer.c
blobe457a7fcf1c37093cc0aaad5f58061b9bb14809a
1 /* Asynchronous timers.
2 Copyright (C) 2000-2014 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 <stdio.h>
22 #include "lisp.h"
23 #include "syssignal.h"
24 #include "systime.h"
25 #include "blockinput.h"
26 #include "atimer.h"
27 #include <unistd.h>
29 /* Free-list of atimer structures. */
31 static struct atimer *free_atimers;
33 /* List of currently not running timers due to a call to
34 lock_atimer. */
36 static struct atimer *stopped_atimers;
38 /* List of active atimers, sorted by expiration time. The timer that
39 will become ripe next is always at the front of this list. */
41 static struct atimer *atimers;
43 /* The alarm timer and whether it was properly initialized, if
44 POSIX timers are available. */
45 #ifdef HAVE_ITIMERSPEC
46 static timer_t alarm_timer;
47 static bool alarm_timer_ok;
48 #endif
50 /* Block/unblock SIGALRM. */
52 static void
53 block_atimers (sigset_t *oldset)
55 sigset_t blocked;
56 sigemptyset (&blocked);
57 sigaddset (&blocked, SIGALRM);
58 sigaddset (&blocked, SIGINT);
59 pthread_sigmask (SIG_BLOCK, &blocked, oldset);
61 static void
62 unblock_atimers (sigset_t const *oldset)
64 pthread_sigmask (SIG_SETMASK, oldset, 0);
67 /* Function prototypes. */
69 static void set_alarm (void);
70 static void schedule_atimer (struct atimer *);
71 static struct atimer *append_atimer_lists (struct atimer *,
72 struct atimer *);
74 /* Start a new atimer of type TYPE. TIME specifies when the timer is
75 ripe. FN is the function to call when the timer fires.
76 CLIENT_DATA is stored in the client_data member of the atimer
77 structure returned and so made available to FN when it is called.
79 If TYPE is ATIMER_ABSOLUTE, TIME is the absolute time at which the
80 timer fires.
82 If TYPE is ATIMER_RELATIVE, the timer is ripe TIME s/us in the
83 future.
85 In both cases, the timer is automatically freed after it has fired.
87 If TYPE is ATIMER_CONTINUOUS, the timer fires every TIME s/us.
89 Value is a pointer to the atimer started. It can be used in calls
90 to cancel_atimer; don't free it yourself. */
92 struct atimer *
93 start_atimer (enum atimer_type type, struct timespec timestamp,
94 atimer_callback fn, void *client_data)
96 struct atimer *t;
97 sigset_t oldset;
99 /* Round TIME up to the next full second if we don't have
100 itimers. */
101 #ifndef HAVE_SETITIMER
102 if (timestamp.tv_nsec != 0 && timestamp.tv_sec < TYPE_MAXIMUM (time_t))
103 timestamp = make_timespec (timestamp.tv_sec + 1, 0);
104 #endif /* not HAVE_SETITIMER */
106 /* Get an atimer structure from the free-list, or allocate
107 a new one. */
108 if (free_atimers)
110 t = free_atimers;
111 free_atimers = t->next;
113 else
114 t = xmalloc (sizeof *t);
116 /* Fill the atimer structure. */
117 memset (t, 0, sizeof *t);
118 t->type = type;
119 t->fn = fn;
120 t->client_data = client_data;
122 block_atimers (&oldset);
124 /* Compute the timer's expiration time. */
125 switch (type)
127 case ATIMER_ABSOLUTE:
128 t->expiration = timestamp;
129 break;
131 case ATIMER_RELATIVE:
132 t->expiration = timespec_add (current_timespec (), timestamp);
133 break;
135 case ATIMER_CONTINUOUS:
136 t->expiration = timespec_add (current_timespec (), timestamp);
137 t->interval = timestamp;
138 break;
141 /* Insert the timer in the list of active atimers. */
142 schedule_atimer (t);
143 unblock_atimers (&oldset);
145 /* Arrange for a SIGALRM at the time the next atimer is ripe. */
146 set_alarm ();
148 return t;
152 /* Cancel and free atimer TIMER. */
154 void
155 cancel_atimer (struct atimer *timer)
157 int i;
158 sigset_t oldset;
160 block_atimers (&oldset);
162 for (i = 0; i < 2; ++i)
164 struct atimer *t, *prev;
165 struct atimer **list = i ? &stopped_atimers : &atimers;
167 /* See if TIMER is active or stopped. */
168 for (t = *list, prev = NULL; t && t != timer; prev = t, t = t->next)
171 /* If it is, take it off its list, and put in on the free-list.
172 We don't bother to arrange for setting a different alarm time,
173 since a too early one doesn't hurt. */
174 if (t)
176 if (prev)
177 prev->next = t->next;
178 else
179 *list = t->next;
181 t->next = free_atimers;
182 free_atimers = t;
183 break;
187 unblock_atimers (&oldset);
191 /* Append two lists of atimers LIST_1 and LIST_2 and return the
192 result list. */
194 static struct atimer *
195 append_atimer_lists (struct atimer *list_1, struct atimer *list_2)
197 if (list_1 == NULL)
198 return list_2;
199 else if (list_2 == NULL)
200 return list_1;
201 else
203 struct atimer *p;
205 for (p = list_1; p->next; p = p->next)
207 p->next = list_2;
208 return list_1;
213 /* Stop all timers except timer T. T null means stop all timers. */
215 void
216 stop_other_atimers (struct atimer *t)
218 sigset_t oldset;
219 block_atimers (&oldset);
221 if (t)
223 struct atimer *p, *prev;
225 /* See if T is active. */
226 for (p = atimers, prev = NULL; p && p != t; prev = p, p = p->next)
229 if (p == t)
231 if (prev)
232 prev->next = t->next;
233 else
234 atimers = t->next;
235 t->next = NULL;
237 else
238 /* T is not active. Let's handle this like T == 0. */
239 t = NULL;
242 stopped_atimers = append_atimer_lists (atimers, stopped_atimers);
243 atimers = t;
244 unblock_atimers (&oldset);
248 /* Run all timers again, if some have been stopped with a call to
249 stop_other_atimers. */
251 void
252 run_all_atimers (void)
254 if (stopped_atimers)
256 struct atimer *t = atimers;
257 struct atimer *next;
258 sigset_t oldset;
260 block_atimers (&oldset);
261 atimers = stopped_atimers;
262 stopped_atimers = NULL;
264 while (t)
266 next = t->next;
267 schedule_atimer (t);
268 t = next;
271 unblock_atimers (&oldset);
276 /* Arrange for a SIGALRM to arrive when the next timer is ripe. */
278 static void
279 set_alarm (void)
281 if (atimers)
283 #ifdef HAVE_SETITIMER
284 struct itimerval it;
285 #endif
286 struct timespec now, interval;
288 #ifdef HAVE_ITIMERSPEC
289 if (alarm_timer_ok)
291 struct itimerspec ispec;
292 ispec.it_value = atimers->expiration;
293 ispec.it_interval.tv_sec = ispec.it_interval.tv_nsec = 0;
294 if (timer_settime (alarm_timer, 0, &ispec, 0) == 0)
295 return;
297 #endif
299 /* Determine interval till the next timer is ripe.
300 Don't set the interval to 0; this disables the timer. */
301 now = current_timespec ();
302 interval = (timespec_cmp (atimers->expiration, now) <= 0
303 ? make_timespec (0, 1000 * 1000)
304 : timespec_sub (atimers->expiration, now));
306 #ifdef HAVE_SETITIMER
308 memset (&it, 0, sizeof it);
309 it.it_value = make_timeval (interval);
310 setitimer (ITIMER_REAL, &it, 0);
311 #else /* not HAVE_SETITIMER */
312 alarm (max (interval.tv_sec, 1));
313 #endif /* not HAVE_SETITIMER */
318 /* Insert timer T into the list of active atimers `atimers', keeping
319 the list sorted by expiration time. T must not be in this list
320 already. */
322 static void
323 schedule_atimer (struct atimer *t)
325 struct atimer *a = atimers, *prev = NULL;
327 /* Look for the first atimer that is ripe after T. */
328 while (a && timespec_cmp (a->expiration, t->expiration) < 0)
329 prev = a, a = a->next;
331 /* Insert T in front of the atimer found, if any. */
332 if (prev)
333 prev->next = t;
334 else
335 atimers = t;
337 t->next = a;
340 static void
341 run_timers (void)
343 struct timespec now = current_timespec ();
345 while (atimers && timespec_cmp (atimers->expiration, now) <= 0)
347 struct atimer *t = atimers;
348 atimers = atimers->next;
349 t->fn (t);
351 if (t->type == ATIMER_CONTINUOUS)
353 t->expiration = timespec_add (now, t->interval);
354 schedule_atimer (t);
356 else
358 t->next = free_atimers;
359 free_atimers = t;
363 set_alarm ();
367 /* Signal handler for SIGALRM. SIGNO is the signal number, i.e.
368 SIGALRM. */
370 static void
371 handle_alarm_signal (int sig)
373 pending_signals = 1;
377 /* Do pending timers. */
379 void
380 do_pending_atimers (void)
382 if (atimers)
384 sigset_t oldset;
385 block_atimers (&oldset);
386 run_timers ();
387 unblock_atimers (&oldset);
392 /* Turn alarms on/off. This seems to be temporarily necessary on
393 some systems like HPUX (see process.c). */
395 void
396 turn_on_atimers (bool on)
398 if (on)
399 set_alarm ();
400 else
401 alarm (0);
405 void
406 init_atimer (void)
408 #ifdef HAVE_ITIMERSPEC
409 struct sigevent sigev;
410 sigev.sigev_notify = SIGEV_SIGNAL;
411 sigev.sigev_signo = SIGALRM;
412 sigev.sigev_value.sival_ptr = &alarm_timer;
413 alarm_timer_ok = timer_create (CLOCK_REALTIME, &sigev, &alarm_timer) == 0;
414 #endif
415 free_atimers = stopped_atimers = atimers = NULL;
417 /* pending_signals is initialized in init_keyboard. */
418 struct sigaction action;
419 emacs_sigaction_init (&action, handle_alarm_signal);
420 sigaction (SIGALRM, &action, 0);