Cleaning up an internal pysqlite connection on object destruction - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T08:08:44Zhttp://stackoverflow.com/feeds/question/974813http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/974813/cleaning-up-an-internal-pysqlite-connection-on-object-destruction0Cleaning up an internal pysqlite connection on object destructioneliben2009-06-10T10:39:34Z2009-06-10T19:49:22Z
<p>I have an object with an internal database connection that's active throughout its lifetime. At the end of the program's run, the connection has to be committed and closed. So far I've used an explicit <code>close</code> method, but this is somewhat cumbersome, especially when exceptions can happen in the calling code.</p>
<p>I'm considering using the <code>__del__</code> method for closing, but after some reading online I have concerns. Is this a valid usage pattern? Can I be sure that the internal resources will be freed in <code>__del__</code> correctly?</p>
<p><a href="http://stackoverflow.com/questions/865115/how-do-i-correctly-clean-up-a-python-object">This discussion</a> raised a similar question but found no satisfactory answer. I don't want to have an explicit <code>close</code> method, and using <code>with</code> isn't an option, because my object isn't used as simply as open-play-close, but is kept as a member of another, larger object, that uses it while running in a GUI.</p>
<p>C++ has perfectly working destructors where one can free resources safely, so I would imagine Python has something agreed-upon too. For some reason it seems not to be the case, and many in the community vow against <code>__del__</code>. What's the alternative, then?</p>
http://stackoverflow.com/questions/974813/cleaning-up-an-internal-pysqlite-connection-on-object-destruction/974859#9748590Answer by S.Lott for Cleaning up an internal pysqlite connection on object destructionS.Lott2009-06-10T10:51:46Z2009-06-10T19:49:22Z<p>Read up on the <a href="http://docs.python.org/reference/compound%5Fstmts.html#the-with-statement" rel="nofollow">with</a> statement. You're describing its use case.</p>
<p>You'll need to wrap your connection in a "Context Manager" class that handles the <code>__enter__</code> and <code>__exit__</code> methods used by the <code>with</code> statement.</p>
<p>See <a href="http://www.python.org/dev/peps/pep-0343/" rel="nofollow">PEP 343</a> for more information.</p>
<p><hr /></p>
<p><strong>Edit</strong></p>
<p>"my object isn't used as simply as open-play-close, but is kept as a member of another, larger object"</p>
<pre><code>class AnObjectWhichMustBeClosed( object ):
def __enter__( self ):
# acquire
def __exit__( self, type, value, traceback ):
# release
def open( self, dbConnectionInfo ):
# open the connection, updating the state for __exit__ to handle.
class ALargerObject( object ):
def __init__( self ):
pass
def injectTheObjectThatMustBeClosed( self, anObject ):
self.useThis = anObject
class MyGuiApp( self ):
def run( self ):
# build GUI objects
large = ALargeObject()
with AnObjectWhichMustBeClosed() as x:
large.injectTheObjectThatMustBeClosed( x )
mainLoop()
</code></pre>
<p>Some folks call this "Dependency Injection" and "Inversion of Control". Other folks call this the <strong>Strategy</strong> pattern. The "ObjectThatMustBeClosed" is a strategy, plugged into some larger object. The assembly is created at a top-level of the GUI app, since that's usually where resources like databases are acquired.</p>
http://stackoverflow.com/questions/974813/cleaning-up-an-internal-pysqlite-connection-on-object-destruction/974951#9749512Answer by nosklo for Cleaning up an internal pysqlite connection on object destructionnosklo2009-06-10T11:09:59Z2009-06-10T17:35:58Z<p>You can make a connection module, since modules keep the same object in the whole application, and register a function to close it with the <a href="http://docs.python.org/library/atexit.html" rel="nofollow"><code>atexit</code></a> module</p>
<pre><code># db.py:
import sqlite3
import atexit
con = None
def get_connection():
global con
if not con:
con = sqlite3.connect('somedb.sqlite')
atexit.register(close_connection, con)
return con
def close_connection(some_con):
some_con.commit()
some_con.close()
# your_program.py
import db
con = db.get_connection()
cur = con.cursor()
cur.execute("SELECT ...")
</code></pre>
<p>This sugestion is based on the assumption that the connection in your application seems like a single instance (singleton) which a module global provides well.</p>
<p>If that's not the case, then you can use a destructor.</p>
<p>However destructors don't go well with garbage collectors and circular references (you must remove the circular reference yourself before the destructor is called) and if that's not the case (you need multiple connections) then you can go for a destructor. Just don't keep circular references around or you'll have to break them yourself.</p>
<p>Also, what you said about C++ is wrong. If you use destructors in C++ they are called either when the block that defines the object finishes (like python's <code>with</code>) or when you use the <code>delete</code> keyword (that deallocates an object created with <code>new</code>). Outside that you must use an explicit <code>close()</code> that is not the destructor. So it is just like python - python is even "better" because it has a garbage collector.</p>