Add define for Kirk Smith's USR Courier driver. Change default baud
[unix-history] / usr / src / usr.bin / window / README
CommitLineData
60de5df9
EW
1@(#)README 3.6 %G%
2
3/*
4 * Copyright (c) 1983 Regents of the University of California,
5 * All rights reserved. Redistribution permitted subject to
6 * the terms of the Berkeley Software License Agreement.
7 */
84a5ea18 8
533eb3f8
EW
9Compilation notes:
10
7c38ad4d 11 There is only one compiler option:
84a5ea18 12
115fa6f8
EW
13 mc68000 use 68000 byte ordering
14 It should already be defined in the preprocessor.
84a5ea18 15
7c38ad4d 16 The file local.h contains locally tunable constants.
84a5ea18 17
533eb3f8
EW
18 The makefile should be updated with mkmf. The only library it needs
19is termcap (and jobs for 4.1).
84a5ea18 20
7c38ad4d 21 Window only runs on 4.2 machines.
84a5ea18 22
84a5ea18 23
533eb3f8
EW
24A few notes about the internals:
25
26 The window package. Windows are opened by calling wwopen().
27Wwwrite() is the primitive for writing to windows. Wwputc(), wwputs(),
28and wwprintf() are also supported. Some of the outputs to windows are
29delayed. Wwupdate() updates the terminal to match the internal screen
30buffer. Wwspawn() spawns a child process on the other end of a window,
31with it's environment tailored to the window. Visible windows are
32doubly linked in the order of their overlap. Wwadd() inserts a window
115fa6f8
EW
33into the list at a given place. Wwdelete() deletes it. Windows not in
34the list are not visible, though wwwrite() still works.
533eb3f8
EW
35
36 Most functions return -1 on error. Wwopen() returns the null
115fa6f8
EW
37pointer. An error number is saved in wwerrno. Wwerror() returns an
38error string based on wwerrno suitable for printing.
533eb3f8
EW
39
40 The terminal drivers perform all output to the physical terminal,
41including special functions like character and line insertion and
42deletion. The window package keeps a list of known terminals. At
43initialization time, the terminal type is matched against the list to
44find the right terminal driver to use. The last driver, the generic
45driver, matches all terminals and uses the termcap database. The
46interface between the window package the terminal driver is the `tt'
47structure. It contains pointers to functions to perform special
48functions and terminal output, as well as flags about the
49characteristics of the terminal.
50
115fa6f8
EW
51 The IO system is semi-synchronous. Terminal input is signal
52driven, and everything else is done synchronously with a single
53select().
533eb3f8 54
115fa6f8
EW
55 Normally, in both conversation mode and command mode, window
56sleeps in a select() in wwiomux() waiting for data from the
57pseudo-terminals. At the same time, terminal input causes SIGIO which
58is caught by wwrint(). The select() returns when at least one of the
59pseudo-terminals becomes ready for reading.
533eb3f8 60
115fa6f8
EW
61 Wwrint() is the interrupt handler for tty input. It reads input
62into a linear buffer accessed through four pointers:
533eb3f8
EW
63
64 +-------+--------------+----------------+
65 | empty | data | empty |
66 +-------+--------------+----------------+
67 ^ ^ ^ ^
68 | | | |
69 wwib wwibp wwibq wwibe
70
115fa6f8
EW
71Wwrint() appends characters at the end and increments wwibq (*wwibq++ =
72c), and characters are taken from the buffer at wwibp using the
73wwgetc() and wwpeekc() macros. As is the convention in C, wwibq and
74wwibe point to one position beyond the end. In addition, wwrint() will
75do a longjmp(wwjmpbuf) if wwsetjmp is true. This is used by wwiomux()
76to interrupt the select() which would otherwise resume after the
533eb3f8
EW
77interrupt. The macro wwinterrupt() returns true if the input buffer is
78non-empty. Wwupdate(), wwwrite(), and wwiomux() check this condition
79and will return at the first convenient opportunity when it becomes
80true. In the case of wwwrite(), the flag ww_nointr in the window
81structure overrides this. This feature allows the user to interrupt
115fa6f8
EW
82lengthy outputs safely. The structure of the input buffer is designed
83to avoid race conditions without blocking interrupts.
533eb3f8
EW
84
85 Wwiomux() copies pseudo-terminal outputs into their corresponding
86windows. Without anything to do, it blocks in a select(), waiting for
87read ready on pseudo-terminals. Reads are done into per-window buffers
88in the window structures. When there is at least one buffer non-empty,
89wwiomux() finds the top most of these windows and writes it using
115fa6f8
EW
90wwwrite(). Then the process is repeated. A non-blocking select() is
91done after a wwwrite() to pick up any output that may have come in
92during the write, which may take a long time. Specifically, we use
93this to stop output or flush buffer when a pseudo-terminal tells us to
94(we use pty packet mode). The select() blocks only when all of the
95windows' buffers are empty. A wwupdate() is done prior to this, which
96is the only time the screen is guaranteed to be completely up to date.
97Wwiomux() loops until wwinterrupt() becomes true.
98
99 The top level routine for all this is mloop(). In conversation
100mode, it simply calls wwiomux(), which only returns when input is
101available. The input buffer is then written to the pseudo-terminal of
102the current window. If the escape character is found in the input,
103command mode is entered. Otherwise, the process is repeated. In
104command mode, control is transferred to docmd() which returns only when
105conversation mode is reentered. Docmd() and other command processing
106routines typically wait for input in a loop:
107
108 while (wwpeekc() < 0)
533eb3f8
EW
109 wwiomux();
110
115fa6f8 111When the loop terminates, wwgetc() is used to read the input buffer.
533eb3f8
EW
112
113 Output to the physical terminal is handled by the lowest level
114routines of the window package, in the files ttoutput.c and tt.h. The
115fa6f8
EW
115standard IO package is not used, to get better control over buffering
116and to use non-blocking reads in wwrint(). The buffer size is set to
533eb3f8
EW
117approximately one second of output time, based on the baudrate.
118
119 The result of all this complexity is faster response time,
120especially in output stopping and flushing. Wwwrite() checks
121wwinterrupt() after every line. It also calls wwupdate() for each line
122it writes. The output buffer is limited to one second of output time.
123Thus, there is usually only a delay of one to two lines plus one second
124after a ^C or ^S. Also, commands that produce lengthy output can be
125aborted without actually showing all of it on the terminal. (Try the
115fa6f8 126'?' command followed by escape immediately.)