X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Fexecution%2FExecutionThread.java;h=c81e8b1a0d64eecfa2b13bd5a2a3349d1024ed2a;hb=31a8055cac622a55afd2668e77f00aba1d031f91;hp=3c85055f816dfa8efcda98a93677085e170ef27e;hpb=1700d7107498d27348384ab6fd9d6c5d535d823b;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ExecutionThread.java b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ExecutionThread.java index 3c85055f8..c81e8b1a0 100644 --- a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ExecutionThread.java +++ b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ExecutionThread.java @@ -8,12 +8,13 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.argeo.slc.execution.ExecutionFlowDescriptor; import org.argeo.slc.process.RealizedFlow; -import org.argeo.slc.process.SlcExecution; import org.argeo.slc.process.SlcExecutionNotifier; import org.argeo.slc.process.SlcExecutionStep; /** Thread of a single execution */ public class ExecutionThread extends Thread { + public final static String SYSPROP_EXECUTION_AUTO_UPGRADE = "slc.execution.autoupgrade"; + private final static Log log = LogFactory.getLog(ExecutionThread.class); private final RealizedFlow realizedFlow; @@ -39,35 +40,38 @@ public class ExecutionThread extends Thread { .getFlowDescriptor(); String flowName = executionFlowDescriptor.getName(); - dispatchAddStep(processThread.getSlcProcess(), new SlcExecutionStep( - SlcExecutionStep.TYPE_PHASE_START, "Flow " + flowName)); + dispatchAddStep(new SlcExecutionStep(SlcExecutionStep.TYPE_PHASE_START, + "Flow " + flowName)); try { + String autoUpgrade = System + .getProperty(SYSPROP_EXECUTION_AUTO_UPGRADE); + if (autoUpgrade != null && autoUpgrade.equals("true")) + processThread.getExecutionModulesManager().upgrade( + realizedFlow.getModuleNameVersion()); processThread.getExecutionModulesManager().execute(realizedFlow); } catch (Exception e) { // TODO: re-throw exception ? String msg = "Execution of flow " + flowName + " failed."; log.error(msg, e); - dispatchAddStep(processThread.getSlcProcess(), - new SlcExecutionStep(msg + " " + e.getMessage())); + dispatchAddStep(new SlcExecutionStep(msg + " " + e.getMessage())); processThread.notifyError(); } finally { processThread.flowCompleted(); - dispatchAddStep(processThread.getSlcProcess(), - new SlcExecutionStep(SlcExecutionStep.TYPE_PHASE_END, - "Flow " + flowName)); + dispatchAddStep(new SlcExecutionStep( + SlcExecutionStep.TYPE_PHASE_END, "Flow " + flowName)); } } - protected void dispatchAddStep(SlcExecution slcExecution, - SlcExecutionStep step) { - slcExecution.getSteps().add(step); + public void dispatchAddStep(SlcExecutionStep step) { + processThread.getSlcProcess().getSteps().add(step); List steps = new ArrayList(); steps.add(step); for (Iterator it = processThread .getExecutionModulesManager().getSlcExecutionNotifiers() .iterator(); it.hasNext();) { - it.next().addSteps(slcExecution, steps); + it.next().addSteps(processThread.getSlcProcess(), steps); } } + }