EMMA Coverage Report (generated Thu May 22 12:08:10 CDT 2014)
[all classes][org.springframework.batch.core.job]

COVERAGE SUMMARY FOR SOURCE FILE [SimpleStepHandler.java]

nameclass, %method, %block, %line, %
SimpleStepHandler.java100% (1/1)80%  (8/10)90%  (239/266)86%  (48/56)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SimpleStepHandler100% (1/1)80%  (8/10)90%  (239/266)86%  (48/56)
setExecutionContext (ExecutionContext): void 0%   (0/1)0%   (0/4)0%   (0/2)
setJobRepository (JobRepository): void 0%   (0/1)0%   (0/4)0%   (0/2)
handleStep (Step, JobExecution): StepExecution 100% (1/1)90%  (130/144)90%  (26/29)
shouldStart (StepExecution, JobInstance, Step): boolean 100% (1/1)92%  (61/66)91%  (10/11)
<static initializer> 100% (1/1)100% (4/4)100% (1/1)
SimpleStepHandler (): void 100% (1/1)100% (4/4)100% (2/2)
SimpleStepHandler (JobRepository): void 100% (1/1)100% (7/7)100% (2/2)
SimpleStepHandler (JobRepository, ExecutionContext): void 100% (1/1)100% (9/9)100% (4/4)
afterPropertiesSet (): void 100% (1/1)100% (9/9)100% (2/2)
stepExecutionPartOfExistingJobExecution (JobExecution, StepExecution): boolean 100% (1/1)100% (15/15)100% (1/1)

1/*
2 * Copyright 2006-2014 the original author or authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 
17package org.springframework.batch.core.job;
18 
19import org.apache.commons.logging.Log;
20import org.apache.commons.logging.LogFactory;
21import org.springframework.batch.core.BatchStatus;
22import org.springframework.batch.core.JobExecution;
23import org.springframework.batch.core.JobInstance;
24import org.springframework.batch.core.JobInterruptedException;
25import org.springframework.batch.core.StartLimitExceededException;
26import org.springframework.batch.core.Step;
27import org.springframework.batch.core.StepExecution;
28import org.springframework.batch.core.repository.JobRepository;
29import org.springframework.batch.core.repository.JobRestartException;
30import org.springframework.batch.item.ExecutionContext;
31import org.springframework.beans.factory.InitializingBean;
32import org.springframework.util.Assert;
33 
34/**
35 * Implementation of {@link StepHandler} that manages repository and restart
36 * concerns.
37 *
38 * @author Dave Syer
39 *
40 */
41public class SimpleStepHandler implements StepHandler, InitializingBean {
42 
43        private static final Log logger = LogFactory.getLog(SimpleStepHandler.class);
44 
45        private JobRepository jobRepository;
46 
47        private ExecutionContext executionContext;
48 
49        /**
50         * Convenient default constructor for configuration usage.
51         */
52        public SimpleStepHandler() {
53                this(null);
54        }
55 
56        /**
57         * @param jobRepository a {@link org.springframework.batch.core.repository.JobRepository}
58         */
59        public SimpleStepHandler(JobRepository jobRepository) {
60                this(jobRepository, new ExecutionContext());
61        }
62 
63        /**
64         * @param jobRepository a {@link org.springframework.batch.core.repository.JobRepository}
65         * @param executionContext the {@link org.springframework.batch.item.ExecutionContext} for the current Step
66         */
67        public SimpleStepHandler(JobRepository jobRepository, ExecutionContext executionContext) {
68                this.jobRepository = jobRepository;
69                this.executionContext = executionContext;
70        }
71 
72        /**
73         * Check mandatory properties (jobRepository).
74         *
75         * @see InitializingBean#afterPropertiesSet()
76         */
77        @Override
78        public void afterPropertiesSet() throws Exception {
79                Assert.state(jobRepository != null, "A JobRepository must be provided");
80        }
81 
82        /**
83         * @param jobRepository the jobRepository to set
84         */
85        public void setJobRepository(JobRepository jobRepository) {
86                this.jobRepository = jobRepository;
87        }
88 
89        /**
90         * A context containing values to be added to the step execution before it
91         * is handled.
92         *
93         * @param executionContext the execution context to set
94         */
95        public void setExecutionContext(ExecutionContext executionContext) {
96                this.executionContext = executionContext;
97        }
98 
99        @Override
100        public StepExecution handleStep(Step step, JobExecution execution) throws JobInterruptedException,
101        JobRestartException, StartLimitExceededException {
102                if (execution.isStopping()) {
103                        throw new JobInterruptedException("JobExecution interrupted.");
104                }
105 
106                JobInstance jobInstance = execution.getJobInstance();
107 
108                StepExecution lastStepExecution = jobRepository.getLastStepExecution(jobInstance, step.getName());
109                if (stepExecutionPartOfExistingJobExecution(execution, lastStepExecution)) {
110                        // If the last execution of this step was in the same job, it's
111                        // probably intentional so we want to run it again...
112                        logger.info(String.format("Duplicate step [%s] detected in execution of job=[%s]. "
113                                        + "If either step fails, both will be executed again on restart.", step.getName(), jobInstance
114                                        .getJobName()));
115                        lastStepExecution = null;
116                }
117                StepExecution currentStepExecution = lastStepExecution;
118 
119                if (shouldStart(lastStepExecution, jobInstance, step)) {
120 
121                        currentStepExecution = execution.createStepExecution(step.getName());
122 
123                        boolean isRestart = (lastStepExecution != null && !lastStepExecution.getStatus().equals(
124                                        BatchStatus.COMPLETED));
125 
126                        if (isRestart) {
127                                currentStepExecution.setExecutionContext(lastStepExecution.getExecutionContext());
128 
129                                if(lastStepExecution.getExecutionContext().containsKey("batch.executed")) {
130                                        currentStepExecution.getExecutionContext().remove("batch.executed");
131                                }
132                        }
133                        else {
134                                currentStepExecution.setExecutionContext(new ExecutionContext(executionContext));
135                        }
136 
137                        jobRepository.add(currentStepExecution);
138 
139                        logger.info("Executing step: [" + step.getName() + "]");
140                        try {
141                                step.execute(currentStepExecution);
142                                currentStepExecution.getExecutionContext().put("batch.executed", true);
143                        }
144                        catch (JobInterruptedException e) {
145                                // Ensure that the job gets the message that it is stopping
146                                // and can pass it on to other steps that are executing
147                                // concurrently.
148                                execution.setStatus(BatchStatus.STOPPING);
149                                throw e;
150                        }
151 
152                        jobRepository.updateExecutionContext(execution);
153 
154                        if (currentStepExecution.getStatus() == BatchStatus.STOPPING
155                                        || currentStepExecution.getStatus() == BatchStatus.STOPPED) {
156                                // Ensure that the job gets the message that it is stopping
157                                execution.setStatus(BatchStatus.STOPPING);
158                                throw new JobInterruptedException("Job interrupted by step execution");
159                        }
160 
161                }
162 
163                return currentStepExecution;
164        }
165 
166        /**
167         * Detect whether a step execution belongs to this job execution.
168         * @param jobExecution the current job execution
169         * @param stepExecution an existing step execution
170         * @return true if the {@link org.springframework.batch.core.StepExecution} is part of the {@link org.springframework.batch.core.JobExecution}
171         */
172        private boolean stepExecutionPartOfExistingJobExecution(JobExecution jobExecution, StepExecution stepExecution) {
173                return stepExecution != null && stepExecution.getJobExecutionId() != null
174                                && stepExecution.getJobExecutionId().equals(jobExecution.getId());
175        }
176 
177        /**
178         * Given a step and configuration, return true if the step should start,
179         * false if it should not, and throw an exception if the job should finish.
180         * @param lastStepExecution the last step execution
181         * @param jobInstance the current job instance
182         * @param step the step to execute
183         *
184         * @throws StartLimitExceededException if the start limit has been exceeded
185         * for this step
186         * @throws JobRestartException if the job is in an inconsistent state from
187         * an earlier failure
188         */
189        private boolean shouldStart(StepExecution lastStepExecution, JobInstance jobInstance, Step step)
190                        throws JobRestartException, StartLimitExceededException {
191 
192                BatchStatus stepStatus;
193                if (lastStepExecution == null) {
194                        stepStatus = BatchStatus.STARTING;
195                }
196                else {
197                        stepStatus = lastStepExecution.getStatus();
198                }
199 
200                if (stepStatus == BatchStatus.UNKNOWN) {
201                        throw new JobRestartException("Cannot restart step from UNKNOWN status. "
202                                        + "The last execution ended with a failure that could not be rolled back, "
203                                        + "so it may be dangerous to proceed. Manual intervention is probably necessary.");
204                }
205 
206                if ((stepStatus == BatchStatus.COMPLETED && !step.isAllowStartIfComplete())
207                                || stepStatus == BatchStatus.ABANDONED) {
208                        // step is complete, false should be returned, indicating that the
209                        // step should not be started
210                        logger.info("Step already complete or not restartable, so no action to execute: " + lastStepExecution);
211                        return false;
212                }
213 
214                if (jobRepository.getStepExecutionCount(jobInstance, step.getName()) < step.getStartLimit()) {
215                        // step start count is less than start max, return true
216                        return true;
217                }
218                else {
219                        // start max has been exceeded, throw an exception.
220                        throw new StartLimitExceededException("Maximum start limit exceeded for step: " + step.getName()
221                                        + "StartMax: " + step.getStartLimit());
222                }
223        }
224 
225}

[all classes][org.springframework.batch.core.job]
EMMA 2.0.5312 (C) Vladimir Roubtsov