Search in sources :

Example 11 with AbstractRuntimeManager

use of org.jbpm.runtime.manager.impl.AbstractRuntimeManager in project jbpm by kiegroup.

the class AsyncWorkItemHandlerTest method testRunProcessWithAsyncHandlerRecordExecutionErrorTaskAutoAck.

@SuppressWarnings("unchecked")
@Test(timeout = 20000)
public void testRunProcessWithAsyncHandlerRecordExecutionErrorTaskAutoAck() throws Exception {
    CountDownAsyncJobListener countDownListener = new CountDownAsyncJobListener(1);
    ((ExecutorServiceImpl) executorService).addAsyncJobListener(countDownListener);
    ((ExecutorServiceImpl) executorService).setRetries(0);
    RuntimeEnvironment environment = RuntimeEnvironmentBuilder.Factory.get().newDefaultBuilder().userGroupCallback(userGroupCallback).addAsset(ResourceFactory.newClassPathResource("BPMN2-UserTaskWithRollback.bpmn2"), ResourceType.BPMN2).get();
    manager = RuntimeManagerFactory.Factory.get().newSingletonRuntimeManager(environment);
    assertNotNull(manager);
    RuntimeEngine runtime = manager.getRuntimeEngine(EmptyContext.get());
    KieSession ksession = runtime.getKieSession();
    assertNotNull(ksession);
    ProcessInstance processInstance = ksession.startProcess("UserTaskWithRollback");
    assertEquals(ProcessInstance.STATE_ACTIVE, processInstance.getState());
    processInstance = runtime.getKieSession().getProcessInstance(processInstance.getId());
    assertNotNull(processInstance);
    manager.disposeRuntimeEngine(runtime);
    runtime = manager.getRuntimeEngine(EmptyContext.get());
    TaskService taskService = runtime.getTaskService();
    List<TaskSummary> tasks = taskService.getTasksAssignedAsPotentialOwner("john", "en-UK");
    assertEquals(1, tasks.size());
    long taskId = tasks.get(0).getId();
    TaskLifeCycleEventListener listener = new DefaultTaskEventListener() {

        @Override
        public void afterTaskStartedEvent(TaskEvent event) {
            throw new TaskExecutionException("On purpose");
        }
    };
    try {
        ((EventService<TaskLifeCycleEventListener>) taskService).registerTaskEventListener(listener);
        taskService.start(taskId, "john");
        fail("Start task should fail due to broken script");
    } catch (Throwable e) {
    // expected
    }
    manager.disposeRuntimeEngine(runtime);
    ExecutionErrorManager errorManager = ((AbstractRuntimeManager) manager).getExecutionErrorManager();
    assertNotNull("ErrorManager is null", errorManager);
    ExecutionErrorStorage errorStorage = errorManager.getStorage();
    assertNotNull("ErrorStorage is null", errorStorage);
    List<ExecutionError> errors = errorStorage.list(0, 10);
    assertEquals(1, errors.size());
    ExecutionError error = errors.get(0);
    assertNotNull(error);
    assertEquals("Task", error.getType());
    assertEquals("UserTaskWithRollback", error.getProcessId());
    assertEquals("Hello", error.getActivityName());
    assertEquals(manager.getIdentifier(), error.getDeploymentId());
    assertNotNull(error.getError());
    assertNotNull(error.getErrorMessage());
    assertNotNull(error.getActivityId());
    assertNotNull(error.getProcessInstanceId());
    assertNull(error.getAcknowledgedAt());
    assertNull(error.getAcknowledgedBy());
    assertFalse(error.isAcknowledged());
    countDownListener.reset(1);
    // first run should not ack the job as it's in error state
    CommandContext ctx = new CommandContext();
    ctx.setData("SingleRun", "true");
    ctx.setData("EmfName", "org.jbpm.persistence.complete");
    executorService.scheduleRequest(TaskAutoAckErrorCommand.class.getName(), ctx);
    countDownListener.waitTillCompleted();
    errors = errorStorage.list(0, 10);
    assertEquals(1, errors.size());
    error = errors.get(0);
    assertNotNull(error);
    assertFalse(error.isAcknowledged());
    runtime = manager.getRuntimeEngine(EmptyContext.get());
    tasks = taskService.getTasksAssignedAsPotentialOwner("john", "en-UK");
    assertEquals(1, tasks.size());
    taskId = tasks.get(0).getId();
    ((EventService<TaskLifeCycleEventListener>) taskService).removeTaskEventListener(listener);
    taskService.start(taskId, "john");
    Map<String, Object> results = new HashMap<>();
    results.put("output1", "ok");
    taskService.complete(taskId, "john", results);
    manager.disposeRuntimeEngine(runtime);
    countDownListener.reset(1);
    // since task was completed auto ack should work
    executorService.scheduleRequest(TaskAutoAckErrorCommand.class.getName(), ctx);
    countDownListener.waitTillCompleted();
    errors = errorStorage.list(0, 10);
    assertEquals(1, errors.size());
    error = errors.get(0);
    assertNotNull(error);
    assertTrue(error.isAcknowledged());
}
Also used : ExecutionError(org.kie.internal.runtime.error.ExecutionError) CommandContext(org.kie.api.executor.CommandContext) HashMap(java.util.HashMap) AbstractRuntimeManager(org.jbpm.runtime.manager.impl.AbstractRuntimeManager) TaskAutoAckErrorCommand(org.jbpm.executor.commands.error.TaskAutoAckErrorCommand) DefaultTaskEventListener(org.jbpm.services.task.events.DefaultTaskEventListener) CountDownAsyncJobListener(org.jbpm.executor.test.CountDownAsyncJobListener) ExecutionErrorManager(org.kie.internal.runtime.error.ExecutionErrorManager) ExecutionErrorStorage(org.kie.internal.runtime.error.ExecutionErrorStorage) KieSession(org.kie.api.runtime.KieSession) RuntimeEngine(org.kie.api.runtime.manager.RuntimeEngine) ExecutorServiceImpl(org.jbpm.executor.impl.ExecutorServiceImpl) RuntimeEnvironment(org.kie.api.runtime.manager.RuntimeEnvironment) TaskService(org.kie.api.task.TaskService) EventService(org.kie.internal.task.api.EventService) TaskExecutionException(org.jbpm.services.task.exception.TaskExecutionException) TaskSummary(org.kie.api.task.model.TaskSummary) TaskEvent(org.kie.api.task.TaskEvent) ProcessInstance(org.kie.api.runtime.process.ProcessInstance) TaskLifeCycleEventListener(org.kie.api.task.TaskLifeCycleEventListener) AbstractExecutorBaseTest(org.jbpm.test.util.AbstractExecutorBaseTest) Test(org.junit.Test)

Example 12 with AbstractRuntimeManager

use of org.jbpm.runtime.manager.impl.AbstractRuntimeManager in project jbpm by kiegroup.

the class AsyncWorkItemHandlerCmdCallback method closeErrorHandler.

private void closeErrorHandler(RuntimeManager manager) {
    ExecutionErrorManager errorManager = ((AbstractRuntimeManager) manager).getExecutionErrorManager();
    if (errorManager == null) {
        return;
    }
    ((ExecutionErrorManagerImpl) errorManager).closeHandler();
}
Also used : ExecutionErrorManager(org.kie.internal.runtime.error.ExecutionErrorManager) AbstractRuntimeManager(org.jbpm.runtime.manager.impl.AbstractRuntimeManager) ExecutionErrorManagerImpl(org.jbpm.runtime.manager.impl.error.ExecutionErrorManagerImpl)

Example 13 with AbstractRuntimeManager

use of org.jbpm.runtime.manager.impl.AbstractRuntimeManager in project jbpm by kiegroup.

the class AbstractDeploymentService method undeploy.

@Override
public void undeploy(DeploymentUnit unit) {
    List<Integer> states = new ArrayList<Integer>();
    states.add(ProcessInstance.STATE_ACTIVE);
    states.add(ProcessInstance.STATE_PENDING);
    states.add(ProcessInstance.STATE_SUSPENDED);
    Collection<ProcessInstanceDesc> activeProcesses = runtimeDataService.getProcessInstancesByDeploymentId(unit.getIdentifier(), states, new QueryContext());
    if (!activeProcesses.isEmpty()) {
        throw new IllegalStateException("Undeploy forbidden - there are active processes instances for deployment " + unit.getIdentifier());
    }
    synchronized (this) {
        DeployedUnit deployed = deploymentsMap.remove(unit.getIdentifier());
        if (deployed != null) {
            RuntimeManager manager = deployed.getRuntimeManager();
            ((AbstractRuntimeManager) manager).close(true);
        }
        notifyOnUnDeploy(unit, deployed);
    }
}
Also used : AbstractRuntimeManager(org.jbpm.runtime.manager.impl.AbstractRuntimeManager) ArrayList(java.util.ArrayList) DeployedUnit(org.jbpm.services.api.model.DeployedUnit) RuntimeManager(org.kie.api.runtime.manager.RuntimeManager) AbstractRuntimeManager(org.jbpm.runtime.manager.impl.AbstractRuntimeManager) InternalRuntimeManager(org.kie.internal.runtime.manager.InternalRuntimeManager) ProcessInstanceDesc(org.jbpm.services.api.model.ProcessInstanceDesc) QueryContext(org.kie.api.runtime.query.QueryContext)

Example 14 with AbstractRuntimeManager

use of org.jbpm.runtime.manager.impl.AbstractRuntimeManager in project jbpm by kiegroup.

the class AutoAckErrorCommand method execute.

@Override
public ExecutionResults execute(CommandContext ctx) throws Exception {
    ExecutionResults executionResults = new ExecutionResults();
    String emfName = (String) ctx.getData("EmfName");
    if (emfName == null) {
        emfName = "org.jbpm.domain";
    }
    String singleRun = (String) ctx.getData("SingleRun");
    if ("true".equalsIgnoreCase(singleRun)) {
        // disable rescheduling
        this.nextScheduleTimeAdd = -1;
    }
    String nextRun = (String) ctx.getData("NextRun");
    if (nextRun != null) {
        nextScheduleTimeAdd = DateTimeUtils.parseDateAsDuration(nextRun);
    }
    // get hold of persistence and create instance of audit service
    EntityManagerFactory emf = EntityManagerFactoryManager.get().getOrCreate(emfName);
    EntityManager em = emf.createEntityManager();
    try {
        List<ExecutionErrorInfo> errorsToAck = findErrorsToAck(em);
        logger.debug("Found {} jobs that can be auto ack", errorsToAck.size());
        errorsToAck.forEach(error -> {
            AbstractRuntimeManager manager = (AbstractRuntimeManager) RuntimeManagerRegistry.get().getManager(error.getDeploymentId());
            if (manager != null) {
                ExecutionErrorManager errorManager = manager.getExecutionErrorManager();
                errorManager.getStorage().acknowledge("SYSTEM", error.getErrorId());
                logger.debug("Error {} has been auto acknowledged by system based on {}", error.getErrorId(), getAckRule());
            } else {
                logger.warn("Unable to ack error {} due missing runtime manager for '{}'", error.getErrorId(), error.getDeploymentId());
            }
        });
    } finally {
        em.close();
    }
    return executionResults;
}
Also used : EntityManager(javax.persistence.EntityManager) ExecutionErrorInfo(org.jbpm.runtime.manager.impl.jpa.ExecutionErrorInfo) ExecutionResults(org.kie.api.executor.ExecutionResults) ExecutionErrorManager(org.kie.internal.runtime.error.ExecutionErrorManager) EntityManagerFactory(javax.persistence.EntityManagerFactory) AbstractRuntimeManager(org.jbpm.runtime.manager.impl.AbstractRuntimeManager)

Example 15 with AbstractRuntimeManager

use of org.jbpm.runtime.manager.impl.AbstractRuntimeManager in project jbpm by kiegroup.

the class GlobalQuartzDBTimerServiceTest method testTimerStartManagerClose.

@Test(timeout = 20000)
public void testTimerStartManagerClose() throws Exception {
    NodeLeftCountDownProcessEventListener countDownListener = new NodeLeftCountDownProcessEventListener("StartProcess", 3);
    QuartzSchedulerService additionalCopy = new QuartzSchedulerService();
    additionalCopy.initScheduler(null);
    // prepare listener to assert results
    final List<Long> timerExporations = new ArrayList<Long>();
    ProcessEventListener listener = new DefaultProcessEventListener() {

        @Override
        public void beforeProcessStarted(ProcessStartedEvent event) {
            timerExporations.add(event.getProcessInstance().getId());
        }
    };
    environment = RuntimeEnvironmentBuilder.Factory.get().newDefaultBuilder().entityManagerFactory(emf).addAsset(ResourceFactory.newClassPathResource("org/jbpm/test/functional/timer/TimerStart2.bpmn2"), ResourceType.BPMN2).schedulerService(globalScheduler).registerableItemsFactory(new TestRegisterableItemsFactory(listener, countDownListener)).get();
    manager = getManager(environment, false);
    RuntimeEngine runtime = manager.getRuntimeEngine(ProcessInstanceIdContext.get());
    KieSession ksession = runtime.getKieSession();
    assertEquals(0, timerExporations.size());
    countDownListener.waitTillCompleted();
    manager.disposeRuntimeEngine(runtime);
    int atDispose = timerExporations.size();
    assertTrue(atDispose > 0);
    ((AbstractRuntimeManager) manager).close(true);
    countDownListener.reset(1);
    countDownListener.waitTillCompleted(3000);
    assertEquals(atDispose, timerExporations.size());
    additionalCopy.shutdown();
}
Also used : RuntimeEngine(org.kie.api.runtime.manager.RuntimeEngine) QuartzSchedulerService(org.jbpm.process.core.timer.impl.QuartzSchedulerService) ProcessEventListener(org.kie.api.event.process.ProcessEventListener) DefaultProcessEventListener(org.kie.api.event.process.DefaultProcessEventListener) NodeLeftCountDownProcessEventListener(org.jbpm.test.listener.NodeLeftCountDownProcessEventListener) AbstractRuntimeManager(org.jbpm.runtime.manager.impl.AbstractRuntimeManager) ArrayList(java.util.ArrayList) ProcessStartedEvent(org.kie.api.event.process.ProcessStartedEvent) NodeLeftCountDownProcessEventListener(org.jbpm.test.listener.NodeLeftCountDownProcessEventListener) DefaultProcessEventListener(org.kie.api.event.process.DefaultProcessEventListener) KieSession(org.kie.api.runtime.KieSession) Test(org.junit.Test)

Aggregations

AbstractRuntimeManager (org.jbpm.runtime.manager.impl.AbstractRuntimeManager)18 Test (org.junit.Test)12 KieSession (org.kie.api.runtime.KieSession)12 RuntimeEngine (org.kie.api.runtime.manager.RuntimeEngine)12 ExecutionError (org.kie.internal.runtime.error.ExecutionError)12 ExecutionErrorManager (org.kie.internal.runtime.error.ExecutionErrorManager)12 ExecutionErrorStorage (org.kie.internal.runtime.error.ExecutionErrorStorage)10 HashMap (java.util.HashMap)9 ProcessInstance (org.kie.api.runtime.process.ProcessInstance)9 ArrayList (java.util.ArrayList)6 TaskSummary (org.kie.api.task.model.TaskSummary)6 ExecutorServiceImpl (org.jbpm.executor.impl.ExecutorServiceImpl)5 AbstractBaseTest (org.jbpm.test.util.AbstractBaseTest)5 AbstractExecutorBaseTest (org.jbpm.test.util.AbstractExecutorBaseTest)5 RuntimeEnvironment (org.kie.api.runtime.manager.RuntimeEnvironment)5 QueryContext (org.kie.api.runtime.query.QueryContext)5 TaskService (org.kie.api.task.TaskService)5 CountDownAsyncJobListener (org.jbpm.executor.test.CountDownAsyncJobListener)4 List (java.util.List)3 DefaultRegisterableItemsFactory (org.jbpm.runtime.manager.impl.DefaultRegisterableItemsFactory)3