1 Utilities
These modules provide low-level helpers commonly used in various layers of the terminal support infrastructure.
1.1 Generic Buffered Reader
(require tui/term/gen-buf-reader) | package: tui-term |
A small layer on top of input-port? that allows for acknowleging the input read or making a rollback if not enough data to decode certain sequence was available. This is needed to properly implement non-blocking I/O in make-input-port arguments without having to run multiple threads.
This module is used in both tui/term/nvt-input-port and tui/term/vt-input-port for handling non-blocking input.
procedure
(make-gen-buf-reader [in initial-size reader]) → gen-buf-reader?
in : input-port? = (current-input-port) initial-size : exact-nonnegative-integer? = 8 reader : (-> input-port? any/c) = read-char
The application uses read-gen-buf to read required data from the port and when it successfully decoded its sequence, it can ack-gen-buf to remove processed data from the buffer. If there was any further data already buffered, it is moved to the beginning of the buffer.
If the application did not decode the sequence in question and no more data is available - or for any other reason - it should rollback-gen-buffer to allow re-trying reading the sequence later on.
The default for the reader argument makes this equivalent to make-char-buf-reader.
procedure
(gen-buf-reader? v) → boolean?
v : any/c
procedure
(make-char-buf-reader in [initial-size]) → gen-buf-reader?
in : input-port? initial-size : exact-nonnegative-integer? = 8
procedure
(make-byte-buf-reader in [initial-size]) → gen-buf-reader?
in : input-port? initial-size : exact-nonnegative-integer? = 8
procedure
(read-gen-buf gbr) → any/c
gbr : gen-buf-reader?
This is different behaviour than what read-byte and read-char have. This procedure returns the eof value if and only if no more data can be retrieved from the underlying port. In case of temporary data unavailability #f is returned and not eof - unlike the aforementioned procedures.
procedure
(ack-gen-buf gbr) → void?
gbr : gen-buf-reader?
procedure
(rollback-gen-buf gbr) → void?
gbr : gen-buf-reader?
procedure
(gen-buf-reader-eof? gbr) → boolean?
gbr : gen-buf-reader?
procedure
(gen-buf-reader-non-empty? gbr) → boolean?
gbr : gen-buf-reader?
procedure
(gen-buf-reader-empty? gbr) → boolean?
gbr : gen-buf-reader?
1.2 Byteslices
(require tui/term/byteslice) | package: tui-term |
This module implements support for read-only slices of bytes? values. It is used primarily for implementing efficient NVT encoding in tui/term/nvt-encoder.
procedure
(byteslice? v) → boolean?
v : any/c
procedure
(make-byteslice b/s [start end]) → byteslice?
b/s : (or/c bytes? byteslice?) start : exact-nonnegative-integer? = 0 end : (or/c #f exact-nonnegative-integer?) = #f
procedure
(write-byteslice bs [out]) → void?
bs : (or/c bytes? byteslice?) out : output-port? = (current-output-port)
When given a bytes? value, it is passed directly to write-bytes.
procedure
(write-byteslices bss [out]) → void?
bss : (listof (or/ bytes? byteslice?)) out : output-port? = (current-output-port)
procedure
(byteslice-ref bs idx) → byte?
bs : byteslice? idx : exact-nonnegative-integer?
procedure
(byteslice-length bs) → nonnegative-integer?
bs : byteslice?
1.3 Thread-Safe Queues
(require tui/term/tqueue) | package: tui-term |
This module wraps data/queue with thread-safety and synchronizable events.
procedure
(make-tqueue) → tqueue?
procedure
(tqueue-enqueue! q v) → void?
q : tqueue? v : any/c
procedure
(tqueue-dequeue! q) → any/c
q : tqueue?
If there are no values queued, it blocks until the queue is ready.
procedure
(tqueue-evt q) → evt?
q : tqueue?
procedure
q : tqueue?
procedure
(tqueue-empty? q) → boolean?
q : tqueue?
procedure
(tqueue-non-empty? q) → boolean?
q : tqueue?
procedure
(tqueue-peek q) → any/c
q : tqueue?
1.4 Bytes Buffer
(require tui/term/bytes-buffer) | package: tui-term |
This module provides a thin glue layer used by tui/term/tty-input-port to use special procedure for reading keyboard input and providing it as stream of bytes for the next layer.
procedure
(make-bytes-buffer [initial-size]) → bytes-buffer?
initial-size : exact-positive-integer? = 8
procedure
(bytes-buffer? v) → boolean?
v : any/c
procedure
(bytes-buffer-write-char! bb ch) → void?
bb : bytes-buffer? ch : char?
procedure
(bytes-buffer-read-bytes! bb bs [peek?])
→ nonnegative-exact-integer? bb : bytes-buffer? bs : bytes? peek? : boolean? = #f
Tries to read as many bytes from given bytes-buffer? bb into bytes? bb. Returns the number of bytes read.
If peek? is #t the bytes are retained in the buffer - they are removed otherwise.
procedure
(bytes-buffer-peek-bytes! bb bs) → nonnegative-exact-integer
bb : bytes-buffer? bs : bytes?
1.5 Term Struct
(require tui/term/term-struct) | package: tui-term |
This module defines the data structure representing the terminal.
struct
in : input-port? out : output-port? size : (box/c (list/c fixnum? fixnum?)) ttype : (box/c string?) phook : (or/c #f procedure?)
Typically the ports are custom ports implementing the specifics of given terminal connection like NVT or local TTY.
The phook field may contain platform hook procedure. Currently only on the Windows platform this hook is present for local terminals.
parameter
(current-term) → (or/c tterm? #f)
(current-term term) → void? term : (or/c tterm? #f)
= #f
procedure
(run-current-term-platform-hook arg ...) → any/c
arg : any/c
procedure
→
nonnegative-integer? nonnegative-integer?
1.6 Term Syntax
(require tui/term/term-syntax) | package: tui-term |
Some infrastructure to make the terminal easy to use - including current terminal parameter and with-term syntax that handles I/O redirection to/from the terminal transparently.
syntax
(with-term term expr ...)