Package br.gov.frameworkdemoiselle.util

Source Code of br.gov.frameworkdemoiselle.util.Beans

/*
* Demoiselle Framework
* Copyright (C) 2010 SERPRO
* ----------------------------------------------------------------------------
* This file is part of Demoiselle Framework.
*
* Demoiselle Framework is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License version 3
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License version 3
* along with this program; if not,  see <http://www.gnu.org/licenses/>
* or write to the Free Software Foundation, Inc., 51 Franklin Street,
* Fifth Floor, Boston, MA  02110-1301, USA.
* ----------------------------------------------------------------------------
* Este arquivo é parte do Framework Demoiselle.
*
* O Framework Demoiselle é um software livre; você pode redistribuí-lo e/ou
* modificá-lo dentro dos termos da GNU LGPL versão 3 como publicada pela Fundação
* do Software Livre (FSF).
*
* Este programa é distribuído na esperança que possa ser útil, mas SEM NENHUMA
* GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou
* APLICAÇÃO EM PARTICULAR. Veja a Licença Pública Geral GNU/LGPL em português
* para maiores detalhes.
*
* Você deve ter recebido uma cópia da GNU LGPL versão 3, sob o título
* "LICENCA.txt", junto com esse programa. Se não, acesse <http://www.gnu.org/licenses/>
* ou escreva para a Fundação do Software Livre (FSF) Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA.
*/
package br.gov.frameworkdemoiselle.util;

import java.lang.annotation.Annotation;
import java.lang.reflect.Member;
import java.lang.reflect.Type;
import java.util.Arrays;
import java.util.HashSet;
import java.util.NoSuchElementException;
import java.util.Set;

import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.spi.Annotated;
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.BeanManager;
import javax.enterprise.inject.spi.InjectionPoint;

import br.gov.frameworkdemoiselle.DemoiselleException;

/**
* <p>
* Utilizes a {@link BeanManager}, obtained in the bootstrap process, to provide custom operations for obtaining
* contextual references for beans.
* <p>
* All its public methods are static.
*
* @author SERPRO
*/
public final class Beans {

  private static BeanManager beanManager = null;
 
  private Beans() {
  }

  public static void setBeanManager(BeanManager manager) {
    beanManager = manager;
  }

  public static BeanManager getBeanManager() {
    return beanManager;
  }
 
  /**
   * Obtains a injectble instance of a bean, which have the given required type and qualifiers, and are available for
   * injection in the point where this method was call.
   *
   * @param beanClass
   *            the beanClass which instace is requested to be obtained.
   * @param qualifiers
   *            a set of qualifiers with any quantity of elements (zero including).
   * @return Type a instace of the injected beanClass.
   * @throws DemoiselleException
   *             if no bean are avaliable to be injected for the given Class and qualifiers.
   */
  public static <T> T getReference(final Class<T> beanClass, Annotation... qualifiers) {
    T instance;

    try {
      instance = (T) getReference(getBeanManager().getBeans(beanClass, qualifiers), beanClass, qualifiers);

    } catch (NoSuchElementException cause) {
      StringBuffer buffer = new StringBuffer();
      buffer.append(beanClass.getCanonicalName());

      for (Annotation qualifier : qualifiers) {
        buffer.append(", ");
        buffer.append(qualifier.getClass().getCanonicalName());
      }

      String message = getBundle().getString("bean-not-found", buffer.toString());
      throw new DemoiselleException(message, cause);
    }

    return instance;
  }

  /**
   * Obtains a injectble instance of a bean, which have the given required type and are available for injection in the
   * point where this method was call.
   *
   * @param beanClass
   *            the beanClass which instace is requested to be obtained.
   * @return Type a instace of the injected beanClass.
   * @throws DemoiselleException
   *             if no bean are avaliable to be injected for the given Class.
   */
  public static <T> T getReference(final Class<T> beanClass) {
    T instance;

    try {
      instance = (T) getReference(getBeanManager().getBeans(beanClass), beanClass);

    } catch (NoSuchElementException cause) {
      String message = getBundle().getString("bean-not-found", beanClass.getCanonicalName());
      throw new DemoiselleException(message, cause);
    }

    return instance;
  }

  /**
   * Obtains a injectble instance of a bean, which have the given EL name and are available for injection in the point
   * where this method was call.
   *
   * @param beanName
   *            the EL name for the requested bean.
   * @return Type a instace of the injected beanClass.
   * @throws DemoiselleException
   *             if no bean are avaliable to be injected for the given bean name.
   */
  @SuppressWarnings("unchecked")
  public static <T> T getReference(String beanName) {
    T instance;

    try {
      instance = (T) getReference(getBeanManager().getBeans(beanName));

    } catch (NoSuchElementException cause) {
      String message = getBundle().getString("bean-not-found", beanName);
      throw new DemoiselleException(message, cause);
    }

    return instance;
  }

  @SuppressWarnings("unchecked")
  private static <T> T getReference(Set<Bean<?>> beans, Class<T> beanClass, Annotation... qualifiers) {
    Bean<?> bean = beans.iterator().next();

    // TODO Esta mudança só deve ser submetida com os testes passando. Esta mudança quebra os testes.
    // Bean<?> bean = getBeanManager().resolve( beans );

    CreationalContext<?> context = getBeanManager().createCreationalContext(bean);
    Type beanType = beanClass == null ? bean.getBeanClass() : beanClass;
    InjectionPoint injectionPoint = new CustomInjectionPoint(bean, beanType, qualifiers);

    return (T) getBeanManager().getInjectableReference(injectionPoint, context);
  }

  private static <T> T getReference(Set<Bean<?>> beans) {
    return getReference(beans, (Class<T>) null);
  }

  private static ResourceBundle getBundle() {
    return Beans.getReference(ResourceBundle.class, new NameQualifier("demoiselle-core-bundle"));
  }

  static class CustomInjectionPoint implements InjectionPoint {

    private final Bean<?> bean;

    private final Type beanType;

    private final Set<Annotation> qualifiers;

    public CustomInjectionPoint(Bean<?> bean, Type beanType, Annotation... qualifiers) {
      this.bean = bean;
      this.beanType = beanType;
      this.qualifiers = new HashSet<Annotation>(Arrays.asList(qualifiers));
    }

    @Override
    public Type getType() {
      return this.beanType;
    }

    @Override
    public Set<Annotation> getQualifiers() {
      return this.qualifiers;
    }

    @Override
    public Bean<?> getBean() {
      return this.bean;
    }

    @Override
    public Member getMember() {
      return null;
    }

    @Override
    public boolean isDelegate() {
      return false;
    }

    @Override
    public boolean isTransient() {
      return false;
    }

    @Override
    public Annotated getAnnotated() {
      return new Annotated() {

        @Override
        public Type getBaseType() {
          // TODO Auto-generated method stub
          return null;
        }

        @Override
        public Set<Type> getTypeClosure() {
          // TODO Auto-generated method stub
          return null;
        }

        @Override
        @SuppressWarnings("unchecked")
        public <T extends Annotation> T getAnnotation(Class<T> annotationType) {
          T result = null;

          for (Annotation annotation : getAnnotations()) {
            if (annotation.annotationType() == annotationType) {
              result = (T) annotation;
              break;
            }
          }

          return result;
        }

        @Override
        public Set<Annotation> getAnnotations() {
          return qualifiers;
        }

        @Override
        public boolean isAnnotationPresent(Class<? extends Annotation> annotationType) {
          return qualifiers.contains(annotationType);
        }
      };
    }
  }
}
TOP

Related Classes of br.gov.frameworkdemoiselle.util.Beans

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.