libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Terminal.cxx
1// BSD
2#include <pty.h>
3
4// POSIX
5#include <sys/ioctl.h>
6#include <termios.h>
7#include <unistd.h>
8
9// cosmos
10#include <cosmos/error/ApiError.hxx>
11#include <cosmos/io/Terminal.hxx>
12#include <cosmos/utils.hxx>
13
14namespace cosmos {
15
16int Terminal::rawFD() const {
17 return to_integral(m_fd.raw());
18}
19
20bool Terminal::isTTY() const {
21 if (::isatty(rawFD()) == 1) {
22 return true;
23 }
24
25 switch (get_errno()) {
26 case Errno::NOT_A_TTY: break;
27 default: cosmos_throw (ApiError("isatty:"));
28 }
29
30 return false;
31}
32
35 int rc = ::ioctl(rawFD(), TIOCGWINSZ, &ws);
36 if (rc != 0) {
37 cosmos_throw (ApiError("ioctl(GWINSZ)"));
38 }
39
40 return ws;
41}
42
44 int rc = ::ioctl(rawFD(), TIOCSWINSZ, &dim);
45 if (rc != 0) {
46 cosmos_throw (ApiError("ioctl(SWINSZ)"));
47 }
48}
49
50void Terminal::sendBreak(const std::chrono::milliseconds ms) {
51 if (::tcsendbreak(rawFD(), static_cast<int>(ms.count())) != 0) {
52 cosmos_throw (ApiError("tcsendbreak"));
53 }
54}
55
57 int rc = ::ioctl(rawFD(), TIOCSCTTY, force ? 1 : 0);
58 if (rc != 0) {
59 cosmos_throw (ApiError("ioctl(TIOCSCTTY)"));
60 }
61}
62
63std::pair<FileDescriptor, FileDescriptor> openPTY(const std::optional<TermDimension> initial_size) {
64 int master, slave;
65
66 // the name parameter is unsafe since there is no standardized
67 // dimension limit.
68 // the other parameters are for setting initial TTY properties and
69 // terminal size.
70
71 const struct winsize *size = initial_size ? &(*initial_size) : nullptr;
72
73 if (::openpty(&master, &slave, nullptr, nullptr, size) < 0) {
74 cosmos_throw (ApiError("openpty()"));
75 }
76
77 return {
78 cosmos::FileDescriptor(FileNum{master}),
79 cosmos::FileDescriptor(FileNum{slave})
80 };
81}
82
83} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
Thin Wrapper around OS file descriptors.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
TermDimension getSize() const
Returns the terminal dimension in character width x height.
Definition Terminal.cxx:33
void setSize(const TermDimension dim)
Sets the terminal dimension according to the given values.
Definition Terminal.cxx:43
void sendBreak(const std::chrono::milliseconds ms)
Sends a stream of zero bits for a certain duration.
Definition Terminal.cxx:50
void makeControllingTerminal(bool force=false)
Attempt to make the terminal the controlling terminal of the current process.
Definition Terminal.cxx:56
bool isTTY() const
Returns whether the associated file descriptor is a TTY.
Definition Terminal.cxx:20
Errno get_errno()
Wrapper that returns the Errno strongly typed representation of the current errno
Definition errno.hxx:111
Represents a terminal dimension in characters.
Definition Terminal.hxx:26