/spring-batch-core/src/main/java/org/springframework/batch/core/jsr/job/flow/JsrFlowJob.java

http://github.com/SpringSource/spring-batch · Java · 141 lines · 90 code · 13 blank · 38 comment · 17 complexity · 3fa32c00bd6d12ea161c797b10397c27 MD5 · raw file

  1. /*
  2. * Copyright 2013-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. * https://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. package org.springframework.batch.core.jsr.job.flow;
  17. import org.springframework.batch.core.ExitStatus;
  18. import org.springframework.batch.core.JobExecution;
  19. import org.springframework.batch.core.JobExecutionException;
  20. import org.springframework.batch.core.JobInterruptedException;
  21. import org.springframework.batch.core.Step;
  22. import org.springframework.batch.core.configuration.xml.SimpleFlowFactoryBean.DelegateState;
  23. import org.springframework.batch.core.explore.JobExplorer;
  24. import org.springframework.batch.core.job.AbstractJob;
  25. import org.springframework.batch.core.job.flow.Flow;
  26. import org.springframework.batch.core.job.flow.FlowExecutionException;
  27. import org.springframework.batch.core.job.flow.FlowJob;
  28. import org.springframework.batch.core.job.flow.JobFlowExecutor;
  29. import org.springframework.batch.core.job.flow.State;
  30. import org.springframework.batch.core.job.flow.support.state.FlowState;
  31. import org.springframework.batch.core.jsr.job.JsrStepHandler;
  32. import org.springframework.batch.core.jsr.job.flow.support.JsrFlow;
  33. import org.springframework.batch.core.jsr.job.flow.support.state.JsrStepState;
  34. import org.springframework.batch.core.jsr.step.DecisionStep;
  35. import org.springframework.batch.core.launch.NoSuchJobException;
  36. import org.springframework.batch.core.launch.support.ExitCodeMapper;
  37. /**
  38. * JSR-352 specific extension of the {@link FlowJob}.
  39. *
  40. * @author Michael Minella
  41. * @since 3.0
  42. */
  43. public class JsrFlowJob extends FlowJob {
  44. private JobExplorer jobExplorer;
  45. /**
  46. * No arg constructor (invalid state)
  47. */
  48. public JsrFlowJob() {
  49. super();
  50. }
  51. /**
  52. * Main constructor
  53. *
  54. * @param name of the flow
  55. */
  56. public JsrFlowJob(String name) {
  57. super(name);
  58. }
  59. public void setJobExplorer(JobExplorer jobExplorer) {
  60. this.jobExplorer = jobExplorer;
  61. }
  62. /**
  63. * @see AbstractJob#doExecute(JobExecution)
  64. */
  65. @Override
  66. protected void doExecute(final JobExecution execution) throws JobExecutionException {
  67. try {
  68. JobFlowExecutor executor = new JsrFlowExecutor(getJobRepository(),
  69. new JsrStepHandler(getJobRepository(), jobExplorer), execution);
  70. State startState = ((JsrFlow)flow).getStartState();
  71. validateFirstStep(startState);
  72. executor.updateJobExecutionStatus(flow.start(executor).getStatus());
  73. }
  74. catch (FlowExecutionException e) {
  75. if (e.getCause() instanceof JobExecutionException) {
  76. throw (JobExecutionException) e.getCause();
  77. }
  78. throw new JobExecutionException("Flow execution ended unexpectedly", e);
  79. }
  80. }
  81. private void validateFirstStep(State startState)
  82. throws JobExecutionException {
  83. while(true) {
  84. if(startState instanceof DelegateState) {
  85. startState = ((DelegateState) startState).getState();
  86. } else if(startState instanceof JsrStepState) {
  87. String stepName = startState.getName().substring(startState.getName().indexOf(".") + 1, startState.getName().length());
  88. Step step = ((JsrStepState) startState).getStep(stepName);
  89. if(step instanceof DecisionStep) {
  90. throw new JobExecutionException("Decision step is an invalid first step");
  91. } else {
  92. break;
  93. }
  94. } else if(startState instanceof FlowState){
  95. Flow firstFlow = ((FlowState) startState).getFlows().iterator().next();
  96. startState = firstFlow.getStates().iterator().next();
  97. } else {
  98. break;
  99. }
  100. }
  101. }
  102. /**
  103. * Default mapping from throwable to {@link ExitStatus}.
  104. *
  105. * @param ex the cause of the failure
  106. * @return an {@link ExitStatus}
  107. */
  108. @Override
  109. protected ExitStatus getDefaultExitStatusForFailure(Throwable ex, JobExecution execution) {
  110. if(!ExitStatus.isNonDefaultExitStatus(execution.getExitStatus())) {
  111. return execution.getExitStatus();
  112. } else {
  113. ExitStatus exitStatus;
  114. if (ex instanceof JobInterruptedException
  115. || ex.getCause() instanceof JobInterruptedException) {
  116. exitStatus = ExitStatus.STOPPED
  117. .addExitDescription(JobInterruptedException.class.getName());
  118. } else if (ex instanceof NoSuchJobException
  119. || ex.getCause() instanceof NoSuchJobException) {
  120. exitStatus = new ExitStatus(ExitCodeMapper.NO_SUCH_JOB, ex
  121. .getClass().getName());
  122. } else {
  123. exitStatus = ExitStatus.FAILED.addExitDescription(ex);
  124. }
  125. return exitStatus;
  126. }
  127. }
  128. }