Package org.jberet.runtime.runner

Source Code of org.jberet.runtime.runner.FlowExecutionRunner

/*
* Copyright (c) 2013 Red Hat, Inc. and/or its affiliates.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Cheng Fang - Initial API and implementation
*/

package org.jberet.runtime.runner;

import java.util.List;
import java.util.concurrent.CountDownLatch;
import javax.batch.runtime.BatchStatus;

import org.jberet.job.model.Flow;
import org.jberet.job.model.JobElement;
import org.jberet.runtime.context.AbstractContext;
import org.jberet.runtime.context.FlowContextImpl;
import org.jberet.spi.ThreadContextSetup.TearDownHandle;

import static org.jberet.util.BatchLogger.LOGGER;

public final class FlowExecutionRunner extends CompositeExecutionRunner<FlowContextImpl> implements Runnable {
    private final Flow flow;
    private final CountDownLatch latch;

    public FlowExecutionRunner(final FlowContextImpl flowContext, final CompositeExecutionRunner enclosingRunner, final CountDownLatch latch) {
        super(flowContext, enclosingRunner);
        this.flow = flowContext.getFlow();
        this.latch = latch;
    }

    @Override
    protected List<? extends JobElement> getJobElements() {
        return flow.getJobElements();
    }

    @Override
    public void run() {
        final TearDownHandle handle = jobContext.getBatchEnvironment().getThreadContextSetup().setup();
        try {
            batchContext.setBatchStatus(BatchStatus.STARTED);
            jobContext.setBatchStatus(BatchStatus.STARTED);

            try {
                runFromHeadOrRestartPoint(null);
            } catch (Throwable e) {
                LOGGER.failToRunJob(e, jobContext.getJobName(), flow.getId(), flow);
                batchContext.setBatchStatus(BatchStatus.FAILED);
                for (final AbstractContext c : batchContext.getOuterContexts()) {
                    c.setBatchStatus(BatchStatus.FAILED);
                }
            } finally {
                if (latch != null) {
                    latch.countDown();
                }
            }

            if (batchContext.getBatchStatus() == BatchStatus.STARTED) {  //has not been marked as failed, stopped or abandoned
                batchContext.setBatchStatus(BatchStatus.COMPLETED);
            }

            if (batchContext.getBatchStatus() == BatchStatus.COMPLETED) {
                final String next = resolveTransitionElements(flow.getTransitionElements(), flow.getAttributeNext(), false);
                enclosingRunner.runJobElement(next, batchContext.getFlowExecution().getLastStepExecution());
            }
        } finally {
            handle.tearDown();
        }
    }

}
TOP

Related Classes of org.jberet.runtime.runner.FlowExecutionRunner

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.