* ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
[binutils-gdb.git] / gdb / event-loop.c
blob533eefea96184479768ac4e8d8b88241f9d3ced1
1 /* Event loop machinery for GDB, the GNU debugger.
2 Copyright (C) 1999, 2000, 2001, 2002, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "defs.h"
22 #include "event-loop.h"
23 #include "event-top.h"
25 #ifdef HAVE_POLL
26 #if defined (HAVE_POLL_H)
27 #include <poll.h>
28 #elif defined (HAVE_SYS_POLL_H)
29 #include <sys/poll.h>
30 #endif
31 #endif
33 #include <sys/types.h>
34 #include "gdb_string.h"
35 #include <errno.h>
36 #include <sys/time.h>
37 #include "exceptions.h"
38 #include "gdb_assert.h"
39 #include "gdb_select.h"
41 /* Data point to pass to the event handler. */
42 typedef union event_data
44 void *ptr;
45 int integer;
46 } event_data;
48 typedef struct gdb_event gdb_event;
49 typedef void (event_handler_func) (event_data);
51 /* Event for the GDB event system. Events are queued by calling
52 async_queue_event and serviced later on by gdb_do_one_event. An
53 event can be, for instance, a file descriptor becoming ready to be
54 read. Servicing an event simply means that the procedure PROC will
55 be called. We have 2 queues, one for file handlers that we listen
56 to in the event loop, and one for the file handlers+events that are
57 ready. The procedure PROC associated with each event is dependant
58 of the event source. In the case of monitored file descriptors, it
59 is always the same (handle_file_event). Its duty is to invoke the
60 handler associated with the file descriptor whose state change
61 generated the event, plus doing other cleanups and such. In the
62 case of async signal handlers, it is
63 invoke_async_signal_handler. */
65 struct gdb_event
67 /* Procedure to call to service this event. */
68 event_handler_func *proc;
70 /* Data to pass to the event handler. */
71 event_data data;
73 /* Next in list of events or NULL. */
74 struct gdb_event *next_event;
77 /* Information about each file descriptor we register with the event
78 loop. */
80 typedef struct file_handler
82 int fd; /* File descriptor. */
83 int mask; /* Events we want to monitor: POLLIN, etc. */
84 int ready_mask; /* Events that have been seen since
85 the last time. */
86 handler_func *proc; /* Procedure to call when fd is ready. */
87 gdb_client_data client_data; /* Argument to pass to proc. */
88 int error; /* Was an error detected on this fd? */
89 struct file_handler *next_file; /* Next registered file descriptor. */
91 file_handler;
93 /* PROC is a function to be invoked when the READY flag is set. This
94 happens when there has been a signal and the corresponding signal
95 handler has 'triggered' this async_signal_handler for
96 execution. The actual work to be done in response to a signal will
97 be carried out by PROC at a later time, within process_event. This
98 provides a deferred execution of signal handlers.
99 Async_init_signals takes care of setting up such an
100 async_signal_handler for each interesting signal. */
101 typedef struct async_signal_handler
103 int ready; /* If ready, call this handler from the main event loop,
104 using invoke_async_handler. */
105 struct async_signal_handler *next_handler; /* Ptr to next handler */
106 sig_handler_func *proc; /* Function to call to do the work */
107 gdb_client_data client_data; /* Argument to async_handler_func */
109 async_signal_handler;
111 /* PROC is a function to be invoked when the READY flag is set. This
112 happens when the event has been marked with
113 MARK_ASYNC_EVENT_HANDLER. The actual work to be done in response
114 to an event will be carried out by PROC at a later time, within
115 process_event. This provides a deferred execution of event
116 handlers. */
117 typedef struct async_event_handler
119 /* If ready, call this handler from the main event loop, using
120 invoke_event_handler. */
121 int ready;
123 /* Point to next handler. */
124 struct async_event_handler *next_handler;
126 /* Function to call to do the work. */
127 async_event_handler_func *proc;
129 /* Argument to PROC. */
130 gdb_client_data client_data;
132 async_event_handler;
135 /* Event queue:
136 - the first event in the queue is the head of the queue.
137 It will be the next to be serviced.
138 - the last event in the queue
140 Events can be inserted at the front of the queue or at the end of
141 the queue. Events will be extracted from the queue for processing
142 starting from the head. Therefore, events inserted at the head of
143 the queue will be processed in a last in first out fashion, while
144 those inserted at the tail of the queue will be processed in a first
145 in first out manner. All the fields are NULL if the queue is
146 empty. */
148 static struct
150 gdb_event *first_event; /* First pending event */
151 gdb_event *last_event; /* Last pending event */
153 event_queue;
155 /* Gdb_notifier is just a list of file descriptors gdb is interested in.
156 These are the input file descriptor, and the target file
157 descriptor. We have two flavors of the notifier, one for platforms
158 that have the POLL function, the other for those that don't, and
159 only support SELECT. Each of the elements in the gdb_notifier list is
160 basically a description of what kind of events gdb is interested
161 in, for each fd. */
163 /* As of 1999-04-30 only the input file descriptor is registered with the
164 event loop. */
166 /* Do we use poll or select ? */
167 #ifdef HAVE_POLL
168 #define USE_POLL 1
169 #else
170 #define USE_POLL 0
171 #endif /* HAVE_POLL */
173 static unsigned char use_poll = USE_POLL;
175 #ifdef USE_WIN32API
176 #include <windows.h>
177 #include <io.h>
178 #endif
180 static struct
182 /* Ptr to head of file handler list. */
183 file_handler *first_file_handler;
185 #ifdef HAVE_POLL
186 /* Ptr to array of pollfd structures. */
187 struct pollfd *poll_fds;
189 /* Timeout in milliseconds for calls to poll(). */
190 int poll_timeout;
191 #endif
193 /* Masks to be used in the next call to select.
194 Bits are set in response to calls to create_file_handler. */
195 fd_set check_masks[3];
197 /* What file descriptors were found ready by select. */
198 fd_set ready_masks[3];
200 /* Number of file descriptors to monitor. (for poll) */
201 /* Number of valid bits (highest fd value + 1). (for select) */
202 int num_fds;
204 /* Time structure for calls to select(). */
205 struct timeval select_timeout;
207 /* Flag to tell whether the timeout should be used. */
208 int timeout_valid;
210 gdb_notifier;
212 /* Structure associated with a timer. PROC will be executed at the
213 first occasion after WHEN. */
214 struct gdb_timer
216 struct timeval when;
217 int timer_id;
218 struct gdb_timer *next;
219 timer_handler_func *proc; /* Function to call to do the work */
220 gdb_client_data client_data; /* Argument to async_handler_func */
222 gdb_timer;
224 /* List of currently active timers. It is sorted in order of
225 increasing timers. */
226 static struct
228 /* Pointer to first in timer list. */
229 struct gdb_timer *first_timer;
231 /* Id of the last timer created. */
232 int num_timers;
234 timer_list;
236 /* All the async_signal_handlers gdb is interested in are kept onto
237 this list. */
238 static struct
240 /* Pointer to first in handler list. */
241 async_signal_handler *first_handler;
243 /* Pointer to last in handler list. */
244 async_signal_handler *last_handler;
246 sighandler_list;
248 /* All the async_event_handlers gdb is interested in are kept onto
249 this list. */
250 static struct
252 /* Pointer to first in handler list. */
253 async_event_handler *first_handler;
255 /* Pointer to last in handler list. */
256 async_event_handler *last_handler;
258 async_event_handler_list;
260 static int invoke_async_signal_handlers (void);
261 static void create_file_handler (int fd, int mask, handler_func *proc,
262 gdb_client_data client_data);
263 static void handle_file_event (event_data data);
264 static void check_async_event_handlers (void);
265 static int gdb_wait_for_event (int);
266 static void poll_timers (void);
269 /* Insert an event object into the gdb event queue at
270 the specified position.
271 POSITION can be head or tail, with values TAIL, HEAD.
272 EVENT_PTR points to the event to be inserted into the queue.
273 The caller must allocate memory for the event. It is freed
274 after the event has ben handled.
275 Events in the queue will be processed head to tail, therefore,
276 events inserted at the head of the queue will be processed
277 as last in first out. Event appended at the tail of the queue
278 will be processed first in first out. */
279 static void
280 async_queue_event (gdb_event * event_ptr, queue_position position)
282 if (position == TAIL)
284 /* The event will become the new last_event. */
286 event_ptr->next_event = NULL;
287 if (event_queue.first_event == NULL)
288 event_queue.first_event = event_ptr;
289 else
290 event_queue.last_event->next_event = event_ptr;
291 event_queue.last_event = event_ptr;
293 else if (position == HEAD)
295 /* The event becomes the new first_event. */
297 event_ptr->next_event = event_queue.first_event;
298 if (event_queue.first_event == NULL)
299 event_queue.last_event = event_ptr;
300 event_queue.first_event = event_ptr;
304 /* Create a generic event, to be enqueued in the event queue for
305 processing. PROC is the procedure associated to the event. DATA
306 is passed to PROC upon PROC invocation. */
308 static gdb_event *
309 create_event (event_handler_func proc, event_data data)
311 gdb_event *event;
313 event = xmalloc (sizeof (*event));
314 event->proc = proc;
315 event->data = data;
317 return event;
320 /* Create a file event, to be enqueued in the event queue for
321 processing. The procedure associated to this event is always
322 handle_file_event, which will in turn invoke the one that was
323 associated to FD when it was registered with the event loop. */
324 static gdb_event *
325 create_file_event (int fd)
327 event_data data;
329 data.integer = fd;
330 return create_event (handle_file_event, data);
333 /* Process one event.
334 The event can be the next one to be serviced in the event queue,
335 or an asynchronous event handler can be invoked in response to
336 the reception of a signal.
337 If an event was processed (either way), 1 is returned otherwise
338 0 is returned.
339 Scan the queue from head to tail, processing therefore the high
340 priority events first, by invoking the associated event handler
341 procedure. */
342 static int
343 process_event (void)
345 gdb_event *event_ptr, *prev_ptr;
346 event_handler_func *proc;
347 event_data data;
349 /* First let's see if there are any asynchronous event handlers that
350 are ready. These would be the result of invoking any of the
351 signal handlers. */
353 if (invoke_async_signal_handlers ())
354 return 1;
356 /* Look in the event queue to find an event that is ready
357 to be processed. */
359 for (event_ptr = event_queue.first_event; event_ptr != NULL;
360 event_ptr = event_ptr->next_event)
362 /* Call the handler for the event. */
364 proc = event_ptr->proc;
365 data = event_ptr->data;
367 /* Let's get rid of the event from the event queue. We need to
368 do this now because while processing the event, the proc
369 function could end up calling 'error' and therefore jump out
370 to the caller of this function, gdb_do_one_event. In that
371 case, we would have on the event queue an event wich has been
372 processed, but not deleted. */
374 if (event_queue.first_event == event_ptr)
376 event_queue.first_event = event_ptr->next_event;
377 if (event_ptr->next_event == NULL)
378 event_queue.last_event = NULL;
380 else
382 prev_ptr = event_queue.first_event;
383 while (prev_ptr->next_event != event_ptr)
384 prev_ptr = prev_ptr->next_event;
386 prev_ptr->next_event = event_ptr->next_event;
387 if (event_ptr->next_event == NULL)
388 event_queue.last_event = prev_ptr;
390 xfree (event_ptr);
392 /* Now call the procedure associated with the event. */
393 (*proc) (data);
394 return 1;
397 /* this is the case if there are no event on the event queue. */
398 return 0;
401 /* Process one high level event. If nothing is ready at this time,
402 wait for something to happen (via gdb_wait_for_event), then process
403 it. Returns >0 if something was done otherwise returns <0 (this
404 can happen if there are no event sources to wait for). If an error
405 occurs catch_errors() which calls this function returns zero. */
408 gdb_do_one_event (void *data)
410 static int event_source_head = 0;
411 const int number_of_sources = 3;
412 int current = 0;
414 /* Any events already waiting in the queue? */
415 if (process_event ())
416 return 1;
418 /* To level the fairness across event sources, we poll them in a
419 round-robin fashion. */
420 for (current = 0; current < number_of_sources; current++)
422 switch (event_source_head)
424 case 0:
425 /* Are any timers that are ready? If so, put an event on the
426 queue. */
427 poll_timers ();
428 break;
429 case 1:
430 /* Are there events already waiting to be collected on the
431 monitored file descriptors? */
432 gdb_wait_for_event (0);
433 break;
434 case 2:
435 /* Are there any asynchronous event handlers ready? */
436 check_async_event_handlers ();
437 break;
440 event_source_head++;
441 if (event_source_head == number_of_sources)
442 event_source_head = 0;
445 /* Handle any new events collected. */
446 if (process_event ())
447 return 1;
449 /* Block waiting for a new event. If gdb_wait_for_event returns -1,
450 we should get out because this means that there are no event
451 sources left. This will make the event loop stop, and the
452 application exit. */
454 if (gdb_wait_for_event (1) < 0)
455 return -1;
457 /* Handle any new events occurred while waiting. */
458 if (process_event ())
459 return 1;
461 /* If gdb_wait_for_event has returned 1, it means that one event has
462 been handled. We break out of the loop. */
463 return 1;
466 /* Start up the event loop. This is the entry point to the event loop
467 from the command loop. */
469 void
470 start_event_loop (void)
472 /* Loop until there is nothing to do. This is the entry point to the
473 event loop engine. gdb_do_one_event, called via catch_errors()
474 will process one event for each invocation. It blocks waits for
475 an event and then processes it. >0 when an event is processed, 0
476 when catch_errors() caught an error and <0 when there are no
477 longer any event sources registered. */
478 while (1)
480 int gdb_result;
482 gdb_result = catch_errors (gdb_do_one_event, 0, "", RETURN_MASK_ALL);
483 if (gdb_result < 0)
484 break;
486 /* If we long-jumped out of do_one_event, we probably
487 didn't get around to resetting the prompt, which leaves
488 readline in a messed-up state. Reset it here. */
490 if (gdb_result == 0)
492 /* If any exception escaped to here, we better enable
493 stdin. Otherwise, any command that calls async_disable_stdin,
494 and then throws, will leave stdin inoperable. */
495 async_enable_stdin ();
496 /* FIXME: this should really be a call to a hook that is
497 interface specific, because interfaces can display the
498 prompt in their own way. */
499 display_gdb_prompt (0);
500 /* This call looks bizarre, but it is required. If the user
501 entered a command that caused an error,
502 after_char_processing_hook won't be called from
503 rl_callback_read_char_wrapper. Using a cleanup there
504 won't work, since we want this function to be called
505 after a new prompt is printed. */
506 if (after_char_processing_hook)
507 (*after_char_processing_hook) ();
508 /* Maybe better to set a flag to be checked somewhere as to
509 whether display the prompt or not. */
513 /* We are done with the event loop. There are no more event sources
514 to listen to. So we exit GDB. */
515 return;
519 /* Wrapper function for create_file_handler, so that the caller
520 doesn't have to know implementation details about the use of poll
521 vs. select. */
522 void
523 add_file_handler (int fd, handler_func * proc, gdb_client_data client_data)
525 #ifdef HAVE_POLL
526 struct pollfd fds;
527 #endif
529 if (use_poll)
531 #ifdef HAVE_POLL
532 /* Check to see if poll () is usable. If not, we'll switch to
533 use select. This can happen on systems like
534 m68k-motorola-sys, `poll' cannot be used to wait for `stdin'.
535 On m68k-motorola-sysv, tty's are not stream-based and not
536 `poll'able. */
537 fds.fd = fd;
538 fds.events = POLLIN;
539 if (poll (&fds, 1, 0) == 1 && (fds.revents & POLLNVAL))
540 use_poll = 0;
541 #else
542 internal_error (__FILE__, __LINE__,
543 _("use_poll without HAVE_POLL"));
544 #endif /* HAVE_POLL */
546 if (use_poll)
548 #ifdef HAVE_POLL
549 create_file_handler (fd, POLLIN, proc, client_data);
550 #else
551 internal_error (__FILE__, __LINE__,
552 _("use_poll without HAVE_POLL"));
553 #endif
555 else
556 create_file_handler (fd, GDB_READABLE | GDB_EXCEPTION, proc, client_data);
559 /* Add a file handler/descriptor to the list of descriptors we are
560 interested in.
561 FD is the file descriptor for the file/stream to be listened to.
562 For the poll case, MASK is a combination (OR) of
563 POLLIN, POLLRDNORM, POLLRDBAND, POLLPRI, POLLOUT, POLLWRNORM,
564 POLLWRBAND: these are the events we are interested in. If any of them
565 occurs, proc should be called.
566 For the select case, MASK is a combination of READABLE, WRITABLE, EXCEPTION.
567 PROC is the procedure that will be called when an event occurs for
568 FD. CLIENT_DATA is the argument to pass to PROC. */
569 static void
570 create_file_handler (int fd, int mask, handler_func * proc, gdb_client_data client_data)
572 file_handler *file_ptr;
574 /* Do we already have a file handler for this file? (We may be
575 changing its associated procedure). */
576 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
577 file_ptr = file_ptr->next_file)
579 if (file_ptr->fd == fd)
580 break;
583 /* It is a new file descriptor. Add it to the list. Otherwise, just
584 change the data associated with it. */
585 if (file_ptr == NULL)
587 file_ptr = (file_handler *) xmalloc (sizeof (file_handler));
588 file_ptr->fd = fd;
589 file_ptr->ready_mask = 0;
590 file_ptr->next_file = gdb_notifier.first_file_handler;
591 gdb_notifier.first_file_handler = file_ptr;
593 if (use_poll)
595 #ifdef HAVE_POLL
596 gdb_notifier.num_fds++;
597 if (gdb_notifier.poll_fds)
598 gdb_notifier.poll_fds =
599 (struct pollfd *) xrealloc (gdb_notifier.poll_fds,
600 (gdb_notifier.num_fds
601 * sizeof (struct pollfd)));
602 else
603 gdb_notifier.poll_fds =
604 (struct pollfd *) xmalloc (sizeof (struct pollfd));
605 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->fd = fd;
606 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->events = mask;
607 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->revents = 0;
608 #else
609 internal_error (__FILE__, __LINE__,
610 _("use_poll without HAVE_POLL"));
611 #endif /* HAVE_POLL */
613 else
615 if (mask & GDB_READABLE)
616 FD_SET (fd, &gdb_notifier.check_masks[0]);
617 else
618 FD_CLR (fd, &gdb_notifier.check_masks[0]);
620 if (mask & GDB_WRITABLE)
621 FD_SET (fd, &gdb_notifier.check_masks[1]);
622 else
623 FD_CLR (fd, &gdb_notifier.check_masks[1]);
625 if (mask & GDB_EXCEPTION)
626 FD_SET (fd, &gdb_notifier.check_masks[2]);
627 else
628 FD_CLR (fd, &gdb_notifier.check_masks[2]);
630 if (gdb_notifier.num_fds <= fd)
631 gdb_notifier.num_fds = fd + 1;
635 file_ptr->proc = proc;
636 file_ptr->client_data = client_data;
637 file_ptr->mask = mask;
640 /* Remove the file descriptor FD from the list of monitored fd's:
641 i.e. we don't care anymore about events on the FD. */
642 void
643 delete_file_handler (int fd)
645 file_handler *file_ptr, *prev_ptr = NULL;
646 int i;
647 #ifdef HAVE_POLL
648 int j;
649 struct pollfd *new_poll_fds;
650 #endif
652 /* Find the entry for the given file. */
654 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
655 file_ptr = file_ptr->next_file)
657 if (file_ptr->fd == fd)
658 break;
661 if (file_ptr == NULL)
662 return;
664 if (use_poll)
666 #ifdef HAVE_POLL
667 /* Create a new poll_fds array by copying every fd's information but the
668 one we want to get rid of. */
670 new_poll_fds =
671 (struct pollfd *) xmalloc ((gdb_notifier.num_fds - 1) * sizeof (struct pollfd));
673 for (i = 0, j = 0; i < gdb_notifier.num_fds; i++)
675 if ((gdb_notifier.poll_fds + i)->fd != fd)
677 (new_poll_fds + j)->fd = (gdb_notifier.poll_fds + i)->fd;
678 (new_poll_fds + j)->events = (gdb_notifier.poll_fds + i)->events;
679 (new_poll_fds + j)->revents = (gdb_notifier.poll_fds + i)->revents;
680 j++;
683 xfree (gdb_notifier.poll_fds);
684 gdb_notifier.poll_fds = new_poll_fds;
685 gdb_notifier.num_fds--;
686 #else
687 internal_error (__FILE__, __LINE__,
688 _("use_poll without HAVE_POLL"));
689 #endif /* HAVE_POLL */
691 else
693 if (file_ptr->mask & GDB_READABLE)
694 FD_CLR (fd, &gdb_notifier.check_masks[0]);
695 if (file_ptr->mask & GDB_WRITABLE)
696 FD_CLR (fd, &gdb_notifier.check_masks[1]);
697 if (file_ptr->mask & GDB_EXCEPTION)
698 FD_CLR (fd, &gdb_notifier.check_masks[2]);
700 /* Find current max fd. */
702 if ((fd + 1) == gdb_notifier.num_fds)
704 gdb_notifier.num_fds--;
705 for (i = gdb_notifier.num_fds; i; i--)
707 if (FD_ISSET (i - 1, &gdb_notifier.check_masks[0])
708 || FD_ISSET (i - 1, &gdb_notifier.check_masks[1])
709 || FD_ISSET (i - 1, &gdb_notifier.check_masks[2]))
710 break;
712 gdb_notifier.num_fds = i;
716 /* Deactivate the file descriptor, by clearing its mask,
717 so that it will not fire again. */
719 file_ptr->mask = 0;
721 /* Get rid of the file handler in the file handler list. */
722 if (file_ptr == gdb_notifier.first_file_handler)
723 gdb_notifier.first_file_handler = file_ptr->next_file;
724 else
726 for (prev_ptr = gdb_notifier.first_file_handler;
727 prev_ptr->next_file != file_ptr;
728 prev_ptr = prev_ptr->next_file)
730 prev_ptr->next_file = file_ptr->next_file;
732 xfree (file_ptr);
735 /* Handle the given event by calling the procedure associated to the
736 corresponding file handler. Called by process_event indirectly,
737 through event_ptr->proc. EVENT_FILE_DESC is file descriptor of the
738 event in the front of the event queue. */
739 static void
740 handle_file_event (event_data data)
742 file_handler *file_ptr;
743 int mask;
744 #ifdef HAVE_POLL
745 int error_mask;
746 int error_mask_returned;
747 #endif
748 int event_file_desc = data.integer;
750 /* Search the file handler list to find one that matches the fd in
751 the event. */
752 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
753 file_ptr = file_ptr->next_file)
755 if (file_ptr->fd == event_file_desc)
757 /* With poll, the ready_mask could have any of three events
758 set to 1: POLLHUP, POLLERR, POLLNVAL. These events cannot
759 be used in the requested event mask (events), but they
760 can be returned in the return mask (revents). We need to
761 check for those event too, and add them to the mask which
762 will be passed to the handler. */
764 /* See if the desired events (mask) match the received
765 events (ready_mask). */
767 if (use_poll)
769 #ifdef HAVE_POLL
770 error_mask = POLLHUP | POLLERR | POLLNVAL;
771 mask = (file_ptr->ready_mask & file_ptr->mask) |
772 (file_ptr->ready_mask & error_mask);
773 error_mask_returned = mask & error_mask;
775 if (error_mask_returned != 0)
777 /* Work in progress. We may need to tell somebody what
778 kind of error we had. */
779 if (error_mask_returned & POLLHUP)
780 printf_unfiltered (_("Hangup detected on fd %d\n"), file_ptr->fd);
781 if (error_mask_returned & POLLERR)
782 printf_unfiltered (_("Error detected on fd %d\n"), file_ptr->fd);
783 if (error_mask_returned & POLLNVAL)
784 printf_unfiltered (_("Invalid or non-`poll'able fd %d\n"), file_ptr->fd);
785 file_ptr->error = 1;
787 else
788 file_ptr->error = 0;
789 #else
790 internal_error (__FILE__, __LINE__,
791 _("use_poll without HAVE_POLL"));
792 #endif /* HAVE_POLL */
794 else
796 if (file_ptr->ready_mask & GDB_EXCEPTION)
798 printf_unfiltered (_("Exception condition detected on fd %d\n"), file_ptr->fd);
799 file_ptr->error = 1;
801 else
802 file_ptr->error = 0;
803 mask = file_ptr->ready_mask & file_ptr->mask;
806 /* Clear the received events for next time around. */
807 file_ptr->ready_mask = 0;
809 /* If there was a match, then call the handler. */
810 if (mask != 0)
811 (*file_ptr->proc) (file_ptr->error, file_ptr->client_data);
812 break;
817 /* Called by gdb_do_one_event to wait for new events on the monitored
818 file descriptors. Queue file events as they are detected by the
819 poll. If BLOCK and if there are no events, this function will
820 block in the call to poll. Return -1 if there are no files
821 descriptors to monitor, otherwise return 0. */
822 static int
823 gdb_wait_for_event (int block)
825 file_handler *file_ptr;
826 gdb_event *file_event_ptr;
827 int num_found = 0;
828 int i;
830 /* Make sure all output is done before getting another event. */
831 gdb_flush (gdb_stdout);
832 gdb_flush (gdb_stderr);
834 if (gdb_notifier.num_fds == 0)
835 return -1;
837 if (use_poll)
839 #ifdef HAVE_POLL
840 int timeout;
842 if (block)
843 timeout = gdb_notifier.timeout_valid ? gdb_notifier.poll_timeout : -1;
844 else
845 timeout = 0;
847 num_found = poll (gdb_notifier.poll_fds,
848 (unsigned long) gdb_notifier.num_fds, timeout);
850 /* Don't print anything if we get out of poll because of a
851 signal. */
852 if (num_found == -1 && errno != EINTR)
853 perror_with_name (("poll"));
854 #else
855 internal_error (__FILE__, __LINE__,
856 _("use_poll without HAVE_POLL"));
857 #endif /* HAVE_POLL */
859 else
861 struct timeval select_timeout;
863 struct timeval *timeout_p;
864 if (block)
865 timeout_p = gdb_notifier.timeout_valid
866 ? &gdb_notifier.select_timeout : NULL;
867 else
869 memset (&select_timeout, 0, sizeof (select_timeout));
870 timeout_p = &select_timeout;
873 gdb_notifier.ready_masks[0] = gdb_notifier.check_masks[0];
874 gdb_notifier.ready_masks[1] = gdb_notifier.check_masks[1];
875 gdb_notifier.ready_masks[2] = gdb_notifier.check_masks[2];
876 num_found = gdb_select (gdb_notifier.num_fds,
877 &gdb_notifier.ready_masks[0],
878 &gdb_notifier.ready_masks[1],
879 &gdb_notifier.ready_masks[2],
880 timeout_p);
882 /* Clear the masks after an error from select. */
883 if (num_found == -1)
885 FD_ZERO (&gdb_notifier.ready_masks[0]);
886 FD_ZERO (&gdb_notifier.ready_masks[1]);
887 FD_ZERO (&gdb_notifier.ready_masks[2]);
889 /* Dont print anything if we got a signal, let gdb handle
890 it. */
891 if (errno != EINTR)
892 perror_with_name (("select"));
896 /* Enqueue all detected file events. */
898 if (use_poll)
900 #ifdef HAVE_POLL
901 for (i = 0; (i < gdb_notifier.num_fds) && (num_found > 0); i++)
903 if ((gdb_notifier.poll_fds + i)->revents)
904 num_found--;
905 else
906 continue;
908 for (file_ptr = gdb_notifier.first_file_handler;
909 file_ptr != NULL;
910 file_ptr = file_ptr->next_file)
912 if (file_ptr->fd == (gdb_notifier.poll_fds + i)->fd)
913 break;
916 if (file_ptr)
918 /* Enqueue an event only if this is still a new event for
919 this fd. */
920 if (file_ptr->ready_mask == 0)
922 file_event_ptr = create_file_event (file_ptr->fd);
923 async_queue_event (file_event_ptr, TAIL);
925 file_ptr->ready_mask = (gdb_notifier.poll_fds + i)->revents;
928 #else
929 internal_error (__FILE__, __LINE__,
930 _("use_poll without HAVE_POLL"));
931 #endif /* HAVE_POLL */
933 else
935 for (file_ptr = gdb_notifier.first_file_handler;
936 (file_ptr != NULL) && (num_found > 0);
937 file_ptr = file_ptr->next_file)
939 int mask = 0;
941 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[0]))
942 mask |= GDB_READABLE;
943 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[1]))
944 mask |= GDB_WRITABLE;
945 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[2]))
946 mask |= GDB_EXCEPTION;
948 if (!mask)
949 continue;
950 else
951 num_found--;
953 /* Enqueue an event only if this is still a new event for
954 this fd. */
956 if (file_ptr->ready_mask == 0)
958 file_event_ptr = create_file_event (file_ptr->fd);
959 async_queue_event (file_event_ptr, TAIL);
961 file_ptr->ready_mask = mask;
964 return 0;
968 /* Create an asynchronous handler, allocating memory for it.
969 Return a pointer to the newly created handler.
970 This pointer will be used to invoke the handler by
971 invoke_async_signal_handler.
972 PROC is the function to call with CLIENT_DATA argument
973 whenever the handler is invoked. */
974 async_signal_handler *
975 create_async_signal_handler (sig_handler_func * proc, gdb_client_data client_data)
977 async_signal_handler *async_handler_ptr;
979 async_handler_ptr =
980 (async_signal_handler *) xmalloc (sizeof (async_signal_handler));
981 async_handler_ptr->ready = 0;
982 async_handler_ptr->next_handler = NULL;
983 async_handler_ptr->proc = proc;
984 async_handler_ptr->client_data = client_data;
985 if (sighandler_list.first_handler == NULL)
986 sighandler_list.first_handler = async_handler_ptr;
987 else
988 sighandler_list.last_handler->next_handler = async_handler_ptr;
989 sighandler_list.last_handler = async_handler_ptr;
990 return async_handler_ptr;
993 /* Call the handler from HANDLER immediately. This function runs
994 signal handlers when returning to the event loop would be too
995 slow. */
996 void
997 call_async_signal_handler (struct async_signal_handler *handler)
999 (*handler->proc) (handler->client_data);
1002 /* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information will
1003 be used when the handlers are invoked, after we have waited for
1004 some event. The caller of this function is the interrupt handler
1005 associated with a signal. */
1006 void
1007 mark_async_signal_handler (async_signal_handler * async_handler_ptr)
1009 async_handler_ptr->ready = 1;
1012 /* Call all the handlers that are ready. Returns true if any was
1013 indeed ready. */
1014 static int
1015 invoke_async_signal_handlers (void)
1017 async_signal_handler *async_handler_ptr;
1018 int any_ready = 0;
1020 /* Invoke ready handlers. */
1022 while (1)
1024 for (async_handler_ptr = sighandler_list.first_handler;
1025 async_handler_ptr != NULL;
1026 async_handler_ptr = async_handler_ptr->next_handler)
1028 if (async_handler_ptr->ready)
1029 break;
1031 if (async_handler_ptr == NULL)
1032 break;
1033 any_ready = 1;
1034 async_handler_ptr->ready = 0;
1035 (*async_handler_ptr->proc) (async_handler_ptr->client_data);
1038 return any_ready;
1041 /* Delete an asynchronous handler (ASYNC_HANDLER_PTR).
1042 Free the space allocated for it. */
1043 void
1044 delete_async_signal_handler (async_signal_handler ** async_handler_ptr)
1046 async_signal_handler *prev_ptr;
1048 if (sighandler_list.first_handler == (*async_handler_ptr))
1050 sighandler_list.first_handler = (*async_handler_ptr)->next_handler;
1051 if (sighandler_list.first_handler == NULL)
1052 sighandler_list.last_handler = NULL;
1054 else
1056 prev_ptr = sighandler_list.first_handler;
1057 while (prev_ptr && prev_ptr->next_handler != (*async_handler_ptr))
1058 prev_ptr = prev_ptr->next_handler;
1059 prev_ptr->next_handler = (*async_handler_ptr)->next_handler;
1060 if (sighandler_list.last_handler == (*async_handler_ptr))
1061 sighandler_list.last_handler = prev_ptr;
1063 xfree ((*async_handler_ptr));
1064 (*async_handler_ptr) = NULL;
1067 /* Create an asynchronous event handler, allocating memory for it.
1068 Return a pointer to the newly created handler. PROC is the
1069 function to call with CLIENT_DATA argument whenever the handler is
1070 invoked. */
1071 async_event_handler *
1072 create_async_event_handler (async_event_handler_func *proc,
1073 gdb_client_data client_data)
1075 async_event_handler *h;
1077 h = xmalloc (sizeof (*h));
1078 h->ready = 0;
1079 h->next_handler = NULL;
1080 h->proc = proc;
1081 h->client_data = client_data;
1082 if (async_event_handler_list.first_handler == NULL)
1083 async_event_handler_list.first_handler = h;
1084 else
1085 async_event_handler_list.last_handler->next_handler = h;
1086 async_event_handler_list.last_handler = h;
1087 return h;
1090 /* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information
1091 will be used by gdb_do_one_event. The caller will be whoever
1092 created the event source, and wants to signal that the event is
1093 ready to be handled. */
1094 void
1095 mark_async_event_handler (async_event_handler *async_handler_ptr)
1097 async_handler_ptr->ready = 1;
1100 struct async_event_handler_data
1102 async_event_handler_func* proc;
1103 gdb_client_data client_data;
1106 static void
1107 invoke_async_event_handler (event_data data)
1109 struct async_event_handler_data *hdata = data.ptr;
1110 async_event_handler_func* proc = hdata->proc;
1111 gdb_client_data client_data = hdata->client_data;
1113 xfree (hdata);
1114 (*proc) (client_data);
1117 /* Check if any asynchronous event handlers are ready, and queue
1118 events in the ready queue for any that are. */
1119 static void
1120 check_async_event_handlers (void)
1122 async_event_handler *async_handler_ptr;
1123 struct async_event_handler_data *hdata;
1124 struct gdb_event *event_ptr;
1125 event_data data;
1127 for (async_handler_ptr = async_event_handler_list.first_handler;
1128 async_handler_ptr != NULL;
1129 async_handler_ptr = async_handler_ptr->next_handler)
1131 if (async_handler_ptr->ready)
1133 async_handler_ptr->ready = 0;
1135 hdata = xmalloc (sizeof (*hdata));
1137 hdata->proc = async_handler_ptr->proc;
1138 hdata->client_data = async_handler_ptr->client_data;
1140 data.ptr = hdata;
1142 event_ptr = create_event (invoke_async_event_handler, data);
1143 async_queue_event (event_ptr, TAIL);
1148 /* Delete an asynchronous handler (ASYNC_HANDLER_PTR).
1149 Free the space allocated for it. */
1150 void
1151 delete_async_event_handler (async_event_handler **async_handler_ptr)
1153 async_event_handler *prev_ptr;
1155 if (async_event_handler_list.first_handler == *async_handler_ptr)
1157 async_event_handler_list.first_handler = (*async_handler_ptr)->next_handler;
1158 if (async_event_handler_list.first_handler == NULL)
1159 async_event_handler_list.last_handler = NULL;
1161 else
1163 prev_ptr = async_event_handler_list.first_handler;
1164 while (prev_ptr && prev_ptr->next_handler != *async_handler_ptr)
1165 prev_ptr = prev_ptr->next_handler;
1166 prev_ptr->next_handler = (*async_handler_ptr)->next_handler;
1167 if (async_event_handler_list.last_handler == (*async_handler_ptr))
1168 async_event_handler_list.last_handler = prev_ptr;
1170 xfree (*async_handler_ptr);
1171 *async_handler_ptr = NULL;
1174 /* Create a timer that will expire in MILLISECONDS from now. When the
1175 timer is ready, PROC will be executed. At creation, the timer is
1176 aded to the timers queue. This queue is kept sorted in order of
1177 increasing timers. Return a handle to the timer struct. */
1179 create_timer (int milliseconds, timer_handler_func * proc, gdb_client_data client_data)
1181 struct gdb_timer *timer_ptr, *timer_index, *prev_timer;
1182 struct timeval time_now, delta;
1184 /* compute seconds */
1185 delta.tv_sec = milliseconds / 1000;
1186 /* compute microseconds */
1187 delta.tv_usec = (milliseconds % 1000) * 1000;
1189 gettimeofday (&time_now, NULL);
1191 timer_ptr = (struct gdb_timer *) xmalloc (sizeof (gdb_timer));
1192 timer_ptr->when.tv_sec = time_now.tv_sec + delta.tv_sec;
1193 timer_ptr->when.tv_usec = time_now.tv_usec + delta.tv_usec;
1194 /* carry? */
1195 if (timer_ptr->when.tv_usec >= 1000000)
1197 timer_ptr->when.tv_sec += 1;
1198 timer_ptr->when.tv_usec -= 1000000;
1200 timer_ptr->proc = proc;
1201 timer_ptr->client_data = client_data;
1202 timer_list.num_timers++;
1203 timer_ptr->timer_id = timer_list.num_timers;
1205 /* Now add the timer to the timer queue, making sure it is sorted in
1206 increasing order of expiration. */
1208 for (timer_index = timer_list.first_timer;
1209 timer_index != NULL;
1210 timer_index = timer_index->next)
1212 /* If the seconds field is greater or if it is the same, but the
1213 microsecond field is greater. */
1214 if ((timer_index->when.tv_sec > timer_ptr->when.tv_sec)
1215 || ((timer_index->when.tv_sec == timer_ptr->when.tv_sec)
1216 && (timer_index->when.tv_usec > timer_ptr->when.tv_usec)))
1217 break;
1220 if (timer_index == timer_list.first_timer)
1222 timer_ptr->next = timer_list.first_timer;
1223 timer_list.first_timer = timer_ptr;
1226 else
1228 for (prev_timer = timer_list.first_timer;
1229 prev_timer->next != timer_index;
1230 prev_timer = prev_timer->next)
1233 prev_timer->next = timer_ptr;
1234 timer_ptr->next = timer_index;
1237 gdb_notifier.timeout_valid = 0;
1238 return timer_ptr->timer_id;
1241 /* There is a chance that the creator of the timer wants to get rid of
1242 it before it expires. */
1243 void
1244 delete_timer (int id)
1246 struct gdb_timer *timer_ptr, *prev_timer = NULL;
1248 /* Find the entry for the given timer. */
1250 for (timer_ptr = timer_list.first_timer; timer_ptr != NULL;
1251 timer_ptr = timer_ptr->next)
1253 if (timer_ptr->timer_id == id)
1254 break;
1257 if (timer_ptr == NULL)
1258 return;
1259 /* Get rid of the timer in the timer list. */
1260 if (timer_ptr == timer_list.first_timer)
1261 timer_list.first_timer = timer_ptr->next;
1262 else
1264 for (prev_timer = timer_list.first_timer;
1265 prev_timer->next != timer_ptr;
1266 prev_timer = prev_timer->next)
1268 prev_timer->next = timer_ptr->next;
1270 xfree (timer_ptr);
1272 gdb_notifier.timeout_valid = 0;
1275 /* When a timer event is put on the event queue, it will be handled by
1276 this function. Just call the associated procedure and delete the
1277 timer event from the event queue. Repeat this for each timer that
1278 has expired. */
1279 static void
1280 handle_timer_event (event_data dummy)
1282 struct timeval time_now;
1283 struct gdb_timer *timer_ptr, *saved_timer;
1285 gettimeofday (&time_now, NULL);
1286 timer_ptr = timer_list.first_timer;
1288 while (timer_ptr != NULL)
1290 if ((timer_ptr->when.tv_sec > time_now.tv_sec)
1291 || ((timer_ptr->when.tv_sec == time_now.tv_sec)
1292 && (timer_ptr->when.tv_usec > time_now.tv_usec)))
1293 break;
1295 /* Get rid of the timer from the beginning of the list. */
1296 timer_list.first_timer = timer_ptr->next;
1297 saved_timer = timer_ptr;
1298 timer_ptr = timer_ptr->next;
1299 /* Call the procedure associated with that timer. */
1300 (*saved_timer->proc) (saved_timer->client_data);
1301 xfree (saved_timer);
1304 gdb_notifier.timeout_valid = 0;
1307 /* Check whether any timers in the timers queue are ready. If at least
1308 one timer is ready, stick an event onto the event queue. Even in
1309 case more than one timer is ready, one event is enough, because the
1310 handle_timer_event() will go through the timers list and call the
1311 procedures associated with all that have expired. Update the
1312 timeout for the select() or poll() as well. */
1313 static void
1314 poll_timers (void)
1316 struct timeval time_now, delta;
1317 gdb_event *event_ptr;
1319 if (timer_list.first_timer != NULL)
1321 gettimeofday (&time_now, NULL);
1322 delta.tv_sec = timer_list.first_timer->when.tv_sec - time_now.tv_sec;
1323 delta.tv_usec = timer_list.first_timer->when.tv_usec - time_now.tv_usec;
1324 /* borrow? */
1325 if (delta.tv_usec < 0)
1327 delta.tv_sec -= 1;
1328 delta.tv_usec += 1000000;
1331 /* Oops it expired already. Tell select / poll to return
1332 immediately. (Cannot simply test if delta.tv_sec is negative
1333 because time_t might be unsigned.) */
1334 if (timer_list.first_timer->when.tv_sec < time_now.tv_sec
1335 || (timer_list.first_timer->when.tv_sec == time_now.tv_sec
1336 && timer_list.first_timer->when.tv_usec < time_now.tv_usec))
1338 delta.tv_sec = 0;
1339 delta.tv_usec = 0;
1342 if (delta.tv_sec == 0 && delta.tv_usec == 0)
1344 event_ptr = (gdb_event *) xmalloc (sizeof (gdb_event));
1345 event_ptr->proc = handle_timer_event;
1346 event_ptr->data.integer = timer_list.first_timer->timer_id;
1347 async_queue_event (event_ptr, TAIL);
1350 /* Now we need to update the timeout for select/ poll, because we
1351 don't want to sit there while this timer is expiring. */
1352 if (use_poll)
1354 #ifdef HAVE_POLL
1355 gdb_notifier.poll_timeout = delta.tv_sec * 1000;
1356 #else
1357 internal_error (__FILE__, __LINE__,
1358 _("use_poll without HAVE_POLL"));
1359 #endif /* HAVE_POLL */
1361 else
1363 gdb_notifier.select_timeout.tv_sec = delta.tv_sec;
1364 gdb_notifier.select_timeout.tv_usec = delta.tv_usec;
1366 gdb_notifier.timeout_valid = 1;
1368 else
1369 gdb_notifier.timeout_valid = 0;