gramps/src/GrampsParser.py

879 lines
28 KiB
Python
Raw Normal View History

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 *
2001-11-21 06:46:32 +05:30
from Date import SingleDate
2001-05-13 07:26:57 +05:30
import string
import utils
import xml.parsers.expat
#-------------------------------------------------------------------------
#
# Unicode to latin conversion
#
#-------------------------------------------------------------------------
from latin_utf8 import utf8_to_latin
u2l = utf8_to_latin
2001-05-13 07:26:57 +05:30
#-------------------------------------------------------------------------
#
# Remove extraneous spaces
#
#-------------------------------------------------------------------------
def rs(text):
return string.join(string.split(text))
2001-05-13 07:26:57 +05:30
def fix_spaces(text_list):
return string.join(map(rs,text_list),'\n')
2001-05-13 07:26:57 +05:30
#-------------------------------------------------------------------------
#
# Gramps database parsing class. Derived from SAX XML parser
#
#-------------------------------------------------------------------------
class GrampsParser:
2001-05-13 07:26:57 +05:30
def __init__(self,database,callback,base):
2001-05-13 07:26:57 +05:30
self.stext_list = []
self.scomments_list = []
self.note_list = []
self.tlist = []
2001-10-04 09:52:41 +05:30
self.conf = 2
self.ord = None
self.objref = None
self.object = None
self.pref = None
self.use_p = 0
2001-05-13 07:26:57 +05:30
self.in_note = 0
self.in_stext = 0
self.in_scomments = 0
self.db = database
2001-05-13 07:26:57 +05:30
self.base = base
2001-10-07 08:28:29 +05:30
self.photo = None
2001-05-13 07:26:57 +05:30
self.person = None
self.family = None
self.address = None
2001-05-13 07:26:57 +05:30
self.source = None
self.source_ref = None
self.attribute = None
self.placeobj = None
self.locations = 0
self.place_map = {}
2001-05-13 07:26:57 +05:30
self.resname = ""
self.resaddr = ""
self.rescity = ""
self.resstate = ""
self.rescon = ""
self.respos = ""
self.resphone = ""
self.resemail = ""
2001-05-13 07:26:57 +05:30
self.pmap = {}
self.fmap = {}
self.smap = {}
self.callback = callback
self.entries = 0
self.count = 0
self.increment = 100
2001-05-13 07:26:57 +05:30
self.event = None
self.name = None
self.tempDefault = None
self.owner = Researcher()
self.func_list = [None]*50
self.func_index = 0
self.func = 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)
2001-11-21 06:46:32 +05:30
self.db.setResearcher(self.owner)
2001-05-13 07:26:57 +05:30
if self.tempDefault != None:
id = self.tempDefault
if self.db.personMap.has_key(id):
person = self.db.personMap[id]
self.db.setDefaultPerson(person)
def start_lds_ord(self,attrs):
type = u2l(attrs['type'])
self.ord = LdsOrd()
if type == "baptism":
self.person.setLdsBaptism(self.ord)
elif type == "endowment":
self.person.setLdsEndowment(self.ord)
else:
self.person.setLdsSeal(self.ord)
def start_temple(self,attrs):
self.ord.setTemple(u2l(attrs['val']))
def start_sealed_to(self,attrs):
id = u2l(attrs['ref'])
self.ord.setFamily(self.db.findFamilyNoMap(id))
def start_place(self,attrs):
if attrs.has_key('ref'):
self.placeobj = self.db.findPlaceNoMap(u2l(attrs['ref']))
else:
self.placeobj = None
def start_placeobj(self,attrs):
self.placeobj = self.db.findPlaceNoMap(u2l(attrs['id']))
self.placeobj.set_title(u2l(attrs['title']))
self.locations = 0
def start_location(self,attrs):
loc = Location()
if attrs.has_key('city'):
2001-08-19 01:05:30 +05:30
loc.set_city(u2l(attrs['city']))
if attrs.has_key('parish'):
loc.set_parish(u2l(attrs['parish']))
if attrs.has_key('state'):
loc.set_state(u2l(attrs['state']))
if attrs.has_key('county'):
loc.set_county(u2l(attrs['county']))
if attrs.has_key('country'):
loc.set_country(u2l(attrs['country']))
if self.locations > 0:
self.placeobj.add_alternate_locations(loc)
else:
self.placeobj.set_main_location(loc)
self.locations = self.locations + 1
2001-09-01 22:43:15 +05:30
def start_coord(self,attrs):
if attrs.has_key('lat'):
self.placeobj.set_latitude(u2l(attrs['lat']))
if attrs.has_key('long'):
self.placeobj.set_longitude(u2l(attrs['long']))
2001-05-13 07:26:57 +05:30
def start_event(self,attrs):
self.event = Event()
self.event_type = u2l(attrs["type"])
if attrs.has_key("conf"):
2001-10-04 09:52:41 +05:30
self.conf = int(attrs["conf"])
else:
self.conf = 2
if attrs.has_key("priv"):
self.event.private = int(attrs["priv"])
2001-05-13 07:26:57 +05:30
def start_attribute(self,attrs):
self.attribute = Attribute()
if attrs.has_key("conf"):
2001-10-04 09:52:41 +05:30
self.conf = int(attrs["conf"])
else:
self.conf = 2
if attrs.has_key("priv"):
self.attribute.privacy = int(attrs["priv"])
if attrs.has_key('type'):
self.attribute.setType(u2l(attrs["type"]))
if attrs.has_key('value'):
self.attribute.setValue(u2l(attrs["value"]))
2001-10-07 08:28:29 +05:30
if self.photo:
self.photo.addAttribute(self.attribute)
elif self.object:
self.object.addAttribute(self.attribute)
elif self.objref:
self.objref.addAttribute(self.attribute)
2001-10-07 08:28:29 +05:30
elif self.person:
2001-06-03 04:26:04 +05:30
self.person.addAttribute(self.attribute)
elif self.family:
2001-06-03 04:26:04 +05:30
self.family.addAttribute(self.attribute)
2001-05-13 07:26:57 +05:30
def start_address(self,attrs):
self.address = Address()
self.person.addAddress(self.address)
if attrs.has_key("conf"):
2001-10-04 09:52:41 +05:30
self.conf = int(attrs["conf"])
else:
self.conf = 2
if attrs.has_key("priv"):
self.address.private = int(attrs["priv"])
2001-05-13 07:26:57 +05:30
def start_bmark(self,attrs):
person = self.db.findPersonNoMap(u2l(attrs["ref"]))
self.db.bookmarks.append(person)
2001-05-13 07:26:57 +05:30
def start_person(self,attrs):
if self.callback != None and self.count % self.increment == 0:
2001-05-13 07:26:57 +05:30
self.callback(float(self.count)/float(self.entries))
self.count = self.count + 1
self.person = self.db.findPersonNoMap(u2l(attrs["id"]))
2001-05-13 07:26:57 +05:30
def start_people(self,attrs):
if attrs.has_key("default"):
2001-09-28 18:23:05 +05:30
self.tempDefault = u2l(attrs["default"])
2001-05-13 07:26:57 +05:30
def start_father(self,attrs):
self.family.Father = self.db.findPersonNoMap(u2l(attrs["ref"]))
2001-05-13 07:26:57 +05:30
def start_mother(self,attrs):
self.family.Mother = self.db.findPersonNoMap(u2l(attrs["ref"]))
2001-05-13 07:26:57 +05:30
def start_child(self,attrs):
self.family.Children.append(self.db.findPersonNoMap(u2l(attrs["ref"])))
2001-05-13 07:26:57 +05:30
def start_url(self,attrs):
if not attrs.has_key("href"):
return
try:
desc = u2l(attrs["description"])
except KeyError:
2001-05-13 07:26:57 +05:30
desc = ""
try:
url = Url()
url.set_path(u2l(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
2001-05-13 07:26:57 +05:30
def start_family(self,attrs):
if self.callback != None and self.count % self.increment == 0:
2001-05-13 07:26:57 +05:30
self.callback(float(self.count)/float(self.entries))
self.count = self.count + 1
self.family = self.db.findFamilyNoMap(u2l(attrs["id"]))
if attrs.has_key("type"):
self.family.setRelationship(u2l(attrs["type"]))
else:
self.family.setRelationship("")
2001-05-13 07:26:57 +05:30
def start_childof(self,attrs):
family = self.db.findFamilyNoMap(u2l(attrs["ref"]))
2001-09-28 18:23:05 +05:30
if len(attrs) == 1:
self.person.MainFamily = family
else:
mrel = ""
frel = ""
if attrs.has_key("mrel"):
2001-09-28 18:23:05 +05:30
mrel = attrs["mrel"]
if attrs.has_key("frel"):
2001-09-28 18:23:05 +05:30
frel = attrs["frel"]
if mrel=="Birth" and frel=="Birth":
self.person.MainFamily = family
else:
2001-09-28 18:23:05 +05:30
if mrel or frel:
self.person.AltFamilyList.append((family,mrel,frel))
else:
type = u2l(attrs["type"])
self.person.AltFamilyList.append((family,type,type))
2001-05-13 07:26:57 +05:30
def start_parentin(self,attrs):
self.person.FamilyList.append(self.db.findFamilyNoMap(u2l(attrs["ref"])))
2001-05-13 07:26:57 +05:30
def start_name(self,attrs):
self.name = Name()
if attrs.has_key("conf"):
2001-10-04 09:52:41 +05:30
self.conf = int(attrs["conf"])
else:
self.conf = 2
if attrs.has_key("priv"):
self.name.private = int(attrs["priv"])
2001-05-13 07:26:57 +05:30
def start_note(self,attrs):
self.in_note = 1
def start_sourceref(self,attrs):
self.source_ref = SourceRef()
2001-07-04 04:07:00 +05:30
source = self.db.findSourceNoMap(u2l(attrs["ref"]))
2001-10-04 09:52:41 +05:30
if attrs.has_key("conf"):
self.source_ref.confidence = int(u2l(attrs["conf"]))
else:
self.source_ref.confidence = self.conf
2001-07-04 04:07:00 +05:30
self.source_ref.setBase(source)
2001-10-08 08:40:06 +05:30
if self.photo:
self.photo.addSourceRef(self.source_ref)
elif self.object:
self.object.addSourceRef(self.source_ref)
2001-10-08 08:40:06 +05:30
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)
2001-05-13 07:26:57 +05:30
def start_source(self,attrs):
self.source = self.db.findSourceNoMap(u2l(attrs["id"]))
2001-05-13 07:26:57 +05:30
def start_objref(self,attrs):
self.objref = ObjectRef()
self.objref.setReference(self.db.findObjectNoMap(u2l(attrs['ref'])))
if attrs.has_key('priv'):
self.objref.setPrivacy(int(u2l(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(u2l(attrs['id']))
self.object.setMimeType(u2l(attrs['mime']))
self.object.setDescription(u2l(attrs['description']))
src = u2l(attrs["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
2001-05-13 07:26:57 +05:30
def start_photo(self,attrs):
2001-10-07 08:28:29 +05:30
self.photo = Photo()
self.pref = ObjectRef()
self.pref.setReference(self.photo)
2001-07-16 07:36:31 +05:30
for key in attrs.keys():
if key == "descrip" or key == "description":
2001-10-07 08:28:29 +05:30
self.photo.setDescription(u2l(attrs[key]))
elif key == "priv":
self.pref.setPrivacy(int(attrs[key]))
2001-07-16 07:36:31 +05:30
elif key == "src":
src = u2l(attrs["src"])
if src[0] != '/':
self.photo.setPath("%s/%s" % (self.base,src))
self.photo.setLocal(1)
2001-07-16 07:36:31 +05:30
else:
2001-10-07 08:28:29 +05:30
self.photo.setPath(src)
self.photo.setLocal(0)
2001-07-16 07:36:31 +05:30
else:
2001-10-07 08:28:29 +05:30
a = Attribute()
a.setType(key)
a.setValue(u2l(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)
2001-05-13 07:26:57 +05:30
2001-11-21 06:46:32 +05:30
def start_daterange(self,attrs):
if self.address:
d = self.address.getDateObj()
else:
d = self.event.getDateObj()
if attrs.has_key("calendar"):
d.set_calendar(int(attrs['calendar']))
d.get_start_date().setIsoDate(attrs['start'])
d.get_stop_date().setIsoDate(attrs['stop'])
2001-11-21 06:46:32 +05:30
def start_dateval(self,attrs):
if self.ord:
d = self.ord.getDateObj()
elif self.address:
2001-11-21 06:46:32 +05:30
d = self.address.getDateObj()
else:
d = self.event.getDateObj()
if attrs.has_key("calendar"):
d.set_calendar(int(attrs['calendar']))
2001-11-21 06:46:32 +05:30
d.get_start_date().setIsoDate(attrs['val'])
if attrs.has_key("type"):
2001-11-27 07:33:18 +05:30
d.get_start_date().setMode(attrs['type'])
2001-11-21 06:46:32 +05:30
else:
2001-11-27 07:33:18 +05:30
d.get_start_date().setMode(None)
2001-11-21 06:46:32 +05:30
def start_datestr(self,attrs):
if self.ord:
d = self.ord.getDateObj()
elif self.address:
2001-11-21 06:46:32 +05:30
d = self.address.getDateObj()
else:
d = self.event.getDateObj()
d.set(u2l(attrs['val']))
2001-11-21 06:46:32 +05:30
2001-05-13 07:26:57 +05:30
def start_created(self,attrs):
self.entries = int(attrs["people"]) + int(attrs["families"])
2001-05-13 07:26:57 +05:30
2001-08-06 08:30:01 +05:30
def start_pos(self,attrs):
2001-09-28 18:23:05 +05:30
self.person.position = (int(attrs["x"]), int(attrs["y"]))
2001-08-06 08:30:01 +05:30
2001-05-13 07:26:57 +05:30
def stop_attribute(self,tag):
self.attribute = None
def stop_attr_type(self,tag):
self.attribute.setType(u2l(tag))
def stop_attr_value(self,tag):
self.attribute.setValue(u2l(tag))
def stop_address(self,tag):
self.address = None
2001-05-13 07:26:57 +05:30
def stop_places(self,tag):
self.placeobj = None
2001-10-07 08:28:29 +05:30
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.palceobj = None
2001-05-13 07:26:57 +05:30
def stop_event(self,tag):
self.event.name = self.event_type
2001-05-13 07:26:57 +05:30
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
2001-05-13 07:26:57 +05:30
def stop_name(self,tag):
self.person.PrimaryName = self.name
self.name = None
2001-05-13 07:26:57 +05:30
def stop_place(self,tag):
if self.placeobj == None:
if self.place_map.has_key(u2l(tag)):
self.placeobj = self.place_map[u2l(tag)]
else:
self.placeobj = Place()
self.placeobj.set_title(u2l(tag))
self.db.addPlace(self.placeobj)
self.place_map[u2l(tag)] = self.placeobj
self.event.place = self.placeobj
2001-05-13 07:26:57 +05:30
def stop_uid(self,tag):
2001-06-22 09:01:09 +05:30
self.person.setPafUid(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_date(self,tag):
if tag:
if self.address:
2001-06-22 09:01:09 +05:30
self.address.setDate(u2l(tag))
else:
self.event.setDate(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_first(self,tag):
self.name.FirstName = u2l(tag)
2001-05-13 07:26:57 +05:30
def stop_families(self,tag):
self.family = None
def stop_people(self,tag):
self.person = None
2001-05-13 07:26:57 +05:30
def stop_description(self,tag):
self.event.setDescription(u2l(tag))
2001-05-13 07:26:57 +05:30
2001-10-04 09:52:41 +05:30
def stop_cause(self,tag):
self.event.setCause(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_gender(self,tag):
t = u2l(tag)
if t == "M":
self.person.gender = Person.male
elif t == "F":
self.person.gender = Person.female
else:
self.person.gender = Person.unknown
2001-05-13 07:26:57 +05:30
def stop_stitle(self,tag):
self.source.setTitle(u2l(tag))
def stop_sourceref(self,tag):
self.source_ref = None
def stop_source(self,tag):
self.source = None
2001-05-13 07:26:57 +05:30
def stop_sauthor(self,tag):
self.source.setAuthor(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_sdate(self,tag):
date = Date()
date.set(u2l(tag))
self.source_ref.setDate(date)
2001-05-13 07:26:57 +05:30
def stop_street(self,tag):
self.address.setStreet(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_city(self,tag):
self.address.setCity(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_state(self,tag):
self.address.setState(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_country(self,tag):
self.address.setCountry(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_postal(self,tag):
self.address.setPostal(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_spage(self,tag):
self.source_ref.setPage(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_lds_ord(self,tag):
self.ord = None
2001-05-13 07:26:57 +05:30
def stop_spubinfo(self,tag):
self.source.setPubInfo(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_scallno(self,tag):
self.source.setCallNumber(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_stext(self,tag):
if self.use_p:
self.use_p = 0
note = fix_spaces(self.stext_list)
else:
note = u2l(tag)
self.source_ref.setText(note)
2001-05-13 07:26:57 +05:30
def stop_scomments(self,tag):
if self.use_p:
self.use_p = 0
note = fix_spaces(self.scomments_list)
else:
note = u2l(tag)
self.source_ref.setComments(note)
2001-05-13 07:26:57 +05:30
def stop_last(self,tag):
if self.name:
self.name.Surname = u2l(tag)
2001-05-13 07:26:57 +05:30
def stop_suffix(self,tag):
if self.name:
self.name.Suffix = u2l(tag)
2001-05-13 07:26:57 +05:30
def stop_title(self,tag):
if self.name:
self.name.Title = u2l(tag)
2001-05-13 07:26:57 +05:30
def stop_nick(self,tag):
2001-07-05 04:44:40 +05:30
if self.person:
self.person.setNickName(u2l(tag))
2001-05-13 07:26:57 +05:30
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 = u2l(tag)
2001-07-04 04:07:00 +05:30
if self.address:
self.address.setNote(note)
elif self.attribute:
self.attribute.setNote(note)
elif self.object:
self.object.setNote(note)
elif self.objref:
self.objref.setNote(note)
2001-10-08 08:40:06 +05:30
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)
2001-05-13 07:26:57 +05:30
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 = u2l(tag)
def stop_resaddr(self,tag):
self.resaddr = u2l(tag)
def stop_rescity(self,tag):
self.rescity = u2l(tag)
def stop_resstate(self,tag):
self.resstate = u2l(tag)
def stop_rescountry(self,tag):
self.rescon = u2l(tag)
def stop_respostal(self,tag):
self.respos = u2l(tag)
def stop_resphone(self,tag):
self.resphone = u2l(tag)
def stop_resemail(self,tag):
self.resemail = u2l(tag)
2001-05-13 07:26:57 +05:30
def stop_ptag(self,tag):
self.use_p = 1
2001-05-13 07:26:57 +05:30
if self.in_note:
self.note_list.append(u2l(tag))
2001-05-13 07:26:57 +05:30
elif self.in_stext:
self.stext_list.append(u2l(tag))
2001-05-13 07:26:57 +05:30
elif self.in_scomments:
self.scomments_list.append(u2l(tag))
2001-05-13 07:26:57 +05:30
def stop_aka(self,tag):
self.person.addAlternateName(self.name)
self.name = None
2001-05-13 07:26:57 +05:30
func_map = {
"address" : (start_address, stop_address),
"addresses" : (None,None),
"childlist" : (None,None),
"aka" : (start_name, stop_aka),
"attribute" : (start_attribute, stop_attribute),
"attr_type" : (None,stop_attr_type),
"attr_value" : (None,stop_attr_value),
"bookmark" : (start_bmark, None),
"bookmarks" : (None, None),
"child" : (start_child,None),
"childof" : (start_childof,None),
"city" : (None, stop_city),
"country" : (None, stop_country),
"created" : (start_created, None),
"database" : (None, None),
"date" : (None, stop_date),
2001-10-04 09:52:41 +05:30
"cause" : (None, stop_cause),
"description": (None, stop_description),
"event" : (start_event, stop_event),
"families" : (None, stop_families),
"family" : (start_family, None),
"father" : (start_father, None),
"first" : (None, stop_first),
"gender" : (None, stop_gender),
"header" : (None, None),
"last" : (None, stop_last),
"mother" : (start_mother,None),
"name" : (start_name, stop_name),
"nick" : (None, stop_nick),
"note" : (start_note, stop_note),
"p" : (None, stop_ptag),
"parentin" : (start_parentin,None),
"people" : (start_people, stop_people),
"person" : (start_person, None),
2001-10-07 08:28:29 +05:30
"img" : (start_photo, stop_photo),
"objref" : (start_objref, stop_objref),
"object" : (start_object, stop_object),
"place" : (start_place, stop_place),
2001-11-21 06:46:32 +05:30
"dateval" : (start_dateval, None),
"daterange" : (start_daterange, None),
"datestr" : (start_datestr, None),
"places" : (None, stop_places),
"placeobj" : (start_placeobj,stop_placeobj),
"location" : (start_location,None),
"lds_ord" : (start_lds_ord, stop_lds_ord),
"temple" : (start_temple, None),
"sealed_to" : (start_sealed_to, None),
"coord" : (start_coord,None),
2001-08-06 08:30:01 +05:30
"pos" : (start_pos, None),
"postal" : (None, stop_postal),
"researcher" : (None, stop_research),
"resname" : (None, stop_resname ),
"resaddr" : (None, stop_resaddr ),
"rescity" : (None, stop_rescity ),
"resstate" : (None, stop_resstate ),
"rescountry" : (None, stop_rescountry),
"respostal" : (None, stop_respostal),
"resphone" : (None, stop_resphone),
"resemail" : (None, stop_resemail),
"sauthor" : (None, stop_sauthor),
"scallno" : (None, stop_scallno),
"scomments" : (None, stop_scomments),
"sdate" : (None,stop_sdate),
"source" : (start_source, stop_source),
"sourceref" : (start_sourceref, stop_sourceref),
"sources" : (None, None),
"spage" : (None, stop_spage),
"spubinfo" : (None, stop_spubinfo),
"state" : (None, stop_state),
"stext" : (None, stop_stext),
"stitle" : (None, stop_stitle),
"street" : (None, stop_street),
"suffix" : (None, stop_suffix),
"title" : (None, stop_title),
"uid" : (None, stop_uid),
"url" : (start_url, None)
}
2001-05-13 07:26:57 +05:30
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 = GrampsParser.func_map[tag]
if f:
f(self,attrs)
except KeyError:
GrampsParser.func_map[tag] = (None,None)
self.func = None
2001-05-13 07:26:57 +05:30
def endElement(self,tag):
if self.func:
self.func(self,string.join(self.tlist,''))
self.func_index = self.func_index - 1
self.func,self.tlist = self.func_list[self.func_index]
2001-05-13 07:26:57 +05:30
def characters(self, data):
if self.func:
self.tlist.append(data)
#-------------------------------------------------------------------------
#
# Gramps database parsing class. Derived from SAX XML parser
#
#-------------------------------------------------------------------------
2001-08-10 10:02:31 +05:30
class GrampsImportParser(GrampsParser):
def start_bmark(self,attrs):
person = self.db.findPerson("x%s" % u2l(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.findPerson("x%s" % u2l(attrs["id"]),self.pmap)
def start_father(self,attrs):
father = self.db.findPerson("x%s" % u2l(attrs["ref"]),self.pmap)
self.family.setFather(father)
def start_mother(self,attrs):
mother = self.db.findPerson("x%s" % u2l(attrs["ref"]),self.pmap)
self.family.setMother(mother)
def start_child(self,attrs):
child = self.db.findPerson("x%s" % u2l(attrs["ref"]),self.pmap)
self.family.addChild(child)
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.findFamily(u2l(attrs["id"]),self.fmap)
if attrs.has_key("type"):
self.family.setRelationship(u2l(attrs["type"]))
def start_childof(self,attrs):
family = self.db.findFamily(u2l(attrs["ref"]),self.fmap)
if attrs.has_key("type"):
type = u2l(attrs["type"])
self.person.addAltFamily(family,type)
else:
self.person.setMainFamily(family)
def start_sourceref(self,attrs):
self.source_ref = SourceRef()
self.source = self.db.findSource(u2l(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.findSource(u2l(attrs["id"]),self.smap)
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