io.github.detekt.parser.KtCompiler.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of detekt-parser Show documentation
Show all versions of detekt-parser Show documentation
Static code analysis for Kotlin
package io.github.detekt.parser
import io.github.detekt.psi.LINE_SEPARATOR
import io.github.detekt.psi.RELATIVE_PATH
import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment
import org.jetbrains.kotlin.com.intellij.openapi.util.text.StringUtilRt
import org.jetbrains.kotlin.psi.KtFile
import org.jetbrains.kotlin.psi.KtPsiFactory
import java.nio.file.Files
import java.nio.file.Path
open class KtCompiler(
protected val environment: KotlinCoreEnvironment = createKotlinCoreEnvironment()
) {
protected val psiFileFactory = KtPsiFactory(environment.project, markGenerated = false)
fun compile(basePath: Path, path: Path): KtFile {
require(Files.isRegularFile(path)) { "Given sub path ($path) should be a regular file!" }
val content = path.toFile().readText()
return createKtFile(content, basePath, path)
}
fun createKtFile(content: String, basePath: Path, path: Path): KtFile {
require(Files.isRegularFile(path)) { "Given sub path ($path) should be a regular file!" }
val relativePath =
(if (basePath == path) path.fileName
else basePath.fileName.resolve(basePath.relativize(path))).normalize()
val absolutePath = path.toAbsolutePath().normalize()
val lineSeparator = content.determineLineSeparator()
val psiFile = psiFileFactory.createPhysicalFile(
absolutePath.toString(),
StringUtilRt.convertLineSeparators(content)
)
return psiFile.apply {
putUserData(LINE_SEPARATOR, lineSeparator)
putUserData(RELATIVE_PATH, relativePath.toString())
}
}
}
internal fun String.determineLineSeparator(): String {
val i = this.lastIndexOf('\n')
if (i == -1) {
return if (this.lastIndexOf('\r') == -1) System.getProperty("line.separator") else "\r"
}
return if (i != 0 && this[i - 1] == '\r') "\r\n" else "\n"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy