blob: 0335d3a7e19dd235601de90c97f5fa41b1eb96c6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Oak Ridge National Laboratory and others.
* 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
*******************************************************************************/
package org.eclipse.remote.internal.proxy.core.commands;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.remote.internal.proxy.core.ProxyConnection;
import org.eclipse.remote.proxy.core.Protocol;
import org.eclipse.remote.proxy.core.exceptions.ProxyException;
public class ExecCommand extends AbstractCommand<Void> {
private final DataOutputStream out;
private final DataInputStream in;
private final List<String> command;
private final Map<String, String> env;
private final String directory;
private final boolean appendEnv;
private final boolean redirect;
private final int chanA;
private final int chanB;
private final int chanC;
public ExecCommand(ProxyConnection conn, List<String> command, Map<String, String> env, String directory, boolean redirect, boolean appendEnv,
int chanA, int chanB, int chanC) {
this.out = new DataOutputStream(conn.getCommandChannel().getOutputStream());
this.in = new DataInputStream(conn.getCommandChannel().getInputStream());
this.command = command;
this.env = env;
this.directory = directory;
this.redirect = redirect;
this.appendEnv = appendEnv;
this.chanA = chanA;
this.chanB = chanB;
this.chanC = chanC;
}
public Void exec(IProgressMonitor monitor) throws ProxyException {
try {
out.writeByte(Protocol.PROTO_COMMAND);
out.writeShort(Protocol.CMD_EXEC);
out.writeByte(chanA);
out.writeByte(chanB);
out.writeByte(chanC);
out.writeInt(command.size());
for (String arg : command) {
out.writeUTF(arg);
}
out.writeInt(env.size());
for (Map.Entry<String, String> entry : env.entrySet()) {
out.writeUTF(entry.getKey());
out.writeUTF(entry.getValue());
}
out.writeUTF(directory);
out.writeBoolean(redirect);
out.writeBoolean(appendEnv);
out.flush();
byte res = in.readByte();
if (res != Protocol.PROTO_OK) {
String errMsg = in.readUTF();
System.err.println("exec command failed:" + errMsg);
throw new ProxyException(errMsg);
}
} catch (IOException e) {
throw new ProxyException(e.getMessage());
}
return null;
}
}