EMMA Coverage Report (generated Fri Jan 30 13:20:29 EST 2009)
[all classes][org.springframework.batch.core.step.item]

COVERAGE SUMMARY FOR SOURCE FILE [SimpleRetryExceptionHandler.java]

nameclass, %method, %block, %line, %
SimpleRetryExceptionHandler.java100% (1/1)100% (5/5)84%  (73/87)88%  (16.6/19)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SimpleRetryExceptionHandler100% (1/1)100% (5/5)84%  (73/87)88%  (16.6/19)
handleException (RepeatContext, Throwable): void 100% (1/1)70%  (14/20)75%  (3/4)
<static initializer> 100% (1/1)79%  (22/28)82%  (1.6/2)
getRepeatContext (): RepeatContext 100% (1/1)80%  (8/10)75%  (3/4)
SimpleRetryExceptionHandler (RetryPolicy, ExceptionHandler, Class []): void 100% (1/1)100% (18/18)100% (6/6)
close (RetryContext, RetryCallback, Throwable): void 100% (1/1)100% (11/11)100% (3/3)

1/*
2 * Copyright 2006-2007 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 */
16package org.springframework.batch.core.step.item;
17 
18import org.apache.commons.logging.Log;
19import org.apache.commons.logging.LogFactory;
20import org.springframework.batch.repeat.RepeatContext;
21import org.springframework.batch.repeat.exception.ExceptionHandler;
22import org.springframework.batch.repeat.support.RepeatSynchronizationManager;
23import org.springframework.batch.retry.RetryCallback;
24import org.springframework.batch.retry.RetryContext;
25import org.springframework.batch.retry.RetryPolicy;
26import org.springframework.batch.retry.listener.RetryListenerSupport;
27import org.springframework.batch.support.BinaryExceptionClassifier;
28 
29/**
30 * @author Dave Syer
31 * 
32 */
33public class SimpleRetryExceptionHandler extends RetryListenerSupport implements ExceptionHandler {
34 
35        /**
36         * Attribute key, whose existence signals an exhausted retry.
37         */
38        private static final String EXHAUSTED = SimpleRetryExceptionHandler.class.getName() + ".RETRY_EXHAUSTED";
39 
40        final private RetryPolicy retryPolicy;
41 
42        final private ExceptionHandler exceptionHandler;
43 
44        final private BinaryExceptionClassifier fatalExceptionClassifier;
45 
46        private static final Log logger = LogFactory.getLog(SimpleRetryExceptionHandler.class);
47 
48        /**
49         * @param retryPolicy
50         * @param exceptionHandler
51         * @param classes 
52         */
53        public SimpleRetryExceptionHandler(RetryPolicy retryPolicy, ExceptionHandler exceptionHandler, Class[] classes) {
54                this.retryPolicy = retryPolicy;
55                this.exceptionHandler = exceptionHandler;
56                this.fatalExceptionClassifier =  new BinaryExceptionClassifier();
57                fatalExceptionClassifier.setExceptionClasses(classes);
58        }
59 
60        /*
61         * (non-Javadoc)
62         * @see org.springframework.batch.repeat.exception.handler.ExceptionHandler#handleException(org.springframework.batch.repeat.RepeatContext,
63         * java.lang.Throwable)
64         */
65        public void handleException(RepeatContext context, Throwable throwable) throws Throwable {
66                // Only bother to check the delegate exception handler if we know that
67                // retry is exhausted
68                if (!fatalExceptionClassifier.isDefault(throwable) || context.hasAttribute(EXHAUSTED)) {
69                        exceptionHandler.handleException(context, throwable);
70                }
71                else {
72                        logger .debug("handled non-fatal exception", throwable);
73                }
74        }
75 
76        /*
77         * (non-Javadoc)
78         * @see org.springframework.batch.retry.RetryListener#close(org.springframework.batch.retry.RetryContext,
79         * org.springframework.batch.retry.RetryCallback, java.lang.Throwable)
80         */
81        public void close(RetryContext context, RetryCallback callback, Throwable throwable) {
82                if (!retryPolicy.canRetry(context)) {
83                        getRepeatContext().setAttribute(EXHAUSTED, "true");
84                }
85        }
86 
87        /**
88         * Get the parent context (the retry is in an inner "chunk" loop and we want
89         * the exception to be handled at the outer "step" level).
90         * @return the {@link RepeatContext} that should hold the exhausted flag.
91         */
92        private RepeatContext getRepeatContext() {
93                RepeatContext context = RepeatSynchronizationManager.getContext();
94                if (context.getParent() != null) {
95                        return context.getParent();
96                }
97                return context;
98        }
99 
100}

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