net.sf.ehcache.config.TerracottaClientConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache-core Show documentation
Show all versions of ehcache-core Show documentation
Internal ehcache-core module. This artifact is not meant to be used directly
/**
* Copyright Terracotta, Inc.
*
* 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.config;
import net.sf.ehcache.CacheException;
/**
* Holds the Terracotta configuration for a particular client
*
* @author [email protected]
* @author Abhishek Sanoujam
*/
public class TerracottaClientConfiguration implements Cloneable {
/**
* Default value of rejoin attribute
*/
public static final boolean DEFAULT_REJOIN_VALUE = false;
/**
* Default value for whether WAN replication enabled or not
*/
public static final boolean DEFAULT_WAN_ENABLED_TSA_VALUE = false;
private static final String TC_CONFIG_HEADER = "";
private static final String TC_CONFIG_FOOTER = " ";
private String url;
private String embeddedConfig;
private boolean rejoin = DEFAULT_REJOIN_VALUE;
private boolean wanEnabledTSA = DEFAULT_WAN_ENABLED_TSA_VALUE;
private volatile boolean configFrozen;
/**
* Clones this object, following the usual contract.
*
* @return a copy, which independent other than configurations than cannot change.
* @throws CloneNotSupportedException
*/
@Override
public TerracottaClientConfiguration clone() throws CloneNotSupportedException {
return (TerracottaClientConfiguration) super.clone();
}
/**
* Builder method to set the URL.
*
* @param url
* the URL to set
* @return this configuration instance
*/
public final TerracottaClientConfiguration url(String url) {
setUrl(url);
return this;
}
/**
* Builder method to set the URL for a host and a port.
*
* @param host
* the host where to get the Terracotta configuration from
* @param port
* the port on that host
* @return this configuration instance
*/
public final TerracottaClientConfiguration url(String host, String port) {
setUrl(host + ":" + port);
return this;
}
/**
* Set url
*/
public final void setUrl(String url) {
this.url = url;
validateConfiguration();
}
/**
* Get url string
*/
public final String getUrl() {
return this.url;
}
/**
* Tell the BeanHandler to extract the entire subtree xml as text at element . Expects
* to receive the contents of the tag and will wrap it in a proper tc-config header / footer.
*/
public final void extractTcconfig(String text) {
this.embeddedConfig = text;
validateConfiguration();
}
/**
* Get the embedded config read as
*/
public final String getEmbeddedConfig() {
return TC_CONFIG_HEADER + embeddedConfig + TC_CONFIG_FOOTER;
}
/**
* Get the original embedded config
*
* @return original embedded config
*/
public final String getOriginalEmbeddedConfig() {
return embeddedConfig;
}
/**
* Helper to check whether this is url config or embedded config
*/
public final boolean isUrlConfig() {
return this.url != null;
}
private void validateConfiguration() {
if (this.url != null && this.embeddedConfig != null) {
throw new InvalidConfigurationException("It is invalid to specify both a config url and "
+ "an embedded config in the element.");
}
}
/**
* Returns true if rejoin is enabled
*
* @return the rejoin
*/
public boolean isRejoin() {
return rejoin;
}
/**
* Set rejoin value
*
* @param rejoin the rejoin to set
*/
public void setRejoin(boolean rejoin) {
if (configFrozen) {
throw new CacheException("Cannot enable/disable rejoin once config has been frozen");
}
this.rejoin = rejoin;
}
/**
* Builder method to set rejoin
*
* @param rejoin
* @return this instance
*/
public TerracottaClientConfiguration rejoin(boolean rejoin) {
this.setRejoin(rejoin);
return this;
}
/**
* Returns true if it is a WAN enabled TSA
*
* @return wanEnabledTSA
*/
public boolean isWanEnabledTSA() {
return wanEnabledTSA;
}
/**
* Set wanEnabledTSA value
*
* @param wanEnabledTSA
*/
public void setWanEnabledTSA(boolean wanEnabledTSA) {
if (configFrozen) {
throw new CacheException("Cannot set wanEnabledTSA once config has been frozen");
}
this.wanEnabledTSA = wanEnabledTSA;
}
/**
* Builder method to set wanEnabledTSA
*
* @param wanEnabledTSA
* @return this instance
*/
public TerracottaClientConfiguration wanEnabledTSA(boolean wanEnabledTSA) {
this.setWanEnabledTSA(wanEnabledTSA);
return this;
}
/**
* Freezes the config
*/
public void freezeConfig() {
configFrozen = true;
}
}