org.flowable.engine.impl.agenda.DebugContinueProcessOperation Maven / Gradle / Ivy
/* 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.flowable.engine.impl.agenda;
import org.flowable.bpmn.model.FlowNode;
import org.flowable.common.engine.impl.interceptor.CommandContext;
import org.flowable.engine.impl.persistence.entity.ExecutionEntity;
import org.flowable.engine.impl.util.CommandContextUtil;
import org.flowable.engine.runtime.ProcessDebugger;
import org.flowable.job.service.JobService;
import org.flowable.job.service.impl.persistence.entity.JobEntity;
/**
* This class extends {@link ContinueProcessOperation} with the possibility to check whether execution is trying to
* execute a breakpoint
*
* @author martin.grofcik
*/
public class DebugContinueProcessOperation extends ContinueProcessOperation {
public static final String HANDLER_TYPE_BREAK_POINT = "breakpoint";
protected ProcessDebugger debugger;
public DebugContinueProcessOperation(ProcessDebugger debugger, CommandContext commandContext,
ExecutionEntity execution, boolean forceSynchronousOperation, boolean inCompensation) {
super(commandContext, execution, forceSynchronousOperation, inCompensation, null);
this.debugger = debugger;
}
public DebugContinueProcessOperation(ProcessDebugger debugger, CommandContext commandContext, ExecutionEntity execution) {
super(commandContext, execution);
this.debugger = debugger;
}
@Override
protected void continueThroughFlowNode(FlowNode flowNode) {
if (debugger.isBreakpoint(execution)) {
breakExecution(flowNode);
} else {
super.continueThroughFlowNode(flowNode);
}
}
protected void breakExecution(FlowNode flowNode) {
JobService jobService = CommandContextUtil.getJobService(commandContext);
JobEntity brokenJob = jobService.createJob();
brokenJob.setJobType(JobEntity.JOB_TYPE_MESSAGE);
brokenJob.setRevision(1);
brokenJob.setRetries(1);
brokenJob.setExecutionId(execution.getId());
brokenJob.setProcessInstanceId(execution.getProcessInstanceId());
brokenJob.setProcessDefinitionId(execution.getProcessDefinitionId());
brokenJob.setExclusive(false);
brokenJob.setJobHandlerType(HANDLER_TYPE_BREAK_POINT);
// Inherit tenant id (if applicable)
if (execution.getTenantId() != null) {
brokenJob.setTenantId(execution.getTenantId());
}
jobService.insertJob(brokenJob);
jobService.moveJobToSuspendedJob(brokenJob);
}
}