9ce580c501
* src/RelLib.py: remove debugging statement * src/gramps_main.py: If an invalid ID is found while attempting to access the history, invalidate the history list (set to empty list). This should only happen after a reordering of IDs. svn: r2282
1068 lines
36 KiB
Python
1068 lines
36 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2000-2003 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
|
|
#
|
|
|
|
import const
|
|
import RelLib
|
|
import Date
|
|
|
|
import string
|
|
import Calendar
|
|
import Utils
|
|
import xml.parsers.expat
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Remove extraneous spaces
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
def rs(text):
|
|
return string.join(string.split(text))
|
|
|
|
def fix_spaces(text_list):
|
|
return string.join(map(rs,text_list),'\n')
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Gramps database parsing class. Derived from SAX XML parser
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class GrampsParser:
|
|
|
|
def __init__(self,database,callback,base):
|
|
self.stext_list = []
|
|
self.scomments_list = []
|
|
self.note_list = []
|
|
self.tlist = []
|
|
self.conf = 2
|
|
|
|
self.ord = None
|
|
self.objref = None
|
|
self.object = None
|
|
self.pref = None
|
|
self.use_p = 0
|
|
self.in_note = 0
|
|
self.in_stext = 0
|
|
self.in_scomments = 0
|
|
self.in_witness = 0
|
|
self.db = database
|
|
self.base = base
|
|
self.photo = None
|
|
self.person = None
|
|
self.family = None
|
|
self.address = None
|
|
self.source = None
|
|
self.source_ref = None
|
|
self.attribute = None
|
|
self.placeobj = None
|
|
self.locations = 0
|
|
self.place_map = {}
|
|
|
|
self.resname = ""
|
|
self.resaddr = ""
|
|
self.rescity = ""
|
|
self.resstate = ""
|
|
self.rescon = ""
|
|
self.respos = ""
|
|
self.resphone = ""
|
|
self.resemail = ""
|
|
|
|
self.pmap = {}
|
|
self.fmap = {}
|
|
self.smap = {}
|
|
self.lmap = {}
|
|
self.MediaFileMap = {}
|
|
|
|
self.callback = callback
|
|
self.entries = 0
|
|
self.count = 0
|
|
self.increment = 100
|
|
self.event = None
|
|
self.name = None
|
|
self.tempDefault = None
|
|
self.owner = RelLib.Researcher()
|
|
self.func_list = [None]*50
|
|
self.func_index = 0
|
|
self.func = None
|
|
self.witness_comment = ""
|
|
|
|
self.func_map = {
|
|
"address" : (self.start_address, self.stop_address),
|
|
"addresses" : (None,None),
|
|
"childlist" : (None,None),
|
|
"aka" : (self.start_name, self.stop_aka),
|
|
"attribute" : (self.start_attribute, self.stop_attribute),
|
|
"attr_type" : (None,self.stop_attr_type),
|
|
"attr_value" : (None,self.stop_attr_value),
|
|
"bookmark" : (self.start_bmark, None),
|
|
"witness" : (self.start_witness,self.stop_witness),
|
|
"bookmarks" : (None, None),
|
|
"child" : (self.start_child,None),
|
|
"childof" : (self.start_childof,None),
|
|
"city" : (None, self.stop_city),
|
|
"country" : (None, self.stop_country),
|
|
"comment" : (None, self.stop_comment),
|
|
"created" : (self.start_created, None),
|
|
"ref" : (None, self.stop_ref),
|
|
"database" : (None, None),
|
|
"date" : (None, self.stop_date),
|
|
"cause" : (None, self.stop_cause),
|
|
"description": (None, self.stop_description),
|
|
"event" : (self.start_event, self.stop_event),
|
|
"families" : (None, self.stop_families),
|
|
"family" : (self.start_family, None),
|
|
"father" : (self.start_father, None),
|
|
"first" : (None, self.stop_first),
|
|
"gender" : (None, self.stop_gender),
|
|
"header" : (None, None),
|
|
"last" : (self.start_last, self.stop_last),
|
|
"mother" : (self.start_mother,None),
|
|
"name" : (self.start_name, self.stop_name),
|
|
"nick" : (None, self.stop_nick),
|
|
"note" : (self.start_note, self.stop_note),
|
|
"p" : (None, self.stop_ptag),
|
|
"parentin" : (self.start_parentin,None),
|
|
"people" : (self.start_people, self.stop_people),
|
|
"person" : (self.start_person, self.stop_person),
|
|
"img" : (self.start_photo, self.stop_photo),
|
|
"objref" : (self.start_objref, self.stop_objref),
|
|
"object" : (self.start_object, self.stop_object),
|
|
"place" : (self.start_place, self.stop_place),
|
|
"dateval" : (self.start_dateval, None),
|
|
"daterange" : (self.start_daterange, None),
|
|
"datestr" : (self.start_datestr, None),
|
|
"places" : (None, self.stop_places),
|
|
"placeobj" : (self.start_placeobj,self.stop_placeobj),
|
|
"location" : (self.start_location,None),
|
|
"lds_ord" : (self.start_lds_ord, self.stop_lds_ord),
|
|
"temple" : (self.start_temple, None),
|
|
"status" : (self.start_status, None),
|
|
"sealed_to" : (self.start_sealed_to, None),
|
|
"coord" : (self.start_coord,None),
|
|
"pos" : (self.start_pos, None),
|
|
"postal" : (None, self.stop_postal),
|
|
"researcher" : (None, self.stop_research),
|
|
"resname" : (None, self.stop_resname ),
|
|
"resaddr" : (None, self.stop_resaddr ),
|
|
"rescity" : (None, self.stop_rescity ),
|
|
"resstate" : (None, self.stop_resstate ),
|
|
"rescountry" : (None, self.stop_rescountry),
|
|
"respostal" : (None, self.stop_respostal),
|
|
"resphone" : (None, self.stop_resphone),
|
|
"resemail" : (None, self.stop_resemail),
|
|
"sauthor" : (None, self.stop_sauthor),
|
|
"scallno" : (None, self.stop_scallno),
|
|
"scomments" : (None, self.stop_scomments),
|
|
"sdate" : (None,self.stop_sdate),
|
|
"source" : (self.start_source, self.stop_source),
|
|
"sourceref" : (self.start_sourceref, self.stop_sourceref),
|
|
"sources" : (None, None),
|
|
"spage" : (None, self.stop_spage),
|
|
"spubinfo" : (None, self.stop_spubinfo),
|
|
"state" : (None, self.stop_state),
|
|
"stext" : (None, self.stop_stext),
|
|
"stitle" : (None, self.stop_stitle),
|
|
"street" : (None, self.stop_street),
|
|
"suffix" : (None, self.stop_suffix),
|
|
"title" : (None, self.stop_title),
|
|
"uid" : (None, self.stop_uid),
|
|
"url" : (self.start_url, None)
|
|
}
|
|
|
|
|
|
def parse(self,file):
|
|
p = xml.parsers.expat.ParserCreate()
|
|
p.StartElementHandler = self.startElement
|
|
p.EndElementHandler = self.endElement
|
|
p.CharacterDataHandler = self.characters
|
|
p.ParseFile(file)
|
|
|
|
self.db.setResearcher(self.owner)
|
|
if self.tempDefault != None:
|
|
id = self.tempDefault
|
|
if self.db.personMap.has_key(id) and self.db.getDefaultPerson() == None:
|
|
person = self.db.personMap[id]
|
|
self.db.setDefaultPerson(person)
|
|
|
|
for key in self.func_map.keys():
|
|
del self.func_map[key]
|
|
del self.func_map
|
|
del self.func_list
|
|
del p
|
|
|
|
def start_lds_ord(self,attrs):
|
|
type = attrs['type']
|
|
self.ord = RelLib.LdsOrd()
|
|
if self.person:
|
|
if type == "baptism":
|
|
self.person.setLdsBaptism(self.ord)
|
|
elif type == "endowment":
|
|
self.person.setLdsEndowment(self.ord)
|
|
elif type == "sealed_to_parents":
|
|
self.person.setLdsSeal(self.ord)
|
|
elif self.family:
|
|
if type == "sealed_to_spouse":
|
|
self.family.setLdsSeal(self.ord)
|
|
|
|
def start_temple(self,attrs):
|
|
self.ord.setTemple(attrs['val'])
|
|
|
|
def start_status(self,attrs):
|
|
self.ord.setStatus(int(attrs['val']))
|
|
|
|
def start_sealed_to(self,attrs):
|
|
id = attrs['ref']
|
|
self.ord.setFamily(self.db.findFamilyNoMap(id))
|
|
|
|
def start_place(self,attrs):
|
|
if attrs.has_key('ref'):
|
|
self.placeobj = self.db.findPlaceNoMap(attrs['ref'])
|
|
else:
|
|
self.placeobj = None
|
|
|
|
def start_placeobj(self,attrs):
|
|
self.placeobj = self.db.findPlaceNoMap(attrs['id'])
|
|
title = attrs['title']
|
|
if title == "":
|
|
title = attrs['id']
|
|
self.placeobj.set_title(title)
|
|
self.locations = 0
|
|
if self.num_places > 0:
|
|
if self.callback != None and self.count % self.increment == 0:
|
|
self.callback(float(self.count)/float(self.entries))
|
|
self.count = self.count + 1
|
|
|
|
def start_location(self,attrs):
|
|
"""Bypass the function calls for this one, since it appears to
|
|
take up quite a bit of time"""
|
|
|
|
loc = RelLib.Location()
|
|
if attrs.has_key('city'):
|
|
loc.city = attrs['city']
|
|
if attrs.has_key('parish'):
|
|
loc.parish = attrs['parish']
|
|
if attrs.has_key('state'):
|
|
loc.state = attrs['state']
|
|
if attrs.has_key('county'):
|
|
loc.county =attrs['county']
|
|
if attrs.has_key('country'):
|
|
loc.country = attrs['country']
|
|
if self.locations > 0:
|
|
self.placeobj.add_alternate_locations(loc)
|
|
else:
|
|
self.placeobj.set_main_location(loc)
|
|
self.locations = self.locations + 1
|
|
|
|
def start_witness(self,attrs):
|
|
self.in_witness = 1
|
|
if attrs.has_key('ref'):
|
|
self.witness = RelLib.Witness(RelLib.Event.ID,attrs['ref'])
|
|
if attrs.has_key('name'):
|
|
self.witness = RelLib.Witness(RelLib.Event.NAME,attrs['name'])
|
|
|
|
def start_coord(self,attrs):
|
|
if attrs.has_key('lat'):
|
|
self.placeobj.set_latitude(attrs['lat'])
|
|
if attrs.has_key('long'):
|
|
self.placeobj.set_longitude(attrs['long'])
|
|
|
|
def start_event(self,attrs):
|
|
self.event = RelLib.Event()
|
|
self.event_type = const.save_event(attrs["type"])
|
|
if attrs.has_key("conf"):
|
|
self.event.conf = int(attrs["conf"])
|
|
else:
|
|
self.event.conf = 2
|
|
if attrs.has_key("priv"):
|
|
self.event.private = int(attrs["priv"])
|
|
|
|
def start_attribute(self,attrs):
|
|
self.attribute = RelLib.Attribute()
|
|
if attrs.has_key("conf"):
|
|
self.attribute.conf = int(attrs["conf"])
|
|
else:
|
|
self.attribute.conf = 2
|
|
if attrs.has_key("priv"):
|
|
self.attribute.private = int(attrs["priv"])
|
|
if attrs.has_key('type'):
|
|
self.attribute.setType(const.save_attr(attrs["type"]))
|
|
if attrs.has_key('value'):
|
|
self.attribute.setValue(attrs["value"])
|
|
if self.photo:
|
|
self.photo.addAttribute(self.attribute)
|
|
elif self.object:
|
|
self.object.addAttribute(self.attribute)
|
|
elif self.objref:
|
|
self.objref.addAttribute(self.attribute)
|
|
elif self.person:
|
|
self.person.addAttribute(self.attribute)
|
|
elif self.family:
|
|
self.family.addAttribute(self.attribute)
|
|
|
|
def start_address(self,attrs):
|
|
self.address = RelLib.Address()
|
|
self.person.addAddress(self.address)
|
|
if attrs.has_key("conf"):
|
|
self.address.conf = int(attrs["conf"])
|
|
else:
|
|
self.address.conf = 2
|
|
if attrs.has_key("priv"):
|
|
self.address.private = int(attrs["priv"])
|
|
|
|
def start_bmark(self,attrs):
|
|
person = self.db.findPersonNoMap(attrs["ref"])
|
|
self.db.bookmarks.append(person)
|
|
|
|
def start_person(self,attrs):
|
|
if self.callback != None and self.count % self.increment == 0:
|
|
self.callback(float(self.count)/float(self.entries))
|
|
self.count = self.count + 1
|
|
self.person = self.db.findPersonNoMap(attrs["id"])
|
|
|
|
def start_people(self,attrs):
|
|
if attrs.has_key("default"):
|
|
self.tempDefault = attrs["default"]
|
|
|
|
def start_father(self,attrs):
|
|
self.family.Father = self.db.findPersonNoMap(attrs["ref"])
|
|
|
|
def start_mother(self,attrs):
|
|
self.family.Mother = self.db.findPersonNoMap(attrs["ref"])
|
|
|
|
def start_child(self,attrs):
|
|
self.family.Children.append(self.db.findPersonNoMap(attrs["ref"]))
|
|
|
|
def start_url(self,attrs):
|
|
|
|
if not attrs.has_key("href"):
|
|
return
|
|
try:
|
|
desc = attrs["description"]
|
|
except KeyError:
|
|
desc = ""
|
|
|
|
try:
|
|
url = RelLib.Url()
|
|
url.set_path(attrs["href"])
|
|
url.set_description(desc)
|
|
if attrs.has_key("priv"):
|
|
url.setPrivacy(int(attrs['priv']))
|
|
if self.person:
|
|
self.person.addUrl(url)
|
|
elif self.placeobj:
|
|
self.placeobj.addUrl(url)
|
|
except KeyError:
|
|
return
|
|
|
|
def start_family(self,attrs):
|
|
if self.callback != None and self.count % self.increment == 0:
|
|
self.callback(float(self.count)/float(self.entries))
|
|
self.count = self.count + 1
|
|
self.family = self.db.findFamilyNoMap(attrs["id"])
|
|
if attrs.has_key("type"):
|
|
self.family.setRelationship(const.save_frel(attrs["type"]))
|
|
else:
|
|
self.family.setRelationship("")
|
|
|
|
def start_childof(self,attrs):
|
|
family = self.db.findFamilyNoMap(attrs["ref"])
|
|
if attrs.has_key("mrel"):
|
|
mrel = attrs["mrel"]
|
|
else:
|
|
mrel = "Birth"
|
|
if attrs.has_key("frel"):
|
|
frel = attrs["frel"]
|
|
else:
|
|
frel = "Birth"
|
|
self.person.AltFamilyList.append((family,mrel,frel))
|
|
|
|
def start_parentin(self,attrs):
|
|
self.person.FamilyList.append(self.db.findFamilyNoMap(attrs["ref"]))
|
|
|
|
def start_name(self,attrs):
|
|
if not self.in_witness:
|
|
self.name = RelLib.Name()
|
|
if attrs.has_key("type"):
|
|
self.name.setType(attrs["type"])
|
|
if attrs.has_key("conf"):
|
|
self.name.conf = int(attrs["conf"])
|
|
else:
|
|
self.name.conf = 2
|
|
if attrs.has_key("priv"):
|
|
self.name.private = int(attrs["priv"])
|
|
|
|
def start_last(self,attrs):
|
|
if attrs.has_key('prefix'):
|
|
self.name.Prefix = attrs['prefix']
|
|
|
|
def start_note(self,attrs):
|
|
self.in_note = 1
|
|
|
|
def start_sourceref(self,attrs):
|
|
self.source_ref = RelLib.SourceRef()
|
|
source = self.db.findSourceNoMap(attrs["ref"])
|
|
if attrs.has_key("conf"):
|
|
self.source_ref.confidence = int(attrs["conf"])
|
|
else:
|
|
self.source_ref.confidence = self.conf
|
|
self.source_ref.setBase(source)
|
|
if self.photo:
|
|
self.photo.addSourceRef(self.source_ref)
|
|
elif self.ord:
|
|
self.ord.addSourceRef(self.source_ref)
|
|
elif self.object:
|
|
self.object.addSourceRef(self.source_ref)
|
|
elif self.event:
|
|
self.event.addSourceRef(self.source_ref)
|
|
elif self.address:
|
|
self.address.addSourceRef(self.source_ref)
|
|
elif self.name:
|
|
self.name.addSourceRef(self.source_ref)
|
|
elif self.attribute:
|
|
self.attribute.addSourceRef(self.source_ref)
|
|
elif self.placeobj:
|
|
self.placeobj.addSourceRef(self.source_ref)
|
|
|
|
def start_source(self,attrs):
|
|
if self.num_srcs > 0:
|
|
if self.callback != None and self.count % self.increment == 0:
|
|
self.callback(float(self.count)/float(self.entries))
|
|
self.count = self.count + 1
|
|
self.source = self.db.findSourceNoMap(attrs["id"])
|
|
|
|
def start_objref(self,attrs):
|
|
self.objref = RelLib.ObjectRef()
|
|
self.objref.setReference(self.db.findObjectNoMap(attrs['ref']))
|
|
if attrs.has_key('priv'):
|
|
self.objref.setPrivacy(int(attrs['priv']))
|
|
if self.family:
|
|
self.family.addPhoto(self.objref)
|
|
elif self.source:
|
|
self.source.addPhoto(self.objref)
|
|
elif self.person:
|
|
self.person.addPhoto(self.objref)
|
|
elif self.placeobj:
|
|
self.placeobj.addPhoto(self.objref)
|
|
|
|
def start_object(self,attrs):
|
|
self.object = self.db.findObjectNoMap(attrs['id'])
|
|
self.object.setMimeType(attrs['mime'])
|
|
self.object.setDescription(attrs['description'])
|
|
src = attrs["src"]
|
|
if src:
|
|
if src[0] != '/':
|
|
self.object.setPath("%s/%s" % (self.base,src))
|
|
self.object.setLocal(1)
|
|
else:
|
|
self.object.setPath(src)
|
|
self.object.setLocal(0)
|
|
|
|
def stop_object(self,tag):
|
|
self.object = None
|
|
|
|
def stop_objref(self,tag):
|
|
self.objref = None
|
|
|
|
def start_photo(self,attrs):
|
|
self.photo = RelLib.Photo()
|
|
self.pref = RelLib.ObjectRef()
|
|
self.pref.setReference(self.photo)
|
|
|
|
for key in attrs.keys():
|
|
if key == "descrip" or key == "description":
|
|
self.photo.setDescription(attrs[key])
|
|
elif key == "priv":
|
|
self.pref.setPrivacy(int(attrs[key]))
|
|
elif key == "src":
|
|
src = attrs["src"]
|
|
if src[0] != '/':
|
|
self.photo.setPath("%s/%s" % (self.base,src))
|
|
self.photo.setLocal(1)
|
|
else:
|
|
self.photo.setPath(src)
|
|
self.photo.setLocal(0)
|
|
else:
|
|
a = RelLib.Attribute()
|
|
a.setType(key)
|
|
a.setValue(attrs[key])
|
|
self.photo.addAttribute(a)
|
|
self.photo.setMimeType(Utils.get_mime_type(self.photo.getPath()))
|
|
self.db.addObject(self.photo)
|
|
if self.family:
|
|
self.family.addPhoto(self.pref)
|
|
elif self.source:
|
|
self.source.addPhoto(self.pref)
|
|
elif self.person:
|
|
self.person.addPhoto(self.pref)
|
|
elif self.placeobj:
|
|
self.placeobj.addPhoto(self.pref)
|
|
|
|
def start_daterange(self,attrs):
|
|
if self.source_ref:
|
|
d = self.source_ref.getDate()
|
|
elif self.ord:
|
|
d = self.ord.getDateObj()
|
|
elif self.address:
|
|
d = self.address.getDateObj()
|
|
else:
|
|
d = self.event.getDateObj()
|
|
|
|
if attrs.has_key("calendar"):
|
|
d.set_calendar_val(int(attrs['calendar']))
|
|
|
|
if attrs.has_key("cformat"):
|
|
d.set_calendar(Calendar.find_calendar(attrs['calendar']))
|
|
|
|
d.get_start_date().setIsoDate(attrs['start'])
|
|
d.get_stop_date().setIsoDate(attrs['stop'])
|
|
d.range = 1
|
|
|
|
def start_dateval(self,attrs):
|
|
if self.source_ref:
|
|
d = self.source_ref.getDate()
|
|
elif self.ord:
|
|
d = self.ord.getDateObj()
|
|
elif self.address:
|
|
d = self.address.getDateObj()
|
|
else:
|
|
d = self.event.getDateObj()
|
|
|
|
if attrs.has_key("calendar"):
|
|
d.set_calendar_val(int(attrs['calendar']))
|
|
|
|
if attrs.has_key("cformat"):
|
|
d.set_calendar(Calendar.find_calendar(attrs['cformat']))
|
|
|
|
d.get_start_date().setIsoDate(attrs['val'])
|
|
|
|
if attrs.has_key("type"):
|
|
d.get_start_date().setMode(attrs['type'])
|
|
else:
|
|
d.get_start_date().setMode(None)
|
|
|
|
def start_datestr(self,attrs):
|
|
if self.source_ref:
|
|
d = self.source_ref.getDate()
|
|
elif self.ord:
|
|
d = self.ord.getDateObj()
|
|
elif self.address:
|
|
d = self.address.getDateObj()
|
|
else:
|
|
d = self.event.getDateObj()
|
|
|
|
d.set(attrs['val'])
|
|
|
|
def start_created(self,attrs):
|
|
if attrs.has_key('sources'):
|
|
self.num_srcs = int(attrs['sources'])
|
|
else:
|
|
self.num_srcs = 0
|
|
if attrs.has_key('places'):
|
|
self.num_places = int(attrs['places'])
|
|
else:
|
|
self.num_places = 0
|
|
self.entries = int(attrs["people"]) + int(attrs["families"]) + \
|
|
self.num_places + self.num_srcs
|
|
|
|
def start_pos(self,attrs):
|
|
self.person.position = (int(attrs["x"]), int(attrs["y"]))
|
|
|
|
def stop_attribute(self,tag):
|
|
self.attribute = None
|
|
|
|
def stop_comment(self,tag):
|
|
if tag.strip():
|
|
self.witness_comment = tag
|
|
else:
|
|
self.witness_comment = ""
|
|
|
|
def stop_witness(self,tag):
|
|
if self.witness_comment:
|
|
self.witness.set_comment(self.witness_comment)
|
|
elif tag.strip():
|
|
self.witness.set_comment(tag)
|
|
else:
|
|
self.witness.set_comment("")
|
|
self.event.add_witness(self.witness)
|
|
self.in_witness = 0
|
|
|
|
def stop_attr_type(self,tag):
|
|
self.attribute.setType(tag)
|
|
|
|
def stop_attr_value(self,tag):
|
|
self.attribute.setValue(tag)
|
|
|
|
def stop_address(self,tag):
|
|
self.address = None
|
|
|
|
def stop_places(self,tag):
|
|
self.placeobj = None
|
|
|
|
def stop_photo(self,tag):
|
|
self.photo = None
|
|
|
|
def stop_placeobj(self,tag):
|
|
if self.placeobj.get_title() == "":
|
|
loc = self.placeobj.get_main_location()
|
|
self.placeobj.set_title(build_place_title(loc))
|
|
self.db.buildPlaceDisplay(self.placeobj.getId())
|
|
self.palceobj = None
|
|
|
|
def stop_event(self,tag):
|
|
self.event.name = self.event_type
|
|
|
|
if self.family:
|
|
self.family.EventList.append(self.event)
|
|
else:
|
|
if self.event_type == "Birth":
|
|
self.person.setBirth(self.event)
|
|
elif self.event_type == "Death":
|
|
self.person.setDeath(self.event)
|
|
else:
|
|
self.person.EventList.append(self.event)
|
|
self.event = None
|
|
|
|
def stop_name(self,tag):
|
|
if self.in_witness:
|
|
self.witness = RelLib.Witness(RelLib.Event.NAME,tag)
|
|
else:
|
|
if self.name.getType() == "":
|
|
self.name.setType("Birth Name")
|
|
self.person.setPrimaryName (self.name)
|
|
self.name = None
|
|
|
|
def stop_ref(self,tag):
|
|
self.witness = RelLib.Witness(RelLib.Event.ID,tag)
|
|
|
|
def stop_place(self,tag):
|
|
if self.placeobj == None:
|
|
if self.place_map.has_key(tag):
|
|
self.placeobj = self.place_map[tag]
|
|
else:
|
|
self.placeobj = RelLib.Place()
|
|
self.placeobj.set_title(tag)
|
|
self.db.addPlace(self.placeobj)
|
|
self.place_map[tag] = self.placeobj
|
|
if self.ord:
|
|
self.ord.setPlace(self.placeobj)
|
|
else:
|
|
self.event.place = self.placeobj
|
|
|
|
def stop_uid(self,tag):
|
|
self.person.setPafUid(tag)
|
|
|
|
def stop_date(self,tag):
|
|
if tag:
|
|
if self.address:
|
|
self.address.setDate(tag)
|
|
else:
|
|
self.event.setDate(tag)
|
|
|
|
def stop_first(self,tag):
|
|
self.name.FirstName = tag
|
|
|
|
def stop_families(self,tag):
|
|
self.family = None
|
|
|
|
def stop_people(self,tag):
|
|
self.person = None
|
|
|
|
def stop_person(self,tag):
|
|
self.db.buildPersonDisplay(self.person.getId())
|
|
|
|
def stop_description(self,tag):
|
|
self.event.setDescription(tag)
|
|
|
|
def stop_cause(self,tag):
|
|
self.event.setCause(tag)
|
|
|
|
def stop_gender(self,tag):
|
|
t = tag
|
|
if t == "M":
|
|
self.person.setGender (RelLib.Person.male)
|
|
elif t == "F":
|
|
self.person.setGender (RelLib.Person.female)
|
|
else:
|
|
self.person.setGender (RelLib.Person.unknown)
|
|
|
|
def stop_stitle(self,tag):
|
|
self.source.setTitle(tag)
|
|
|
|
def stop_sourceref(self,tag):
|
|
self.source_ref = None
|
|
|
|
def stop_source(self,tag):
|
|
self.db.buildSourceDisplay(self.source.getId())
|
|
self.source = None
|
|
|
|
def stop_sauthor(self,tag):
|
|
self.source.setAuthor(tag)
|
|
|
|
def stop_sdate(self,tag):
|
|
date = Date.Date()
|
|
date.set(tag)
|
|
self.source_ref.setDate(date)
|
|
|
|
def stop_street(self,tag):
|
|
self.address.setStreet(tag)
|
|
|
|
def stop_city(self,tag):
|
|
self.address.setCity(tag)
|
|
|
|
def stop_state(self,tag):
|
|
self.address.setState(tag)
|
|
|
|
def stop_country(self,tag):
|
|
self.address.setCountry(tag)
|
|
|
|
def stop_postal(self,tag):
|
|
self.address.setPostal(tag)
|
|
|
|
def stop_spage(self,tag):
|
|
self.source_ref.setPage(tag)
|
|
|
|
def stop_lds_ord(self,tag):
|
|
self.ord = None
|
|
|
|
def stop_spubinfo(self,tag):
|
|
self.source.setPubInfo(tag)
|
|
|
|
def stop_scallno(self,tag):
|
|
self.source.setCallNumber(tag)
|
|
|
|
def stop_stext(self,tag):
|
|
if self.use_p:
|
|
self.use_p = 0
|
|
note = fix_spaces(self.stext_list)
|
|
else:
|
|
note = tag
|
|
self.source_ref.setText(note)
|
|
|
|
def stop_scomments(self,tag):
|
|
if self.use_p:
|
|
self.use_p = 0
|
|
note = fix_spaces(self.scomments_list)
|
|
else:
|
|
note = tag
|
|
self.source_ref.setComments(note)
|
|
|
|
def stop_last(self,tag):
|
|
if self.name:
|
|
self.name.Surname = tag
|
|
|
|
def stop_suffix(self,tag):
|
|
if self.name:
|
|
self.name.Suffix = tag
|
|
|
|
def stop_title(self,tag):
|
|
if self.name:
|
|
self.name.Title = tag
|
|
|
|
def stop_nick(self,tag):
|
|
if self.person:
|
|
self.person.setNickName(tag)
|
|
|
|
def stop_note(self,tag):
|
|
self.in_note = 0
|
|
if self.use_p:
|
|
self.use_p = 0
|
|
note = fix_spaces(self.note_list)
|
|
else:
|
|
note = tag
|
|
|
|
if self.address:
|
|
self.address.setNote(note)
|
|
elif self.ord:
|
|
self.ord.setNote(note)
|
|
elif self.attribute:
|
|
self.attribute.setNote(note)
|
|
elif self.object:
|
|
self.object.setNote(note)
|
|
elif self.objref:
|
|
self.objref.setNote(note)
|
|
elif self.photo:
|
|
self.photo.setNote(note)
|
|
elif self.name:
|
|
self.name.setNote(note)
|
|
elif self.source:
|
|
self.source.setNote(note)
|
|
elif self.event:
|
|
self.event.setNote(note)
|
|
elif self.person:
|
|
self.person.setNote(note)
|
|
elif self.family:
|
|
self.family.setNote(note)
|
|
elif self.placeobj:
|
|
self.placeobj.setNote(note)
|
|
self.note_list = []
|
|
|
|
def stop_research(self,tag):
|
|
self.owner.set(self.resname, self.resaddr, self.rescity, self.resstate,
|
|
self.rescon, self.respos, self.resphone, self.resemail)
|
|
|
|
def stop_resname(self,tag):
|
|
self.resname = tag
|
|
|
|
def stop_resaddr(self,tag):
|
|
self.resaddr = tag
|
|
|
|
def stop_rescity(self,tag):
|
|
self.rescity = tag
|
|
|
|
def stop_resstate(self,tag):
|
|
self.resstate = tag
|
|
|
|
def stop_rescountry(self,tag):
|
|
self.rescon = tag
|
|
|
|
def stop_respostal(self,tag):
|
|
self.respos = tag
|
|
|
|
def stop_resphone(self,tag):
|
|
self.resphone = tag
|
|
|
|
def stop_resemail(self,tag):
|
|
self.resemail = tag
|
|
|
|
def stop_ptag(self,tag):
|
|
self.use_p = 1
|
|
if self.in_note:
|
|
self.note_list.append(tag)
|
|
elif self.in_stext:
|
|
self.stext_list.append(tag)
|
|
elif self.in_scomments:
|
|
self.scomments_list.append(tag)
|
|
|
|
def stop_aka(self,tag):
|
|
self.person.addAlternateName(self.name)
|
|
if self.name.getType() == "":
|
|
self.name.setType("Also Known As")
|
|
self.name = None
|
|
|
|
|
|
def startElement(self,tag,attrs):
|
|
|
|
self.func_list[self.func_index] = (self.func,self.tlist)
|
|
self.func_index = self.func_index + 1
|
|
self.tlist = []
|
|
|
|
try:
|
|
f,self.func = self.func_map[tag]
|
|
if f:
|
|
f(attrs)
|
|
except KeyError:
|
|
self.func_map[tag] = (None,None)
|
|
self.func = None
|
|
|
|
def endElement(self,tag):
|
|
|
|
if self.func:
|
|
self.func(string.join(self.tlist,''))
|
|
self.func_index = self.func_index - 1
|
|
self.func,self.tlist = self.func_list[self.func_index]
|
|
|
|
def characters(self, data):
|
|
if self.func:
|
|
self.tlist.append(data)
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Gramps database parsing class. Derived from SAX XML parser
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class GrampsImportParser(GrampsParser):
|
|
|
|
def __init__(self,database,callback,base):
|
|
GrampsParser.__init__(self,database,callback,base)
|
|
|
|
self.func_map["bookmark"] = (self.start_bmark, None)
|
|
self.func_map["child"] = (self.start_child,None)
|
|
self.func_map["family"] = (self.start_family, None)
|
|
self.func_map["father"] = (self.start_father, None)
|
|
self.func_map["mother"] = (self.start_mother,None)
|
|
self.func_map["people"] = (self.start_people, self.stop_people)
|
|
self.func_map["person"] = (self.start_person, self.stop_person)
|
|
self.func_map["objref"] = (self.start_objref, self.stop_objref)
|
|
self.func_map["object"] = (self.start_object, self.stop_object)
|
|
self.func_map["place"] = (self.start_place, self.stop_place)
|
|
self.func_map["placeobj"] = (self.start_placeobj,self.stop_placeobj)
|
|
self.func_map["source"] = (self.start_source, self.stop_source)
|
|
self.func_map["sourceref"]= (self.start_sourceref, self.stop_sourceref)
|
|
self.func_map["childof"] = (self.start_childof,None)
|
|
self.func_map["parentin"] = (self.start_parentin,None)
|
|
|
|
def start_childof(self,attrs):
|
|
family = self.db.findFamilyNoConflicts(attrs["ref"],self.fmap)
|
|
if attrs.has_key("mrel"):
|
|
mrel = attrs["mrel"]
|
|
else:
|
|
mrel = "Birth"
|
|
if attrs.has_key("frel"):
|
|
frel = attrs["frel"]
|
|
else:
|
|
frel = "Birth"
|
|
self.person.AltFamilyList.append((family,mrel,frel))
|
|
|
|
def start_parentin(self,attrs):
|
|
self.person.FamilyList.append(self.db.findFamilyNoConflicts(attrs["ref"],self.fmap))
|
|
|
|
def start_bmark(self,attrs):
|
|
person = self.db.findPersonNoConflicts(attrs["ref"],self.pmap)
|
|
self.db.bookmarks.append(person)
|
|
|
|
def start_person(self,attrs):
|
|
if self.callback != None and self.count % self.increment == 0:
|
|
self.callback(float(self.count)/float(self.entries))
|
|
self.count = self.count + 1
|
|
self.person = self.db.findPersonNoConflicts(attrs["id"],self.pmap)
|
|
|
|
def start_father(self,attrs):
|
|
self.family.Father = self.db.findPersonNoConflicts(attrs["ref"],self.pmap)
|
|
|
|
def start_mother(self,attrs):
|
|
self.family.Mother = self.db.findPersonNoConflicts(attrs["ref"],self.pmap)
|
|
|
|
def start_child(self,attrs):
|
|
self.family.Children.append(self.db.findPersonNoConflicts(attrs["ref"],self.pmap))
|
|
|
|
def start_family(self,attrs):
|
|
if self.callback != None and self.count % self.increment == 0:
|
|
self.callback(float(self.count)/float(self.entries))
|
|
self.count = self.count + 1
|
|
self.family = self.db.findFamilyNoConflicts(attrs["id"],self.fmap)
|
|
if attrs.has_key("type"):
|
|
self.family.setRelationship(const.save_frel(attrs["type"]))
|
|
|
|
def start_sourceref(self,attrs):
|
|
self.source_ref = RelLib.SourceRef()
|
|
self.source = self.db.findSourceNoConflicts(attrs["ref"],self.smap)
|
|
self.source_ref.setBase(self.source)
|
|
if self.address:
|
|
self.address.addSourceRef(self.source_ref)
|
|
elif self.name:
|
|
self.name.addSourceRef(self.source_ref)
|
|
elif self.event:
|
|
self.event.addSourceRef(self.source_ref)
|
|
elif self.attribute:
|
|
self.attribute.addSourceRef(self.source_ref)
|
|
elif self.placeobj:
|
|
self.placeobj.addSourceRef(self.source_ref)
|
|
else:
|
|
print "Sorry, I'm lost"
|
|
|
|
def start_source(self,attrs):
|
|
self.source = self.db.findSourceNoConflicts(attrs["id"],self.smap)
|
|
|
|
def start_sourceref(self,attrs):
|
|
self.source_ref = RelLib.SourceRef()
|
|
source = self.db.findSourceNoConflicts(attrs["ref"],self.smap)
|
|
if attrs.has_key("conf"):
|
|
self.source_ref.confidence = int(attrs["conf"])
|
|
else:
|
|
self.source_ref.confidence = self.conf
|
|
self.source_ref.setBase(source)
|
|
if self.photo:
|
|
self.photo.addSourceRef(self.source_ref)
|
|
elif self.ord:
|
|
self.ord.addSourceRef(self.source_ref)
|
|
elif self.object:
|
|
self.object.addSourceRef(self.source_ref)
|
|
elif self.event:
|
|
self.event.addSourceRef(self.source_ref)
|
|
elif self.address:
|
|
self.address.addSourceRef(self.source_ref)
|
|
elif self.name:
|
|
self.name.addSourceRef(self.source_ref)
|
|
elif self.attribute:
|
|
self.attribute.addSourceRef(self.source_ref)
|
|
elif self.placeobj:
|
|
self.placeobj.addSourceRef(self.source_ref)
|
|
|
|
def start_place(self,attrs):
|
|
self.placeobj = self.db.findPlaceNoConflicts(attrs['ref'],self.lmap)
|
|
|
|
def start_placeobj(self,attrs):
|
|
self.placeobj = self.db.findPlaceNoConflicts(attrs['id'],self.lmap)
|
|
title = attrs['title']
|
|
if title == "":
|
|
title = attrs['id']
|
|
self.placeobj.set_title(title)
|
|
self.locations = 0
|
|
if self.num_places > 0:
|
|
if self.callback != None and self.count % self.increment == 0:
|
|
self.callback(float(self.count)/float(self.entries))
|
|
self.count = self.count + 1
|
|
|
|
def start_objref(self,attrs):
|
|
self.objref = RelLib.ObjectRef()
|
|
self.objref.setReference(self.db.findObjectNoConflicts(attrs['ref'],self.MediaFileMap))
|
|
if attrs.has_key('priv'):
|
|
self.objref.setPrivacy(int(attrs['priv']))
|
|
if self.family:
|
|
self.family.addPhoto(self.objref)
|
|
elif self.source:
|
|
self.source.addPhoto(self.objref)
|
|
elif self.person:
|
|
self.person.addPhoto(self.objref)
|
|
elif self.placeobj:
|
|
self.placeobj.addPhoto(self.objref)
|
|
|
|
def start_object(self,attrs):
|
|
self.object = self.db.findObjectNoConflicts(attrs['id'],self.MediaFileMap)
|
|
self.object.setMimeType(attrs['mime'])
|
|
self.object.setDescription(attrs['description'])
|
|
src = attrs["src"]
|
|
if src:
|
|
if src[0] != '/':
|
|
self.object.setPath("%s/%s" % (self.db.getSavePath(),src))
|
|
self.object.setLocal(1)
|
|
else:
|
|
self.object.setPath(src)
|
|
self.object.setLocal(0)
|
|
|
|
def append_value(orig,val):
|
|
if orig:
|
|
return "%s, %s" % (orig,val)
|
|
else:
|
|
return val
|
|
|
|
def build_place_title(loc):
|
|
"Builds a title from a location"
|
|
city = loc.get_city()
|
|
state = loc.get_state()
|
|
country = loc.get_country()
|
|
county = loc.get_county()
|
|
parish = loc.get_parish()
|
|
|
|
value = ""
|
|
|
|
if parish:
|
|
value = parish
|
|
if city:
|
|
value = append_value(value,city)
|
|
if county:
|
|
value = append_value(value,county)
|
|
if state:
|
|
value = append_value(value,state)
|
|
if country:
|
|
value = append_value(value,country)
|
|
return value
|
|
|