com.hazelcast.spring.hibernate.RegionFactoryBeanDefinitionParser Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2008-2024, 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.spring.hibernate;
import com.hazelcast.internal.nio.ClassLoaderUtil;
import com.hazelcast.internal.util.ExceptionUtil;
import org.springframework.beans.factory.support.AbstractBeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.xml.AbstractBeanDefinitionParser;
import org.springframework.beans.factory.xml.ParserContext;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
/**
* Parser for RegionFactory.
*
* Sample Spring XML for Hibernate RegionFactory
*
*
* <hz:hibernate-region-factory id="regionFactory" instance-ref="instance"/>
* <hz:hibernate-region-factory id="localRegionFactory" instance-ref="instance" mode="LOCAL" />
*
*
*/
public class RegionFactoryBeanDefinitionParser extends AbstractBeanDefinitionParser {
private static final String CACHE_REGION_FACTORY = "com.hazelcast.hibernate.HazelcastCacheRegionFactory";
private static final String LOCAL_CACHE_REGION_FACTORY = "com.hazelcast.hibernate.HazelcastLocalCacheRegionFactory";
@Override
protected AbstractBeanDefinition parseInternal(Element element, ParserContext parserContext) {
NamedNodeMap attributes = element.getAttributes();
String instanceRefName = "instance";
String mode = "DISTRIBUTED";
if (attributes != null) {
for (int a = 0; a < attributes.getLength(); a++) {
Node att = attributes.item(a);
String name = att.getNodeName();
if ("instance-ref".equals(name)) {
instanceRefName = att.getTextContent();
} else if ("mode".equals(name)) {
mode = att.getTextContent();
}
}
}
Class> clz = null;
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
try {
if ("DISTRIBUTED".equals(mode)) {
clz = ClassLoaderUtil.loadClass(classLoader, CACHE_REGION_FACTORY);
} else if ("LOCAL".equals(mode)) {
clz = ClassLoaderUtil.loadClass(classLoader, LOCAL_CACHE_REGION_FACTORY);
} else {
throw new IllegalArgumentException("Unknown Hibernate L2 cache mode: " + mode);
}
} catch (ClassNotFoundException e) {
ExceptionUtil.sneakyThrow(e);
}
BeanDefinitionBuilder builder = BeanDefinitionBuilder.rootBeanDefinition(clz);
builder.addConstructorArgReference(instanceRefName);
return builder.getBeanDefinition();
}
}