org.glassfish.cdi.hk2.HK2IntegrationExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-embedded-web Show documentation
Show all versions of payara-embedded-web Show documentation
Embedded-Web Distribution of the Payara Project for IBM JDK
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package org.glassfish.cdi.hk2;
import java.lang.annotation.Annotation;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import javax.enterprise.event.Observes;
import javax.enterprise.inject.spi.AfterBeanDiscovery;
import javax.enterprise.inject.spi.AfterDeploymentValidation;
import javax.enterprise.inject.spi.Extension;
import javax.enterprise.inject.spi.InjectionPoint;
import javax.enterprise.inject.spi.InjectionTarget;
import javax.enterprise.inject.spi.ProcessInjectionTarget;
import javax.inject.Singleton;
import org.glassfish.hk2.api.ActiveDescriptor;
import org.glassfish.hk2.api.DynamicConfiguration;
import org.glassfish.hk2.api.DynamicConfigurationService;
import org.glassfish.hk2.api.Injectee;
import org.glassfish.hk2.api.PerLookup;
import org.glassfish.hk2.api.ServiceLocator;
/**
* A portable CDI extension, which is the touch-point for hk2 integration with CDI
*
* This extension is registered via META-INF/services/javax.enterprise.inject.spi.Extension
*
* @author jwells
*
*/
public class HK2IntegrationExtension implements Extension {
private final HashMap> foundWithHK2 = new HashMap>();
private final ServiceLocator locator = HK2IntegrationUtilities.getApplicationServiceLocator();
/**
* Called by CDI, gathers up all of the injection points known to hk2.
*
* @param pit The injection target even from CDI
*/
@SuppressWarnings("unused")
private void injectionTargetObserver(@Observes ProcessInjectionTarget pit) {
if (locator == null) return;
InjectionTarget> injectionTarget = pit.getInjectionTarget();
Set injectionPoints = injectionTarget.getInjectionPoints();
for (InjectionPoint injectionPoint : injectionPoints) {
Injectee injectee = HK2IntegrationUtilities.convertInjectionPointToInjectee(injectionPoint);
ActiveDescriptor> descriptor = locator.getInjecteeDescriptor(injectee);
if (descriptor == null || descriptor.getServiceId() == null) continue;
// using a map removes duplicates
foundWithHK2.put(descriptor.getServiceId(), descriptor);
}
}
/**
* Called by CDI after going through all of the injection points. For each
* service known to hk2, adds a CDI bean.
*
* @param abd This is used just to mark the type of the event
*/
@SuppressWarnings({ "unused", "unchecked", "rawtypes" })
private void afterDiscoveryObserver(@Observes AfterBeanDiscovery abd) {
if (locator == null) return;
HashSet> customScopes = new HashSet>();
for (ActiveDescriptor> descriptor : foundWithHK2.values()) {
abd.addBean(new HK2CDIBean(locator, descriptor));
customScopes.add(descriptor.getScopeAnnotation());
}
customScopes.remove(PerLookup.class);
customScopes.remove(Singleton.class);
List hk2Contexts = locator.getAllServices(org.glassfish.hk2.api.Context.class);
for (org.glassfish.hk2.api.Context hk2Context : hk2Contexts) {
if (!customScopes.contains(hk2Context.getScope())) {
continue;
}
abd.addContext(new HK2ContextBridge(hk2Context));
}
foundWithHK2.clear(); // No need to keep these references around
}
/**
* Called by CDI after it has been completely validated. Will add the JIT resolver to HK2
* with the BeanManager
*
* @param event This is just to mark the type of the event
* @param manager The manager that will be used to get references
*/
@SuppressWarnings("unused")
private void afterDeploymentValidation(@Observes AfterDeploymentValidation event) {
if (locator == null) return;
DynamicConfigurationService dcs = locator.getService(DynamicConfigurationService.class);
DynamicConfiguration config = dcs.createDynamicConfiguration();
config.addActiveDescriptor(CDISecondChanceResolver.class);
config.addActiveDescriptor(CDIContextBridge.class);
config.commit();
}
public String toString() {
return "HK2IntegrationExtension(" + locator + "," + System.identityHashCode(this) + ")";
}
}