10#include <cosmos/error/ApiError.hxx>
11#include <cosmos/io/Terminal.hxx>
12#include <cosmos/utils.hxx>
16int Terminal::rawFD()
const {
17 return to_integral(m_fd.
raw());
21 if (::isatty(rawFD()) == 1) {
26 case Errno::NOT_A_TTY:
break;
27 default: cosmos_throw (
ApiError(
"isatty:"));
35 int rc = ::ioctl(rawFD(), TIOCGWINSZ, &ws);
37 cosmos_throw (
ApiError(
"ioctl(GWINSZ)"));
44 int rc = ::ioctl(rawFD(), TIOCSWINSZ, &dim);
46 cosmos_throw (
ApiError(
"ioctl(SWINSZ)"));
51 if (::tcsendbreak(rawFD(),
static_cast<int>(ms.count())) != 0) {
52 cosmos_throw (
ApiError(
"tcsendbreak"));
57 int rc = ::ioctl(rawFD(), TIOCSCTTY, force ? 1 : 0);
59 cosmos_throw (
ApiError(
"ioctl(TIOCSCTTY)"));
63std::pair<FileDescriptor, FileDescriptor> openPTY(
const std::optional<TermDimension> initial_size) {
71 const struct winsize *size = initial_size ? &(*initial_size) :
nullptr;
73 if (::openpty(&master, &slave,
nullptr,
nullptr, size) < 0) {
74 cosmos_throw (
ApiError(
"openpty()"));
Specialized exception type used when system APIs fail.
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.
void setSize(const TermDimension dim)
Sets the terminal dimension according to the given values.
void sendBreak(const std::chrono::milliseconds ms)
Sends a stream of zero bits for a certain duration.
void makeControllingTerminal(bool force=false)
Attempt to make the terminal the controlling terminal of the current process.
bool isTTY() const
Returns whether the associated file descriptor is a TTY.
Errno get_errno()
Wrapper that returns the Errno strongly typed representation of the current errno
Represents a terminal dimension in characters.