📄 sshstdio.java
字号:
/****************************************************************************** * * Copyright (c) 1999-2003 AppGate Network Security AB. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code as * defined in and that are subject to the MindTerm Public Source License, * Version 2.0, (the 'License'). You may not use this file except in compliance * with the License. * * You should have received a copy of the MindTerm Public Source License * along with this software; see the file LICENSE. If not, write to * AppGate Network Security AB, Otterhallegatan 2, SE-41118 Goteborg, SWEDEN * *****************************************************************************/package com.mindbright.ssh;import java.io.*;import java.awt.*;import java.awt.datatransfer.*;import com.mindbright.terminal.*;public final class SSHStdIO implements TerminalInputListener, SSHConsole { static public class SSHExternalMessage extends IOException { public boolean ctrlC; public boolean isError; public SSHExternalMessage(String msg) { super(msg); ctrlC = false; } } Container ownerContainer; SSHChannelController controller; SSHInteractiveClient client; // // !!! Changed this to TerminalWin instead of Terminal, we were // almost asuming it anyway (theoretical performance gain too! :-) // TerminalWin term; SSHCipher sndCipher; String ownerName; Boolean readLineLock; boolean isReadingLine; boolean echoStar; String readLineStr; protected boolean isConnected; public SSHStdIO() { this.readLineLock = new Boolean(false); this.controller = null; this.sndCipher = null; this.isConnected = false; } public boolean isConnected() { return isConnected; } public void setTerminal(TerminalWin term) { this.term = term; if(term != null) { term.addInputListener(this); } } public void setClient(SSHInteractiveClient client) { this.client = client; } public void setOwnerContainer(Container ownerContainer) { this.ownerContainer = ownerContainer; } public void setOwnerName(String ownerName) { this.ownerName = ownerName; } SSHExternalMessage extMsg = null; public void breakPromptLine() { breakPromptLine(""); } public void breakPromptLine(String msg) { if(isReadingLine) { synchronized(readLineLock) { extMsg = new SSHExternalMessage(msg); readLineLock.notify(); } } } public String readLine(String defaultVal) { synchronized(readLineLock) { if(defaultVal != null) { readLineStr = defaultVal; term.write(defaultVal); } else { readLineStr = ""; } isReadingLine = true; try { readLineLock.wait(); } catch (InterruptedException e) { // !!! } isReadingLine = false; } return readLineStr; } public String promptLine(String prompt, String defaultVal, boolean echoStar) throws IOException { String line = null; if(term != null) { term.setAttribute(Terminal.ATTR_BOLD, true); term.write(prompt); term.setAttribute(Terminal.ATTR_BOLD, false); this.echoStar = echoStar; line = readLine(defaultVal); this.echoStar = false; } else { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.print(prompt); line = br.readLine(); } if(extMsg != null) { SSHExternalMessage msg = extMsg; extMsg = null; throw msg; } return line; } public void updateTitle() { int rows = 0; int cols = 0; if(term == null || ownerContainer == null) return; String title = null; title = term.getTitle(); if(title == null) { if(client.isOpened()) { title = client.propsHandler.getProperty("usrname"); title += "@" + client.propsHandler.getProperty("server"); title += " <" + client.getServerVersion() + ">"; } else { title = ownerName; } if(!client.activateTunnels) { title += " (CLONE)"; } } rows = term.rows(); cols = term.cols(); title += " [" + cols + "x" + rows + "]"; if(ownerContainer instanceof Frame) ((Frame)ownerContainer).setTitle(title); } // SSHConsole interface // public Terminal getTerminal() { return term; } public void stdoutWriteString(byte[] str) { if(isConnected) print(new String(str)); } public void stderrWriteString(byte[] str) { if(isConnected) print(new String(str)); } public void print(String str) { if(term != null) { term.write(str); } else { System.out.print(str); } } public void println(String str) { if(term != null) { term.write(str + "\n\r"); } else { System.out.println(str); } } public void serverConnect(SSHChannelController controller, SSHCipher sndCipher) { this.controller = controller; this.sndCipher = sndCipher; isConnected = true; } public void serverDisconnect(String reason) { this.controller = null; this.sndCipher = null; isConnected = false; println(reason); } // TerminalInputListener interface // public void typedChar(char c) { try { if(isConnected) { client.stdinWriteChar(c); } else { synchronized(readLineLock) { if(isReadingLine) { if((c == (char)0x03) || (c == (char)0x04)) { extMsg = new SSHExternalMessage(""); extMsg.ctrlC = (c == (char)0x03); readLineLock.notify(); } else if(c == (char)127 || c == (char)0x08) { if(readLineStr.length() > 0) { boolean ctrlChar = false; if(readLineStr.charAt(readLineStr.length() - 1) < ' ') { ctrlChar = true; } readLineStr = readLineStr.substring(0, readLineStr.length() - 1); term.write((char)8); if(ctrlChar) term.write((char)8); term.write(' '); if(ctrlChar) term.write(' '); term.write((char)8); if(ctrlChar) term.write((char)8); } else term.doBell(); } else if(c == '\r') { // readLineStr = readLineStr + "\r"; readLineLock.notify(); term.write("\n\r"); } else { readLineStr = readLineStr + c; if(echoStar) term.write('*'); else term.write(c); } } } } } catch (IOException e) { // !!! System.out.println("**** Error in SSHStdIO.typedChar: " + e); } } public void sendBytes(byte[] b) { try { if(isConnected) { client.stdinWriteString(b); } else { for(int i = 0; i < b.length; i++) typedChar((char)b[i]); } } catch (IOException e) { // !!! System.out.println("**** Error in SSHStdIO.sendBytes: " + e); } } public void signalWindowChanged(int rows, int cols, int vpixels, int hpixels) { if(isConnected) { client.signalWindowChanged(rows, cols, vpixels, hpixels); } else { // !!! } updateTitle(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -