Try-Finally Equivalent in Caché ObjectScript

589 Views Asked by At

I'm looking for the equivalent semantics to the popular Try-Finally exception cleanup pattern, e.g. Why use try … finally without a catch clause?

The idea is that you have cleanup steps that need to happen regardless of whether the code succeeds or fails, but the cleanup code shouldn't interfere with reporting and handling the error. Something still went wrong and the exception should still propagate.

I would like to write something like this:

O TempFile:(/NEW:/WRITE:/STREAM)
U TempFile
L +LockName
TRY {
 ...code that uses TempFile and may throw an error
} FINALLY {
 //Be sure to delete file whether we have an error or not
 O TempFile:(/DELETE)
 C TempFile
 //Be sure to release lock
 L -LockName
}
... Rest of code that should only execute if there was no error

But the TRY...CATCH syntax in ObjectScript does not support the FINALLY clause.

In particular, it's important that both of these things normally done by finally blocks hold true:

  • The cleanup code is always run before execution is returned to the caller, both when there was an error and when everything ran normally.
  • If an error occurs, the original error with its code location, context and stack are propogated up the call stack to the original caller. The cleanup code shouldn't interfere with debugging.

I can't simply use a regular TRY...CATCH block because CATCH will eat the exception and stop the correct error context from being passed up the chain. Maybe there is a way to re-throw the original exception without messing up the error context?

2

There are 2 best solutions below

6
On

you can throw caught error, and it will be original error, with original place of error and anything else, so Try-Finally may looks like below.

try {
    // some code that could be with errors
} catch ex {
}
// finally

throw:$g(ex) ex
// rest code that can't execute if was error
1
On

Would not it be an easier option to write a GoTo command in both the TRY and CATCH block. If the CATCH block contains a GOTO command, control goes directly to the specified location. This location can work like the "Finally" block and execute the clean up steps.

A sample would look something like this :

try {
    // some code that could be with errors
   GOTO xxx , 'This is the last statement of TRY block
} catch ex {
    //Handle the error
   GOTO XXX
}

XXX
  'your clean up steps