Code

219eb7c3b08608f5ce59d1d8d5d205cdcbd59faa
[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.17 2001-12-14 23:42:57 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, storagelocator, journaltag=None):
44         """Open a hyperdatabase given a specifier to some storage.
46         The meaning of 'storagelocator' depends on the particular
47         implementation of the hyperdatabase.  It could be a file name,
48         a directory path, a socket descriptor for a connection to a
49         database over the network, etc.
51         The 'journaltag' is a token that will be attached to the journal
52         entries for any edits done on the database.  If 'journaltag' is
53         None, the database is opened in read-only mode: the Class.create(),
54         Class.set(), and Class.retire() methods are disabled.
55         """
56         self.dir, self.journaltag = storagelocator, journaltag
57         self.classes = {}
58         self.cache = {}         # cache of nodes loaded or created
59         self.dirtynodes = {}    # keep track of the dirty nodes by class
60         self.newnodes = {}      # keep track of the new nodes by class
61         self.transactions = []
63     def __repr__(self):
64         return '<back_anydbm instance at %x>'%id(self) 
66     #
67     # Classes
68     #
69     def __getattr__(self, classname):
70         """A convenient way of calling self.getclass(classname)."""
71         if self.classes.has_key(classname):
72             if DEBUG:
73                 print '__getattr__', (self, classname)
74             return self.classes[classname]
75         raise AttributeError, classname
77     def addclass(self, cl):
78         if DEBUG:
79             print 'addclass', (self, cl)
80         cn = cl.classname
81         if self.classes.has_key(cn):
82             raise ValueError, cn
83         self.classes[cn] = cl
85     def getclasses(self):
86         """Return a list of the names of all existing classes."""
87         if DEBUG:
88             print 'getclasses', (self,)
89         l = self.classes.keys()
90         l.sort()
91         return l
93     def getclass(self, classname):
94         """Get the Class object representing a particular class.
96         If 'classname' is not a valid class name, a KeyError is raised.
97         """
98         if DEBUG:
99             print 'getclass', (self, classname)
100         return self.classes[classname]
102     #
103     # Class DBs
104     #
105     def clear(self):
106         '''Delete all database contents
107         '''
108         if DEBUG:
109             print 'clear', (self,)
110         for cn in self.classes.keys():
111             for type in 'nodes', 'journals':
112                 path = os.path.join(self.dir, 'journals.%s'%cn)
113                 if os.path.exists(path):
114                     os.remove(path)
115                 elif os.path.exists(path+'.db'):    # dbm appends .db
116                     os.remove(path+'.db')
118     def getclassdb(self, classname, mode='r'):
119         ''' grab a connection to the class db that will be used for
120             multiple actions
121         '''
122         if DEBUG:
123             print 'getclassdb', (self, classname, mode)
124         return self._opendb('nodes.%s'%classname, mode)
126     def _opendb(self, name, mode):
127         '''Low-level database opener that gets around anydbm/dbm
128            eccentricities.
129         '''
130         if DEBUG:
131             print '_opendb', (self, name, mode)
132         # determine which DB wrote the class file
133         db_type = ''
134         path = os.path.join(os.getcwd(), self.dir, name)
135         if os.path.exists(path):
136             db_type = whichdb.whichdb(path)
137             if not db_type:
138                 raise hyperdb.DatabaseError, "Couldn't identify database type"
139         elif os.path.exists(path+'.db'):
140             # if the path ends in '.db', it's a dbm database, whether
141             # anydbm says it's dbhash or not!
142             db_type = 'dbm'
144         # new database? let anydbm pick the best dbm
145         if not db_type:
146             if DEBUG:
147                 print "_opendb anydbm.open(%r, 'n')"%path
148             return anydbm.open(path, 'n')
150         # open the database with the correct module
151         try:
152             dbm = __import__(db_type)
153         except ImportError:
154             raise hyperdb.DatabaseError, \
155                 "Couldn't open database - the required module '%s'"\
156                 "is not available"%db_type
157         if DEBUG:
158             print "_opendb %r.open(%r, %r)"%(db_type, path, mode)
159         return dbm.open(path, mode)
161     #
162     # Nodes
163     #
164     def addnode(self, classname, nodeid, node):
165         ''' add the specified node to its class's db
166         '''
167         if DEBUG:
168             print 'addnode', (self, classname, nodeid, node)
169         self.newnodes.setdefault(classname, {})[nodeid] = 1
170         self.cache.setdefault(classname, {})[nodeid] = node
171         self.savenode(classname, nodeid, node)
173     def setnode(self, classname, nodeid, node):
174         ''' change the specified node
175         '''
176         if DEBUG:
177             print 'setnode', (self, classname, nodeid, node)
178         self.dirtynodes.setdefault(classname, {})[nodeid] = 1
179         # can't set without having already loaded the node
180         self.cache[classname][nodeid] = node
181         self.savenode(classname, nodeid, node)
183     def savenode(self, classname, nodeid, node):
184         ''' perform the saving of data specified by the set/addnode
185         '''
186         if DEBUG:
187             print 'savenode', (self, classname, nodeid, node)
188         self.transactions.append((self._doSaveNode, (classname, nodeid, node)))
190     def getnode(self, classname, nodeid, db=None):
191         ''' add the specified node to its class's db
192         '''
193         if DEBUG:
194             print 'getnode', (self, classname, nodeid, cldb)
195         # try the cache
196         cache = self.cache.setdefault(classname, {})
197         if cache.has_key(nodeid):
198             return cache[nodeid]
200         # get from the database and save in the cache
201         if db is None:
202             db = self.getclassdb(classname)
203         if not db.has_key(nodeid):
204             raise IndexError, nodeid
205         res = marshal.loads(db[nodeid])
206         cache[nodeid] = res
207         return res
209     def hasnode(self, classname, nodeid, db=None):
210         ''' add the specified node to its class's db
211         '''
212         if DEBUG:
213             print 'hasnode', (self, classname, nodeid, cldb)
214         # try the cache
215         cache = self.cache.setdefault(classname, {})
216         if cache.has_key(nodeid):
217             return 1
219         # not in the cache - check the database
220         if db is None:
221             db = self.getclassdb(classname)
222         res = db.has_key(nodeid)
223         return res
225     def countnodes(self, classname, db=None):
226         if DEBUG:
227             print 'countnodes', (self, classname, cldb)
228         # include the new nodes not saved to the DB yet
229         count = len(self.newnodes.get(classname, {}))
231         # and count those in the DB
232         if db is None:
233             db = self.getclassdb(classname)
234         count = count + len(db.keys())
235         return count
237     def getnodeids(self, classname, db=None):
238         if DEBUG:
239             print 'getnodeids', (self, classname, db)
240         # start off with the new nodes
241         res = self.newnodes.get(classname, {}).keys()
243         if db is None:
244             db = self.getclassdb(classname)
245         res = res + db.keys()
246         return res
248     #
249     # Journal
250     #
251     def addjournal(self, classname, nodeid, action, params):
252         ''' Journal the Action
253         'action' may be:
255             'create' or 'set' -- 'params' is a dictionary of property values
256             'link' or 'unlink' -- 'params' is (classname, nodeid, propname)
257             'retire' -- 'params' is None
258         '''
259         if DEBUG:
260             print 'addjournal', (self, classname, nodeid, action, params)
261         self.transactions.append((self._doSaveJournal, (classname, nodeid,
262             action, params)))
264     def getjournal(self, classname, nodeid):
265         ''' get the journal for id
266         '''
267         if DEBUG:
268             print 'getjournal', (self, classname, nodeid)
269         # attempt to open the journal - in some rare cases, the journal may
270         # not exist
271         try:
272             db = self._opendb('journals.%s'%classname, 'r')
273         except anydbm.error, error:
274             if str(error) == "need 'c' or 'n' flag to open new db": return []
275             elif error.args[0] != 2: raise
276             return []
277         journal = marshal.loads(db[nodeid])
278         res = []
279         for entry in journal:
280             (nodeid, date_stamp, self.journaltag, action, params) = entry
281             date_obj = date.Date(date_stamp)
282             res.append((nodeid, date_obj, self.journaltag, action, params))
283         return res
286     #
287     # Basic transaction support
288     #
289     def commit(self):
290         ''' Commit the current transactions.
291         '''
292         if DEBUG:
293             print 'commit', (self,)
294         # lock the DB
295         for method, args in self.transactions:
296             # TODO: optimise this, duh!
297             method(*args)
298         # unlock the DB
300         # all transactions committed, back to normal
301         self.cache = {}
302         self.dirtynodes = {}
303         self.newnodes = {}
304         self.transactions = []
306     def _doSaveNode(self, classname, nodeid, node):
307         if DEBUG:
308             print '_doSaveNode', (self, classname, nodeid, node)
309         db = self.getclassdb(classname, 'c')
310         # now save the marshalled data
311         db[nodeid] = marshal.dumps(node)
312         db.close()
314     def _doSaveJournal(self, classname, nodeid, action, params):
315         if DEBUG:
316             print '_doSaveJournal', (self, classname, nodeid, action, params)
317         entry = (nodeid, date.Date().get_tuple(), self.journaltag, action,
318             params)
319         db = self._opendb('journals.%s'%classname, 'c')
320         if db.has_key(nodeid):
321             s = db[nodeid]
322             l = marshal.loads(db[nodeid])
323             l.append(entry)
324         else:
325             l = [entry]
326         db[nodeid] = marshal.dumps(l)
327         db.close()
329     def rollback(self):
330         ''' Reverse all actions from the current transaction.
331         '''
332         if DEBUG:
333             print 'rollback', (self, )
334         self.cache = {}
335         self.dirtynodes = {}
336         self.newnodes = {}
337         self.transactions = []
340 #$Log: not supported by cvs2svn $
341 #Revision 1.16  2001/12/12 03:23:14  richard
342 #Cor blimey this anydbm/whichdb stuff is yecchy. Turns out that whichdb
343 #incorrectly identifies a dbm file as a dbhash file on my system. This has
344 #been submitted to the python bug tracker as issue #491888:
345 #https://sourceforge.net/tracker/index.php?func=detail&aid=491888&group_id=5470&atid=105470
347 #Revision 1.15  2001/12/12 02:30:51  richard
348 #I fixed the problems with people whose anydbm was using the dbm module at the
349 #backend. It turns out the dbm module modifies the file name to append ".db"
350 #and my check to determine if we're opening an existing or new db just
351 #tested os.path.exists() on the filename. Well, no longer! We now perform a
352 #much better check _and_ cope with the anydbm implementation module changing
353 #too!
354 #I also fixed the backends __init__ so only ImportError is squashed.
356 #Revision 1.14  2001/12/10 22:20:01  richard
357 #Enabled transaction support in the bsddb backend. It uses the anydbm code
358 #where possible, only replacing methods where the db is opened (it uses the
359 #btree opener specifically.)
360 #Also cleaned up some change note generation.
361 #Made the backends package work with pydoc too.
363 #Revision 1.13  2001/12/02 05:06:16  richard
364 #. We now use weakrefs in the Classes to keep the database reference, so
365 #  the close() method on the database is no longer needed.
366 #  I bumped the minimum python requirement up to 2.1 accordingly.
367 #. #487480 ] roundup-server
368 #. #487476 ] INSTALL.txt
370 #I also cleaned up the change message / post-edit stuff in the cgi client.
371 #There's now a clearly marked "TODO: append the change note" where I believe
372 #the change note should be added there. The "changes" list will obviously
373 #have to be modified to be a dict of the changes, or somesuch.
375 #More testing needed.
377 #Revision 1.12  2001/12/01 07:17:50  richard
378 #. We now have basic transaction support! Information is only written to
379 #  the database when the commit() method is called. Only the anydbm
380 #  backend is modified in this way - neither of the bsddb backends have been.
381 #  The mail, admin and cgi interfaces all use commit (except the admin tool
382 #  doesn't have a commit command, so interactive users can't commit...)
383 #. Fixed login/registration forwarding the user to the right page (or not,
384 #  on a failure)
386 #Revision 1.11  2001/11/21 02:34:18  richard
387 #Added a target version field to the extended issue schema
389 #Revision 1.10  2001/10/09 23:58:10  richard
390 #Moved the data stringification up into the hyperdb.Class class' get, set
391 #and create methods. This means that the data is also stringified for the
392 #journal call, and removes duplication of code from the backends. The
393 #backend code now only sees strings.
395 #Revision 1.9  2001/10/09 07:25:59  richard
396 #Added the Password property type. See "pydoc roundup.password" for
397 #implementation details. Have updated some of the documentation too.
399 #Revision 1.8  2001/09/29 13:27:00  richard
400 #CGI interfaces now spit up a top-level index of all the instances they can
401 #serve.
403 #Revision 1.7  2001/08/12 06:32:36  richard
404 #using isinstance(blah, Foo) now instead of isFooType
406 #Revision 1.6  2001/08/07 00:24:42  richard
407 #stupid typo
409 #Revision 1.5  2001/08/07 00:15:51  richard
410 #Added the copyright/license notice to (nearly) all files at request of
411 #Bizar Software.
413 #Revision 1.4  2001/07/30 01:41:36  richard
414 #Makes schema changes mucho easier.
416 #Revision 1.3  2001/07/25 01:23:07  richard
417 #Added the Roundup spec to the new documentation directory.
419 #Revision 1.2  2001/07/23 08:20:44  richard
420 #Moved over to using marshal in the bsddb and anydbm backends.
421 #roundup-admin now has a "freshen" command that'll load/save all nodes (not
422 # retired - mod hyperdb.Class.list() so it lists retired nodes)