我有一个catch块,我最后重复了一下,并发现这个SO问题确认我可以使用部分函数作为catch块(Scala 2.9的尝试有什么用例... catch generalization ?1)。
目前,我的代码如下所示:
var task = newTask("update product", "update for customer " + customerId.toString)
try {
val vcdRouter = actorSystem.actorFor("user/supervisor/router-10.10.10.10:443")
val vdcId = new UUID("92ddba5e-8101-4580-b9a5-e3ee6ea5718f")
val vdcGet = sendExpect[AdminVdcType](vcdRouter, GetVdc(vdcId))
val vdcPut = VdcPutConfig(vdcGet, c)
val vdcPutTask = sendExpect[TaskType](vcdRouter, UpdateVdc(vdcId, vdcPut))
task = task.copy(Progress = 100, status = SuccessType)
} catch {
case failure: NoResponseBodyException =>
logger.debug("*** In putCustomerProduct, got a Left(VcdGatewayException)")
task = task.copy(Progress = 100, status = Error, Error = Option(exceptionToError(failure, BadGateway)))
case failure: VcdGatewayException ⇒
logger.debug("*** In putCustomerProduct, got a Left(VcdGatewayException)")
task = task.copy(Progress = 100, status = Error, Error = Option(exceptionToError(failure, GatewayTimeout)))
case failure: Exception ⇒
logger.debug("*** In putCustomerProduct, got a Left(Exception)")
task = task.copy(Progress = 100, status = Error, Error = Option(exceptionToError(failure)))
}
因为我在catch块中有这个任务变化,所以有一种很好的方法可以从包含catch块的部分函数中访问它吗?该任务是一个var,因为它在进入系统时设置了一些初始化数据,如创建的时间戳。我可以解决这个问题,但无论如何我对原始问题的答案感兴趣。
答案 0 :(得分:9)
我假设你有几个不同的函数,你想要使用不同的var task
。
您可以创建一个将task
和任务设置器作为参数的函数,它返回一个PartialFunction
,您可以将其用作捕获处理程序。
def handler(task: Task, setTask: Task => Any): PartialFunction[Throwable, Any] = {
case failure: NoResponseBodyException =>
logger.debug("*** In putCustomerProduct, got a Left(NoResponseBodyException)")
setTask(task.copy(Progress = 100, status = Error, Error = Option(exceptionToError(failure, BadGateway))))
case failure: VcdGatewayException =>
logger.debug("*** In putCustomerProduct, got a Left(VcdGatewayException)")
setTask(task.copy(Progress = 100, status = Error, Error = Option(exceptionToError(failure, GatewayTimeout))))
case failure: Exception =>
logger.debug("*** In putCustomerProduct, got a Left(Exception)")
setTask(task.copy(Progress = 100, status = Error, Error = Option(exceptionToError(failure))))
}
// somewhere else in your code...
var task = newTask("update product", "update for customer " + customerId.toString)
try {
val vcdRouter = actorSystem.actorFor("user/supervisor/router-10.10.10.10:443")
val vdcId = new UUID("92ddba5e-8101-4580-b9a5-e3ee6ea5718f")
val vdcGet = sendExpect[AdminVdcType](vcdRouter, GetVdc(vdcId))
val vdcPut = VdcPutConfig(vdcGet, c)
val vdcPutTask = sendExpect[TaskType](vcdRouter, UpdateVdc(vdcId, vdcPut))
task = task.copy(Progress = 100, status = SuccessType)
} catch handler(task, task = _)
我同意user3001您应该尝试减少捕获处理程序中的重复。
答案 1 :(得分:5)
以下是使用scala.util.control.Exception
的替代方法。
scala> import util.control.Exception._
import util.control.Exception._
首先创建Catch[_]
个对象来处理特定的异常。
scala> val nfeh = handling(classOf[NumberFormatException]) by println
nfeh: util.control.Exception.Catch[Unit] = Catch()
scala> val aobeh = handling(classOf[ArrayIndexOutOfBoundsException]) by println
aobeh: util.control.Exception.Catch[Unit] = Catch()
使用.or
方法将它们组合在一起。请注意,就像在catch
块中一样,订单很重要。
scala> val h = nfeh or aobeh
h: util.control.Exception.Catch[Unit] = Catch()
将处理程序应用于可能引发异常的代码。
scala> h apply {
| println("1o2".toInt)
| }
java.lang.NumberFormatException: For input string: "1o2"
scala> h apply {
| val x = Array(8)
| println(x(2))
| }
java.lang.ArrayIndexOutOfBoundsException: 2
对于task
部分,您可以按以下方式执行操作:
scala> val nfeh = handling(classOf[NumberFormatException]) by { ex =>
| println(ex)
| -1
| }
nfeh: util.control.Exception.Catch[Int] = Catch()
scala> val aobeh = handling(classOf[ArrayIndexOutOfBoundsException]) by { ex =>
| println(ex)
| -2
| }
aobeh: util.control.Exception.Catch[Int] = Catch()
scala> val h = nfeh or aobeh
h: util.control.Exception.Catch[Int] = Catch()
scala> val task = h apply {
| "120".toInt
| }
task: Int = 120
scala> val task = h apply {
| "12o".toInt
| }
java.lang.NumberFormatException: For input string: "12o"
task: Int = -1
scala> val task = h apply {
| Array(12, 33, 22)(2)
| }
task: Int = 22
scala> val task = h apply {
| Array(12, 33, 22)(6)
| }
java.lang.ArrayIndexOutOfBoundsException: 6
task: Int = -2
答案 2 :(得分:2)
我对scala很新,所以也许我的回答可能不正确,但是: 在每个“case”块中,唯一改变的是错误类型。 首先,我将为异常类型创建另一个匹配项。 像
这样的东西def exceptionToErrorReason(val failure:Exception) : ErrorReason = failure.getClass match {
case classOf[NoResponseBodyException] => BadGateway
case classOf[VcdGatewayException ] => GatewayTimeout
case _ => null
}
现在您可以像这样更改您的catch块
case failure: Exception ⇒
logger.debug("*** In putCustomerProduct, got a Left(" + failure.getClass().getSimpleName() + )")
task = task.copy(Progress = 100, status = Error, Error = Option(exceptionToError(exceptionToErrorReason(failure)))
并遗漏其余部分。无需复制任何内容。