Code

Rollback was breaking because a message hadn't actually been written to the file...
[roundup.git] / roundup / backends / back_anydbm.py
1 #
2 # Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/)
3 # This module is free software, and you may redistribute it and/or modify
4 # under the same terms as Python, so long as this copyright message and
5 # disclaimer are retained in their original form.
6 #
7 # IN NO EVENT SHALL BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR
8 # DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
9 # OUT OF THE USE OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
10 # POSSIBILITY OF SUCH DAMAGE.
11 #
12 # BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 # FOR A PARTICULAR PURPOSE.  THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17
18 #$Id: back_anydbm.py,v 1.23 2002-01-18 04:32:04 richard Exp $
19 '''
20 This module defines a backend that saves the hyperdatabase in a database
21 chosen by anydbm. It is guaranteed to always be available in python
22 versions >2.1.1 (the dumbdbm fallback in 2.1.1 and earlier has several
23 serious bugs, and is not available)
24 '''
26 import whichdb, anydbm, os, marshal
27 from roundup import hyperdb, date, password
29 DEBUG=os.environ.get('HYPERDBDEBUG', '')
31 #
32 # Now the database
33 #
34 class Database(hyperdb.Database):
35     """A database for storing records containing flexible data types.
37     Transaction stuff TODO:
38         . check the timestamp of the class file and nuke the cache if it's
39           modified. Do some sort of conflict checking on the dirty stuff.
40         . perhaps detect write collisions (related to above)?
42     """
43     def __init__(self, config, journaltag=None):
44         """Open a hyperdatabase given a specifier to some storage.
46         The 'storagelocator' is obtained from config.DATABASE.
47         The meaning of 'storagelocator' depends on the particular
48         implementation of the hyperdatabase.  It could be a file name,
49         a directory path, a socket descriptor for a connection to a
50         database over the network, etc.
52         The 'journaltag' is a token that will be attached to the journal
53         entries for any edits done on the database.  If 'journaltag' is
54         None, the database is opened in read-only mode: the Class.create(),
55         Class.set(), and Class.retire() methods are disabled.
56         """
57         self.config, self.journaltag = config, journaltag
58         self.dir = config.DATABASE
59         self.classes = {}
60         self.cache = {}         # cache of nodes loaded or created
61         self.dirtynodes = {}    # keep track of the dirty nodes by class
62         self.newnodes = {}      # keep track of the new nodes by class
63         self.transactions = []
65     def __repr__(self):
66         return '<back_anydbm instance at %x>'%id(self) 
68     #
69     # Classes
70     #
71     def __getattr__(self, classname):
72         """A convenient way of calling self.getclass(classname)."""
73         if self.classes.has_key(classname):
74             if DEBUG:
75                 print '__getattr__', (self, classname)
76             return self.classes[classname]
77         raise AttributeError, classname
79     def addclass(self, cl):
80         if DEBUG:
81             print 'addclass', (self, cl)
82         cn = cl.classname
83         if self.classes.has_key(cn):
84             raise ValueError, cn
85         self.classes[cn] = cl
87     def getclasses(self):
88         """Return a list of the names of all existing classes."""
89         if DEBUG:
90             print 'getclasses', (self,)
91         l = self.classes.keys()
92         l.sort()
93         return l
95     def getclass(self, classname):
96         """Get the Class object representing a particular class.
98         If 'classname' is not a valid class name, a KeyError is raised.
99         """
100         if DEBUG:
101             print 'getclass', (self, classname)
102         return self.classes[classname]
104     #
105     # Class DBs
106     #
107     def clear(self):
108         '''Delete all database contents
109         '''
110         if DEBUG:
111             print 'clear', (self,)
112         for cn in self.classes.keys():
113             for type in 'nodes', 'journals':
114                 path = os.path.join(self.dir, 'journals.%s'%cn)
115                 if os.path.exists(path):
116                     os.remove(path)
117                 elif os.path.exists(path+'.db'):    # dbm appends .db
118                     os.remove(path+'.db')
120     def getclassdb(self, classname, mode='r'):
121         ''' grab a connection to the class db that will be used for
122             multiple actions
123         '''
124         if DEBUG:
125             print 'getclassdb', (self, classname, mode)
126         return self._opendb('nodes.%s'%classname, mode)
128     def _opendb(self, name, mode):
129         '''Low-level database opener that gets around anydbm/dbm
130            eccentricities.
131         '''
132         if DEBUG:
133             print '_opendb', (self, name, mode)
134         # determine which DB wrote the class file
135         db_type = ''
136         path = os.path.join(os.getcwd(), self.dir, name)
137         if os.path.exists(path):
138             db_type = whichdb.whichdb(path)
139             if not db_type:
140                 raise hyperdb.DatabaseError, "Couldn't identify database type"
141         elif os.path.exists(path+'.db'):
142             # if the path ends in '.db', it's a dbm database, whether
143             # anydbm says it's dbhash or not!
144             db_type = 'dbm'
146         # new database? let anydbm pick the best dbm
147         if not db_type:
148             if DEBUG:
149                 print "_opendb anydbm.open(%r, 'n')"%path
150             return anydbm.open(path, 'n')
152         # open the database with the correct module
153         try:
154             dbm = __import__(db_type)
155         except ImportError:
156             raise hyperdb.DatabaseError, \
157                 "Couldn't open database - the required module '%s'"\
158                 "is not available"%db_type
159         if DEBUG:
160             print "_opendb %r.open(%r, %r)"%(db_type, path, mode)
161         return dbm.open(path, mode)
163     #
164     # Nodes
165     #
166     def addnode(self, classname, nodeid, node):
167         ''' add the specified node to its class's db
168         '''
169         if DEBUG:
170             print 'addnode', (self, classname, nodeid, node)
171         self.newnodes.setdefault(classname, {})[nodeid] = 1
172         self.cache.setdefault(classname, {})[nodeid] = node
173         self.savenode(classname, nodeid, node)
175     def setnode(self, classname, nodeid, node):
176         ''' change the specified node
177         '''
178         if DEBUG:
179             print 'setnode', (self, classname, nodeid, node)
180         self.dirtynodes.setdefault(classname, {})[nodeid] = 1
181         # can't set without having already loaded the node
182         self.cache[classname][nodeid] = node
183         self.savenode(classname, nodeid, node)
185     def savenode(self, classname, nodeid, node):
186         ''' perform the saving of data specified by the set/addnode
187         '''
188         if DEBUG:
189             print 'savenode', (self, classname, nodeid, node)
190         self.transactions.append((self._doSaveNode, (classname, nodeid, node)))
192     def getnode(self, classname, nodeid, db=None, cache=1):
193         ''' get a node from the database
194         '''
195         if DEBUG:
196             print 'getnode', (self, classname, nodeid, cldb)
197         if cache:
198             # try the cache
199             cache = self.cache.setdefault(classname, {})
200             if cache.has_key(nodeid):
201                 return cache[nodeid]
203         # get from the database and save in the cache
204         if db is None:
205             db = self.getclassdb(classname)
206         if not db.has_key(nodeid):
207             raise IndexError, "no such %s %s"%(classname, nodeid)
208         res = marshal.loads(db[nodeid])
209         if cache:
210             cache[nodeid] = res
211         return res
213     def hasnode(self, classname, nodeid, db=None):
214         ''' determine if the database has a given node
215         '''
216         if DEBUG:
217             print 'hasnode', (self, classname, nodeid, cldb)
218         # try the cache
219         cache = self.cache.setdefault(classname, {})
220         if cache.has_key(nodeid):
221             return 1
223         # not in the cache - check the database
224         if db is None:
225             db = self.getclassdb(classname)
226         res = db.has_key(nodeid)
227         return res
229     def countnodes(self, classname, db=None):
230         if DEBUG:
231             print 'countnodes', (self, classname, cldb)
232         # include the new nodes not saved to the DB yet
233         count = len(self.newnodes.get(classname, {}))
235         # and count those in the DB
236         if db is None:
237             db = self.getclassdb(classname)
238         count = count + len(db.keys())
239         return count
241     def getnodeids(self, classname, db=None):
242         if DEBUG:
243             print 'getnodeids', (self, classname, db)
244         # start off with the new nodes
245         res = self.newnodes.get(classname, {}).keys()
247         if db is None:
248             db = self.getclassdb(classname)
249         res = res + db.keys()
250         return res
253     #
254     # Files - special node properties
255     #
256     def filename(self, classname, nodeid, property=None):
257         '''Determine what the filename for the given node and optionally property is.
258         '''
259         # TODO: split into multiple files directories
260         if property:
261             return os.path.join(self.dir, 'files', '%s%s.%s'%(classname,
262                 nodeid, property))
263         else:
264             # roundupdb.FileClass never specified the property name, so don't include it
265             return os.path.join(self.dir, 'files', '%s%s'%(classname,
266                 nodeid))
268     def storefile(self, classname, nodeid, property, content):
269         '''Store the content of the file in the database. The property may be None, in
270            which case the filename does not indicate which property is being saved.
271         '''
272         name = self.filename(classname, nodeid, property)
273         open(name + '.tmp', 'wb').write(content)
274         self.transactions.append((self._doStoreFile, (name, )))
276     def getfile(self, classname, nodeid, property):
277         '''Store the content of the file in the database.
278         '''
279         filename = self.filename(classname, nodeid, property)
280         try:
281             return open(filename, 'rb').read()
282         except:
283             return open(filename+'.tmp', 'rb').read()
286     #
287     # Journal
288     #
289     def addjournal(self, classname, nodeid, action, params):
290         ''' Journal the Action
291         'action' may be:
293             'create' or 'set' -- 'params' is a dictionary of property values
294             'link' or 'unlink' -- 'params' is (classname, nodeid, propname)
295             'retire' -- 'params' is None
296         '''
297         if DEBUG:
298             print 'addjournal', (self, classname, nodeid, action, params)
299         self.transactions.append((self._doSaveJournal, (classname, nodeid,
300             action, params)))
302     def getjournal(self, classname, nodeid):
303         ''' get the journal for id
304         '''
305         if DEBUG:
306             print 'getjournal', (self, classname, nodeid)
307         # attempt to open the journal - in some rare cases, the journal may
308         # not exist
309         try:
310             db = self._opendb('journals.%s'%classname, 'r')
311         except anydbm.error, error:
312             if str(error) == "need 'c' or 'n' flag to open new db": return []
313             elif error.args[0] != 2: raise
314             return []
315         journal = marshal.loads(db[nodeid])
316         res = []
317         for entry in journal:
318             (nodeid, date_stamp, self.journaltag, action, params) = entry
319             date_obj = date.Date(date_stamp)
320             res.append((nodeid, date_obj, self.journaltag, action, params))
321         return res
324     #
325     # Basic transaction support
326     #
327     def commit(self):
328         ''' Commit the current transactions.
329         '''
330         if DEBUG:
331             print 'commit', (self,)
332         # TODO: lock the DB
334         # keep a handle to all the database files opened
335         self.databases = {}
337         # now, do all the transactions
338         for method, args in self.transactions:
339             method(*args)
341         # now close all the database files
342         for db in self.databases.values():
343             db.close()
344         del self.databases
345         # TODO: unlock the DB
347         # all transactions committed, back to normal
348         self.cache = {}
349         self.dirtynodes = {}
350         self.newnodes = {}
351         self.transactions = []
353     def _doSaveNode(self, classname, nodeid, node):
354         if DEBUG:
355             print '_doSaveNode', (self, classname, nodeid, node)
357         # get the database handle
358         db_name = 'nodes.%s'%classname
359         if self.databases.has_key(db_name):
360             db = self.databases[db_name]
361         else:
362             db = self.databases[db_name] = self.getclassdb(classname, 'c')
364         # now save the marshalled data
365         db[nodeid] = marshal.dumps(node)
367     def _doSaveJournal(self, classname, nodeid, action, params):
368         if DEBUG:
369             print '_doSaveJournal', (self, classname, nodeid, action, params)
370         entry = (nodeid, date.Date().get_tuple(), self.journaltag, action,
371             params)
373         # get the database handle
374         db_name = 'journals.%s'%classname
375         if self.databases.has_key(db_name):
376             db = self.databases[db_name]
377         else:
378             db = self.databases[db_name] = self._opendb(db_name, 'c')
380         # now insert the journal entry
381         if db.has_key(nodeid):
382             s = db[nodeid]
383             l = marshal.loads(db[nodeid])
384             l.append(entry)
385         else:
386             l = [entry]
387         db[nodeid] = marshal.dumps(l)
389     def _doStoreFile(self, name, **databases):
390         # the file is currently ".tmp" - move it to its real name to commit
391         os.rename(name+".tmp", name)
393     def rollback(self):
394         ''' Reverse all actions from the current transaction.
395         '''
396         if DEBUG:
397             print 'rollback', (self, )
398         for method, args in self.transactions:
399             # delete temporary files
400             if method == self._doStoreFile:
401                 if os.path.exists(args[0]+".tmp"):
402                     os.remove(args[0]+".tmp")
403         self.cache = {}
404         self.dirtynodes = {}
405         self.newnodes = {}
406         self.transactions = []
409 #$Log: not supported by cvs2svn $
410 #Revision 1.22  2002/01/14 02:20:15  richard
411 # . changed all config accesses so they access either the instance or the
412 #   config attriubute on the db. This means that all config is obtained from
413 #   instance_config instead of the mish-mash of classes. This will make
414 #   switching to a ConfigParser setup easier too, I hope.
416 #At a minimum, this makes migration a _little_ easier (a lot easier in the
417 #0.5.0 switch, I hope!)
419 #Revision 1.21  2002/01/02 02:31:38  richard
420 #Sorry for the huge checkin message - I was only intending to implement #496356
421 #but I found a number of places where things had been broken by transactions:
422 # . modified ROUNDUPDBSENDMAILDEBUG to be SENDMAILDEBUG and hold a filename
423 #   for _all_ roundup-generated smtp messages to be sent to.
424 # . the transaction cache had broken the roundupdb.Class set() reactors
425 # . newly-created author users in the mailgw weren't being committed to the db
427 #Stuff that made it into CHANGES.txt (ie. the stuff I was actually working
428 #on when I found that stuff :):
429 # . #496356 ] Use threading in messages
430 # . detectors were being registered multiple times
431 # . added tests for mailgw
432 # . much better attaching of erroneous messages in the mail gateway
434 #Revision 1.20  2001/12/18 15:30:34  rochecompaan
435 #Fixed bugs:
436 # .  Fixed file creation and retrieval in same transaction in anydbm
437 #    backend
438 # .  Cgi interface now renders new issue after issue creation
439 # .  Could not set issue status to resolved through cgi interface
440 # .  Mail gateway was changing status back to 'chatting' if status was
441 #    omitted as an argument
443 #Revision 1.19  2001/12/17 03:52:48  richard
444 #Implemented file store rollback. As a bonus, the hyperdb is now capable of
445 #storing more than one file per node - if a property name is supplied,
446 #the file is called designator.property.
447 #I decided not to migrate the existing files stored over to the new naming
448 #scheme - the FileClass just doesn't specify the property name.
450 #Revision 1.18  2001/12/16 10:53:38  richard
451 #take a copy of the node dict so that the subsequent set
452 #operation doesn't modify the oldvalues structure
454 #Revision 1.17  2001/12/14 23:42:57  richard
455 #yuck, a gdbm instance tests false :(
456 #I've left the debugging code in - it should be removed one day if we're ever
457 #_really_ anal about performace :)
459 #Revision 1.16  2001/12/12 03:23:14  richard
460 #Cor blimey this anydbm/whichdb stuff is yecchy. Turns out that whichdb
461 #incorrectly identifies a dbm file as a dbhash file on my system. This has
462 #been submitted to the python bug tracker as issue #491888:
463 #https://sourceforge.net/tracker/index.php?func=detail&aid=491888&group_id=5470&atid=105470
465 #Revision 1.15  2001/12/12 02:30:51  richard
466 #I fixed the problems with people whose anydbm was using the dbm module at the
467 #backend. It turns out the dbm module modifies the file name to append ".db"
468 #and my check to determine if we're opening an existing or new db just
469 #tested os.path.exists() on the filename. Well, no longer! We now perform a
470 #much better check _and_ cope with the anydbm implementation module changing
471 #too!
472 #I also fixed the backends __init__ so only ImportError is squashed.
474 #Revision 1.14  2001/12/10 22:20:01  richard
475 #Enabled transaction support in the bsddb backend. It uses the anydbm code
476 #where possible, only replacing methods where the db is opened (it uses the
477 #btree opener specifically.)
478 #Also cleaned up some change note generation.
479 #Made the backends package work with pydoc too.
481 #Revision 1.13  2001/12/02 05:06:16  richard
482 #. We now use weakrefs in the Classes to keep the database reference, so
483 #  the close() method on the database is no longer needed.
484 #  I bumped the minimum python requirement up to 2.1 accordingly.
485 #. #487480 ] roundup-server
486 #. #487476 ] INSTALL.txt
488 #I also cleaned up the change message / post-edit stuff in the cgi client.
489 #There's now a clearly marked "TODO: append the change note" where I believe
490 #the change note should be added there. The "changes" list will obviously
491 #have to be modified to be a dict of the changes, or somesuch.
493 #More testing needed.
495 #Revision 1.12  2001/12/01 07:17:50  richard
496 #. We now have basic transaction support! Information is only written to
497 #  the database when the commit() method is called. Only the anydbm
498 #  backend is modified in this way - neither of the bsddb backends have been.
499 #  The mail, admin and cgi interfaces all use commit (except the admin tool
500 #  doesn't have a commit command, so interactive users can't commit...)
501 #. Fixed login/registration forwarding the user to the right page (or not,
502 #  on a failure)
504 #Revision 1.11  2001/11/21 02:34:18  richard
505 #Added a target version field to the extended issue schema
507 #Revision 1.10  2001/10/09 23:58:10  richard
508 #Moved the data stringification up into the hyperdb.Class class' get, set
509 #and create methods. This means that the data is also stringified for the
510 #journal call, and removes duplication of code from the backends. The
511 #backend code now only sees strings.
513 #Revision 1.9  2001/10/09 07:25:59  richard
514 #Added the Password property type. See "pydoc roundup.password" for
515 #implementation details. Have updated some of the documentation too.
517 #Revision 1.8  2001/09/29 13:27:00  richard
518 #CGI interfaces now spit up a top-level index of all the instances they can
519 #serve.
521 #Revision 1.7  2001/08/12 06:32:36  richard
522 #using isinstance(blah, Foo) now instead of isFooType
524 #Revision 1.6  2001/08/07 00:24:42  richard
525 #stupid typo
527 #Revision 1.5  2001/08/07 00:15:51  richard
528 #Added the copyright/license notice to (nearly) all files at request of
529 #Bizar Software.
531 #Revision 1.4  2001/07/30 01:41:36  richard
532 #Makes schema changes mucho easier.
534 #Revision 1.3  2001/07/25 01:23:07  richard
535 #Added the Roundup spec to the new documentation directory.
537 #Revision 1.2  2001/07/23 08:20:44  richard
538 #Moved over to using marshal in the bsddb and anydbm backends.
539 #roundup-admin now has a "freshen" command that'll load/save all nodes (not
540 # retired - mod hyperdb.Class.list() so it lists retired nodes)