SGF-57
+ add initial draft of QueryListenerContainer
This commit is contained in:
@@ -30,25 +30,35 @@ import com.gemstone.gemfire.cache.query.QueryInvalidException;
|
||||
*/
|
||||
public class GemfireQueryException extends InvalidDataAccessResourceUsageException {
|
||||
|
||||
public GemfireQueryException(String message, QueryException ex) {
|
||||
super(message, ex);
|
||||
}
|
||||
|
||||
public GemfireQueryException(QueryException ex) {
|
||||
super(ex.getMessage(), ex);
|
||||
}
|
||||
|
||||
public GemfireQueryException(String message, QueryExecutionTimeoutException ex) {
|
||||
super(message, ex);
|
||||
}
|
||||
|
||||
public GemfireQueryException(QueryExecutionTimeoutException ex) {
|
||||
super(ex.getMessage(), ex);
|
||||
}
|
||||
|
||||
public GemfireQueryException(String message, QueryInvalidException ex) {
|
||||
super(message, ex);
|
||||
}
|
||||
|
||||
public GemfireQueryException(QueryInvalidException ex) {
|
||||
super(ex.getMessage(), ex);
|
||||
}
|
||||
|
||||
/**
|
||||
* Dedicated constructor for CqInvalidException. Since the class has been removed in 6.5,
|
||||
* the constructor is protected to prevent illegal access.
|
||||
*
|
||||
* @param ex
|
||||
*/
|
||||
GemfireQueryException(RuntimeException ex) {
|
||||
public GemfireQueryException(String message, RuntimeException ex) {
|
||||
super(message, ex);
|
||||
}
|
||||
|
||||
public GemfireQueryException(RuntimeException ex) {
|
||||
super(ex.getMessage(), ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
/*
|
||||
* Copyright 2011 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.data.gemfire.listener;
|
||||
|
||||
import org.springframework.beans.factory.InitializingBean;
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
import com.gemstone.gemfire.cache.query.CqQuery;
|
||||
|
||||
/**
|
||||
* Basic holder class for defining an CqQuery. Useful for configuring GemFire {@link CqQuery}s through XML
|
||||
* and or JavaBeans means.
|
||||
*
|
||||
* @author Costin Leau
|
||||
*/
|
||||
public class CqQueryDefinition implements InitializingBean {
|
||||
|
||||
private String name = null, query = null;
|
||||
private QueryListener listener = null;
|
||||
private boolean durable = false;
|
||||
|
||||
public CqQueryDefinition() {
|
||||
}
|
||||
|
||||
public CqQueryDefinition(String query, QueryListener listener) {
|
||||
this(query, listener, false);
|
||||
}
|
||||
|
||||
public CqQueryDefinition(String query, QueryListener listener, boolean durable) {
|
||||
this.query = query;
|
||||
this.listener = listener;
|
||||
this.durable = durable;
|
||||
afterPropertiesSet();
|
||||
}
|
||||
|
||||
public CqQueryDefinition(String name, String query, QueryListener listener) {
|
||||
this(name, query, listener, false);
|
||||
}
|
||||
|
||||
public CqQueryDefinition(String name, String query, QueryListener listener, boolean durable) {
|
||||
this.name = name;
|
||||
this.query = query;
|
||||
this.listener = listener;
|
||||
this.durable = durable;
|
||||
afterPropertiesSet();
|
||||
}
|
||||
|
||||
public void afterPropertiesSet() {
|
||||
Assert.hasText(query, "a non-empty query is required");
|
||||
Assert.notNull(listener, "a non- null listener is required");
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the name
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the query
|
||||
*/
|
||||
public String getQuery() {
|
||||
return query;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the listener
|
||||
*/
|
||||
public QueryListener getListener() {
|
||||
return listener;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the durable
|
||||
*/
|
||||
public boolean isDurable() {
|
||||
return durable;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,384 @@
|
||||
/*
|
||||
* Copyright 2011 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.data.gemfire.listener;
|
||||
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.Executor;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.springframework.beans.factory.BeanNameAware;
|
||||
import org.springframework.beans.factory.DisposableBean;
|
||||
import org.springframework.beans.factory.InitializingBean;
|
||||
import org.springframework.context.SmartLifecycle;
|
||||
import org.springframework.core.task.SimpleAsyncTaskExecutor;
|
||||
import org.springframework.core.task.TaskExecutor;
|
||||
import org.springframework.data.gemfire.GemfireQueryException;
|
||||
import org.springframework.util.ClassUtils;
|
||||
import org.springframework.util.ErrorHandler;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
import com.gemstone.gemfire.cache.RegionService;
|
||||
import com.gemstone.gemfire.cache.query.CqAttributes;
|
||||
import com.gemstone.gemfire.cache.query.CqAttributesFactory;
|
||||
import com.gemstone.gemfire.cache.query.CqEvent;
|
||||
import com.gemstone.gemfire.cache.query.CqListener;
|
||||
import com.gemstone.gemfire.cache.query.CqQuery;
|
||||
import com.gemstone.gemfire.cache.query.QueryException;
|
||||
import com.gemstone.gemfire.cache.query.QueryService;
|
||||
|
||||
/**
|
||||
* Container providing asynchronous behaviour for GemFire continuous queries.
|
||||
*
|
||||
* @author Costin Leau
|
||||
*/
|
||||
public class QueryListenerContainer implements InitializingBean, DisposableBean, BeanNameAware, SmartLifecycle {
|
||||
|
||||
private class EventDispatcherAdapter implements CqListener {
|
||||
private final QueryListener delegate;
|
||||
|
||||
EventDispatcherAdapter(QueryListener delegate) {
|
||||
this.delegate = delegate;
|
||||
}
|
||||
|
||||
public void onError(CqEvent event) {
|
||||
dispatchEvent(delegate, event);
|
||||
}
|
||||
|
||||
public void onEvent(CqEvent event) {
|
||||
dispatchEvent(delegate, event);
|
||||
}
|
||||
|
||||
public void close() {
|
||||
}
|
||||
}
|
||||
|
||||
/** Logger available to subclasses */
|
||||
protected final Log logger = LogFactory.getLog(getClass());
|
||||
|
||||
/**
|
||||
* Default thread name prefix: "QueryListenerContainer-".
|
||||
*/
|
||||
public static final String DEFAULT_THREAD_NAME_PREFIX = ClassUtils.getShortName(QueryListenerContainer.class) + "-";
|
||||
|
||||
private Executor subscriptionExecutor;
|
||||
private Executor taskExecutor;
|
||||
private String beanName;
|
||||
private ErrorHandler errorHandler;
|
||||
|
||||
// whether the container is running (or not)
|
||||
private volatile boolean running = false;
|
||||
// whether the container has been initialized
|
||||
private volatile boolean initialized = false;
|
||||
private volatile boolean manageExecutor = false;
|
||||
|
||||
private RegionService cache;
|
||||
private Set<CqQuery> queries;
|
||||
|
||||
|
||||
public void afterPropertiesSet() {
|
||||
if (taskExecutor == null) {
|
||||
manageExecutor = true;
|
||||
taskExecutor = createDefaultTaskExecutor();
|
||||
}
|
||||
|
||||
if (subscriptionExecutor == null) {
|
||||
subscriptionExecutor = taskExecutor;
|
||||
}
|
||||
|
||||
queries = new LinkedHashSet<CqQuery>();
|
||||
initialized = true;
|
||||
|
||||
start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a default TaskExecutor. Called if no explicit TaskExecutor has been specified.
|
||||
* <p>The default implementation builds a {@link org.springframework.core.task.SimpleAsyncTaskExecutor}
|
||||
* with the specified bean name (or the class name, if no bean name specified) as thread name prefix.
|
||||
* @see org.springframework.core.task.SimpleAsyncTaskExecutor#SimpleAsyncTaskExecutor(String)
|
||||
*/
|
||||
protected TaskExecutor createDefaultTaskExecutor() {
|
||||
String threadNamePrefix = (beanName != null ? beanName + "-" : DEFAULT_THREAD_NAME_PREFIX);
|
||||
return new SimpleAsyncTaskExecutor(threadNamePrefix);
|
||||
}
|
||||
|
||||
public void destroy() throws Exception {
|
||||
initialized = false;
|
||||
|
||||
stop();
|
||||
closeQueries();
|
||||
|
||||
if (manageExecutor) {
|
||||
if (taskExecutor instanceof DisposableBean) {
|
||||
((DisposableBean) taskExecutor).destroy();
|
||||
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug("Stopped internally-managed task executor");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public boolean isAutoStartup() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public void stop(Runnable callback) {
|
||||
stop();
|
||||
callback.run();
|
||||
}
|
||||
|
||||
public int getPhase() {
|
||||
// start the latest
|
||||
return Integer.MAX_VALUE;
|
||||
}
|
||||
|
||||
public boolean isRunning() {
|
||||
return running;
|
||||
}
|
||||
|
||||
public void start() {
|
||||
if (!running) {
|
||||
running = true;
|
||||
|
||||
doStart();
|
||||
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug("Started QueryListenerContainer");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void stop() {
|
||||
if (running) {
|
||||
running = false;
|
||||
doStop();
|
||||
}
|
||||
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug("Stopped QueryListenerContainer");
|
||||
}
|
||||
}
|
||||
|
||||
private void doStart() {
|
||||
for (CqQuery cq : queries) {
|
||||
executeQuery(cq);
|
||||
}
|
||||
}
|
||||
|
||||
private void doStop() {
|
||||
for (CqQuery cq : queries) {
|
||||
try {
|
||||
cq.stop();
|
||||
} catch (RuntimeException ex) {
|
||||
logger.warn("Cannot stop query", ex);
|
||||
} catch (QueryException ex) {
|
||||
logger.warn("Cannot stop query", ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void closeQueries() {
|
||||
if (queries != null) {
|
||||
for (CqQuery cq : queries) {
|
||||
try {
|
||||
if (!cq.isClosed()) {
|
||||
cq.close();
|
||||
}
|
||||
} catch (QueryException ex) {
|
||||
logger.warn("Cannot close query", ex);
|
||||
} catch (RuntimeException ex) {
|
||||
logger.warn("Cannot close query", ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
queries.clear();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the specified listener.
|
||||
*
|
||||
* @see #handleListenerException
|
||||
*/
|
||||
protected void executeListener(QueryListener listener, CqEvent event) {
|
||||
try {
|
||||
listener.onEvent(event);
|
||||
} catch (Throwable ex) {
|
||||
handleListenerException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Return whether this container is currently active,
|
||||
* that is, whether it has been set up but not shut down yet.
|
||||
*/
|
||||
public final boolean isActive() {
|
||||
return initialized;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle the given exception that arose during listener execution.
|
||||
* <p>The default implementation logs the exception at error level.
|
||||
* This can be overridden in subclasses.
|
||||
* @param ex the exception to handle
|
||||
*/
|
||||
protected void handleListenerException(Throwable ex) {
|
||||
if (isActive()) {
|
||||
// Regular case: failed while active.
|
||||
// Invoke ErrorHandler if available.
|
||||
invokeErrorHandler(ex);
|
||||
}
|
||||
else {
|
||||
// Rare case: listener thread failed after container shutdown.
|
||||
// Log at debug level, to avoid spamming the shutdown logger.
|
||||
logger.debug("Listener exception after container shutdown", ex);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke the registered ErrorHandler, if any. Log at error level otherwise.
|
||||
* @param ex the uncaught error that arose during event processing.
|
||||
* @see #setErrorHandler
|
||||
*/
|
||||
protected void invokeErrorHandler(Throwable ex) {
|
||||
if (this.errorHandler != null) {
|
||||
this.errorHandler.handleError(ex);
|
||||
}
|
||||
else if (logger.isWarnEnabled()) {
|
||||
logger.warn("Execution of JMS event listener failed, and no ErrorHandler has been set.", ex);
|
||||
}
|
||||
}
|
||||
|
||||
public void setBeanName(String name) {
|
||||
this.beanName = name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the task executor used for running the event listeners when messages are received.
|
||||
* If no task executor is set, an instance of {@link SimpleAsyncTaskExecutor} will be used by default.
|
||||
* The task executor can be adjusted depending on the work done by the listeners and the number of
|
||||
* messages coming in.
|
||||
*
|
||||
* @param taskExecutor The taskExecutor to set.
|
||||
*/
|
||||
public void setTaskExecutor(Executor taskExecutor) {
|
||||
this.taskExecutor = taskExecutor;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set an ErrorHandler to be invoked in case of any uncaught exceptions thrown
|
||||
* while processing a event. By default there will be <b>no</b> ErrorHandler
|
||||
* so that error-level logging is the only result.
|
||||
*/
|
||||
public void setErrorHandler(ErrorHandler errorHandler) {
|
||||
this.errorHandler = errorHandler;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the underlying cache used for registering queries.
|
||||
*
|
||||
* @param cache cache used for registering queries
|
||||
*/
|
||||
public void setCache(RegionService cache) {
|
||||
this.cache = cache;
|
||||
}
|
||||
|
||||
/**
|
||||
* Attaches the given query definitions.
|
||||
*
|
||||
* @param queries set of queries
|
||||
*/
|
||||
public void setQueryListeners(Set<CqQueryDefinition> queries) {
|
||||
initMapping(queries);
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a query definition to the (potentially running) container. If the container is running,
|
||||
* the listener starts receiving (matching) messages as soon as possible.
|
||||
*
|
||||
* @param listener event cqQuery
|
||||
*/
|
||||
public void addListener(CqQueryDefinition cqQuery) {
|
||||
doAddListener(cqQuery);
|
||||
}
|
||||
|
||||
private void initMapping(Set<CqQueryDefinition> queryDefinitions) {
|
||||
// stop the listener if currently running
|
||||
if (isRunning()) {
|
||||
stop();
|
||||
}
|
||||
|
||||
closeQueries();
|
||||
|
||||
for (CqQueryDefinition def : queryDefinitions) {
|
||||
doAddListener(def);
|
||||
}
|
||||
|
||||
// resume activity
|
||||
if (initialized) {
|
||||
start();
|
||||
}
|
||||
}
|
||||
|
||||
private void doAddListener(CqQueryDefinition def) {
|
||||
QueryService qService = cache.getQueryService();
|
||||
|
||||
CqQuery cq = null;
|
||||
|
||||
try {
|
||||
CqAttributesFactory caf = new CqAttributesFactory();
|
||||
caf.addCqListener(new EventDispatcherAdapter(def.getListener()));
|
||||
CqAttributes attr = caf.create();
|
||||
|
||||
if (StringUtils.hasText(def.getName())) {
|
||||
cq = qService.newCq(def.getName(), def.getQuery(), attr, def.isDurable());
|
||||
}
|
||||
else {
|
||||
cq = qService.newCq(def.getQuery(), attr, def.isDurable());
|
||||
}
|
||||
queries.add(cq);
|
||||
} catch (RuntimeException ex) {
|
||||
throw new GemfireQueryException("Cannot create query ", ex);
|
||||
} catch (QueryException ex) {
|
||||
throw new GemfireQueryException("Cannot create query ", ex);
|
||||
}
|
||||
|
||||
if (isRunning()) {
|
||||
executeQuery(cq);
|
||||
}
|
||||
}
|
||||
|
||||
private void executeQuery(CqQuery cq) {
|
||||
try {
|
||||
cq.execute();
|
||||
} catch (QueryException ex) {
|
||||
throw new GemfireQueryException("Cannot execute query", ex);
|
||||
} catch (RuntimeException ex) {
|
||||
throw new GemfireQueryException("Cannot execute query", ex);
|
||||
}
|
||||
}
|
||||
|
||||
private void dispatchEvent(final QueryListener listener, final CqEvent event) {
|
||||
taskExecutor.execute(new Runnable() {
|
||||
public void run() {
|
||||
executeListener(listener, event);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user