1 /* The common simulator framework for GDB, the GNU Debugger.
3 Copyright 2002-2024 Free Software Foundation, Inc.
5 Contributed by Andrew Cagney and Red Hat.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 /* This must come before any other includes. */
38 #include "sim/callback.h"
40 /* Define the rate at which the simulator should poll the host
42 #ifndef POLL_QUIT_INTERVAL
43 #define POLL_QUIT_INTERVAL 0x10
46 static int poll_quit_count
= POLL_QUIT_INTERVAL
;
48 /* See the file include/callbacks.h for a description */
52 sim_io_init (SIM_DESC sd
)
54 return STATE_CALLBACK (sd
)->init (STATE_CALLBACK (sd
));
59 sim_io_shutdown (SIM_DESC sd
)
61 return STATE_CALLBACK (sd
)->shutdown (STATE_CALLBACK (sd
));
66 sim_io_unlink (SIM_DESC sd
,
69 return STATE_CALLBACK (sd
)->unlink (STATE_CALLBACK (sd
), f1
);
74 sim_io_time (SIM_DESC sd
)
76 return STATE_CALLBACK (sd
)->time (STATE_CALLBACK (sd
));
81 sim_io_system (SIM_DESC sd
, const char *s
)
83 return STATE_CALLBACK (sd
)->system (STATE_CALLBACK (sd
), s
);
88 sim_io_rename (SIM_DESC sd
,
92 return STATE_CALLBACK (sd
)->rename (STATE_CALLBACK (sd
), f1
, f2
);
97 sim_io_write_stdout (SIM_DESC sd
,
101 switch (CURRENT_STDIO
) {
103 return STATE_CALLBACK (sd
)->write_stdout (STATE_CALLBACK (sd
), buf
, len
);
106 return STATE_CALLBACK (sd
)->write (STATE_CALLBACK (sd
), 1, buf
, len
);
109 sim_io_error (sd
, "sim_io_write_stdout: unaccounted switch\n");
117 sim_io_flush_stdout (SIM_DESC sd
)
119 switch (CURRENT_STDIO
) {
121 STATE_CALLBACK (sd
)->flush_stdout (STATE_CALLBACK (sd
));
126 sim_io_error (sd
, "sim_io_flush_stdout: unaccounted switch\n");
133 sim_io_write_stderr (SIM_DESC sd
,
137 switch (CURRENT_STDIO
) {
139 return STATE_CALLBACK (sd
)->write_stderr (STATE_CALLBACK (sd
), buf
, len
);
142 return STATE_CALLBACK (sd
)->write (STATE_CALLBACK (sd
), 2, buf
, len
);
145 sim_io_error (sd
, "sim_io_write_stderr: unaccounted switch\n");
153 sim_io_flush_stderr (SIM_DESC sd
)
155 switch (CURRENT_STDIO
) {
157 STATE_CALLBACK (sd
)->flush_stderr (STATE_CALLBACK (sd
));
162 sim_io_error (sd
, "sim_io_flush_stderr: unaccounted switch\n");
169 sim_io_write (SIM_DESC sd
,
174 return STATE_CALLBACK (sd
)->write (STATE_CALLBACK (sd
), fd
, buf
, len
);
179 sim_io_read_stdin (SIM_DESC sd
,
183 switch (CURRENT_STDIO
) {
185 return STATE_CALLBACK (sd
)->read_stdin (STATE_CALLBACK (sd
), buf
, len
);
188 return STATE_CALLBACK (sd
)->read (STATE_CALLBACK (sd
), 0, buf
, len
);
191 sim_io_error (sd
, "sim_io_read_stdin: unaccounted switch\n");
199 sim_io_read (SIM_DESC sd
, int fd
,
203 return STATE_CALLBACK (sd
)->read (STATE_CALLBACK (sd
), fd
, buf
, len
);
208 sim_io_open (SIM_DESC sd
,
212 return STATE_CALLBACK (sd
)->open (STATE_CALLBACK (sd
), name
, flags
);
217 sim_io_lseek (SIM_DESC sd
,
222 return STATE_CALLBACK (sd
)->lseek (STATE_CALLBACK (sd
), fd
, off
, way
);
227 sim_io_isatty (SIM_DESC sd
,
230 return STATE_CALLBACK (sd
)->isatty (STATE_CALLBACK (sd
), fd
);
235 sim_io_get_errno (SIM_DESC sd
)
237 return STATE_CALLBACK (sd
)->get_errno (STATE_CALLBACK (sd
));
242 sim_io_close (SIM_DESC sd
,
245 return STATE_CALLBACK (sd
)->close (STATE_CALLBACK (sd
), fd
);
250 sim_io_printf (SIM_DESC sd
,
256 STATE_CALLBACK (sd
)->vprintf_filtered (STATE_CALLBACK (sd
), fmt
, ap
);
262 sim_io_vprintf (SIM_DESC sd
,
266 STATE_CALLBACK (sd
)->vprintf_filtered (STATE_CALLBACK (sd
), fmt
, ap
);
271 sim_io_eprintf (SIM_DESC sd
,
277 STATE_CALLBACK (sd
)->evprintf_filtered (STATE_CALLBACK (sd
), fmt
, ap
);
283 sim_io_evprintf (SIM_DESC sd
,
287 STATE_CALLBACK (sd
)->evprintf_filtered (STATE_CALLBACK (sd
), fmt
, ap
);
292 sim_io_error (SIM_DESC sd
,
296 if (sd
== NULL
|| STATE_CALLBACK (sd
) == NULL
) {
299 vfprintf (stderr
, fmt
, ap
);
301 fprintf (stderr
, "\n");
307 STATE_CALLBACK (sd
)->evprintf_filtered (STATE_CALLBACK (sd
), fmt
, ap
);
309 /* The %s avoids empty printf compiler warnings. Not ideal, but we want
310 error's side-effect where it halts processing. */
311 STATE_CALLBACK (sd
)->error (STATE_CALLBACK (sd
), "%s", "");
317 sim_io_poll_quit (SIM_DESC sd
)
319 if (STATE_CALLBACK (sd
)->poll_quit
!= NULL
&& poll_quit_count
-- < 0)
321 poll_quit_count
= POLL_QUIT_INTERVAL
;
322 if (STATE_CALLBACK (sd
)->poll_quit (STATE_CALLBACK (sd
)))
328 /* Based on gdb-4.17/sim/ppc/main.c:sim_io_read_stdin().
330 FIXME: Should not be calling fcntl() or grubbing around inside of
333 FIXME: Some completly new mechanism for handling the general
334 problem of asynchronous IO is needed.
336 FIXME: This function does not suppress the echoing (ECHO) of input.
337 Consequently polled input is always displayed.
339 FIXME: This function does not perform uncooked reads.
340 Consequently, data will not be read until an EOLN character has
341 been entered. A cntrl-d may force the early termination of a line */
345 sim_io_poll_read (SIM_DESC sd
,
350 #if defined(O_NONBLOCK) && defined(F_GETFL) && defined(F_SETFL)
351 int fd
= STATE_CALLBACK (sd
)->fdmap
[sim_io_fd
];
356 STATE_CALLBACK (sd
)->last_errno
= 0;
357 /* get the old status */
358 flags
= fcntl (fd
, F_GETFL
, 0);
361 perror ("sim_io_poll_read");
364 /* temp, disable blocking IO */
365 status
= fcntl (fd
, F_SETFL
, flags
| O_NONBLOCK
);
368 perror ("sim_io_read_stdin");
372 nr_read
= read (fd
, buf
, sizeof_buf
);
375 /* printf ("<nr-read=%d>\n", nr_read); */
381 STATE_CALLBACK (sd
)->last_errno
= errno
;
383 /* return to regular vewing */
384 status
= fcntl (fd
, F_SETFL
, flags
);
387 perror ("sim_io_read_stdin");
392 return sim_io_read (sd
, sim_io_fd
, buf
, sizeof_buf
);
397 sim_io_stat (SIM_DESC sd
, const char *path
, struct stat
*buf
)
399 return STATE_CALLBACK (sd
)->to_stat (STATE_CALLBACK (sd
), path
, buf
);
403 sim_io_fstat (SIM_DESC sd
, int fd
, struct stat
*buf
)
405 return STATE_CALLBACK (sd
)->to_fstat (STATE_CALLBACK (sd
), fd
, buf
);