* gdbtk.c (gdb_get_vars_command): Return static variables and
[deliverable/binutils-gdb.git] / gdb / serial.h
CommitLineData
b52373a2 1/* Remote serial support interface definitions for GDB, the GNU Debugger.
f24c159f 2 Copyright 1992, 1993 Free Software Foundation, Inc.
ae0ea72e
SC
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
6c9638b4 18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
ae0ea72e 19
b70b042d
RP
20#ifndef SERIAL_H
21#define SERIAL_H
22
4e772f44 23/* Terminal state pointer. This is specific to each type of interface. */
5fe93239 24
38dc5e12 25typedef PTR serial_ttystate;
5fe93239 26
4e772f44
SG
27struct _serial_t
28{
372d09c3
JK
29 int fd; /* File descriptor */
30 struct serial_ops *ops; /* Function vector */
38dc5e12 31 serial_ttystate ttystate; /* Not used (yet) */
372d09c3
JK
32 int bufcnt; /* Amount of data in receive buffer */
33 unsigned char *bufp; /* Current byte */
34 unsigned char buf[BUFSIZ]; /* Da buffer itself */
35 int current_timeout; /* (termio{s} only), last value of VTIME */
9db58d3a
JK
36 /* ser-unix.c termio{,s} only, we still need to wait for this many more
37 seconds. */
38 int timeout_remaining;
4887063b
SG
39 char *name; /* The name of the device or host */
40 struct _serial_t *next; /* Pointer to the next serial_t */
41 int refcnt; /* Number of pointers to this block */
f24c159f
JG
42};
43
4e772f44
SG
44typedef struct _serial_t *serial_t;
45
46struct serial_ops {
47 char *name;
48 struct serial_ops *next;
49 int (*open) PARAMS ((serial_t, const char *name));
50 void (*close) PARAMS ((serial_t));
51 int (*readchar) PARAMS ((serial_t, int timeout));
52 int (*write) PARAMS ((serial_t, const char *str, int len));
3ffbdf15 53 /* Discard pending output */
c2e247c4 54 int (*flush_output) PARAMS ((serial_t));
3ffbdf15 55 /* Discard pending input */
704deef2
JK
56 int (*flush_input) PARAMS ((serial_t));
57 int (*send_break) PARAMS ((serial_t));
4e772f44 58 void (*go_raw) PARAMS ((serial_t));
38dc5e12
SG
59 serial_ttystate (*get_tty_state) PARAMS ((serial_t));
60 int (*set_tty_state) PARAMS ((serial_t, serial_ttystate));
c2e247c4
JK
61 void (*print_tty_state) PARAMS ((serial_t, serial_ttystate));
62 int (*noflush_set_tty_state)
63 PARAMS ((serial_t, serial_ttystate, serial_ttystate));
4e772f44 64 int (*setbaudrate) PARAMS ((serial_t, int rate));
85c8b135 65 int (*setstopbits) PARAMS ((serial_t, int num));
3ffbdf15
FF
66 /* Wait for output to drain */
67 int (*drain_output) PARAMS ((serial_t));
ed3f6049
SG
68};
69
4e772f44 70/* Add a new serial interface to the interface list */
ed3f6049 71
4e772f44 72void serial_add_interface PARAMS ((struct serial_ops *optable));
ed3f6049 73
4e772f44 74serial_t serial_open PARAMS ((const char *name));
ae0ea72e 75
a17535c7 76serial_t serial_fdopen PARAMS ((const int fd));
38dc5e12 77
4febd102
SG
78/* For most routines, if a failure is indicated, then errno should be
79 examined. */
80
81/* Try to open NAME. Returns a new serial_t on success, NULL on failure.
82 */
ae0ea72e 83
4febd102 84#define SERIAL_OPEN(NAME) serial_open(NAME)
ae0ea72e 85
38dc5e12
SG
86/* Open a new serial stream using a file handle. */
87
88#define SERIAL_FDOPEN(FD) serial_fdopen(FD)
89
3ffbdf15
FF
90/* Allow pending output to drain. */
91
92#define SERIAL_DRAIN_OUTPUT(SERIAL_T) \
93 ((SERIAL_T)->ops->drain_output((SERIAL_T)))
94
95/* Flush (discard) pending output. Might also flush input (if this system can't flush
704deef2 96 only output). */
c2e247c4
JK
97
98#define SERIAL_FLUSH_OUTPUT(SERIAL_T) \
99 ((SERIAL_T)->ops->flush_output((SERIAL_T)))
100
704deef2
JK
101/* Flush pending input. Might also flush output (if this system can't flush
102 only input). */
103
104#define SERIAL_FLUSH_INPUT(SERIAL_T)\
105 ((*(SERIAL_T)->ops->flush_input) ((SERIAL_T)))
106
107/* Send a break between 0.25 and 0.5 seconds long. */
108
d9951af4
SG
109extern int serial_send_break PARAMS ((serial_t scb));
110
111#define SERIAL_SEND_BREAK(SERIAL_T) serial_send_break (SERIAL_T)
704deef2 112
4febd102 113/* Turn the port into raw mode. */
ae0ea72e 114
4e772f44 115#define SERIAL_RAW(SERIAL_T) (SERIAL_T)->ops->go_raw((SERIAL_T))
ae0ea72e 116
c2e247c4
JK
117/* Return a pointer to a newly malloc'd ttystate containing the state
118 of the tty. */
38dc5e12
SG
119#define SERIAL_GET_TTY_STATE(SERIAL_T) (SERIAL_T)->ops->get_tty_state((SERIAL_T))
120
c2e247c4 121/* Set the state of the tty to TTYSTATE. The change is immediate.
3a479851
JK
122 When changing to or from raw mode, input might be discarded.
123 Returns 0 for success, negative value for error (in which case errno
124 contains the error). */
38dc5e12
SG
125#define SERIAL_SET_TTY_STATE(SERIAL_T, TTYSTATE) (SERIAL_T)->ops->set_tty_state((SERIAL_T), (TTYSTATE))
126
c2e247c4
JK
127/* printf_filtered a user-comprehensible description of ttystate. */
128#define SERIAL_PRINT_TTY_STATE(SERIAL_T, TTYSTATE) \
129 ((*((SERIAL_T)->ops->print_tty_state)) ((SERIAL_T), (TTYSTATE)))
130
131/* Set the tty state to NEW_TTYSTATE, where OLD_TTYSTATE is the
132 current state (generally obtained from a recent call to
133 SERIAL_GET_TTY_STATE), but be careful not to discard any input.
134 This means that we never switch in or out of raw mode, even
135 if NEW_TTYSTATE specifies a switch. */
136#define SERIAL_NOFLUSH_SET_TTY_STATE(SERIAL_T, NEW_TTYSTATE, OLD_TTYSTATE) \
137 ((*((SERIAL_T)->ops->noflush_set_tty_state)) \
138 ((SERIAL_T), (NEW_TTYSTATE), (OLD_TTYSTATE)))
139
0e5f1b37
RP
140/* Read one char from the serial device with TIMEOUT seconds to wait
141 or -1 to wait forever. Use timeout of 0 to effect a poll. Returns
142 char if ok, else one of the following codes. Note that all error
143 codes are guaranteed to be < 0. */
4febd102
SG
144
145#define SERIAL_ERROR -1 /* General error, see errno for details */
146#define SERIAL_TIMEOUT -2
147#define SERIAL_EOF -3
ae0ea72e 148
e8f1ad9a
FF
149extern int serial_readchar PARAMS ((serial_t scb, int timeout));
150
151#define SERIAL_READCHAR(SERIAL_T, TIMEOUT) serial_readchar (SERIAL_T, TIMEOUT)
ae0ea72e 152
4febd102
SG
153/* Set the baudrate to the decimal value supplied. Returns 0 for success,
154 -1 for failure. */
ae0ea72e 155
4e772f44 156#define SERIAL_SETBAUDRATE(SERIAL_T, RATE) ((SERIAL_T)->ops->setbaudrate((SERIAL_T), RATE))
ae0ea72e 157
85c8b135
SG
158/* Set the number of stop bits to the value specified. Returns 0 for success,
159 -1 for failure. */
160
161#define SERIAL_1_STOPBITS 1
162#define SERIAL_1_AND_A_HALF_STOPBITS 2 /* 1.5 bits, snicker... */
163#define SERIAL_2_STOPBITS 3
164
165#define SERIAL_SETSTOPBITS(SERIAL_T, NUM) ((SERIAL_T)->ops->setstopbits((SERIAL_T), NUM))
166
0ac0a9f6
RP
167/* Write LEN chars from STRING to the port SERIAL_T. Returns 0 for
168 success, non-zero for failure. */
ae0ea72e 169
e8f1ad9a
FF
170extern int serial_write PARAMS ((serial_t scb, const char *str, int len));
171
172#define SERIAL_WRITE(SERIAL_T, STRING,LEN) serial_write (SERIAL_T, STRING, LEN)
ae0ea72e 173
4febd102
SG
174/* Push out all buffers, close the device and destroy SERIAL_T. */
175
e8f1ad9a 176extern void serial_close PARAMS ((serial_t, int));
ae0ea72e 177
bbcc95bd 178#define SERIAL_CLOSE(SERIAL_T) serial_close(SERIAL_T, 1)
740b7efa 179
bbcc95bd 180/* Push out all buffers and destroy SERIAL_T without closing the device. */
c2e247c4 181
bbcc95bd 182#define SERIAL_UN_FDOPEN(SERIAL_T) serial_close(SERIAL_T, 0)
c2e247c4 183
5c8ba017
SG
184extern void serial_printf PARAMS ((serial_t desc, const char *, ...))
185 ATTR_FORMAT(printf, 2, 3);
186
e8f1ad9a
FF
187/* File in which to record the remote debugging session */
188
b607efe7
FF
189extern void serial_log_command PARAMS ((const char *));
190
b70b042d 191#endif /* SERIAL_H */
This page took 0.399555 seconds and 4 git commands to generate.