blob: 4868832523a281bde2ce67e48202f76c9840852c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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.server;
import java.rmi.RemoteException;
import org.eclipse.osee.ote.core.environment.console.ConsoleShell;
import org.eclipse.osee.ote.core.environment.console.ICommandManager;
import org.eclipse.osee.ote.core.environment.interfaces.IRemoteCommandConsole;
/**
* @author Ken J. Aguilar
*/
public class RemoteShell extends ConsoleShell implements IRemoteCommandConsole {
// private static final long serialVersionUID = -4931966494670170915L;
private final StringBuffer buffer = new StringBuffer(32000);
@Override
public synchronized String doCommand(String line) throws RemoteException {
buffer.setLength(0);
buffer.append('>').append(line).append('\n');
try {
parseAndExecuteCmd(line);
} catch (Throwable t) {
printStackTrace(t);
}
return buffer.toString();
}
public RemoteShell(ICommandManager manager) {
super(manager);
}
@Override
public void println(String string) {
buffer.append(string).append('\n');
}
@Override
public void print(String string) {
buffer.append(string);
}
@Override
public void println() {
buffer.append('\n');
}
}