org.glassfish.jersey.inject.hk2.SupplierFactoryBridge Maven / Gradle / Ivy
Show all versions of jaxrs-ri Show documentation
/*
* Copyright (c) 2017, 2019 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.inject.hk2;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.Collections;
import java.util.IdentityHashMap;
import java.util.Map;
import java.util.function.Supplier;
import org.glassfish.jersey.internal.inject.DisposableSupplier;
import org.glassfish.hk2.api.Factory;
import org.glassfish.hk2.api.ServiceLocator;
import org.glassfish.hk2.utilities.reflection.ParameterizedTypeImpl;
/**
* This class is able to find the {@link Supplier} of the particular type and use this {@code Supplier} to create a new
* instance. If the {@code Supplier} is not found then {@code null} is returned.
*
* If the found {@code Supplier} is a type of {@link DisposableSupplier} then this bridge can delegate
* {@link Factory#dispose(Object)} invocation to {@link DisposableSupplier#dispose(Object)}.
*
* It's recommended to register the instance of this class as a singleton and then the {@link #provide()} is called according to
* a provided scope (for the created instance) during the binding process.
*
* @param type which could be handled by {@code Supplier} and this bridge.
*/
public class SupplierFactoryBridge implements Factory {
private final ServiceLocator locator;
private final ParameterizedType beanType;
private final String beanName;
private final boolean disposable;
// This bridge can create multiple instances using the method 'provide' therefore must map created suppliers because of
// 'dispose' invocation later on.
// TODO: Key as a WeakReference - prevent objects in scope which never dispose the objects such as PerLookup.
private Map