All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.data.gemfire.config.support.LuceneIndexRegionBeanFactoryPostProcessor Maven / Gradle / Ivy

There is a newer version: 2.3.9.RELEASE
Show newest version
/*
 * Copyright 2018-2020 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
 *
 *      https://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.support;

import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.Optional;

import org.apache.geode.cache.Region;
import org.apache.geode.cache.lucene.LuceneIndex;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.data.gemfire.search.lucene.LuceneIndexFactoryBean;
import org.springframework.util.StringUtils;

/**
 * The {@link LuceneIndexRegionBeanFactoryPostProcessor} class is a Spring {@link BeanFactoryPostProcessor} ensuring
 * that a {@link LuceneIndex} is created before the {@link Region} on which the {@link LuceneIndex} is defined.
 *
 * @author John Blum
 * @see org.apache.geode.cache.Region
 * @see org.apache.geode.cache.lucene.LuceneIndex
 * @see org.springframework.beans.factory.config.BeanDefinition
 * @see org.springframework.beans.factory.config.BeanFactoryPostProcessor
 * @see org.springframework.beans.factory.config.ConfigurableListableBeanFactory
 * @see org.springframework.data.gemfire.search.lucene.LuceneIndexFactoryBean
 * @see org.springframework.data.gemfire.config.support.AbstractDependencyStructuringBeanFactoryPostProcessor
 * @since 2.1.0
 */
@SuppressWarnings("unused")
public class LuceneIndexRegionBeanFactoryPostProcessor extends AbstractDependencyStructuringBeanFactoryPostProcessor {

	@Override
	public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {

		Map regionNameToLuceneIndexBeanName = new HashMap<>();
		Map regionNameToRegionBeanName = new HashMap<>();

		Arrays.stream(beanFactory.getBeanDefinitionNames()).forEach(beanName -> {

			BeanDefinition beanDefinition = beanFactory.getBeanDefinition(beanName);

			if (isBeanDefinitionOfType(beanDefinition, LuceneIndexFactoryBean.class)) {
				resolveRegionNameFromLuceneIndex(beanDefinition)
					.ifPresent(regionName -> regionNameToLuceneIndexBeanName.put(regionName, beanName));
			}
			else if (isBeanDefinitionOfType(beanDefinition, isRegionBeanType())) {
				resolveRegionNameFromRegionBean(beanName, beanDefinition)
					.ifPresent(regionName -> regionNameToRegionBeanName.put(regionName, beanName));
			}
		});

		regionNameToRegionBeanName.keySet().stream().forEach(regionName -> {

			if (regionNameToLuceneIndexBeanName.containsKey(regionName)) {

				String regionBeanName = regionNameToRegionBeanName.get(regionName);
				String luceneIndexBeanName = regionNameToLuceneIndexBeanName.get(regionName);

				addDependsOn(beanFactory.getBeanDefinition(regionBeanName), luceneIndexBeanName);
			}
		});
	}

	private Optional resolveRegionNameFromLuceneIndex(BeanDefinition beanDefinition) {

		return getPropertyValue(beanDefinition, "regionPath")
			.map(this::asFullyQualifiedRegionName);
	}

	private Optional resolveRegionNameFromRegionBean(String beanName, BeanDefinition beanDefinition) {

		String regionName = asString(getPropertyValue(beanDefinition, "regionName"));
		String name = asString(getPropertyValue(beanDefinition, "name"));

		return Optional.ofNullable(StringUtils.hasText(regionName) ? regionName
			: (StringUtils.hasText(name) ? name : beanName)).filter(StringUtils::hasText);
	}

	private String asFullyQualifiedRegionName(Object regionPath) {

		return Optional.ofNullable(regionPath)
			.map(String::valueOf)
			.map(String::trim)
			.map(it -> {

				int index = it.lastIndexOf(Region.SEPARATOR);

				return index > 0 ? it : it.substring(1);
			})
			.filter(StringUtils::hasText)
			.orElse(null);
	}

	@SuppressWarnings("all")
	private String asString(Optional value) {

		return value.map(String::valueOf)
			.map(String::trim)
			.filter(StringUtils::hasText)
			.orElse(null);
	}
}