org.glassfish.jersey.internal.inject.Injections Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxrs-ri Show documentation
Show all versions of jaxrs-ri Show documentation
A bundle project producing JAX-RS RI bundles. The primary artifact is an "all-in-one" OSGi-fied JAX-RS RI bundle
(jaxrs-ri.jar).
Attached to that are two compressed JAX-RS RI archives. The first archive (jaxrs-ri.zip) consists of binary RI bits and
contains the API jar (under "api" directory), RI libraries (under "lib" directory) as well as all external
RI dependencies (under "ext" directory). The secondary archive (jaxrs-ri-src.zip) contains buildable JAX-RS RI source
bundle and contains the API jar (under "api" directory), RI sources (under "src" directory) as well as all external
RI dependencies (under "ext" directory). The second archive also contains "build.xml" ANT script that builds the RI
sources. To build the JAX-RS RI simply unzip the archive, cd to the created jaxrs-ri directory and invoke "ant" from
the command line.
/*
* Copyright (c) 2012, 2023 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.jersey.internal.inject;
import java.util.LinkedList;
import java.util.List;
import java.util.Optional;
import jakarta.ws.rs.ConstrainedTo;
import jakarta.ws.rs.RuntimeType;
import jakarta.ws.rs.WebApplicationException;
import org.glassfish.jersey.internal.LocalizationMessages;
import org.glassfish.jersey.internal.ServiceFinder;
import org.glassfish.jersey.model.internal.RankedComparator;
import org.glassfish.jersey.model.internal.RankedProvider;
/**
* Injection binding utility methods.
*
* @author Tom Beerbower
* @author Marek Potociar
*/
public class Injections {
/**
* Creates an {@link InjectionManager} without parent and initial binder.
*
* @return an injection manager with all the bindings.
*/
public static InjectionManager createInjectionManager() {
return lookupInjectionManagerFactory(RuntimeType.SERVER).create();
}
/**
* Creates an {@link InjectionManager} without parent and initial binder.
* @param type {@link RuntimeType} the {@link InjectionManagerFactory} must be {@link ConstrainedTo} if annotated.
*
* @return an injection manager with all the bindings.
*/
public static InjectionManager createInjectionManager(RuntimeType type) {
return lookupInjectionManagerFactory(type).create();
}
/**
* Creates a {@link InjectionManager} with initial binder that is immediately registered.
*
* @param binder custom the {@link Binder binder}.
* @return an injection manager with all the bindings.
*/
public static InjectionManager createInjectionManager(Binder binder) {
InjectionManagerFactory injectionManagerFactory = lookupInjectionManagerFactory(RuntimeType.SERVER);
InjectionManager injectionManager = injectionManagerFactory.create();
injectionManager.register(binder);
return injectionManager;
}
/**
* Creates an unnamed, parented {@link InjectionManager}. In case the {@code parent} injection manager is not specified, the
* locator will not be parented.
*
* @param parent The parent of this injection manager. Services can be found in the parent (and all grand-parents). May be
* {@code null}. An underlying DI provider checks whether the parent is in a proper type.
* @return an injection manager with all the bindings.
*/
public static InjectionManager createInjectionManager(Object parent) {
return lookupInjectionManagerFactory(RuntimeType.SERVER).create(parent);
}
private static InjectionManagerFactory lookupInjectionManagerFactory(RuntimeType type) {
return lookupService(InjectionManagerFactory.class, type)
.orElseThrow(() -> new IllegalStateException(LocalizationMessages.INJECTION_MANAGER_FACTORY_NOT_FOUND()));
}
/**
* Look for a service of given type. If more then one service is found the method sorts them are returns the one with highest
* priority.
*
* @param clazz type of service to look for.
* @param type of service to look for.
* @param type {@link RuntimeType} the {@link InjectionManagerFactory} must be {@link ConstrainedTo} if annotated.
* @return instance of service with highest priority or {@code null} if service of given type cannot be found.
* @see jakarta.annotation.Priority
*/
private static Optional lookupService(final Class clazz, RuntimeType type) {
List> providers = new LinkedList<>();
for (T provider : ServiceFinder.find(clazz)) {
ConstrainedTo constrain = provider.getClass().getAnnotation(ConstrainedTo.class);
if (constrain != null && type != constrain.value()) {
continue;
}
providers.add(new RankedProvider<>(provider));
}
providers.sort(new RankedComparator<>(RankedComparator.Order.DESCENDING));
return providers.isEmpty() ? Optional.empty() : Optional.ofNullable(providers.get(0).getProvider());
}
/**
* Get the class by contract or create and inject a new instance.
*
* @param instance type.
* @param injectionManager DI injection manager.
* @param clazz class of the instance to be provider.
* @return instance of the class either provided as a service or created and injected by HK2.
*/
public static T getOrCreate(InjectionManager injectionManager, final Class clazz) {
try {
final T component = injectionManager.getInstance(clazz);
return component == null ? injectionManager.createAndInitialize(clazz) : component;
} catch (final RuntimeException e) {
// Look for WebApplicationException and return it if found. MultiException is thrown when *Param field is
// annotated and value cannot be provided (for example fromString(String) method can throw unchecked
// exception.
//
// see InvalidParamTest
// see JERSEY-1117
Throwable throwable = e.getCause();
if (throwable != null && WebApplicationException.class.isAssignableFrom(throwable.getClass())) {
throw (WebApplicationException) throwable;
}
throw e;
}
}
}