Fixes JIRA issue SGF-232 - user is unable to specify Order Policy with a Serial Async Event Queue. Plus, made additional changes to the GatewaySenderFactoryBean class and associated tests/code for SGF-231.

This commit is contained in:
John Blum
2013-11-16 11:58:24 -08:00
parent 7994fdddbd
commit 2897b07ab0
7 changed files with 174 additions and 36 deletions

View File

@@ -15,6 +15,9 @@
*/
package org.springframework.data.gemfire.wan;
import java.util.Arrays;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.BeanNameAware;
@@ -34,6 +37,8 @@ import com.gemstone.gemfire.cache.Cache;
public abstract class AbstractWANComponentFactoryBean<T> implements FactoryBean<T>, InitializingBean, BeanNameAware,
DisposableBean {
protected static final List<String> VALID_ORDER_POLICIES = Arrays.asList("KEY", "PARTITION", "THREAD");
protected Log log = LogFactory.getLog(getClass());
protected final Cache cache;

View File

@@ -35,8 +35,6 @@ import com.gemstone.gemfire.cache.util.Gateway;
*/
public class AsyncEventQueueFactoryBean extends AbstractWANComponentFactoryBean<AsyncEventQueue> {
private static List<String> validOrderPolicyValues = Arrays.asList("KEY", "PARTITION", "THREAD");
private AsyncEventListener asyncEventListener;
private AsyncEventQueue asyncEventQueue;
@@ -60,7 +58,7 @@ public class AsyncEventQueueFactoryBean extends AbstractWANComponentFactoryBean<
* @param cache the GemFire Cache reference.
* @see #AsyncEventQueueFactoryBean(com.gemstone.gemfire.cache.Cache, com.gemstone.gemfire.cache.asyncqueue.AsyncEventListener)
*/
public AsyncEventQueueFactoryBean(Cache cache) {
public AsyncEventQueueFactoryBean(final Cache cache) {
this(cache, null);
}
@@ -70,7 +68,7 @@ public class AsyncEventQueueFactoryBean extends AbstractWANComponentFactoryBean<
* @param cache the GemFire Cache reference.
* @param asyncEventListener required {@link AsyncEventListener}
*/
public AsyncEventQueueFactoryBean(Cache cache, AsyncEventListener asyncEventListener) {
public AsyncEventQueueFactoryBean(final Cache cache, final AsyncEventListener asyncEventListener) {
super(cache);
setAsyncEventListener(asyncEventListener);
}
@@ -93,13 +91,13 @@ public class AsyncEventQueueFactoryBean extends AbstractWANComponentFactoryBean<
: cache.createAsyncEventQueueFactory());
if (diskStoreRef != null) {
persistent = (persistent == null) ? Boolean.TRUE : persistent;
persistent = (persistent == null || persistent);
Assert.isTrue(persistent, "Specifying a 'disk store' requires the persistent property to be true.");
asyncEventQueueFactory.setDiskStoreName(diskStoreRef);
}
if (diskSynchronous != null) {
persistent = (persistent == null) ? Boolean.TRUE : persistent;
persistent = (persistent == null || persistent);
Assert.isTrue(persistent, "Specifying 'disk synchronous' requires the persistent property to be true.");
asyncEventQueueFactory.setDiskSynchronous(diskSynchronous);
}
@@ -121,6 +119,7 @@ public class AsyncEventQueueFactoryBean extends AbstractWANComponentFactoryBean<
}
if (dispatcherThreads != null) {
Assert.isTrue(isSerialEventQueue(), "The number of Dispatcher Threads cannot be specified with a Parallel Event Queue.");
asyncEventQueueFactory.setDispatcherThreads(dispatcherThreads);
}
@@ -128,15 +127,13 @@ public class AsyncEventQueueFactoryBean extends AbstractWANComponentFactoryBean<
asyncEventQueueFactory.setMaximumQueueMemory(maximumQueueMemory);
}
if (parallel != null) {
asyncEventQueueFactory.setParallel(parallel);
}
if (orderPolicy != null) {
Assert.isTrue(parallel, "specifying an order policy requires the parallel property to be true");
asyncEventQueueFactory.setParallel(isParallelEventQueue());
Assert.isTrue(validOrderPolicyValues.contains(orderPolicy.toUpperCase()), String.format(
"The value of order policy:'$1%s'' is invalid.", orderPolicy));
if (orderPolicy != null) {
Assert.isTrue(isSerialEventQueue(), "Order Policy cannot be used with a Parallel Event Queue.");
Assert.isTrue(VALID_ORDER_POLICIES.contains(orderPolicy.toUpperCase()), String.format(
"The value of Order Policy '$1%s' is invalid.", orderPolicy));
asyncEventQueueFactory.setOrderPolicy(Gateway.OrderPolicy.valueOf(orderPolicy.toUpperCase()));
}
@@ -181,11 +178,12 @@ public class AsyncEventQueueFactoryBean extends AbstractWANComponentFactoryBean<
this.parallel = parallel;
}
/**
* @param validOrderPolicyValues the validOrderPolicyValues to set
*/
public static void setValidOrderPolicyValues(List<String> validOrderPolicyValues) {
AsyncEventQueueFactoryBean.validOrderPolicyValues = validOrderPolicyValues;
public boolean isSerialEventQueue() {
return !isParallelEventQueue();
}
public boolean isParallelEventQueue() {
return Boolean.TRUE.equals(parallel);
}
/**

View File

@@ -38,8 +38,6 @@ import com.gemstone.gemfire.cache.wan.GatewayTransportFilter;
public class GatewaySenderFactoryBean extends AbstractWANComponentFactoryBean<GatewaySender>
implements SmartLifecycle {
private static final List<String> VALID_ORDER_POLICIES = Arrays.asList("KEY", "PARTITION", "THREAD");
private boolean manualStart = false;
private int remoteDistributedSystemId;