com.reactivetechnologies.platform.datagrid.util.EntityFinder.java Source code

Java tutorial

Introduction

Here is the source code for com.reactivetechnologies.platform.datagrid.util.EntityFinder.java

Source

/* ============================================================================
*
* FILE: EntityFinder.java
*
The MIT License (MIT)
    
Copyright (c) 2016 Sutanu Dalui
    
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
    
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
    
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*
* ============================================================================
*/
package com.reactivetechnologies.platform.datagrid.util;

import java.io.IOException;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider;
import org.springframework.core.type.AnnotationMetadata;
import org.springframework.core.type.classreading.MetadataReader;
import org.springframework.core.type.classreading.MetadataReaderFactory;
import org.springframework.core.type.filter.TypeFilter;
import org.springframework.util.StringUtils;

import com.reactivetechnologies.platform.datagrid.annotation.HzMapConfig;

public class EntityFinder {

    private static final Logger log = LoggerFactory.getLogger(EntityFinder.class);

    /**
     * 
     * @param basePkg
     * @return
     * @throws ClassNotFoundException
     */
    public static Collection<Class<?>> findEntityClasses(String basePkg) throws ClassNotFoundException {
        ClassPathScanningCandidateComponentProvider provider = new ClassPathScanningCandidateComponentProvider(
                false);
        provider.addIncludeFilter(new TypeFilter() {

            @Override
            public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory)
                    throws IOException {
                AnnotationMetadata aMeta = metadataReader.getAnnotationMetadata();
                return aMeta.hasAnnotation(HzMapConfig.class.getName());
            }
        });
        //consider the finder class to be in the root package
        Set<BeanDefinition> beans = null;
        try {
            beans = provider.findCandidateComponents(StringUtils.hasText(basePkg) ? basePkg
                    : EntityFinder.class.getName().substring(0, EntityFinder.class.getName().lastIndexOf(".")));
        } catch (Exception e) {
            throw new IllegalArgumentException("Unable to scan for entities under base package", e);
        }

        Set<Class<?>> classes = new HashSet<>();
        if (beans != null && !beans.isEmpty()) {
            classes = new HashSet<>(beans.size());
            for (BeanDefinition bd : beans) {
                classes.add(Class.forName(bd.getBeanClassName()));
            }
        } else {
            log.warn(">> Did not find any key value entities under the given base scan package [" + basePkg + "]");
        }
        return classes;

    }
}