Is there any way to simulate a try-finally or try-except in a language that doesn't have them?

If there's some random, unpredictable, exception happens i need to be sure some cleanup runs.

i could try to be sure that no exception in thrown, that way i am sure my cleanup code always runs - but then i wouldn't need the try-finally/except.

Right this moment i'm trying to create a try-finally in Lua; but i think any solution would work in other languages as well.

Although, for the life of me, i cannot figure out how an exception can be cause without language facilities.

But never hurts to ask.

link|improve this question

73% accept rate
Is the "assert" function not an option? lua.org/pil/8.3.html – Will Jan 2 at 2:25
@Will There's no problem with exceptions being thrown, either by me or not by me. i just need to stop them. Can assert do that? – Ian Boyd Jan 2 at 2:28
Yes, I believe assert will prevent exceptions from being thrown and allow you to raise your own exception instead. Oh, and what Gerald posted is another good function too, pcall. I'm not too familiar with error handling in Lua, but I believe there are a few functions that'll do what you want. – Will Jan 2 at 2:30
@Will i read it as the opposite: "assert(io.open(name, "r")); This is a typical Lua idiom: If io.open fails, assert will raise an error." – Ian Boyd Jan 2 at 2:32
Ah, I think I am mistaken then, but my friends down in the answers section seem to have some good ideas :-) – Will Jan 2 at 2:34
show 2 more comments
feedback

4 Answers

up vote 8 down vote accepted

Lua already has the necessary mechanisms to do something not entirely unlike exceptions. Namely pcall.

You can use pcall to execute any Lua function. If that function (or any function it calls) calls error (assert calls error if the assertion condition is not true), then flow control will return to the site of the pcall statement. The pcall will return false and an error message (what is passed to error).

With this, you can "throw" errors and "catch" them. Your "try" is just the pcall; your "catch" statement is what checks the pcall result.

Also, remember: Lua is a garbage collected environment. You shouldn't need to do any cleanup work. Or if you do, you need to change whatever Lua module requires it. Lua APIs should be Lua APIs, not C or C++ APIs.

link|improve this answer
In this case "cleanup" meant: suppressFlag++; pcall(doStuff); suppressFlag--;. And it looks like my original fear was right - without language support catching arbitrary errors is not a possibility. But excellent work on finding pcall. i googled for about 5 minutes and couldn't find anything. – Ian Boyd Jan 2 at 3:04
feedback

Never programmed in lua (whihc is what you have this tagged as). However, several web pages including this one http://jessewarden.com/2011/01/lua-for-actionscript-developers.html mentioned that protected call (pcall) is lua error handling device.

Hope this helps.

link|improve this answer
feedback

In general, exceptions can be caught using the signal() function. Not sure that lua would support such though. In C, that's what you'd use. And that's a big annoyance! (somewhat complicated.)

link|improve this answer
feedback

How about this Lua Exception Handling system? You can also use Lua RAII mechanisms.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.