2020-03-31 00:36:33 +11:00
|
|
|
The "svc-t" program / "x.svc.t"
|
|
|
|
permission makes up the terminal
|
|
|
|
subsystem for KittenOS NEO.
|
|
|
|
|
|
|
|
--- THEORETICAL TERMINALS MODEL ---
|
|
|
|
|
|
|
|
The theoretical model for terminals
|
2020-04-02 09:21:36 +11:00
|
|
|
in KittenOS NEO is a TELNET client
|
|
|
|
that only supports the ECHO option,
|
|
|
|
and uses the non-standard behavior
|
|
|
|
of treating ECHO ON as 'enable local
|
|
|
|
line editing'.
|
|
|
|
|
|
|
|
To prevent code size going too far,
|
|
|
|
the client is extremely restricted
|
|
|
|
in capabilities.
|
|
|
|
|
|
|
|
If you really want full support,
|
|
|
|
write a better terminal application.
|
|
|
|
|
|
|
|
Features that get added will be added
|
|
|
|
in accordance with ANSI/TELNET where
|
|
|
|
reasonable or in a compatible-ish
|
|
|
|
fashion where unreasonable.
|
|
|
|
|
|
|
|
The defaults will be set based on
|
|
|
|
whatever app-luashell requires, as
|
|
|
|
this is what is expected of modern
|
|
|
|
terminal systems regardless of what
|
|
|
|
the standards may have to say.
|
2020-03-31 00:36:33 +11:00
|
|
|
|
|
|
|
A process starting another process
|
|
|
|
connected to the same terminal is
|
|
|
|
advised to wait for that process to
|
2020-04-02 09:21:36 +11:00
|
|
|
die before continuing reading input.
|
2020-03-31 00:36:33 +11:00
|
|
|
|
|
|
|
The controlling process is whichever
|
|
|
|
process is supposed to be accepting
|
|
|
|
user input. This is contextual, and
|
|
|
|
there is no mechanism to control
|
|
|
|
this explicitly.
|
|
|
|
|
|
|
|
The controlling process should show
|
|
|
|
text in response to any user input,
|
|
|
|
or at least provide some form of
|
|
|
|
acknowledgement that user input has
|
|
|
|
been received.
|
|
|
|
|
2020-04-02 09:21:36 +11:00
|
|
|
For convenience, terminal echo is on
|
|
|
|
by default; this is easily remedied.
|
2020-03-31 00:36:33 +11:00
|
|
|
|
|
|
|
--- ACTUAL USAGE OF TERMINALS ---
|
|
|
|
|
|
|
|
Access control on terminals is looser
|
|
|
|
than for most permissions, as it has
|
|
|
|
to be able to be 'sublet' in some
|
|
|
|
cases, including events.
|
|
|
|
|
2020-04-02 09:21:36 +11:00
|
|
|
As such, the secret flag is set for
|
|
|
|
terminal registration.
|
|
|
|
|
2020-03-31 00:36:33 +11:00
|
|
|
A terminal program is given a string
|
|
|
|
argument for the ID of the terminal
|
|
|
|
to connect to.
|
|
|
|
|
|
|
|
A terminal always has an ID beginning
|
2020-04-02 09:21:36 +11:00
|
|
|
with "x.neo.pub.t/". ALWAYS CHECK.
|
2020-03-31 00:36:33 +11:00
|
|
|
|
|
|
|
Requiring the responsible access
|
|
|
|
connects to the terminal. All
|
|
|
|
terminal programs SHOULD check for
|
|
|
|
the death of their parent terminal
|
|
|
|
(via the k.procdie event) and
|
|
|
|
self-destruct accordingly.
|
|
|
|
|
|
|
|
A program may start svc-t directly.
|
|
|
|
|
|
|
|
In this case, it must pass a function
|
|
|
|
(resTbl) and may pass a title.
|
|
|
|
|
|
|
|
When the terminal has shown, the
|
|
|
|
function provided is called with a
|
|
|
|
table as follows:
|
|
|
|
|
|
|
|
access = "x.svc.t/<...>"
|
|
|
|
close = function (): close terminal
|
|
|
|
|
|
|
|
The k.kill permission and the close
|
|
|
|
function are the only ways for a
|
|
|
|
program to kill a terminal, and the
|
|
|
|
close function is only given to the
|
|
|
|
creating process.
|
|
|
|
|
|
|
|
In either case, when the access has
|
|
|
|
been acquired, the following API is
|
|
|
|
presented:
|
|
|
|
|
|
|
|
id = "x.svc.t/<...>"
|
|
|
|
pid = <The terminal's PID.>
|
2020-04-02 09:21:36 +11:00
|
|
|
write = function (text): Writes the
|
|
|
|
TELNET data to the terminal.
|
|
|
|
|
|
|
|
User input is provided in events:
|
|
|
|
<id>, "data", <data>
|
|
|
|
|
|
|
|
TELNET commands are provided in:
|
|
|
|
<id>, "telnet", <data>
|
|
|
|
|
|
|
|
There is a total of one TELNET
|
|
|
|
command per event, unpadded.
|
2020-03-31 00:36:33 +11:00
|
|
|
|
2020-04-02 09:21:36 +11:00
|
|
|
Notably, intermixing the data part
|
|
|
|
of the data/telnet events in order
|
|
|
|
produces the full terminal-to-server
|
|
|
|
TELNET stream.
|
2020-03-31 00:36:33 +11:00
|
|
|
|
|
|
|
-- This is released into
|
|
|
|
the public domain.
|
|
|
|
-- No warranty is provided,
|
|
|
|
implied or otherwise.
|
|
|
|
|