X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Fexecution%2FDefaultExecutionFlow.java;h=0c6864f440fccf7aab7fbd7b346c1eaf5a32c3b0;hb=17ffc9fdb8f3a490881e540db8ff81655308233e;hp=a1857a8c1482376dcf5b48378c66e35a2c7523d5;hpb=5e28cf8cc3e7cb06b4ed541402dd5cf750845ea8;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/DefaultExecutionFlow.java b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/DefaultExecutionFlow.java index a1857a8c1..0c6864f44 100644 --- a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/DefaultExecutionFlow.java +++ b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/DefaultExecutionFlow.java @@ -15,6 +15,7 @@ import org.argeo.slc.execution.ExecutionSpec; import org.argeo.slc.execution.ExecutionSpecAttribute; import org.argeo.slc.structure.StructureAware; import org.argeo.slc.structure.StructureRegistry; +import org.springframework.aop.scope.ScopedObject; import org.springframework.beans.factory.BeanNameAware; import org.springframework.beans.factory.InitializingBean; import org.springframework.validation.MapBindingResult; @@ -91,7 +92,7 @@ public class DefaultExecutionFlow implements ExecutionFlow, InitializingBean, public void run() { try { for (Runnable executable : executables) { - executable.run(); + this.doExecuteRunnable(executable); } } catch (RuntimeException e) { if (failOnError) @@ -100,25 +101,39 @@ public class DefaultExecutionFlow implements ExecutionFlow, InitializingBean, log.error("Execution flow failed," + " but process did not fail" + " because failOnError property" - + " is set to false: " + e, e); + + " is set to false: " + e); if (log.isTraceEnabled()) e.printStackTrace(); } } } + public void doExecuteRunnable(Runnable runnable) { + runnable.run(); + } + @SuppressWarnings(value = { "unchecked" }) public void afterPropertiesSet() throws Exception { + if (path == null) { + if (name.charAt(0) == '/') { + path = name.substring(0, name.lastIndexOf('/')); + } + } + if (path != null) { for (Runnable executable : executables) { - if (executable instanceof StructureAware) { + if (executable instanceof StructureAware + && !(executable instanceof ScopedObject)) { ((StructureAware) executable).notifyCurrentPath( registry, new TreeSPath(path)); } else if (executable instanceof DefaultExecutionFlow) { // so we don't need to have DefaultExecutionFlow // implementing StructureAware + // FIXME: probably has side effects DefaultExecutionFlow flow = (DefaultExecutionFlow) executable; - flow.setPath(path + '/' + flow.getName()); + String newPath = path + '/' + flow.getName(); + flow.setPath(newPath); + log.warn(newPath + " was forcibly set on " + flow); } } } @@ -172,14 +187,21 @@ public class DefaultExecutionFlow implements ExecutionFlow, InitializingBean, .getAttributes().get(key).getValue() != null); } + @Override public String toString() { - return new StringBuffer("Flow ").append(name).toString(); + return new StringBuffer("Execution flow ").append(name).toString(); } + @Override public boolean equals(Object obj) { return ((ExecutionFlow) obj).getName().equals(name); } + @Override + public int hashCode() { + return name.hashCode(); + } + public String getPath() { return path; }