2004-08-01 09:51:31 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-05-07 10:52:44 +05:30
|
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
2004-08-01 09:51:31 +05:30
|
|
|
#
|
|
|
|
# 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$
|
|
|
|
|
2004-12-06 09:43:13 +05:30
|
|
|
"""
|
|
|
|
Provides the GRAMPS DB interface for supporting in-memory editing
|
|
|
|
of GRAMPS XML format.
|
|
|
|
"""
|
|
|
|
|
2004-08-01 09:51:31 +05:30
|
|
|
from RelLib import *
|
2005-12-21 16:57:05 +05:30
|
|
|
from _GrampsInMemDB import *
|
2004-08-01 09:51:31 +05:30
|
|
|
|
2006-05-16 09:17:58 +05:30
|
|
|
from _ReadXML import importData
|
|
|
|
from _WriteXML import quick_write
|
2006-05-10 11:22:55 +05:30
|
|
|
from _DbUtils import db_copy
|
2004-08-01 09:51:31 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GrampsXMLDB
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2004-09-19 09:41:34 +05:30
|
|
|
class GrampsXMLDB(GrampsInMemDB):
|
2004-08-01 09:51:31 +05:30
|
|
|
"""GRAMPS database object. This object is a base class for other
|
|
|
|
objects."""
|
|
|
|
|
2006-09-24 10:07:59 +05:30
|
|
|
def __init__(self, use_txn = True):
|
2004-08-01 09:51:31 +05:30
|
|
|
"""creates a new GrampsDB"""
|
2004-09-19 09:41:34 +05:30
|
|
|
GrampsInMemDB.__init__(self)
|
2004-08-01 09:51:31 +05:30
|
|
|
|
2006-09-24 10:07:59 +05:30
|
|
|
def load(self, name, callback, mode="w"):
|
|
|
|
|
2006-01-11 03:58:09 +05:30
|
|
|
if self.db_is_open:
|
|
|
|
self.close()
|
2006-09-24 10:07:59 +05:30
|
|
|
GrampsInMemDB.load(self, name, callback, mode)
|
2004-08-01 09:51:31 +05:30
|
|
|
self.id_trans = {}
|
2006-09-24 10:07:59 +05:30
|
|
|
|
|
|
|
try:
|
|
|
|
importData(self, name, callback, use_trans=False)
|
|
|
|
except OSError, IOError:
|
|
|
|
return 1
|
2004-08-01 09:51:31 +05:30
|
|
|
|
|
|
|
self.bookmarks = self.metadata.get('bookmarks')
|
|
|
|
if self.bookmarks == None:
|
|
|
|
self.bookmarks = []
|
2006-01-11 03:58:09 +05:30
|
|
|
self.db_is_open = True
|
2004-08-01 09:51:31 +05:30
|
|
|
return 1
|
|
|
|
|
2006-05-10 11:22:55 +05:30
|
|
|
def load_from(self, other_database, filename, callback):
|
|
|
|
self.id_trans = {}
|
|
|
|
db_copy(other_database,self,callback)
|
|
|
|
GrampsInMemDB.load(self,filename,callback)
|
|
|
|
self.bookmarks = self.metadata.get('bookmarks')
|
|
|
|
if self.bookmarks == None:
|
|
|
|
self.bookmarks = []
|
|
|
|
self.db_is_open = True
|
2006-05-16 09:17:58 +05:30
|
|
|
quick_write(self,self.full_name,callback)
|
2006-05-10 11:22:55 +05:30
|
|
|
return 1
|
|
|
|
|
2004-08-01 09:51:31 +05:30
|
|
|
def close(self):
|
2006-01-11 03:58:09 +05:30
|
|
|
if not self.db_is_open:
|
|
|
|
return
|
2005-02-17 04:19:54 +05:30
|
|
|
if not self.readonly and len(self.undodb) > 0:
|
2006-05-16 09:17:58 +05:30
|
|
|
quick_write(self,self.full_name)
|
2006-01-11 03:58:09 +05:30
|
|
|
self.db_is_open = False
|
2006-05-16 09:17:58 +05:30
|
|
|
GrampsInMemDB.close(self)
|