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.ABSOLUTE_PATH
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.com.intellij.psi.PsiFileFactory
import org.jetbrains.kotlin.com.intellij.testFramework.LightVirtualFile
import org.jetbrains.kotlin.idea.KotlinLanguage
import org.jetbrains.kotlin.psi.KtFile
import java.nio.file.Files
import java.nio.file.Path
open class KtCompiler(
protected val environment: KotlinCoreEnvironment = createKotlinCoreEnvironment()
) {
protected val psiFileFactory: PsiFileFactory = PsiFileFactory.getInstance(environment.project)
fun compile(root: Path, subPath: Path): KtFile {
require(Files.isRegularFile(subPath)) { "Given sub path ($subPath) should be a regular file!" }
val relativePath =
(if (root == subPath) subPath.fileName
else root.fileName.resolve(root.relativize(subPath))).normalize()
val absolutePath = subPath.toAbsolutePath().normalize()
val content = subPath.toFile().readText()
val lineSeparator = content.determineLineSeparator()
val ktFile = createKtFile(content, absolutePath)
return ktFile.apply {
putUserData(LINE_SEPARATOR, lineSeparator)
putUserData(RELATIVE_PATH, relativePath.toString())
putUserData(ABSOLUTE_PATH, absolutePath.toString())
}
}
private fun createKtFile(content: String, path: Path): KtFile {
val psiFile = psiFileFactory.createFileFromText(
path.fileName.toString(),
KotlinLanguage.INSTANCE,
StringUtilRt.convertLineSeparators(content),
true, true, false,
LightVirtualFile(path.toString())
)
return psiFile as? KtFile ?: error("kotlin file expected")
}
}
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