/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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.apache.openejb.cdi; import org.apache.openejb.AppContext; import org.apache.openejb.BeanContext; import org.apache.openejb.assembler.classic.AppInfo; import org.apache.openejb.core.ThreadContext; import org.apache.openejb.core.WebContext; import org.apache.openejb.loader.SystemInstance; import org.apache.openejb.util.LogCategory; import org.apache.openejb.util.Logger; import org.apache.webbeans.config.WebBeansFinder; import java.util.List; /** * @version $Rev$ $Date$C */ public class CdiBuilder { private static final Logger logger = Logger.getInstance(LogCategory.OPENEJB_CDI, CdiBuilder.class); private static final ThreadSingletonService SINGLETON_SERVICE = new ThreadSingletonServiceImpl(); public void build(final AppInfo appInfo, final AppContext appContext, final List<BeanContext> allDeployments) { initSingleton().initialize(new StartupObject(appContext, appInfo, allDeployments)); } private ThreadSingletonService initSingleton() { ThreadContext.addThreadContextListener(new RequestScopedThreadContextListener()); ThreadSingletonService singletonService = SystemInstance.get().getComponent(ThreadSingletonService.class); //TODO hack for tests. Currently initialized in OpenEJB line 90. cf alternative in AccessTimeoutTest which would //presumably have to be replicated in about 70 other tests. if (singletonService == null) { singletonService = initializeOWB(); } else { logger.info("Existing thread singleton service in SystemInstance(): " + singletonService); } return singletonService; } public void build(final AppInfo appInfo, final AppContext appContext, final List<BeanContext> allDeployments, final WebContext webContext) { final ThreadSingletonService singletonService = initSingleton(); singletonService.initialize(new StartupObject(appContext, appInfo, allDeployments, webContext)); } public static synchronized ThreadSingletonService initializeOWB() { logger.info("Created new singletonService " + SINGLETON_SERVICE); SystemInstance.get().setComponent(ThreadSingletonService.class, SINGLETON_SERVICE); try { WebBeansFinder.setSingletonService(SINGLETON_SERVICE); logger.info("Succeeded in installing singleton service"); } catch (final Exception e) { //ignore // not logging the exception since it is nto an error logger.debug("Could not install our singleton service"); } //TODO there must be a better place to initialize this ThreadContext.addThreadContextListener(new OWBContextThreadListener()); return SINGLETON_SERVICE; } }