我希望我的Scala代码将Scala类作为输入,编译并执行该类。如何以编程方式调用Scala编译器?我将使用最新的Scala版本,即2.10。
答案 0 :(得分:13)
我认为调用Scala编译器的正确方法是通过Overview中记录的Reflection API来实现。具体而言,“符号,树和类型”中的Tree Creation via parse on ToolBoxes部分讨论了使用String
将Tree
解析为ToolBox
的问题。然后,您可以调用eval()
等。
但正如Shyamendra Solanki所写,实际上你可以驾驶scalac Global
来完成更多工作。我写了CompilerMatcher所以我可以用示例代码编译生成的代码来进行集成测试。例如。
您可以调用REPL IMain
来评估代码(如果您需要适用于Scala 2.10的内容,也可以在上面的CompilerMatcher
中使用):
val main = new IMain(s) {
def lastReq = prevRequestList.last
}
main.compileSources(files.map(toSourceFile(_)): _*)
code map { c => main.interpret(c) match {
case IR.Error => sys.error("Error interpreting %s" format (c))
case _ =>
}}
val holder = allCatch opt {
main.lastReq.lineRep.call("$result")
}
Josh Suereth在2009年的Embedding the Scala Interpreter帖子中证明了这一点。
答案 1 :(得分:4)
要编译和运行的类(在文件test.scala中)
class Test {
println ("Hello World!")
}
// compileAndRun.scala(在同一目录中)
import scala.tools.nsc._
import java.io._
val g = new Global(new Settings())
val run = new g.Run
run.compile(List("test.scala")) // invoke compiler. it creates Test.class.
val classLoader = new java.net.URLClassLoader(
Array(new File(".").toURI.toURL), // Using current directory.
this.getClass.getClassLoader)
val clazz = classLoader.loadClass("Test") // load class
clazz.newInstance // create an instance, which will print Hello World.