2001-05-13 07:26:57 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000 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
|
|
|
|
#
|
|
|
|
|
|
|
|
from RelLib import *
|
|
|
|
from GrampsParser import *
|
2001-05-18 04:38:27 +05:30
|
|
|
|
2001-08-31 09:10:23 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
import string
|
|
|
|
import time
|
|
|
|
import os
|
|
|
|
from gnome.ui import *
|
2001-06-13 04:54:46 +05:30
|
|
|
import sys
|
2001-05-13 07:26:57 +05:30
|
|
|
|
2001-08-31 09:10:23 +05:30
|
|
|
import intl
|
|
|
|
_ = intl.gettext
|
|
|
|
|
2001-09-23 19:58:15 +05:30
|
|
|
try:
|
|
|
|
import gzip
|
|
|
|
gzip_ok = 1
|
|
|
|
except:
|
|
|
|
gzip_ok = 0
|
|
|
|
|
2001-05-18 04:38:27 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Try to abstract SAX1 from SAX2
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-06-13 04:54:46 +05:30
|
|
|
|
2001-06-28 20:54:51 +05:30
|
|
|
try:
|
2001-09-25 20:11:02 +05:30
|
|
|
from xml.sax import make_parser, SAXParseException, SAXReaderNotAvailable
|
2001-06-28 20:54:51 +05:30
|
|
|
except:
|
2001-09-25 20:11:02 +05:30
|
|
|
from _xmlplus.sax import make_parser, SAXParseException, SAXReaderNotAvailable
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Initialization function for the module. Called to start the reading
|
|
|
|
# of data.
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def importData(database, filename, callback):
|
|
|
|
|
|
|
|
basefile = os.path.dirname(filename)
|
|
|
|
database.smap = {}
|
|
|
|
database.pmap = {}
|
|
|
|
database.fmap = {}
|
|
|
|
|
2001-09-25 20:11:02 +05:30
|
|
|
try:
|
|
|
|
parser = make_parser()
|
|
|
|
except SAXReaderNotAvailable:
|
|
|
|
msg1 = _("GRAMPS is not able to find an XML parser on your system.")
|
|
|
|
msg2 = _("This is probably due to an incomplete python or PyXML installation")
|
|
|
|
GnomeErrorDialog("%s\n%s" % (msg1,msg2))
|
|
|
|
return
|
|
|
|
|
2001-06-28 20:54:51 +05:30
|
|
|
parser.setContentHandler(GrampsImportParser(database,callback,basefile))
|
2001-07-30 04:57:42 +05:30
|
|
|
|
2001-09-23 19:58:15 +05:30
|
|
|
if gzip_ok:
|
|
|
|
use_gzip = 1
|
|
|
|
try:
|
|
|
|
f = gzip.open(filename,"r")
|
|
|
|
f.read(1)
|
|
|
|
f.close()
|
|
|
|
except IOError,msg:
|
|
|
|
use_gzip = 0
|
|
|
|
f.close()
|
|
|
|
else:
|
2001-07-30 04:57:42 +05:30
|
|
|
use_gzip = 0
|
|
|
|
|
2001-06-17 00:33:54 +05:30
|
|
|
try:
|
2001-07-30 04:57:42 +05:30
|
|
|
if use_gzip:
|
|
|
|
xml_file = gzip.open(filename,"rb")
|
|
|
|
else:
|
|
|
|
xml_file = open(filename,"r")
|
2001-06-17 00:33:54 +05:30
|
|
|
except IOError,msg:
|
|
|
|
GnomeErrorDialog(_("%s could not be opened\n") % filename + str(msg))
|
|
|
|
return 0
|
|
|
|
except:
|
|
|
|
GnomeErrorDialog(_("%s could not be opened\n") % filename)
|
|
|
|
return 0
|
2001-05-18 04:38:27 +05:30
|
|
|
|
2001-06-17 00:33:54 +05:30
|
|
|
try:
|
2001-06-28 20:54:51 +05:30
|
|
|
parser.parse(xml_file)
|
|
|
|
except SAXParseException:
|
2001-06-17 00:33:54 +05:30
|
|
|
GnomeErrorDialog(_("%s is a corrupt file") % filename)
|
|
|
|
import traceback
|
|
|
|
traceback.print_exc()
|
|
|
|
return 0
|
|
|
|
except IOError,msg:
|
|
|
|
GnomeErrorDialog(_("Error reading %s") % filename + "\n" + str(msg))
|
|
|
|
import traceback
|
|
|
|
traceback.print_exc()
|
|
|
|
return 0
|
|
|
|
except:
|
|
|
|
GnomeErrorDialog(_("Error reading %s") % filename)
|
|
|
|
import traceback
|
|
|
|
traceback.print_exc()
|
|
|
|
return 0
|
|
|
|
|
2001-05-13 07:26:57 +05:30
|
|
|
xml_file.close()
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Initialization function for the module. Called to start the reading
|
|
|
|
# of data.
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-08-24 03:43:56 +05:30
|
|
|
def loadData(database, filename, callback=None):
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
basefile = os.path.dirname(filename)
|
|
|
|
database.smap = {}
|
|
|
|
database.pmap = {}
|
|
|
|
database.fmap = {}
|
|
|
|
|
|
|
|
filename = os.path.normpath(filename)
|
|
|
|
|
2001-06-28 20:54:51 +05:30
|
|
|
parser = make_parser()
|
|
|
|
parser.setContentHandler(GrampsParser(database,callback,basefile))
|
2001-05-18 04:38:27 +05:30
|
|
|
|
2001-09-23 19:58:15 +05:30
|
|
|
if gzip_ok:
|
|
|
|
use_gzip = 1
|
|
|
|
try:
|
|
|
|
f = gzip.open(filename,"r")
|
|
|
|
f.read(1)
|
|
|
|
f.close()
|
|
|
|
except IOError,msg:
|
|
|
|
use_gzip = 0
|
|
|
|
f.close()
|
|
|
|
else:
|
2001-07-30 04:57:42 +05:30
|
|
|
use_gzip = 0
|
|
|
|
|
2001-05-13 07:26:57 +05:30
|
|
|
try:
|
2001-07-30 04:57:42 +05:30
|
|
|
if use_gzip:
|
|
|
|
xml_file = gzip.open(filename,"rb")
|
|
|
|
else:
|
|
|
|
xml_file = open(filename,"r")
|
2001-05-13 07:26:57 +05:30
|
|
|
except IOError,msg:
|
2001-08-24 03:43:56 +05:30
|
|
|
filemsg = _("%s could not be opened\n") % filename
|
|
|
|
GnomeErrorDialog(filemsg + str(msg))
|
2001-05-13 07:26:57 +05:30
|
|
|
return 0
|
|
|
|
except:
|
2001-05-23 04:00:13 +05:30
|
|
|
GnomeErrorDialog(_("%s could not be opened\n") % filename)
|
2001-05-13 07:26:57 +05:30
|
|
|
return 0
|
2001-10-09 23:26:26 +05:30
|
|
|
|
2001-05-13 07:26:57 +05:30
|
|
|
try:
|
2001-06-28 20:54:51 +05:30
|
|
|
parser.parse(xml_file)
|
2001-08-22 18:37:53 +05:30
|
|
|
except SAXParseException,msg:
|
|
|
|
line = string.split(str(msg),':')
|
|
|
|
filemsg = _("%s is a corrupt file.") % filename
|
|
|
|
errtype = string.strip(line[3])
|
|
|
|
errmsg = _('A "%s" error on line %s was detected.') % (errtype,line[1])
|
|
|
|
GnomeErrorDialog("%s\n%s" % (filemsg,errmsg))
|
2001-05-13 07:26:57 +05:30
|
|
|
return 0
|
|
|
|
except IOError,msg:
|
2001-09-01 22:43:15 +05:30
|
|
|
errmsg = "%s\n%s" % (_("Error reading %s") % filename,str(msg))
|
2001-08-24 03:43:56 +05:30
|
|
|
GnomeErrorDialog(errmsg)
|
2001-05-24 03:48:12 +05:30
|
|
|
import traceback
|
|
|
|
traceback.print_exc()
|
2001-05-13 07:26:57 +05:30
|
|
|
return 0
|
|
|
|
except:
|
2001-05-23 04:00:13 +05:30
|
|
|
GnomeErrorDialog(_("Error reading %s") % filename)
|
2001-05-24 03:48:12 +05:30
|
|
|
import traceback
|
|
|
|
traceback.print_exc()
|
2001-05-13 07:26:57 +05:30
|
|
|
return 0
|
2001-05-18 04:38:27 +05:30
|
|
|
|
2001-05-13 07:26:57 +05:30
|
|
|
xml_file.close()
|
|
|
|
return 1
|
2001-08-24 03:43:56 +05:30
|
|
|
|
2001-10-04 09:52:41 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Initialization function for the module. Called to start the reading
|
|
|
|
# of data.
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
def loadRevision(database, file, filename, revision, callback=None):
|
|
|
|
|
|
|
|
basefile = os.path.dirname(filename)
|
|
|
|
database.smap = {}
|
|
|
|
database.pmap = {}
|
|
|
|
database.fmap = {}
|
|
|
|
|
|
|
|
parser = make_parser()
|
|
|
|
parser.setContentHandler(GrampsParser(database,callback,basefile))
|
|
|
|
|
|
|
|
filename = _("%s (revision %s)") % (filename,revision)
|
|
|
|
|
|
|
|
try:
|
|
|
|
parser.parse(file)
|
|
|
|
except SAXParseException,msg:
|
|
|
|
line = string.split(str(msg),':')
|
|
|
|
filemsg = _("%s is a corrupt file.") % filename
|
|
|
|
errtype = string.strip(line[3])
|
|
|
|
errmsg = _('A "%s" error on line %s was detected.') % (errtype,line[1])
|
|
|
|
GnomeErrorDialog("%s\n%s" % (filemsg,errmsg))
|
|
|
|
return 0
|
|
|
|
except IOError,msg:
|
|
|
|
errmsg = "%s\n%s" % (_("Error reading %s") % filename, str(msg))
|
|
|
|
GnomeErrorDialog(errmsg)
|
|
|
|
import traceback
|
|
|
|
traceback.print_exc()
|
|
|
|
return 0
|
|
|
|
except:
|
|
|
|
GnomeErrorDialog(_("Error reading %s") % filename)
|
|
|
|
import traceback
|
|
|
|
traceback.print_exc()
|
|
|
|
return 0
|
|
|
|
|
|
|
|
file.close()
|
|
|
|
return 1
|
|
|
|
|
2001-08-24 03:43:56 +05:30
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import profile
|
2001-10-01 18:22:35 +05:30
|
|
|
import cPickle
|
2001-08-24 03:43:56 +05:30
|
|
|
|
|
|
|
database = RelDataBase()
|
|
|
|
t1 = time.time()
|
2001-10-01 18:22:35 +05:30
|
|
|
#profile.run('loadData(database, sys.argv[1])')
|
|
|
|
loadData(database,sys.argv[1])
|
2001-08-24 03:43:56 +05:30
|
|
|
t2 = time.time()
|
|
|
|
print t2-t1
|
2001-10-01 18:22:35 +05:30
|
|
|
f = gzip.open("autosave","w")
|
|
|
|
p = cPickle.dump(database,f)
|
|
|
|
f.close()
|
|
|
|
t3 = time.time()
|
|
|
|
print t3-t2
|