org.gradle.api.internal.AbstractNamedDomainObjectContainer 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 2010 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.api.internal;
import groovy.lang.Closure;
import org.gradle.api.Action;
import org.gradle.api.InvalidUserDataException;
import org.gradle.api.Named;
import org.gradle.api.NamedDomainObjectContainer;
import org.gradle.api.NamedDomainObjectProvider;
import org.gradle.api.Namer;
import org.gradle.api.reflect.HasPublicType;
import org.gradle.api.reflect.TypeOf;
import org.gradle.internal.Actions;
import org.gradle.internal.Cast;
import org.gradle.internal.metaobject.ConfigureDelegate;
import org.gradle.internal.reflect.Instantiator;
import org.gradle.util.internal.ConfigureUtil;
import javax.annotation.Nullable;
import static org.gradle.api.reflect.TypeOf.parameterizedTypeOf;
import static org.gradle.api.reflect.TypeOf.typeOf;
public abstract class AbstractNamedDomainObjectContainer extends DefaultNamedDomainObjectSet implements NamedDomainObjectContainer, HasPublicType {
protected AbstractNamedDomainObjectContainer(Class type, Instantiator instantiator, Namer super T> namer, CollectionCallbackActionDecorator callbackDecorator) {
super(type, instantiator, namer, callbackDecorator);
}
protected AbstractNamedDomainObjectContainer(Class type, Instantiator instantiator, CollectionCallbackActionDecorator callbackActionDecorator) {
super(type, instantiator, Named.Namer.forType(type), callbackActionDecorator);
}
/**
* Subclasses need only implement this method as the creation strategy.
*/
protected abstract T doCreate(String name);
@Override
public T create(String name) {
assertMutable("create(String)");
return create(name, Actions.doNothing());
}
@Override
public T maybeCreate(String name) {
T item = findByName(name);
if (item != null) {
return item;
}
return create(name);
}
@Override
public T create(String name, Closure configureClosure) {
assertMutable("create(String, Closure)");
return create(name, ConfigureUtil.configureUsing(configureClosure));
}
@Override
public T create(String name, Action super T> configureAction) throws InvalidUserDataException {
assertMutable("create(String, Action)");
assertCanAdd(name);
T object = doCreate(name);
add(object);
configureAction.execute(object);
return object;
}
protected ConfigureDelegate createConfigureDelegate(Closure configureClosure) {
return new NamedDomainObjectContainerConfigureDelegate(configureClosure, this);
}
@Override
public AbstractNamedDomainObjectContainer configure(Closure configureClosure) {
ConfigureDelegate delegate = createConfigureDelegate(configureClosure);
ConfigureUtil.configureSelf(configureClosure, this, delegate);
return this;
}
@Override
public String getDisplayName() {
return getTypeDisplayName() + " container";
}
@Override
public TypeOf> getPublicType() {
return parameterizedTypeOf(new TypeOf>() {}, typeOf(getType()));
}
@Override
public NamedDomainObjectProvider register(String name) throws InvalidUserDataException {
assertMutable("register(String)");
return createDomainObjectProvider(name, null);
}
@Override
public NamedDomainObjectProvider register(String name, Action super T> configurationAction) throws InvalidUserDataException {
assertMutable("register(String, Action)");
return createDomainObjectProvider(name, configurationAction);
}
protected NamedDomainObjectProvider createDomainObjectProvider(String name, @Nullable Action super T> configurationAction) {
assertCanAdd(name);
NamedDomainObjectProvider provider = Cast.uncheckedCast(
getInstantiator().newInstance(NamedDomainObjectCreatingProvider.class, AbstractNamedDomainObjectContainer.this, name, getType(), configurationAction)
);
addLater(provider);
return provider;
}
// Cannot be private due to reflective instantiation
public class NamedDomainObjectCreatingProvider extends AbstractDomainObjectCreatingProvider {
public NamedDomainObjectCreatingProvider(String name, Class type, @Nullable Action super I> configureAction) {
super(name, type, configureAction);
}
@Override
protected I createDomainObject() {
return Cast.uncheckedCast(doCreate(getName()));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy