org.gradle.platform.base.component.BaseComponentSpec 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 2014 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.platform.base.component;
import org.gradle.api.Incubating;
import org.gradle.language.base.LanguageSourceSet;
import org.gradle.model.ModelMap;
import org.gradle.model.internal.core.ModelMaps;
import org.gradle.model.internal.core.MutableModelNode;
import org.gradle.model.internal.type.ModelType;
import org.gradle.platform.base.Binary;
import org.gradle.platform.base.BinarySpec;
import org.gradle.platform.base.GeneralComponentSpec;
import org.gradle.platform.base.component.internal.DefaultComponentSpec;
/**
* Base class that may be used for custom {@link GeneralComponentSpec} implementations. However, it is generally better to use an
* interface annotated with {@link org.gradle.model.Managed} and not use an implementation class at all.
*/
@Incubating
public class BaseComponentSpec extends DefaultComponentSpec implements GeneralComponentSpec {
private static final ModelType BINARY_SPEC_MODEL_TYPE = ModelType.of(BinarySpec.class);
private static final ModelType BINARY_MODEL_TYPE = ModelType.of(Binary.class);
private static final ModelType LANGUAGE_SOURCE_SET_MODEL_TYPE = ModelType.of(LanguageSourceSet.class);
private final MutableModelNode binaries;
private final MutableModelNode sources;
public BaseComponentSpec() {
MutableModelNode modelNode = getInfo().modelNode;
binaries = ModelMaps.addModelMapNode(modelNode, BINARY_SPEC_MODEL_TYPE, "binaries");
sources = ModelMaps.addModelMapNode(modelNode, LANGUAGE_SOURCE_SET_MODEL_TYPE, "sources");
}
@Override
public ModelMap getSources() {
return ModelMaps.toView(sources, LANGUAGE_SOURCE_SET_MODEL_TYPE);
}
@Override
public ModelMap getBinaries() {
return ModelMaps.toView(binaries, BINARY_SPEC_MODEL_TYPE);
}
@Override
public Iterable getVariants() {
return ModelMaps.toView(binaries, BINARY_MODEL_TYPE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy