Skip to content
Snippets Groups Projects
Commit 8ba0b20f authored by Jan Kožusznik's avatar Jan Kožusznik
Browse files

check status command

parent f7d29f0d
No related branches found
No related tags found
No related merge requests found
......@@ -17,21 +17,27 @@ import net.imagej.ImageJ;
*
*/
@Plugin(type = Command.class, headless = true, menuPath = "Plugins>Check status of HaaS")
public class CheckStatusOfHaaS implements Command {
public class CheckStatusOfHaaS extends CommandBase implements Command {
@Parameter
private LogService log;
@Parameter(label="Work directory",persist=true)
private File workDirectory;
@Parameter(label="Work directory",persist=true,required = false)
private File workDirectory2;
@SuppressWarnings("unused")
private JobManager jobManager;
@Override
public void run() {
try {
jobManager = new JobManager(getWorkingDirectoryPath());
jobManager = new JobManager(getWorkingDirectoryPath(), getGate());
} catch (IOException e) {
log.error(e);
}
......@@ -47,7 +53,8 @@ public class CheckStatusOfHaaS implements Command {
final ImageJ ij = new ImageJ();
ij.launch(args);
ij.command().run(CheckStatusOfHaaS.class, true);
//ij.command().run(CheckStatusOfHaaS.class, true);
}
}
package cz.it4i.fiji.haas;
import org.scijava.log.LogService;
import org.scijava.plugin.Parameter;
class CommandBase {
@Parameter
private LogService _log;
protected ImageJGate getGate() {
return gate;
}
private ImageJGate gate = new ImageJGate() {
@Override
public LogService getLog() {
return _log;
}
};
}
package cz.it4i.fiji.haas;
import org.scijava.log.LogService;
interface ImageJGate {
LogService getLog();
}
......@@ -17,6 +17,8 @@ import cz.it4i.fiji.haas_java_client.JobState;
public class Job {
private static final String JOB_ID_PROPERTY = "job.id";
private static final String JOB_STATE_PROPERTY = "job.state";
......@@ -32,9 +34,11 @@ public class Job {
private Supplier<HaaSClient> haasClientSupplier;
private JobState state;
private ImageJGate gate;
public Job(Path path, Collection<Path> files, Supplier<HaaSClient> haasClientSupplier) throws IOException {
this(haasClientSupplier);
public Job(Path path, Collection<Path> files, Supplier<HaaSClient> haasClientSupplier, ImageJGate gate) throws IOException {
this(haasClientSupplier,gate);
HaaSClient client = this.haasClientSupplier.get();
long id = client.start(files, "TestOutRedirect",
Collections.emptyList());
......@@ -46,8 +50,8 @@ public class Job {
public Job(Path p, Supplier<HaaSClient> haasClientSupplier) throws IOException {
this(haasClientSupplier);
public Job(Path p, Supplier<HaaSClient> haasClientSupplier, ImageJGate gate) throws IOException {
this(haasClientSupplier,gate);
jobDir = p;
loadJobInfo();
checkStateForDownload();
......@@ -56,7 +60,9 @@ public class Job {
private synchronized void checkStateForDownload() throws IOException {
long jobId = getJobId();
JobState actualState = haasClientSupplier.get().obtainJobInfo(jobId).getState();
gate.getLog().info("Job: " + jobId + " is " + actualState);
if(EnumSet.of(JobState.Failed, JobState.Finished, JobState.Canceled).contains(actualState) && state != actualState) {
gate.getLog().info("Downloading data.");
haasClientSupplier.get().download(jobId, jobDir);
state = actualState;
saveJobinfo();
......@@ -65,8 +71,9 @@ public class Job {
private Job(Supplier<HaaSClient> haasClientSupplier) {
private Job(Supplier<HaaSClient> haasClientSupplier, ImageJGate gate) {
this.haasClientSupplier = haasClientSupplier;
this.gate = gate;
}
private synchronized void saveJobinfo() throws IOException {
......
......@@ -16,13 +16,16 @@ public class JobManager {
private HaaSClient haasClient;
public JobManager(Path workDirectory) throws IOException {
private ImageJGate gate;
public JobManager(Path workDirectory, ImageJGate gate) throws IOException {
super();
this.gate = gate;
this.workDirectory = workDirectory;
Files.list(this.workDirectory).filter(p -> Files.isDirectory(p) && Job.isJobPath(p))
.forEach(p -> {
try {
jobs.add(new Job(p,this::getHaasClient));
jobs.add(new Job(p,this::getHaasClient, gate));
} catch (IOException e) {
e.printStackTrace();
}
......@@ -31,7 +34,7 @@ public class JobManager {
}
public void startJob(Path path, Collection<Path> files) throws IOException {
jobs.add(new Job(path, files,this::getHaasClient));
jobs.add(new Job(path, files,this::getHaasClient,gate));
}
private HaaSClient getHaasClient() {
......
......@@ -20,7 +20,7 @@ import net.imagej.ImageJ;
*
*/
@Plugin(type = Command.class, headless = true, menuPath = "Plugins>Run with HaaS")
public class RunWithHaaS implements Command {
public class RunWithHaaS extends CommandBase implements Command {
@Parameter
private LogService log;
......@@ -36,7 +36,7 @@ public class RunWithHaaS implements Command {
@Override
public void run() {
try {
jobManager = new JobManager(getWorkingDirectoryPath());
jobManager = new JobManager(getWorkingDirectoryPath(), getGate());
jobManager.startJob(getWorkingDirectoryPath(),getContent(dataDirectory));
} catch (IOException e) {
log.error(e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment