forked from RustPython/RustPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtermios.rs
More file actions
280 lines (267 loc) · 10.3 KB
/
termios.rs
File metadata and controls
280 lines (267 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
// spell-checker:disable
pub(crate) use self::termios::module_def;
#[pymodule]
mod termios {
use crate::vm::{
PyObjectRef, PyResult, TryFromObject, VirtualMachine,
builtins::{PyBaseExceptionRef, PyBytes, PyInt, PyListRef, PyTypeRef},
common::os::ErrorExt,
convert::ToPyObject,
};
use termios::Termios;
// TODO: more ioctl numbers
// NOTE: B2500000, B3000000, B3500000, B4000000, and CIBAUD
// are only available on specific architectures
// TODO: supply these from <sys/ttydefaults.h> (please file an issue/PR upstream):
// CDEL, CDSUSP, CEOF, CEOL, CEOL2, CEOT, CERASE, CESC, CFLUSH, CINTR, CKILL, CLNEXT,
// CNUL, COMMON, CQUIT, CRPRNT, CSTART, CSTOP, CSUSP, CSWTCH, CWERASE
// NOTE: the constant INIT_C_CC is most likely missing nowadays
// TODO: supply these from <asm-generic/ioctl.h> (please file an issue/PR upstream):
// IOCSIZE_MASK, IOCSIZE_SHIFT
// TODO: supply NCC from <asm-generic/termios.h> (please file an issue/PR upstream)
// NOTE: I have only found NSWTCH on cygwin, so please alert the RustPython maintainers if it
// is present on your system
// TODO: supply these from <bits/ioctl-types.h> or <linux/tty.h> (please file an issue/PR
// upstream):
// N_MOUSE, N_PPP, N_SLIP, N_STRIP, N_TTY
// NOTE: some of these have incomplete coverage in rust libc (please file an issue/PR upstream)
// TODO: possibly supply these from <asm-generic/ioctls.h> (please file an issue/PR upstream):
// TCSBRKP, TIOCGICOUNT, TIOCGLCKTRMIOS, TIOCSERCONFIG, TIOCSERGETLSR, TIOCSERGETMULTI,
// TIOCSERGSTRUCT, TIOCSERGWILD, TIOCSERSETMULTI, TIOCSERSWILD, TIOCSER_TEMT,
// TIOCSLCKTRMIOS, TIOCSSERIAL, TIOCTTYGSTRUCT
#[cfg(any(target_os = "illumos", target_os = "solaris"))]
#[pyattr]
use libc::{CSTART, CSTOP, CSWTCH};
#[cfg(any(
target_os = "dragonfly",
target_os = "freebsd",
target_os = "macos",
target_os = "netbsd",
target_os = "openbsd"
))]
#[pyattr]
use libc::{FIOASYNC, TIOCGETD, TIOCSETD};
#[pyattr]
use libc::{FIOCLEX, FIONBIO, TIOCGWINSZ, TIOCSWINSZ};
#[cfg(any(
target_os = "android",
target_os = "dragonfly",
target_os = "freebsd",
target_os = "linux",
target_os = "macos",
target_os = "netbsd",
target_os = "openbsd"
))]
#[pyattr]
use libc::{
FIONCLEX, FIONREAD, TIOCEXCL, TIOCM_CAR, TIOCM_CD, TIOCM_CTS, TIOCM_DSR, TIOCM_DTR,
TIOCM_LE, TIOCM_RI, TIOCM_RNG, TIOCM_RTS, TIOCM_SR, TIOCM_ST, TIOCMBIC, TIOCMBIS, TIOCMGET,
TIOCMSET, TIOCNXCL, TIOCSCTTY,
};
#[cfg(any(target_os = "android", target_os = "linux"))]
#[pyattr]
use libc::{
IBSHIFT, TCFLSH, TCGETA, TCGETS, TCSBRK, TCSETA, TCSETAF, TCSETAW, TCSETS, TCSETSF,
TCSETSW, TCXONC, TIOCGSERIAL, TIOCGSOFTCAR, TIOCINQ, TIOCLINUX, TIOCSSOFTCAR, XTABS,
};
#[cfg(any(
target_os = "android",
target_os = "dragonfly",
target_os = "freebsd",
target_os = "linux",
target_os = "macos"
))]
#[pyattr]
use libc::{TIOCCONS, TIOCGPGRP, TIOCOUTQ, TIOCSPGRP, TIOCSTI};
#[cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "macos"))]
#[pyattr]
use libc::{
TIOCNOTTY, TIOCPKT, TIOCPKT_DATA, TIOCPKT_DOSTOP, TIOCPKT_FLUSHREAD, TIOCPKT_FLUSHWRITE,
TIOCPKT_NOSTOP, TIOCPKT_START, TIOCPKT_STOP,
};
#[cfg(any(
target_os = "android",
target_os = "freebsd",
target_os = "illumos",
target_os = "linux",
target_os = "macos",
target_os = "openbsd",
target_os = "solaris"
))]
#[pyattr]
use termios::os::target::TAB3;
#[cfg(any(
target_os = "dragonfly",
target_os = "freebsd",
target_os = "macos",
target_os = "netbsd",
target_os = "openbsd"
))]
#[pyattr]
use termios::os::target::TCSASOFT;
#[cfg(any(
target_os = "android",
target_os = "freebsd",
target_os = "illumos",
target_os = "linux",
target_os = "netbsd",
target_os = "solaris"
))]
#[pyattr]
use termios::os::target::{B460800, B921600};
#[cfg(any(target_os = "android", target_os = "linux"))]
#[pyattr]
use termios::os::target::{
B500000, B576000, B1000000, B1152000, B1500000, B2000000, B2500000, B3000000, B3500000,
B4000000, CBAUDEX,
};
#[cfg(any(
target_os = "android",
target_os = "illumos",
target_os = "linux",
target_os = "macos",
target_os = "solaris"
))]
#[pyattr]
use termios::os::target::{
BS0, BS1, BSDLY, CR0, CR1, CR2, CR3, CRDLY, FF0, FF1, FFDLY, NL0, NL1, NLDLY, OFDEL, OFILL,
TAB1, TAB2, VT0, VT1, VTDLY,
};
#[cfg(any(
target_os = "android",
target_os = "illumos",
target_os = "linux",
target_os = "solaris"
))]
#[pyattr]
use termios::os::target::{CBAUD, CIBAUD, IUCLC, OLCUC, XCASE};
#[cfg(any(
target_os = "android",
target_os = "freebsd",
target_os = "illumos",
target_os = "linux",
target_os = "macos",
target_os = "solaris"
))]
#[pyattr]
use termios::os::target::{TAB0, TABDLY};
#[cfg(any(target_os = "android", target_os = "linux"))]
#[pyattr]
use termios::os::target::{VSWTC, VSWTC as VSWTCH};
#[cfg(any(target_os = "illumos", target_os = "solaris"))]
#[pyattr]
use termios::os::target::{VSWTCH, VSWTCH as VSWTC};
#[pyattr]
use termios::{
B0, B50, B75, B110, B134, B150, B200, B300, B600, B1200, B1800, B2400, B4800, B9600,
B19200, B38400, BRKINT, CLOCAL, CREAD, CS5, CS6, CS7, CS8, CSIZE, CSTOPB, ECHO, ECHOE,
ECHOK, ECHONL, HUPCL, ICANON, ICRNL, IEXTEN, IGNBRK, IGNCR, IGNPAR, INLCR, INPCK, ISIG,
ISTRIP, IXANY, IXOFF, IXON, NOFLSH, OCRNL, ONLCR, ONLRET, ONOCR, OPOST, PARENB, PARMRK,
PARODD, TCIFLUSH, TCIOFF, TCIOFLUSH, TCION, TCOFLUSH, TCOOFF, TCOON, TCSADRAIN, TCSAFLUSH,
TCSANOW, TOSTOP, VEOF, VEOL, VERASE, VINTR, VKILL, VMIN, VQUIT, VSTART, VSTOP, VSUSP,
VTIME,
os::target::{
B57600, B115200, B230400, CRTSCTS, ECHOCTL, ECHOKE, ECHOPRT, EXTA, EXTB, FLUSHO,
IMAXBEL, NCCS, PENDIN, VDISCARD, VEOL2, VLNEXT, VREPRINT, VWERASE,
},
};
#[pyfunction]
fn tcgetattr(fd: i32, vm: &VirtualMachine) -> PyResult<Vec<PyObjectRef>> {
let termios = Termios::from_fd(fd).map_err(|e| termios_error(e, vm))?;
let noncanon = (termios.c_lflag & termios::ICANON) == 0;
let cc = termios
.c_cc
.iter()
.enumerate()
.map(|(i, &c)| match i {
termios::VMIN | termios::VTIME if noncanon => vm.ctx.new_int(c).into(),
_ => vm.ctx.new_bytes(vec![c as _]).into(),
})
.collect::<Vec<_>>();
let out = vec![
termios.c_iflag.to_pyobject(vm),
termios.c_oflag.to_pyobject(vm),
termios.c_cflag.to_pyobject(vm),
termios.c_lflag.to_pyobject(vm),
termios::cfgetispeed(&termios).to_pyobject(vm),
termios::cfgetospeed(&termios).to_pyobject(vm),
vm.ctx.new_list(cc).into(),
];
Ok(out)
}
#[pyfunction]
fn tcsetattr(fd: i32, when: i32, attributes: PyListRef, vm: &VirtualMachine) -> PyResult<()> {
let [iflag, oflag, cflag, lflag, ispeed, ospeed, cc] =
<&[PyObjectRef; 7]>::try_from(&*attributes.borrow_vec())
.map_err(|_| vm.new_type_error("tcsetattr, arg 3: must be 7 element list"))?
.clone();
let mut termios = Termios::from_fd(fd).map_err(|e| termios_error(e, vm))?;
termios.c_iflag = iflag.try_into_value(vm)?;
termios.c_oflag = oflag.try_into_value(vm)?;
termios.c_cflag = cflag.try_into_value(vm)?;
termios.c_lflag = lflag.try_into_value(vm)?;
termios::cfsetispeed(&mut termios, ispeed.try_into_value(vm)?)
.map_err(|e| termios_error(e, vm))?;
termios::cfsetospeed(&mut termios, ospeed.try_into_value(vm)?)
.map_err(|e| termios_error(e, vm))?;
let cc = PyListRef::try_from_object(vm, cc)?;
let cc = cc.borrow_vec();
let cc = <&[PyObjectRef; NCCS]>::try_from(&*cc).map_err(|_| {
vm.new_type_error(format!(
"tcsetattr: attributes[6] must be {NCCS} element list"
))
})?;
for (cc, x) in termios.c_cc.iter_mut().zip(cc.iter()) {
*cc = if let Some(c) = x
.downcast_ref::<PyBytes>()
.filter(|b| b.as_bytes().len() == 1)
{
c.as_bytes()[0] as _
} else if let Some(i) = x.downcast_ref::<PyInt>() {
i.try_to_primitive(vm)?
} else {
return Err(vm.new_type_error(
"tcsetattr: elements of attributes must be characters or integers",
));
};
}
termios::tcsetattr(fd, when, &termios).map_err(|e| termios_error(e, vm))?;
Ok(())
}
#[pyfunction]
fn tcsendbreak(fd: i32, duration: i32, vm: &VirtualMachine) -> PyResult<()> {
termios::tcsendbreak(fd, duration).map_err(|e| termios_error(e, vm))?;
Ok(())
}
#[pyfunction]
fn tcdrain(fd: i32, vm: &VirtualMachine) -> PyResult<()> {
termios::tcdrain(fd).map_err(|e| termios_error(e, vm))?;
Ok(())
}
#[pyfunction]
fn tcflush(fd: i32, queue: i32, vm: &VirtualMachine) -> PyResult<()> {
termios::tcflush(fd, queue).map_err(|e| termios_error(e, vm))?;
Ok(())
}
#[pyfunction]
fn tcflow(fd: i32, action: i32, vm: &VirtualMachine) -> PyResult<()> {
termios::tcflow(fd, action).map_err(|e| termios_error(e, vm))?;
Ok(())
}
fn termios_error(err: std::io::Error, vm: &VirtualMachine) -> PyBaseExceptionRef {
vm.new_os_subtype_error(
error_type(vm),
Some(err.posix_errno()),
vm.ctx.new_str(err.to_string()),
)
.upcast()
}
#[pyattr(name = "error", once)]
fn error_type(vm: &VirtualMachine) -> PyTypeRef {
vm.ctx.new_exception_type(
"termios",
"error",
Some(vec![vm.ctx.exceptions.os_error.to_owned()]),
)
}
}