# # Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2004-2006 Donald N. Allingham # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # $Id: undoredo.py 12672 2009-06-16 15:49:17Z gbritton $ """ Exports the GrampsDbUndo class for managing Gramps transactions undos and redos. """ #------------------------------------------------------------------------- # # Standard python modules # #------------------------------------------------------------------------- import time, os import cPickle as pickle from bsddb import db from gettext import gettext as _ #------------------------------------------------------------------------- # # Gramps modules # #------------------------------------------------------------------------- from gen.db.dbconst import * from gen.db import BSDDBTxn import Errors #------------------------------------------------------------------------- # # Local Constants # #------------------------------------------------------------------------- DBERRS = (db.DBRunRecoveryError, db.DBAccessError, db.DBPageNotFoundError, db.DBInvalidArgError) _SIGBASE = ('person', 'family', 'source', 'event', 'media', 'place', 'repository', 'reference', 'note') #------------------------------------------------------------------------- # # GrampsDbUndo class # #------------------------------------------------------------------------- class GrampsDbUndo(object): """ Base class for the gramps undo/redo manager. Needs to be subclassed for use with a real backend. """ __slots__ = ['undodb', 'db', 'mapbase', 'translist', 'undoindex', 'undo_history_timestamp', 'txn'] def __init__(self, grampsdb): """ Class constructor. Set up main instance variables """ self.db = grampsdb self.clear() self.mapbase = ( self.db.person_map, self.db.family_map, self.db.source_map, self.db.event_map, self.db.media_map, self.db.place_map, self.db.repository_map, self.db.reference_map, self.db.note_map, ) def clear(self): """ Clear the undo/redo list (but not the backing storage) """ self.translist = [] self.undoindex = -1 self.undo_history_timestamp = time.time() self.txn = None def __enter__(self, value): """ Context manager method to establish the context """ self.open(value) return self def __exit__(self, exc_type, exc_val, exc_tb): """ Context manager method to finish the context """ if exc_type is None: self.close() return exc_type is None def open(self, value): """ Open the backing storage. Needs to be overridden in the derived class. """ raise NotImplementedError def close(self): """ Close the backing storage. Needs to be overridden in the derived class. """ raise NotImplementedError def append(self, value): """ Add a new entry on the end. Needs to be overridden in the derived class. """ raise NotImplementedError def __getitem__(self, index): """ Returns an entry by index number. Needs to be overridden in the derived class. """ raise NotImplementedError def __setitem__(self, index, value): """ Set an entry to a value. Needs to be overridden in the derived class. """ raise NotImplementedError def __len__(self): """ Returns the number of entries. Needs to be overridden in the derived class. """ raise NotImplementedError def commit(self, txn, msg): """ Commit the transaction to the undo/redo database. "txn" should be an instance of gramps gramps transaction class """ txn.set_description(msg) txn.timestamp = time.time() # If we're within our undo limit, add this transaction self.undoindex += 1 if self.undoindex < DBUNDO: if self.undoindex >= len(self.translist): self.translist.append(txn) else: self.translist[self.undoindex] = txn del self.translist[self.undoindex+1:] # Otherwise, we've exceeded our undo limit else: self.db.abort_possible = False self.undo_history_timestamp = time.time() self.translist[-1] = txn def undo_available(self): """ Return boolean of whether or not there's a possibility of undo. """ if 0 <= self.undoindex < len(self.translist): return True return False def redo_available(self): """ Return boolean of whether or not there's a possibility of redo. """ if 0 <= self.undoindex+1 < len(self.translist): return True return False def undo(self, update_history=True): """ Undo a previously committed transaction """ if self.db.readonly or not self.undo_available(): return False return self.__undoredo(update_history, self.__undo) def redo(self, update_history=True): """ Redo a previously committed, then undone, transaction """ if self.db.readonly or not self.redo_available(): return False return self.__undoredo(update_history, self.__redo) def __undoredo(self, update_history, func): """ Helper method used by both undo and redo methods. """ try: with BSDDBTxn(self.db.env) as txn: self.txn = self.db.txn = txn.txn status = func(update_history) if not status: txn.abort() self.db.txn = None return status except DBERRS, msg: self.db._log_error() raise Errors.DbError(msg) def __undo(self, update_history=True): """ Access the last committed transaction, and revert the data to the state before the transaction was committed. """ transaction = self.translist[self.undoindex] db = self.db self.undoindex -= 1 subitems = transaction.get_recnos(reverse=True) # Process all records in the transaction for record_id in subitems: (key, trans_type, handle, old_data, new_data) = \ pickle.loads(self.undodb[record_id]) if key == REFERENCE_KEY: self.undo_reference(old_data, handle, self.mapbase[key]) else: self.undo_data(old_data, handle, self.mapbase[key], db.emit, _SIGBASE[key]) # Notify listeners if db.undo_callback: if self.undo_available(): db.undo_callback(_("_Undo %s") % transaction.get_description()) else: db.undo_callback(None) if db.redo_callback: db.redo_callback(_("_Redo %s") % transaction.get_description()) if update_history and db.undo_history_callback: db.undo_history_callback() return True def __redo(self, db=None, update_history=True): """ Accesse the last undone transaction, and revert the data to the state before the transaction was undone. """ self.undoindex += 1 transaction = self.translist[self.undoindex] db = self.db subitems = transaction.get_recnos() # Process all records in the transaction for record_id in subitems: (key, trans_type, handle, old_data, new_data) = \ pickle.loads(self.undodb[record_id]) if key == REFERENCE_KEY: self.undo_reference(new_data, handle, self.mapbase[key]) else: self.undo_data(new_data, handle, self.mapbase[key], db.emit, _SIGBASE[key]) # Notify listeners if db.undo_callback: db.undo_callback(_("_Undo %s") % transaction.get_description()) if db.redo_callback: if self.redo_available(): new_transaction = self.translist[self.undoindex+1] db.redo_callback(_("_Redo %s") % new_transaction.get_description()) else: db.redo_callback(None) if update_history and db.undo_history_callback: db.undo_history_callback() return True def undo_reference(self, data, handle, db_map): """ Helper method to undo a reference map entry """ try: if data is None: db_map.delete(handle, txn=self.txn) else: db_map.put(handle, data, txn=self.txn) except DBERRS, msg: self.db._log_error() raise Errors.DbError(msg) def undo_data(self, data, handle, db_map, emit, signal_root): """ Helper method to undo/redo the changes made """ try: if data is None: emit(signal_root + '-delete', ([handle],)) db_map.delete(handle, txn=self.txn) else: ex_data = db_map.get(handle, txn=self.txn) if ex_data: signal = signal_root + '-update' else: signal = signal_root + '-add' db_map.put(handle, data, txn=self.txn) emit(signal, ([handle],)) except DBERRS, msg: self.db._log_error() raise Errors.DbError(msg) class GrampsDbUndoList(GrampsDbUndo): """ Implementation of the gramps undo database using a Python list """ def __init__(self, grampsdb): """ Class constructor """ super(GrampsDbUndoList, self).__init__(grampsdb) self.undodb = [] def open(self): """ A list does not need to be opened """ pass def close(self): """ Close the list by resetting it to empty """ self.undodb = [] self.clear() def append(self, value): """ Add an entry on the end of the list """ self.undodb.append(value) return len(self.undodb)-1 def __getitem__(self, index): """ Return an item at the specified index """ return self.undodb[index] def __setitem__(self, index, value): """ Set an item at the speficied index to the given value """ self.undodb[index] = value def __iter__(self): """ Iterator """ for item in self.undodb: yield item def __len__(self): """ Return number of entries in the list """ return len(self.undodb) class GrampsDbUndoBSDDB(GrampsDbUndo): """ Class constructor for gramps undo/redo database using a bsddb recno database as the backing store. """ def __init__(self, grampsdb, path): """ Class constructor """ super(GrampsDbUndoBSDDB, self).__init__(grampsdb) self.undodb = db.DB() self.path = path def open(self): """ Open the undo/redo database """ self.undodb.open(self.path, db.DB_RECNO, db.DB_CREATE) def close(self): """ Close the undo/redo database """ self.undodb.close() try: os.remove(self.path) except OSError: pass self.clear() def append(self, value): """ Add an entry on the end of the database """ return self.undodb.append(value) def __len__(self): """ Returns the number of entries in the database """ x = self.undodb.stat()['nkeys'] y = len(self.undodb) assert x == y return x def __getitem__(self, index): """ Returns the entry stored at the specified index """ return self.undodb.get(index) def __setitem__(self, index, value): """ Sets the entry stored at the specified index to the value given. """ self.undodb.put(index, value) def __iter__(self): """ Iterator """ cursor = self.undodb.cursor() data = cursor.first() while data: yield data data = cursor.next() def testundo(): class T: def __init__(self): self.msg = '' self.timetstamp = 0 def set_description(self, msg): self.msg = msg class D: def __init__(self): self.person_map = {} self.family_map = {} self.source_map = {} self.event_map = {} self.media_map = {} self.place_map = {} self.note_map = {} self.repository_map = {} self.reference_map = {} print "list tests" undo = GrampsDbUndoList(D()) print undo.append('foo') print undo.append('bar') print undo[0] undo[0] = 'foobar' print undo[0] print "len", len(undo) print "iter" for data in undo: print data print print "bsddb tests" undo = GrampsDbUndoBSDDB(D(), '/tmp/testundo') undo.open() print undo.append('foo') print undo.append('fo2') print undo.append('fo3') print undo[1] undo[1] = 'bar' print undo[1] for data in undo: print data print "len", len(undo) print "test commit" undo.commit(T(), msg="test commit") undo.close() if __name__ == '__main__': testundo()