* gdb.texinfo (Command Syntax): Document C-o binding.
[deliverable/binutils-gdb.git] / gdb / event-loop.c
CommitLineData
b5a0ac70 1/* Event loop machinery for GDB, the GNU debugger.
b6ba6518 2 Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
b5a0ac70
SS
3 Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
c5aa993b
JM
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
b5a0ac70 21
b5a0ac70 22#include "defs.h"
9e0b60a8 23#include "event-loop.h"
c2c6d25f 24#include "event-top.h"
409a3f64 25
b5a0ac70 26#ifdef HAVE_POLL
409a3f64 27#if defined (HAVE_POLL_H)
9e0b60a8 28#include <poll.h>
409a3f64
AC
29#elif defined (HAVE_SYS_POLL_H)
30#include <sys/poll.h>
31#endif
44f45770 32#endif
409a3f64 33
9e0b60a8 34#include <sys/types.h>
27b82ed2 35#include "gdb_string.h"
b5a0ac70 36#include <errno.h>
c2c6d25f
JM
37#include <sys/time.h>
38
c2c6d25f
JM
39typedef struct gdb_event gdb_event;
40typedef void (event_handler_func) (int);
41
42/* Event for the GDB event system. Events are queued by calling
43 async_queue_event and serviced later on by gdb_do_one_event. An
44 event can be, for instance, a file descriptor becoming ready to be
45 read. Servicing an event simply means that the procedure PROC will
46 be called. We have 2 queues, one for file handlers that we listen
47 to in the event loop, and one for the file handlers+events that are
48 ready. The procedure PROC associated with each event is always the
49 same (handle_file_event). Its duty is to invoke the handler
50 associated with the file descriptor whose state change generated
fd0e48ca 51 the event, plus doing other cleanups and such. */
c2c6d25f
JM
52
53struct gdb_event
54 {
55 event_handler_func *proc; /* Procedure to call to service this event. */
56 int fd; /* File descriptor that is ready. */
57 struct gdb_event *next_event; /* Next in list of events or NULL. */
58 };
59
60/* Information about each file descriptor we register with the event
61 loop. */
62
63typedef struct file_handler
64 {
65 int fd; /* File descriptor. */
66 int mask; /* Events we want to monitor: POLLIN, etc. */
67 int ready_mask; /* Events that have been seen since
68 the last time. */
6426a772 69 handler_func *proc; /* Procedure to call when fd is ready. */
c2c6d25f 70 gdb_client_data client_data; /* Argument to pass to proc. */
6426a772 71 int error; /* Was an error detected on this fd? */
c2c6d25f
JM
72 struct file_handler *next_file; /* Next registered file descriptor. */
73 }
74file_handler;
75
76/* PROC is a function to be invoked when the READY flag is set. This
77 happens when there has been a signal and the corresponding signal
78 handler has 'triggered' this async_signal_handler for
79 execution. The actual work to be done in response to a signal will
80 be carried out by PROC at a later time, within process_event. This
81 provides a deferred execution of signal handlers.
82 Async_init_signals takes care of setting up such an
83 asyn_signal_handler for each interesting signal. */
84typedef struct async_signal_handler
85 {
86 int ready; /* If ready, call this handler from the main event loop,
87 using invoke_async_handler. */
88 struct async_signal_handler *next_handler; /* Ptr to next handler */
6426a772 89 sig_handler_func *proc; /* Function to call to do the work */
c2c6d25f
JM
90 gdb_client_data client_data; /* Argument to async_handler_func */
91 }
92async_signal_handler;
93
b5a0ac70
SS
94
95/* Event queue:
96 - the first event in the queue is the head of the queue.
97 It will be the next to be serviced.
98 - the last event in the queue
99
100 Events can be inserted at the front of the queue or at the end of
101 the queue. Events will be extracted from the queue for processing
102 starting from the head. Therefore, events inserted at the head of
adf40b2e 103 the queue will be processed in a last in first out fashion, while
b5a0ac70
SS
104 those inserted at the tail of the queue will be processed in a first
105 in first out manner. All the fields are NULL if the queue is
106 empty. */
107
108static struct
109 {
110 gdb_event *first_event; /* First pending event */
111 gdb_event *last_event; /* Last pending event */
112 }
113event_queue;
114
115/* Gdb_notifier is just a list of file descriptors gdb is interested in.
116 These are the input file descriptor, and the target file
117 descriptor. We have two flavors of the notifier, one for platforms
118 that have the POLL function, the other for those that don't, and
119 only support SELECT. Each of the elements in the gdb_notifier list is
120 basically a description of what kind of events gdb is interested
121 in, for each fd. */
122
392a587b 123/* As of 1999-04-30 only the input file descriptor is registered with the
b5a0ac70
SS
124 event loop. */
125
44f45770 126/* Do we use poll or select ? */
b5a0ac70 127#ifdef HAVE_POLL
44f45770
EZ
128#define USE_POLL 1
129#else
130#define USE_POLL 0
131#endif /* HAVE_POLL */
132
133static unsigned char use_poll = USE_POLL;
b5a0ac70
SS
134
135static struct
136 {
137 /* Ptr to head of file handler list. */
138 file_handler *first_file_handler;
139
44f45770 140#ifdef HAVE_POLL
b5a0ac70
SS
141 /* Ptr to array of pollfd structures. */
142 struct pollfd *poll_fds;
143
c2c6d25f 144 /* Timeout in milliseconds for calls to poll(). */
44f45770
EZ
145 int poll_timeout;
146#endif
b5a0ac70
SS
147
148 /* Masks to be used in the next call to select.
149 Bits are set in response to calls to create_file_handler. */
58a2c44a 150 fd_set check_masks[3];
b5a0ac70
SS
151
152 /* What file descriptors were found ready by select. */
58a2c44a 153 fd_set ready_masks[3];
b5a0ac70 154
44f45770
EZ
155 /* Number of file descriptors to monitor. (for poll) */
156 /* Number of valid bits (highest fd value + 1). (for select) */
b5a0ac70
SS
157 int num_fds;
158
c2c6d25f 159 /* Time structure for calls to select(). */
44f45770 160 struct timeval select_timeout;
c2c6d25f 161
44f45770 162 /* Flag to tell whether the timeout should be used. */
c2c6d25f 163 int timeout_valid;
6426a772 164 }
b5a0ac70
SS
165gdb_notifier;
166
c2c6d25f
JM
167/* Structure associated with a timer. PROC will be executed at the
168 first occasion after WHEN. */
169struct gdb_timer
170 {
171 struct timeval when;
172 int timer_id;
173 struct gdb_timer *next;
6426a772
JM
174 timer_handler_func *proc; /* Function to call to do the work */
175 gdb_client_data client_data; /* Argument to async_handler_func */
c2c6d25f
JM
176 }
177gdb_timer;
178
179/* List of currently active timers. It is sorted in order of
6426a772 180 increasing timers. */
c2c6d25f
JM
181static struct
182 {
183 /* Pointer to first in timer list. */
184 struct gdb_timer *first_timer;
185
2acceee2 186 /* Id of the last timer created. */
c2c6d25f
JM
187 int num_timers;
188 }
189timer_list;
190
b5a0ac70
SS
191/* All the async_signal_handlers gdb is interested in are kept onto
192 this list. */
193static struct
194 {
195 /* Pointer to first in handler list. */
c5aa993b
JM
196 async_signal_handler *first_handler;
197
b5a0ac70 198 /* Pointer to last in handler list. */
c5aa993b 199 async_signal_handler *last_handler;
b5a0ac70
SS
200 }
201sighandler_list;
202
fd0e48ca 203/* Are any of the handlers ready? Check this variable using
b5a0ac70
SS
204 check_async_ready. This is used by process_event, to determine
205 whether or not to invoke the invoke_async_signal_handler
206 function. */
207static int async_handler_ready = 0;
208
6426a772 209static void create_file_handler (int fd, int mask, handler_func * proc, gdb_client_data client_data);
c2c6d25f
JM
210static void invoke_async_signal_handler (void);
211static void handle_file_event (int event_file_desc);
212static int gdb_wait_for_event (void);
11cf8741 213static int gdb_do_one_event (void *data);
c2c6d25f 214static int check_async_ready (void);
6426a772
JM
215static void async_queue_event (gdb_event * event_ptr, queue_position position);
216static gdb_event *create_file_event (int fd);
c2c6d25f
JM
217static int process_event (void);
218static void handle_timer_event (int dummy);
219static void poll_timers (void);
b5a0ac70
SS
220\f
221
222/* Insert an event object into the gdb event queue at
223 the specified position.
224 POSITION can be head or tail, with values TAIL, HEAD.
225 EVENT_PTR points to the event to be inserted into the queue.
226 The caller must allocate memory for the event. It is freed
227 after the event has ben handled.
228 Events in the queue will be processed head to tail, therefore,
229 events inserted at the head of the queue will be processed
230 as last in first out. Event appended at the tail of the queue
231 will be processed first in first out. */
232static void
6426a772 233async_queue_event (gdb_event * event_ptr, queue_position position)
b5a0ac70
SS
234{
235 if (position == TAIL)
236 {
237 /* The event will become the new last_event. */
238
239 event_ptr->next_event = NULL;
240 if (event_queue.first_event == NULL)
241 event_queue.first_event = event_ptr;
242 else
243 event_queue.last_event->next_event = event_ptr;
244 event_queue.last_event = event_ptr;
245 }
246 else if (position == HEAD)
247 {
248 /* The event becomes the new first_event. */
249
250 event_ptr->next_event = event_queue.first_event;
251 if (event_queue.first_event == NULL)
252 event_queue.last_event = event_ptr;
253 event_queue.first_event = event_ptr;
254 }
255}
256
cff3e48b
JM
257/* Create a file event, to be enqueued in the event queue for
258 processing. The procedure associated to this event is always
259 handle_file_event, which will in turn invoke the one that was
260 associated to FD when it was registered with the event loop. */
c2c6d25f
JM
261static gdb_event *
262create_file_event (int fd)
cff3e48b
JM
263{
264 gdb_event *file_event_ptr;
265
266 file_event_ptr = (gdb_event *) xmalloc (sizeof (gdb_event));
267 file_event_ptr->proc = handle_file_event;
268 file_event_ptr->fd = fd;
269 return (file_event_ptr);
270}
271
b5a0ac70
SS
272/* Process one event.
273 The event can be the next one to be serviced in the event queue,
274 or an asynchronous event handler can be invoked in response to
275 the reception of a signal.
276 If an event was processed (either way), 1 is returned otherwise
277 0 is returned.
278 Scan the queue from head to tail, processing therefore the high
279 priority events first, by invoking the associated event handler
280 procedure. */
281static int
c2c6d25f 282process_event (void)
b5a0ac70
SS
283{
284 gdb_event *event_ptr, *prev_ptr;
285 event_handler_func *proc;
286 int fd;
287
288 /* First let's see if there are any asynchronous event handlers that
289 are ready. These would be the result of invoking any of the
290 signal handlers. */
291
292 if (check_async_ready ())
293 {
294 invoke_async_signal_handler ();
295 return 1;
296 }
297
298 /* Look in the event queue to find an event that is ready
299 to be processed. */
300
301 for (event_ptr = event_queue.first_event; event_ptr != NULL;
302 event_ptr = event_ptr->next_event)
303 {
304 /* Call the handler for the event. */
305
306 proc = event_ptr->proc;
307 fd = event_ptr->fd;
308
309 /* Let's get rid of the event from the event queue. We need to
310 do this now because while processing the event, the proc
311 function could end up calling 'error' and therefore jump out
312 to the caller of this function, gdb_do_one_event. In that
313 case, we would have on the event queue an event wich has been
314 processed, but not deleted. */
315
316 if (event_queue.first_event == event_ptr)
317 {
318 event_queue.first_event = event_ptr->next_event;
319 if (event_ptr->next_event == NULL)
320 event_queue.last_event = NULL;
321 }
322 else
323 {
324 prev_ptr = event_queue.first_event;
325 while (prev_ptr->next_event != event_ptr)
326 prev_ptr = prev_ptr->next_event;
327
328 prev_ptr->next_event = event_ptr->next_event;
329 if (event_ptr->next_event == NULL)
330 event_queue.last_event = prev_ptr;
331 }
b8c9b27d 332 xfree (event_ptr);
b5a0ac70 333
44f45770 334 /* Now call the procedure associated with the event. */
b5a0ac70
SS
335 (*proc) (fd);
336 return 1;
337 }
338
339 /* this is the case if there are no event on the event queue. */
340 return 0;
341}
342
343/* Process one high level event. If nothing is ready at this time,
344 wait for something to happen (via gdb_wait_for_event), then process
11cf8741
JM
345 it. Returns >0 if something was done otherwise returns <0 (this
346 can happen if there are no event sources to wait for). If an error
fd0e48ca 347 occurs catch_errors() which calls this function returns zero. */
11cf8741 348
085dd6e6 349static int
11cf8741 350gdb_do_one_event (void *data)
b5a0ac70 351{
11cf8741
JM
352 /* Any events already waiting in the queue? */
353 if (process_event ())
354 {
355 return 1;
356 }
7e5cd2de 357
11cf8741
JM
358 /* Are any timers that are ready? If so, put an event on the queue. */
359 poll_timers ();
7e5cd2de 360
11cf8741
JM
361 /* Wait for a new event. If gdb_wait_for_event returns -1,
362 we should get out because this means that there are no
363 event sources left. This will make the event loop stop,
364 and the application exit. */
7e5cd2de 365
11cf8741
JM
366 if (gdb_wait_for_event () < 0)
367 {
368 return -1;
369 }
7e5cd2de 370
11cf8741
JM
371 /* Handle any new events occurred while waiting. */
372 if (process_event ())
373 {
374 return 1;
375 }
7e5cd2de 376
11cf8741
JM
377 /* If gdb_wait_for_event has returned 1, it means that one
378 event has been handled. We break out of the loop. */
379 return 1;
380}
381
382/* Start up the event loop. This is the entry point to the event loop
383 from the command loop. */
b5a0ac70 384
11cf8741
JM
385void
386start_event_loop (void)
387{
388 /* Loop until there is nothing to do. This is the entry point to the
389 event loop engine. gdb_do_one_event, called via catch_errors()
390 will process one event for each invocation. It blocks waits for
391 an event and then processes it. >0 when an event is processed, 0
392 when catch_errors() caught an error and <0 when there are no
393 longer any event sources registered. */
b5a0ac70
SS
394 while (1)
395 {
11cf8741
JM
396 int result = catch_errors (gdb_do_one_event, 0, "", RETURN_MASK_ALL);
397 if (result < 0)
398 break;
399 if (result == 0)
b5a0ac70 400 {
085dd6e6
JM
401 /* FIXME: this should really be a call to a hook that is
402 interface specific, because interfaces can display the
403 prompt in their own way. */
b5a0ac70
SS
404 display_gdb_prompt (0);
405 /* Maybe better to set a flag to be checked somewhere as to
406 whether display the prompt or not. */
407 }
408 }
085dd6e6
JM
409
410 /* We are done with the event loop. There are no more event sources
411 to listen to. So we exit GDB. */
412 return;
413}
b5a0ac70
SS
414\f
415
085dd6e6
JM
416/* Wrapper function for create_file_handler, so that the caller
417 doesn't have to know implementation details about the use of poll
418 vs. select. */
c5aa993b 419void
6426a772 420add_file_handler (int fd, handler_func * proc, gdb_client_data client_data)
085dd6e6
JM
421{
422#ifdef HAVE_POLL
44f45770
EZ
423 struct pollfd fds;
424#endif
425
426 if (use_poll)
427 {
428#ifdef HAVE_POLL
429 /* Check to see if poll () is usable. If not, we'll switch to
7e5cd2de
EZ
430 use select. This can happen on systems like
431 m68k-motorola-sys, `poll' cannot be used to wait for `stdin'.
432 On m68k-motorola-sysv, tty's are not stream-based and not
433 `poll'able. */
434 fds.fd = fd;
435 fds.events = POLLIN;
436 if (poll (&fds, 1, 0) == 1 && (fds.revents & POLLNVAL))
437 use_poll = 0;
44f45770 438#else
8e65ff28
AC
439 internal_error (__FILE__, __LINE__,
440 "use_poll without HAVE_POLL");
44f45770
EZ
441#endif /* HAVE_POLL */
442 }
443 if (use_poll)
444 {
445#ifdef HAVE_POLL
446 create_file_handler (fd, POLLIN, proc, client_data);
085dd6e6 447#else
8e65ff28
AC
448 internal_error (__FILE__, __LINE__,
449 "use_poll without HAVE_POLL");
085dd6e6 450#endif
44f45770
EZ
451 }
452 else
453 create_file_handler (fd, GDB_READABLE | GDB_EXCEPTION, proc, client_data);
085dd6e6
JM
454}
455
b5a0ac70
SS
456/* Add a file handler/descriptor to the list of descriptors we are
457 interested in.
458 FD is the file descriptor for the file/stream to be listened to.
459 For the poll case, MASK is a combination (OR) of
460 POLLIN, POLLRDNORM, POLLRDBAND, POLLPRI, POLLOUT, POLLWRNORM,
461 POLLWRBAND: these are the events we are interested in. If any of them
462 occurs, proc should be called.
463 For the select case, MASK is a combination of READABLE, WRITABLE, EXCEPTION.
464 PROC is the procedure that will be called when an event occurs for
465 FD. CLIENT_DATA is the argument to pass to PROC. */
085dd6e6 466static void
6426a772 467create_file_handler (int fd, int mask, handler_func * proc, gdb_client_data client_data)
b5a0ac70
SS
468{
469 file_handler *file_ptr;
470
b5a0ac70
SS
471 /* Do we already have a file handler for this file? (We may be
472 changing its associated procedure). */
473 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
474 file_ptr = file_ptr->next_file)
475 {
476 if (file_ptr->fd == fd)
477 break;
478 }
479
c2c6d25f 480 /* It is a new file descriptor. Add it to the list. Otherwise, just
6426a772 481 change the data associated with it. */
b5a0ac70
SS
482 if (file_ptr == NULL)
483 {
484 file_ptr = (file_handler *) xmalloc (sizeof (file_handler));
485 file_ptr->fd = fd;
486 file_ptr->ready_mask = 0;
487 file_ptr->next_file = gdb_notifier.first_file_handler;
488 gdb_notifier.first_file_handler = file_ptr;
489 }
490 file_ptr->proc = proc;
491 file_ptr->client_data = client_data;
492 file_ptr->mask = mask;
493
44f45770
EZ
494 if (use_poll)
495 {
b5a0ac70 496#ifdef HAVE_POLL
44f45770
EZ
497 gdb_notifier.num_fds++;
498 if (gdb_notifier.poll_fds)
499 gdb_notifier.poll_fds =
0e52036f
AC
500 (struct pollfd *) xrealloc (gdb_notifier.poll_fds,
501 (gdb_notifier.num_fds
502 * sizeof (struct pollfd)));
44f45770
EZ
503 else
504 gdb_notifier.poll_fds =
505 (struct pollfd *) xmalloc (sizeof (struct pollfd));
506 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->fd = fd;
507 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->events = mask;
508 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->revents = 0;
509#else
8e65ff28
AC
510 internal_error (__FILE__, __LINE__,
511 "use_poll without HAVE_POLL");
44f45770
EZ
512#endif /* HAVE_POLL */
513 }
b5a0ac70 514 else
44f45770
EZ
515 {
516 if (mask & GDB_READABLE)
517 FD_SET (fd, &gdb_notifier.check_masks[0]);
518 else
519 FD_CLR (fd, &gdb_notifier.check_masks[0]);
b5a0ac70 520
44f45770
EZ
521 if (mask & GDB_WRITABLE)
522 FD_SET (fd, &gdb_notifier.check_masks[1]);
523 else
524 FD_CLR (fd, &gdb_notifier.check_masks[1]);
b5a0ac70 525
44f45770
EZ
526 if (mask & GDB_EXCEPTION)
527 FD_SET (fd, &gdb_notifier.check_masks[2]);
528 else
529 FD_CLR (fd, &gdb_notifier.check_masks[2]);
b5a0ac70 530
44f45770
EZ
531 if (gdb_notifier.num_fds <= fd)
532 gdb_notifier.num_fds = fd + 1;
533 }
b5a0ac70
SS
534}
535
536/* Remove the file descriptor FD from the list of monitored fd's:
537 i.e. we don't care anymore about events on the FD. */
538void
c2c6d25f 539delete_file_handler (int fd)
b5a0ac70
SS
540{
541 file_handler *file_ptr, *prev_ptr = NULL;
58a2c44a
EZ
542 int i;
543#ifdef HAVE_POLL
544 int j;
b5a0ac70 545 struct pollfd *new_poll_fds;
b5a0ac70
SS
546#endif
547
548 /* Find the entry for the given file. */
549
550 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
551 file_ptr = file_ptr->next_file)
552 {
553 if (file_ptr->fd == fd)
554 break;
555 }
556
557 if (file_ptr == NULL)
558 return;
559
44f45770
EZ
560 if (use_poll)
561 {
b5a0ac70 562#ifdef HAVE_POLL
44f45770 563 /* Create a new poll_fds array by copying every fd's information but the
7e5cd2de 564 one we want to get rid of. */
b5a0ac70 565
44f45770
EZ
566 new_poll_fds =
567 (struct pollfd *) xmalloc ((gdb_notifier.num_fds - 1) * sizeof (struct pollfd));
b5a0ac70 568
44f45770 569 for (i = 0, j = 0; i < gdb_notifier.num_fds; i++)
b5a0ac70 570 {
44f45770
EZ
571 if ((gdb_notifier.poll_fds + i)->fd != fd)
572 {
573 (new_poll_fds + j)->fd = (gdb_notifier.poll_fds + i)->fd;
574 (new_poll_fds + j)->events = (gdb_notifier.poll_fds + i)->events;
575 (new_poll_fds + j)->revents = (gdb_notifier.poll_fds + i)->revents;
576 j++;
577 }
b5a0ac70 578 }
b8c9b27d 579 xfree (gdb_notifier.poll_fds);
44f45770
EZ
580 gdb_notifier.poll_fds = new_poll_fds;
581 gdb_notifier.num_fds--;
582#else
8e65ff28
AC
583 internal_error (__FILE__, __LINE__,
584 "use_poll without HAVE_POLL");
44f45770 585#endif /* HAVE_POLL */
b5a0ac70 586 }
44f45770
EZ
587 else
588 {
589 if (file_ptr->mask & GDB_READABLE)
590 FD_CLR (fd, &gdb_notifier.check_masks[0]);
591 if (file_ptr->mask & GDB_WRITABLE)
592 FD_CLR (fd, &gdb_notifier.check_masks[1]);
593 if (file_ptr->mask & GDB_EXCEPTION)
594 FD_CLR (fd, &gdb_notifier.check_masks[2]);
b5a0ac70 595
44f45770 596 /* Find current max fd. */
b5a0ac70 597
44f45770 598 if ((fd + 1) == gdb_notifier.num_fds)
b5a0ac70 599 {
44f45770
EZ
600 gdb_notifier.num_fds--;
601 for (i = gdb_notifier.num_fds; i; i--)
602 {
603 if (FD_ISSET (i - 1, &gdb_notifier.check_masks[0])
604 || FD_ISSET (i - 1, &gdb_notifier.check_masks[1])
605 || FD_ISSET (i - 1, &gdb_notifier.check_masks[2]))
606 break;
607 }
608 gdb_notifier.num_fds = i;
b5a0ac70
SS
609 }
610 }
b5a0ac70 611
cff3e48b
JM
612 /* Deactivate the file descriptor, by clearing its mask,
613 so that it will not fire again. */
614
615 file_ptr->mask = 0;
616
b5a0ac70
SS
617 /* Get rid of the file handler in the file handler list. */
618 if (file_ptr == gdb_notifier.first_file_handler)
619 gdb_notifier.first_file_handler = file_ptr->next_file;
620 else
621 {
622 for (prev_ptr = gdb_notifier.first_file_handler;
9e0b60a8 623 prev_ptr->next_file != file_ptr;
b5a0ac70
SS
624 prev_ptr = prev_ptr->next_file)
625 ;
626 prev_ptr->next_file = file_ptr->next_file;
627 }
b8c9b27d 628 xfree (file_ptr);
b5a0ac70
SS
629}
630
631/* Handle the given event by calling the procedure associated to the
632 corresponding file handler. Called by process_event indirectly,
633 through event_ptr->proc. EVENT_FILE_DESC is file descriptor of the
634 event in the front of the event queue. */
635static void
c2c6d25f 636handle_file_event (int event_file_desc)
b5a0ac70
SS
637{
638 file_handler *file_ptr;
c2c6d25f
JM
639 int mask;
640#ifdef HAVE_POLL
641 int error_mask;
642 int error_mask_returned;
643#endif
b5a0ac70
SS
644
645 /* Search the file handler list to find one that matches the fd in
646 the event. */
647 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
648 file_ptr = file_ptr->next_file)
649 {
650 if (file_ptr->fd == event_file_desc)
651 {
652 /* With poll, the ready_mask could have any of three events
653 set to 1: POLLHUP, POLLERR, POLLNVAL. These events cannot
654 be used in the requested event mask (events), but they
655 can be returned in the return mask (revents). We need to
656 check for those event too, and add them to the mask which
657 will be passed to the handler. */
658
659 /* See if the desired events (mask) match the received
660 events (ready_mask). */
661
44f45770 662 if (use_poll)
c2c6d25f 663 {
44f45770
EZ
664#ifdef HAVE_POLL
665 error_mask = POLLHUP | POLLERR | POLLNVAL;
666 mask = (file_ptr->ready_mask & file_ptr->mask) |
667 (file_ptr->ready_mask & error_mask);
668 error_mask_returned = mask & error_mask;
669
670 if (error_mask_returned != 0)
671 {
672 /* Work in progress. We may need to tell somebody what
673 kind of error we had. */
674 if (error_mask_returned & POLLHUP)
675 printf_unfiltered ("Hangup detected on fd %d\n", file_ptr->fd);
676 if (error_mask_returned & POLLERR)
677 printf_unfiltered ("Error detected on fd %d\n", file_ptr->fd);
678 if (error_mask_returned & POLLNVAL)
679 printf_unfiltered ("Invalid or non-`poll'able fd %d\n", file_ptr->fd);
680 file_ptr->error = 1;
681 }
682 else
683 file_ptr->error = 0;
684#else
8e65ff28
AC
685 internal_error (__FILE__, __LINE__,
686 "use_poll without HAVE_POLL");
44f45770 687#endif /* HAVE_POLL */
6426a772
JM
688 }
689 else
c2c6d25f 690 {
44f45770
EZ
691 if (file_ptr->ready_mask & GDB_EXCEPTION)
692 {
693 printf_unfiltered ("Exception condition detected on fd %d\n", file_ptr->fd);
694 file_ptr->error = 1;
695 }
696 else
697 file_ptr->error = 0;
698 mask = file_ptr->ready_mask & file_ptr->mask;
c2c6d25f 699 }
b5a0ac70
SS
700
701 /* Clear the received events for next time around. */
702 file_ptr->ready_mask = 0;
703
704 /* If there was a match, then call the handler. */
705 if (mask != 0)
2acceee2 706 (*file_ptr->proc) (file_ptr->error, file_ptr->client_data);
b5a0ac70
SS
707 break;
708 }
709 }
710}
711
712/* Called by gdb_do_one_event to wait for new events on the
713 monitored file descriptors. Queue file events as they are
714 detected by the poll.
715 If there are no events, this function will block in the
716 call to poll.
717 Return -1 if there are no files descriptors to monitor,
718 otherwise return 0. */
719static int
c2c6d25f 720gdb_wait_for_event (void)
b5a0ac70
SS
721{
722 file_handler *file_ptr;
723 gdb_event *file_event_ptr;
0f71a2f6
JM
724 int num_found = 0;
725 int i;
b5a0ac70 726
7be570e7
JM
727 /* Make sure all output is done before getting another event. */
728 gdb_flush (gdb_stdout);
729 gdb_flush (gdb_stderr);
730
b5a0ac70
SS
731 if (gdb_notifier.num_fds == 0)
732 return -1;
733
44f45770
EZ
734 if (use_poll)
735 {
b5a0ac70 736#ifdef HAVE_POLL
44f45770
EZ
737 num_found =
738 poll (gdb_notifier.poll_fds,
739 (unsigned long) gdb_notifier.num_fds,
740 gdb_notifier.timeout_valid ? gdb_notifier.poll_timeout : -1);
741
742 /* Don't print anything if we get out of poll because of a
7e5cd2de 743 signal. */
44f45770
EZ
744 if (num_found == -1 && errno != EINTR)
745 perror_with_name ("Poll");
746#else
8e65ff28
AC
747 internal_error (__FILE__, __LINE__,
748 "use_poll without HAVE_POLL");
44f45770
EZ
749#endif /* HAVE_POLL */
750 }
751 else
c2c6d25f 752 {
44f45770
EZ
753 gdb_notifier.ready_masks[0] = gdb_notifier.check_masks[0];
754 gdb_notifier.ready_masks[1] = gdb_notifier.check_masks[1];
755 gdb_notifier.ready_masks[2] = gdb_notifier.check_masks[2];
756 num_found = select (gdb_notifier.num_fds,
7e5cd2de
EZ
757 &gdb_notifier.ready_masks[0],
758 &gdb_notifier.ready_masks[1],
759 &gdb_notifier.ready_masks[2],
44f45770
EZ
760 gdb_notifier.timeout_valid
761 ? &gdb_notifier.select_timeout : NULL);
762
763 /* Clear the masks after an error from select. */
764 if (num_found == -1)
765 {
766 FD_ZERO (&gdb_notifier.ready_masks[0]);
767 FD_ZERO (&gdb_notifier.ready_masks[1]);
768 FD_ZERO (&gdb_notifier.ready_masks[2]);
769 /* Dont print anything is we got a signal, let gdb handle it. */
770 if (errno != EINTR)
771 perror_with_name ("Select");
772 }
c2c6d25f 773 }
b5a0ac70
SS
774
775 /* Enqueue all detected file events. */
776
44f45770
EZ
777 if (use_poll)
778 {
b5a0ac70 779#ifdef HAVE_POLL
44f45770
EZ
780 for (i = 0; (i < gdb_notifier.num_fds) && (num_found > 0); i++)
781 {
782 if ((gdb_notifier.poll_fds + i)->revents)
783 num_found--;
784 else
785 continue;
b5a0ac70 786
44f45770
EZ
787 for (file_ptr = gdb_notifier.first_file_handler;
788 file_ptr != NULL;
789 file_ptr = file_ptr->next_file)
790 {
791 if (file_ptr->fd == (gdb_notifier.poll_fds + i)->fd)
792 break;
793 }
794
795 if (file_ptr)
796 {
797 /* Enqueue an event only if this is still a new event for
7e5cd2de 798 this fd. */
44f45770
EZ
799 if (file_ptr->ready_mask == 0)
800 {
801 file_event_ptr = create_file_event (file_ptr->fd);
802 async_queue_event (file_event_ptr, TAIL);
803 }
804 }
b5a0ac70 805
44f45770
EZ
806 file_ptr->ready_mask = (gdb_notifier.poll_fds + i)->revents;
807 }
808#else
8e65ff28
AC
809 internal_error (__FILE__, __LINE__,
810 "use_poll without HAVE_POLL");
44f45770
EZ
811#endif /* HAVE_POLL */
812 }
813 else
814 {
b5a0ac70 815 for (file_ptr = gdb_notifier.first_file_handler;
44f45770 816 (file_ptr != NULL) && (num_found > 0);
b5a0ac70
SS
817 file_ptr = file_ptr->next_file)
818 {
44f45770
EZ
819 int mask = 0;
820
821 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[0]))
822 mask |= GDB_READABLE;
823 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[1]))
824 mask |= GDB_WRITABLE;
825 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[2]))
826 mask |= GDB_EXCEPTION;
827
828 if (!mask)
829 continue;
830 else
831 num_found--;
b5a0ac70 832
b5a0ac70
SS
833 /* Enqueue an event only if this is still a new event for
834 this fd. */
44f45770 835
b5a0ac70
SS
836 if (file_ptr->ready_mask == 0)
837 {
cff3e48b 838 file_event_ptr = create_file_event (file_ptr->fd);
b5a0ac70
SS
839 async_queue_event (file_event_ptr, TAIL);
840 }
44f45770 841 file_ptr->ready_mask = mask;
b5a0ac70 842 }
b5a0ac70 843 }
b5a0ac70
SS
844 return 0;
845}
846\f
847
848/* Create an asynchronous handler, allocating memory for it.
849 Return a pointer to the newly created handler.
850 This pointer will be used to invoke the handler by
851 invoke_async_signal_handler.
852 PROC is the function to call with CLIENT_DATA argument
853 whenever the handler is invoked. */
854async_signal_handler *
6426a772 855create_async_signal_handler (sig_handler_func * proc, gdb_client_data client_data)
b5a0ac70
SS
856{
857 async_signal_handler *async_handler_ptr;
858
859 async_handler_ptr =
860 (async_signal_handler *) xmalloc (sizeof (async_signal_handler));
861 async_handler_ptr->ready = 0;
862 async_handler_ptr->next_handler = NULL;
863 async_handler_ptr->proc = proc;
864 async_handler_ptr->client_data = client_data;
865 if (sighandler_list.first_handler == NULL)
866 sighandler_list.first_handler = async_handler_ptr;
867 else
868 sighandler_list.last_handler->next_handler = async_handler_ptr;
869 sighandler_list.last_handler = async_handler_ptr;
870 return async_handler_ptr;
871}
872
873/* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information will
874 be used when the handlers are invoked, after we have waited for
875 some event. The caller of this function is the interrupt handler
876 associated with a signal. */
877void
6426a772 878mark_async_signal_handler (async_signal_handler * async_handler_ptr)
b5a0ac70
SS
879{
880 ((async_signal_handler *) async_handler_ptr)->ready = 1;
881 async_handler_ready = 1;
882}
883
884/* Call all the handlers that are ready. */
885static void
c2c6d25f 886invoke_async_signal_handler (void)
b5a0ac70
SS
887{
888 async_signal_handler *async_handler_ptr;
889
890 if (async_handler_ready == 0)
891 return;
892 async_handler_ready = 0;
893
894 /* Invoke ready handlers. */
895
896 while (1)
897 {
c5aa993b 898 for (async_handler_ptr = sighandler_list.first_handler;
b5a0ac70
SS
899 async_handler_ptr != NULL;
900 async_handler_ptr = async_handler_ptr->next_handler)
901 {
902 if (async_handler_ptr->ready)
903 break;
904 }
905 if (async_handler_ptr == NULL)
906 break;
907 async_handler_ptr->ready = 0;
908 (*async_handler_ptr->proc) (async_handler_ptr->client_data);
909 }
910
911 return;
912}
913
914/* Delete an asynchronous handler (ASYNC_HANDLER_PTR).
915 Free the space allocated for it. */
916void
6426a772 917delete_async_signal_handler (async_signal_handler ** async_handler_ptr)
b5a0ac70
SS
918{
919 async_signal_handler *prev_ptr;
920
43ff13b4 921 if (sighandler_list.first_handler == (*async_handler_ptr))
b5a0ac70 922 {
43ff13b4 923 sighandler_list.first_handler = (*async_handler_ptr)->next_handler;
b5a0ac70
SS
924 if (sighandler_list.first_handler == NULL)
925 sighandler_list.last_handler = NULL;
926 }
927 else
928 {
929 prev_ptr = sighandler_list.first_handler;
43ff13b4 930 while (prev_ptr->next_handler != (*async_handler_ptr) && prev_ptr)
b5a0ac70 931 prev_ptr = prev_ptr->next_handler;
43ff13b4
JM
932 prev_ptr->next_handler = (*async_handler_ptr)->next_handler;
933 if (sighandler_list.last_handler == (*async_handler_ptr))
b5a0ac70
SS
934 sighandler_list.last_handler = prev_ptr;
935 }
b8c9b27d 936 xfree ((*async_handler_ptr));
43ff13b4 937 (*async_handler_ptr) = NULL;
b5a0ac70
SS
938}
939
940/* Is it necessary to call invoke_async_signal_handler? */
941static int
c2c6d25f 942check_async_ready (void)
b5a0ac70
SS
943{
944 return async_handler_ready;
945}
c2c6d25f 946
c2c6d25f
JM
947/* Create a timer that will expire in MILLISECONDS from now. When the
948 timer is ready, PROC will be executed. At creation, the timer is
949 aded to the timers queue. This queue is kept sorted in order of
6426a772 950 increasing timers. Return a handle to the timer struct. */
c2c6d25f 951int
6426a772 952create_timer (int milliseconds, timer_handler_func * proc, gdb_client_data client_data)
c2c6d25f
JM
953{
954 struct gdb_timer *timer_ptr, *timer_index, *prev_timer;
955 struct timeval time_now, delta;
956
957 /* compute seconds */
958 delta.tv_sec = milliseconds / 1000;
959 /* compute microseconds */
6426a772
JM
960 delta.tv_usec = (milliseconds % 1000) * 1000;
961
c2c6d25f
JM
962 gettimeofday (&time_now, NULL);
963
964 timer_ptr = (struct gdb_timer *) xmalloc (sizeof (gdb_timer));
965 timer_ptr->when.tv_sec = time_now.tv_sec + delta.tv_sec;
966 timer_ptr->when.tv_usec = time_now.tv_usec + delta.tv_usec;
967 /* carry? */
6426a772 968 if (timer_ptr->when.tv_usec >= 1000000)
c2c6d25f
JM
969 {
970 timer_ptr->when.tv_sec += 1;
971 timer_ptr->when.tv_usec -= 1000000;
972 }
973 timer_ptr->proc = proc;
974 timer_ptr->client_data = client_data;
6426a772 975 timer_list.num_timers++;
c2c6d25f
JM
976 timer_ptr->timer_id = timer_list.num_timers;
977
978 /* Now add the timer to the timer queue, making sure it is sorted in
979 increasing order of expiration. */
980
6426a772
JM
981 for (timer_index = timer_list.first_timer;
982 timer_index != NULL;
c2c6d25f
JM
983 timer_index = timer_index->next)
984 {
985 /* If the seconds field is greater or if it is the same, but the
986 microsecond field is greater. */
6426a772 987 if ((timer_index->when.tv_sec > timer_ptr->when.tv_sec) ||
c2c6d25f
JM
988 ((timer_index->when.tv_sec == timer_ptr->when.tv_sec)
989 && (timer_index->when.tv_usec > timer_ptr->when.tv_usec)))
990 break;
991 }
6426a772 992
c2c6d25f
JM
993 if (timer_index == timer_list.first_timer)
994 {
995 timer_ptr->next = timer_list.first_timer;
996 timer_list.first_timer = timer_ptr;
997
998 }
999 else
1000 {
6426a772
JM
1001 for (prev_timer = timer_list.first_timer;
1002 prev_timer->next != timer_index;
c2c6d25f
JM
1003 prev_timer = prev_timer->next)
1004 ;
6426a772 1005
c2c6d25f
JM
1006 prev_timer->next = timer_ptr;
1007 timer_ptr->next = timer_index;
1008 }
1009
1010 gdb_notifier.timeout_valid = 0;
1011 return timer_ptr->timer_id;
1012}
1013
1014/* There is a chance that the creator of the timer wants to get rid of
1015 it before it expires. */
1016void
1017delete_timer (int id)
1018{
1019 struct gdb_timer *timer_ptr, *prev_timer = NULL;
1020
1021 /* Find the entry for the given timer. */
1022
1023 for (timer_ptr = timer_list.first_timer; timer_ptr != NULL;
1024 timer_ptr = timer_ptr->next)
1025 {
1026 if (timer_ptr->timer_id == id)
1027 break;
1028 }
1029
1030 if (timer_ptr == NULL)
1031 return;
1032 /* Get rid of the timer in the timer list. */
1033 if (timer_ptr == timer_list.first_timer)
1034 timer_list.first_timer = timer_ptr->next;
1035 else
1036 {
1037 for (prev_timer = timer_list.first_timer;
1038 prev_timer->next != timer_ptr;
1039 prev_timer = prev_timer->next)
1040 ;
1041 prev_timer->next = timer_ptr->next;
1042 }
b8c9b27d 1043 xfree (timer_ptr);
c2c6d25f
JM
1044
1045 gdb_notifier.timeout_valid = 0;
1046}
1047
1048/* When a timer event is put on the event queue, it will be handled by
1049 this function. Just call the assiciated procedure and delete the
1050 timer event from the event queue. Repeat this for each timer that
6426a772 1051 has expired. */
c2c6d25f
JM
1052static void
1053handle_timer_event (int dummy)
1054{
1055 struct timeval time_now;
1056 struct gdb_timer *timer_ptr, *saved_timer;
6426a772 1057
c2c6d25f
JM
1058 gettimeofday (&time_now, NULL);
1059 timer_ptr = timer_list.first_timer;
1060
1061 while (timer_ptr != NULL)
1062 {
6426a772
JM
1063 if ((timer_ptr->when.tv_sec > time_now.tv_sec) ||
1064 ((timer_ptr->when.tv_sec == time_now.tv_sec) &&
c2c6d25f
JM
1065 (timer_ptr->when.tv_usec > time_now.tv_usec)))
1066 break;
1067
1068 /* Get rid of the timer from the beginning of the list. */
1069 timer_list.first_timer = timer_ptr->next;
1070 saved_timer = timer_ptr;
1071 timer_ptr = timer_ptr->next;
1072 /* Call the procedure associated with that timer. */
c4093a6a 1073 (*saved_timer->proc) (saved_timer->client_data);
b8c9b27d 1074 xfree (saved_timer);
c2c6d25f
JM
1075 }
1076
1077 gdb_notifier.timeout_valid = 0;
1078}
6426a772 1079
c2c6d25f
JM
1080/* Check whether any timers in the timers queue are ready. If at least
1081 one timer is ready, stick an event onto the event queue. Even in
1082 case more than one timer is ready, one event is enough, because the
1083 handle_timer_event() will go through the timers list and call the
1084 procedures associated with all that have expired. Update the
6426a772 1085 timeout for the select() or poll() as well. */
c2c6d25f
JM
1086static void
1087poll_timers (void)
1088{
1089 struct timeval time_now, delta;
1090 gdb_event *event_ptr;
6426a772 1091
2acceee2 1092 if (timer_list.first_timer != NULL)
c2c6d25f
JM
1093 {
1094 gettimeofday (&time_now, NULL);
1095 delta.tv_sec = timer_list.first_timer->when.tv_sec - time_now.tv_sec;
1096 delta.tv_usec = timer_list.first_timer->when.tv_usec - time_now.tv_usec;
1097 /* borrow? */
1098 if (delta.tv_usec < 0)
1099 {
1100 delta.tv_sec -= 1;
1101 delta.tv_usec += 1000000;
1102 }
6426a772 1103
c2c6d25f 1104 /* Oops it expired already. Tell select / poll to return
2f16bb32 1105 immediately. (Cannot simply test if delta.tv_sec is negative
7e5cd2de 1106 because time_t might be unsigned.) */
2f16bb32
EZ
1107 if (timer_list.first_timer->when.tv_sec < time_now.tv_sec
1108 || (timer_list.first_timer->when.tv_sec == time_now.tv_sec
1109 && timer_list.first_timer->when.tv_usec < time_now.tv_usec))
c2c6d25f
JM
1110 {
1111 delta.tv_sec = 0;
1112 delta.tv_usec = 0;
1113 }
1114
1115 if (delta.tv_sec == 0 && delta.tv_usec == 0)
1116 {
1117 event_ptr = (gdb_event *) xmalloc (sizeof (gdb_event));
1118 event_ptr->proc = handle_timer_event;
1119 event_ptr->fd = timer_list.first_timer->timer_id;
1120 async_queue_event (event_ptr, TAIL);
1121 }
1122
1123 /* Now we need to update the timeout for select/ poll, because we
6426a772 1124 don't want to sit there while this timer is expiring. */
44f45770
EZ
1125 if (use_poll)
1126 {
c2c6d25f 1127#ifdef HAVE_POLL
44f45770 1128 gdb_notifier.poll_timeout = delta.tv_sec * 1000;
c2c6d25f 1129#else
8e65ff28
AC
1130 internal_error (__FILE__, __LINE__,
1131 "use_poll without HAVE_POLL");
44f45770
EZ
1132#endif /* HAVE_POLL */
1133 }
1134 else
1135 {
1136 gdb_notifier.select_timeout.tv_sec = delta.tv_sec;
1137 gdb_notifier.select_timeout.tv_usec = delta.tv_usec;
1138 }
c2c6d25f
JM
1139 gdb_notifier.timeout_valid = 1;
1140 }
6426a772 1141 else
c2c6d25f
JM
1142 gdb_notifier.timeout_valid = 0;
1143}
This page took 0.220441 seconds and 4 git commands to generate.