blob: 4dfeafe5fbe2b19d201c35426f59ebbd12ef8a3c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.ui;
import java.rmi.RemoteException;
import java.util.logging.Level;
import org.eclipse.osee.connection.service.IServiceConnector;
import org.eclipse.osee.framework.jdk.core.util.IConsoleInputListener;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.ote.core.environment.interfaces.IRemoteCommandConsole;
import org.eclipse.osee.ote.core.environment.interfaces.ITestEnvironment;
import org.eclipse.osee.ote.service.ConnectionEvent;
import org.eclipse.osee.ote.service.ITestConnectionListener;
import org.eclipse.osee.ote.ui.internal.TestCoreGuiPlugin;
public class OteRemoteConsole implements IConsoleInputListener, ITestConnectionListener {
private IRemoteCommandConsole remoteConsole;
private ITestEnvironment env;
private final IOteConsoleService oteConsoleService;
public OteRemoteConsole(IOteConsoleService oteConsoleService) {
this.oteConsoleService = oteConsoleService;
}
@Override
public void lineRead(String line) {
try {
String result = remoteConsole.doCommand(line);
oteConsoleService.write(result);
} catch (RemoteException e) {
OseeLog.log(TestCoreGuiPlugin.class, Level.SEVERE, "exception executing command " + line, e);
oteConsoleService.writeError("Exception during executing of command. See Error Log");
}
}
public void close() {
if (env != null) {
try {
env.closeCommandConsole(remoteConsole);
} catch (Exception e) {
OseeLog.log(TestCoreGuiPlugin.class, Level.INFO, "failed to close remote terminal", e);
}
}
oteConsoleService.removeInputListener(this);
env = null;
}
@Override
public void onConnectionLost(IServiceConnector connector) {
oteConsoleService.removeInputListener(this);
env = null;
}
@Override
public void onPostConnect(ConnectionEvent event) {
try {
env = event.getEnvironment();
remoteConsole = env.getCommandConsole();
oteConsoleService.addInputListener(this);
} catch (RemoteException e) {
OseeLog.log(TestCoreGuiPlugin.class, Level.SEVERE, "exception acquiring remote console", e);
}
}
@Override
public void onPreDisconnect(ConnectionEvent event) {
close();
}
}