2 * Jexer - Java Text User Interface
4 * License: LGPLv3 or later
6 * This module is licensed under the GNU Lesser General Public License
7 * Version 3. Please see the file "COPYING" in this directory for more
8 * information about the GNU Lesser General Public License Version 3.
10 * Copyright (C) 2015 Kevin Lamonte
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 3 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this program; if not, see
24 * http://www.gnu.org/licenses/, or write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
28 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
33 import java
.io
.BufferedReader
;
34 import java
.io
.FileDescriptor
;
35 import java
.io
.FileInputStream
;
36 import java
.io
.InputStream
;
37 import java
.io
.InputStreamReader
;
38 import java
.io
.IOException
;
39 import java
.io
.OutputStream
;
40 import java
.io
.OutputStreamWriter
;
41 import java
.io
.PrintWriter
;
42 import java
.io
.Reader
;
43 import java
.io
.UnsupportedEncodingException
;
44 import java
.util
.ArrayList
;
45 import java
.util
.Date
;
46 import java
.util
.List
;
47 import java
.util
.LinkedList
;
49 import jexer
.bits
.Color
;
50 import jexer
.event
.TInputEvent
;
51 import jexer
.event
.TKeypressEvent
;
52 import jexer
.event
.TMouseEvent
;
53 import jexer
.event
.TResizeEvent
;
54 import jexer
.session
.SessionInfo
;
55 import jexer
.session
.TSessionInfo
;
56 import jexer
.session
.TTYSessionInfo
;
57 import static jexer
.TKeypress
.*;
60 * This class reads keystrokes and mouse events and emits output to ANSI
61 * X3.64 / ECMA-48 type terminals e.g. xterm, linux, vt100, ansi.sys, etc.
63 public final class ECMA48Terminal
implements Runnable
{
66 * The session information.
68 private SessionInfo sessionInfo
;
71 * Getter for sessionInfo.
73 * @return the SessionInfo
75 public SessionInfo
getSessionInfo() {
80 * The event queue, filled up by a thread reading on input.
82 private List
<TInputEvent
> eventQueue
;
85 * If true, we want the reader thread to exit gracefully.
87 private boolean stopReaderThread
;
92 private Thread readerThread
;
95 * Parameters being collected. E.g. if the string is \033[1;3m, then
96 * params[0] will be 1 and params[1] will be 3.
98 private ArrayList
<String
> params
;
101 * States in the input parser.
103 private enum ParseState
{
115 * Current parsing state.
117 private ParseState state
;
120 * The time we entered ESCAPE. If we get a bare escape without a code
121 * following it, this is used to return that bare escape.
123 private long escapeTime
;
126 * The time we last checked the window size. We try not to spawn stty
127 * more than once per second.
129 private long windowSizeTime
;
132 * true if mouse1 was down. Used to report mouse1 on the release event.
134 private boolean mouse1
;
137 * true if mouse2 was down. Used to report mouse2 on the release event.
139 private boolean mouse2
;
142 * true if mouse3 was down. Used to report mouse3 on the release event.
144 private boolean mouse3
;
147 * Cache the cursor visibility value so we only emit the sequence when we
150 private boolean cursorOn
= true;
153 * Cache the last window size to figure out if a TResizeEvent needs to be
156 private TResizeEvent windowResize
= null;
159 * If true, then we changed System.in and need to change it back.
161 private boolean setRawMode
;
164 * The terminal's input. If an InputStream is not specified in the
165 * constructor, then this InputStreamReader will be bound to System.in
166 * with UTF-8 encoding.
168 private Reader input
;
171 * The terminal's raw InputStream. If an InputStream is not specified in
172 * the constructor, then this InputReader will be bound to System.in.
173 * This is used by run() to see if bytes are available() before calling
174 * (Reader)input.read().
176 private InputStream inputStream
;
179 * The terminal's output. If an OutputStream is not specified in the
180 * constructor, then this PrintWriter will be bound to System.out with
183 private PrintWriter output
;
186 * The listening object that run() wakes up on new input.
188 private Object listener
;
191 * Get the output writer.
195 public PrintWriter
getOutput() {
200 * Check if there are events in the queue.
202 * @return if true, getEvents() has something to return to the backend
204 public boolean hasEvents() {
205 synchronized (eventQueue
) {
206 return (eventQueue
.size() > 0);
211 * Call 'stty' to set cooked mode.
213 * <p>Actually executes '/bin/sh -c stty sane cooked < /dev/tty'
215 private void sttyCooked() {
220 * Call 'stty' to set raw mode.
222 * <p>Actually executes '/bin/sh -c stty -ignbrk -brkint -parmrk -istrip
223 * -inlcr -igncr -icrnl -ixon -opost -echo -echonl -icanon -isig -iexten
224 * -parenb cs8 min 1 < /dev/tty'
226 private void sttyRaw() {
231 * Call 'stty' to set raw or cooked mode.
233 * @param mode if true, set raw mode, otherwise set cooked mode
235 private void doStty(final boolean mode
) {
237 "/bin/sh", "-c", "stty -ignbrk -brkint -parmrk -istrip -inlcr -igncr -icrnl -ixon -opost -echo -echonl -icanon -isig -iexten -parenb cs8 min 1 < /dev/tty"
239 String
[] cmdCooked
= {
240 "/bin/sh", "-c", "stty sane cooked < /dev/tty"
245 process
= Runtime
.getRuntime().exec(cmdRaw
);
247 process
= Runtime
.getRuntime().exec(cmdCooked
);
249 BufferedReader in
= new BufferedReader(new InputStreamReader(process
.getInputStream(), "UTF-8"));
250 String line
= in
.readLine();
251 if ((line
!= null) && (line
.length() > 0)) {
252 System
.err
.println("WEIRD?! Normal output from stty: " + line
);
255 BufferedReader err
= new BufferedReader(new InputStreamReader(process
.getErrorStream(), "UTF-8"));
256 line
= err
.readLine();
257 if ((line
!= null) && (line
.length() > 0)) {
258 System
.err
.println("Error output from stty: " + line
);
263 } catch (InterruptedException e
) {
267 int rc
= process
.exitValue();
269 System
.err
.println("stty returned error code: " + rc
);
271 } catch (IOException e
) {
277 * Constructor sets up state for getEvent().
279 * @param listener the object this backend needs to wake up when new
281 * @param input an InputStream connected to the remote user, or null for
282 * System.in. If System.in is used, then on non-Windows systems it will
283 * be put in raw mode; shutdown() will (blindly!) put System.in in cooked
284 * mode. input is always converted to a Reader with UTF-8 encoding.
285 * @param output an OutputStream connected to the remote user, or null
286 * for System.out. output is always converted to a Writer with UTF-8
288 * @throws UnsupportedEncodingException if an exception is thrown when
289 * creating the InputStreamReader
291 public ECMA48Terminal(final Object listener
, final InputStream input
,
292 final OutputStream output
) throws UnsupportedEncodingException
{
298 stopReaderThread
= false;
299 this.listener
= listener
;
302 // inputStream = System.in;
303 inputStream
= new FileInputStream(FileDescriptor
.in
);
309 this.input
= new InputStreamReader(inputStream
, "UTF-8");
311 if (input
instanceof SessionInfo
) {
312 // This is a TelnetInputStream that exposes window size and
313 // environment variables from the telnet layer.
314 sessionInfo
= (SessionInfo
) input
;
316 if (sessionInfo
== null) {
318 // Reading right off the tty
319 sessionInfo
= new TTYSessionInfo();
321 sessionInfo
= new TSessionInfo();
325 if (output
== null) {
326 this.output
= new PrintWriter(new OutputStreamWriter(System
.out
,
329 this.output
= new PrintWriter(new OutputStreamWriter(output
,
333 // Enable mouse reporting and metaSendsEscape
334 this.output
.printf("%s%s", mouse(true), xtermMetaSendsEscape(true));
337 // Hang onto the window size
338 windowResize
= new TResizeEvent(TResizeEvent
.Type
.SCREEN
,
339 sessionInfo
.getWindowWidth(), sessionInfo
.getWindowHeight());
341 // Spin up the input reader
342 eventQueue
= new LinkedList
<TInputEvent
>();
343 readerThread
= new Thread(this);
344 readerThread
.start();
348 * Restore terminal to normal state.
350 public void shutdown() {
352 // System.err.println("=== shutdown() ==="); System.err.flush();
354 // Tell the reader thread to stop looking at input
355 stopReaderThread
= true;
358 } catch (InterruptedException e
) {
362 // Disable mouse reporting and show cursor
363 output
.printf("%s%s%s", mouse(false), cursor(true), normal());
369 // We don't close System.in/out
371 // Shut down the streams, this should wake up the reader thread
378 if (output
!= null) {
382 } catch (IOException e
) {
391 public void flush() {
396 * Reset keyboard/mouse input parser.
398 private void reset() {
399 state
= ParseState
.GROUND
;
400 params
= new ArrayList
<String
>();
406 * Produce a control character or one of the special ones (ENTER, TAB,
409 * @param ch Unicode code point
410 * @param alt if true, set alt on the TKeypress
411 * @return one TKeypress event, either a control character (e.g. isKey ==
412 * false, ch == 'A', ctrl == true), or a special key (e.g. isKey == true,
415 private TKeypressEvent
controlChar(final char ch
, final boolean alt
) {
416 // System.err.printf("controlChar: %02x\n", ch);
420 // Carriage return --> ENTER
421 return new TKeypressEvent(kbEnter
, alt
, false, false);
423 // Linefeed --> ENTER
424 return new TKeypressEvent(kbEnter
, alt
, false, false);
427 return new TKeypressEvent(kbEsc
, alt
, false, false);
430 return new TKeypressEvent(kbTab
, alt
, false, false);
432 // Make all other control characters come back as the alphabetic
433 // character with the ctrl field set. So SOH would be 'A' +
435 return new TKeypressEvent(false, 0, (char)(ch
+ 0x40),
441 * Produce special key from CSI Pn ; Pm ; ... ~
443 * @return one KEYPRESS event representing a special key
445 private TInputEvent
csiFnKey() {
448 if (params
.size() > 0) {
449 key
= Integer
.parseInt(params
.get(0));
451 if (params
.size() > 1) {
452 modifier
= Integer
.parseInt(params
.get(1));
455 boolean ctrl
= false;
456 boolean shift
= false;
475 // Unknown modifier, bail out
481 return new TKeypressEvent(kbHome
, alt
, ctrl
, shift
);
483 return new TKeypressEvent(kbIns
, alt
, ctrl
, shift
);
485 return new TKeypressEvent(kbDel
, alt
, ctrl
, shift
);
487 return new TKeypressEvent(kbEnd
, alt
, ctrl
, shift
);
489 return new TKeypressEvent(kbPgUp
, alt
, ctrl
, shift
);
491 return new TKeypressEvent(kbPgDn
, alt
, ctrl
, shift
);
493 return new TKeypressEvent(kbF5
, alt
, ctrl
, shift
);
495 return new TKeypressEvent(kbF6
, alt
, ctrl
, shift
);
497 return new TKeypressEvent(kbF7
, alt
, ctrl
, shift
);
499 return new TKeypressEvent(kbF8
, alt
, ctrl
, shift
);
501 return new TKeypressEvent(kbF9
, alt
, ctrl
, shift
);
503 return new TKeypressEvent(kbF10
, alt
, ctrl
, shift
);
505 return new TKeypressEvent(kbF11
, alt
, ctrl
, shift
);
507 return new TKeypressEvent(kbF12
, alt
, ctrl
, shift
);
515 * Produce mouse events based on "Any event tracking" and UTF-8
517 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Mouse%20Tracking
519 * @return a MOUSE_MOTION, MOUSE_UP, or MOUSE_DOWN event
521 private TInputEvent
parseMouse() {
522 int buttons
= params
.get(0).charAt(0) - 32;
523 int x
= params
.get(0).charAt(1) - 32 - 1;
524 int y
= params
.get(0).charAt(2) - 32 - 1;
526 // Clamp X and Y to the physical screen coordinates.
527 if (x
>= windowResize
.getWidth()) {
528 x
= windowResize
.getWidth() - 1;
530 if (y
>= windowResize
.getHeight()) {
531 y
= windowResize
.getHeight() - 1;
534 TMouseEvent
.Type eventType
= TMouseEvent
.Type
.MOUSE_DOWN
;
535 boolean eventMouse1
= false;
536 boolean eventMouse2
= false;
537 boolean eventMouse3
= false;
538 boolean eventMouseWheelUp
= false;
539 boolean eventMouseWheelDown
= false;
541 // System.err.printf("buttons: %04x\r\n", buttons);
558 if (!mouse1
&& !mouse2
&& !mouse3
) {
559 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
561 eventType
= TMouseEvent
.Type
.MOUSE_UP
;
578 // Dragging with mouse1 down
581 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
585 // Dragging with mouse2 down
588 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
592 // Dragging with mouse3 down
595 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
599 // Dragging with mouse2 down after wheelUp
602 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
606 // Dragging with mouse2 down after wheelDown
609 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
613 eventMouseWheelUp
= true;
617 eventMouseWheelDown
= true;
621 // Unknown, just make it motion
622 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
625 return new TMouseEvent(eventType
, x
, y
, x
, y
,
626 eventMouse1
, eventMouse2
, eventMouse3
,
627 eventMouseWheelUp
, eventMouseWheelDown
);
631 * Produce mouse events based on "Any event tracking" and SGR
633 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Mouse%20Tracking
635 * @param release if true, this was a release ('m')
636 * @return a MOUSE_MOTION, MOUSE_UP, or MOUSE_DOWN event
638 private TInputEvent
parseMouseSGR(final boolean release
) {
639 // SGR extended coordinates - mode 1006
640 if (params
.size() < 3) {
641 // Invalid position, bail out.
644 int buttons
= Integer
.parseInt(params
.get(0));
645 int x
= Integer
.parseInt(params
.get(1)) - 1;
646 int y
= Integer
.parseInt(params
.get(2)) - 1;
648 // Clamp X and Y to the physical screen coordinates.
649 if (x
>= windowResize
.getWidth()) {
650 x
= windowResize
.getWidth() - 1;
652 if (y
>= windowResize
.getHeight()) {
653 y
= windowResize
.getHeight() - 1;
656 TMouseEvent
.Type eventType
= TMouseEvent
.Type
.MOUSE_DOWN
;
657 boolean eventMouse1
= false;
658 boolean eventMouse2
= false;
659 boolean eventMouse3
= false;
660 boolean eventMouseWheelUp
= false;
661 boolean eventMouseWheelDown
= false;
664 eventType
= TMouseEvent
.Type
.MOUSE_UP
;
678 // Motion only, no buttons down
679 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
683 // Dragging with mouse1 down
685 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
689 // Dragging with mouse2 down
691 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
695 // Dragging with mouse3 down
697 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
701 // Dragging with mouse2 down after wheelUp
703 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
707 // Dragging with mouse2 down after wheelDown
709 eventType
= TMouseEvent
.Type
.MOUSE_MOTION
;
713 eventMouseWheelUp
= true;
717 eventMouseWheelDown
= true;
724 return new TMouseEvent(eventType
, x
, y
, x
, y
,
725 eventMouse1
, eventMouse2
, eventMouse3
,
726 eventMouseWheelUp
, eventMouseWheelDown
);
730 * Return any events in the IO queue.
732 * @param queue list to append new events to
734 public void getEvents(final List
<TInputEvent
> queue
) {
735 synchronized (eventQueue
) {
736 if (eventQueue
.size() > 0) {
737 synchronized (queue
) {
738 queue
.addAll(eventQueue
);
746 * Return any events in the IO queue due to timeout.
748 * @param queue list to append new events to
750 private void getIdleEvents(final List
<TInputEvent
> queue
) {
751 Date now
= new Date();
753 // Check for new window size
754 long windowSizeDelay
= now
.getTime() - windowSizeTime
;
755 if (windowSizeDelay
> 1000) {
756 sessionInfo
.queryWindowSize();
757 int newWidth
= sessionInfo
.getWindowWidth();
758 int newHeight
= sessionInfo
.getWindowHeight();
759 if ((newWidth
!= windowResize
.getWidth())
760 || (newHeight
!= windowResize
.getHeight())
762 TResizeEvent event
= new TResizeEvent(TResizeEvent
.Type
.SCREEN
,
763 newWidth
, newHeight
);
764 windowResize
= new TResizeEvent(TResizeEvent
.Type
.SCREEN
,
765 newWidth
, newHeight
);
768 windowSizeTime
= now
.getTime();
771 // ESCDELAY type timeout
772 if (state
== ParseState
.ESCAPE
) {
773 long escDelay
= now
.getTime() - escapeTime
;
774 if (escDelay
> 100) {
775 // After 0.1 seconds, assume a true escape character
776 queue
.add(controlChar((char)0x1B, false));
783 * Parses the next character of input to see if an InputEvent is
786 * @param events list to append new events to
787 * @param ch Unicode code point
789 private void processChar(final List
<TInputEvent
> events
, final char ch
) {
791 // ESCDELAY type timeout
792 Date now
= new Date();
793 if (state
== ParseState
.ESCAPE
) {
794 long escDelay
= now
.getTime() - escapeTime
;
795 if (escDelay
> 250) {
796 // After 0.25 seconds, assume a true escape character
797 events
.add(controlChar((char)0x1B, false));
803 boolean ctrl
= false;
805 boolean shift
= false;
807 // System.err.printf("state: %s ch %c\r\n", state, ch);
813 state
= ParseState
.ESCAPE
;
814 escapeTime
= now
.getTime();
820 events
.add(controlChar(ch
, false));
827 events
.add(new TKeypressEvent(false, 0, ch
,
828 false, false, false));
837 // ALT-Control character
838 events
.add(controlChar(ch
, true));
844 // This will be one of the function keys
845 state
= ParseState
.ESCAPE_INTERMEDIATE
;
849 // '[' goes to CSI_ENTRY
851 state
= ParseState
.CSI_ENTRY
;
855 // Everything else is assumed to be Alt-keystroke
856 if ((ch
>= 'A') && (ch
<= 'Z')) {
860 events
.add(new TKeypressEvent(false, 0, ch
, alt
, ctrl
, shift
));
864 case ESCAPE_INTERMEDIATE
:
865 if ((ch
>= 'P') && (ch
<= 'S')) {
869 events
.add(new TKeypressEvent(kbF1
));
872 events
.add(new TKeypressEvent(kbF2
));
875 events
.add(new TKeypressEvent(kbF3
));
878 events
.add(new TKeypressEvent(kbF4
));
887 // Unknown keystroke, ignore
892 // Numbers - parameter values
893 if ((ch
>= '0') && (ch
<= '9')) {
894 params
.set(params
.size() - 1,
895 params
.get(params
.size() - 1) + ch
);
896 state
= ParseState
.CSI_PARAM
;
899 // Parameter separator
905 if ((ch
>= 0x30) && (ch
<= 0x7E)) {
909 if (params
.size() > 1) {
910 if (params
.get(1).equals("2")) {
913 if (params
.get(1).equals("5")) {
916 if (params
.get(1).equals("3")) {
920 events
.add(new TKeypressEvent(kbUp
, alt
, ctrl
, shift
));
925 if (params
.size() > 1) {
926 if (params
.get(1).equals("2")) {
929 if (params
.get(1).equals("5")) {
932 if (params
.get(1).equals("3")) {
936 events
.add(new TKeypressEvent(kbDown
, alt
, ctrl
, shift
));
941 if (params
.size() > 1) {
942 if (params
.get(1).equals("2")) {
945 if (params
.get(1).equals("5")) {
948 if (params
.get(1).equals("3")) {
952 events
.add(new TKeypressEvent(kbRight
, alt
, ctrl
, shift
));
957 if (params
.size() > 1) {
958 if (params
.get(1).equals("2")) {
961 if (params
.get(1).equals("5")) {
964 if (params
.get(1).equals("3")) {
968 events
.add(new TKeypressEvent(kbLeft
, alt
, ctrl
, shift
));
973 events
.add(new TKeypressEvent(kbHome
));
978 events
.add(new TKeypressEvent(kbEnd
));
982 // CBT - Cursor backward X tab stops (default 1)
983 events
.add(new TKeypressEvent(kbBackTab
));
988 state
= ParseState
.MOUSE
;
991 // Mouse position, SGR (1006) coordinates
992 state
= ParseState
.MOUSE_SGR
;
999 // Unknown keystroke, ignore
1004 // Numbers - parameter values
1005 if ((ch
>= '0') && (ch
<= '9')) {
1006 params
.set(params
.size() - 1,
1007 params
.get(params
.size() - 1) + ch
);
1010 // Parameter separator
1018 // Generate a mouse press event
1019 TInputEvent event
= parseMouseSGR(false);
1020 if (event
!= null) {
1026 // Generate a mouse release event
1027 event
= parseMouseSGR(true);
1028 if (event
!= null) {
1037 // Unknown keystroke, ignore
1042 // Numbers - parameter values
1043 if ((ch
>= '0') && (ch
<= '9')) {
1044 params
.set(params
.size() - 1,
1045 params
.get(params
.size() - 1) + ch
);
1046 state
= ParseState
.CSI_PARAM
;
1049 // Parameter separator
1056 events
.add(csiFnKey());
1061 if ((ch
>= 0x30) && (ch
<= 0x7E)) {
1065 if (params
.size() > 1) {
1066 if (params
.get(1).equals("2")) {
1069 if (params
.get(1).equals("5")) {
1072 if (params
.get(1).equals("3")) {
1076 events
.add(new TKeypressEvent(kbUp
, alt
, ctrl
, shift
));
1081 if (params
.size() > 1) {
1082 if (params
.get(1).equals("2")) {
1085 if (params
.get(1).equals("5")) {
1088 if (params
.get(1).equals("3")) {
1092 events
.add(new TKeypressEvent(kbDown
, alt
, ctrl
, shift
));
1097 if (params
.size() > 1) {
1098 if (params
.get(1).equals("2")) {
1101 if (params
.get(1).equals("5")) {
1104 if (params
.get(1).equals("3")) {
1108 events
.add(new TKeypressEvent(kbRight
, alt
, ctrl
, shift
));
1113 if (params
.size() > 1) {
1114 if (params
.get(1).equals("2")) {
1117 if (params
.get(1).equals("5")) {
1120 if (params
.get(1).equals("3")) {
1124 events
.add(new TKeypressEvent(kbLeft
, alt
, ctrl
, shift
));
1132 // Unknown keystroke, ignore
1137 params
.set(0, params
.get(params
.size() - 1) + ch
);
1138 if (params
.get(0).length() == 3) {
1139 // We have enough to generate a mouse event
1140 events
.add(parseMouse());
1149 // This "should" be impossible to reach
1154 * Tell (u)xterm that we want alt- keystrokes to send escape + character
1155 * rather than set the 8th bit. Anyone who wants UTF8 should want this
1158 * @param on if true, enable metaSendsEscape
1159 * @return the string to emit to xterm
1161 private String
xtermMetaSendsEscape(final boolean on
) {
1163 return "\033[?1036h\033[?1034l";
1165 return "\033[?1036l";
1169 * Create a SGR parameter sequence for a single color change. Note
1170 * package private access.
1172 * @param color one of the Color.WHITE, Color.BLUE, etc. constants
1173 * @param foreground if true, this is a foreground color
1174 * @return the string to emit to an ANSI / ECMA-style terminal,
1177 String
color(final Color color
, final boolean foreground
) {
1178 return color(color
, foreground
, true);
1182 * Create a SGR parameter sequence for a single color change.
1184 * @param color one of the Color.WHITE, Color.BLUE, etc. constants
1185 * @param foreground if true, this is a foreground color
1186 * @param header if true, make the full header, otherwise just emit the
1187 * color parameter e.g. "42;"
1188 * @return the string to emit to an ANSI / ECMA-style terminal,
1191 private String
color(final Color color
, final boolean foreground
,
1192 final boolean header
) {
1194 int ecmaColor
= color
.getValue();
1196 // Convert Color.* values to SGR numerics
1204 return String
.format("\033[%dm", ecmaColor
);
1206 return String
.format("%d;", ecmaColor
);
1211 * Create a SGR parameter sequence for both foreground and background
1212 * color change. Note package private access.
1214 * @param foreColor one of the Color.WHITE, Color.BLUE, etc. constants
1215 * @param backColor one of the Color.WHITE, Color.BLUE, etc. constants
1216 * @return the string to emit to an ANSI / ECMA-style terminal,
1217 * e.g. "\033[31;42m"
1219 String
color(final Color foreColor
, final Color backColor
) {
1220 return color(foreColor
, backColor
, true);
1224 * Create a SGR parameter sequence for both foreground and
1225 * background color change.
1227 * @param foreColor one of the Color.WHITE, Color.BLUE, etc. constants
1228 * @param backColor one of the Color.WHITE, Color.BLUE, etc. constants
1229 * @param header if true, make the full header, otherwise just emit the
1230 * color parameter e.g. "31;42;"
1231 * @return the string to emit to an ANSI / ECMA-style terminal,
1232 * e.g. "\033[31;42m"
1234 private String
color(final Color foreColor
, final Color backColor
,
1235 final boolean header
) {
1237 int ecmaForeColor
= foreColor
.getValue();
1238 int ecmaBackColor
= backColor
.getValue();
1240 // Convert Color.* values to SGR numerics
1241 ecmaBackColor
+= 40;
1242 ecmaForeColor
+= 30;
1245 return String
.format("\033[%d;%dm", ecmaForeColor
, ecmaBackColor
);
1247 return String
.format("%d;%d;", ecmaForeColor
, ecmaBackColor
);
1252 * Create a SGR parameter sequence for foreground, background, and
1253 * several attributes. This sequence first resets all attributes to
1254 * default, then sets attributes as per the parameters. Note package
1257 * @param foreColor one of the Color.WHITE, Color.BLUE, etc. constants
1258 * @param backColor one of the Color.WHITE, Color.BLUE, etc. constants
1259 * @param bold if true, set bold
1260 * @param reverse if true, set reverse
1261 * @param blink if true, set blink
1262 * @param underline if true, set underline
1263 * @return the string to emit to an ANSI / ECMA-style terminal,
1264 * e.g. "\033[0;1;31;42m"
1266 String
color(final Color foreColor
, final Color backColor
,
1267 final boolean bold
, final boolean reverse
, final boolean blink
,
1268 final boolean underline
) {
1270 int ecmaForeColor
= foreColor
.getValue();
1271 int ecmaBackColor
= backColor
.getValue();
1273 // Convert Color.* values to SGR numerics
1274 ecmaBackColor
+= 40;
1275 ecmaForeColor
+= 30;
1277 StringBuilder sb
= new StringBuilder();
1278 if ( bold
&& reverse
&& blink
&& !underline
) {
1279 sb
.append("\033[0;1;7;5;");
1280 } else if ( bold
&& reverse
&& !blink
&& !underline
) {
1281 sb
.append("\033[0;1;7;");
1282 } else if ( !bold
&& reverse
&& blink
&& !underline
) {
1283 sb
.append("\033[0;7;5;");
1284 } else if ( bold
&& !reverse
&& blink
&& !underline
) {
1285 sb
.append("\033[0;1;5;");
1286 } else if ( bold
&& !reverse
&& !blink
&& !underline
) {
1287 sb
.append("\033[0;1;");
1288 } else if ( !bold
&& reverse
&& !blink
&& !underline
) {
1289 sb
.append("\033[0;7;");
1290 } else if ( !bold
&& !reverse
&& blink
&& !underline
) {
1291 sb
.append("\033[0;5;");
1292 } else if ( bold
&& reverse
&& blink
&& underline
) {
1293 sb
.append("\033[0;1;7;5;4;");
1294 } else if ( bold
&& reverse
&& !blink
&& underline
) {
1295 sb
.append("\033[0;1;7;4;");
1296 } else if ( !bold
&& reverse
&& blink
&& underline
) {
1297 sb
.append("\033[0;7;5;4;");
1298 } else if ( bold
&& !reverse
&& blink
&& underline
) {
1299 sb
.append("\033[0;1;5;4;");
1300 } else if ( bold
&& !reverse
&& !blink
&& underline
) {
1301 sb
.append("\033[0;1;4;");
1302 } else if ( !bold
&& reverse
&& !blink
&& underline
) {
1303 sb
.append("\033[0;7;4;");
1304 } else if ( !bold
&& !reverse
&& blink
&& underline
) {
1305 sb
.append("\033[0;5;4;");
1306 } else if ( !bold
&& !reverse
&& !blink
&& underline
) {
1307 sb
.append("\033[0;4;");
1309 assert (!bold
&& !reverse
&& !blink
&& !underline
);
1310 sb
.append("\033[0;");
1312 sb
.append(String
.format("%d;%dm", ecmaForeColor
, ecmaBackColor
));
1313 return sb
.toString();
1317 * Create a SGR parameter sequence to reset to defaults. Note package
1320 * @return the string to emit to an ANSI / ECMA-style terminal,
1324 return normal(true);
1328 * Create a SGR parameter sequence to reset to defaults.
1330 * @param header if true, make the full header, otherwise just emit the
1331 * bare parameter e.g. "0;"
1332 * @return the string to emit to an ANSI / ECMA-style terminal,
1335 private String
normal(final boolean header
) {
1337 return "\033[0;37;40m";
1343 * Create a SGR parameter sequence for enabling the visible cursor. Note
1344 * package private access.
1346 * @param on if true, turn on cursor
1347 * @return the string to emit to an ANSI / ECMA-style terminal
1349 String
cursor(final boolean on
) {
1350 if (on
&& !cursorOn
) {
1354 if (!on
&& cursorOn
) {
1362 * Clear the entire screen. Because some terminals use back-color-erase,
1363 * set the color to white-on-black beforehand.
1365 * @return the string to emit to an ANSI / ECMA-style terminal
1367 public String
clearAll() {
1368 return "\033[0;37;40m\033[2J";
1372 * Clear the line from the cursor (inclusive) to the end of the screen.
1373 * Because some terminals use back-color-erase, set the color to
1374 * white-on-black beforehand. Note package private access.
1376 * @return the string to emit to an ANSI / ECMA-style terminal
1378 String
clearRemainingLine() {
1379 return "\033[0;37;40m\033[K";
1383 * Move the cursor to (x, y). Note package private access.
1385 * @param x column coordinate. 0 is the left-most column.
1386 * @param y row coordinate. 0 is the top-most row.
1387 * @return the string to emit to an ANSI / ECMA-style terminal
1389 String
gotoXY(final int x
, final int y
) {
1390 return String
.format("\033[%d;%dH", y
+ 1, x
+ 1);
1394 * Tell (u)xterm that we want to receive mouse events based on "Any event
1395 * tracking", UTF-8 coordinates, and then SGR coordinates. Ideally we
1396 * will end up with SGR coordinates with UTF-8 coordinates as a fallback.
1398 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Mouse%20Tracking
1400 * Note that this also sets the alternate/primary screen buffer.
1402 * @param on If true, enable mouse report and use the alternate screen
1403 * buffer. If false disable mouse reporting and use the primary screen
1405 * @return the string to emit to xterm
1407 private String
mouse(final boolean on
) {
1409 return "\033[?1003;1005;1006h\033[?1049h";
1411 return "\033[?1003;1006;1005l\033[?1049l";
1415 * Read function runs on a separate thread.
1418 boolean done
= false;
1419 // available() will often return > 1, so we need to read in chunks to
1421 char [] readBuffer
= new char[128];
1422 List
<TInputEvent
> events
= new LinkedList
<TInputEvent
>();
1424 while (!done
&& !stopReaderThread
) {
1426 // We assume that if inputStream has bytes available, then
1427 // input won't block on read().
1428 int n
= inputStream
.available();
1430 if (readBuffer
.length
< n
) {
1431 // The buffer wasn't big enough, make it huger
1432 readBuffer
= new char[readBuffer
.length
* 2];
1435 int rc
= input
.read(readBuffer
, 0, readBuffer
.length
);
1436 // System.err.printf("read() %d", rc); System.err.flush();
1441 for (int i
= 0; i
< rc
; i
++) {
1442 int ch
= readBuffer
[i
];
1443 processChar(events
, (char)ch
);
1445 getIdleEvents(events
);
1446 if (events
.size() > 0) {
1447 // Add to the queue for the backend thread to
1448 // be able to obtain.
1449 synchronized (eventQueue
) {
1450 eventQueue
.addAll(events
);
1452 synchronized (listener
) {
1453 listener
.notifyAll();
1459 getIdleEvents(events
);
1460 if (events
.size() > 0) {
1461 synchronized (eventQueue
) {
1462 eventQueue
.addAll(events
);
1465 synchronized (listener
) {
1466 listener
.notifyAll();
1470 // Wait 10 millis for more data
1473 // System.err.println("end while loop"); System.err.flush();
1474 } catch (InterruptedException e
) {
1476 } catch (IOException e
) {
1477 e
.printStackTrace();
1480 } // while ((done == false) && (stopReaderThread == false))
1481 // System.err.println("*** run() exiting..."); System.err.flush();