Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Output folder of the Kotlin compiler in Eclipse

Tags:

eclipse

kotlin

The Jetbrains Kotlin compiler in Eclipse outputs to a hidden folder inside the Eclipse compiler plugin. This hidden folder is then made available through the Eclipse Kotlin classpath container.

In bndtools we need a normal file system folder since bnd can run both from the file system as well as in Eclipse. Since the folder is a linked resource there is no known way to translate it outside Eclipse.

Anybody knows how to tell the Kotlin compiler to just output it in the bin folder?

like image 764
Peter Kriens Avatar asked Mar 27 '16 13:03

Peter Kriens


2 Answers

Currently, this is not possible in the Kotlin Eclipse plugin.

To make it possible that Kotlin code can be used from Java, Kotlin plugin produce so-called lightweight class files to this folder. These class files do not contain bodies for methods and they are stored in memory.

Actual class files, that are used to run an application, are being built only before launch and they are produced to the default output folder. For now, we cannot produce class files on each save reasonably fast as there is no incremental compilation in the plugin yet: Feel free to upvote for this issue.

like image 171
Mikhail Zarechenskiy Avatar answered Nov 13 '22 15:11

Mikhail Zarechenskiy


From the short analysis of the code of Kotlin plugin, it looks like the proper method is KotlinCompiler.compileKotlinFiles. It is being called in two contexts:

  1. KotlinBuilder.build — this is the one called on the project build; it makes a call stack trick (or rather a hack...) to check if being called from the LaunchConfigurationDelegate, and depending on the results, either compiles whole project (via its own private fun compileKotlinFiles), or just makes stubs in memory.
  2. KotlinCompilerUtils.compileWholeProject — this is in fact being called from 1.; nice static method, perfect for abuse until the problem is correctly solved in the plugin. :)

So, I'd use the method from 2. wrapped in a similar way as compileKotlinFiles from file in 1.

like image 26
pwes Avatar answered Nov 13 '22 14:11

pwes