io.github.eliux.mega.cmd.AbstractMegaCmdRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of megacmd4j Show documentation
Show all versions of megacmd4j Show documentation
Java client library that works on top of MEGAcmd to provide access to the services of Mega.nz
package io.github.eliux.mega.cmd;
import io.github.eliux.mega.MegaUtils;
import io.github.eliux.mega.error.MegaIOException;
import java.io.IOException;
public abstract class AbstractMegaCmdRunner extends AbstractMegaCmd implements Runnable {
@Override
public void run() {
executeSysCmd(executableCommandArray());
}
protected void executeSysCmd(String... cmdStr) {
try {
final int result = MegaUtils.execCmd(cmdStr);
MegaUtils.handleResult(result);
} catch (IOException e) {
throw new MegaIOException();
} catch (InterruptedException e) {
throw new MegaIOException(
"The execution of %s couldn't be finished", getCmd()
);
}
}
}