[Zodb-checkins] CVS: Zope/lib/python/ZODB - DB.py:1.36.2.3
Brian Lloyd
brian@zope.com
Wed, 9 Jan 2002 14:16:25 -0500
Update of /cvs-repository/Zope/lib/python/ZODB
In directory cvs.zope.org:/tmp/cvs-serv6266
Modified Files:
Tag: Zope-2_5-branch
DB.py
Log Message:
Backported missed changes from the ZODB head to the current release branch.
=== Zope/lib/python/ZODB/DB.py 1.36.2.2 => 1.36.2.3 ===
-#
+#
# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
@@ -72,15 +72,20 @@
self._storage=storage
storage.registerDB(self, None)
if not hasattr(storage,'tpc_vote'): storage.tpc_vote=lambda *args: None
- try: storage.load('\0\0\0\0\0\0\0\0','')
- except:
+ try:
+ storage.load('\0\0\0\0\0\0\0\0','')
+ except KeyError:
+ # Create the database's root in the storage if it doesn't exist
import PersistentMapping
- file=cStringIO.StringIO()
- p=cPickle.Pickler(file,1)
- p.dump((PersistentMapping.PersistentMapping,None))
- p.dump({'_container': {}})
- t=Transaction()
- t.description='initial database creation'
+ root = PersistentMapping.PersistentMapping()
+ # Manually create a pickle for the root to put in the storage.
+ # The pickle must be in the special ZODB format.
+ file = cStringIO.StringIO()
+ p = cPickle.Pickler(file, 1)
+ p.dump((root.__class__, None))
+ p.dump(root.__getstate__())
+ t = Transaction()
+ t.description = 'initial database creation'
storage.tpc_begin(t)
storage.store('\0\0\0\0\0\0\0\0', None, file.getvalue(), '', t)
storage.tpc_vote(t)
@@ -182,7 +187,7 @@
module = getattr(ob.__class__, '__module__', '')
module = module and '%s.' % module or ''
-
+
detail.append({
'conn_no': cn,
'oid': oid,