RESOLVED - issue BATCH-274: Support Callable<ExitStatus>

Added CallablTaskletAdapter (also removed dependency on backport concurrent)
This commit is contained in:
dsyer
2008-07-17 12:15:54 +00:00
parent 609c7005e9
commit 06d781a950
13 changed files with 139 additions and 246 deletions

View File

@@ -1,52 +0,0 @@
/*
* Copyright 2002-2007 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.repeat.context;
import org.springframework.core.JdkVersion;
import org.springframework.util.ClassUtils;
/**
* A factory that properly determines which version of the {@link AtomicCounter}
* to return based on the availability of Java 5 or Backport Concurrent.
*
* @author Dave Syer
*/
class AtomicCounterFactory {
/** Whether the backport-concurrent library is present on the classpath */
private static final boolean backportConcurrentAvailable = ClassUtils.isPresent(
"edu.emory.mathcs.backport.java.util.concurrent.Semaphore", AtomicCounterFactory.class.getClassLoader());
private final AtomicCounter counter;
public AtomicCounterFactory() {
if (JdkVersion.isAtLeastJava15()) {
counter = new JdkConcurrentAtomicCounter();
}
else if (backportConcurrentAvailable) {
counter = new BackportConcurrentAtomicCounter();
}
else {
throw new IllegalStateException("Cannot create AtomicCounter - "
+ "neither JDK 1.5 nor backport-concurrent available on the classpath");
}
}
public AtomicCounter getAtomicCounter() {
return counter;
}
}

View File

@@ -1,19 +0,0 @@
package org.springframework.batch.repeat.context;
/**
* @author Dave Syer
*
*/
class BackportConcurrentAtomicCounter implements AtomicCounter {
private edu.emory.mathcs.backport.java.util.concurrent.atomic.AtomicInteger counter = new edu.emory.mathcs.backport.java.util.concurrent.atomic.AtomicInteger();
public void addAndGet(int delta) {
counter.addAndGet(delta);
}
public int intValue() {
return counter.intValue();
}
}

View File

@@ -1,19 +0,0 @@
package org.springframework.batch.repeat.context;
/**
* @author Dave Syer
*
*/
class JdkConcurrentAtomicCounter implements AtomicCounter {
private java.util.concurrent.atomic.AtomicInteger counter = new java.util.concurrent.atomic.AtomicInteger();
public void addAndGet(int delta) {
counter.addAndGet(delta);
}
public int intValue() {
return counter.intValue();
}
}

View File

@@ -16,6 +16,8 @@
package org.springframework.batch.repeat.context;
import java.util.concurrent.atomic.AtomicInteger;
import org.springframework.batch.repeat.RepeatContext;
import org.springframework.util.Assert;
@@ -47,7 +49,7 @@ public class RepeatContextCounter {
* @param delta the amount by which to increment the counter.
*/
final public void increment(int delta) {
AtomicCounter count = getCounter();
AtomicInteger count = getCounter();
count.addAndGet(delta);
}
@@ -94,8 +96,7 @@ public class RepeatContextCounter {
this.context = context;
}
if (!this.context.hasAttribute(countKey)) {
AtomicCounterFactory factory = new AtomicCounterFactory();
this.context.setAttribute(countKey, factory.getAtomicCounter());
this.context.setAttribute(countKey, new AtomicInteger());
}
}
@@ -107,8 +108,8 @@ public class RepeatContextCounter {
return getCounter().intValue();
}
private AtomicCounter getCounter() {
return ((AtomicCounter) context.getAttribute(countKey));
private AtomicInteger getCounter() {
return ((AtomicInteger) context.getAttribute(countKey));
}
}

View File

@@ -1,61 +0,0 @@
/*
* Copyright 2002-2007 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.repeat.support;
import edu.emory.mathcs.backport.java.util.concurrent.BlockingQueue;
import edu.emory.mathcs.backport.java.util.concurrent.LinkedBlockingQueue;
import edu.emory.mathcs.backport.java.util.concurrent.Semaphore;
/**
* An implementation of the {@link ResultQueue} that uses Backport Concurrent Utilities.
*
* @author Ben Hale
*/
class BackportConcurrentResultQueue extends AbstractResultQueue implements RepeatInternalState {
// Accumulation of result objects as they finish.
private final BlockingQueue results;
// Accumulation of dummy objects flagging expected results in the future.
private final Semaphore waits;
BackportConcurrentResultQueue(int throttleLimit) {
results = new LinkedBlockingQueue();
waits = new Semaphore(throttleLimit);
}
protected void addResult(ResultHolder resultHolder) {
results.add(resultHolder);
}
protected void aquireWait() throws InterruptedException {
waits.acquire();
}
protected void releaseWait() {
waits.release();
}
protected ResultHolder takeResult() throws InterruptedException {
return (ResultHolder) results.take();
}
public boolean isEmpty() {
return results.isEmpty();
}
}

View File

@@ -16,30 +16,17 @@
package org.springframework.batch.repeat.support;
import org.springframework.core.JdkVersion;
import org.springframework.util.ClassUtils;
/**
* A factory that properly determines which version of the {@link ResultQueue} to return based on the availability of
* Java 5 or Backport Concurrent.
* A factory for {@link ResultQueue} which simply creates one from
* java.util.concurrent components.
*
* @author Ben Hale
* @author Dave Syer
*/
class ResultQueueFactory {
/** Whether the backport-concurrent library is present on the classpath */
private static final boolean backportConcurrentAvailable = ClassUtils.isPresent(
"edu.emory.mathcs.backport.java.util.concurrent.Semaphore", ResultQueueFactory.class.getClassLoader());
public RepeatInternalState getResultQueue(int throttleLimit) {
if (JdkVersion.isAtLeastJava15()) {
return new JdkConcurrentResultQueue(throttleLimit);
} else if (backportConcurrentAvailable) {
return new BackportConcurrentResultQueue(throttleLimit);
} else {
throw new IllegalStateException("Cannot create ResultQueue - "
+ "neither JDK 1.5 nor backport-concurrent available on the classpath");
}
return new JdkConcurrentResultQueue(throttleLimit);
}
}