Do programmers of other languages, besides C++, use, know or understand RAII? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T01:11:04Z http://stackoverflow.com/feeds/question/165723 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii 10 Do programmers of other languages, besides C++, use, know or understand RAII? Robert Gould 2008-10-03T04:48:44Z 2009-02-27T20:36:26Z <p>I've noticed RAII has been getting lots of attention on Stackoverflow, but in my circles (mostly C++) RAII is so obvious its like asking what's a class or a destructor.</p> <p>So I'm really curious if that's because I'm surrounded daily, by hard-core C++ programmers, and RAII just isn't that well known in general (including C++), or if all this questioning on Stackoverflow is due to the fact that I'm now in contact with programmers that didn't grow up with C++, and in other languages people just don't use/know about RAII?</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165727#165727 -2 Answer by Vaibhav for Do programmers of other languages, besides C++, use, know or understand RAII? Vaibhav 2008-10-03T04:51:25Z 2008-10-03T04:51:25Z <p>I don't even know what RAII is... And I know C++ and .Net.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165731#165731 0 Answer by Mike F for Do programmers of other languages, besides C++, use, know or understand RAII? Mike F 2008-10-03T04:52:26Z 2008-10-03T04:52:26Z <p>It's sort of tied to knowing when your destructor will be called though right? So it's not entirely language-agnostic, given that that's not a given in many GC'd languages.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165734#165734 -2 Answer by dacracot for Do programmers of other languages, besides C++, use, know or understand RAII? dacracot 2008-10-03T04:53:13Z 2008-10-03T04:53:13Z <p>I'm a 25 year veteran of software. I've done Pascal, C, C++, Java, PL/SQL, XSLT, JavaScript, etc., etc., etc... I have no idea what RAII is. Please tell us your secret.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165736#165736 0 Answer by Chris Jester-Young for Do programmers of other languages, besides C++, use, know or understand RAII? Chris Jester-Young 2008-10-03T04:54:22Z 2008-10-03T04:54:22Z <p>I think a lot of other languages (ones that don't have <code>delete</code>, for example) don't give the programmer quite the same control over object lifetimes, and so there must be other means to provide for deterministic disposal of resources. In C#, for example, using <code>using</code> with <code>IDisposable</code> is common.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165742#165742 0 Answer by John Millikin for Do programmers of other languages, besides C++, use, know or understand RAII? John Millikin 2008-10-03T04:58:19Z 2008-10-03T04:58:19Z <p>RAII is popular in C++ because it's one of the few (only?) languages that can allocate complex scope-local variables, but does not have a <code>finally</code> clause. C#, Java, Python, Ruby all have <code>finally</code> or an equivalent. C hasn't <code>finally</code>, but also can't execute code when a variable drops out of scope.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165743#165743 13 Answer by Chris Jester-Young for Do programmers of other languages, besides C++, use, know or understand RAII? Chris Jester-Young 2008-10-03T04:58:38Z 2008-10-03T05:18:05Z <p>For people who are commenting in this thread about RAII (resource acquisition is initialisation), here's a motivational example.</p> <pre><code>class StdioFile { FILE* file_; public: StdioFile(char const* name, char const* mode) : file_(fopen(name, mode)) { if (!file_) throw std::runtime_error("Cannot open file"); } ~StdioFile() { fclose(file_); } int read(std::vector&lt;char&gt;&amp; buffer) { int result(fread(&amp;buffer[0], 1, buffer.size(), file_)); if (ferror(file_)) throw std::runtime_error(strerror(errno)); return result; } int write(std::vector&lt;char&gt; const&amp; buffer) { int result(fwrite(&amp;buffer[0], 1, buffer.size(), file_)); if (ferror(file_)) throw std::runtime_error(strerror(errno)); return result; } }; int main(int argc, char** argv) { StdioFile file(argv[1], "r"); std::vector&lt;char&gt; buffer(1024); while (int hasRead = file.read(buffer)) { // process hasRead bytes, then shift them off the buffer } } </code></pre> <p>Here, when a <code>StdioFile</code> instance is created, the resource (a file stream, in this case) is acquired; when it's destroyed, the resource is released. There is no <code>try</code> or <code>finally</code> block required; if the reading causes an exception, <code>fclose</code> is called automatically, because it's in the destructor.</p> <p>The destructor is guaranteed to be called when the function leaves <code>main</code>, whether normally or by exception. In this case, the file stream is cleaned up. The world is safe once again. :-D</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165744#165744 -2 Answer by Justice for Do programmers of other languages, besides C++, use, know or understand RAII? Justice 2008-10-03T04:58:40Z 2008-10-03T04:58:40Z <p>RAII is specific to C++. C++ has the requisite combination of stack-allocated objects, unmanaged object lifetimes, and exception handling.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165749#165749 1 Answer by Robert Gould for Do programmers of other languages, besides C++, use, know or understand RAII? Robert Gould 2008-10-03T05:02:31Z 2008-10-03T06:39:47Z <p>First of all I'm very surprised it's not more well known! I totally thought RAII was, at least, obvious to C++ programmers. However now I guess I can understand why people actually ask about it. I'm surrounded, and my self must be, C++ freaks...</p> <p>So my secret.. I guess that would be, that I used to read Meyers, Sutter [EDIT:] and Andrei all the time years ago until I just grokked it.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165760#165760 8 Answer by wilhelmtell for Do programmers of other languages, besides C++, use, know or understand RAII? wilhelmtell 2008-10-03T05:10:38Z 2008-10-03T19:29:41Z <p>RAII stands for <a href="http://en.wikipedia.org/wiki/Resource_acquisition_is_initialization" rel="nofollow">Resource Acquisition Is Initialization</a>. This is not language-agnostic at all. This mantra is here because C++ works the way it works. In C++ an object is not constructed until its constructor completes. A destructor will not be invoked if the object has not been successfully constructed.</p> <p>Translated to practical language, a constructor should make sure it covers for the case it can't complete its job thoroughly. If, for example, an exception occurs during construction then the constructor must handle it gracefully, because the destructor will not be there to help. This is usually done by covering for the exceptions within the constructor or by forwarding this hassle to other objects. For example:</p> <pre><code>class OhMy { public: OhMy() { p_ = new int[42]; jump(); } ~OhMy() { delete[] p_; } private: int* p_; void jump(); }; </code></pre> <p>If the <code>jump()</code> call in the constructor throws we're in trouble, because <code>p_</code> will leak. We can fix this like this:</p> <pre><code>class Few { public: Few() : v_(42) { jump(); } ~Few(); private: std::vector&lt;int&gt; v_; void jump(); }; </code></pre> <p>If people are not aware of this then it's because of one of two things:</p> <ul> <li>They don't know C++ well. In this case they should open <a href="http://www.research.att.com/~bs/3rd.html" rel="nofollow">TCPPPL</a> again before they write their next class. Specifically, section 14.4.1 in the third edition of the book talks about this technique.</li> <li>They don't know C++ at all. That's fine. This idiom is very C++y. Either learn C++ or forget all about this and carry on with your lives. Preferably learn C++. ;)</li> </ul> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165764#165764 4 Answer by Martin York for Do programmers of other languages, besides C++, use, know or understand RAII? Martin York 2008-10-03T05:16:22Z 2008-10-24T15:16:12Z <p>RAII.</p> <p>It starts with a constructor and destructor but it is more than that.<br> It is all about safely controlling resources in the presence of exceptions.<br></p> <p>What makes RAII superior to finally and such mechanisms is that it makes code safer to use because it moves responsibility for using an object correctly from the user of the object to the designer of the object.</p> <p><a href="http://stackoverflow.com/questions/161177/does-c-support-finally-blocks-and-whats-this-raii-i-keep-hearing-about#161247">Read this</a></p> <p>Example to use <a href="http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii#165743">StdioFile</a> correctly using RAII.</p> <pre><code>void someFunc() { StdioFile file("Plop","r"); // use file } // File closed automatically even if this function exits via an exception. </code></pre> <p>To get the same functionality with finally.</p> <pre><code>void someFunc() { // Assuming JAVA Like syntax; StdioFile file = new StdioFile("Plop","r"); try { // use file } finally { // close file. file.close(); // // Using the finaliser is not enough as we can not garantee when // it will be called. } } </code></pre> <p>Because you have to explicitly add the try{} finally{} block this makes this method of coding more error prone (<b>i.e.</b> it is the user of the object that needs to think about exceptions). By using RAII exception safety has to be coded once when the object is implemented.</p> <p>To the question is this C++ specific.<br> Short Answer: No.<br></p> <p>Longer Answer:<br> It requires Constructors/Destructors/Exceptions and objects that have a defined lifetime.</p> <p>Well technically it does not need exceptions. It just becomes much more useful when exceptions could potentially be used as it makes controlling the resource in the presence of exceptions very easy.<br> But it is useful in all situations where control can leave a function early and not execute all the code (<b>e.g.</b> early return from a function. This is why multiple return points in C is a bad code smell while multiple return points in C++ is not a code smell [because we can clean up using RAII]).</p> <p>In C++ controlled lifetime is achieved by stack variables or smart pointers. But this is not the only time we can have a tightly controlled lifespan. For example Perl objects are not stack based but have a very controlled lifespan because of reference counting.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165793#165793 0 Answer by Torbjörn Gyllebring for Do programmers of other languages, besides C++, use, know or understand RAII? Torbjörn Gyllebring 2008-10-03T05:34:01Z 2008-10-03T05:34:01Z <p>The thing with RAII is that it requires deterministic finalization something that is guaranteed for stackbased objects in C++. Languages like C# and Java that relies on garbage collection doesn't have this guarantee so it has to be "bolted" on somehow. In C# this is done by implementing IDisposable and much of the same usage patterns then crops up basicly that's one of the motivators for the "using" statement, it ensures Disposal and is very well known and used. </p> <p>So basicly the idiom is there, it just doesn't have a fancy name. </p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/165991#165991 3 Answer by Pierre for Do programmers of other languages, besides C++, use, know or understand RAII? Pierre 2008-10-03T07:24:34Z 2008-10-03T07:24:34Z <p>RAII is a way in C++ to make sure a cleanup procedure is executed after a block of code regardless of what happens in the code: the code executes till the end properly or raises an exception. An already cited example is automatically closing a file after its processing, see <a href="http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii#165743">answer here</a>.</p> <p>In other languages you use other mechanism to achieve that.</p> <p>In Java you have try { } finally {} constructs:</p> <pre><code>try { BufferedReader file = new BufferedReader(new FileReader("infilename")); // do something with file } finally { file.close(); } </code></pre> <p>In Ruby you have the automatic block argument:</p> <pre><code>File.open("foo.txt") do | file | # do something with file end </code></pre> <p>In Lisp you have <code>unwind-protect</code> and the predefined <code>with-XXX</code></p> <pre><code>(with-open-file (file "foo.txt") ;; do something with file ) </code></pre> <p>In Scheme you have <code>dynamic-wind</code> and the predefined <code>with-XXXXX</code>:</p> <pre><code>(with-input-from-file "foo.txt" (lambda () ;; do something ) </code></pre> <p>in Python you have try finally</p> <pre><code>try file = open("foo.txt") # do something with file finally: file.close() </code></pre> <p>The C++ solution as RAII is rather clumsy in that it forces you to create one class for all kinds of cleanup you have to do. This may forces you to write a lot of small silly classes.</p> <p>Other examples of RAII are:</p> <ul> <li>unlocking a mutex after acquisition</li> <li>closing a database connection after opening</li> <li>freeing memory after allocation</li> <li>logging on entry and exit of a block of code</li> <li>...</li> </ul> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/166461#166461 6 Answer by Konrad Rudolph for Do programmers of other languages, besides C++, use, know or understand RAII? Konrad Rudolph 2008-10-03T11:44:58Z 2008-10-03T11:44:58Z <p>I use C++˚ RAII all the time but I've also developed in VB6 for a long time and RAII has always been a widely-used concept there (although I've never heard anyone call it that).</p> <p>In fact, many VB6 programs rely on RAII quite heavily. One of the more curious uses that I've repeatedly seen is the following small class:</p> <pre><code>' WaitCursor.cls ' Private m_OldCursor As MousePointerConstants Public Sub Class_Inititialize() m_OldCursor = Screen.MousePointer Screen.MousePointer = vbHourGlass End Sub Public Sub Class_Terminate() Screen.MousePointer = m_OldCursor End Sub </code></pre> <p>Usage:</p> <pre><code>Public Sub MyButton_Click() Dim WC As New WaitCursor ' … Time-consuming operation. ' End Sub </code></pre> <p>Once the time-consuming operation terminates, the original cursor gets restored automatically.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/168103#168103 1 Answer by J.F. Sebastian for Do programmers of other languages, besides C++, use, know or understand RAII? J.F. Sebastian 2008-10-03T17:54:54Z 2009-01-17T19:40:13Z <p>A modification of <a href="http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii#165991">@Pierre's answer</a>:</p> <p>In Python:</p> <pre><code>with open("foo.txt", "w") as f: f.write("abc") </code></pre> <p><code>f.close()</code> is called automatically whether an exception were raised or not.</p> <p>In general it can be done using <a href="http://www.python.org/doc/2.5.2/lib/module-contextlib.html" rel="nofollow">contextlib.closing</a>, from the documenation:</p> <blockquote> <p><code>closing(thing)</code>: return a context manager that closes thing upon completion of the block. This is basically equivalent to:</p> <pre><code>from contextlib import contextmanager @contextmanager def closing(thing): try: yield thing finally: thing.close() </code></pre> <p>And lets you write code like this:</p> <pre><code>from __future__ import with_statement # required for python version &lt; 2.6 from contextlib import closing import urllib with closing(urllib.urlopen('http://www.python.org')) as page: for line in page: print line </code></pre> <p>without needing to explicitly close page. Even if an error occurs, page.close() will be called when the with block is exited.</p> </blockquote> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/194364#194364 1 Answer by Dale for Do programmers of other languages, besides C++, use, know or understand RAII? Dale 2008-10-11T17:39:50Z 2008-10-11T17:39:50Z <p>CPython (the offical Python written in C) supports RAII because of its use of reference counted objects with immediate scope based destruction (rather than when garbage is collected). Unfortunately, Jython (Python in Java) and PyPy do not support this very useful RAII idiom and it breaks a lot of legacy Python code. So for portable python you have to handle all the exceptions manually just like Java.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/194380#194380 0 Answer by Michael Easter for Do programmers of other languages, besides C++, use, know or understand RAII? Michael Easter 2008-10-11T18:00:59Z 2008-10-11T18:00:59Z <p>I have colleagues who are hard-core, "read the spec" C++ types. Many of them know RAII but I have never really heard it used outside of that scene.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/396344#396344 4 Answer by ApplePieIsGood for Do programmers of other languages, besides C++, use, know or understand RAII? ApplePieIsGood 2008-12-28T16:07:58Z 2008-12-28T16:07:58Z <p>The problem with RAII is the acronym. It has no obvious correlation to the concept. What does this have to do with stack allocation? That is what it comes down to. C++ gives you the ability to allocate objects on the stack and guarantee that their destructors are called when the stack is unwound. In light of that, does RAII sound like a meaningful way of encapsulating that? No. I never heard of RAII until I came here a few weeks ago, and I even had to laugh hard when I read someone had posted that they would never hire a C++ programmer who'd didn't know what RAII was. Surely the concept is well known to most all competent professional C++ developers. It's just that the acronym is poorly conceived.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/396380#396380 6 Answer by jalf for Do programmers of other languages, besides C++, use, know or understand RAII? jalf 2008-12-28T16:47:06Z 2008-12-28T16:47:06Z <p>There are plenty of reasons why RAII isn't better known. First, the name isn't particularly obvious. If I didn't already know what RAII was, I'd certainly never guess it from the name. (Resource acquisition is initialization? What does that have to do with the destructor or cleanup, which is what <em>really</em> characterizes RAII?)</p> <p>Another is that it doesn't work as well in languages without deterministic cleanup.</p> <p>In C++, we know exactly when the destructor is called, we know the order in which destructors are called, and we can define them to do anything we like.</p> <p>In most modern languages, everything is garbage-collected, which makes RAII trickier to implement. There's no reason why it wouldn't be possible to add RAII-extensions to, say, C#, but it's not as obvious as it is in C++. But as others have mentioned, Perl and other languages support RAII despite being garbage collected.</p> <p>That said, it is still possible to create your own RAII-styled wrapper in C# or other languages. I did it in C# a while ago. I had to write something to ensure that a database connection was closed immediately after use, a task which any C++ programmer would see as an obvious candidate for RAII. Of course we could wrap everything in <code>using</code>-statements whenever we used a db connection, but that's just messy and error-prone.</p> <p>My solution was to write a helper function which took a delegate as argument, and then when called, opened a database connection, and inside a using-statement, passed it to the delegate function, pseudocode:</p> <pre><code>T RAIIWrapper&lt;T&gt;(Func&lt;DbConnection, T&gt; f){ using (var db = new DbConnection()){ return f(db); } } </code></pre> <p>Still not as nice or obvious as C++-RAII, but it achieved roughly the same thing. Whenever we need a DbConnection, we have to call this helper function which guarantees that it'll be closed afterwards.</p> http://stackoverflow.com/questions/165723/do-programmers-of-other-languages-besides-c-use-know-or-understand-raii/596577#596577 1 Answer by Earwicker for Do programmers of other languages, besides C++, use, know or understand RAII? Earwicker 2009-02-27T20:36:26Z 2009-02-27T20:36:26Z <p>Common Lisp has RAII:</p> <pre><code>(with-open-file (stream "file.ext" :direction :input) (do-something-with-stream stream)) </code></pre> <p>See: <a href="http://www.psg.com/~dlamkins/sl/chapter09.html" rel="nofollow">http://www.psg.com/~dlamkins/sl/chapter09.html</a></p>