org.gradle.internal.service.ServiceRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.internal.service;
import com.google.common.collect.ImmutableList;
import org.gradle.internal.Factory;
import org.gradle.internal.scan.UsedByScanPlugin;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.List;
/**
* A read-only registry of services. May or may not be immutable.
*/
public interface ServiceRegistry extends ServiceLookup {
/**
* Locates the service of the given type.
*
* @param serviceType The service type.
* @param The service type.
* @return The service instance. Never returns null.
* @throws UnknownServiceException When there is no service of the given type available.
* @throws ServiceLookupException On failure to lookup the specified service.
*/
@UsedByScanPlugin
T get(Class serviceType) throws UnknownServiceException, ServiceLookupException;
/**
* Locates all services of the given type.
*
* @param serviceType The service type.
* @param The service type.
* @throws ServiceLookupException On failure to lookup the specified service.
*/
List getAll(Class serviceType) throws ServiceLookupException;
/**
* Locates the service of the given type.
*
* @param serviceType The service type.
* @return The service instance. Never returns null.
* @throws UnknownServiceException When there is no service of the given type available.
* @throws ServiceLookupException On failure to lookup the specified service.
*/
@Override
Object get(Type serviceType) throws UnknownServiceException, ServiceLookupException;
/**
* Locates the service of the given type, returning null if no such service.
*
* @param serviceType The service type.
* @return The service instance. Returns {@code null} if no such service exists.
* @throws ServiceLookupException On failure to lookup the specified service.
*/
@Override
Object find(Type serviceType) throws ServiceLookupException;
/**
* Locates a factory which can create services of the given type.
*
* @param type The service type that the factory should create.
* @param The service type that the factory should create.
* @return The factory. Never returns null.
* @throws UnknownServiceException When there is no factory available for services of the given type.
* @throws ServiceLookupException On failure to lookup the specified service factory.
*/
Factory getFactory(Class type) throws UnknownServiceException, ServiceLookupException;
/**
* Creates a new service instance of the given type.
*
* @param type The service type
* @param The service type.
* @return The instance. Never returns null.
* @throws UnknownServiceException When there is no factory available for services of the given type.
* @throws ServiceLookupException On failure to lookup the specified service factory.
*/
T newInstance(Class type) throws UnknownServiceException, ServiceLookupException;
ServiceRegistry EMPTY = new ServiceRegistry() {
@Override
public T get(Class serviceType) throws UnknownServiceException, ServiceLookupException {
throw emptyServiceRegistryException(serviceType);
}
@Override
public List getAll(Class serviceType) throws ServiceLookupException {
return ImmutableList.of();
}
@Override
public Object get(Type serviceType) throws UnknownServiceException, ServiceLookupException {
throw emptyServiceRegistryException(serviceType);
}
@Override
public Object find(Type serviceType) throws ServiceLookupException {
return null;
}
@Override
public Factory getFactory(Class type) throws UnknownServiceException, ServiceLookupException {
throw emptyServiceRegistryException(type);
}
private UnknownServiceException emptyServiceRegistryException(Type type) {
return new UnknownServiceException(type, "Nothing is available in the empty service registry.");
}
@Override
public T newInstance(Class type) throws UnknownServiceException, ServiceLookupException {
throw emptyServiceRegistryException(type);
}
@Override
public Object get(Type serviceType, Class extends Annotation> annotatedWith) throws UnknownServiceException, ServiceLookupException {
throw emptyServiceRegistryException(serviceType);
}
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy