4

是否可以配置一个 Scala 解释器 ( tools.nsc.IMain) 以便在我运行下一个调用时“忘记”以前执行的代码?interpret()

通常在编译源代码时,它会将它们包装在嵌套对象中,因此之前定义的所有变量、函数和绑定都可用。

不生成嵌套对象(或丢弃它们)就足够了,尽管我更喜欢一种解决方案,它甚至可以再次从类加载器中删除先前编译的类。

是否有设置、方法或我可以覆盖的东西,或者替代方案IMain可以实现这一点?我需要能够仍然从主机 VM 访问生成的对象/类。


基本上,我想隔离后续调用,而不是像为每次迭代interpret()创建一个新的那样重。IMain

4

1 回答 1

2

这是一个可能的答案。基本上有一种方法reset()可以调用以下内容(主要是私有的,所以你要么购买整个包):

clearExecutionWrapper()
resetClassLoader()
resetAllCreators()
prevRequests.clear()
referencedNameMap.clear()
definedNameMap.clear()
virtualDirectory.clear()

就我而言,我使用的是自定义执行包装器,因此需要再次设置,并且导入也是通过常规解释周期处理的,因此要么再次添加它们,要么——更好——只是在它们前面加上执行包装器。

我想保留我的绑定,它们也不见了:

import tools.nsc._
import interpreter.IMain

object Test {
  private final class Intp(cset: nsc.Settings)
    extends IMain(cset, new NewLinePrintWriter(new ConsoleWriter, autoFlush = true)) {

    override protected def parentClassLoader = Test.getClass.getClassLoader
  }

  object Foo {
    def bar() { println("BAR" )}
  }

  def run() {
    val cset = new nsc.Settings()
    cset.classpath.value += java.io.File.pathSeparator + sys.props("java.class.path")
    val i = new Intp(cset)
    i.initializeSynchronous()
    i.bind[Foo.type]("foo", Foo)
    val res0 = i.interpret("foo.bar(); val x = 33")
    println(s"res0: $res0")
    i.reset()
    val res1 = i.interpret("println(x)")
    println(s"res1: $res1")
    i.reset()
    val res2 = i.interpret("foo.bar()")
    println(s"res2: $res2")
  }
}

这会Foo在第一次迭代中找到,在第二次迭代中正确忘记x,但是在第三次迭代中,可以看到foo绑定也丢失了:

foo: Test.Foo.type = Test$Foo$@8bf223
BAR
x: Int = 33
res0: Success
<console>:8: error: not found: value x
              println(x)
                      ^
res1: Error
<console>:8: error: not found: value foo
              foo.bar()
              ^
res2: Error

以下似乎很好:

for(j <- 0 until 3) {
  val user  = "foo.bar()"
  val synth =  """import Test.{Foo => foo}
               """.stripMargin + user
  val res = i.interpret(synth)
  println(s"res$j: $res")
  i.reset()
}
于 2013-05-17T11:46:59.103 回答