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



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

工具箱

我认为调用Scala编译器的正确方法是通过Overview中的Reflection API进行调用。具体来说,"Symbols,Trees,and Types"中的"Tree Creation parse on ToolBoxes"部分讨论了使用ToolBoxString解析为Tree。然后您可以调用eval()

scala.tools.nsc.Global

但正如Shyamendra Solaki所写的那样,实际上你可以驱动scalac的Global来完成更多的工作。我已经编写了CompilerMatcher,这样我就可以用示例代码编译生成的代码来进行集成测试。

scala.tools.ncs.IMain

您可以调用REPLIMain来评估代码(如果您想要与Scala2.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")
  }

这在2009年Josh Suereth的Embedding the Scala Interpreter帖子中得到了证明。

要编译和运行的类(在文件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.

相关内容

  • 没有找到相关文章

最新更新