:github_url: https://github.com/nyx-org/gaia .. _program_listing_file_posix_tty.hpp: Program Listing for File tty.hpp ================================ |exhale_lsh| :ref:`Return to documentation for file ` (``posix/tty.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include "frg/spinlock.hpp" #include "kernel/wait.hpp" #include "lib/ringbuffer.hpp" #include #include namespace Gaia::Posix { class TTY : public Waitable { public: TTY(size_t rows, size_t cols) : rows(rows), cols(cols) { termios.c_cc[VEOL] = '\n'; termios.c_cc[VEOF] = 0; termios.c_cc[VERASE] = '\b'; termios.c_cflag = (CREAD | CS8 | HUPCL); termios.c_iflag = (BRKINT | ICRNL | IMAXBEL | IXON | IXANY); termios.c_lflag = (ECHO | ICANON | ISIG | IEXTEN | ECHOE); termios.c_oflag = (OPOST | ONLCR); }; static void register_tty(TTY *tty, dev_t minor); using WriteCallback = void(char c, void *context); void input(unsigned char c); void set_write_callback(WriteCallback *callback, void *context) { this->callback = callback; callback_context = context; } class Ops : public Fs::DeviceOps { Result write(dev_t minor, frg::span buf, off_t off) override; Result read(dev_t minor, frg::span buf, off_t off) override; Result ioctl(dev_t minor, uint64_t request, void *arg) override; Result getattr(dev_t minor) override; } ops; bool in_mediumraw = false; private: // Ringbuffer Ringbuffer buffer; size_t rows, cols; frg::simple_spinlock lock; struct termios termios; Result push(unsigned char c); Result pop(); Result erase(); WriteCallback *callback; void *callback_context; inline bool is_cflag_set(int flag) { return termios.c_cflag & flag; } inline bool is_iflag_set(int flag) { return termios.c_iflag & flag; } inline bool is_oflag_set(int flag) { return termios.c_oflag & flag; } inline bool is_lflag_set(int flag) { return termios.c_lflag & flag; } }; } // namespace Gaia::Posix