libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Terminal.hxx
Go to the documentation of this file.
1#pragma once
2
3// POSIX
4#include <sys/ioctl.h>
5
6// C++
7#include <chrono>
8#include <utility>
9#include <optional>
10
11// Cosmos
12#include <cosmos/fs/FileBase.hxx>
13#include <cosmos/fs/FileDescriptor.hxx>
14
22namespace cosmos {
23
26 winsize {
27
28 explicit TermDimension(size_t cols = 0, size_t rows = 0) {
29 ws_col = cols;
30 ws_row = rows;
31 }
32
33 unsigned short cols() const { return ws_col; }
34 unsigned short rows() const { return ws_row; }
35};
36
38
43class COSMOS_API Terminal {
44public:
45 Terminal() {}
46 explicit Terminal(FileDescriptor fd) : m_fd(fd) {}
47 explicit Terminal(const FileBase &f) : m_fd(f.fd()) {}
48
49 void setFD(const FileBase &f) {
50 m_fd = f.fd();
51 }
52
53 void setFD(FileDescriptor fd) {
54 m_fd = fd;
55 }
56
58 bool isTTY() const;
59
61 TermDimension getSize() const;
63 void setSize(const TermDimension dim);
64
66
72 void sendBreak(const std::chrono::milliseconds ms);
73
75
85 void makeControllingTerminal(bool force = false);
86
87protected: // functions
88
89 int rawFD() const;
90
91protected: // data
92
93 FileDescriptor m_fd;
94};
95
97
116COSMOS_API std::pair<cosmos::FileDescriptor, cosmos::FileDescriptor> openPTY(
117 const std::optional<TermDimension> initial_size = {});
118
119} // end ns
Base class for File types with ownership of a FileDescriptor.
Definition FileBase.hxx:23
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Definition FileBase.hxx:74
Thin Wrapper around OS file descriptors.
Access to Terminal information and ioctls.
Definition Terminal.hxx:43
Represents a terminal dimension in characters.
Definition Terminal.hxx:26