如何以编程方式调用Scala编译器?

时间:2013-12-02 07:01:31

标签: scala scala-compiler

我希望我的Scala代码将Scala类作为输入,编译并执行该类。如何以编程方式调用Scala编译器?我将使用最新的Scala版本,即2.10。

2 个答案:

答案 0 :(得分:13)

工具箱

我认为调用Scala编译器的正确方法是通过Overview中记录的Reflection API来实现。具体而言,“符号,树和类型”中的Tree Creation via parse on ToolBoxes部分讨论了使用StringTree解析为ToolBox的问题。然后,您可以调用eval()等。

scala.tools.nsc.Global

但正如Shyamendra Solanki所写,实际上你可以驾驶scalac Global来完成更多工作。我写了CompilerMatcher所以我可以用示例代码编译生成的代码来进行集成测试。例如。

scala.tools.ncs.IMain

您可以调用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.