org.gradle.nativeplatform.toolchain.internal.AbstractPlatformToolProvider 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.nativeplatform.toolchain.internal;
import org.gradle.internal.operations.BuildOperationProcessor;
import org.gradle.language.base.internal.compile.CompileSpec;
import org.gradle.language.base.internal.compile.Compiler;
import org.gradle.language.base.internal.compile.CompilerUtil;
import org.gradle.nativeplatform.internal.LinkerSpec;
import org.gradle.nativeplatform.internal.StaticLibraryArchiverSpec;
import org.gradle.nativeplatform.platform.internal.OperatingSystemInternal;
import org.gradle.nativeplatform.toolchain.internal.compilespec.*;
import org.gradle.util.TreeVisitor;
public abstract class AbstractPlatformToolProvider implements PlatformToolProvider {
protected final OperatingSystemInternal targetOperatingSystem;
protected final BuildOperationProcessor buildOperationProcessor;
public AbstractPlatformToolProvider(BuildOperationProcessor buildOperationProcessor, OperatingSystemInternal targetOperatingSystem) {
this.targetOperatingSystem = targetOperatingSystem;
this.buildOperationProcessor = buildOperationProcessor;
}
@Override
public boolean isAvailable() {
return true;
}
@Override
public void explain(TreeVisitor super String> visitor) {
}
@Override
public String getExecutableName(String executablePath) {
return targetOperatingSystem.getInternalOs().getExecutableName(executablePath);
}
@Override
public String getSharedLibraryName(String libraryPath) {
return targetOperatingSystem.getInternalOs().getSharedLibraryName(libraryPath);
}
@Override
public String getSharedLibraryLinkFileName(String libraryPath) {
return targetOperatingSystem.getInternalOs().getSharedLibraryName(libraryPath);
}
@Override
public String getStaticLibraryName(String libraryPath) {
return targetOperatingSystem.getInternalOs().getStaticLibraryName(libraryPath);
}
@Override
public T get(Class toolType) {
throw new IllegalArgumentException(String.format("Don't know how to provide tool of type %s.", toolType.getSimpleName()));
}
@Override
public org.gradle.language.base.internal.compile.Compiler newCompiler(Class spec) {
if (CppCompileSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createCppCompiler());
}
if (CppPCHCompileSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createCppPCHCompiler());
}
if (CCompileSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createCCompiler());
}
if (CPCHCompileSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createCPCHCompiler());
}
if (ObjectiveCppCompileSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createObjectiveCppCompiler());
}
if (ObjectiveCppPCHCompileSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createObjectiveCppPCHCompiler());
}
if (ObjectiveCCompileSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createObjectiveCCompiler());
}
if (ObjectiveCPCHCompileSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createObjectiveCPCHCompiler());
}
if (WindowsResourceCompileSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createWindowsResourceCompiler());
}
if (AssembleSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createAssembler());
}
if (LinkerSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createLinker());
}
if (StaticLibraryArchiverSpec.class.isAssignableFrom(spec)) {
return CompilerUtil.castCompiler(createStaticLibraryArchiver());
}
throw new IllegalArgumentException(String.format("Don't know how to compile from a spec of type %s.", spec.getClass().getSimpleName()));
}
protected final RuntimeException unavailableTool(String message) {
return new RuntimeException(message);
}
protected Compiler> createCppCompiler() {
throw unavailableTool("C++ compiler is not available");
}
protected Compiler> createCppPCHCompiler() {
throw unavailableTool("C++ pre-compiled header compiler is not available");
}
protected Compiler> createCCompiler() {
throw unavailableTool("C compiler is not available");
}
protected Compiler> createCPCHCompiler() {
throw unavailableTool("C pre-compiled header compiler is not available");
}
protected Compiler> createObjectiveCppCompiler() {
throw unavailableTool("Obj-C++ compiler is not available");
}
protected Compiler> createObjectiveCppPCHCompiler() {
throw unavailableTool("Obj-C++ pre-compiled header compiler is not available");
}
protected Compiler> createObjectiveCCompiler() {
throw unavailableTool("Obj-C compiler is not available");
}
protected Compiler> createObjectiveCPCHCompiler() {
throw unavailableTool("Obj-C compiler is not available");
}
protected Compiler> createWindowsResourceCompiler() {
throw unavailableTool("Windows resource compiler is not available");
}
protected Compiler> createAssembler() {
throw unavailableTool("Assembler is not available");
}
protected Compiler> createLinker() {
throw unavailableTool("Linker is not available");
}
protected Compiler> createStaticLibraryArchiver() {
throw unavailableTool("Static library archiver is not available");
}
@Override
public String getObjectFileExtension() {
return targetOperatingSystem.isWindows() ? ".obj" : ".o";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy