Package org.jberet.runtime.runner

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

/*
* 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 java.util.concurrent.TimeUnit;
import javax.batch.runtime.BatchStatus;
import javax.batch.runtime.StepExecution;

import org.jberet.job.model.Flow;
import org.jberet.job.model.JobElement;
import org.jberet.job.model.Split;
import org.jberet.runtime.FlowExecutionImpl;
import org.jberet.runtime.context.AbstractContext;
import org.jberet.runtime.context.SplitContextImpl;
import org.jberet.spi.ThreadContextSetup.TearDownHandle;

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

public final class SplitExecutionRunner extends CompositeExecutionRunner<SplitContextImpl> implements Runnable {
    private static final long SPLIT_FLOW_TIMEOUT_SECONDS = 300;
    private final Split split;

    public SplitExecutionRunner(final SplitContextImpl splitContext, final CompositeExecutionRunner enclosingRunner) {
        super(splitContext, enclosingRunner);
        this.split = splitContext.getSplit();
    }

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

    @Override
    public void run() {
        final TearDownHandle handle = jobContext.getBatchEnvironment().getThreadContextSetup().setup();
        try {
            batchContext.setBatchStatus(BatchStatus.STARTED);
            final List<Flow> flows = split.getFlows();
            final CountDownLatch latch = new CountDownLatch(flows.size());
            try {
                for (final Flow f : flows) {
                    runFlow(f, latch);
                }
                latch.await(SPLIT_FLOW_TIMEOUT_SECONDS, TimeUnit.SECONDS);

                //check FlowResults from each flow
                final List<FlowExecutionImpl> fes = batchContext.getFlowExecutions();
                for (int i = 0; i < fes.size(); i++) {
                    if (fes.get(i).getBatchStatus().equals(BatchStatus.FAILED)) {
                        batchContext.setBatchStatus(BatchStatus.FAILED);
                        for (final AbstractContext c : batchContext.getOuterContexts()) {
                            c.setBatchStatus(BatchStatus.FAILED);
                        }
                        break;
                    }
                }
                if (batchContext.getBatchStatus().equals(BatchStatus.STARTED)) {
                    batchContext.setBatchStatus(BatchStatus.COMPLETED);
                }
            } catch (Throwable e) {
                LOGGER.failToRunJob(e, jobContext.getJobName(), split.getId(), split);
                for (final AbstractContext c : batchContext.getOuterContexts()) {
                    c.setBatchStatus(BatchStatus.FAILED);
                }
            }

            if (batchContext.getBatchStatus() == BatchStatus.COMPLETED) {
                final String next = split.getAttributeNext()//split has no transition elements
                if (next != null) {
                    //the last StepExecution of each flow is needed if the next element after this split is a decision
                    final List<FlowExecutionImpl> fes = batchContext.getFlowExecutions();
                    final StepExecution[] stepExecutions = new StepExecution[fes.size()];
                    for (int i = 0; i < fes.size(); i++) {
                        stepExecutions[i] = fes.get(i).getLastStepExecution();
                    }
                    enclosingRunner.runJobElement(next, stepExecutions);
                }
            }
        } finally {
            handle.tearDown();
        }
    }

}
TOP

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

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.