import java.io.*;
import ch.ethz.ssh2.*;
public class RunnerSsh {
public static void main(String[] args) {
new RunnerSsh();
}
public RunnerSsh () {
String hostname = "127.0.0.1"; // A modifier
String username = "lionel"; // A modifier
String password = "XXXXXX"; // A modifier
try {
Connection conn = new Connection(hostname);
conn.connect();
boolean isAuthenticated = conn.authenticateWithPassword(username, password);
if (isAuthenticated == false)
throw new IOException("Authentication failed.");
Session sess = conn.openSession();
Console console = new Console (sess);
console.start();
console.launchCommand("hello");
System.out.println (console.getOutput());
console.launchCommand("faire_un_truc");
System.out.println (console.getOutput());
console.close();
sess.close();
conn.close();
} catch (Exception e) {
e.printStackTrace(System.err);
System.exit(2);
}
}
}
class Console extends Thread {
BufferedReader in;
BufferedWriter out;
StringBuffer buffer;
Session session;
boolean start=true;
public Console (Session session) throws IOException {
in = new BufferedReader( new InputStreamReader (session.getStdout() ));
out = new BufferedWriter( new OutputStreamWriter(session.getStdin() ));
buffer = new StringBuffer();
this.session = session;
}
public void run () {
try {
session.execCommand("cd /Users/lionel/ && ./AdminTool.pl");
while (start) {
String line;
if ((line = in.readLine()) !=null) {
buffer.append(line+"\n");
}
}
System.out.println ("fin Thread");
} catch (Exception e) {}
}
public void launchCommand (String command) throws IOException {
out.write(command);
out.newLine();
out.flush();
}
public void close () {
try {
launchCommand ("exit");
} catch (Exception e) {}
start = false;
System.out.println ("closed");
}
public String getOutput () throws IOException {
// Attente du retour (finie toujours par #END\n
while (buffer.indexOf("#END")<0) {
try {
Thread.sleep(100);
} catch (Exception e) {}
}
String lines = buffer.toString();
buffer = new StringBuffer();
return "{"+lines+"}";
}
}