/* * Copyright 2011-2013 the original author or authors. * * 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 org.springframework.data.gemfire.config.xml; import java.util.concurrent.atomic.AtomicBoolean; import org.springframework.beans.factory.config.BeanDefinition; import org.springframework.beans.factory.support.AbstractBeanDefinition; import org.springframework.beans.factory.support.BeanDefinitionBuilder; import org.springframework.beans.factory.support.BeanDefinitionReaderUtils; import org.springframework.beans.factory.xml.AbstractSimpleBeanDefinitionParser; import org.springframework.beans.factory.xml.ParserContext; import org.springframework.data.gemfire.IndexFactoryBean; import org.springframework.data.gemfire.config.support.DefinedIndexesApplicationListener; import org.w3c.dom.Element; /** * Bean definition parser for <gfe:index> SDG XML namespace (XSD) element. * * @author Costin Leau * @author John Blum * @see org.springframework.data.gemfire.IndexFactoryBean * @see org.springframework.beans.factory.xml.AbstractSimpleBeanDefinitionParser * @since 1.1.0 */ class IndexParser extends AbstractSimpleBeanDefinitionParser { private static final AtomicBoolean REGISTERED = new AtomicBoolean(false); /* (non-Javadoc) */ protected static void registerDefinedIndexesApplicationListener(ParserContext parserContext) { if (REGISTERED.compareAndSet(false, true)) { AbstractBeanDefinition createDefinedIndexesApplicationListener = BeanDefinitionBuilder .rootBeanDefinition(DefinedIndexesApplicationListener.class) .setRole(BeanDefinition.ROLE_INFRASTRUCTURE) .getBeanDefinition(); BeanDefinitionReaderUtils.registerWithGeneratedName(createDefinedIndexesApplicationListener, parserContext.getRegistry()); } } /** * {@inheritDoc} */ protected Class<?> getBeanClass(Element element) { return IndexFactoryBean.class; } /** * {@inheritDoc} */ @Override protected void doParse(Element element, ParserContext parserContext, BeanDefinitionBuilder builder) { super.doParse(element, parserContext, builder); registerDefinedIndexesApplicationListener(parserContext); ParsingUtils.setPropertyReference(element, builder, "cache-ref", "cache"); } /* (non-Javadoc) */ @Override protected boolean isEligibleAttribute(String attributeName) { return (!"cache-ref".equals(attributeName) && super.isEligibleAttribute(attributeName)); } }