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=afb6ddbd2b8c72f4e955ded044fb0726dbc9f22e;hb=a2ecbd2a3eae94576fe4db3d651bc0908245da90;hp=0c6864f440fccf7aab7fbd7b346c1eaf5a32c3b0;hpb=31a8055cac622a55afd2668e77f00aba1d031f91;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 0c6864f44..afb6ddbd2 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 @@ -1,3 +1,19 @@ +/* + * Copyright (C) 2010 Mathieu Baudier + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.argeo.slc.core.execution; import java.util.ArrayList; @@ -20,6 +36,7 @@ import org.springframework.beans.factory.BeanNameAware; import org.springframework.beans.factory.InitializingBean; import org.springframework.validation.MapBindingResult; +/** Default implementation of an execution flow. */ public class DefaultExecutionFlow implements ExecutionFlow, InitializingBean, BeanNameAware { private final static Log log = LogFactory @@ -67,13 +84,13 @@ public class DefaultExecutionFlow implements ExecutionFlow, InitializingBean, ExecutionSpecAttribute attr = executionSpec.getAttributes() .get(key); - if (attr.getIsParameter() && !isSetAsParameter(key)) { - errors.rejectValue(key, "Parameter not set"); + if (attr.getIsImmutable() && !isSetAsParameter(key)) { + errors.rejectValue(key, "Immutable but not set"); break; } - if (attr.getIsFrozen() && !isSetAsParameter(key)) { - errors.rejectValue(key, "Frozen but not set as parameter"); + if (attr.getIsConstant() && !isSetAsParameter(key)) { + errors.rejectValue(key, "Constant but not set as parameter"); break; } @@ -92,9 +109,23 @@ public class DefaultExecutionFlow implements ExecutionFlow, InitializingBean, public void run() { try { for (Runnable executable : executables) { + if (Thread.interrupted()) { + log.error("Flow '" + getName() + "' killed before '" + + executable + "'"); + Thread.currentThread().interrupt(); + return; + // throw new ThreadDeath(); + } this.doExecuteRunnable(executable); } } catch (RuntimeException e) { + if (Thread.interrupted()) { + log.error("Flow '" + getName() + + "' killed while receiving an unrelated exception", e); + Thread.currentThread().interrupt(); + return; + // throw new ThreadDeath(); + } if (failOnError) throw e; else {