Package com.dragome.services.serverside

Source Code of com.dragome.services.serverside.ServerReflectionServiceImpl

/*******************************************************************************
* Copyright (c) 2011-2014 Fernando Petrola
*
* This file is part of Dragome SDK.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
******************************************************************************/
package com.dragome.services.serverside;

import java.util.Set;

import org.reflections.Reflections;

import com.dragome.commons.DefaultDragomeConfigurator;
import com.dragome.commons.DragomeConfigurator;
import com.dragome.commons.DragomeConfiguratorImplementor;
import com.dragome.services.ReflectionServiceImpl;

public class ServerReflectionServiceImpl extends ReflectionServiceImpl
{
  public <T> Set<Class<? extends T>> getSubTypesOf(final Class<T> type)
  {
    Reflections reflections= new Reflections("");
    Set<Class<? extends T>> implementations= reflections.getSubTypesOf(type);
    return implementations;
  }

  public DragomeConfigurator getConfigurator()
  {
    try
    {
      DragomeConfigurator foundConfigurator= null;
      Reflections reflections= new Reflections("");
      Set<Class<? extends DragomeConfigurator>> configurators= reflections.getSubTypesOf(DragomeConfigurator.class);
      for (Class<? extends DragomeConfigurator> class1 : configurators)
        if (!class1.equals(DefaultDragomeConfigurator.class))
          foundConfigurator= class1.newInstance();

      if (foundConfigurator == null)
      {
        Set<Class<?>> typesAnnotatedWith= reflections.getTypesAnnotatedWith(DragomeConfiguratorImplementor.class);
        if (typesAnnotatedWith.isEmpty())
          foundConfigurator= new DefaultDragomeConfigurator();
        else
          foundConfigurator= (DragomeConfigurator) typesAnnotatedWith.iterator().next().newInstance();
      }

      return foundConfigurator;
    }
    catch (Exception e)
    {
      throw new RuntimeException(e);
    }
  }

}
TOP

Related Classes of com.dragome.services.serverside.ServerReflectionServiceImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.