All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.incremental.IncrementalCompilationContext.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0-RC
Show newest version
/*
 * Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
 * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
 */

package org.jetbrains.kotlin.incremental

import com.intellij.util.io.KeyDescriptor
import org.jetbrains.kotlin.build.report.DoNothingICReporter
import org.jetbrains.kotlin.build.report.ICReporter
import org.jetbrains.kotlin.incremental.storage.BasicFileToPathConverter
import org.jetbrains.kotlin.incremental.storage.FileToPathConverter
import java.io.File

class IncrementalCompilationContext(
    // The root directories of source files and output files are different, so we need different `FileToPathConverter`s
    val pathConverterForSourceFiles: FileToPathConverter = BasicFileToPathConverter,
    val pathConverterForOutputFiles: FileToPathConverter = BasicFileToPathConverter,
    val storeFullFqNamesInLookupCache: Boolean = false,
    val transaction: CompilationTransaction = NonRecoverableCompilationTransaction(),
    val reporter: ICReporter = DoNothingICReporter,
    /**
     * Controls whether changes in lookup cache should be tracked. Required for the classpath snapshots based IC approach
     */
    val trackChangesInLookupCache: Boolean = false,
    val icFeatures: IncrementalCompilationFeatures = IncrementalCompilationFeatures.DEFAULT_CONFIGURATION,
    val fragmentContext: FragmentContext? = null,
    val useCompilerMapsOnly: Boolean = false
) {
    @Deprecated("This constructor is scheduled to be removed. KSP is using it")
    constructor(
        pathConverter: FileToPathConverter,
        storeFullFqNamesInLookupCache: Boolean = false,
        transaction: CompilationTransaction = NonRecoverableCompilationTransaction(),
        reporter: ICReporter = DoNothingICReporter,
        trackChangesInLookupCache: Boolean = false,
        keepIncrementalCompilationCachesInMemory: Boolean = false,
    ) : this(
        pathConverter,
        pathConverter,
        storeFullFqNamesInLookupCache,
        transaction,
        reporter,
        trackChangesInLookupCache,
        IncrementalCompilationFeatures.DEFAULT_CONFIGURATION.copy(
            keepIncrementalCompilationCachesInMemory = keepIncrementalCompilationCachesInMemory
        ),
    )

    val fileDescriptorForSourceFiles: KeyDescriptor = pathConverterForSourceFiles.getFileDescriptor()
    val fileDescriptorForOutputFiles: KeyDescriptor = pathConverterForOutputFiles.getFileDescriptor()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy