org.neo4j.common.DependencyResolver Maven / Gradle / Ivy
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j 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 .
*/
package org.neo4j.common;
import static org.neo4j.common.DependencyResolver.SelectionStrategy.SINGLE;
import java.util.Iterator;
import java.util.function.Supplier;
import org.neo4j.exceptions.UnsatisfiedDependencyException;
/**
* Find a dependency given a type.
*/
public interface DependencyResolver {
/**
* Tries to resolve a dependency that matches a given class. {@link SelectionStrategy#SINGLE Single} selection strategy is used to select dependencies
* among available candidates.
*
*
* @param type the type of {@link Class} that the returned instance must implement.
* @param the type that the returned instance must implement
* @return the resolved dependency for the given type.
* @throws IllegalArgumentException if no matching dependency was found.
* @throws UnsatisfiedDependencyException if no matching dependency was found.
*/
default T resolveDependency(Class type) {
return resolveDependency(type, SINGLE);
}
/**
* Tries to resolve a dependency that matches a given class. All candidates are fed to the
* {@code selector} which ultimately becomes responsible for making the choice between all available candidates.
*
* @param type the type of {@link Class} that the returned instance must implement.
* @param selector {@link SelectionStrategy} which will make the choice of which one to return among
* matching candidates.
* @param the type that the returned instance must implement
* @return the resolved dependency for the given type.
* @throws IllegalArgumentException if no matching dependency was found.
* @throws UnsatisfiedDependencyException if no matching dependency was found.
*/
T resolveDependency(Class type, SelectionStrategy selector);
/**
* Tries to resolve a dependencies that matches a given class.
*
* @param type the type of {@link Class} that the returned instances must implement.
* @param the type that the returned instance must implement
* @return the iterables with resolved dependencies for the given type.
*/
default Iterable resolveTypeDependencies(Class type) {
throw new UnsupportedOperationException("not implemented");
}
default Supplier provideDependency(Class type) {
return () -> resolveDependency(type);
}
/**
* Check if dependency resolver contains dependencies of provided type
* @param type dependency type to lookup
* @return true if dependency resolver contains dependency of requested type, false otherwise
*/
boolean containsDependency(Class> type);
/**
* Responsible for making the choice between available candidates.
*/
interface SelectionStrategy {
/**
* Given a set of candidates, select an appropriate one. Even if there are candidates this
* method may throw {@link IllegalArgumentException} if there was no suitable candidate.
*
* @param type the type of items.
* @param candidates candidates up for selection, where one should be picked. There might
* also be no suitable candidate, in which case an exception should be thrown.
* @param the type of items
* @return a suitable candidate among all available.
* @throws IllegalArgumentException if no suitable candidate was found.
*/
T select(Class type, Iterable extends T> candidates) throws IllegalArgumentException;
/**
* Returns the one and only dependency, or throws.
*/
SelectionStrategy SINGLE = new SelectionStrategy() {
@Override
public T select(Class type, Iterable extends T> candidates) throws IllegalArgumentException {
Iterator extends T> iterator = candidates.iterator();
if (!iterator.hasNext()) {
throw new IllegalArgumentException("Could not resolve dependency of type:" + type.getName());
}
T only = iterator.next();
if (iterator.hasNext()) {
throw new IllegalArgumentException("Multiple dependencies of type:" + type.getName());
} else {
return only;
}
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy