]>
Commit | Line | Data |
---|---|---|
b52373a2 | 1 | /* Remote serial support interface definitions for GDB, the GNU Debugger. |
f24c159f | 2 | Copyright 1992, 1993 Free Software Foundation, Inc. |
ae0ea72e SC |
3 | |
4 | This file is part of GDB. | |
5 | ||
6 | This program is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 2 of the License, or | |
9 | (at your option) any later version. | |
10 | ||
11 | This program is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with this program; if not, write to the Free Software | |
18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | ||
4e772f44 | 20 | /* Terminal state pointer. This is specific to each type of interface. */ |
5fe93239 | 21 | |
38dc5e12 | 22 | typedef PTR serial_ttystate; |
5fe93239 | 23 | |
4e772f44 SG |
24 | struct _serial_t |
25 | { | |
372d09c3 JK |
26 | int fd; /* File descriptor */ |
27 | struct serial_ops *ops; /* Function vector */ | |
38dc5e12 | 28 | serial_ttystate ttystate; /* Not used (yet) */ |
372d09c3 JK |
29 | int bufcnt; /* Amount of data in receive buffer */ |
30 | unsigned char *bufp; /* Current byte */ | |
31 | unsigned char buf[BUFSIZ]; /* Da buffer itself */ | |
32 | int current_timeout; /* (termio{s} only), last value of VTIME */ | |
f24c159f JG |
33 | }; |
34 | ||
4e772f44 SG |
35 | typedef struct _serial_t *serial_t; |
36 | ||
37 | struct serial_ops { | |
38 | char *name; | |
39 | struct serial_ops *next; | |
40 | int (*open) PARAMS ((serial_t, const char *name)); | |
41 | void (*close) PARAMS ((serial_t)); | |
42 | int (*readchar) PARAMS ((serial_t, int timeout)); | |
43 | int (*write) PARAMS ((serial_t, const char *str, int len)); | |
c2e247c4 | 44 | int (*flush_output) PARAMS ((serial_t)); |
4e772f44 | 45 | void (*go_raw) PARAMS ((serial_t)); |
38dc5e12 SG |
46 | serial_ttystate (*get_tty_state) PARAMS ((serial_t)); |
47 | int (*set_tty_state) PARAMS ((serial_t, serial_ttystate)); | |
c2e247c4 JK |
48 | void (*print_tty_state) PARAMS ((serial_t, serial_ttystate)); |
49 | int (*noflush_set_tty_state) | |
50 | PARAMS ((serial_t, serial_ttystate, serial_ttystate)); | |
4e772f44 | 51 | int (*setbaudrate) PARAMS ((serial_t, int rate)); |
c2e247c4 | 52 | int (*set_process_group) PARAMS ((serial_t, serial_ttystate, int)); |
ed3f6049 SG |
53 | }; |
54 | ||
4e772f44 | 55 | /* Add a new serial interface to the interface list */ |
ed3f6049 | 56 | |
4e772f44 | 57 | void serial_add_interface PARAMS ((struct serial_ops *optable)); |
ed3f6049 | 58 | |
4e772f44 | 59 | serial_t serial_open PARAMS ((const char *name)); |
ae0ea72e | 60 | |
38dc5e12 SG |
61 | serial_t serial_fdopen PARAMS ((int fd)); |
62 | ||
4febd102 SG |
63 | /* For most routines, if a failure is indicated, then errno should be |
64 | examined. */ | |
65 | ||
66 | /* Try to open NAME. Returns a new serial_t on success, NULL on failure. | |
67 | */ | |
ae0ea72e | 68 | |
4febd102 | 69 | #define SERIAL_OPEN(NAME) serial_open(NAME) |
ae0ea72e | 70 | |
38dc5e12 SG |
71 | /* Open a new serial stream using a file handle. */ |
72 | ||
73 | #define SERIAL_FDOPEN(FD) serial_fdopen(FD) | |
74 | ||
c2e247c4 JK |
75 | /* Flush pending output. */ |
76 | ||
77 | #define SERIAL_FLUSH_OUTPUT(SERIAL_T) \ | |
78 | ((SERIAL_T)->ops->flush_output((SERIAL_T))) | |
79 | ||
4febd102 | 80 | /* Turn the port into raw mode. */ |
ae0ea72e | 81 | |
4e772f44 | 82 | #define SERIAL_RAW(SERIAL_T) (SERIAL_T)->ops->go_raw((SERIAL_T)) |
ae0ea72e | 83 | |
c2e247c4 JK |
84 | /* Return a pointer to a newly malloc'd ttystate containing the state |
85 | of the tty. */ | |
38dc5e12 SG |
86 | #define SERIAL_GET_TTY_STATE(SERIAL_T) (SERIAL_T)->ops->get_tty_state((SERIAL_T)) |
87 | ||
c2e247c4 JK |
88 | /* Set the state of the tty to TTYSTATE. The change is immediate. |
89 | When changing to or from raw mode, input might be discarded. */ | |
38dc5e12 SG |
90 | #define SERIAL_SET_TTY_STATE(SERIAL_T, TTYSTATE) (SERIAL_T)->ops->set_tty_state((SERIAL_T), (TTYSTATE)) |
91 | ||
c2e247c4 JK |
92 | /* printf_filtered a user-comprehensible description of ttystate. */ |
93 | #define SERIAL_PRINT_TTY_STATE(SERIAL_T, TTYSTATE) \ | |
94 | ((*((SERIAL_T)->ops->print_tty_state)) ((SERIAL_T), (TTYSTATE))) | |
95 | ||
96 | /* Set the tty state to NEW_TTYSTATE, where OLD_TTYSTATE is the | |
97 | current state (generally obtained from a recent call to | |
98 | SERIAL_GET_TTY_STATE), but be careful not to discard any input. | |
99 | This means that we never switch in or out of raw mode, even | |
100 | if NEW_TTYSTATE specifies a switch. */ | |
101 | #define SERIAL_NOFLUSH_SET_TTY_STATE(SERIAL_T, NEW_TTYSTATE, OLD_TTYSTATE) \ | |
102 | ((*((SERIAL_T)->ops->noflush_set_tty_state)) \ | |
103 | ((SERIAL_T), (NEW_TTYSTATE), (OLD_TTYSTATE))) | |
104 | ||
4febd102 SG |
105 | /* Read one char from the serial device with TIMEOUT seconds timeout. |
106 | Returns char if ok, else one of the following codes. Note that all | |
107 | error codes are guaranteed to be < 0. */ | |
108 | ||
109 | #define SERIAL_ERROR -1 /* General error, see errno for details */ | |
110 | #define SERIAL_TIMEOUT -2 | |
111 | #define SERIAL_EOF -3 | |
ae0ea72e | 112 | |
4e772f44 | 113 | #define SERIAL_READCHAR(SERIAL_T, TIMEOUT) ((SERIAL_T)->ops->readchar((SERIAL_T), TIMEOUT)) |
ae0ea72e | 114 | |
4febd102 SG |
115 | /* Set the baudrate to the decimal value supplied. Returns 0 for success, |
116 | -1 for failure. */ | |
ae0ea72e | 117 | |
4e772f44 | 118 | #define SERIAL_SETBAUDRATE(SERIAL_T, RATE) ((SERIAL_T)->ops->setbaudrate((SERIAL_T), RATE)) |
ae0ea72e | 119 | |
4febd102 SG |
120 | /* Write LEN chars from STRING to the port SERIAL_T. Returns 0 for success, |
121 | -1 for failure. */ | |
ae0ea72e | 122 | |
4e772f44 | 123 | #define SERIAL_WRITE(SERIAL_T, STRING, LEN) ((SERIAL_T)->ops->write((SERIAL_T), STRING, LEN)) |
ae0ea72e | 124 | |
4febd102 SG |
125 | /* Push out all buffers, close the device and destroy SERIAL_T. */ |
126 | ||
127 | void serial_close PARAMS ((serial_t)); | |
ae0ea72e | 128 | |
4febd102 | 129 | #define SERIAL_CLOSE(SERIAL_T) serial_close(SERIAL_T) |
740b7efa | 130 | |
c2e247c4 JK |
131 | /* Destroy SERIAL_T without doing the rest of the stuff that SERIAL_CLOSE |
132 | does. */ | |
133 | ||
134 | #define SERIAL_UN_FDOPEN(SERIAL_T) (free (SERIAL_T)) | |
135 | ||
136 | /* Set the process group saved in TTYSTATE to GROUP. This just modifies | |
137 | the ttystate setting; need to call SERIAL_SET_TTY_STATE for this to | |
138 | actually have any effect. If no job control, then don't do anything. */ | |
139 | #define SERIAL_SET_PROCESS_GROUP(SERIAL_T, TTYSTATE, GROUP) \ | |
140 | ((*((SERIAL_T)->ops->set_process_group)) (SERIAL_T, TTYSTATE, GROUP)) | |
141 | ||
142 | /* Do we have job control? Can be assumed to always be the same within | |
143 | a given run of GDB. In ser-unix.c, ser-go32.c, etc. */ | |
144 | extern int job_control; | |
145 | ||
146 | /* Set the process group of the caller to its own pid, or do nothing if | |
147 | we lack job control. */ | |
148 | extern int gdb_setpgid PARAMS ((void)); |