gpt4 book ai didi

scala - 使用带有超时的 scala.sys.process

转载 作者:行者123 更新时间:2023-12-03 21:25:10 27 4
gpt4 key购买 nike

我发现使用 standard syntax 非常酷喜欢

import scala.sys.process._
val countLogger = ProcessLogger(line => {println ("out line: " + line)},
line => {println ("err line: " + line)})

val exitCode = ("cat prog.c" #&& "gcc prog.c -o prog -lm"
#&& "echo running, this may hang" #&& "prog.exe") ! countLogger

println("exitCode = " + exitCode)

然而,最后一个进程挂起。是否有可能在超时时杀死它?

最佳答案

您可以将您的流程包装在 Future(blocking(_)) 中如果超时后它没有返回,请调用process.destroy() .

这就是我为我的小Processor library所做的,例如see here .而不是使用 !要急切地等待退出代码,您可以使用 run方法。这是自述文件的改编:

import scala.concurrent._
import ExecutionContext.Implicits.global
import scala.sys.process._

val p = "sleep 100".run() // start asynchronously
val f = Future(blocking(p.exitValue())) // wrap in Future
val res = try {
Await.result(f, duration.Duration(2, "sec"))
} catch {
case _: TimeoutException =>
println("TIMEOUT!")
p.destroy()
p.exitValue()
}

关于scala - 使用带有超时的 scala.sys.process,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29066754/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com