org.gradle.language.cpp.internal.DefaultCppExecutable 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 2017 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.language.cpp.internal;
import org.gradle.api.Task;
import org.gradle.api.artifacts.Configuration;
import org.gradle.api.artifacts.ConfigurationContainer;
import org.gradle.api.artifacts.ModuleVersionIdentifier;
import org.gradle.api.attributes.AttributeContainer;
import org.gradle.api.file.ConfigurableFileCollection;
import org.gradle.api.file.DirectoryProperty;
import org.gradle.api.file.FileCollection;
import org.gradle.api.file.RegularFile;
import org.gradle.api.file.RegularFileProperty;
import org.gradle.api.internal.component.SoftwareComponentInternal;
import org.gradle.api.internal.component.UsageContext;
import org.gradle.api.internal.file.FileOperations;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.Property;
import org.gradle.api.provider.Provider;
import org.gradle.language.cpp.CppExecutable;
import org.gradle.language.cpp.CppPlatform;
import org.gradle.language.nativeplatform.internal.ConfigurableComponentWithExecutable;
import org.gradle.language.nativeplatform.internal.ConfigurableComponentWithRuntimeUsage;
import org.gradle.language.nativeplatform.internal.Names;
import org.gradle.nativeplatform.Linkage;
import org.gradle.nativeplatform.tasks.InstallExecutable;
import org.gradle.nativeplatform.tasks.LinkExecutable;
import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal;
import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
import javax.annotation.Nullable;
import javax.inject.Inject;
import java.util.Collections;
import java.util.Set;
public class DefaultCppExecutable extends DefaultCppBinary implements CppExecutable, ConfigurableComponentWithExecutable, ConfigurableComponentWithRuntimeUsage, SoftwareComponentInternal {
private final RegularFileProperty executableFile;
private final Property executableFileProducer;
private final DirectoryProperty installationDirectory;
private final Property installTaskProperty;
private final Property linkTaskProperty;
private final Property runtimeElementsProperty;
private final ConfigurableFileCollection outputs;
private final RegularFileProperty debuggerExecutableFile;
@Inject
public DefaultCppExecutable(Names names, ObjectFactory objectFactory, FileOperations fileOperations, Provider baseName, FileCollection sourceFiles, FileCollection componentHeaderDirs, ConfigurationContainer configurations, Configuration implementation, CppPlatform targetPlatform, NativeToolChainInternal toolChain, PlatformToolProvider platformToolProvider, NativeVariantIdentity identity) {
super(names, objectFactory, baseName, sourceFiles, componentHeaderDirs, configurations, implementation, targetPlatform, toolChain, platformToolProvider, identity);
this.executableFile = objectFactory.fileProperty();
this.executableFileProducer = objectFactory.property(Task.class);
this.debuggerExecutableFile = objectFactory.fileProperty();
this.installationDirectory = objectFactory.directoryProperty();
this.linkTaskProperty = objectFactory.property(LinkExecutable.class);
this.installTaskProperty = objectFactory.property(InstallExecutable.class);
this.runtimeElementsProperty = objectFactory.property(Configuration.class);
this.outputs = fileOperations.configurableFiles();
}
@Override
public ConfigurableFileCollection getOutputs() {
return outputs;
}
@Override
public RegularFileProperty getExecutableFile() {
return executableFile;
}
@Override
public Property getExecutableFileProducer() {
return executableFileProducer;
}
@Override
public DirectoryProperty getInstallDirectory() {
return installationDirectory;
}
@Override
public Property getInstallTask() {
return installTaskProperty;
}
@Override
public Property getLinkTask() {
return linkTaskProperty;
}
@Override
public RegularFileProperty getDebuggerExecutableFile() {
return debuggerExecutableFile;
}
@Override
public Property getRuntimeElements() {
return runtimeElementsProperty;
}
@Override
public Provider getRuntimeFile() {
return executableFile;
}
@Nullable
@Override
public Linkage getLinkage() {
return null;
}
@Override
public boolean hasRuntimeFile() {
return true;
}
@Override
public Set extends UsageContext> getUsages() {
Configuration runtimeElements = runtimeElementsProperty.get();
return Collections.singleton(new DefaultUsageContext(getIdentity().getRuntimeUsageContext(), runtimeElements.getAllArtifacts(), runtimeElements));
}
@Override
public AttributeContainer getRuntimeAttributes() {
return getIdentity().getRuntimeUsageContext().getAttributes();
}
@Override
public ModuleVersionIdentifier getCoordinates() {
return getIdentity().getCoordinates();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy