
org.infinispan.persistence.rocksdb.configuration.RocksDBStoreConfigurationParser Maven / Gradle / Ivy
package org.infinispan.persistence.rocksdb.configuration;
import org.infinispan.commons.util.StringPropertyReplacer;
import org.infinispan.configuration.cache.ConfigurationBuilder;
import org.infinispan.configuration.parsing.ConfigurationBuilderHolder;
import org.infinispan.configuration.parsing.ConfigurationParser;
import org.infinispan.configuration.parsing.Namespace;
import org.infinispan.configuration.parsing.Namespaces;
import org.infinispan.configuration.parsing.ParseUtils;
import org.infinispan.configuration.parsing.Parser;
import org.infinispan.configuration.parsing.XMLExtendedStreamReader;
import org.infinispan.persistence.rocksdb.logging.Log;
import org.infinispan.util.logging.LogFactory;
import org.kohsuke.MetaInfServices;
import javax.xml.stream.XMLStreamConstants;
import javax.xml.stream.XMLStreamException;
/**
* RocksDB XML Parser
* @author Tristan Tarrant
* @since 9.0
*/
@MetaInfServices
@Namespaces({
@Namespace(root = "rocksdb-store"),
@Namespace(uri = "urn:infinispan:config:store:rocksdb:9.1", root = "rocksdb-store"),
@Namespace(uri = "urn:infinispan:config:store:rocksdb:9.0", root = "rocksdb-store")
})
public class RocksDBStoreConfigurationParser implements ConfigurationParser {
private static final Log log = LogFactory.getLog(RocksDBStoreConfigurationParser.class, Log.class);
public RocksDBStoreConfigurationParser() {
}
@Override
public void readElement(XMLExtendedStreamReader reader, ConfigurationBuilderHolder holder) throws XMLStreamException {
ConfigurationBuilder builder = holder.getCurrentConfigurationBuilder();
Element element = Element.forName(reader.getLocalName());
switch (element) {
case ROCKSDB_STORE: {
parseRocksDBCacheStore(reader, builder.persistence().addStore(RocksDBStoreConfigurationBuilder.class));
break;
}
default: {
throw ParseUtils.unexpectedElement(reader);
}
}
}
private void parseRocksDBCacheStore(XMLExtendedStreamReader reader, RocksDBStoreConfigurationBuilder builder) throws XMLStreamException {
for (int i = 0; i < reader.getAttributeCount(); i++) {
ParseUtils.requireNoNamespaceAttribute(reader, i);
String attributeValue = reader.getAttributeValue(i);
String value = StringPropertyReplacer.replaceProperties(attributeValue);
String attrName = reader.getAttributeLocalName(i);
Attribute attribute = Attribute.forName(attrName);
switch (attribute) {
case PATH: {
builder.location(value);
break;
}
case RELATIVE_TO: {
log.ignoreXmlAttribute(attribute);
break;
}
case CLEAR_THRESHOLD: {
builder.clearThreshold(Integer.valueOf(value));
break;
}
case BLOCK_SIZE: {
builder.blockSize(Integer.valueOf(value));
break;
}
case CACHE_SIZE: {
builder.cacheSize(Long.valueOf(value));
break;
}
default: {
Parser.parseStoreAttribute(reader, i, builder);
}
}
}
while (reader.hasNext() && (reader.nextTag() != XMLStreamConstants.END_ELEMENT)) {
Element element = Element.forName(reader.getLocalName());
switch (element) {
case EXPIRATION: {
this.parseExpiry(reader, builder);
break;
}
case COMPRESSION: {
this.parseCompression(reader, builder);
break;
}
default: {
Parser.parseStoreElement(reader, builder);
}
}
}
}
private void parseExpiry(XMLExtendedStreamReader reader, RocksDBStoreConfigurationBuilder builder) throws XMLStreamException {
for (int i = 0; i < reader.getAttributeCount(); i++) {
String attributeValue = reader.getAttributeValue(i);
String value = StringPropertyReplacer.replaceProperties(attributeValue);
Attribute attribute = Attribute.forName(reader.getAttributeLocalName(i));
switch (attribute) {
case PATH: {
builder.expiredLocation(value);
break;
}
case QUEUE_SIZE: {
builder.expiryQueueSize(Integer.valueOf(value));
break;
}
default:
throw ParseUtils.unexpectedAttribute(reader, i);
}
}
ParseUtils.requireNoContent(reader);
}
private void parseCompression(XMLExtendedStreamReader reader, RocksDBStoreConfigurationBuilder builder) throws XMLStreamException {
for (int i = 0; i < reader.getAttributeCount(); i++) {
String value = reader.getAttributeValue(i);
Attribute attribute = Attribute.forName(reader.getAttributeLocalName(i));
switch (attribute) {
case TYPE: {
builder.compressionType(CompressionType.valueOf(value));
break;
}
default:
throw ParseUtils.unexpectedAttribute(reader, i);
}
}
ParseUtils.requireNoContent(reader);
}
@Override
public Namespace[] getNamespaces() {
return ParseUtils.getNamespaceAnnotations(getClass());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy