Search in sources :

Example 1 with SwiftCompileSpec

use of org.gradle.nativeplatform.toolchain.internal.compilespec.SwiftCompileSpec in project gradle by gradle.

the class SwiftCompile method createSpec.

private SwiftCompileSpec createSpec(BuildOperationLogger operationLogger, boolean isIncremental, Collection<File> changedFiles, Collection<File> removedFiles, NativePlatformInternal targetPlatform) {
    SwiftCompileSpec spec = new DefaultSwiftCompileSpec();
    spec.setModuleName(moduleName.getOrNull());
    spec.setModuleFile(moduleFile.get().getAsFile());
    for (File file : modules.getFiles()) {
        if (file.isFile()) {
            spec.include(file.getParentFile());
        } else {
            spec.include(file);
        }
    }
    spec.setTargetPlatform(targetPlatform);
    spec.setTempDir(getTemporaryDir());
    spec.setObjectFileDir(objectFileDir.get().getAsFile());
    spec.source(getSource());
    spec.setRemovedSourceFiles(removedFiles);
    spec.setChangedFiles(changedFiles);
    // Convert Swift-like macros to a Map like NativeCompileSpec expects
    Map<String, String> macros = new LinkedHashMap<String, String>();
    for (String macro : getMacros().get()) {
        macros.put(macro, null);
    }
    spec.setMacros(macros);
    spec.args(getCompilerArgs().get());
    spec.setDebuggable(getDebuggable().get());
    spec.setOptimized(getOptimized().get());
    spec.setIncrementalCompile(isIncremental);
    spec.setOperationLogger(operationLogger);
    spec.setSourceCompatibility(sourceCompatibility.get());
    return spec;
}
Also used : DefaultSwiftCompileSpec(org.gradle.language.swift.tasks.internal.DefaultSwiftCompileSpec) SwiftCompileSpec(org.gradle.nativeplatform.toolchain.internal.compilespec.SwiftCompileSpec) DefaultSwiftCompileSpec(org.gradle.language.swift.tasks.internal.DefaultSwiftCompileSpec) OutputFile(org.gradle.api.tasks.OutputFile) File(java.io.File) LinkedHashMap(java.util.LinkedHashMap)

Example 2 with SwiftCompileSpec

use of org.gradle.nativeplatform.toolchain.internal.compilespec.SwiftCompileSpec in project gradle by gradle.

the class SwiftCompile method compile.

@TaskAction
void compile(IncrementalTaskInputs inputs) {
    final List<File> removedFiles = Lists.newArrayList();
    final Set<File> changedFiles = Sets.newHashSet();
    boolean isIncremental = inputs.isIncremental();
    // which files changed and marking the compilation incremental or not.
    if (isIncremental) {
        inputs.outOfDate(new Action<InputFileDetails>() {

            @Override
            public void execute(InputFileDetails inputFileDetails) {
                if (inputFileDetails.isModified()) {
                    changedFiles.add(inputFileDetails.getFile());
                }
            }
        });
        inputs.removed(new Action<InputFileDetails>() {

            @Override
            public void execute(InputFileDetails removed) {
                removedFiles.add(removed.getFile());
            }
        });
        Set<File> allSourceFiles = getSource().getFiles();
        if (!allSourceFiles.containsAll(changedFiles)) {
            // If a non-source file changed, the compilation cannot be incremental
            // due to the way the Swift compiler detects changes from other modules
            isIncremental = false;
        }
    }
    BuildOperationLogger operationLogger = getServices().get(BuildOperationLoggerFactory.class).newOperationLogger(getName(), getTemporaryDir());
    NativePlatformInternal targetPlatform = Cast.cast(NativePlatformInternal.class, this.targetPlatform.get());
    SwiftCompileSpec spec = createSpec(operationLogger, isIncremental, changedFiles, removedFiles, targetPlatform);
    Compiler<SwiftCompileSpec> baseCompiler = new IncrementalSwiftCompiler(createCompiler(), getOutputs(), compilerOutputFileNamingSchemeFactory);
    Compiler<SwiftCompileSpec> loggingCompiler = BuildOperationLoggingCompilerDecorator.wrap(baseCompiler);
    WorkResult result = loggingCompiler.execute(spec);
    setDidWork(result.getDidWork());
}
Also used : BuildOperationLoggerFactory(org.gradle.internal.operations.logging.BuildOperationLoggerFactory) BuildOperationLogger(org.gradle.internal.operations.logging.BuildOperationLogger) InputFileDetails(org.gradle.api.tasks.incremental.InputFileDetails) DefaultSwiftCompileSpec(org.gradle.language.swift.tasks.internal.DefaultSwiftCompileSpec) SwiftCompileSpec(org.gradle.nativeplatform.toolchain.internal.compilespec.SwiftCompileSpec) IncrementalSwiftCompiler(org.gradle.nativeplatform.toolchain.internal.swift.IncrementalSwiftCompiler) NativePlatformInternal(org.gradle.nativeplatform.platform.internal.NativePlatformInternal) WorkResult(org.gradle.api.tasks.WorkResult) OutputFile(org.gradle.api.tasks.OutputFile) File(java.io.File) TaskAction(org.gradle.api.tasks.TaskAction)

Aggregations

File (java.io.File)2 OutputFile (org.gradle.api.tasks.OutputFile)2 DefaultSwiftCompileSpec (org.gradle.language.swift.tasks.internal.DefaultSwiftCompileSpec)2 SwiftCompileSpec (org.gradle.nativeplatform.toolchain.internal.compilespec.SwiftCompileSpec)2 LinkedHashMap (java.util.LinkedHashMap)1 TaskAction (org.gradle.api.tasks.TaskAction)1 WorkResult (org.gradle.api.tasks.WorkResult)1 InputFileDetails (org.gradle.api.tasks.incremental.InputFileDetails)1 BuildOperationLogger (org.gradle.internal.operations.logging.BuildOperationLogger)1 BuildOperationLoggerFactory (org.gradle.internal.operations.logging.BuildOperationLoggerFactory)1 NativePlatformInternal (org.gradle.nativeplatform.platform.internal.NativePlatformInternal)1 IncrementalSwiftCompiler (org.gradle.nativeplatform.toolchain.internal.swift.IncrementalSwiftCompiler)1