Move start_event_loop out of event-loop.c
[deliverable/binutils-gdb.git] / gdb / event-loop.c
1 /* Event loop machinery for GDB, the GNU debugger.
2 Copyright (C) 1999-2020 Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21 #include "event-loop.h"
22 #include "event-top.h"
23 #include "ser-event.h"
24
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
32
33 #include <sys/types.h>
34 #include "gdbsupport/gdb_sys_time.h"
35 #include "gdb_select.h"
36 #include "observable.h"
37 #include "top.h"
38
39 /* Tell create_file_handler what events we are interested in.
40 This is used by the select version of the event loop. */
41
42 #define GDB_READABLE (1<<1)
43 #define GDB_WRITABLE (1<<2)
44 #define GDB_EXCEPTION (1<<3)
45
46 /* Information about each file descriptor we register with the event
47 loop. */
48
49 typedef struct file_handler
50 {
51 int fd; /* File descriptor. */
52 int mask; /* Events we want to monitor: POLLIN, etc. */
53 int ready_mask; /* Events that have been seen since
54 the last time. */
55 handler_func *proc; /* Procedure to call when fd is ready. */
56 gdb_client_data client_data; /* Argument to pass to proc. */
57 int error; /* Was an error detected on this fd? */
58 struct file_handler *next_file; /* Next registered file descriptor. */
59 }
60 file_handler;
61
62 /* PROC is a function to be invoked when the READY flag is set. This
63 happens when there has been a signal and the corresponding signal
64 handler has 'triggered' this async_signal_handler for execution.
65 The actual work to be done in response to a signal will be carried
66 out by PROC at a later time, within process_event. This provides a
67 deferred execution of signal handlers.
68
69 Async_init_signals takes care of setting up such an
70 async_signal_handler for each interesting signal. */
71
72 typedef struct async_signal_handler
73 {
74 int ready; /* If ready, call this handler
75 from the main event loop, using
76 invoke_async_handler. */
77 struct async_signal_handler *next_handler; /* Ptr to next handler. */
78 sig_handler_func *proc; /* Function to call to do the work. */
79 gdb_client_data client_data; /* Argument to async_handler_func. */
80 }
81 async_signal_handler;
82
83 /* PROC is a function to be invoked when the READY flag is set. This
84 happens when the event has been marked with
85 MARK_ASYNC_EVENT_HANDLER. The actual work to be done in response
86 to an event will be carried out by PROC at a later time, within
87 process_event. This provides a deferred execution of event
88 handlers. */
89 typedef struct async_event_handler
90 {
91 /* If ready, call this handler from the main event loop, using
92 invoke_event_handler. */
93 int ready;
94
95 /* Point to next handler. */
96 struct async_event_handler *next_handler;
97
98 /* Function to call to do the work. */
99 async_event_handler_func *proc;
100
101 /* Argument to PROC. */
102 gdb_client_data client_data;
103 }
104 async_event_handler;
105
106 /* Gdb_notifier is just a list of file descriptors gdb is interested in.
107 These are the input file descriptor, and the target file
108 descriptor. We have two flavors of the notifier, one for platforms
109 that have the POLL function, the other for those that don't, and
110 only support SELECT. Each of the elements in the gdb_notifier list is
111 basically a description of what kind of events gdb is interested
112 in, for each fd. */
113
114 /* As of 1999-04-30 only the input file descriptor is registered with the
115 event loop. */
116
117 /* Do we use poll or select ? */
118 #ifdef HAVE_POLL
119 #define USE_POLL 1
120 #else
121 #define USE_POLL 0
122 #endif /* HAVE_POLL */
123
124 static unsigned char use_poll = USE_POLL;
125
126 #ifdef USE_WIN32API
127 #include <windows.h>
128 #include <io.h>
129 #endif
130
131 static struct
132 {
133 /* Ptr to head of file handler list. */
134 file_handler *first_file_handler;
135
136 /* Next file handler to handle, for the select variant. To level
137 the fairness across event sources, we serve file handlers in a
138 round-robin-like fashion. The number and order of the polled
139 file handlers may change between invocations, but this is good
140 enough. */
141 file_handler *next_file_handler;
142
143 #ifdef HAVE_POLL
144 /* Ptr to array of pollfd structures. */
145 struct pollfd *poll_fds;
146
147 /* Next file descriptor to handle, for the poll variant. To level
148 the fairness across event sources, we poll the file descriptors
149 in a round-robin-like fashion. The number and order of the
150 polled file descriptors may change between invocations, but
151 this is good enough. */
152 int next_poll_fds_index;
153
154 /* Timeout in milliseconds for calls to poll(). */
155 int poll_timeout;
156 #endif
157
158 /* Masks to be used in the next call to select.
159 Bits are set in response to calls to create_file_handler. */
160 fd_set check_masks[3];
161
162 /* What file descriptors were found ready by select. */
163 fd_set ready_masks[3];
164
165 /* Number of file descriptors to monitor (for poll). */
166 /* Number of valid bits (highest fd value + 1) (for select). */
167 int num_fds;
168
169 /* Time structure for calls to select(). */
170 struct timeval select_timeout;
171
172 /* Flag to tell whether the timeout should be used. */
173 int timeout_valid;
174 }
175 gdb_notifier;
176
177 /* Structure associated with a timer. PROC will be executed at the
178 first occasion after WHEN. */
179 struct gdb_timer
180 {
181 std::chrono::steady_clock::time_point when;
182 int timer_id;
183 struct gdb_timer *next;
184 timer_handler_func *proc; /* Function to call to do the work. */
185 gdb_client_data client_data; /* Argument to async_handler_func. */
186 };
187
188 /* List of currently active timers. It is sorted in order of
189 increasing timers. */
190 static struct
191 {
192 /* Pointer to first in timer list. */
193 struct gdb_timer *first_timer;
194
195 /* Id of the last timer created. */
196 int num_timers;
197 }
198 timer_list;
199
200 /* All the async_signal_handlers gdb is interested in are kept onto
201 this list. */
202 static struct
203 {
204 /* Pointer to first in handler list. */
205 async_signal_handler *first_handler;
206
207 /* Pointer to last in handler list. */
208 async_signal_handler *last_handler;
209 }
210 sighandler_list;
211
212 /* All the async_event_handlers gdb is interested in are kept onto
213 this list. */
214 static struct
215 {
216 /* Pointer to first in handler list. */
217 async_event_handler *first_handler;
218
219 /* Pointer to last in handler list. */
220 async_event_handler *last_handler;
221 }
222 async_event_handler_list;
223
224 static int invoke_async_signal_handlers (void);
225 static void create_file_handler (int fd, int mask, handler_func *proc,
226 gdb_client_data client_data);
227 static int check_async_event_handlers (void);
228 static int gdb_wait_for_event (int);
229 static int update_wait_timeout (void);
230 static int poll_timers (void);
231 \f
232
233 /* This event is signalled whenever an asynchronous handler needs to
234 defer an action to the event loop. */
235 static struct serial_event *async_signal_handlers_serial_event;
236
237 /* Callback registered with ASYNC_SIGNAL_HANDLERS_SERIAL_EVENT. */
238
239 static void
240 async_signals_handler (int error, gdb_client_data client_data)
241 {
242 /* Do nothing. Handlers are run by invoke_async_signal_handlers
243 from instead. */
244 }
245
246 void
247 initialize_async_signal_handlers (void)
248 {
249 async_signal_handlers_serial_event = make_serial_event ();
250
251 add_file_handler (serial_event_fd (async_signal_handlers_serial_event),
252 async_signals_handler, NULL);
253 }
254
255 /* Process one high level event. If nothing is ready at this time,
256 wait for something to happen (via gdb_wait_for_event), then process
257 it. Returns >0 if something was done otherwise returns <0 (this
258 can happen if there are no event sources to wait for). */
259
260 int
261 gdb_do_one_event (void)
262 {
263 static int event_source_head = 0;
264 const int number_of_sources = 3;
265 int current = 0;
266
267 /* First let's see if there are any asynchronous signal handlers
268 that are ready. These would be the result of invoking any of the
269 signal handlers. */
270 if (invoke_async_signal_handlers ())
271 return 1;
272
273 /* To level the fairness across event sources, we poll them in a
274 round-robin fashion. */
275 for (current = 0; current < number_of_sources; current++)
276 {
277 int res;
278
279 switch (event_source_head)
280 {
281 case 0:
282 /* Are any timers that are ready? */
283 res = poll_timers ();
284 break;
285 case 1:
286 /* Are there events already waiting to be collected on the
287 monitored file descriptors? */
288 res = gdb_wait_for_event (0);
289 break;
290 case 2:
291 /* Are there any asynchronous event handlers ready? */
292 res = check_async_event_handlers ();
293 break;
294 default:
295 internal_error (__FILE__, __LINE__,
296 "unexpected event_source_head %d",
297 event_source_head);
298 }
299
300 event_source_head++;
301 if (event_source_head == number_of_sources)
302 event_source_head = 0;
303
304 if (res > 0)
305 return 1;
306 }
307
308 /* Block waiting for a new event. If gdb_wait_for_event returns -1,
309 we should get out because this means that there are no event
310 sources left. This will make the event loop stop, and the
311 application exit. */
312
313 if (gdb_wait_for_event (1) < 0)
314 return -1;
315
316 /* If gdb_wait_for_event has returned 1, it means that one event has
317 been handled. We break out of the loop. */
318 return 1;
319 }
320
321 \f
322
323 /* Wrapper function for create_file_handler, so that the caller
324 doesn't have to know implementation details about the use of poll
325 vs. select. */
326 void
327 add_file_handler (int fd, handler_func * proc, gdb_client_data client_data)
328 {
329 #ifdef HAVE_POLL
330 struct pollfd fds;
331 #endif
332
333 if (use_poll)
334 {
335 #ifdef HAVE_POLL
336 /* Check to see if poll () is usable. If not, we'll switch to
337 use select. This can happen on systems like
338 m68k-motorola-sys, `poll' cannot be used to wait for `stdin'.
339 On m68k-motorola-sysv, tty's are not stream-based and not
340 `poll'able. */
341 fds.fd = fd;
342 fds.events = POLLIN;
343 if (poll (&fds, 1, 0) == 1 && (fds.revents & POLLNVAL))
344 use_poll = 0;
345 #else
346 internal_error (__FILE__, __LINE__,
347 _("use_poll without HAVE_POLL"));
348 #endif /* HAVE_POLL */
349 }
350 if (use_poll)
351 {
352 #ifdef HAVE_POLL
353 create_file_handler (fd, POLLIN, proc, client_data);
354 #else
355 internal_error (__FILE__, __LINE__,
356 _("use_poll without HAVE_POLL"));
357 #endif
358 }
359 else
360 create_file_handler (fd, GDB_READABLE | GDB_EXCEPTION,
361 proc, client_data);
362 }
363
364 /* Add a file handler/descriptor to the list of descriptors we are
365 interested in.
366
367 FD is the file descriptor for the file/stream to be listened to.
368
369 For the poll case, MASK is a combination (OR) of POLLIN,
370 POLLRDNORM, POLLRDBAND, POLLPRI, POLLOUT, POLLWRNORM, POLLWRBAND:
371 these are the events we are interested in. If any of them occurs,
372 proc should be called.
373
374 For the select case, MASK is a combination of READABLE, WRITABLE,
375 EXCEPTION. PROC is the procedure that will be called when an event
376 occurs for FD. CLIENT_DATA is the argument to pass to PROC. */
377
378 static void
379 create_file_handler (int fd, int mask, handler_func * proc,
380 gdb_client_data client_data)
381 {
382 file_handler *file_ptr;
383
384 /* Do we already have a file handler for this file? (We may be
385 changing its associated procedure). */
386 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
387 file_ptr = file_ptr->next_file)
388 {
389 if (file_ptr->fd == fd)
390 break;
391 }
392
393 /* It is a new file descriptor. Add it to the list. Otherwise, just
394 change the data associated with it. */
395 if (file_ptr == NULL)
396 {
397 file_ptr = XNEW (file_handler);
398 file_ptr->fd = fd;
399 file_ptr->ready_mask = 0;
400 file_ptr->next_file = gdb_notifier.first_file_handler;
401 gdb_notifier.first_file_handler = file_ptr;
402
403 if (use_poll)
404 {
405 #ifdef HAVE_POLL
406 gdb_notifier.num_fds++;
407 if (gdb_notifier.poll_fds)
408 gdb_notifier.poll_fds =
409 (struct pollfd *) xrealloc (gdb_notifier.poll_fds,
410 (gdb_notifier.num_fds
411 * sizeof (struct pollfd)));
412 else
413 gdb_notifier.poll_fds =
414 XNEW (struct pollfd);
415 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->fd = fd;
416 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->events = mask;
417 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->revents = 0;
418 #else
419 internal_error (__FILE__, __LINE__,
420 _("use_poll without HAVE_POLL"));
421 #endif /* HAVE_POLL */
422 }
423 else
424 {
425 if (mask & GDB_READABLE)
426 FD_SET (fd, &gdb_notifier.check_masks[0]);
427 else
428 FD_CLR (fd, &gdb_notifier.check_masks[0]);
429
430 if (mask & GDB_WRITABLE)
431 FD_SET (fd, &gdb_notifier.check_masks[1]);
432 else
433 FD_CLR (fd, &gdb_notifier.check_masks[1]);
434
435 if (mask & GDB_EXCEPTION)
436 FD_SET (fd, &gdb_notifier.check_masks[2]);
437 else
438 FD_CLR (fd, &gdb_notifier.check_masks[2]);
439
440 if (gdb_notifier.num_fds <= fd)
441 gdb_notifier.num_fds = fd + 1;
442 }
443 }
444
445 file_ptr->proc = proc;
446 file_ptr->client_data = client_data;
447 file_ptr->mask = mask;
448 }
449
450 /* Return the next file handler to handle, and advance to the next
451 file handler, wrapping around if the end of the list is
452 reached. */
453
454 static file_handler *
455 get_next_file_handler_to_handle_and_advance (void)
456 {
457 file_handler *curr_next;
458
459 /* The first time around, this is still NULL. */
460 if (gdb_notifier.next_file_handler == NULL)
461 gdb_notifier.next_file_handler = gdb_notifier.first_file_handler;
462
463 curr_next = gdb_notifier.next_file_handler;
464 gdb_assert (curr_next != NULL);
465
466 /* Advance. */
467 gdb_notifier.next_file_handler = curr_next->next_file;
468 /* Wrap around, if necessary. */
469 if (gdb_notifier.next_file_handler == NULL)
470 gdb_notifier.next_file_handler = gdb_notifier.first_file_handler;
471
472 return curr_next;
473 }
474
475 /* Remove the file descriptor FD from the list of monitored fd's:
476 i.e. we don't care anymore about events on the FD. */
477 void
478 delete_file_handler (int fd)
479 {
480 file_handler *file_ptr, *prev_ptr = NULL;
481 int i;
482 #ifdef HAVE_POLL
483 int j;
484 struct pollfd *new_poll_fds;
485 #endif
486
487 /* Find the entry for the given file. */
488
489 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
490 file_ptr = file_ptr->next_file)
491 {
492 if (file_ptr->fd == fd)
493 break;
494 }
495
496 if (file_ptr == NULL)
497 return;
498
499 if (use_poll)
500 {
501 #ifdef HAVE_POLL
502 /* Create a new poll_fds array by copying every fd's information
503 but the one we want to get rid of. */
504
505 new_poll_fds = (struct pollfd *)
506 xmalloc ((gdb_notifier.num_fds - 1) * sizeof (struct pollfd));
507
508 for (i = 0, j = 0; i < gdb_notifier.num_fds; i++)
509 {
510 if ((gdb_notifier.poll_fds + i)->fd != fd)
511 {
512 (new_poll_fds + j)->fd = (gdb_notifier.poll_fds + i)->fd;
513 (new_poll_fds + j)->events = (gdb_notifier.poll_fds + i)->events;
514 (new_poll_fds + j)->revents
515 = (gdb_notifier.poll_fds + i)->revents;
516 j++;
517 }
518 }
519 xfree (gdb_notifier.poll_fds);
520 gdb_notifier.poll_fds = new_poll_fds;
521 gdb_notifier.num_fds--;
522 #else
523 internal_error (__FILE__, __LINE__,
524 _("use_poll without HAVE_POLL"));
525 #endif /* HAVE_POLL */
526 }
527 else
528 {
529 if (file_ptr->mask & GDB_READABLE)
530 FD_CLR (fd, &gdb_notifier.check_masks[0]);
531 if (file_ptr->mask & GDB_WRITABLE)
532 FD_CLR (fd, &gdb_notifier.check_masks[1]);
533 if (file_ptr->mask & GDB_EXCEPTION)
534 FD_CLR (fd, &gdb_notifier.check_masks[2]);
535
536 /* Find current max fd. */
537
538 if ((fd + 1) == gdb_notifier.num_fds)
539 {
540 gdb_notifier.num_fds--;
541 for (i = gdb_notifier.num_fds; i; i--)
542 {
543 if (FD_ISSET (i - 1, &gdb_notifier.check_masks[0])
544 || FD_ISSET (i - 1, &gdb_notifier.check_masks[1])
545 || FD_ISSET (i - 1, &gdb_notifier.check_masks[2]))
546 break;
547 }
548 gdb_notifier.num_fds = i;
549 }
550 }
551
552 /* Deactivate the file descriptor, by clearing its mask,
553 so that it will not fire again. */
554
555 file_ptr->mask = 0;
556
557 /* If this file handler was going to be the next one to be handled,
558 advance to the next's next, if any. */
559 if (gdb_notifier.next_file_handler == file_ptr)
560 {
561 if (file_ptr->next_file == NULL
562 && file_ptr == gdb_notifier.first_file_handler)
563 gdb_notifier.next_file_handler = NULL;
564 else
565 get_next_file_handler_to_handle_and_advance ();
566 }
567
568 /* Get rid of the file handler in the file handler list. */
569 if (file_ptr == gdb_notifier.first_file_handler)
570 gdb_notifier.first_file_handler = file_ptr->next_file;
571 else
572 {
573 for (prev_ptr = gdb_notifier.first_file_handler;
574 prev_ptr->next_file != file_ptr;
575 prev_ptr = prev_ptr->next_file)
576 ;
577 prev_ptr->next_file = file_ptr->next_file;
578 }
579 xfree (file_ptr);
580 }
581
582 /* Handle the given event by calling the procedure associated to the
583 corresponding file handler. */
584
585 static void
586 handle_file_event (file_handler *file_ptr, int ready_mask)
587 {
588 int mask;
589 #ifdef HAVE_POLL
590 int error_mask;
591 #endif
592
593 {
594 {
595 /* With poll, the ready_mask could have any of three events
596 set to 1: POLLHUP, POLLERR, POLLNVAL. These events
597 cannot be used in the requested event mask (events), but
598 they can be returned in the return mask (revents). We
599 need to check for those event too, and add them to the
600 mask which will be passed to the handler. */
601
602 /* See if the desired events (mask) match the received
603 events (ready_mask). */
604
605 if (use_poll)
606 {
607 #ifdef HAVE_POLL
608 /* POLLHUP means EOF, but can be combined with POLLIN to
609 signal more data to read. */
610 error_mask = POLLHUP | POLLERR | POLLNVAL;
611 mask = ready_mask & (file_ptr->mask | error_mask);
612
613 if ((mask & (POLLERR | POLLNVAL)) != 0)
614 {
615 /* Work in progress. We may need to tell somebody
616 what kind of error we had. */
617 if (mask & POLLERR)
618 printf_unfiltered (_("Error detected on fd %d\n"),
619 file_ptr->fd);
620 if (mask & POLLNVAL)
621 printf_unfiltered (_("Invalid or non-`poll'able fd %d\n"),
622 file_ptr->fd);
623 file_ptr->error = 1;
624 }
625 else
626 file_ptr->error = 0;
627 #else
628 internal_error (__FILE__, __LINE__,
629 _("use_poll without HAVE_POLL"));
630 #endif /* HAVE_POLL */
631 }
632 else
633 {
634 if (ready_mask & GDB_EXCEPTION)
635 {
636 printf_unfiltered (_("Exception condition detected "
637 "on fd %d\n"), file_ptr->fd);
638 file_ptr->error = 1;
639 }
640 else
641 file_ptr->error = 0;
642 mask = ready_mask & file_ptr->mask;
643 }
644
645 /* If there was a match, then call the handler. */
646 if (mask != 0)
647 (*file_ptr->proc) (file_ptr->error, file_ptr->client_data);
648 }
649 }
650 }
651
652 /* Wait for new events on the monitored file descriptors. Run the
653 event handler if the first descriptor that is detected by the poll.
654 If BLOCK and if there are no events, this function will block in
655 the call to poll. Return 1 if an event was handled. Return -1 if
656 there are no file descriptors to monitor. Return 1 if an event was
657 handled, otherwise returns 0. */
658
659 static int
660 gdb_wait_for_event (int block)
661 {
662 file_handler *file_ptr;
663 int num_found = 0;
664
665 /* Make sure all output is done before getting another event. */
666 gdb_stdout->flush ();
667 gdb_stderr->flush ();
668
669 if (gdb_notifier.num_fds == 0)
670 return -1;
671
672 if (block)
673 update_wait_timeout ();
674
675 if (use_poll)
676 {
677 #ifdef HAVE_POLL
678 int timeout;
679
680 if (block)
681 timeout = gdb_notifier.timeout_valid ? gdb_notifier.poll_timeout : -1;
682 else
683 timeout = 0;
684
685 num_found = poll (gdb_notifier.poll_fds,
686 (unsigned long) gdb_notifier.num_fds, timeout);
687
688 /* Don't print anything if we get out of poll because of a
689 signal. */
690 if (num_found == -1 && errno != EINTR)
691 perror_with_name (("poll"));
692 #else
693 internal_error (__FILE__, __LINE__,
694 _("use_poll without HAVE_POLL"));
695 #endif /* HAVE_POLL */
696 }
697 else
698 {
699 struct timeval select_timeout;
700 struct timeval *timeout_p;
701
702 if (block)
703 timeout_p = gdb_notifier.timeout_valid
704 ? &gdb_notifier.select_timeout : NULL;
705 else
706 {
707 memset (&select_timeout, 0, sizeof (select_timeout));
708 timeout_p = &select_timeout;
709 }
710
711 gdb_notifier.ready_masks[0] = gdb_notifier.check_masks[0];
712 gdb_notifier.ready_masks[1] = gdb_notifier.check_masks[1];
713 gdb_notifier.ready_masks[2] = gdb_notifier.check_masks[2];
714 num_found = gdb_select (gdb_notifier.num_fds,
715 &gdb_notifier.ready_masks[0],
716 &gdb_notifier.ready_masks[1],
717 &gdb_notifier.ready_masks[2],
718 timeout_p);
719
720 /* Clear the masks after an error from select. */
721 if (num_found == -1)
722 {
723 FD_ZERO (&gdb_notifier.ready_masks[0]);
724 FD_ZERO (&gdb_notifier.ready_masks[1]);
725 FD_ZERO (&gdb_notifier.ready_masks[2]);
726
727 /* Dont print anything if we got a signal, let gdb handle
728 it. */
729 if (errno != EINTR)
730 perror_with_name (("select"));
731 }
732 }
733
734 /* Avoid looking at poll_fds[i]->revents if no event fired. */
735 if (num_found <= 0)
736 return 0;
737
738 /* Run event handlers. We always run just one handler and go back
739 to polling, in case a handler changes the notifier list. Since
740 events for sources we haven't consumed yet wake poll/select
741 immediately, no event is lost. */
742
743 /* To level the fairness across event descriptors, we handle them in
744 a round-robin-like fashion. The number and order of descriptors
745 may change between invocations, but this is good enough. */
746 if (use_poll)
747 {
748 #ifdef HAVE_POLL
749 int i;
750 int mask;
751
752 while (1)
753 {
754 if (gdb_notifier.next_poll_fds_index >= gdb_notifier.num_fds)
755 gdb_notifier.next_poll_fds_index = 0;
756 i = gdb_notifier.next_poll_fds_index++;
757
758 gdb_assert (i < gdb_notifier.num_fds);
759 if ((gdb_notifier.poll_fds + i)->revents)
760 break;
761 }
762
763 for (file_ptr = gdb_notifier.first_file_handler;
764 file_ptr != NULL;
765 file_ptr = file_ptr->next_file)
766 {
767 if (file_ptr->fd == (gdb_notifier.poll_fds + i)->fd)
768 break;
769 }
770 gdb_assert (file_ptr != NULL);
771
772 mask = (gdb_notifier.poll_fds + i)->revents;
773 handle_file_event (file_ptr, mask);
774 return 1;
775 #else
776 internal_error (__FILE__, __LINE__,
777 _("use_poll without HAVE_POLL"));
778 #endif /* HAVE_POLL */
779 }
780 else
781 {
782 /* See comment about even source fairness above. */
783 int mask = 0;
784
785 do
786 {
787 file_ptr = get_next_file_handler_to_handle_and_advance ();
788
789 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[0]))
790 mask |= GDB_READABLE;
791 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[1]))
792 mask |= GDB_WRITABLE;
793 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[2]))
794 mask |= GDB_EXCEPTION;
795 }
796 while (mask == 0);
797
798 handle_file_event (file_ptr, mask);
799 return 1;
800 }
801 return 0;
802 }
803 \f
804
805 /* Create an asynchronous handler, allocating memory for it.
806 Return a pointer to the newly created handler.
807 This pointer will be used to invoke the handler by
808 invoke_async_signal_handler.
809 PROC is the function to call with CLIENT_DATA argument
810 whenever the handler is invoked. */
811 async_signal_handler *
812 create_async_signal_handler (sig_handler_func * proc,
813 gdb_client_data client_data)
814 {
815 async_signal_handler *async_handler_ptr;
816
817 async_handler_ptr = XNEW (async_signal_handler);
818 async_handler_ptr->ready = 0;
819 async_handler_ptr->next_handler = NULL;
820 async_handler_ptr->proc = proc;
821 async_handler_ptr->client_data = client_data;
822 if (sighandler_list.first_handler == NULL)
823 sighandler_list.first_handler = async_handler_ptr;
824 else
825 sighandler_list.last_handler->next_handler = async_handler_ptr;
826 sighandler_list.last_handler = async_handler_ptr;
827 return async_handler_ptr;
828 }
829
830 /* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information
831 will be used when the handlers are invoked, after we have waited
832 for some event. The caller of this function is the interrupt
833 handler associated with a signal. */
834 void
835 mark_async_signal_handler (async_signal_handler * async_handler_ptr)
836 {
837 async_handler_ptr->ready = 1;
838 serial_event_set (async_signal_handlers_serial_event);
839 }
840
841 /* See event-loop.h. */
842
843 void
844 clear_async_signal_handler (async_signal_handler *async_handler_ptr)
845 {
846 async_handler_ptr->ready = 0;
847 }
848
849 /* See event-loop.h. */
850
851 int
852 async_signal_handler_is_marked (async_signal_handler *async_handler_ptr)
853 {
854 return async_handler_ptr->ready;
855 }
856
857 /* Call all the handlers that are ready. Returns true if any was
858 indeed ready. */
859
860 static int
861 invoke_async_signal_handlers (void)
862 {
863 async_signal_handler *async_handler_ptr;
864 int any_ready = 0;
865
866 /* We're going to handle all pending signals, so no need to wake up
867 the event loop again the next time around. Note this must be
868 cleared _before_ calling the callbacks, to avoid races. */
869 serial_event_clear (async_signal_handlers_serial_event);
870
871 /* Invoke all ready handlers. */
872
873 while (1)
874 {
875 for (async_handler_ptr = sighandler_list.first_handler;
876 async_handler_ptr != NULL;
877 async_handler_ptr = async_handler_ptr->next_handler)
878 {
879 if (async_handler_ptr->ready)
880 break;
881 }
882 if (async_handler_ptr == NULL)
883 break;
884 any_ready = 1;
885 async_handler_ptr->ready = 0;
886 /* Async signal handlers have no connection to whichever was the
887 current UI, and thus always run on the main one. */
888 current_ui = main_ui;
889 (*async_handler_ptr->proc) (async_handler_ptr->client_data);
890 }
891
892 return any_ready;
893 }
894
895 /* Delete an asynchronous handler (ASYNC_HANDLER_PTR).
896 Free the space allocated for it. */
897 void
898 delete_async_signal_handler (async_signal_handler ** async_handler_ptr)
899 {
900 async_signal_handler *prev_ptr;
901
902 if (sighandler_list.first_handler == (*async_handler_ptr))
903 {
904 sighandler_list.first_handler = (*async_handler_ptr)->next_handler;
905 if (sighandler_list.first_handler == NULL)
906 sighandler_list.last_handler = NULL;
907 }
908 else
909 {
910 prev_ptr = sighandler_list.first_handler;
911 while (prev_ptr && prev_ptr->next_handler != (*async_handler_ptr))
912 prev_ptr = prev_ptr->next_handler;
913 gdb_assert (prev_ptr);
914 prev_ptr->next_handler = (*async_handler_ptr)->next_handler;
915 if (sighandler_list.last_handler == (*async_handler_ptr))
916 sighandler_list.last_handler = prev_ptr;
917 }
918 xfree ((*async_handler_ptr));
919 (*async_handler_ptr) = NULL;
920 }
921
922 /* Create an asynchronous event handler, allocating memory for it.
923 Return a pointer to the newly created handler. PROC is the
924 function to call with CLIENT_DATA argument whenever the handler is
925 invoked. */
926 async_event_handler *
927 create_async_event_handler (async_event_handler_func *proc,
928 gdb_client_data client_data)
929 {
930 async_event_handler *h;
931
932 h = XNEW (struct async_event_handler);
933 h->ready = 0;
934 h->next_handler = NULL;
935 h->proc = proc;
936 h->client_data = client_data;
937 if (async_event_handler_list.first_handler == NULL)
938 async_event_handler_list.first_handler = h;
939 else
940 async_event_handler_list.last_handler->next_handler = h;
941 async_event_handler_list.last_handler = h;
942 return h;
943 }
944
945 /* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information
946 will be used by gdb_do_one_event. The caller will be whoever
947 created the event source, and wants to signal that the event is
948 ready to be handled. */
949 void
950 mark_async_event_handler (async_event_handler *async_handler_ptr)
951 {
952 async_handler_ptr->ready = 1;
953 }
954
955 /* See event-loop.h. */
956
957 void
958 clear_async_event_handler (async_event_handler *async_handler_ptr)
959 {
960 async_handler_ptr->ready = 0;
961 }
962
963 /* Check if asynchronous event handlers are ready, and call the
964 handler function for one that is. */
965
966 static int
967 check_async_event_handlers (void)
968 {
969 async_event_handler *async_handler_ptr;
970
971 for (async_handler_ptr = async_event_handler_list.first_handler;
972 async_handler_ptr != NULL;
973 async_handler_ptr = async_handler_ptr->next_handler)
974 {
975 if (async_handler_ptr->ready)
976 {
977 async_handler_ptr->ready = 0;
978 (*async_handler_ptr->proc) (async_handler_ptr->client_data);
979 return 1;
980 }
981 }
982
983 return 0;
984 }
985
986 /* Delete an asynchronous handler (ASYNC_HANDLER_PTR).
987 Free the space allocated for it. */
988 void
989 delete_async_event_handler (async_event_handler **async_handler_ptr)
990 {
991 async_event_handler *prev_ptr;
992
993 if (async_event_handler_list.first_handler == *async_handler_ptr)
994 {
995 async_event_handler_list.first_handler
996 = (*async_handler_ptr)->next_handler;
997 if (async_event_handler_list.first_handler == NULL)
998 async_event_handler_list.last_handler = NULL;
999 }
1000 else
1001 {
1002 prev_ptr = async_event_handler_list.first_handler;
1003 while (prev_ptr && prev_ptr->next_handler != *async_handler_ptr)
1004 prev_ptr = prev_ptr->next_handler;
1005 gdb_assert (prev_ptr);
1006 prev_ptr->next_handler = (*async_handler_ptr)->next_handler;
1007 if (async_event_handler_list.last_handler == (*async_handler_ptr))
1008 async_event_handler_list.last_handler = prev_ptr;
1009 }
1010 xfree (*async_handler_ptr);
1011 *async_handler_ptr = NULL;
1012 }
1013
1014 /* Create a timer that will expire in MS milliseconds from now. When
1015 the timer is ready, PROC will be executed. At creation, the timer
1016 is added to the timers queue. This queue is kept sorted in order
1017 of increasing timers. Return a handle to the timer struct. */
1018
1019 int
1020 create_timer (int ms, timer_handler_func *proc,
1021 gdb_client_data client_data)
1022 {
1023 using namespace std::chrono;
1024 struct gdb_timer *timer_ptr, *timer_index, *prev_timer;
1025
1026 steady_clock::time_point time_now = steady_clock::now ();
1027
1028 timer_ptr = new gdb_timer ();
1029 timer_ptr->when = time_now + milliseconds (ms);
1030 timer_ptr->proc = proc;
1031 timer_ptr->client_data = client_data;
1032 timer_list.num_timers++;
1033 timer_ptr->timer_id = timer_list.num_timers;
1034
1035 /* Now add the timer to the timer queue, making sure it is sorted in
1036 increasing order of expiration. */
1037
1038 for (timer_index = timer_list.first_timer;
1039 timer_index != NULL;
1040 timer_index = timer_index->next)
1041 {
1042 if (timer_index->when > timer_ptr->when)
1043 break;
1044 }
1045
1046 if (timer_index == timer_list.first_timer)
1047 {
1048 timer_ptr->next = timer_list.first_timer;
1049 timer_list.first_timer = timer_ptr;
1050
1051 }
1052 else
1053 {
1054 for (prev_timer = timer_list.first_timer;
1055 prev_timer->next != timer_index;
1056 prev_timer = prev_timer->next)
1057 ;
1058
1059 prev_timer->next = timer_ptr;
1060 timer_ptr->next = timer_index;
1061 }
1062
1063 gdb_notifier.timeout_valid = 0;
1064 return timer_ptr->timer_id;
1065 }
1066
1067 /* There is a chance that the creator of the timer wants to get rid of
1068 it before it expires. */
1069 void
1070 delete_timer (int id)
1071 {
1072 struct gdb_timer *timer_ptr, *prev_timer = NULL;
1073
1074 /* Find the entry for the given timer. */
1075
1076 for (timer_ptr = timer_list.first_timer; timer_ptr != NULL;
1077 timer_ptr = timer_ptr->next)
1078 {
1079 if (timer_ptr->timer_id == id)
1080 break;
1081 }
1082
1083 if (timer_ptr == NULL)
1084 return;
1085 /* Get rid of the timer in the timer list. */
1086 if (timer_ptr == timer_list.first_timer)
1087 timer_list.first_timer = timer_ptr->next;
1088 else
1089 {
1090 for (prev_timer = timer_list.first_timer;
1091 prev_timer->next != timer_ptr;
1092 prev_timer = prev_timer->next)
1093 ;
1094 prev_timer->next = timer_ptr->next;
1095 }
1096 delete timer_ptr;
1097
1098 gdb_notifier.timeout_valid = 0;
1099 }
1100
1101 /* Convert a std::chrono duration to a struct timeval. */
1102
1103 template<typename Duration>
1104 static struct timeval
1105 duration_cast_timeval (const Duration &d)
1106 {
1107 using namespace std::chrono;
1108 seconds sec = duration_cast<seconds> (d);
1109 microseconds msec = duration_cast<microseconds> (d - sec);
1110
1111 struct timeval tv;
1112 tv.tv_sec = sec.count ();
1113 tv.tv_usec = msec.count ();
1114 return tv;
1115 }
1116
1117 /* Update the timeout for the select() or poll(). Returns true if the
1118 timer has already expired, false otherwise. */
1119
1120 static int
1121 update_wait_timeout (void)
1122 {
1123 if (timer_list.first_timer != NULL)
1124 {
1125 using namespace std::chrono;
1126 steady_clock::time_point time_now = steady_clock::now ();
1127 struct timeval timeout;
1128
1129 if (timer_list.first_timer->when < time_now)
1130 {
1131 /* It expired already. */
1132 timeout.tv_sec = 0;
1133 timeout.tv_usec = 0;
1134 }
1135 else
1136 {
1137 steady_clock::duration d = timer_list.first_timer->when - time_now;
1138 timeout = duration_cast_timeval (d);
1139 }
1140
1141 /* Update the timeout for select/ poll. */
1142 if (use_poll)
1143 {
1144 #ifdef HAVE_POLL
1145 gdb_notifier.poll_timeout = timeout.tv_sec * 1000;
1146 #else
1147 internal_error (__FILE__, __LINE__,
1148 _("use_poll without HAVE_POLL"));
1149 #endif /* HAVE_POLL */
1150 }
1151 else
1152 {
1153 gdb_notifier.select_timeout.tv_sec = timeout.tv_sec;
1154 gdb_notifier.select_timeout.tv_usec = timeout.tv_usec;
1155 }
1156 gdb_notifier.timeout_valid = 1;
1157
1158 if (timer_list.first_timer->when < time_now)
1159 return 1;
1160 }
1161 else
1162 gdb_notifier.timeout_valid = 0;
1163
1164 return 0;
1165 }
1166
1167 /* Check whether a timer in the timers queue is ready. If a timer is
1168 ready, call its handler and return. Update the timeout for the
1169 select() or poll() as well. Return 1 if an event was handled,
1170 otherwise returns 0.*/
1171
1172 static int
1173 poll_timers (void)
1174 {
1175 if (update_wait_timeout ())
1176 {
1177 struct gdb_timer *timer_ptr = timer_list.first_timer;
1178 timer_handler_func *proc = timer_ptr->proc;
1179 gdb_client_data client_data = timer_ptr->client_data;
1180
1181 /* Get rid of the timer from the beginning of the list. */
1182 timer_list.first_timer = timer_ptr->next;
1183
1184 /* Delete the timer before calling the callback, not after, in
1185 case the callback itself decides to try deleting the timer
1186 too. */
1187 delete timer_ptr;
1188
1189 /* Call the procedure associated with that timer. */
1190 (proc) (client_data);
1191
1192 return 1;
1193 }
1194
1195 return 0;
1196 }
This page took 0.057512 seconds and 5 git commands to generate.