# # Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2007-2008 Brian G. Matherly # # 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$ """ Proxy class for the GRAMPS databases. Filter out all living people. """ #------------------------------------------------------------------------- # # Python libraries # #------------------------------------------------------------------------- #------------------------------------------------------------------------- # # GRAMPS libraries # #------------------------------------------------------------------------- from proxybase import ProxyDbBase from gen.lib import Date, Person, Name from Utils import probably_alive import config #------------------------------------------------------------------------- # # LivingProxyDb # #------------------------------------------------------------------------- class LivingProxyDb(ProxyDbBase): """ A proxy to a Gramps database. This proxy will act like a Gramps database, but all living people will be hidden from the user. """ MODE_EXCLUDE_ALL = 0 MODE_INCLUDE_LAST_NAME_ONLY = 1 MODE_INCLUDE_FULL_NAME_ONLY = 2 def __init__(self, dbase, mode, current_year=None, years_after_death=0): """ Create a new LivingProxyDb instance. @param dbase: The database to be a proxy for @type dbase: DbBase @param mode: The method for handling living people. LivingProxyDb.MODE_EXCLUDE_ALL will remove living people altogether. LivingProxyDb.MODE_INCLUDE_LAST_NAME_ONLY will remove all information and change their given name to "[Living]" or what has been set in Preferences -> Text. LivingProxyDb.MODE_INCLUDE_FULL_NAME_ONLY will remove all information but leave the entire name intact. @type mode: int @param current_year: The current year to use for living determination. If None is supplied, the current year will be found from the system. @type current_year: int or None @param years_after_death: The number of years after a person's death to still consider them living. @type years_after_death: int """ ProxyDbBase.__init__(self, dbase) self.mode = mode if current_year is not None: self.current_date = Date() self.current_date.set_year(current_year) else: self.current_date = None self.years_after_death = years_after_death def get_person_from_handle(self, handle): """ Finds a Person in the database from the passed gramps ID. If no such Person exists, None is returned. """ person = self.db.get_person_from_handle(handle) if person and self.__is_living(person): if self.mode == self.MODE_EXCLUDE_ALL: person = None else: person = self.__restrict_person(person) return person def get_family_from_handle(self, handle): """ Finds a Family in the database from the passed handle. If no such Family exists, None is returned. """ family = self.db.get_family_from_handle(handle) family = self.__remove_living_from_family(family) return family def get_person_from_gramps_id(self, val): """ Finds a Person in the database from the passed GRAMPS ID. If no such Person exists, None is returned. """ person = self.db.get_person_from_gramps_id(val) if person and self.__is_living(person): if self.mode == self.MODE_EXCLUDE_ALL: return None else: return self.__restrict_person(person) else: return person def get_family_from_gramps_id(self, val): """ Finds a Family in the database from the passed GRAMPS ID. If no such Family exists, None is returned. """ family = self.db.get_family_from_gramps_id(val) family = self.__remove_living_from_family(family) return family def include_person(self, handle): if self.mode == self.MODE_EXCLUDE_ALL: person = self.get_unfiltered_person(handle) if person and self.__is_living(person): return False return True def get_default_person(self): """returns the default Person of the database""" person_handle = self.db.get_default_handle() return self.get_person_from_handle(person_handle) def get_default_handle(self): """returns the default Person of the database""" person_handle = self.db.get_default_handle() if self.get_person_from_handle(person_handle): return person_handle return None def has_person_handle(self, handle): """ returns True if the handle exists in the current Person database. """ if self.get_person_from_handle(handle): return True return False def find_backlink_handles(self, handle, include_classes=None): """ Find all objects that hold a reference to the object handle. Returns an iterator over a list of (class_name, handle) tuples. @param handle: handle of the object to search for. @type handle: database handle @param include_classes: list of class names to include in the results. Default: None means include all classes. @type include_classes: list of class names This default implementation does a sequential scan through all the primary object databases and is very slow. Backends can override this method to provide much faster implementations that make use of additional capabilities of the backend. Note that this is a generator function, it returns a iterator for use in loops. If you want a list of the results use: > result_list = list(find_backlink_handles(handle)) """ handle_itr = self.db.find_backlink_handles(handle, include_classes) for (class_name, handle) in handle_itr: if class_name == 'Person': if not self.get_person_from_handle(handle): continue yield (class_name, handle) return def __is_living(self, person): """ Check if a person is considered living. Returns True if the person is considered living. Returns False if the person is not considered living. """ return probably_alive( person, self.db, self.current_date, self.years_after_death ) def __remove_living_from_family(self, family): """ Remove information from a family that pertains to living people. Returns a family instance with information about living people removed. Returns None if family is None. """ if family is None: return None parent_is_living = False father_handle = family.get_father_handle() if father_handle: father = self.db.get_person_from_handle(father_handle) if self.__is_living(father): parent_is_living = True if self.mode == self.MODE_EXCLUDE_ALL: family.set_father_handle(None) mother_handle = family.get_mother_handle() if mother_handle: mother = self.db.get_person_from_handle(mother_handle) if self.__is_living(mother): parent_is_living = True if self.mode == self.MODE_EXCLUDE_ALL: family.set_mother_handle(None) if parent_is_living: # Clear all events for families where a parent is living. family.set_event_ref_list([]) if self.mode == self.MODE_EXCLUDE_ALL: for child_ref in family.get_child_ref_list(): child_handle = child_ref.get_reference_handle() child = self.db.get_person_from_handle(child_handle) if self.__is_living(child): family.remove_child_ref(child_ref) return family def __restrict_person(self, person): """ Remove information from a person and replace the first name with "[Living]" or what has been set in Preferences -> Text. """ new_person = Person() new_name = Name() old_name = person.get_primary_name() new_name.set_group_as(old_name.get_group_as()) new_name.set_sort_as(old_name.get_sort_as()) new_name.set_display_as(old_name.get_display_as()) new_name.set_surname_prefix(old_name.get_surname_prefix()) new_name.set_type(old_name.get_type()) if self.mode == self.MODE_INCLUDE_LAST_NAME_ONLY: new_name.set_first_name(config.get('preferences.private-given-text')) else: # self.mode == self.MODE_INCLUDE_FULL_NAME_ONLY new_name.set_first_name(old_name.get_first_name()) new_name.set_suffix(old_name.get_suffix()) new_name.set_title(old_name.get_title()) new_name.set_patronymic(old_name.get_patronymic()) new_name.set_surname(old_name.get_surname()) new_name.set_privacy(old_name.get_privacy()) new_person.set_primary_name(new_name) new_person.set_privacy(person.get_privacy()) new_person.set_gender(person.get_gender()) new_person.set_gramps_id(person.get_gramps_id()) new_person.set_handle(person.get_handle()) new_person.set_family_handle_list(person.get_family_handle_list()) new_person.set_parent_family_handle_list( person.get_parent_family_handle_list() ) return new_person