RAII in Ruby (Or, How to Manage Resources in Ruby) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:03:36Z http://stackoverflow.com/feeds/question/214642 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/214642/raii-in-ruby-or-how-to-manage-resources-in-ruby 4 RAII in Ruby (Or, How to Manage Resources in Ruby) moogs 2008-10-18T05:40:26Z 2009-07-03T04:39:20Z <p>I know it's by design that you can't control what happens when an object is destroyed. I am also aware of defining some class method as a finalizer.</p> <p>However is the ruby idiom for C++'s RAII (Resources are initialized in constructor, closed in destructor)? How do people manage resources used inside objects even when errors or exceptions happen?</p> <p>Using <em>ensure</em> works:</p> <pre><code>f = File.open("testfile") begin # .. process rescue # .. handle error ensure f.close unless f.nil? end </code></pre> <p>but users of the class <strong>have to remember to do the whole begin-rescue-ensure chacha</strong> everytime the open method needs to be called. </p> <p>So for example, I'll have the following class:</p> <pre><code>class SomeResource def initialize(connection_string) @resource_handle = ...some mojo here... end def do_something() begin @resource_handle.do_that() ... rescue ... ensure end def close @resource_handle.close end end </code></pre> <p>The resource_handle won't be closed if the exception is cause by some other class and the script exits.</p> <p>Or is the problem more of I'm still doing this too C++-like?</p> http://stackoverflow.com/questions/214642/raii-in-ruby-or-how-to-manage-resources-in-ruby/214648#214648 0 Answer by John Millikin for RAII in Ruby (Or, How to Manage Resources in Ruby) John Millikin 2008-10-18T05:49:27Z 2008-10-18T05:49:27Z <p>See <a href="http://www.rubycentral.com/pickaxe/tut_exceptions.html" rel="nofollow">http://www.rubycentral.com/pickaxe/tut_exceptions.html</a></p> <p>In Ruby, you would use an <code>ensure</code> statement:</p> <pre><code>f = File.open("testfile") begin # .. process rescue # .. handle error ensure f.close unless f.nil? end </code></pre> <p>This will be familiar to users of Python, Java, or C# in that it works like try / catch / finally.</p> http://stackoverflow.com/questions/214642/raii-in-ruby-or-how-to-manage-resources-in-ruby/214663#214663 7 Answer by bk1e for RAII in Ruby (Or, How to Manage Resources in Ruby) bk1e 2008-10-18T06:09:37Z 2008-10-18T06:09:37Z <p>How about <code>yield</code>ing a resource to a block? Example:</p> <pre><code>File.open("testfile") do |f| begin # .. process rescue # .. handle error end end </code></pre> http://stackoverflow.com/questions/214642/raii-in-ruby-or-how-to-manage-resources-in-ruby/1077774#1077774 1 Answer by Greg for RAII in Ruby (Or, How to Manage Resources in Ruby) Greg 2009-07-03T04:39:20Z 2009-07-03T04:39:20Z <p>So that users don't "<em>have to remember to do the whole begin-rescue-ensure chacha</em>" combine <code>rescue</code>/<code>ensure</code> with <code>yield</code>.</p> <pre><code>class SomeResource ... def SomeResource.use(*resource_args) # create resource resource = SomeResource.new(*resource_args) # pass args direct to constructor # export it yield resource rescue # known error processing ... ensure # close up when done even if unhandled exception thrown from block resource.close end ... end </code></pre> <p>Client code can use it as follows:</p> <pre><code>SomeResource.use(connection_string) do | resource | resource.do_something ... # whatever else end # after this point resource has been .close()d </code></pre> <p>In fact this is how <code>File.open</code> operates - making the first answer confusing at best (well it was to <em>my</em> work colleagues).</p> <pre><code>File.open("testfile") do |f| # .. process - may include throwing exceptions end # f is guaranteed closed after this point even if exceptions are # thrown during processing </code></pre>