
net.sf.ehcache.distribution.jgroups.JGroupsCacheReplicatorFactory Maven / Gradle / Ivy
/**
* Copyright 2003-2009 Luck Consulting Pty Ltd
*
* 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 net.sf.ehcache.distribution.jgroups;
import net.sf.ehcache.event.CacheEventListener;
import net.sf.ehcache.event.CacheEventListenerFactory;
import net.sf.ehcache.util.PropertyUtil;
import java.util.Properties;
import java.util.logging.Logger;
/**
* @author Pierre Monestie ([email protected])
* @author Greg Luck
* @version $Id: JGroupsCacheReplicatorFactory.java 755 2008-09-10 07:38:24Z gregluck $
*/
public class JGroupsCacheReplicatorFactory extends CacheEventListenerFactory {
private static final String ASYNCHRONOUS_REPLICATION_INTERVAL_MILLIS = "asynchronousReplicationIntervalMillis";
private static final Logger LOG = Logger.getLogger(JGroupsCacheReplicatorFactory.class.getName());
private static final String REPLICATE_PUTS = "replicatePuts";
private static final String REPLICATE_UPDATES = "replicateUpdates";
private static final String REPLICATE_UPDATES_VIA_COPY = "replicateUpdatesViaCopy";
private static final String REPLICATE_REMOVALS = "replicateRemovals";
private static final String REPLICATE_ASYNCHRONOUSLY = "replicateAsynchronously";
/**
* Empty arg constructor
*/
public JGroupsCacheReplicatorFactory() {
}
/**
* {@inheritDoc}
*/
public CacheEventListener createCacheEventListener(Properties properties) {
LOG.fine("making new cache rep");
boolean replicatePuts = extractBooleanProperty(properties, REPLICATE_PUTS, true);
boolean replicateUpdates = extractBooleanProperty(properties, REPLICATE_UPDATES, true);
boolean replicateUpdatesViaCopy = extractBooleanProperty(properties, REPLICATE_UPDATES_VIA_COPY, false);
boolean replicateRemovals = extractBooleanProperty(properties, REPLICATE_REMOVALS, true);
boolean replicateAsync = extractBooleanProperty(properties, REPLICATE_ASYNCHRONOUSLY, true);
long asyncTime = extractAsynchronousReplicationIntervalMillis(properties, ASYNCHRONOUS_REPLICATION_INTERVAL_MILLIS,
JGroupsCacheReplicator.DEFAULT_ASYNC_INTERVAL);
JGroupsCacheReplicator r = new JGroupsCacheReplicator(replicatePuts, replicateUpdates, replicateUpdatesViaCopy,
replicateRemovals, replicateAsync);
if (replicateAsync) {
r.setAsynchronousReplicationInterval(asyncTime);
}
return r;
}
/**
* Extract a long out of a string.
*
* @param properties the property
* @param propertyName the name of the property
* @param defaultValue the default value if none is found
* @return the extracted value
*/
protected long extractAsynchronousReplicationIntervalMillis(Properties properties, String propertyName, long defaultValue) {
String parsedString = PropertyUtil.extractAndLogProperty(propertyName, properties);
if (parsedString != null) {
try {
Long longValue = new Long(parsedString);
return longValue.longValue();
} catch (NumberFormatException e) {
LOG.warning("Number format exception trying to set asynchronousReplicationIntervalMillis. " +
"Using the default instead. String value was: '" + parsedString + "'");
}
}
return defaultValue;
}
/**
* Extract a Boolean out of a Property
*
* @param properties the properties
* @param propertyName the name of the property
* @param defaultValue the deulat value id none is found
* @return the extracted property
*/
protected boolean extractBooleanProperty(Properties properties, String propertyName, boolean defaultValue) {
String booleanCandidate = PropertyUtil.extractAndLogProperty(propertyName, properties);
if (booleanCandidate != null) {
return PropertyUtil.parseBoolean(booleanCandidate);
} else {
return defaultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy