RAII in Ruby (Or, How to Manage Resources in Ruby) - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T00:03:36Zhttp://stackoverflow.com/feeds/question/214642http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/214642/raii-in-ruby-or-how-to-manage-resources-in-ruby4RAII in Ruby (Or, How to Manage Resources in Ruby)moogs2008-10-18T05:40:26Z2009-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#2146480Answer by John Millikin for RAII in Ruby (Or, How to Manage Resources in Ruby)John Millikin2008-10-18T05:49:27Z2008-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#2146637Answer by bk1e for RAII in Ruby (Or, How to Manage Resources in Ruby)bk1e2008-10-18T06:09:37Z2008-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#10777741Answer by Greg for RAII in Ruby (Or, How to Manage Resources in Ruby)Greg2009-07-03T04:39:20Z2009-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>