com.hazelcast.client.config.QueryCacheYamlConfigBuilderHelper Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved.
*
* 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 com.hazelcast.client.config;
import com.hazelcast.config.EntryListenerConfig;
import com.hazelcast.config.InvalidConfigurationException;
import com.hazelcast.config.MapIndexConfig;
import com.hazelcast.config.PredicateConfig;
import com.hazelcast.config.QueryCacheConfig;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import static com.hazelcast.config.DomConfigHelper.childElements;
import static com.hazelcast.config.DomConfigHelper.getBooleanValue;
/**
* YAML-specific implementation of the {@link QueryCacheConfigBuilderHelper}
* interface. Builds {@link QueryCacheConfig} from YAML configuration.
*/
final class QueryCacheYamlConfigBuilderHelper extends AbstractQueryCacheConfigBuilderHelper {
QueryCacheYamlConfigBuilderHelper() {
super(true);
}
@Override
public void handleQueryCache(ClientConfig clientConfig, Node node) {
for (Node queryCacheNode : childElements(node)) {
handleQueryCacheNode(clientConfig, queryCacheNode);
}
}
@Override
protected String getCacheName(Node queryCacheNode) {
return queryCacheNode.getNodeName();
}
@Override
protected String getCacheMapName(NamedNodeMap attrs) {
return getTextContent(attrs.getNamedItem("map-name"));
}
@Override
protected void handleEntryListeners(QueryCacheConfig queryCacheConfig, Node childNode) {
for (Node listenerNode : childElements(childNode)) {
NamedNodeMap attrs = listenerNode.getAttributes();
boolean incValue = getBooleanValue(getTextContent(attrs.getNamedItem("include-value")));
boolean local = getBooleanValue(getTextContent(attrs.getNamedItem("local")));
String listenerClass = getTextContent(attrs.getNamedItem("class-name"));
queryCacheConfig.addEntryListenerConfig(new EntryListenerConfig(listenerClass, local, incValue));
}
}
@Override
protected void queryCachePredicateHandler(Node childNode, QueryCacheConfig queryCacheConfig) {
NamedNodeMap predicateAttributes = childNode.getAttributes();
Node classNameNode = predicateAttributes.getNamedItem("class-name");
Node sqlNode = predicateAttributes.getNamedItem("sql");
if (classNameNode != null && sqlNode != null) {
throw new InvalidConfigurationException("Both class-name and sql is defined for the predicate of map "
+ childNode.getParentNode().getParentNode().getNodeName());
}
if (classNameNode == null && sqlNode == null) {
throw new InvalidConfigurationException("Either class-name and sql should be defined for the predicate of map "
+ childNode.getParentNode().getParentNode().getNodeName());
}
PredicateConfig predicateConfig = new PredicateConfig();
if (classNameNode != null) {
predicateConfig.setClassName(getTextContent(classNameNode));
} else if (sqlNode != null) {
predicateConfig.setSql(getTextContent(sqlNode));
}
queryCacheConfig.setPredicateConfig(predicateConfig);
}
@Override
protected void queryCacheIndexesHandle(Node childNode, QueryCacheConfig queryCacheConfig) {
for (Node indexNode : childElements(childNode)) {
handleIndexNode(queryCacheConfig, indexNode);
}
}
@Override
protected void handleIndexNode(QueryCacheConfig queryCacheConfig, Node indexNode) {
final NamedNodeMap attrs = indexNode.getAttributes();
boolean ordered = getBooleanValue(getTextContent(attrs.getNamedItem("ordered")));
String attribute = indexNode.getNodeName();
queryCacheConfig.addIndexConfig(new MapIndexConfig(attribute, ordered));
}
}