All Downloads are FREE. Search and download functionalities are using the official Maven repository.

infra.beans.factory.ObjectProvider Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2017 - 2024 the original author or authors.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see [https://www.gnu.org/licenses/]
 */

package infra.beans.factory;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.function.Consumer;
import java.util.function.Supplier;
import java.util.stream.Stream;

import infra.beans.BeansException;
import infra.beans.factory.annotation.Autowired;
import infra.core.OrderComparator;
import infra.core.Ordered;
import infra.core.annotation.Order;
import infra.lang.Nullable;

/**
 * A variant of {@link Supplier} designed specifically for injection points,
 * allowing for programmatic optionality and lenient not-unique handling.
 *
 * 

In a {@link BeanFactory} environment, every {@code ObjectProvider} obtained * from the factory will be bound to its {@code BeanFactory} for a specific bean * type, matching all provider calls against factory-registered bean definitions. * *

this interface extends {@link Iterable} and provides {@link Stream} * support. It can be therefore be used in {@code for} loops, provides {@link #forEach} * iteration and allows for collection-style {@link #stream} access. * *

As of 5.0, this interface declares default implementations for all methods. * This makes it easier to implement in a custom fashion, e.g. for unit tests. * For typical purposes, implement {@link #stream()} to enable all other methods. * Alternatively, you may implement the specific methods that your callers expect, * e.g. just {@link #get()} or {@link #getIfAvailable()}. * * @param the object type * @author Juergen Hoeller * @author Harry Yang * @see BeanFactory#getBeanProvider * @see Autowired * @since 3.0 2021/3/6 11:18 */ public interface ObjectProvider extends Supplier, Iterable { /** * Return an instance (possibly shared or independent) of the object * managed by this factory. *

Allows for specifying explicit construction arguments, along the * lines of {@link BeanFactory#getBean(String)}. * * @return an instance of the bean * @throws BeansException in case of creation errors */ @Override default T get() throws BeansException { Iterator it = iterator(); if (!it.hasNext()) { throw new NoSuchBeanDefinitionException(Object.class); } T result = it.next(); if (it.hasNext()) { throw new NoUniqueBeanDefinitionException(Object.class, 2, "more than 1 matching bean"); } return result; } /** * Return an instance (possibly shared or independent) of the object * managed by this factory. *

Allows for specifying explicit construction arguments, along the * lines of {@link BeanFactory#getBean(String, Object...)}. * * @param args arguments to use when creating a corresponding instance * @return an instance of the bean * @throws BeansException in case of creation errors * @see #get() * @since 4.0 */ default T get(Object... args) throws BeansException { throw new UnsupportedOperationException("Retrieval with arguments not supported -" + "for custom ObjectProvider classes, implement getObject(Object...) for your purposes"); } /** * Return an instance (possibly shared or independent) of the object * managed by this factory. * * @return an instance of the bean, or {@code null} if not available * @throws BeansException in case of creation errors * @see #get() */ @Nullable default T getIfAvailable() throws BeansException { try { return get(); } catch (NoUniqueBeanDefinitionException ex) { throw ex; } catch (NoSuchBeanDefinitionException ex) { return null; } } /** * Return an instance (possibly shared or independent) of the object * managed by this factory. * * @param defaultSupplier a callback for supplying a default object * if none is present in the factory * @return an instance of the bean, or the supplied default object * if no such bean is available * @throws BeansException in case of creation errors * @see #getIfAvailable() */ default T getIfAvailable(Supplier defaultSupplier) throws BeansException { T dependency = getIfAvailable(); return dependency != null ? dependency : defaultSupplier.get(); } /** * Consume an instance (possibly shared or independent) of the object * managed by this factory, if available. * * @param dependencyConsumer a callback for processing the target object * if available (not called otherwise) * @return if available status * @throws BeansException in case of creation errors * @see #getIfAvailable() */ default boolean ifAvailable(Consumer dependencyConsumer) throws BeansException { T dependency = getIfAvailable(); if (dependency != null) { dependencyConsumer.accept(dependency); return true; } return false; } /** * Return an instance (possibly shared or independent) of the object * managed by this factory. * * @return an instance of the bean, or {@code null} if not available or * not unique (i.e. multiple candidates found with none marked as primary) * @throws BeansException in case of creation errors * @see #get() */ @Nullable default T getIfUnique() throws BeansException { try { return get(); } catch (NoSuchBeanDefinitionException ex) { return null; } } /** * Return an instance (possibly shared or independent) of the object * managed by this factory. * * @param defaultSupplier a callback for supplying a default object * if no unique candidate is present in the factory * @return an instance of the bean, or the supplied default object * if no such bean is available or if it is not unique in the factory * (i.e. multiple candidates found with none marked as primary) * @throws BeansException in case of creation errors * @see #getIfUnique() * @since 4.0 */ default T getIfUnique(Supplier defaultSupplier) throws BeansException { T dependency = getIfUnique(); return dependency != null ? dependency : defaultSupplier.get(); } /** * Consume an instance (possibly shared or independent) of the object * managed by this factory, if unique. * * @param dependencyConsumer a callback for processing the target object * if unique (not called otherwise) * @return if Unique * @throws BeansException in case of creation errors * @see #getIfAvailable() */ default boolean ifUnique(Consumer dependencyConsumer) throws BeansException { T dependency = getIfUnique(); if (dependency != null) { dependencyConsumer.accept(dependency); return true; } return false; } /** * Return a sequential {@link Iterator} over all matching object instances, * pre-ordered according to the factory's common order comparator. *

In a standard application context, this will be ordered * according to {@link Ordered} conventions, * and in case of annotation-based configuration also considering the * {@link Order} annotation, * analogous to multi-element injection points of list/array type. * * @see #orderedStream() */ @Override default Iterator iterator() { return orderedStream().iterator(); } /** * Return a sequential {@link Stream} over all matching object instances, * without specific ordering guarantees (but typically in registration order). * * @see #iterator() * @see #orderedStream() */ default Stream stream() { throw new UnsupportedOperationException("Element access not supported - " + "for custom ObjectProvider classes, implement stream() to enable all other methods"); } /** * Return a sequential {@link Stream} over all matching object instances, * pre-ordered according to the factory's common order comparator. *

In a standard application context, this will be ordered * according to {@link Ordered} conventions, * and in case of annotation-based configuration also considering the * {@link Order} annotation, * analogous to multi-element injection points of list/array type. * * @see #stream() * @see OrderComparator */ default Stream orderedStream() { return stream().sorted(OrderComparator.INSTANCE); } /** * Return a {@link List} over all matching object instances, * pre-ordered according to the factory's common order comparator. *

In a standard application context, this will be ordered * according to {@link Ordered} conventions, * and in case of annotation-based configuration also considering the * {@link Order} annotation, * analogous to multi-element injection points of list/array type. * * @see Stream#toList() * @see #iterator() * @see #orderedStream() * @since 4.0 */ default ArrayList orderedList() { ArrayList ret = new ArrayList<>(); for (T t : this) { ret.add(t); } return ret; } /** * Return a {@link List} over all matching object instances, * without specific ordering guarantees (but typically in registration order). * * @see Stream#toList() * @see #iterator() * @since 4.0 */ default ArrayList toList() { ArrayList ret = new ArrayList<>(); Iterator iterator = stream().iterator(); while (iterator.hasNext()) { ret.add(iterator.next()); } return ret; } /** * Add over all matching object instances to a {@link List} * pre-ordered according to the factory's common order comparator. *

In a standard application context, this will be ordered * according to {@link Ordered} conventions, * and in case of annotation-based configuration also considering the * {@link Order} annotation, * analogous to multi-element injection points of list/array type. * * @see Stream#toList() * @see #iterator() * @since 4.0 */ default void addOrderedTo(Collection destination) { for (T t : this) { destination.add(t); } } /** * Add a {@link List} over all matching object instances, * without specific ordering guarantees (but typically in registration order). * * @see Stream#toList() * @see #iterator() * @since 4.0 */ default void addTo(Collection destination) { Iterator iterator = stream().iterator(); while (iterator.hasNext()) { destination.add(iterator.next()); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy