com.sshtools.server.vsession.VirtualConsole Maven / Gradle / Ivy
/**
* (c) 2002-2021 JADAPTIVE Limited. All Rights Reserved.
*
* This file is part of the Maverick Synergy Java SSH API.
*
* Maverick Synergy is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Maverick Synergy is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Maverick Synergy. If not, see .
*/
package com.sshtools.server.vsession;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Objects;
import org.jline.reader.History;
import org.jline.reader.LineReader;
import org.jline.terminal.Terminal;
import org.jline.utils.InfoCmp.Capability;
import com.sshtools.common.files.AbstractFile;
import com.sshtools.common.files.AbstractFileFactory;
import com.sshtools.common.permissions.PermissionDeniedException;
import com.sshtools.common.policy.FileSystemPolicy;
import com.sshtools.common.ssh.Context;
import com.sshtools.common.ssh.SessionChannelServer;
import com.sshtools.common.ssh.SshConnection;
public class VirtualConsole {
Environment env;
Terminal terminal;
LineReader reader;
SshConnection con;
SessionChannelServer channel;
Msh shell;
AbstractFile cwd;
AbstractFileFactory> fileFactory;
static ThreadLocal threadConsoles = new ThreadLocal<>();
public VirtualConsole(SessionChannelServer channel, Environment env, Terminal terminal, LineReader reader, Msh shell) throws IOException, PermissionDeniedException {
this.channel = channel;
this.con = channel.getConnection();
this.env = env;
this.terminal = terminal;
this.reader = reader;
this.shell = shell;
this.fileFactory = getContext().getPolicy(FileSystemPolicy.class)
.getFileFactory().getFileFactory(con);
}
public SshConnection getConnection() {
return con;
}
public Environment getEnvironment() {
return env;
}
public Terminal getTerminal() {
return terminal;
}
public LineReader getLineReader() {
return reader;
}
public void clear() {
terminal.puts(Capability.clear_screen);
terminal.flush();
}
public void print(char ch) {
terminal.writer().print(ch);
terminal.writer().flush();
}
public void print(String str) {
terminal.writer().print(str);
terminal.writer().flush();
}
public void println(String str) {
terminal.writer().println(str);
terminal.writer().flush();
}
public void println() {
terminal.writer().println();
terminal.writer().flush();
}
public String readLine(String prompt) {
return reader.readLine(prompt);
}
public String readLine(String prompt, Character mask) {
return reader.readLine(prompt, mask);
}
public Context getContext() {
return con.getContext();
}
public String readLine() {
return reader.readLine();
}
public SessionChannelServer getSessionChannel() {
return channel;
}
public History getHistory() {
return reader.getHistory();
}
public void destroy() {
}
public void print(Throwable e) {
e.printStackTrace(terminal.writer());
terminal.writer().flush();
}
public Msh getShell() {
return shell;
}
public void setCurrentDirectory(String currentDirectory) throws IOException, PermissionDeniedException {
if(Objects.isNull(cwd)) {
cwd = fileFactory.getFile((String)env.getOrDefault("HOME", "/"));
if(!cwd.exists()) {
cwd.createFolder();
if(!cwd.exists()) {
throw new FileNotFoundException(String.format("User directory %s does not exist", cwd.getName()));
}
} else {
if(!cwd.isDirectory()) {
throw new IOException(String.format("%s is not a directory", cwd.getName()));
}
}
}
AbstractFile file = cwd.resolveFile(currentDirectory);
if(!file.isDirectory()) {
throw new IOException(String.format("%s is not a directory", file.getName()));
}
this.cwd = file;
env.put("CWD", currentDirectory);
}
public AbstractFile getCurrentDirectory() throws IOException, PermissionDeniedException {
if(Objects.isNull(cwd)) {
setCurrentDirectory("");
}
return cwd;
}
public AbstractFileFactory> getFileFactory() {
return fileFactory;
}
public static VirtualConsole getCurrentConsole() {
return threadConsoles.get();
}
public static void setCurrentConsole(VirtualConsole console) {
threadConsoles.set(console);
}
public static void clearCurrentConsole() {
threadConsoles.remove();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy