org.camunda.bpm.engine.impl.tree.ActivityExecutionHierarchyWalker Maven / Gradle / Ivy
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
* under one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. Camunda licenses this file to you under the Apache License,
* Version 2.0; 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.camunda.bpm.engine.impl.tree;
import java.util.Map;
import org.camunda.bpm.engine.impl.pvm.PvmScope;
import org.camunda.bpm.engine.impl.pvm.delegate.ActivityExecution;
import org.camunda.bpm.engine.impl.pvm.process.ScopeImpl;
import org.camunda.bpm.engine.impl.pvm.runtime.PvmExecutionImpl;
/**
* Combination of flow scope and execution walker. Walks the flow scope
* hierarchy upwards from the given execution to the top level process instance.
*
* @author Philipp Ossler
*
*/
public class ActivityExecutionHierarchyWalker extends SingleReferenceWalker {
private Map activityExecutionMapping;
public ActivityExecutionHierarchyWalker(ActivityExecution execution) {
super(createTuple(execution));
activityExecutionMapping = execution.createActivityExecutionMapping();
}
@Override
protected ActivityExecutionTuple nextElement() {
ActivityExecutionTuple currentElement = getCurrentElement();
PvmScope currentScope = currentElement.getScope();
PvmExecutionImpl currentExecution = (PvmExecutionImpl) currentElement.getExecution();
PvmScope flowScope = currentScope.getFlowScope();
if (!currentExecution.isScope()) {
currentExecution = activityExecutionMapping.get(currentScope);
return new ActivityExecutionTuple(currentScope, currentExecution);
} else if (flowScope != null) {
// walk to parent scope
PvmExecutionImpl execution = activityExecutionMapping.get(flowScope);
return new ActivityExecutionTuple(flowScope, execution);
} else {
// this is the process instance, look for parent
currentExecution = activityExecutionMapping.get(currentScope);
PvmExecutionImpl superExecution = currentExecution.getSuperExecution();
if (superExecution != null) {
// walk to parent process instance
activityExecutionMapping = superExecution.createActivityExecutionMapping();
return createTuple(superExecution);
} else {
// this is the top level process instance
return null;
}
}
}
protected static ActivityExecutionTuple createTuple(ActivityExecution execution) {
PvmScope flowScope = getCurrentFlowScope(execution);
return new ActivityExecutionTuple(flowScope, execution);
}
protected static PvmScope getCurrentFlowScope(ActivityExecution execution) {
ScopeImpl scope = null;
if(execution.getTransition() != null) {
scope = execution.getTransition().getDestination().getFlowScope();
}
else {
scope = (ScopeImpl) execution.getActivity();
}
if (scope.isScope()) {
return scope;
} else {
return scope.getFlowScope();
}
}
public ReferenceWalker addScopePreVisitor(TreeVisitor visitor) {
return addPreVisitor(new ScopeVisitorWrapper(visitor));
}
public ReferenceWalker addScopePostVisitor(TreeVisitor visitor) {
return addPostVisitor(new ScopeVisitorWrapper(visitor));
}
public ReferenceWalker addExecutionPreVisitor(TreeVisitor visitor) {
return addPreVisitor(new ExecutionVisitorWrapper(visitor));
}
public ReferenceWalker addExecutionPostVisitor(TreeVisitor visitor) {
return addPostVisitor(new ExecutionVisitorWrapper(visitor));
}
private class ExecutionVisitorWrapper implements TreeVisitor {
private final TreeVisitor collector;
public ExecutionVisitorWrapper(TreeVisitor collector) {
this.collector = collector;
}
@Override
public void visit(ActivityExecutionTuple tuple) {
collector.visit(tuple.getExecution());
}
}
private class ScopeVisitorWrapper implements TreeVisitor {
private final TreeVisitor collector;
public ScopeVisitorWrapper(TreeVisitor collector) {
this.collector = collector;
}
@Override
public void visit(ActivityExecutionTuple tuple) {
collector.visit(tuple.getScope());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy