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

org.jetbrains.kotlin.gradle.utils.persistentCaches.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.gradle.utils

import org.gradle.api.Project
import org.jetbrains.kotlin.gradle.plugin.PropertiesProvider.Companion.kotlinPropertiesProvider
import java.io.File

private const val SESSIONS_DIR_NAME = "sessions"
private const val METADATA_DIR_NAME = "metadata"
private const val ERRORS_DIR_NAME = "errors"

@Suppress("unused") // will be used in the followup KT-58223 issues
internal val Project.userKotlinPersistentDir
    get() = kotlinPropertiesProvider.kotlinUserHomeDir?.let { File(it) }
        ?: File(System.getProperty("user.home")).resolve(".kotlin")

internal fun Project.projectKotlinPersistentDir(compositeRootProject: Project? = null) =
    kotlinPropertiesProvider.kotlinProjectPersistentDir?.let { File(it) }
        ?: (compositeRootProject ?: this).rootDir.resolve(".kotlin")

internal val Project.kotlinSessionsDir
    get() = projectKotlinPersistentDir().resolve(SESSIONS_DIR_NAME)

internal fun Project.kotlinMetadataDir(compositeBuildRootProject: Project? = null) =
    projectKotlinPersistentDir(compositeBuildRootProject).resolve(METADATA_DIR_NAME)

internal val Project.kotlinErrorsDir
    get() = projectKotlinPersistentDir().resolve(ERRORS_DIR_NAME)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy