Not dead note
[fanfix.git] / src / jexer / TTerminalWindow.java
CommitLineData
daa4106c 1/*
34a42e78
KL
2 * Jexer - Java Text User Interface
3 *
e16dda65 4 * The MIT License (MIT)
34a42e78 5 *
a2018e99 6 * Copyright (C) 2017 Kevin Lamonte
34a42e78 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:
34a42e78 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.
34a42e78 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.
34a42e78
KL
25 *
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
27 * @version 1
28 */
29package jexer;
30
34a42e78 31import java.io.IOException;
55d2b2c2 32import java.lang.reflect.Field;
339652cc 33import java.text.MessageFormat;
34a42e78
KL
34import java.util.LinkedList;
35import java.util.List;
bd8d51fa 36import java.util.Map;
339652cc 37import java.util.ResourceBundle;
34a42e78
KL
38
39import jexer.bits.Cell;
40import jexer.bits.CellAttributes;
41import jexer.event.TKeypressEvent;
b2d49e0f 42import jexer.event.TMenuEvent;
34a42e78
KL
43import jexer.event.TMouseEvent;
44import jexer.event.TResizeEvent;
b2d49e0f 45import jexer.menu.TMenu;
34a42e78 46import jexer.tterminal.DisplayLine;
be72cb5c 47import jexer.tterminal.DisplayListener;
34a42e78
KL
48import jexer.tterminal.ECMA48;
49import static jexer.TKeypress.*;
50
51/**
52 * TTerminalWindow exposes a ECMA-48 / ANSI X3.64 style terminal in a window.
53 */
be72cb5c
KL
54public class TTerminalWindow extends TScrollableWindow
55 implements DisplayListener {
34a42e78 56
339652cc
KL
57
58 /**
59 * Translated strings.
60 */
61 private static final ResourceBundle i18n = ResourceBundle.getBundle(TTerminalWindow.class.getName());
62
615a0d99
KL
63 // ------------------------------------------------------------------------
64 // Variables --------------------------------------------------------------
65 // ------------------------------------------------------------------------
66
34a42e78
KL
67 /**
68 * The emulator.
69 */
70 private ECMA48 emulator;
71
72 /**
73 * The Process created by the shell spawning constructor.
74 */
75 private Process shell;
76
1d99a38f
KL
77 /**
78 * If true, we are using the ptypipe utility to support dynamic window
79 * resizing. ptypipe is available at
80 * https://github.com/klamonte/ptypipe .
81 */
82 private boolean ptypipe = false;
83
615a0d99
KL
84 // ------------------------------------------------------------------------
85 // Constructors -----------------------------------------------------------
86 // ------------------------------------------------------------------------
34a42e78 87
b2d49e0f
KL
88 /**
89 * Public constructor spawns a custom command line.
90 *
91 * @param application TApplication that manages this window
92 * @param x column relative to parent
93 * @param y row relative to parent
94 * @param commandLine the command line to execute
95 */
96 public TTerminalWindow(final TApplication application, final int x,
97 final int y, final String commandLine) {
98
a0d734e6 99 this(application, x, y, RESIZABLE, commandLine.split("\\s"));
b2d49e0f
KL
100 }
101
6f8ff91a
KL
102 /**
103 * Public constructor spawns a custom command line.
104 *
105 * @param application TApplication that manages this window
106 * @param x column relative to parent
107 * @param y row relative to parent
108 * @param flags mask of CENTERED, MODAL, or RESIZABLE
a0d734e6 109 * @param command the command line to execute
6f8ff91a
KL
110 */
111 public TTerminalWindow(final TApplication application, final int x,
a0d734e6 112 final int y, final int flags, final String [] command) {
6f8ff91a
KL
113
114 super(application, i18n.getString("windowTitle"), x, y,
115 80 + 2, 24 + 2, flags);
116
a0d734e6 117 String [] fullCommand;
6f8ff91a
KL
118
119 // Spawn a shell and pass its I/O to the other constructor.
120 if ((System.getProperty("jexer.TTerminal.ptypipe") != null)
121 && (System.getProperty("jexer.TTerminal.ptypipe").
122 equals("true"))
123 ) {
124 ptypipe = true;
a0d734e6
KL
125 fullCommand = new String[command.length + 1];
126 fullCommand[0] = "ptypipe";
127 System.arraycopy(command, 0, fullCommand, 1, command.length);
6f8ff91a 128 } else if (System.getProperty("os.name").startsWith("Windows")) {
a0d734e6
KL
129 fullCommand = new String[3];
130 fullCommand[0] = "cmd";
131 fullCommand[1] = "/c";
132 fullCommand[2] = stringArrayToString(command);
6f8ff91a 133 } else if (System.getProperty("os.name").startsWith("Mac")) {
a0d734e6
KL
134 fullCommand = new String[6];
135 fullCommand[0] = "script";
136 fullCommand[1] = "-q";
137 fullCommand[2] = "-F";
138 fullCommand[3] = "/dev/null";
139 fullCommand[4] = "-c";
140 fullCommand[5] = stringArrayToString(command);
6f8ff91a 141 } else {
a0d734e6
KL
142 // Default: behave like Linux
143 fullCommand = new String[5];
144 fullCommand[0] = "script";
145 fullCommand[1] = "-fqe";
146 fullCommand[2] = "/dev/null";
147 fullCommand[3] = "-c";
148 fullCommand[4] = stringArrayToString(command);
6f8ff91a 149 }
a0d734e6 150 spawnShell(fullCommand);
6f8ff91a
KL
151 }
152
153 /**
154 * Public constructor spawns a shell.
155 *
156 * @param application TApplication that manages this window
157 * @param x column relative to parent
158 * @param y row relative to parent
159 * @param flags mask of CENTERED, MODAL, or RESIZABLE
160 */
161 public TTerminalWindow(final TApplication application, final int x,
162 final int y, final int flags) {
163
164 super(application, i18n.getString("windowTitle"), x, y,
165 80 + 2, 24 + 2, flags);
166
167 String cmdShellWindows = "cmd.exe";
168
169 // You cannot run a login shell in a bare Process interactively, due
170 // to libc's behavior of buffering when stdin/stdout aren't a tty.
171 // Use 'script' instead to run a shell in a pty. And because BSD and
172 // GNU differ on the '-f' vs '-F' flags, we need two different
173 // commands. Lovely.
174 String cmdShellGNU = "script -fqe /dev/null";
175 String cmdShellBSD = "script -q -F /dev/null";
176
177 // ptypipe is another solution that permits dynamic window resizing.
178 String cmdShellPtypipe = "ptypipe /bin/bash --login";
179
180 // Spawn a shell and pass its I/O to the other constructor.
181 if ((System.getProperty("jexer.TTerminal.ptypipe") != null)
182 && (System.getProperty("jexer.TTerminal.ptypipe").
183 equals("true"))
184 ) {
185 ptypipe = true;
a0d734e6 186 spawnShell(cmdShellPtypipe.split("\\s"));
6f8ff91a 187 } else if (System.getProperty("os.name").startsWith("Windows")) {
a0d734e6 188 spawnShell(cmdShellWindows.split("\\s"));
6f8ff91a 189 } else if (System.getProperty("os.name").startsWith("Mac")) {
a0d734e6 190 spawnShell(cmdShellBSD.split("\\s"));
6f8ff91a 191 } else if (System.getProperty("os.name").startsWith("Linux")) {
a0d734e6 192 spawnShell(cmdShellGNU.split("\\s"));
6f8ff91a
KL
193 } else {
194 // When all else fails, assume GNU.
a0d734e6 195 spawnShell(cmdShellGNU.split("\\s"));
6f8ff91a
KL
196 }
197 }
198
615a0d99
KL
199 // ------------------------------------------------------------------------
200 // TScrollableWindow ------------------------------------------------------
201 // ------------------------------------------------------------------------
55d2b2c2 202
34a42e78
KL
203 /**
204 * Draw the display buffer.
205 */
206 @Override
207 public void draw() {
208 // Synchronize against the emulator so we don't stomp on its reader
209 // thread.
210 synchronized (emulator) {
211
212 // Update the scroll bars
56661844 213 reflowData();
34a42e78
KL
214
215 // Draw the box using my superclass
216 super.draw();
217
218 List<DisplayLine> scrollback = emulator.getScrollbackBuffer();
219 List<DisplayLine> display = emulator.getDisplayBuffer();
220
221 // Put together the visible rows
34a42e78 222 int visibleHeight = getHeight() - 2;
34a42e78 223 int visibleBottom = scrollback.size() + display.size()
56661844 224 + getVerticalValue();
34a42e78
KL
225 assert (visibleBottom >= 0);
226
227 List<DisplayLine> preceedingBlankLines = new LinkedList<DisplayLine>();
228 int visibleTop = visibleBottom - visibleHeight;
34a42e78
KL
229 if (visibleTop < 0) {
230 for (int i = visibleTop; i < 0; i++) {
231 preceedingBlankLines.add(emulator.getBlankDisplayLine());
232 }
233 visibleTop = 0;
234 }
235 assert (visibleTop >= 0);
236
237 List<DisplayLine> displayLines = new LinkedList<DisplayLine>();
238 displayLines.addAll(scrollback);
239 displayLines.addAll(display);
34a42e78
KL
240
241 List<DisplayLine> visibleLines = new LinkedList<DisplayLine>();
242 visibleLines.addAll(preceedingBlankLines);
243 visibleLines.addAll(displayLines.subList(visibleTop,
244 visibleBottom));
34a42e78
KL
245
246 visibleHeight -= visibleLines.size();
34a42e78
KL
247 assert (visibleHeight >= 0);
248
249 // Now draw the emulator screen
250 int row = 1;
251 for (DisplayLine line: visibleLines) {
252 int widthMax = emulator.getWidth();
253 if (line.isDoubleWidth()) {
254 widthMax /= 2;
255 }
256 if (widthMax > getWidth() - 2) {
257 widthMax = getWidth() - 2;
258 }
259 for (int i = 0; i < widthMax; i++) {
260 Cell ch = line.charAt(i);
261 Cell newCell = new Cell();
262 newCell.setTo(ch);
7c870d89 263 boolean reverse = line.isReverseColor() ^ ch.isReverse();
34a42e78
KL
264 newCell.setReverse(false);
265 if (reverse) {
051e2913
KL
266 if (ch.getForeColorRGB() < 0) {
267 newCell.setBackColor(ch.getForeColor());
268 newCell.setBackColorRGB(-1);
269 } else {
270 newCell.setBackColorRGB(ch.getForeColorRGB());
271 }
272 if (ch.getBackColorRGB() < 0) {
273 newCell.setForeColor(ch.getBackColor());
274 newCell.setForeColorRGB(-1);
275 } else {
276 newCell.setForeColorRGB(ch.getBackColorRGB());
277 }
34a42e78
KL
278 }
279 if (line.isDoubleWidth()) {
280 getScreen().putCharXY((i * 2) + 1, row, newCell);
281 getScreen().putCharXY((i * 2) + 2, row, ' ', newCell);
282 } else {
283 getScreen().putCharXY(i + 1, row, newCell);
284 }
285 }
286 row++;
287 if (row == getHeight() - 1) {
288 // Don't overwrite the box edge
289 break;
290 }
291 }
292 CellAttributes background = new CellAttributes();
293 // Fill in the blank lines on bottom
294 for (int i = 0; i < visibleHeight; i++) {
295 getScreen().hLineXY(1, i + row, getWidth() - 2, ' ',
296 background);
297 }
298
299 } // synchronized (emulator)
300
301 }
302
107bba16
KL
303 /**
304 * Handle window close.
305 */
306 @Override
307 public void onClose() {
308 emulator.close();
309 if (shell != null) {
310 terminateShellChildProcess();
311 shell.destroy();
312 shell = null;
313 }
314 }
315
be72cb5c 316 /**
615a0d99 317 * Handle window/screen resize events.
aa77d682 318 *
615a0d99 319 * @param resize resize event
aa77d682 320 */
615a0d99
KL
321 @Override
322 public void onResize(final TResizeEvent resize) {
323
324 // Synchronize against the emulator so we don't stomp on its reader
325 // thread.
326 synchronized (emulator) {
327
328 if (resize.getType() == TResizeEvent.Type.WIDGET) {
329 // Resize the scroll bars
330 reflowData();
331 placeScrollbars();
332
333 // Get out of scrollback
334 setVerticalValue(0);
335
336 if (ptypipe) {
337 emulator.setWidth(getWidth() - 2);
338 emulator.setHeight(getHeight() - 2);
339
340 emulator.writeRemote("\033[8;" + (getHeight() - 2) + ";" +
341 (getWidth() - 2) + "t");
342 }
343 }
344 return;
345
346 } // synchronized (emulator)
aa77d682
KL
347 }
348
349 /**
615a0d99 350 * Resize scrollbars for a new width/height.
aa77d682 351 */
615a0d99
KL
352 @Override
353 public void reflowData() {
354
355 // Synchronize against the emulator so we don't stomp on its reader
356 // thread.
357 synchronized (emulator) {
358
359 // Pull cursor information
360 readEmulatorState();
361
362 // Vertical scrollbar
363 setTopValue(getHeight() - 2
364 - (emulator.getScrollbackBuffer().size()
365 + emulator.getDisplayBuffer().size()));
366 setVerticalBigChange(getHeight() - 2);
367
368 } // synchronized (emulator)
aa77d682
KL
369 }
370
b2d49e0f 371 /**
615a0d99
KL
372 * Handle keystrokes.
373 *
374 * @param keypress keystroke event
34a42e78 375 */
615a0d99
KL
376 @Override
377 public void onKeypress(final TKeypressEvent keypress) {
34a42e78
KL
378
379 // Scrollback up/down
380 if (keypress.equals(kbShiftPgUp)
381 || keypress.equals(kbCtrlPgUp)
382 || keypress.equals(kbAltPgUp)
383 ) {
56661844 384 bigVerticalDecrement();
34a42e78
KL
385 return;
386 }
387 if (keypress.equals(kbShiftPgDn)
388 || keypress.equals(kbCtrlPgDn)
389 || keypress.equals(kbAltPgDn)
390 ) {
56661844 391 bigVerticalIncrement();
34a42e78
KL
392 return;
393 }
394
395 // Synchronize against the emulator so we don't stomp on its reader
396 // thread.
397 synchronized (emulator) {
398 if (emulator.isReading()) {
399 // Get out of scrollback
56661844 400 setVerticalValue(0);
34a42e78 401 emulator.keypress(keypress.getKey());
92554d64
KL
402
403 // UGLY HACK TIME! cmd.exe needs CRLF, not just CR, so if
404 // this is kBEnter then also send kbCtrlJ.
405 if (System.getProperty("os.name").startsWith("Windows")) {
406 if (keypress.equals(kbEnter)) {
407 emulator.keypress(kbCtrlJ);
408 }
409 }
410
34a42e78
KL
411 readEmulatorState();
412 return;
413 }
414 }
415
416 // Process is closed, honor "normal" TUI keystrokes
417 super.onKeypress(keypress);
418 }
419
420 /**
421 * Handle mouse press events.
422 *
423 * @param mouse mouse button press event
424 */
425 @Override
426 public void onMouseDown(final TMouseEvent mouse) {
bd8d51fa
KL
427 if (inWindowMove || inWindowResize) {
428 // TWindow needs to deal with this.
429 super.onMouseDown(mouse);
430 return;
431 }
34a42e78 432
7c870d89 433 if (mouse.isMouseWheelUp()) {
56661844 434 verticalDecrement();
34a42e78
KL
435 return;
436 }
7c870d89 437 if (mouse.isMouseWheelDown()) {
56661844 438 verticalIncrement();
34a42e78
KL
439 return;
440 }
bd8d51fa
KL
441 if (mouseOnEmulator(mouse)) {
442 synchronized (emulator) {
443 mouse.setX(mouse.getX() - 1);
444 mouse.setY(mouse.getY() - 1);
445 emulator.mouse(mouse);
446 readEmulatorState();
447 return;
448 }
449 }
34a42e78 450
bd8d51fa 451 // Emulator didn't consume it, pass it on
34a42e78
KL
452 super.onMouseDown(mouse);
453 }
454
bd8d51fa
KL
455 /**
456 * Handle mouse release events.
457 *
458 * @param mouse mouse button release event
459 */
460 @Override
461 public void onMouseUp(final TMouseEvent mouse) {
462 if (inWindowMove || inWindowResize) {
463 // TWindow needs to deal with this.
464 super.onMouseUp(mouse);
465 return;
466 }
467
468 if (mouseOnEmulator(mouse)) {
469 synchronized (emulator) {
470 mouse.setX(mouse.getX() - 1);
471 mouse.setY(mouse.getY() - 1);
472 emulator.mouse(mouse);
473 readEmulatorState();
474 return;
475 }
476 }
477
478 // Emulator didn't consume it, pass it on
479 super.onMouseUp(mouse);
480 }
481
482 /**
483 * Handle mouse motion events.
484 *
485 * @param mouse mouse motion event
486 */
487 @Override
488 public void onMouseMotion(final TMouseEvent mouse) {
489 if (inWindowMove || inWindowResize) {
490 // TWindow needs to deal with this.
491 super.onMouseMotion(mouse);
492 return;
493 }
494
495 if (mouseOnEmulator(mouse)) {
496 synchronized (emulator) {
497 mouse.setX(mouse.getX() - 1);
498 mouse.setY(mouse.getY() - 1);
499 emulator.mouse(mouse);
500 readEmulatorState();
501 return;
502 }
503 }
504
505 // Emulator didn't consume it, pass it on
506 super.onMouseMotion(mouse);
507 }
508
615a0d99
KL
509 // ------------------------------------------------------------------------
510 // TTerminalWindow --------------------------------------------------------
511 // ------------------------------------------------------------------------
512
513 /**
514 * Claim the keystrokes the emulator will need.
515 */
516 private void addShortcutKeys() {
517 addShortcutKeypress(kbCtrlA);
518 addShortcutKeypress(kbCtrlB);
519 addShortcutKeypress(kbCtrlC);
520 addShortcutKeypress(kbCtrlD);
521 addShortcutKeypress(kbCtrlE);
522 addShortcutKeypress(kbCtrlF);
523 addShortcutKeypress(kbCtrlG);
524 addShortcutKeypress(kbCtrlH);
525 addShortcutKeypress(kbCtrlU);
526 addShortcutKeypress(kbCtrlJ);
527 addShortcutKeypress(kbCtrlK);
528 addShortcutKeypress(kbCtrlL);
529 addShortcutKeypress(kbCtrlM);
530 addShortcutKeypress(kbCtrlN);
531 addShortcutKeypress(kbCtrlO);
532 addShortcutKeypress(kbCtrlP);
533 addShortcutKeypress(kbCtrlQ);
534 addShortcutKeypress(kbCtrlR);
535 addShortcutKeypress(kbCtrlS);
536 addShortcutKeypress(kbCtrlT);
537 addShortcutKeypress(kbCtrlU);
538 addShortcutKeypress(kbCtrlV);
539 addShortcutKeypress(kbCtrlW);
540 addShortcutKeypress(kbCtrlX);
541 addShortcutKeypress(kbCtrlY);
542 addShortcutKeypress(kbCtrlZ);
543 addShortcutKeypress(kbF1);
544 addShortcutKeypress(kbF2);
545 addShortcutKeypress(kbF3);
546 addShortcutKeypress(kbF4);
547 addShortcutKeypress(kbF5);
548 addShortcutKeypress(kbF6);
549 addShortcutKeypress(kbF7);
550 addShortcutKeypress(kbF8);
551 addShortcutKeypress(kbF9);
552 addShortcutKeypress(kbF10);
553 addShortcutKeypress(kbF11);
554 addShortcutKeypress(kbF12);
555 addShortcutKeypress(kbAltA);
556 addShortcutKeypress(kbAltB);
557 addShortcutKeypress(kbAltC);
558 addShortcutKeypress(kbAltD);
559 addShortcutKeypress(kbAltE);
560 addShortcutKeypress(kbAltF);
561 addShortcutKeypress(kbAltG);
562 addShortcutKeypress(kbAltH);
563 addShortcutKeypress(kbAltU);
564 addShortcutKeypress(kbAltJ);
565 addShortcutKeypress(kbAltK);
566 addShortcutKeypress(kbAltL);
567 addShortcutKeypress(kbAltM);
568 addShortcutKeypress(kbAltN);
569 addShortcutKeypress(kbAltO);
570 addShortcutKeypress(kbAltP);
571 addShortcutKeypress(kbAltQ);
572 addShortcutKeypress(kbAltR);
573 addShortcutKeypress(kbAltS);
574 addShortcutKeypress(kbAltT);
575 addShortcutKeypress(kbAltU);
576 addShortcutKeypress(kbAltV);
577 addShortcutKeypress(kbAltW);
578 addShortcutKeypress(kbAltX);
579 addShortcutKeypress(kbAltY);
580 addShortcutKeypress(kbAltZ);
581 }
582
583 /**
584 * Convert a string array to a whitespace-separated string.
585 *
586 * @param array the string array
587 * @return a single string
588 */
589 private String stringArrayToString(final String [] array) {
590 StringBuilder sb = new StringBuilder(array[0].length());
591 for (int i = 0; i < array.length; i++) {
592 sb.append(array[i]);
593 if (i < array.length - 1) {
594 sb.append(' ');
595 }
596 }
597 return sb.toString();
598 }
599
600 /**
601 * Spawn the shell.
602 *
603 * @param command the command line to execute
604 */
605 private void spawnShell(final String [] command) {
606
607 /*
608 System.err.printf("spawnShell(): '%s'\n",
609 stringArrayToString(command));
610 */
611
612 vScroller = new TVScroller(this, getWidth() - 2, 0, getHeight() - 2);
613 setBottomValue(0);
614
615 // Assume XTERM
616 ECMA48.DeviceType deviceType = ECMA48.DeviceType.XTERM;
617
618 try {
619 ProcessBuilder pb = new ProcessBuilder(command);
620 Map<String, String> env = pb.environment();
621 env.put("TERM", ECMA48.deviceTypeTerm(deviceType));
622 env.put("LANG", ECMA48.deviceTypeLang(deviceType, "en"));
623 env.put("COLUMNS", "80");
624 env.put("LINES", "24");
625 pb.redirectErrorStream(true);
626 shell = pb.start();
627 emulator = new ECMA48(deviceType, shell.getInputStream(),
628 shell.getOutputStream(), this);
629 } catch (IOException e) {
630 messageBox(i18n.getString("errorLaunchingShellTitle"),
631 MessageFormat.format(i18n.getString("errorLaunchingShellText"),
632 e.getMessage()));
633 }
634
635 // Setup the scroll bars
636 onResize(new TResizeEvent(TResizeEvent.Type.WIDGET, getWidth(),
637 getHeight()));
638
639 // Claim the keystrokes the emulator will need.
640 addShortcutKeys();
641
642 // Add shortcut text
643 newStatusBar(i18n.getString("statusBarRunning"));
644 }
645
646 /**
647 * Terminate the child of the 'script' process used on POSIX. This may
648 * or may not work.
649 */
650 private void terminateShellChildProcess() {
651 int pid = -1;
652 if (shell.getClass().getName().equals("java.lang.UNIXProcess")) {
653 /* get the PID on unix/linux systems */
654 try {
655 Field field = shell.getClass().getDeclaredField("pid");
656 field.setAccessible(true);
657 pid = field.getInt(shell);
658 } catch (Throwable e) {
659 // SQUASH, this didn't work. Just bail out quietly.
660 return;
661 }
662 }
663 if (pid != -1) {
664 // shell.destroy() works successfully at killing this side of
665 // 'script'. But we need to make sure the other side (child
666 // process) is also killed.
667 String [] cmdKillIt = {
668 "pkill", "-P", Integer.toString(pid)
669 };
670 try {
671 Runtime.getRuntime().exec(cmdKillIt);
672 } catch (Throwable e) {
673 // SQUASH, this didn't work. Just bail out quietly.
674 return;
675 }
676 }
677 }
678
679 /**
680 * Called by emulator when fresh data has come in.
681 */
682 public void displayChanged() {
683 getApplication().postEvent(new TMenuEvent(TMenu.MID_REPAINT));
684 }
685
686 /**
687 * Function to call to obtain the display width.
688 *
689 * @return the number of columns in the display
690 */
691 public int getDisplayWidth() {
692 if (ptypipe) {
693 return getWidth() - 2;
694 }
695 return 80;
696 }
697
698 /**
699 * Function to call to obtain the display height.
700 *
701 * @return the number of rows in the display
702 */
703 public int getDisplayHeight() {
704 if (ptypipe) {
705 return getHeight() - 2;
706 }
707 return 24;
708 }
709
710 /**
711 * Hook for subclasses to be notified of the shell termination.
712 */
713 public void onShellExit() {
714 getApplication().postEvent(new TMenuEvent(TMenu.MID_REPAINT));
715 }
716
717 /**
718 * Copy out variables from the emulator that TTerminal has to expose on
719 * screen.
720 */
721 private void readEmulatorState() {
722 // Synchronize against the emulator so we don't stomp on its reader
723 // thread.
724 synchronized (emulator) {
725
726 setCursorX(emulator.getCursorX() + 1);
727 setCursorY(emulator.getCursorY() + 1
728 + (getHeight() - 2 - emulator.getHeight())
729 - getVerticalValue());
730 setCursorVisible(emulator.isCursorVisible());
731 if (getCursorX() > getWidth() - 2) {
732 setCursorVisible(false);
733 }
734 if ((getCursorY() > getHeight() - 2) || (getCursorY() < 0)) {
735 setCursorVisible(false);
736 }
737 if (emulator.getScreenTitle().length() > 0) {
738 // Only update the title if the shell is still alive
739 if (shell != null) {
740 setTitle(emulator.getScreenTitle());
741 }
742 }
743
744 // Check to see if the shell has died.
745 if (!emulator.isReading() && (shell != null)) {
746 try {
747 int rc = shell.exitValue();
748 // The emulator exited on its own, all is fine
749 setTitle(MessageFormat.format(i18n.
750 getString("windowTitleCompleted"), getTitle(), rc));
751 shell = null;
752 emulator.close();
753 clearShortcutKeypresses();
754 statusBar.setText(MessageFormat.format(i18n.
755 getString("statusBarCompleted"), rc));
756 onShellExit();
757 } catch (IllegalThreadStateException e) {
758 // The emulator thread has exited, but the shell Process
759 // hasn't figured that out yet. Do nothing, we will see
760 // this in a future tick.
761 }
762 } else if (emulator.isReading() && (shell != null)) {
763 // The shell might be dead, let's check
764 try {
765 int rc = shell.exitValue();
766 // If we got here, the shell died.
767 setTitle(MessageFormat.format(i18n.
768 getString("windowTitleCompleted"), getTitle(), rc));
769 shell = null;
770 emulator.close();
771 clearShortcutKeypresses();
772 statusBar.setText(MessageFormat.format(i18n.
773 getString("statusBarCompleted"), rc));
774 onShellExit();
775 } catch (IllegalThreadStateException e) {
776 // The shell is still running, do nothing.
777 }
778 }
779
780 } // synchronized (emulator)
781 }
782
783 /**
784 * Check if a mouse press/release/motion event coordinate is over the
785 * emulator.
786 *
787 * @param mouse a mouse-based event
788 * @return whether or not the mouse is on the emulator
789 */
790 private final boolean mouseOnEmulator(final TMouseEvent mouse) {
791
792 synchronized (emulator) {
793 if (!emulator.isReading()) {
794 return false;
795 }
796 }
797
798 if ((mouse.getAbsoluteX() >= getAbsoluteX() + 1)
799 && (mouse.getAbsoluteX() < getAbsoluteX() + getWidth() - 1)
800 && (mouse.getAbsoluteY() >= getAbsoluteY() + 1)
801 && (mouse.getAbsoluteY() < getAbsoluteY() + getHeight() - 1)
802 ) {
803 return true;
804 }
805 return false;
806 }
807
34a42e78 808}