Package org.jboss.errai.cdi.server

Source Code of org.jboss.errai.cdi.server.CDIServerUtil

/*
* Copyright 2009 JBoss, a divison Red Hat, Inc
*
* 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.jboss.errai.cdi.server;

import java.lang.annotation.Annotation;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.BeanManager;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.naming.Reference;

import org.jboss.errai.bus.client.api.Message;
import org.jboss.errai.bus.server.annotations.Service;
import org.jboss.errai.bus.server.service.ErraiService;
import org.jboss.errai.container.ErraiServiceObjectFactory;
import org.jboss.errai.container.ServiceFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* @author Heiko Braun <hbraun@redhat.com>
* @author Mike Brock <cbrock@redhat.com>
*/
public class CDIServerUtil {
  private static final String COMPONENT_CONTEXT = "java:comp/env";

  private static final String ERRAI_STANDARD_SERVICE_JNDI = COMPONENT_CONTEXT + "/ErraiService";
  private static final String ERRAI_DEVEL_SERVICE_JNDI = "java:comp/ErraiService";

  private static final String BEAN_MANAGER_JNDI = "java:comp/BeanManager";
  private static final String BEAN_MANAGER_FALLBACK_JNDI = "java:comp/env/BeanManager";

  private static Logger log = LoggerFactory.getLogger("ErraiJNDI");

  public static <T> T lookupBean(BeanManager beanManager, Class<T> serviceType) {
    Bean<?> bean = beanManager.resolve(beanManager.getBeans(serviceType));

    if (bean == null) {
      return null;
    }

    return (T) beanManager.getReference(bean, serviceType, beanManager.createCreationalContext(bean));
  }

  public static String getSessionId(Message message) {
    return message.getResource(String.class, "SessionID");
  }


  public static <T> T lookupRPCBean(BeanManager beanManager, T rpcIntf, Class beanClass, Annotation[] annotations) {
    Bean<?> bean = null;
     
    if (annotations != null) {
      bean = beanManager.resolve(beanManager.getBeans(beanClass, annotations));
    } else {
      bean = beanManager.resolve(beanManager.getBeans(beanClass));
    }
     
    CreationalContext<?> context = beanManager.createCreationalContext(bean);
    return (T) beanManager.getReference(bean, beanClass, context);

  }

  private static ErraiService backupSingleton;

  private static ErraiService _lookupErraiService(InitialContext ctx) {
    ErraiService errai;
    if ((errai = tryLookup(ctx, ErraiService.ERRAI_DEFAULT_JNDI)) != null) {
      return errai;
    }

    if ((errai = tryLookup(ctx, ERRAI_STANDARD_SERVICE_JNDI)) != null) {
      return errai;
    }

    if ((errai = tryLookup(ctx, ERRAI_DEVEL_SERVICE_JNDI)) != null) {
      return errai;
    }

    return null;
  }

  public static ErraiService lookupErraiService() {
    InitialContext ctx = null;
    ErraiService errai = null;

    boolean bound = false;
    try {
      ctx = new InitialContext();
    }
    catch (NamingException e) {
      log.warn("could not create initial context", e);
    }

    if (ctx != null) {
      log.info("searching to see if ErraiService is already bound...");

      if ((errai = _lookupErraiService(ctx)) != null) {
        bound = true;
      }

      Reference ref = new Reference(ErraiService.class.getName(), ErraiServiceObjectFactory.class.getName(), null);
      if (!bound) {
        bound = tryBind(ctx, ErraiService.ERRAI_DEFAULT_JNDI, ref);
        errai = tryLookup(ctx, ErraiService.ERRAI_DEFAULT_JNDI);
      }

      if (!bound) {
        bound = tryBind(ctx, ERRAI_STANDARD_SERVICE_JNDI, ref);
        errai = tryLookup(ctx, ERRAI_STANDARD_SERVICE_JNDI);
      }

      if (!bound) {
        bound = tryBind(ctx, ERRAI_DEVEL_SERVICE_JNDI, ref);
        errai = tryLookup(ctx, ERRAI_DEVEL_SERVICE_JNDI);
      }
    }

    if (!bound) {
      log.warn("JNDI binding failed due to error  -- will initialize with singleton.");

      try {
        if (backupSingleton == null) {
          backupSingleton = ServiceFactory.create();
        }

        errai = backupSingleton;
      }
      catch (Exception e2) {
        throw new RuntimeException("could not initialize ErraiService instance", e2);
      }
    }

    return errai;

  }

  private static ErraiService tryLookup(Context ctx, String addr) {

    ErraiService errai;
    try {
      errai = (ErraiService) ctx.lookup(addr);
      log.info("found ErraiService bound at: " + addr);

      return errai;
    }
    catch (Exception e) {
      return null;
    }
  }

  private static boolean tryBind(Context ctx, String addr, Reference ref) {
    String message = "attempting to bind ErraiService to JNDI context: " + addr + " ... ";
    try {
      ctx.bind(addr, ref);

      message += "success.";
      return true;
    }
    catch (Exception e) {
      message += "failed: " + e.getMessage();
      return false;
    }
    finally {
      log.info(message);
    }
  }

  public static BeanManager lookupBeanManager() {
    InitialContext ctx = null;
    BeanManager bm = null;

    try {
      ctx = new InitialContext();
      bm = (BeanManager) ctx.lookup(BEAN_MANAGER_JNDI);
    }
    catch (NamingException e) {

      if (ctx != null) {
        try {
          bm = (BeanManager) ctx.lookup(BEAN_MANAGER_FALLBACK_JNDI); // development mode
        }
        catch (NamingException e1) {
        }
      }

      if (null == bm)
        throw new RuntimeException("Failed to locate BeanManager", e);
    }

    return bm;
  }

  public static String resolveServiceName(Class<?> type) {
    String subjectName = type.getAnnotation(Service.class).value();
    if (subjectName.equals(""))
      subjectName = type.getSimpleName();
    return subjectName;
  }

  public static void main(String[] args) {
    for (int size = 1; size < 100; size++) {
      System.out.println("size " + size + " --- ");
     
      int arrayListScore = 0;
      int hashSetScore = 0;
     
      List a = new ArrayList(size);
      Set b = new HashSet(size);

      for (int i = 0; i < size; i++) {
        a.add(i);
        b.add(i);
      }

      long f;
      long s;
      for (int i = 0; i < 10; i++) {
        long st = System.nanoTime();
        for (int x = 0; x < 1000000; x++) {
          a.contains(250);
        }

        f = System.nanoTime() - st;

        // System.out.println("ArrayList (ns): " + (System.nanoTime() - st));

        st = System.nanoTime();
        for (int x = 0; x < 1000000; x++) {
          b.contains(250);
        }
        s = System.nanoTime() - st;
       
       

        if (f < s) {
          arrayListScore++;
        }
        else {
          hashSetScore++;
        }
        //   System.out.println("HashSet (ns): " + (System.nanoTime() - st));
      }

      System.out.print("Score (wins): ArrayList: " + arrayListScore + " vs HashSet: " + hashSetScore + " ");
   
      if (arrayListScore > hashSetScore) {
        System.out.println(" ** ArrayList wins!");
      }
      else if (arrayListScore == hashSetScore) {
        System.out.println(" ** Tie!");
      }
      else {
        System.out.println(" ** HashSet wins!");
      }
    }
   

  }
}
TOP

Related Classes of org.jboss.errai.cdi.server.CDIServerUtil

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.