Not dead note
[fanfix.git] / src / jexer / backend / ECMA48Terminal.java
CommitLineData
daa4106c 1/*
b1589621
KL
2 * Jexer - Java Text User Interface
3 *
e16dda65 4 * The MIT License (MIT)
b1589621 5 *
a2018e99 6 * Copyright (C) 2017 Kevin Lamonte
b1589621 7 *
e16dda65
KL
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
b1589621 14 *
e16dda65
KL
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
b1589621 17 *
e16dda65
KL
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
7b5261bc
KL
25 *
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
27 * @version 1
b1589621 28 */
42873e30 29package jexer.backend;
b1589621
KL
30
31import java.io.BufferedReader;
4328bb42
KL
32import java.io.FileDescriptor;
33import java.io.FileInputStream;
b1589621
KL
34import java.io.InputStream;
35import java.io.InputStreamReader;
36import java.io.IOException;
37import java.io.OutputStream;
38import java.io.OutputStreamWriter;
39import java.io.PrintWriter;
40import java.io.Reader;
41import java.io.UnsupportedEncodingException;
42import java.util.ArrayList;
b1589621
KL
43import java.util.List;
44import java.util.LinkedList;
45
42873e30
KL
46import jexer.bits.Cell;
47import jexer.bits.CellAttributes;
b1589621
KL
48import jexer.bits.Color;
49import jexer.event.TInputEvent;
50import jexer.event.TKeypressEvent;
51import jexer.event.TMouseEvent;
52import jexer.event.TResizeEvent;
b1589621
KL
53import static jexer.TKeypress.*;
54
55/**
7b5261bc
KL
56 * This class reads keystrokes and mouse events and emits output to ANSI
57 * X3.64 / ECMA-48 type terminals e.g. xterm, linux, vt100, ansi.sys, etc.
b1589621 58 */
051e2913
KL
59public class ECMA48Terminal extends LogicalScreen
60 implements TerminalReader, Runnable {
42873e30 61
d36057df
KL
62 // ------------------------------------------------------------------------
63 // Constants --------------------------------------------------------------
64 // ------------------------------------------------------------------------
65
66 /**
67 * States in the input parser.
68 */
69 private enum ParseState {
70 GROUND,
71 ESCAPE,
72 ESCAPE_INTERMEDIATE,
73 CSI_ENTRY,
74 CSI_PARAM,
75 MOUSE,
76 MOUSE_SGR,
77 }
78
79 // ------------------------------------------------------------------------
80 // Variables --------------------------------------------------------------
81 // ------------------------------------------------------------------------
82
42873e30
KL
83 /**
84 * Emit debugging to stderr.
85 */
86 private boolean debugToStderr = false;
b1589621 87
15ea4d73 88 /**
051e2913
KL
89 * If true, emit T.416-style RGB colors for normal system colors. This
90 * is a) expensive in bandwidth, and b) potentially terrible looking for
91 * non-xterms.
15ea4d73
KL
92 */
93 private static boolean doRgbColor = false;
94
b1589621 95 /**
7b5261bc
KL
96 * The session information.
97 */
98 private SessionInfo sessionInfo;
99
4328bb42 100 /**
7b5261bc 101 * The event queue, filled up by a thread reading on input.
4328bb42
KL
102 */
103 private List<TInputEvent> eventQueue;
104
105 /**
106 * If true, we want the reader thread to exit gracefully.
107 */
108 private boolean stopReaderThread;
109
110 /**
7b5261bc 111 * The reader thread.
4328bb42
KL
112 */
113 private Thread readerThread;
114
b1589621
KL
115 /**
116 * Parameters being collected. E.g. if the string is \033[1;3m, then
117 * params[0] will be 1 and params[1] will be 3.
118 */
d36057df 119 private List<String> params;
b1589621
KL
120
121 /**
7b5261bc 122 * Current parsing state.
b1589621
KL
123 */
124 private ParseState state;
125
126 /**
7b5261bc
KL
127 * The time we entered ESCAPE. If we get a bare escape without a code
128 * following it, this is used to return that bare escape.
b1589621
KL
129 */
130 private long escapeTime;
131
a83fea2b
KL
132 /**
133 * The time we last checked the window size. We try not to spawn stty
134 * more than once per second.
135 */
136 private long windowSizeTime;
137
b1589621
KL
138 /**
139 * true if mouse1 was down. Used to report mouse1 on the release event.
140 */
141 private boolean mouse1;
142
143 /**
144 * true if mouse2 was down. Used to report mouse2 on the release event.
145 */
146 private boolean mouse2;
147
148 /**
149 * true if mouse3 was down. Used to report mouse3 on the release event.
150 */
151 private boolean mouse3;
152
153 /**
154 * Cache the cursor visibility value so we only emit the sequence when we
155 * need to.
156 */
157 private boolean cursorOn = true;
158
159 /**
160 * Cache the last window size to figure out if a TResizeEvent needs to be
161 * generated.
162 */
163 private TResizeEvent windowResize = null;
164
165 /**
166 * If true, then we changed System.in and need to change it back.
167 */
168 private boolean setRawMode;
169
170 /**
171 * The terminal's input. If an InputStream is not specified in the
4328bb42
KL
172 * constructor, then this InputStreamReader will be bound to System.in
173 * with UTF-8 encoding.
b1589621
KL
174 */
175 private Reader input;
176
4328bb42
KL
177 /**
178 * The terminal's raw InputStream. If an InputStream is not specified in
179 * the constructor, then this InputReader will be bound to System.in.
180 * This is used by run() to see if bytes are available() before calling
181 * (Reader)input.read().
182 */
183 private InputStream inputStream;
184
b1589621
KL
185 /**
186 * The terminal's output. If an OutputStream is not specified in the
187 * constructor, then this PrintWriter will be bound to System.out with
188 * UTF-8 encoding.
189 */
190 private PrintWriter output;
191
92554d64
KL
192 /**
193 * The listening object that run() wakes up on new input.
194 */
195 private Object listener;
196
d36057df
KL
197 // ------------------------------------------------------------------------
198 // Constructors -----------------------------------------------------------
199 // ------------------------------------------------------------------------
b1589621
KL
200
201 /**
7b5261bc 202 * Constructor sets up state for getEvent().
eb29bbb5
KL
203 *
204 * @param listener the object this backend needs to wake up when new
205 * input comes in
206 * @param input an InputStream connected to the remote user, or null for
207 * System.in. If System.in is used, then on non-Windows systems it will
208 * be put in raw mode; shutdown() will (blindly!) put System.in in cooked
209 * mode. input is always converted to a Reader with UTF-8 encoding.
210 * @param output an OutputStream connected to the remote user, or null
211 * for System.out. output is always converted to a Writer with UTF-8
212 * encoding.
213 * @param windowWidth the number of text columns to start with
214 * @param windowHeight the number of text rows to start with
215 * @throws UnsupportedEncodingException if an exception is thrown when
216 * creating the InputStreamReader
217 */
218 public ECMA48Terminal(final Object listener, final InputStream input,
219 final OutputStream output, final int windowWidth,
220 final int windowHeight) throws UnsupportedEncodingException {
221
222 this(listener, input, output);
223
224 // Send dtterm/xterm sequences, which will probably not work because
225 // allowWindowOps is defaulted to false.
226 String resizeString = String.format("\033[8;%d;%dt", windowHeight,
227 windowWidth);
228 this.output.write(resizeString);
229 this.output.flush();
230 }
231
232 /**
233 * Constructor sets up state for getEvent().
b1589621 234 *
92554d64
KL
235 * @param listener the object this backend needs to wake up when new
236 * input comes in
b1589621
KL
237 * @param input an InputStream connected to the remote user, or null for
238 * System.in. If System.in is used, then on non-Windows systems it will
239 * be put in raw mode; shutdown() will (blindly!) put System.in in cooked
240 * mode. input is always converted to a Reader with UTF-8 encoding.
241 * @param output an OutputStream connected to the remote user, or null
242 * for System.out. output is always converted to a Writer with UTF-8
243 * encoding.
7b5261bc
KL
244 * @throws UnsupportedEncodingException if an exception is thrown when
245 * creating the InputStreamReader
b1589621 246 */
92554d64 247 public ECMA48Terminal(final Object listener, final InputStream input,
7b5261bc
KL
248 final OutputStream output) throws UnsupportedEncodingException {
249
42873e30 250 resetParser();
7b5261bc
KL
251 mouse1 = false;
252 mouse2 = false;
253 mouse3 = false;
254 stopReaderThread = false;
92554d64 255 this.listener = listener;
7b5261bc
KL
256
257 if (input == null) {
258 // inputStream = System.in;
259 inputStream = new FileInputStream(FileDescriptor.in);
260 sttyRaw();
261 setRawMode = true;
262 } else {
263 inputStream = input;
264 }
265 this.input = new InputStreamReader(inputStream, "UTF-8");
266
7b5261bc 267 if (input instanceof SessionInfo) {
ea91242c
KL
268 // This is a TelnetInputStream that exposes window size and
269 // environment variables from the telnet layer.
7b5261bc
KL
270 sessionInfo = (SessionInfo) input;
271 }
272 if (sessionInfo == null) {
273 if (input == null) {
274 // Reading right off the tty
275 sessionInfo = new TTYSessionInfo();
276 } else {
277 sessionInfo = new TSessionInfo();
278 }
279 }
280
281 if (output == null) {
282 this.output = new PrintWriter(new OutputStreamWriter(System.out,
283 "UTF-8"));
284 } else {
285 this.output = new PrintWriter(new OutputStreamWriter(output,
286 "UTF-8"));
287 }
288
289 // Enable mouse reporting and metaSendsEscape
290 this.output.printf("%s%s", mouse(true), xtermMetaSendsEscape(true));
55b4f29b 291 this.output.flush();
7b5261bc 292
3e074355
KL
293 // Query the screen size
294 sessionInfo.queryWindowSize();
295 setDimensions(sessionInfo.getWindowWidth(),
296 sessionInfo.getWindowHeight());
297
7b5261bc
KL
298 // Hang onto the window size
299 windowResize = new TResizeEvent(TResizeEvent.Type.SCREEN,
300 sessionInfo.getWindowWidth(), sessionInfo.getWindowHeight());
301
15ea4d73
KL
302 // Permit RGB colors only if externally requested
303 if (System.getProperty("jexer.ECMA48.rgbColor") != null) {
304 if (System.getProperty("jexer.ECMA48.rgbColor").equals("true")) {
305 doRgbColor = true;
3e074355
KL
306 } else {
307 doRgbColor = false;
15ea4d73
KL
308 }
309 }
310
7b5261bc
KL
311 // Spin up the input reader
312 eventQueue = new LinkedList<TInputEvent>();
313 readerThread = new Thread(this);
314 readerThread.start();
42873e30 315
42873e30
KL
316 // Clear the screen
317 this.output.write(clearAll());
318 this.output.flush();
b1589621
KL
319 }
320
6985c572
KL
321 /**
322 * Constructor sets up state for getEvent().
323 *
324 * @param listener the object this backend needs to wake up when new
325 * input comes in
326 * @param input the InputStream underlying 'reader'. Its available()
327 * method is used to determine if reader.read() will block or not.
328 * @param reader a Reader connected to the remote user.
329 * @param writer a PrintWriter connected to the remote user.
330 * @param setRawMode if true, set System.in into raw mode with stty.
331 * This should in general not be used. It is here solely for Demo3,
332 * which uses System.in.
333 * @throws IllegalArgumentException if input, reader, or writer are null.
334 */
335 public ECMA48Terminal(final Object listener, final InputStream input,
336 final Reader reader, final PrintWriter writer,
337 final boolean setRawMode) {
338
339 if (input == null) {
340 throw new IllegalArgumentException("InputStream must be specified");
341 }
342 if (reader == null) {
343 throw new IllegalArgumentException("Reader must be specified");
344 }
345 if (writer == null) {
346 throw new IllegalArgumentException("Writer must be specified");
347 }
42873e30 348 resetParser();
6985c572
KL
349 mouse1 = false;
350 mouse2 = false;
351 mouse3 = false;
352 stopReaderThread = false;
353 this.listener = listener;
354
355 inputStream = input;
356 this.input = reader;
357
358 if (setRawMode == true) {
359 sttyRaw();
360 }
361 this.setRawMode = setRawMode;
362
363 if (input instanceof SessionInfo) {
364 // This is a TelnetInputStream that exposes window size and
365 // environment variables from the telnet layer.
366 sessionInfo = (SessionInfo) input;
367 }
368 if (sessionInfo == null) {
31b7033c
KL
369 if (setRawMode == true) {
370 // Reading right off the tty
371 sessionInfo = new TTYSessionInfo();
372 } else {
373 sessionInfo = new TSessionInfo();
374 }
6985c572
KL
375 }
376
377 this.output = writer;
378
379 // Enable mouse reporting and metaSendsEscape
380 this.output.printf("%s%s", mouse(true), xtermMetaSendsEscape(true));
381 this.output.flush();
382
3e074355
KL
383 // Query the screen size
384 sessionInfo.queryWindowSize();
385 setDimensions(sessionInfo.getWindowWidth(),
386 sessionInfo.getWindowHeight());
387
6985c572
KL
388 // Hang onto the window size
389 windowResize = new TResizeEvent(TResizeEvent.Type.SCREEN,
390 sessionInfo.getWindowWidth(), sessionInfo.getWindowHeight());
391
15ea4d73
KL
392 // Permit RGB colors only if externally requested
393 if (System.getProperty("jexer.ECMA48.rgbColor") != null) {
394 if (System.getProperty("jexer.ECMA48.rgbColor").equals("true")) {
395 doRgbColor = true;
3e074355
KL
396 } else {
397 doRgbColor = false;
15ea4d73
KL
398 }
399 }
400
6985c572
KL
401 // Spin up the input reader
402 eventQueue = new LinkedList<TInputEvent>();
403 readerThread = new Thread(this);
404 readerThread.start();
42873e30 405
42873e30
KL
406 // Clear the screen
407 this.output.write(clearAll());
408 this.output.flush();
6985c572
KL
409 }
410
411 /**
412 * Constructor sets up state for getEvent().
413 *
414 * @param listener the object this backend needs to wake up when new
415 * input comes in
416 * @param input the InputStream underlying 'reader'. Its available()
417 * method is used to determine if reader.read() will block or not.
418 * @param reader a Reader connected to the remote user.
419 * @param writer a PrintWriter connected to the remote user.
420 * @throws IllegalArgumentException if input, reader, or writer are null.
421 */
422 public ECMA48Terminal(final Object listener, final InputStream input,
423 final Reader reader, final PrintWriter writer) {
424
425 this(listener, input, reader, writer, false);
426 }
427
d36057df
KL
428 // ------------------------------------------------------------------------
429 // LogicalScreen ----------------------------------------------------------
430 // ------------------------------------------------------------------------
431
432 /**
433 * Set the window title.
434 *
435 * @param title the new title
436 */
437 @Override
438 public void setTitle(final String title) {
439 output.write(getSetTitleString(title));
440 flush();
441 }
442
443 /**
444 * Push the logical screen to the physical device.
445 */
446 @Override
447 public void flushPhysical() {
448 String result = flushString();
449 if ((cursorVisible)
450 && (cursorY >= 0)
451 && (cursorX >= 0)
452 && (cursorY <= height - 1)
453 && (cursorX <= width - 1)
454 ) {
455 result += cursor(true);
456 result += gotoXY(cursorX, cursorY);
457 } else {
458 result += cursor(false);
459 }
460 output.write(result);
461 flush();
462 }
463
464 // ------------------------------------------------------------------------
465 // TerminalReader ---------------------------------------------------------
466 // ------------------------------------------------------------------------
467
468 /**
469 * Check if there are events in the queue.
470 *
471 * @return if true, getEvents() has something to return to the backend
472 */
473 public boolean hasEvents() {
474 synchronized (eventQueue) {
475 return (eventQueue.size() > 0);
476 }
477 }
478
479 /**
480 * Return any events in the IO queue.
481 *
482 * @param queue list to append new events to
483 */
484 public void getEvents(final List<TInputEvent> queue) {
485 synchronized (eventQueue) {
486 if (eventQueue.size() > 0) {
487 synchronized (queue) {
488 queue.addAll(eventQueue);
489 }
490 eventQueue.clear();
491 }
492 }
493 }
494
b1589621 495 /**
7b5261bc 496 * Restore terminal to normal state.
b1589621 497 */
42873e30 498 public void closeTerminal() {
4328bb42 499
7b5261bc
KL
500 // System.err.println("=== shutdown() ==="); System.err.flush();
501
502 // Tell the reader thread to stop looking at input
503 stopReaderThread = true;
504 try {
505 readerThread.join();
506 } catch (InterruptedException e) {
507 e.printStackTrace();
508 }
509
0525b2ed
KL
510 // Disable mouse reporting and show cursor. Defensive null check
511 // here in case closeTerminal() is called twice.
512 if (output != null) {
513 output.printf("%s%s%s", mouse(false), cursor(true), normal());
514 output.flush();
515 }
7b5261bc
KL
516
517 if (setRawMode) {
518 sttyCooked();
519 setRawMode = false;
520 // We don't close System.in/out
521 } else {
522 // Shut down the streams, this should wake up the reader thread
523 // and make it exit.
524 try {
525 if (input != null) {
526 input.close();
527 input = null;
528 }
529 if (output != null) {
530 output.close();
531 output = null;
532 }
533 } catch (IOException e) {
534 e.printStackTrace();
535 }
536 }
b1589621
KL
537 }
538
d36057df
KL
539 /**
540 * Set listener to a different Object.
541 *
542 * @param listener the new listening object that run() wakes up on new
543 * input
544 */
545 public void setListener(final Object listener) {
546 this.listener = listener;
547 }
548
549 // ------------------------------------------------------------------------
550 // Runnable ---------------------------------------------------------------
551 // ------------------------------------------------------------------------
552
553 /**
554 * Read function runs on a separate thread.
555 */
556 public void run() {
557 boolean done = false;
558 // available() will often return > 1, so we need to read in chunks to
559 // stay caught up.
560 char [] readBuffer = new char[128];
561 List<TInputEvent> events = new LinkedList<TInputEvent>();
562
563 while (!done && !stopReaderThread) {
564 try {
565 // We assume that if inputStream has bytes available, then
566 // input won't block on read().
567 int n = inputStream.available();
568
569 /*
570 System.err.printf("inputStream.available(): %d\n", n);
571 System.err.flush();
572 */
573
574 if (n > 0) {
575 if (readBuffer.length < n) {
576 // The buffer wasn't big enough, make it huger
577 readBuffer = new char[readBuffer.length * 2];
578 }
579
580 // System.err.printf("BEFORE read()\n"); System.err.flush();
581
582 int rc = input.read(readBuffer, 0, readBuffer.length);
583
584 /*
585 System.err.printf("AFTER read() %d\n", rc);
586 System.err.flush();
587 */
588
589 if (rc == -1) {
590 // This is EOF
591 done = true;
592 } else {
593 for (int i = 0; i < rc; i++) {
594 int ch = readBuffer[i];
595 processChar(events, (char)ch);
596 }
597 getIdleEvents(events);
598 if (events.size() > 0) {
599 // Add to the queue for the backend thread to
600 // be able to obtain.
601 synchronized (eventQueue) {
602 eventQueue.addAll(events);
603 }
604 if (listener != null) {
605 synchronized (listener) {
606 listener.notifyAll();
607 }
608 }
609 events.clear();
610 }
611 }
612 } else {
613 getIdleEvents(events);
614 if (events.size() > 0) {
615 synchronized (eventQueue) {
616 eventQueue.addAll(events);
617 }
618 if (listener != null) {
619 synchronized (listener) {
620 listener.notifyAll();
621 }
622 }
623 events.clear();
624 }
625
626 // Wait 20 millis for more data
627 Thread.sleep(20);
628 }
629 // System.err.println("end while loop"); System.err.flush();
630 } catch (InterruptedException e) {
631 // SQUASH
632 } catch (IOException e) {
633 e.printStackTrace();
634 done = true;
635 }
636 } // while ((done == false) && (stopReaderThread == false))
637 // System.err.println("*** run() exiting..."); System.err.flush();
638 }
639
640 // ------------------------------------------------------------------------
641 // ECMA48Terminal ---------------------------------------------------------
642 // ------------------------------------------------------------------------
643
644 /**
645 * Getter for sessionInfo.
646 *
647 * @return the SessionInfo
648 */
649 public SessionInfo getSessionInfo() {
650 return sessionInfo;
651 }
652
653 /**
654 * Get the output writer.
655 *
656 * @return the Writer
657 */
658 public PrintWriter getOutput() {
659 return output;
660 }
661
662 /**
663 * Call 'stty' to set cooked mode.
664 *
665 * <p>Actually executes '/bin/sh -c stty sane cooked &lt; /dev/tty'
666 */
667 private void sttyCooked() {
668 doStty(false);
669 }
670
671 /**
672 * Call 'stty' to set raw mode.
673 *
674 * <p>Actually executes '/bin/sh -c stty -ignbrk -brkint -parmrk -istrip
675 * -inlcr -igncr -icrnl -ixon -opost -echo -echonl -icanon -isig -iexten
676 * -parenb cs8 min 1 &lt; /dev/tty'
677 */
678 private void sttyRaw() {
679 doStty(true);
680 }
681
682 /**
683 * Call 'stty' to set raw or cooked mode.
684 *
685 * @param mode if true, set raw mode, otherwise set cooked mode
686 */
687 private void doStty(final boolean mode) {
688 String [] cmdRaw = {
689 "/bin/sh", "-c", "stty -ignbrk -brkint -parmrk -istrip -inlcr -igncr -icrnl -ixon -opost -echo -echonl -icanon -isig -iexten -parenb cs8 min 1 < /dev/tty"
690 };
691 String [] cmdCooked = {
692 "/bin/sh", "-c", "stty sane cooked < /dev/tty"
693 };
694 try {
695 Process process;
696 if (mode) {
697 process = Runtime.getRuntime().exec(cmdRaw);
698 } else {
699 process = Runtime.getRuntime().exec(cmdCooked);
700 }
701 BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream(), "UTF-8"));
702 String line = in.readLine();
703 if ((line != null) && (line.length() > 0)) {
704 System.err.println("WEIRD?! Normal output from stty: " + line);
705 }
706 while (true) {
707 BufferedReader err = new BufferedReader(new InputStreamReader(process.getErrorStream(), "UTF-8"));
708 line = err.readLine();
709 if ((line != null) && (line.length() > 0)) {
710 System.err.println("Error output from stty: " + line);
711 }
712 try {
713 process.waitFor();
714 break;
715 } catch (InterruptedException e) {
716 e.printStackTrace();
717 }
718 }
719 int rc = process.exitValue();
720 if (rc != 0) {
721 System.err.println("stty returned error code: " + rc);
722 }
723 } catch (IOException e) {
724 e.printStackTrace();
725 }
726 }
727
b1589621 728 /**
7b5261bc 729 * Flush output.
b1589621
KL
730 */
731 public void flush() {
7b5261bc 732 output.flush();
b1589621
KL
733 }
734
42873e30
KL
735 /**
736 * Perform a somewhat-optimal rendering of a line.
737 *
738 * @param y row coordinate. 0 is the top-most row.
739 * @param sb StringBuilder to write escape sequences to
740 * @param lastAttr cell attributes from the last call to flushLine
741 */
742 private void flushLine(final int y, final StringBuilder sb,
743 CellAttributes lastAttr) {
744
745 int lastX = -1;
746 int textEnd = 0;
747 for (int x = 0; x < width; x++) {
748 Cell lCell = logical[x][y];
749 if (!lCell.isBlank()) {
750 textEnd = x;
751 }
752 }
753 // Push textEnd to first column beyond the text area
754 textEnd++;
755
756 // DEBUG
757 // reallyCleared = true;
758
759 for (int x = 0; x < width; x++) {
760 Cell lCell = logical[x][y];
761 Cell pCell = physical[x][y];
762
763 if (!lCell.equals(pCell) || reallyCleared) {
764
765 if (debugToStderr) {
766 System.err.printf("\n--\n");
767 System.err.printf(" Y: %d X: %d\n", y, x);
768 System.err.printf(" lCell: %s\n", lCell);
769 System.err.printf(" pCell: %s\n", pCell);
770 System.err.printf(" ==== \n");
771 }
772
773 if (lastAttr == null) {
774 lastAttr = new CellAttributes();
775 sb.append(normal());
776 }
777
778 // Place the cell
779 if ((lastX != (x - 1)) || (lastX == -1)) {
780 // Advancing at least one cell, or the first gotoXY
781 sb.append(gotoXY(x, y));
782 }
783
784 assert (lastAttr != null);
785
786 if ((x == textEnd) && (textEnd < width - 1)) {
787 assert (lCell.isBlank());
788
789 for (int i = x; i < width; i++) {
790 assert (logical[i][y].isBlank());
791 // Physical is always updated
792 physical[i][y].reset();
793 }
794
795 // Clear remaining line
796 sb.append(clearRemainingLine());
797 lastAttr.reset();
798 return;
799 }
800
801 // Now emit only the modified attributes
802 if ((lCell.getForeColor() != lastAttr.getForeColor())
803 && (lCell.getBackColor() != lastAttr.getBackColor())
051e2913 804 && (!lCell.isRGB())
42873e30
KL
805 && (lCell.isBold() == lastAttr.isBold())
806 && (lCell.isReverse() == lastAttr.isReverse())
807 && (lCell.isUnderline() == lastAttr.isUnderline())
808 && (lCell.isBlink() == lastAttr.isBlink())
809 ) {
810 // Both colors changed, attributes the same
811 sb.append(color(lCell.isBold(),
812 lCell.getForeColor(), lCell.getBackColor()));
813
814 if (debugToStderr) {
815 System.err.printf("1 Change only fore/back colors\n");
816 }
051e2913
KL
817
818 } else if (lCell.isRGB()
819 && (lCell.getForeColorRGB() != lastAttr.getForeColorRGB())
820 && (lCell.getBackColorRGB() != lastAttr.getBackColorRGB())
821 && (lCell.isBold() == lastAttr.isBold())
822 && (lCell.isReverse() == lastAttr.isReverse())
823 && (lCell.isUnderline() == lastAttr.isUnderline())
824 && (lCell.isBlink() == lastAttr.isBlink())
825 ) {
826 // Both colors changed, attributes the same
827 sb.append(colorRGB(lCell.getForeColorRGB(),
828 lCell.getBackColorRGB()));
829
830 if (debugToStderr) {
831 System.err.printf("1 Change only fore/back colors (RGB)\n");
832 }
42873e30
KL
833 } else if ((lCell.getForeColor() != lastAttr.getForeColor())
834 && (lCell.getBackColor() != lastAttr.getBackColor())
051e2913 835 && (!lCell.isRGB())
42873e30
KL
836 && (lCell.isBold() != lastAttr.isBold())
837 && (lCell.isReverse() != lastAttr.isReverse())
838 && (lCell.isUnderline() != lastAttr.isUnderline())
839 && (lCell.isBlink() != lastAttr.isBlink())
840 ) {
841 // Everything is different
842 sb.append(color(lCell.getForeColor(),
843 lCell.getBackColor(),
844 lCell.isBold(), lCell.isReverse(),
845 lCell.isBlink(),
846 lCell.isUnderline()));
847
848 if (debugToStderr) {
849 System.err.printf("2 Set all attributes\n");
850 }
851 } else if ((lCell.getForeColor() != lastAttr.getForeColor())
852 && (lCell.getBackColor() == lastAttr.getBackColor())
051e2913 853 && (!lCell.isRGB())
42873e30
KL
854 && (lCell.isBold() == lastAttr.isBold())
855 && (lCell.isReverse() == lastAttr.isReverse())
856 && (lCell.isUnderline() == lastAttr.isUnderline())
857 && (lCell.isBlink() == lastAttr.isBlink())
858 ) {
859
860 // Attributes same, foreColor different
861 sb.append(color(lCell.isBold(),
862 lCell.getForeColor(), true));
863
864 if (debugToStderr) {
865 System.err.printf("3 Change foreColor\n");
866 }
051e2913
KL
867 } else if (lCell.isRGB()
868 && (lCell.getForeColorRGB() != lastAttr.getForeColorRGB())
869 && (lCell.getBackColorRGB() == lastAttr.getBackColorRGB())
870 && (lCell.getForeColorRGB() >= 0)
871 && (lCell.getBackColorRGB() >= 0)
872 && (lCell.isBold() == lastAttr.isBold())
873 && (lCell.isReverse() == lastAttr.isReverse())
874 && (lCell.isUnderline() == lastAttr.isUnderline())
875 && (lCell.isBlink() == lastAttr.isBlink())
876 ) {
877 // Attributes same, foreColor different
878 sb.append(colorRGB(lCell.getForeColorRGB(), true));
879
880 if (debugToStderr) {
881 System.err.printf("3 Change foreColor (RGB)\n");
882 }
42873e30
KL
883 } else if ((lCell.getForeColor() == lastAttr.getForeColor())
884 && (lCell.getBackColor() != lastAttr.getBackColor())
051e2913 885 && (!lCell.isRGB())
42873e30
KL
886 && (lCell.isBold() == lastAttr.isBold())
887 && (lCell.isReverse() == lastAttr.isReverse())
888 && (lCell.isUnderline() == lastAttr.isUnderline())
889 && (lCell.isBlink() == lastAttr.isBlink())
890 ) {
891 // Attributes same, backColor different
892 sb.append(color(lCell.isBold(),
893 lCell.getBackColor(), false));
894
895 if (debugToStderr) {
896 System.err.printf("4 Change backColor\n");
897 }
051e2913
KL
898 } else if (lCell.isRGB()
899 && (lCell.getForeColorRGB() == lastAttr.getForeColorRGB())
900 && (lCell.getBackColorRGB() != lastAttr.getBackColorRGB())
901 && (lCell.isBold() == lastAttr.isBold())
902 && (lCell.isReverse() == lastAttr.isReverse())
903 && (lCell.isUnderline() == lastAttr.isUnderline())
904 && (lCell.isBlink() == lastAttr.isBlink())
905 ) {
906 // Attributes same, foreColor different
907 sb.append(colorRGB(lCell.getBackColorRGB(), false));
908
909 if (debugToStderr) {
910 System.err.printf("4 Change backColor (RGB)\n");
911 }
42873e30
KL
912 } else if ((lCell.getForeColor() == lastAttr.getForeColor())
913 && (lCell.getBackColor() == lastAttr.getBackColor())
051e2913
KL
914 && (lCell.getForeColorRGB() == lastAttr.getForeColorRGB())
915 && (lCell.getBackColorRGB() == lastAttr.getBackColorRGB())
42873e30
KL
916 && (lCell.isBold() == lastAttr.isBold())
917 && (lCell.isReverse() == lastAttr.isReverse())
918 && (lCell.isUnderline() == lastAttr.isUnderline())
919 && (lCell.isBlink() == lastAttr.isBlink())
920 ) {
921
922 // All attributes the same, just print the char
923 // NOP
924
925 if (debugToStderr) {
926 System.err.printf("5 Only emit character\n");
927 }
928 } else {
929 // Just reset everything again
051e2913
KL
930 if (!lCell.isRGB()) {
931 sb.append(color(lCell.getForeColor(),
932 lCell.getBackColor(),
933 lCell.isBold(),
934 lCell.isReverse(),
935 lCell.isBlink(),
936 lCell.isUnderline()));
937
938 if (debugToStderr) {
939 System.err.printf("6 Change all attributes\n");
940 }
941 } else {
942 sb.append(colorRGB(lCell.getForeColorRGB(),
943 lCell.getBackColorRGB(),
944 lCell.isBold(),
945 lCell.isReverse(),
946 lCell.isBlink(),
947 lCell.isUnderline()));
948 if (debugToStderr) {
949 System.err.printf("6 Change all attributes (RGB)\n");
950 }
42873e30 951 }
051e2913 952
42873e30
KL
953 }
954 // Emit the character
955 sb.append(lCell.getChar());
956
957 // Save the last rendered cell
958 lastX = x;
959 lastAttr.setTo(lCell);
960
961 // Physical is always updated
962 physical[x][y].setTo(lCell);
963
964 } // if (!lCell.equals(pCell) || (reallyCleared == true))
965
966 } // for (int x = 0; x < width; x++)
967 }
968
969 /**
970 * Render the screen to a string that can be emitted to something that
971 * knows how to process ECMA-48/ANSI X3.64 escape sequences.
972 *
973 * @return escape sequences string that provides the updates to the
974 * physical screen
975 */
976 private String flushString() {
42873e30
KL
977 CellAttributes attr = null;
978
979 StringBuilder sb = new StringBuilder();
980 if (reallyCleared) {
981 attr = new CellAttributes();
982 sb.append(clearAll());
983 }
984
985 for (int y = 0; y < height; y++) {
986 flushLine(y, sb, attr);
987 }
988
42873e30
KL
989 reallyCleared = false;
990
991 String result = sb.toString();
992 if (debugToStderr) {
993 System.err.printf("flushString(): %s\n", result);
994 }
995 return result;
996 }
997
b1589621 998 /**
7b5261bc 999 * Reset keyboard/mouse input parser.
b1589621 1000 */
42873e30 1001 private void resetParser() {
7b5261bc
KL
1002 state = ParseState.GROUND;
1003 params = new ArrayList<String>();
7b5261bc
KL
1004 params.clear();
1005 params.add("");
b1589621
KL
1006 }
1007
1008 /**
1009 * Produce a control character or one of the special ones (ENTER, TAB,
7b5261bc 1010 * etc.).
b1589621
KL
1011 *
1012 * @param ch Unicode code point
b299e69c 1013 * @param alt if true, set alt on the TKeypress
7b5261bc 1014 * @return one TKeypress event, either a control character (e.g. isKey ==
b1589621
KL
1015 * false, ch == 'A', ctrl == true), or a special key (e.g. isKey == true,
1016 * fnKey == ESC)
1017 */
b299e69c 1018 private TKeypressEvent controlChar(final char ch, final boolean alt) {
7b5261bc
KL
1019 // System.err.printf("controlChar: %02x\n", ch);
1020
1021 switch (ch) {
1022 case 0x0D:
1023 // Carriage return --> ENTER
b299e69c 1024 return new TKeypressEvent(kbEnter, alt, false, false);
7b5261bc
KL
1025 case 0x0A:
1026 // Linefeed --> ENTER
b299e69c 1027 return new TKeypressEvent(kbEnter, alt, false, false);
7b5261bc
KL
1028 case 0x1B:
1029 // ESC
b299e69c 1030 return new TKeypressEvent(kbEsc, alt, false, false);
7b5261bc
KL
1031 case '\t':
1032 // TAB
b299e69c 1033 return new TKeypressEvent(kbTab, alt, false, false);
7b5261bc
KL
1034 default:
1035 // Make all other control characters come back as the alphabetic
1036 // character with the ctrl field set. So SOH would be 'A' +
1037 // ctrl.
b299e69c
KL
1038 return new TKeypressEvent(false, 0, (char)(ch + 0x40),
1039 alt, true, false);
7b5261bc 1040 }
b1589621
KL
1041 }
1042
1043 /**
1044 * Produce special key from CSI Pn ; Pm ; ... ~
1045 *
1046 * @return one KEYPRESS event representing a special key
1047 */
1048 private TInputEvent csiFnKey() {
7b5261bc 1049 int key = 0;
7b5261bc
KL
1050 if (params.size() > 0) {
1051 key = Integer.parseInt(params.get(0));
1052 }
b299e69c
KL
1053 boolean alt = false;
1054 boolean ctrl = false;
1055 boolean shift = false;
32437017
KL
1056 if (params.size() > 1) {
1057 shift = csiIsShift(params.get(1));
1058 alt = csiIsAlt(params.get(1));
1059 ctrl = csiIsCtrl(params.get(1));
b299e69c 1060 }
d4a29741 1061
b299e69c
KL
1062 switch (key) {
1063 case 1:
1064 return new TKeypressEvent(kbHome, alt, ctrl, shift);
1065 case 2:
1066 return new TKeypressEvent(kbIns, alt, ctrl, shift);
1067 case 3:
1068 return new TKeypressEvent(kbDel, alt, ctrl, shift);
1069 case 4:
1070 return new TKeypressEvent(kbEnd, alt, ctrl, shift);
1071 case 5:
1072 return new TKeypressEvent(kbPgUp, alt, ctrl, shift);
1073 case 6:
1074 return new TKeypressEvent(kbPgDn, alt, ctrl, shift);
1075 case 15:
1076 return new TKeypressEvent(kbF5, alt, ctrl, shift);
1077 case 17:
1078 return new TKeypressEvent(kbF6, alt, ctrl, shift);
1079 case 18:
1080 return new TKeypressEvent(kbF7, alt, ctrl, shift);
1081 case 19:
1082 return new TKeypressEvent(kbF8, alt, ctrl, shift);
1083 case 20:
1084 return new TKeypressEvent(kbF9, alt, ctrl, shift);
1085 case 21:
1086 return new TKeypressEvent(kbF10, alt, ctrl, shift);
1087 case 23:
1088 return new TKeypressEvent(kbF11, alt, ctrl, shift);
1089 case 24:
1090 return new TKeypressEvent(kbF12, alt, ctrl, shift);
7b5261bc
KL
1091 default:
1092 // Unknown
1093 return null;
1094 }
b1589621
KL
1095 }
1096
1097 /**
1098 * Produce mouse events based on "Any event tracking" and UTF-8
1099 * coordinates. See
1100 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Mouse%20Tracking
1101 *
1102 * @return a MOUSE_MOTION, MOUSE_UP, or MOUSE_DOWN event
1103 */
1104 private TInputEvent parseMouse() {
7b5261bc
KL
1105 int buttons = params.get(0).charAt(0) - 32;
1106 int x = params.get(0).charAt(1) - 32 - 1;
1107 int y = params.get(0).charAt(2) - 32 - 1;
1108
1109 // Clamp X and Y to the physical screen coordinates.
1110 if (x >= windowResize.getWidth()) {
1111 x = windowResize.getWidth() - 1;
1112 }
1113 if (y >= windowResize.getHeight()) {
1114 y = windowResize.getHeight() - 1;
1115 }
1116
d4a29741
KL
1117 TMouseEvent.Type eventType = TMouseEvent.Type.MOUSE_DOWN;
1118 boolean eventMouse1 = false;
1119 boolean eventMouse2 = false;
1120 boolean eventMouse3 = false;
1121 boolean eventMouseWheelUp = false;
1122 boolean eventMouseWheelDown = false;
7b5261bc
KL
1123
1124 // System.err.printf("buttons: %04x\r\n", buttons);
1125
1126 switch (buttons) {
1127 case 0:
d4a29741 1128 eventMouse1 = true;
7b5261bc
KL
1129 mouse1 = true;
1130 break;
1131 case 1:
d4a29741 1132 eventMouse2 = true;
7b5261bc
KL
1133 mouse2 = true;
1134 break;
1135 case 2:
d4a29741 1136 eventMouse3 = true;
7b5261bc
KL
1137 mouse3 = true;
1138 break;
1139 case 3:
1140 // Release or Move
1141 if (!mouse1 && !mouse2 && !mouse3) {
d4a29741 1142 eventType = TMouseEvent.Type.MOUSE_MOTION;
7b5261bc 1143 } else {
d4a29741 1144 eventType = TMouseEvent.Type.MOUSE_UP;
7b5261bc
KL
1145 }
1146 if (mouse1) {
1147 mouse1 = false;
d4a29741 1148 eventMouse1 = true;
7b5261bc
KL
1149 }
1150 if (mouse2) {
1151 mouse2 = false;
d4a29741 1152 eventMouse2 = true;
7b5261bc
KL
1153 }
1154 if (mouse3) {
1155 mouse3 = false;
d4a29741 1156 eventMouse3 = true;
7b5261bc
KL
1157 }
1158 break;
1159
1160 case 32:
1161 // Dragging with mouse1 down
d4a29741 1162 eventMouse1 = true;
7b5261bc 1163 mouse1 = true;
d4a29741 1164 eventType = TMouseEvent.Type.MOUSE_MOTION;
7b5261bc
KL
1165 break;
1166
1167 case 33:
1168 // Dragging with mouse2 down
d4a29741 1169 eventMouse2 = true;
7b5261bc 1170 mouse2 = true;
d4a29741 1171 eventType = TMouseEvent.Type.MOUSE_MOTION;
7b5261bc
KL
1172 break;
1173
1174 case 34:
1175 // Dragging with mouse3 down
d4a29741 1176 eventMouse3 = true;
7b5261bc 1177 mouse3 = true;
d4a29741 1178 eventType = TMouseEvent.Type.MOUSE_MOTION;
7b5261bc
KL
1179 break;
1180
1181 case 96:
1182 // Dragging with mouse2 down after wheelUp
d4a29741 1183 eventMouse2 = true;
7b5261bc 1184 mouse2 = true;
d4a29741 1185 eventType = TMouseEvent.Type.MOUSE_MOTION;
7b5261bc
KL
1186 break;
1187
1188 case 97:
1189 // Dragging with mouse2 down after wheelDown
d4a29741 1190 eventMouse2 = true;
7b5261bc 1191 mouse2 = true;
d4a29741 1192 eventType = TMouseEvent.Type.MOUSE_MOTION;
7b5261bc
KL
1193 break;
1194
1195 case 64:
d4a29741 1196 eventMouseWheelUp = true;
7b5261bc
KL
1197 break;
1198
1199 case 65:
d4a29741 1200 eventMouseWheelDown = true;
7b5261bc
KL
1201 break;
1202
1203 default:
1204 // Unknown, just make it motion
d4a29741 1205 eventType = TMouseEvent.Type.MOUSE_MOTION;
7b5261bc
KL
1206 break;
1207 }
d4a29741
KL
1208 return new TMouseEvent(eventType, x, y, x, y,
1209 eventMouse1, eventMouse2, eventMouse3,
1210 eventMouseWheelUp, eventMouseWheelDown);
b1589621
KL
1211 }
1212
b5f2a6db
KL
1213 /**
1214 * Produce mouse events based on "Any event tracking" and SGR
1215 * coordinates. See
1216 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Mouse%20Tracking
1217 *
1218 * @param release if true, this was a release ('m')
1219 * @return a MOUSE_MOTION, MOUSE_UP, or MOUSE_DOWN event
1220 */
1221 private TInputEvent parseMouseSGR(final boolean release) {
1222 // SGR extended coordinates - mode 1006
1223 if (params.size() < 3) {
1224 // Invalid position, bail out.
1225 return null;
1226 }
1227 int buttons = Integer.parseInt(params.get(0));
1228 int x = Integer.parseInt(params.get(1)) - 1;
1229 int y = Integer.parseInt(params.get(2)) - 1;
1230
1231 // Clamp X and Y to the physical screen coordinates.
1232 if (x >= windowResize.getWidth()) {
1233 x = windowResize.getWidth() - 1;
1234 }
1235 if (y >= windowResize.getHeight()) {
1236 y = windowResize.getHeight() - 1;
1237 }
1238
1239 TMouseEvent.Type eventType = TMouseEvent.Type.MOUSE_DOWN;
1240 boolean eventMouse1 = false;
1241 boolean eventMouse2 = false;
1242 boolean eventMouse3 = false;
1243 boolean eventMouseWheelUp = false;
1244 boolean eventMouseWheelDown = false;
1245
1246 if (release) {
1247 eventType = TMouseEvent.Type.MOUSE_UP;
1248 }
1249
1250 switch (buttons) {
1251 case 0:
1252 eventMouse1 = true;
1253 break;
1254 case 1:
1255 eventMouse2 = true;
1256 break;
1257 case 2:
1258 eventMouse3 = true;
1259 break;
1260 case 35:
1261 // Motion only, no buttons down
1262 eventType = TMouseEvent.Type.MOUSE_MOTION;
1263 break;
1264
1265 case 32:
1266 // Dragging with mouse1 down
1267 eventMouse1 = true;
1268 eventType = TMouseEvent.Type.MOUSE_MOTION;
1269 break;
1270
1271 case 33:
1272 // Dragging with mouse2 down
1273 eventMouse2 = true;
1274 eventType = TMouseEvent.Type.MOUSE_MOTION;
1275 break;
1276
1277 case 34:
1278 // Dragging with mouse3 down
1279 eventMouse3 = true;
1280 eventType = TMouseEvent.Type.MOUSE_MOTION;
1281 break;
1282
1283 case 96:
1284 // Dragging with mouse2 down after wheelUp
1285 eventMouse2 = true;
1286 eventType = TMouseEvent.Type.MOUSE_MOTION;
1287 break;
1288
1289 case 97:
1290 // Dragging with mouse2 down after wheelDown
1291 eventMouse2 = true;
1292 eventType = TMouseEvent.Type.MOUSE_MOTION;
1293 break;
1294
1295 case 64:
1296 eventMouseWheelUp = true;
1297 break;
1298
1299 case 65:
1300 eventMouseWheelDown = true;
1301 break;
1302
1303 default:
1304 // Unknown, bail out
1305 return null;
1306 }
1307 return new TMouseEvent(eventType, x, y, x, y,
1308 eventMouse1, eventMouse2, eventMouse3,
1309 eventMouseWheelUp, eventMouseWheelDown);
1310 }
1311
05dbb28d 1312 /**
623a1bd1 1313 * Return any events in the IO queue due to timeout.
b1589621 1314 *
623a1bd1 1315 * @param queue list to append new events to
b1589621 1316 */
a83fea2b 1317 private void getIdleEvents(final List<TInputEvent> queue) {
be72cb5c 1318 long nowTime = System.currentTimeMillis();
7b5261bc
KL
1319
1320 // Check for new window size
be72cb5c 1321 long windowSizeDelay = nowTime - windowSizeTime;
a83fea2b
KL
1322 if (windowSizeDelay > 1000) {
1323 sessionInfo.queryWindowSize();
1324 int newWidth = sessionInfo.getWindowWidth();
1325 int newHeight = sessionInfo.getWindowHeight();
85c07c5e 1326
a83fea2b
KL
1327 if ((newWidth != windowResize.getWidth())
1328 || (newHeight != windowResize.getHeight())
1329 ) {
85c07c5e
KL
1330
1331 if (debugToStderr) {
1332 System.err.println("Screen size changed, old size " +
1333 windowResize);
1334 System.err.println(" new size " +
1335 newWidth + " x " + newHeight);
1336 }
1337
a83fea2b
KL
1338 TResizeEvent event = new TResizeEvent(TResizeEvent.Type.SCREEN,
1339 newWidth, newHeight);
1340 windowResize = new TResizeEvent(TResizeEvent.Type.SCREEN,
1341 newWidth, newHeight);
1342 queue.add(event);
7b5261bc 1343 }
be72cb5c 1344 windowSizeTime = nowTime;
7b5261bc
KL
1345 }
1346
a83fea2b
KL
1347 // ESCDELAY type timeout
1348 if (state == ParseState.ESCAPE) {
be72cb5c 1349 long escDelay = nowTime - escapeTime;
a83fea2b
KL
1350 if (escDelay > 100) {
1351 // After 0.1 seconds, assume a true escape character
1352 queue.add(controlChar((char)0x1B, false));
42873e30 1353 resetParser();
7b5261bc
KL
1354 }
1355 }
b1589621
KL
1356 }
1357
32437017
KL
1358 /**
1359 * Returns true if the CSI parameter for a keyboard command means that
1360 * shift was down.
1361 */
1362 private boolean csiIsShift(final String x) {
1363 if ((x.equals("2"))
1364 || (x.equals("4"))
1365 || (x.equals("6"))
1366 || (x.equals("8"))
1367 ) {
1368 return true;
1369 }
1370 return false;
1371 }
1372
1373 /**
1374 * Returns true if the CSI parameter for a keyboard command means that
1375 * alt was down.
1376 */
1377 private boolean csiIsAlt(final String x) {
1378 if ((x.equals("3"))
1379 || (x.equals("4"))
1380 || (x.equals("7"))
1381 || (x.equals("8"))
1382 ) {
1383 return true;
1384 }
1385 return false;
1386 }
1387
1388 /**
1389 * Returns true if the CSI parameter for a keyboard command means that
1390 * ctrl was down.
1391 */
1392 private boolean csiIsCtrl(final String x) {
1393 if ((x.equals("5"))
1394 || (x.equals("6"))
1395 || (x.equals("7"))
1396 || (x.equals("8"))
1397 ) {
1398 return true;
1399 }
1400 return false;
1401 }
1402
b1589621
KL
1403 /**
1404 * Parses the next character of input to see if an InputEvent is
1405 * fully here.
1406 *
623a1bd1 1407 * @param events list to append new events to
05dbb28d 1408 * @param ch Unicode code point
b1589621 1409 */
7b5261bc
KL
1410 private void processChar(final List<TInputEvent> events, final char ch) {
1411
7b5261bc 1412 // ESCDELAY type timeout
be72cb5c 1413 long nowTime = System.currentTimeMillis();
7b5261bc 1414 if (state == ParseState.ESCAPE) {
be72cb5c 1415 long escDelay = nowTime - escapeTime;
7b5261bc
KL
1416 if (escDelay > 250) {
1417 // After 0.25 seconds, assume a true escape character
b299e69c 1418 events.add(controlChar((char)0x1B, false));
42873e30 1419 resetParser();
7b5261bc
KL
1420 }
1421 }
1422
b299e69c
KL
1423 // TKeypress fields
1424 boolean ctrl = false;
1425 boolean alt = false;
1426 boolean shift = false;
b299e69c 1427
7b5261bc
KL
1428 // System.err.printf("state: %s ch %c\r\n", state, ch);
1429
1430 switch (state) {
1431 case GROUND:
1432
1433 if (ch == 0x1B) {
1434 state = ParseState.ESCAPE;
be72cb5c 1435 escapeTime = nowTime;
7b5261bc
KL
1436 return;
1437 }
1438
1439 if (ch <= 0x1F) {
1440 // Control character
b299e69c 1441 events.add(controlChar(ch, false));
42873e30 1442 resetParser();
7b5261bc
KL
1443 return;
1444 }
1445
1446 if (ch >= 0x20) {
1447 // Normal character
b299e69c
KL
1448 events.add(new TKeypressEvent(false, 0, ch,
1449 false, false, false));
42873e30 1450 resetParser();
7b5261bc
KL
1451 return;
1452 }
1453
1454 break;
1455
1456 case ESCAPE:
1457 if (ch <= 0x1F) {
1458 // ALT-Control character
b299e69c 1459 events.add(controlChar(ch, true));
42873e30 1460 resetParser();
7b5261bc
KL
1461 return;
1462 }
1463
1464 if (ch == 'O') {
1465 // This will be one of the function keys
1466 state = ParseState.ESCAPE_INTERMEDIATE;
1467 return;
1468 }
1469
1470 // '[' goes to CSI_ENTRY
1471 if (ch == '[') {
1472 state = ParseState.CSI_ENTRY;
1473 return;
1474 }
1475
1476 // Everything else is assumed to be Alt-keystroke
7b5261bc 1477 if ((ch >= 'A') && (ch <= 'Z')) {
b299e69c 1478 shift = true;
7b5261bc 1479 }
b299e69c
KL
1480 alt = true;
1481 events.add(new TKeypressEvent(false, 0, ch, alt, ctrl, shift));
42873e30 1482 resetParser();
7b5261bc
KL
1483 return;
1484
1485 case ESCAPE_INTERMEDIATE:
1486 if ((ch >= 'P') && (ch <= 'S')) {
1487 // Function key
7b5261bc
KL
1488 switch (ch) {
1489 case 'P':
b299e69c 1490 events.add(new TKeypressEvent(kbF1));
7b5261bc
KL
1491 break;
1492 case 'Q':
b299e69c 1493 events.add(new TKeypressEvent(kbF2));
7b5261bc
KL
1494 break;
1495 case 'R':
b299e69c 1496 events.add(new TKeypressEvent(kbF3));
7b5261bc
KL
1497 break;
1498 case 'S':
b299e69c 1499 events.add(new TKeypressEvent(kbF4));
7b5261bc
KL
1500 break;
1501 default:
1502 break;
1503 }
42873e30 1504 resetParser();
7b5261bc
KL
1505 return;
1506 }
1507
1508 // Unknown keystroke, ignore
42873e30 1509 resetParser();
7b5261bc
KL
1510 return;
1511
1512 case CSI_ENTRY:
1513 // Numbers - parameter values
1514 if ((ch >= '0') && (ch <= '9')) {
92554d64
KL
1515 params.set(params.size() - 1,
1516 params.get(params.size() - 1) + ch);
7b5261bc
KL
1517 state = ParseState.CSI_PARAM;
1518 return;
1519 }
1520 // Parameter separator
1521 if (ch == ';') {
a83fea2b 1522 params.add("");
7b5261bc
KL
1523 return;
1524 }
1525
1526 if ((ch >= 0x30) && (ch <= 0x7E)) {
1527 switch (ch) {
1528 case 'A':
1529 // Up
b299e69c 1530 events.add(new TKeypressEvent(kbUp, alt, ctrl, shift));
42873e30 1531 resetParser();
7b5261bc
KL
1532 return;
1533 case 'B':
1534 // Down
b299e69c 1535 events.add(new TKeypressEvent(kbDown, alt, ctrl, shift));
42873e30 1536 resetParser();
7b5261bc
KL
1537 return;
1538 case 'C':
1539 // Right
b299e69c 1540 events.add(new TKeypressEvent(kbRight, alt, ctrl, shift));
42873e30 1541 resetParser();
7b5261bc
KL
1542 return;
1543 case 'D':
1544 // Left
b299e69c 1545 events.add(new TKeypressEvent(kbLeft, alt, ctrl, shift));
42873e30 1546 resetParser();
7b5261bc
KL
1547 return;
1548 case 'H':
1549 // Home
b299e69c 1550 events.add(new TKeypressEvent(kbHome));
42873e30 1551 resetParser();
7b5261bc
KL
1552 return;
1553 case 'F':
1554 // End
b299e69c 1555 events.add(new TKeypressEvent(kbEnd));
42873e30 1556 resetParser();
7b5261bc
KL
1557 return;
1558 case 'Z':
1559 // CBT - Cursor backward X tab stops (default 1)
b299e69c 1560 events.add(new TKeypressEvent(kbBackTab));
42873e30 1561 resetParser();
7b5261bc
KL
1562 return;
1563 case 'M':
1564 // Mouse position
1565 state = ParseState.MOUSE;
1566 return;
b5f2a6db
KL
1567 case '<':
1568 // Mouse position, SGR (1006) coordinates
1569 state = ParseState.MOUSE_SGR;
1570 return;
7b5261bc
KL
1571 default:
1572 break;
1573 }
1574 }
1575
1576 // Unknown keystroke, ignore
42873e30 1577 resetParser();
7b5261bc
KL
1578 return;
1579
b5f2a6db
KL
1580 case MOUSE_SGR:
1581 // Numbers - parameter values
1582 if ((ch >= '0') && (ch <= '9')) {
1583 params.set(params.size() - 1,
1584 params.get(params.size() - 1) + ch);
1585 return;
1586 }
1587 // Parameter separator
1588 if (ch == ';') {
1589 params.add("");
1590 return;
1591 }
1592
1593 switch (ch) {
1594 case 'M':
1595 // Generate a mouse press event
1596 TInputEvent event = parseMouseSGR(false);
1597 if (event != null) {
1598 events.add(event);
1599 }
42873e30 1600 resetParser();
b5f2a6db
KL
1601 return;
1602 case 'm':
1603 // Generate a mouse release event
1604 event = parseMouseSGR(true);
1605 if (event != null) {
1606 events.add(event);
1607 }
42873e30 1608 resetParser();
b5f2a6db
KL
1609 return;
1610 default:
1611 break;
1612 }
1613
1614 // Unknown keystroke, ignore
42873e30 1615 resetParser();
b5f2a6db
KL
1616 return;
1617
7b5261bc
KL
1618 case CSI_PARAM:
1619 // Numbers - parameter values
1620 if ((ch >= '0') && (ch <= '9')) {
92554d64
KL
1621 params.set(params.size() - 1,
1622 params.get(params.size() - 1) + ch);
7b5261bc
KL
1623 state = ParseState.CSI_PARAM;
1624 return;
1625 }
1626 // Parameter separator
1627 if (ch == ';') {
92554d64 1628 params.add("");
7b5261bc
KL
1629 return;
1630 }
1631
1632 if (ch == '~') {
1633 events.add(csiFnKey());
42873e30 1634 resetParser();
7b5261bc
KL
1635 return;
1636 }
1637
1638 if ((ch >= 0x30) && (ch <= 0x7E)) {
1639 switch (ch) {
1640 case 'A':
1641 // Up
7b5261bc 1642 if (params.size() > 1) {
32437017
KL
1643 shift = csiIsShift(params.get(1));
1644 alt = csiIsAlt(params.get(1));
1645 ctrl = csiIsCtrl(params.get(1));
7b5261bc 1646 }
b299e69c 1647 events.add(new TKeypressEvent(kbUp, alt, ctrl, shift));
42873e30 1648 resetParser();
7b5261bc
KL
1649 return;
1650 case 'B':
1651 // Down
7b5261bc 1652 if (params.size() > 1) {
32437017
KL
1653 shift = csiIsShift(params.get(1));
1654 alt = csiIsAlt(params.get(1));
1655 ctrl = csiIsCtrl(params.get(1));
7b5261bc 1656 }
b299e69c 1657 events.add(new TKeypressEvent(kbDown, alt, ctrl, shift));
42873e30 1658 resetParser();
7b5261bc
KL
1659 return;
1660 case 'C':
1661 // Right
7b5261bc 1662 if (params.size() > 1) {
32437017
KL
1663 shift = csiIsShift(params.get(1));
1664 alt = csiIsAlt(params.get(1));
1665 ctrl = csiIsCtrl(params.get(1));
7b5261bc 1666 }
b299e69c 1667 events.add(new TKeypressEvent(kbRight, alt, ctrl, shift));
42873e30 1668 resetParser();
7b5261bc
KL
1669 return;
1670 case 'D':
1671 // Left
7b5261bc 1672 if (params.size() > 1) {
32437017
KL
1673 shift = csiIsShift(params.get(1));
1674 alt = csiIsAlt(params.get(1));
1675 ctrl = csiIsCtrl(params.get(1));
7b5261bc 1676 }
b299e69c 1677 events.add(new TKeypressEvent(kbLeft, alt, ctrl, shift));
42873e30 1678 resetParser();
7b5261bc 1679 return;
32437017
KL
1680 case 'H':
1681 // Home
1682 if (params.size() > 1) {
1683 shift = csiIsShift(params.get(1));
1684 alt = csiIsAlt(params.get(1));
1685 ctrl = csiIsCtrl(params.get(1));
1686 }
1687 events.add(new TKeypressEvent(kbHome, alt, ctrl, shift));
42873e30 1688 resetParser();
32437017
KL
1689 return;
1690 case 'F':
1691 // End
1692 if (params.size() > 1) {
1693 shift = csiIsShift(params.get(1));
1694 alt = csiIsAlt(params.get(1));
1695 ctrl = csiIsCtrl(params.get(1));
1696 }
1697 events.add(new TKeypressEvent(kbEnd, alt, ctrl, shift));
42873e30 1698 resetParser();
32437017 1699 return;
7b5261bc
KL
1700 default:
1701 break;
1702 }
1703 }
1704
1705 // Unknown keystroke, ignore
42873e30 1706 resetParser();
7b5261bc
KL
1707 return;
1708
1709 case MOUSE:
92554d64 1710 params.set(0, params.get(params.size() - 1) + ch);
7b5261bc
KL
1711 if (params.get(0).length() == 3) {
1712 // We have enough to generate a mouse event
1713 events.add(parseMouse());
42873e30 1714 resetParser();
7b5261bc
KL
1715 }
1716 return;
1717
1718 default:
1719 break;
1720 }
1721
1722 // This "should" be impossible to reach
1723 return;
b1589621
KL
1724 }
1725
1726 /**
05dbb28d
KL
1727 * Tell (u)xterm that we want alt- keystrokes to send escape + character
1728 * rather than set the 8th bit. Anyone who wants UTF8 should want this
1729 * enabled.
b1589621 1730 *
05dbb28d
KL
1731 * @param on if true, enable metaSendsEscape
1732 * @return the string to emit to xterm
b1589621 1733 */
b5f2a6db 1734 private String xtermMetaSendsEscape(final boolean on) {
7b5261bc
KL
1735 if (on) {
1736 return "\033[?1036h\033[?1034l";
1737 }
1738 return "\033[?1036l";
b1589621
KL
1739 }
1740
55d2b2c2 1741 /**
42873e30 1742 * Create an xterm OSC sequence to change the window title.
55d2b2c2
KL
1743 *
1744 * @param title the new title
1745 * @return the string to emit to xterm
1746 */
42873e30 1747 private String getSetTitleString(final String title) {
55d2b2c2
KL
1748 return "\033]2;" + title + "\007";
1749 }
1750
b1589621 1751 /**
42873e30 1752 * Create a SGR parameter sequence for a single color change.
b1589621 1753 *
15ea4d73 1754 * @param bold if true, set bold
05dbb28d
KL
1755 * @param color one of the Color.WHITE, Color.BLUE, etc. constants
1756 * @param foreground if true, this is a foreground color
1757 * @return the string to emit to an ANSI / ECMA-style terminal,
1758 * e.g. "\033[42m"
b1589621 1759 */
42873e30 1760 private String color(final boolean bold, final Color color,
15ea4d73
KL
1761 final boolean foreground) {
1762 return color(color, foreground, true) +
1763 rgbColor(bold, color, foreground);
1764 }
1765
051e2913
KL
1766 /**
1767 * Create a T.416 RGB parameter sequence for a single color change.
1768 *
1769 * @param colorRGB a 24-bit RGB value for foreground color
1770 * @param foreground if true, this is a foreground color
1771 * @return the string to emit to an ANSI / ECMA-style terminal,
1772 * e.g. "\033[42m"
1773 */
1774 private String colorRGB(final int colorRGB, final boolean foreground) {
1775
1776 int colorRed = (colorRGB >> 16) & 0xFF;
1777 int colorGreen = (colorRGB >> 8) & 0xFF;
1778 int colorBlue = colorRGB & 0xFF;
1779
1780 StringBuilder sb = new StringBuilder();
1781 if (foreground) {
1782 sb.append("\033[38;2;");
1783 } else {
1784 sb.append("\033[48;2;");
1785 }
1786 sb.append(String.format("%d;%d;%dm", colorRed, colorGreen, colorBlue));
1787 return sb.toString();
1788 }
1789
1790 /**
1791 * Create a T.416 RGB parameter sequence for both foreground and
1792 * background color change.
1793 *
1794 * @param foreColorRGB a 24-bit RGB value for foreground color
1795 * @param backColorRGB a 24-bit RGB value for foreground color
1796 * @return the string to emit to an ANSI / ECMA-style terminal,
1797 * e.g. "\033[42m"
1798 */
1799 private String colorRGB(final int foreColorRGB, final int backColorRGB) {
1800 int foreColorRed = (foreColorRGB >> 16) & 0xFF;
1801 int foreColorGreen = (foreColorRGB >> 8) & 0xFF;
1802 int foreColorBlue = foreColorRGB & 0xFF;
1803 int backColorRed = (backColorRGB >> 16) & 0xFF;
1804 int backColorGreen = (backColorRGB >> 8) & 0xFF;
1805 int backColorBlue = backColorRGB & 0xFF;
1806
1807 StringBuilder sb = new StringBuilder();
1808 sb.append(String.format("\033[38;2;%d;%d;%dm",
1809 foreColorRed, foreColorGreen, foreColorBlue));
1810 sb.append(String.format("\033[48;2;%d;%d;%dm",
1811 backColorRed, backColorGreen, backColorBlue));
1812 return sb.toString();
1813 }
1814
15ea4d73
KL
1815 /**
1816 * Create a T.416 RGB parameter sequence for a single color change.
1817 *
1818 * @param bold if true, set bold
1819 * @param color one of the Color.WHITE, Color.BLUE, etc. constants
1820 * @param foreground if true, this is a foreground color
1821 * @return the string to emit to an xterm terminal with RGB support,
1822 * e.g. "\033[38;2;RR;GG;BBm"
1823 */
1824 private String rgbColor(final boolean bold, final Color color,
1825 final boolean foreground) {
1826 if (doRgbColor == false) {
1827 return "";
1828 }
1829 StringBuilder sb = new StringBuilder("\033[");
1830 if (bold) {
1831 // Bold implies foreground only
1832 sb.append("38;2;");
1833 if (color.equals(Color.BLACK)) {
6ba187ac 1834 sb.append("84;84;84");
15ea4d73 1835 } else if (color.equals(Color.RED)) {
6ba187ac 1836 sb.append("252;84;84");
15ea4d73 1837 } else if (color.equals(Color.GREEN)) {
6ba187ac 1838 sb.append("84;252;84");
15ea4d73 1839 } else if (color.equals(Color.YELLOW)) {
6ba187ac 1840 sb.append("252;252;84");
15ea4d73 1841 } else if (color.equals(Color.BLUE)) {
6ba187ac 1842 sb.append("84;84;252");
15ea4d73 1843 } else if (color.equals(Color.MAGENTA)) {
6ba187ac 1844 sb.append("252;84;252");
15ea4d73 1845 } else if (color.equals(Color.CYAN)) {
6ba187ac 1846 sb.append("84;252;252");
15ea4d73
KL
1847 } else if (color.equals(Color.WHITE)) {
1848 sb.append("252;252;252");
1849 }
1850 } else {
1851 if (foreground) {
1852 sb.append("38;2;");
1853 } else {
1854 sb.append("48;2;");
1855 }
1856 if (color.equals(Color.BLACK)) {
1857 sb.append("0;0;0");
1858 } else if (color.equals(Color.RED)) {
1859 sb.append("168;0;0");
1860 } else if (color.equals(Color.GREEN)) {
1861 sb.append("0;168;0");
1862 } else if (color.equals(Color.YELLOW)) {
6ba187ac 1863 sb.append("168;84;0");
15ea4d73
KL
1864 } else if (color.equals(Color.BLUE)) {
1865 sb.append("0;0;168");
1866 } else if (color.equals(Color.MAGENTA)) {
1867 sb.append("168;0;168");
1868 } else if (color.equals(Color.CYAN)) {
1869 sb.append("0;168;168");
1870 } else if (color.equals(Color.WHITE)) {
1871 sb.append("168;168;168");
1872 }
1873 }
1874 sb.append("m");
1875 return sb.toString();
1876 }
1877
1878 /**
1879 * Create a T.416 RGB parameter sequence for both foreground and
1880 * background color change.
1881 *
1882 * @param bold if true, set bold
1883 * @param foreColor one of the Color.WHITE, Color.BLUE, etc. constants
1884 * @param backColor one of the Color.WHITE, Color.BLUE, etc. constants
1885 * @return the string to emit to an xterm terminal with RGB support,
1886 * e.g. "\033[38;2;RR;GG;BB;48;2;RR;GG;BBm"
1887 */
1888 private String rgbColor(final boolean bold, final Color foreColor,
1889 final Color backColor) {
1890 if (doRgbColor == false) {
1891 return "";
1892 }
1893
1894 return rgbColor(bold, foreColor, true) +
1895 rgbColor(false, backColor, false);
b1589621
KL
1896 }
1897
1898 /**
1899 * Create a SGR parameter sequence for a single color change.
1900 *
05dbb28d
KL
1901 * @param color one of the Color.WHITE, Color.BLUE, etc. constants
1902 * @param foreground if true, this is a foreground color
1903 * @param header if true, make the full header, otherwise just emit the
1904 * color parameter e.g. "42;"
1905 * @return the string to emit to an ANSI / ECMA-style terminal,
1906 * e.g. "\033[42m"
b1589621 1907 */
b5f2a6db 1908 private String color(final Color color, final boolean foreground,
7b5261bc
KL
1909 final boolean header) {
1910
1911 int ecmaColor = color.getValue();
1912
1913 // Convert Color.* values to SGR numerics
1914 if (foreground) {
1915 ecmaColor += 30;
1916 } else {
1917 ecmaColor += 40;
1918 }
1919
1920 if (header) {
1921 return String.format("\033[%dm", ecmaColor);
1922 } else {
1923 return String.format("%d;", ecmaColor);
1924 }
b1589621
KL
1925 }
1926
1927 /**
b5f2a6db 1928 * Create a SGR parameter sequence for both foreground and background
42873e30 1929 * color change.
b1589621 1930 *
15ea4d73 1931 * @param bold if true, set bold
05dbb28d
KL
1932 * @param foreColor one of the Color.WHITE, Color.BLUE, etc. constants
1933 * @param backColor one of the Color.WHITE, Color.BLUE, etc. constants
1934 * @return the string to emit to an ANSI / ECMA-style terminal,
1935 * e.g. "\033[31;42m"
b1589621 1936 */
42873e30 1937 private String color(final boolean bold, final Color foreColor,
15ea4d73
KL
1938 final Color backColor) {
1939 return color(foreColor, backColor, true) +
1940 rgbColor(bold, foreColor, backColor);
b1589621
KL
1941 }
1942
1943 /**
1944 * Create a SGR parameter sequence for both foreground and
1945 * background color change.
1946 *
05dbb28d
KL
1947 * @param foreColor one of the Color.WHITE, Color.BLUE, etc. constants
1948 * @param backColor one of the Color.WHITE, Color.BLUE, etc. constants
1949 * @param header if true, make the full header, otherwise just emit the
1950 * color parameter e.g. "31;42;"
1951 * @return the string to emit to an ANSI / ECMA-style terminal,
1952 * e.g. "\033[31;42m"
b1589621 1953 */
b5f2a6db 1954 private String color(final Color foreColor, final Color backColor,
7b5261bc 1955 final boolean header) {
b1589621 1956
7b5261bc
KL
1957 int ecmaForeColor = foreColor.getValue();
1958 int ecmaBackColor = backColor.getValue();
b1589621 1959
7b5261bc
KL
1960 // Convert Color.* values to SGR numerics
1961 ecmaBackColor += 40;
1962 ecmaForeColor += 30;
b1589621 1963
7b5261bc
KL
1964 if (header) {
1965 return String.format("\033[%d;%dm", ecmaForeColor, ecmaBackColor);
1966 } else {
1967 return String.format("%d;%d;", ecmaForeColor, ecmaBackColor);
1968 }
b1589621
KL
1969 }
1970
1971 /**
1972 * Create a SGR parameter sequence for foreground, background, and
05dbb28d 1973 * several attributes. This sequence first resets all attributes to
42873e30 1974 * default, then sets attributes as per the parameters.
b1589621 1975 *
05dbb28d
KL
1976 * @param foreColor one of the Color.WHITE, Color.BLUE, etc. constants
1977 * @param backColor one of the Color.WHITE, Color.BLUE, etc. constants
1978 * @param bold if true, set bold
1979 * @param reverse if true, set reverse
1980 * @param blink if true, set blink
1981 * @param underline if true, set underline
1982 * @return the string to emit to an ANSI / ECMA-style terminal,
1983 * e.g. "\033[0;1;31;42m"
b1589621 1984 */
42873e30 1985 private String color(final Color foreColor, final Color backColor,
7b5261bc
KL
1986 final boolean bold, final boolean reverse, final boolean blink,
1987 final boolean underline) {
1988
1989 int ecmaForeColor = foreColor.getValue();
1990 int ecmaBackColor = backColor.getValue();
1991
1992 // Convert Color.* values to SGR numerics
1993 ecmaBackColor += 40;
1994 ecmaForeColor += 30;
1995
1996 StringBuilder sb = new StringBuilder();
1997 if ( bold && reverse && blink && !underline ) {
1998 sb.append("\033[0;1;7;5;");
1999 } else if ( bold && reverse && !blink && !underline ) {
2000 sb.append("\033[0;1;7;");
2001 } else if ( !bold && reverse && blink && !underline ) {
2002 sb.append("\033[0;7;5;");
2003 } else if ( bold && !reverse && blink && !underline ) {
2004 sb.append("\033[0;1;5;");
2005 } else if ( bold && !reverse && !blink && !underline ) {
2006 sb.append("\033[0;1;");
2007 } else if ( !bold && reverse && !blink && !underline ) {
2008 sb.append("\033[0;7;");
2009 } else if ( !bold && !reverse && blink && !underline) {
2010 sb.append("\033[0;5;");
2011 } else if ( bold && reverse && blink && underline ) {
2012 sb.append("\033[0;1;7;5;4;");
2013 } else if ( bold && reverse && !blink && underline ) {
2014 sb.append("\033[0;1;7;4;");
2015 } else if ( !bold && reverse && blink && underline ) {
2016 sb.append("\033[0;7;5;4;");
2017 } else if ( bold && !reverse && blink && underline ) {
2018 sb.append("\033[0;1;5;4;");
2019 } else if ( bold && !reverse && !blink && underline ) {
2020 sb.append("\033[0;1;4;");
2021 } else if ( !bold && reverse && !blink && underline ) {
2022 sb.append("\033[0;7;4;");
2023 } else if ( !bold && !reverse && blink && underline) {
2024 sb.append("\033[0;5;4;");
2025 } else if ( !bold && !reverse && !blink && underline) {
2026 sb.append("\033[0;4;");
2027 } else {
2028 assert (!bold && !reverse && !blink && !underline);
2029 sb.append("\033[0;");
2030 }
2031 sb.append(String.format("%d;%dm", ecmaForeColor, ecmaBackColor));
8a632d71
KL
2032 sb.append(rgbColor(bold, foreColor, backColor));
2033 return sb.toString();
051e2913
KL
2034 }
2035
2036 /**
2037 * Create a SGR parameter sequence for foreground, background, and
2038 * several attributes. This sequence first resets all attributes to
2039 * default, then sets attributes as per the parameters.
2040 *
2041 * @param foreColorRGB a 24-bit RGB value for foreground color
2042 * @param backColorRGB a 24-bit RGB value for foreground color
2043 * @param bold if true, set bold
2044 * @param reverse if true, set reverse
2045 * @param blink if true, set blink
2046 * @param underline if true, set underline
2047 * @return the string to emit to an ANSI / ECMA-style terminal,
2048 * e.g. "\033[0;1;31;42m"
2049 */
2050 private String colorRGB(final int foreColorRGB, final int backColorRGB,
2051 final boolean bold, final boolean reverse, final boolean blink,
2052 final boolean underline) {
2053
2054 int foreColorRed = (foreColorRGB >> 16) & 0xFF;
2055 int foreColorGreen = (foreColorRGB >> 8) & 0xFF;
2056 int foreColorBlue = foreColorRGB & 0xFF;
2057 int backColorRed = (backColorRGB >> 16) & 0xFF;
2058 int backColorGreen = (backColorRGB >> 8) & 0xFF;
2059 int backColorBlue = backColorRGB & 0xFF;
2060
2061 StringBuilder sb = new StringBuilder();
2062 if ( bold && reverse && blink && !underline ) {
2063 sb.append("\033[0;1;7;5;");
2064 } else if ( bold && reverse && !blink && !underline ) {
2065 sb.append("\033[0;1;7;");
2066 } else if ( !bold && reverse && blink && !underline ) {
2067 sb.append("\033[0;7;5;");
2068 } else if ( bold && !reverse && blink && !underline ) {
2069 sb.append("\033[0;1;5;");
2070 } else if ( bold && !reverse && !blink && !underline ) {
2071 sb.append("\033[0;1;");
2072 } else if ( !bold && reverse && !blink && !underline ) {
2073 sb.append("\033[0;7;");
2074 } else if ( !bold && !reverse && blink && !underline) {
2075 sb.append("\033[0;5;");
2076 } else if ( bold && reverse && blink && underline ) {
2077 sb.append("\033[0;1;7;5;4;");
2078 } else if ( bold && reverse && !blink && underline ) {
2079 sb.append("\033[0;1;7;4;");
2080 } else if ( !bold && reverse && blink && underline ) {
2081 sb.append("\033[0;7;5;4;");
2082 } else if ( bold && !reverse && blink && underline ) {
2083 sb.append("\033[0;1;5;4;");
2084 } else if ( bold && !reverse && !blink && underline ) {
2085 sb.append("\033[0;1;4;");
2086 } else if ( !bold && reverse && !blink && underline ) {
2087 sb.append("\033[0;7;4;");
2088 } else if ( !bold && !reverse && blink && underline) {
2089 sb.append("\033[0;5;4;");
2090 } else if ( !bold && !reverse && !blink && underline) {
2091 sb.append("\033[0;4;");
2092 } else {
2093 assert (!bold && !reverse && !blink && !underline);
2094 sb.append("\033[0;");
2095 }
2096
2097 sb.append("m\033[38;2;");
2098 sb.append(String.format("%d;%d;%d", foreColorRed, foreColorGreen,
2099 foreColorBlue));
2100 sb.append("m\033[48;2;");
2101 sb.append(String.format("%d;%d;%d", backColorRed, backColorGreen,
2102 backColorBlue));
2103 sb.append("m");
2104 return sb.toString();
b1589621
KL
2105 }
2106
b1589621 2107 /**
42873e30 2108 * Create a SGR parameter sequence to reset to defaults.
b1589621 2109 *
05dbb28d
KL
2110 * @return the string to emit to an ANSI / ECMA-style terminal,
2111 * e.g. "\033[0m"
b1589621 2112 */
42873e30 2113 private String normal() {
8a632d71 2114 return normal(true) + rgbColor(false, Color.WHITE, Color.BLACK);
b1589621
KL
2115 }
2116
2117 /**
2118 * Create a SGR parameter sequence to reset to defaults.
2119 *
05dbb28d
KL
2120 * @param header if true, make the full header, otherwise just emit the
2121 * bare parameter e.g. "0;"
2122 * @return the string to emit to an ANSI / ECMA-style terminal,
2123 * e.g. "\033[0m"
b1589621 2124 */
b5f2a6db 2125 private String normal(final boolean header) {
7b5261bc
KL
2126 if (header) {
2127 return "\033[0;37;40m";
2128 }
2129 return "0;37;40";
b1589621
KL
2130 }
2131
b1589621 2132 /**
42873e30 2133 * Create a SGR parameter sequence for enabling the visible cursor.
b1589621 2134 *
05dbb28d
KL
2135 * @param on if true, turn on cursor
2136 * @return the string to emit to an ANSI / ECMA-style terminal
b1589621 2137 */
42873e30 2138 private String cursor(final boolean on) {
7b5261bc
KL
2139 if (on && !cursorOn) {
2140 cursorOn = true;
2141 return "\033[?25h";
2142 }
2143 if (!on && cursorOn) {
2144 cursorOn = false;
2145 return "\033[?25l";
2146 }
2147 return "";
b1589621
KL
2148 }
2149
2150 /**
2151 * Clear the entire screen. Because some terminals use back-color-erase,
2152 * set the color to white-on-black beforehand.
2153 *
05dbb28d 2154 * @return the string to emit to an ANSI / ECMA-style terminal
b1589621 2155 */
42873e30 2156 private String clearAll() {
7b5261bc 2157 return "\033[0;37;40m\033[2J";
b1589621
KL
2158 }
2159
2160 /**
2161 * Clear the line from the cursor (inclusive) to the end of the screen.
2162 * Because some terminals use back-color-erase, set the color to
42873e30 2163 * white-on-black beforehand.
b1589621 2164 *
05dbb28d 2165 * @return the string to emit to an ANSI / ECMA-style terminal
b1589621 2166 */
42873e30 2167 private String clearRemainingLine() {
7b5261bc 2168 return "\033[0;37;40m\033[K";
b1589621
KL
2169 }
2170
b1589621 2171 /**
42873e30 2172 * Move the cursor to (x, y).
b1589621 2173 *
05dbb28d
KL
2174 * @param x column coordinate. 0 is the left-most column.
2175 * @param y row coordinate. 0 is the top-most row.
2176 * @return the string to emit to an ANSI / ECMA-style terminal
b1589621 2177 */
42873e30 2178 private String gotoXY(final int x, final int y) {
7b5261bc 2179 return String.format("\033[%d;%dH", y + 1, x + 1);
b1589621
KL
2180 }
2181
2182 /**
05dbb28d 2183 * Tell (u)xterm that we want to receive mouse events based on "Any event
b5f2a6db
KL
2184 * tracking", UTF-8 coordinates, and then SGR coordinates. Ideally we
2185 * will end up with SGR coordinates with UTF-8 coordinates as a fallback.
2186 * See
b1589621
KL
2187 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Mouse%20Tracking
2188 *
05dbb28d 2189 * Note that this also sets the alternate/primary screen buffer.
b1589621 2190 *
05dbb28d
KL
2191 * @param on If true, enable mouse report and use the alternate screen
2192 * buffer. If false disable mouse reporting and use the primary screen
2193 * buffer.
2194 * @return the string to emit to xterm
b1589621 2195 */
b5f2a6db 2196 private String mouse(final boolean on) {
7b5261bc 2197 if (on) {
32437017 2198 return "\033[?1002;1003;1005;1006h\033[?1049h";
7b5261bc 2199 }
32437017 2200 return "\033[?1002;1003;1006;1005l\033[?1049l";
b1589621
KL
2201 }
2202
2203}