From 06fe0f45b99cb1aef4ab0be2712bb589ed62e7e9 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Fri, 11 Jul 2014 14:38:18 +0400 Subject: Initial commit, setup compiler-as-a-service to analyse files. --- .idea/.name | 1 + .idea/compiler.xml | 23 ++++++++++ .idea/encodings.xml | 5 +++ .idea/libraries/kotlin.xml | 11 +++++ .idea/libraries/kotlin_compiler.xml | 76 +++++++++++++++++++++++++++++++ .idea/misc.xml | 10 +++++ .idea/modules.xml | 9 ++++ .idea/scopes/scope_settings.xml | 5 +++ .idea/vcs.xml | 7 +++ dokka.iml | 14 ++++++ src/main.kt | 89 +++++++++++++++++++++++++++++++++++++ 11 files changed, 250 insertions(+) create mode 100644 .idea/.name create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/libraries/kotlin.xml create mode 100644 .idea/libraries/kotlin_compiler.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/scopes/scope_settings.xml create mode 100644 .idea/vcs.xml create mode 100644 dokka.iml create mode 100644 src/main.kt diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 00000000..c8bb43f2 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +dokka \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 00000000..217af471 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,23 @@ + + + + + + diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 00000000..e206d70d --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/.idea/libraries/kotlin.xml b/.idea/libraries/kotlin.xml new file mode 100644 index 00000000..a24e595c --- /dev/null +++ b/.idea/libraries/kotlin.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/kotlin_compiler.xml b/.idea/libraries/kotlin_compiler.xml new file mode 100644 index 00000000..f0b20ad9 --- /dev/null +++ b/.idea/libraries/kotlin_compiler.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..0cae957f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..142d525a --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/.idea/scopes/scope_settings.xml b/.idea/scopes/scope_settings.xml new file mode 100644 index 00000000..922003b8 --- /dev/null +++ b/.idea/scopes/scope_settings.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..275077f8 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/dokka.iml b/dokka.iml new file mode 100644 index 00000000..2fe62815 --- /dev/null +++ b/dokka.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main.kt b/src/main.kt new file mode 100644 index 00000000..7edaf43d --- /dev/null +++ b/src/main.kt @@ -0,0 +1,89 @@ +package com.jetbrains.dokka + +import org.jetbrains.jet.cli.common.arguments.* +import com.sampullara.cli.* +import com.intellij.openapi.util.* +import org.jetbrains.jet.cli.common.messages.* +import org.jetbrains.jet.cli.jvm.* +import org.jetbrains.jet.config.* +import org.jetbrains.jet.cli.jvm.compiler.* +import org.jetbrains.jet.cli.common.* +import org.jetbrains.jet.utils.* +import java.io.* +import org.jetbrains.jet.lang.resolve.java.* +import com.google.common.base.* +import com.intellij.psi.* +import org.jetbrains.jet.lang.resolve.* +import org.jetbrains.jet.lang.psi.* +import org.jetbrains.jet.analyzer.* + +public fun main(args: Array) { + + val arguments = K2JVMCompilerArguments() + arguments.freeArgs = Args.parse(arguments, args) + + val rootDisposable = Disposer.newDisposable() + + val messageCollector = MessageCollectorPlainTextToStream.PLAIN_TEXT_TO_SYSTEM_ERR + val configuration = CompilerConfiguration() + + val paths = PathUtil.getKotlinPathsForCompiler() + + configuration.addAll(JVMConfigurationKeys.CLASSPATH_KEY, getClasspath(paths, arguments)) + configuration.addAll(CommonConfigurationKeys.SOURCE_ROOTS_KEY, arguments.freeArgs ?: listOf()) + configuration.put(CLIConfigurationKeys.MESSAGE_COLLECTOR_KEY, messageCollector) + + val environment = JetCoreEnvironment.createForProduction(rootDisposable, configuration) + val context = environment.analyze(messageCollector) + rootDisposable.dispose() +} + +private fun getClasspath(paths: KotlinPaths, arguments: K2JVMCompilerArguments): MutableList { + val classpath = arrayListOf() + classpath.addAll(PathUtil.getJdkClassesRoots()) + classpath.add(paths.getRuntimePath()) + val classPath = arguments.classpath + if (classPath != null) { + for (element in classPath.split(File.pathSeparatorChar)) { + classpath.add(File(element)) + } + } + return classpath +} + +private fun getAnnotationsPath(paths: KotlinPaths, arguments: K2JVMCompilerArguments): MutableList { + val annotationsPath = arrayListOf() + annotationsPath.add(paths.getJdkAnnotationsPath()) + val annotationPaths = arguments.annotations + if (annotationPaths != null) { + for (element in annotationPaths.split(File.pathSeparatorChar)) { + annotationsPath.add(File(element)) + } + } + return annotationsPath +} + +private fun JetCoreEnvironment.analyze(messageCollector: MessageCollector): BindingContext { + val project = getProject() + val sourceFiles = getSourceFiles() + + val analyzerWithCompilerReport = AnalyzerWithCompilerReport(messageCollector) + analyzerWithCompilerReport.analyzeAndReport(sourceFiles) { + val support = CliLightClassGenerationSupport.getInstanceForCli(project)!! + val sharedTrace = support.getTrace() + val sharedModule = support.getModule() + val compilerConfiguration = getConfiguration()!! + AnalyzerFacadeForJVM.analyzeFilesWithJavaIntegration(project, sourceFiles, sharedTrace, + Predicates.alwaysTrue(), + sharedModule, + compilerConfiguration.get(JVMConfigurationKeys.MODULE_IDS), + compilerConfiguration.get(JVMConfigurationKeys.INCREMENTAL_CACHE_BASE_DIR)) + } + + val exhaust = analyzerWithCompilerReport.getAnalyzeExhaust() + assert(exhaust != null) { "AnalyzeExhaust should be non-null, compiling: " + sourceFiles } + + return exhaust!!.getBindingContext() +} + +fun AnalyzerWithCompilerReport.analyzeAndReport(files: List, analyser: () -> AnalyzeExhaust) = analyzeAndReport(analyser, files) \ No newline at end of file -- cgit