/* * Copyright 2014-2017 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.integration.config.xml; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; import org.w3c.dom.Element; import org.springframework.beans.factory.config.BeanDefinition; import org.springframework.beans.factory.config.RuntimeBeanReference; import org.springframework.beans.factory.support.AbstractBeanDefinition; import org.springframework.beans.factory.support.BeanDefinitionBuilder; import org.springframework.beans.factory.support.RootBeanDefinition; import org.springframework.beans.factory.xml.ParserContext; import org.springframework.integration.router.RecipientListRouter; import org.springframework.integration.scattergather.ScatterGatherHandler; import org.springframework.util.StringUtils; import org.springframework.util.xml.DomUtils; /** * Parser for the <scatter-gather> element. * * @author Artem Bilan * @since 4.1 */ public class ScatterGatherParser extends AbstractConsumerEndpointParser { private static final RecipientListRouterParser SCATTERER_PARSER = new RecipientListRouterParser(); private static final AggregatorParser GATHERER_PARSER = new AggregatorParser(); private static final DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance(); @Override protected BeanDefinitionBuilder parseHandler(Element element, ParserContext parserContext) { String scatterChannel = element.getAttribute("scatter-channel"); boolean hasScatterChannel = StringUtils.hasText(scatterChannel); Element scatterer = DomUtils.getChildElementByTagName(element, "scatterer"); boolean hasScatterer = scatterer != null; if (hasScatterChannel & hasScatterer) { parserContext.getReaderContext() .error("'scatter-channel' attribute and 'scatterer' sub-element are mutually exclusive", element); } if (!hasScatterChannel & !hasScatterer) { parserContext.getReaderContext() .error("The 'scatter-channel' attribute or 'scatterer' sub-element must be specified", element); } BeanDefinitionBuilder builder = BeanDefinitionBuilder.genericBeanDefinition(ScatterGatherHandler.class); AbstractBeanDefinition scatterGatherDefinition = builder.getRawBeanDefinition(); String id = resolveId(element, scatterGatherDefinition, parserContext); if (hasScatterChannel) { builder.addConstructorArgReference(scatterChannel); } else { BeanDefinition scattererDefinition = null; if (!hasScatterer) { scattererDefinition = new RootBeanDefinition(RecipientListRouter.class); } else { scattererDefinition = SCATTERER_PARSER.parse(scatterer, new ParserContext(parserContext.getReaderContext(), parserContext.getDelegate(), scatterGatherDefinition)); } String scattererId = id + ".scatterer"; if (hasScatterer && scatterer.hasAttribute(ID_ATTRIBUTE)) { scattererId = scatterer.getAttribute(ID_ATTRIBUTE); } parserContext.getRegistry().registerBeanDefinition(scattererId, scattererDefinition); builder.addConstructorArgValue(new RuntimeBeanReference(scattererId)); } Element gatherer = DomUtils.getChildElementByTagName(element, "gatherer"); BeanDefinition gathererDefinition = null; if (gatherer == null) { try { gatherer = documentBuilderFactory.newDocumentBuilder().newDocument().createElement("aggregator"); } catch (ParserConfigurationException e) { parserContext.getReaderContext().error(e.getMessage(), element); } } gathererDefinition = GATHERER_PARSER.parse(gatherer, new ParserContext(parserContext.getReaderContext(), parserContext.getDelegate(), scatterGatherDefinition)); String gathererId = id + ".gatherer"; if (gatherer != null && gatherer.hasAttribute(ID_ATTRIBUTE)) { gathererId = gatherer.getAttribute(ID_ATTRIBUTE); } parserContext.getRegistry().registerBeanDefinition(gathererId, gathererDefinition); builder.addConstructorArgValue(new RuntimeBeanReference(gathererId)); IntegrationNamespaceUtils.setReferenceIfAttributeDefined(builder, element, "gather-channel"); IntegrationNamespaceUtils.setValueIfAttributeDefined(builder, element, "gather-timeout"); IntegrationNamespaceUtils.setValueIfAttributeDefined(builder, element, "requires-reply"); return builder; } }