Zamplized Ruby User's Guide

Exception processing: ensure

There may be cleanup work that is necessary when a method finishes its work. Perhaps an open file should be closed, buffered data should be flushed, etc. If there were always only one exit point for each method, we could confidently put our cleanup code in one place and know that it would be executed; however, a method might return from several places, or our intended cleanup code might be unexpectedly skipped because of an exception.

begin   file = open("/tmp/some_file", "w")   # ... write to the file ...   file.close end

In the above, if an exception occurred during the section of code where we were writing to the file, the file would be left open. And we don't want to resort to this kind of redundancy:

begin   file = open("/tmp/some_file", "w")   # ... write to the file ...   file.close rescue   file.close   fail # raise an exception end

It's clumsy, and gets out of hand when the code gets more complicated because we have to deal with every return and break.

For this reason we add another keyword to the "begin...rescue...end" scheme, which is ensure. The ensure code block executes regardless of the success or failure of the begin block.

begin
   file = open("~/some_file", "w") # file is set to nil if open fails
   file.puts("hi")
rescue
   puts("Could not write to file")
ensure   # this clause is always executed
   if (file!=nil)
      file.close
   end
end

Abbreviated Output

Could not write to file

It is possible to use ensure without rescue, or vice versa, but if they are used together in the same begin...end block, the rescue must precede the ensure.

Copyright (c) 2005 Mark Slagell

Portions copyright (c) 2005 Zamples, Inc.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.

A copy of the license is included in the section entitled "GNU Free Documentation License."