org.jetbrains.kotlin.js.sourceMap.SourceFilePathResolver.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2021 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.js.sourceMap
import org.jetbrains.kotlin.config.CompilerConfiguration
import org.jetbrains.kotlin.js.config.JSConfigurationKeys
import org.jetbrains.kotlin.js.config.JsConfig
import java.io.File
import java.io.IOException
class SourceFilePathResolver(sourceRoots: List, outputDir: File? = null) {
private val sourceRoots = sourceRoots.mapTo(mutableSetOf()) { it.absoluteFile }
private val outputDirPathResolver = outputDir?.let(::RelativePathCalculator)
private val cache = mutableMapOf()
@Throws(IOException::class)
fun getPathRelativeToSourceRoots(file: File): String {
var path = cache[file]
if (path == null) {
path = calculatePathRelativeToSourceRoots(file)
cache[file] = path
}
return path
}
@Throws(IOException::class)
private fun calculatePathRelativeToSourceRoots(file: File): String {
val pathRelativeToOutput = calculatePathRelativeToOutput(file)
if (pathRelativeToOutput != null) return pathRelativeToOutput
val parts = mutableListOf()
var currentFile: File? = file.absoluteFile.normalize()
while (currentFile != null) {
if (sourceRoots.contains(currentFile)) {
if (parts.isEmpty()) {
break
}
parts.reverse()
return parts.joinToString(File.separator)
}
parts.add(currentFile.name)
currentFile = currentFile.parentFile
}
return file.name
}
private fun calculatePathRelativeToOutput(file: File): String? {
return outputDirPathResolver?.calculateRelativePathTo(file)
}
companion object {
@JvmStatic
fun create(config: JsConfig) = create(config.configuration)
@JvmStatic
fun create(configuration: CompilerConfiguration) = create(
sourceRoots = configuration.get(JSConfigurationKeys.SOURCE_MAP_SOURCE_ROOTS, emptyList()),
sourceMapPrefix = configuration.get(JSConfigurationKeys.SOURCE_MAP_PREFIX, ""),
outputDir = configuration.get(JSConfigurationKeys.OUTPUT_DIR)
)
@JvmStatic
fun create(sourceRoots: List, sourceMapPrefix: String, outputDir: File?): SourceFilePathResolver {
val generateRelativePathsInSourceMap = sourceMapPrefix.isEmpty() && sourceRoots.isEmpty()
return SourceFilePathResolver(
sourceRoots.map(::File),
outputDir.takeIf { generateRelativePathsInSourceMap }
)
}
}
}