gramps/gramps2/src/GenericFilter.py

1346 lines
40 KiB
Python
Raw Normal View History

2002-10-20 19:55:16 +05:30
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2002-2003 Donald N. Allingham
2002-10-20 19:55:16 +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
#
"""Generic Filtering Routines"""
__author__ = "Don Allingham"
#-------------------------------------------------------------------------
#
# Try to abstract SAX1 from SAX2
#
#-------------------------------------------------------------------------
try:
from xml.sax import make_parser,handler,SAXParseException
except:
from _xmlplus.sax import make_parser,handler,SAXParseException
#-------------------------------------------------------------------------
#
# Standard Python modules
#
#-------------------------------------------------------------------------
import os
from string import find,join
2002-10-20 19:55:16 +05:30
import gtk
#-------------------------------------------------------------------------
#
# GRAMPS modules
#
#-------------------------------------------------------------------------
import const
import RelLib
2002-10-20 19:55:16 +05:30
import Date
import Calendar
2003-05-23 09:38:03 +05:30
import Errors
from intl import gettext as _
from Utils import for_each_ancestor
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# date_cmp
#
#-------------------------------------------------------------------------
def date_cmp(rule,value):
sd = rule.get_start_date()
s = sd.mode
if s == Calendar.BEFORE:
2002-10-20 19:55:16 +05:30
return Date.compare_dates(rule,value) == 1
elif s == Calendar.AFTER:
2002-10-20 19:55:16 +05:30
return Date.compare_dates(rule,value) == -1
elif sd.month == Date.UNDEF and sd.year != Date.UNDEF:
return sd.year == value.get_start_date().year
else:
return Date.compare_dates(rule,value) == 0
#-------------------------------------------------------------------------
#
# Rule
#
#-------------------------------------------------------------------------
class Rule:
"""Base rule class"""
labels = []
def __init__(self,list):
assert(type(list) == type([]),"Argument is not a list")
self.list = list
def values(self):
return self.list
def trans_name(self):
return _(self.name())
def name(self):
return 'None'
def check(self):
return len(self.list) == len(self.labels)
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
return 1
def display_values(self):
v = []
for i in range(0,len(self.list)):
if self.list[i]:
v.append('%s="%s"' % (_(self.labels[i]),self.list[i]))
return join(v,'; ')
#-------------------------------------------------------------------------
#
# Everyone
#
#-------------------------------------------------------------------------
class Everyone(Rule):
"""Matches Everyone"""
labels = []
def name(self):
return 'Everyone'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
return 1
#-------------------------------------------------------------------------
#
# HasIdOf
#
#-------------------------------------------------------------------------
class HasIdOf(Rule):
"""Rule that checks for a person with a specific GID"""
2003-03-07 07:51:18 +05:30
labels = [ _('ID:') ]
2002-10-20 19:55:16 +05:30
def name(self):
return 'Has the Id'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
return p.getId() == self.list[0]
#-------------------------------------------------------------------------
#
# IsFemale
#
#-------------------------------------------------------------------------
class IsFemale(Rule):
"""Rule that checks for a person that is a female"""
labels = []
def name(self):
return 'Is a female'
def apply(self,db,p):
return p.getGender() == RelLib.Person.female
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# IsDescendantOf
#
#-------------------------------------------------------------------------
class IsDescendantOf(Rule):
"""Rule that checks for a person that is a descendant
of a specified person"""
2003-03-07 07:51:18 +05:30
labels = [ _('ID:') ]
2002-10-20 19:55:16 +05:30
def __init__(self,list):
Rule.__init__(self,list)
self.init = 0
self.map = {}
2002-10-20 19:55:16 +05:30
def name(self):
return 'Is a descendant of'
def apply(self,db,p):
2003-05-23 09:38:03 +05:30
self.orig = p
2002-10-20 19:55:16 +05:30
if not self.init:
self.init = 1
root = db.getPerson(self.list[0])
self.init_list(root,1)
return self.map.has_key(p.getId())
def init_list(self,p,first):
# if self.map.has_key(p.getId()) == 1:
# loop_error(self.orig,p)
if not first:
self.map[p.getId()] = 1
for fam in p.getFamilyList():
for child in fam.getChildList():
self.init_list(child,0)
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# IsDescendantOfFilterMatch
#
#-------------------------------------------------------------------------
class IsDescendantOfFilterMatch(IsDescendantOf):
"""Rule that checks for a person that is a descendant
of someone matched by a filter"""
labels = [ _('Filter name:') ]
def __init__(self,list):
IsDescendantOf.__init__(self,list)
def name(self):
return 'Is a descendant of filter match'
def apply(self,db,p):
self.orig = p
if not self.init:
self.init = 1
filter = MatchesFilter(self.list)
for person in db.getPersonMap ().values ():
if filter.apply (db, person):
self.init_list (person, 1)
return self.map.has_key(p.getId())
#-------------------------------------------------------------------------
#
# IsLessThanNthGenerationDescendantOf
#
#-------------------------------------------------------------------------
class IsLessThanNthGenerationDescendantOf(Rule):
"""Rule that checks for a person that is a descendant of a specified person
not more than N generations away"""
labels = [ _('ID:'), _('Number of generations:') ]
def __init__(self,list):
Rule.__init__(self,list)
self.init = 0
self.map = {}
def name(self):
return 'Is a descendant of person not more than N generations away'
def apply(self,db,p):
self.orig = p
if not self.init:
self.init = 1
root = db.getPerson(self.list[0])
self.init_list(root,0)
return self.map.has_key(p.getId())
def init_list(self,p,gen):
# if self.map.has_key(p.getId()) == 1:
# loop_error(self.orig,p)
if gen:
self.map[p.getId()] = 1
if gen >= int(self.list[1]):
return
for fam in p.getFamilyList():
for child in fam.getChildList():
self.init_list(child,gen+1)
#-------------------------------------------------------------------------
#
# IsMoreThanNthGenerationDescendantOf
#
#-------------------------------------------------------------------------
class IsMoreThanNthGenerationDescendantOf(Rule):
"""Rule that checks for a person that is a descendant of a specified person
at least N generations away"""
labels = [ _('ID:'), _('Number of generations:') ]
def __init__(self,list):
Rule.__init__(self,list)
self.init = 0
self.map = {}
def name(self):
return 'Is a descendant of person at least N generations away'
def apply(self,db,p):
self.orig = p
if not self.init:
self.init = 1
root = db.getPerson(self.list[0])
self.init_list(root,0)
return self.map.has_key(p.getId())
def init_list(self,p,gen):
# if self.map.has_key(p.getId()) == 1:
# loop_error(self.orig,p)
if gen >= int(self.list[1]):
self.map[p.getId()] = 1
for fam in p.getFamilyList():
for child in fam.getChildList():
self.init_list(child,gen+1)
#-------------------------------------------------------------------------
#
# IsChildOfFilterMatch
#
#-------------------------------------------------------------------------
class IsChildOfFilterMatch(Rule):
"""Rule that checks for a person that is a child
of someone matched by a filter"""
labels = [ _('Filter name:') ]
def __init__(self,list):
Rule.__init__(self,list)
self.init = 0
self.map = {}
def name(self):
return 'Is a child of filter match'
def apply(self,db,p):
self.orig = p
if not self.init:
self.init = 1
filter = MatchesFilter(self.list)
for person in db.getPersonMap ().values ():
if filter.apply (db, person):
self.init_list (person)
return self.map.has_key(p.getId())
def init_list(self,p):
# if self.map.has_key(p.getId()) == 1:
# loop_error(self.orig,p)
for fam in p.getFamilyList():
for child in fam.getChildList():
self.map[child.getId()] = 1
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# IsDescendantFamilyOf
#
#-------------------------------------------------------------------------
class IsDescendantFamilyOf(Rule):
"""Rule that checks for a person that is a descendant or the spouse
of a descendant of a specified person"""
2003-03-07 07:51:18 +05:30
labels = [ _('ID:') ]
2002-10-20 19:55:16 +05:30
def name(self):
return "Is a descendant family member of"
def apply(self,db,p):
2003-05-23 09:38:03 +05:30
self.map = {}
self.orig = p
2002-10-20 19:55:16 +05:30
return self.search(p,1)
def search(self,p,val):
# if self.map.has_key(p.getId()):
# loop_error(self.orig,p)
2002-10-20 19:55:16 +05:30
if p.getId() == self.list[0]:
2003-05-23 09:38:03 +05:30
self.map[p.getId()] = 1
2002-10-20 19:55:16 +05:30
return 1
for (f,r1,r2) in p.getParentList():
for p1 in [f.getMother(),f.getFather()]:
if p1:
if self.search(p1,0):
return 1
if val:
for fm in p.getFamilyList():
if p == fm.getFather():
s = fm.getMother()
else:
s = fm.getFather()
if s:
if self.search(s,0):
return 1
return 0
#-------------------------------------------------------------------------
#
# IsAncestorOf
#
#-------------------------------------------------------------------------
class IsAncestorOf(Rule):
"""Rule that checks for a person that is an ancestor of a specified person"""
2003-03-07 07:51:18 +05:30
labels = [ _('ID:') ]
2003-05-23 09:38:03 +05:30
def __init__(self,list):
Rule.__init__(self,list)
self.init = 0
2003-05-23 09:38:03 +05:30
self.map = {}
2002-10-20 19:55:16 +05:30
def name(self):
return 'Is an ancestor of'
def apply(self,db,p):
2003-05-23 09:38:03 +05:30
self.orig = p
if not self.init:
self.init = 1
root = db.getPerson(self.list[0])
self.init_ancestor_list(root,1)
return self.map.has_key(p.getId())
2002-10-20 19:55:16 +05:30
def init_ancestor_list(self,p,first):
# if self.map.has_key(p.getId()) == 1:
# loop_error(self.orig,p)
if not first:
self.map[p.getId()] = 1
fam = p.getMainParents()
if fam:
f = fam.getFather()
m = fam.getMother()
if f:
self.init_ancestor_list(f,0)
if m:
self.init_ancestor_list(m,0)
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# IsAncestorOfFilterMatch
#
#-------------------------------------------------------------------------
class IsAncestorOfFilterMatch(IsAncestorOf):
"""Rule that checks for a person that is an ancestor of
someone matched by a filter"""
labels = [ _('Filter name:') ]
def __init__(self,list):
IsAncestorOf.__init__(self,list)
def name(self):
return 'Is an ancestor of filter match'
def apply(self,db,p):
self.orig = p
if not self.init:
self.init = 1
filter = MatchesFilter(self.list)
for person in db.getPersonMap ().values ():
if filter.apply (db, person):
self.init_ancestor_list (person,1)
return self.map.has_key(p.getId())
#-------------------------------------------------------------------------
#
# IsLessThanNthGenerationAncestorOf
#
#-------------------------------------------------------------------------
class IsLessThanNthGenerationAncestorOf(Rule):
"""Rule that checks for a person that is an ancestor of a specified person
not more than N generations away"""
labels = [ _('ID:'), _('Number of generations:') ]
def __init__(self,list):
Rule.__init__(self,list)
self.init = 0
self.map = {}
def name(self):
return 'Is an ancestor of person not more than N generations away'
def apply(self,db,p):
self.orig = p
if not self.init:
self.init = 1
root = db.getPerson(self.list[0])
self.init_ancestor_list(root,0)
return self.map.has_key(p.getId())
def init_ancestor_list(self,p,gen):
# if self.map.has_key(p.getId()) == 1:
# loop_error(self.orig,p)
if gen:
self.map[p.getId()] = 1
if gen >= int(self.list[1]):
return
fam = p.getMainParents()
if fam:
f = fam.getFather()
m = fam.getMother()
if f:
self.init_ancestor_list(f,gen+1)
if m:
self.init_ancestor_list(m,gen+1)
#-------------------------------------------------------------------------
#
# IsMoreThanNthGenerationAncestorOf
#
#-------------------------------------------------------------------------
class IsMoreThanNthGenerationAncestorOf(Rule):
"""Rule that checks for a person that is an ancestor of a specified person
at least N generations away"""
labels = [ _('ID:'), _('Number of generations:') ]
def __init__(self,list):
Rule.__init__(self,list)
self.init = 0
self.map = {}
def name(self):
return 'Is an ancestor of person at least N generations away'
def apply(self,db,p):
self.orig = p
if not self.init:
self.init = 1
root = db.getPerson(self.list[0])
self.init_ancestor_list(root,0)
return self.map.has_key(p.getId())
def init_ancestor_list(self,p,gen):
# if self.map.has_key(p.getId()) == 1:
# loop_error(self.orig,p)
if gen >= int(self.list[1]):
self.map[p.getId()] = 1
fam = p.getMainParents()
if fam:
f = fam.getFather()
m = fam.getMother()
if f:
self.init_ancestor_list(f,gen+1)
if m:
self.init_ancestor_list(m,gen+1)
#-------------------------------------------------------------------------
#
# IsParentOfFilterMatch
#
#-------------------------------------------------------------------------
class IsParentOfFilterMatch(Rule):
"""Rule that checks for a person that is a parent
of someone matched by a filter"""
labels = [ _('Filter name:') ]
def __init__(self,list):
Rule.__init__(self,list)
self.init = 0
self.map = {}
def name(self):
return 'Is a parent of filter match'
def apply(self,db,p):
self.orig = p
if not self.init:
self.init = 1
filter = MatchesFilter(self.list)
for person in db.getPersonMap ().values ():
if filter.apply (db, person):
self.init_list (person)
return self.map.has_key(p.getId())
def init_list(self,p):
# if self.map.has_key(p.getId()) == 1:
# loop_error(self.orig,p)
fam in p.getMainParents()
if fam:
for parent in [fam.getFather (), fam.getMother ()]:
if parent:
self.map[parent.getId()] = 1
#-------------------------------------------------------------------------
#
# HasCommonAncestorWith
#
#-------------------------------------------------------------------------
class HasCommonAncestorWith(Rule):
"""Rule that checks for a person that has a common ancestor with a specified person"""
2003-03-07 07:51:18 +05:30
labels = [ _('ID:') ]
def name(self):
return 'Has a common ancestor with'
def __init__(self,list):
Rule.__init__(self,list)
# Keys in `ancestor_cache' are ancestors of list[0].
# We delay the computation of ancestor_cache until the
# first use, because it's not uncommon to instantiate
# this class and not use it.
self.ancestor_cache = {}
def init_ancestor_cache(self,db):
# list[0] is an Id, but we need to pass a Person to for_each_ancestor.
p = db.getPerson(self.list[0])
if p:
def init(self,pid): self.ancestor_cache[pid] = 1
for_each_ancestor([p],init,self)
def apply(self,db,p):
# On the first call, we build the ancestor cache for the
# reference person. Then, for each person to test,
# we browse his ancestors until we found one in the cache.
if len(self.ancestor_cache) == 0:
self.init_ancestor_cache(db)
return for_each_ancestor([p],
lambda self,p: self.ancestor_cache.has_key(p),
self);
#-------------------------------------------------------------------------
#
# HasCommonAncestorWithFilterMatch
#
#-------------------------------------------------------------------------
class HasCommonAncestorWithFilterMatch(HasCommonAncestorWith):
"""Rule that checks for a person that has a common ancestor with
someone matching a filter"""
labels = [ _('Filter name:') ]
def name(self):
return 'Has a common ancestor with filter match'
def __init__(self,list):
HasCommonAncestorWith.__init__(self,list)
def init_ancestor_cache(self,db):
filter = MatchesFilter(self.list)
def init(self,pid): self.ancestor_cache[pid] = 1
for p in db.getPersonMap ().values ():
if (not self.ancestor_cache.has_key (p.getId ())
and filter.apply (db, p)):
for_each_ancestor([p],init,self)
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# IsMale
#
#-------------------------------------------------------------------------
class IsMale(Rule):
"""Rule that checks for a person that is a male"""
labels = []
def name(self):
return 'Is a male'
def apply(self,db,p):
2003-01-29 10:20:10 +05:30
return p.getGender() == RelLib.Person.male
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# HasEvent
#
#-------------------------------------------------------------------------
class HasEvent(Rule):
"""Rule that checks for a person with a particular value"""
2003-03-07 07:51:18 +05:30
labels = [ _('Personal event:'), _('Date:'), _('Place:'), _('Description:') ]
2002-10-20 19:55:16 +05:30
def __init__(self,list):
Rule.__init__(self,list)
if self.list[0]:
self.date = Date.Date()
self.date.set(self.list[0])
else:
self.date = None
def name(self):
return 'Has the personal event'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
for event in p.getEventList():
val = 1
if self.list[0] and event.getName() != self.list[0]:
val = 0
if self.list[3] and find(event.getDescription().upper(),
self.list[3].upper())==-1:
2002-10-20 19:55:16 +05:30
val = 0
if self.date:
if date_cmp(self.date,event.getDateObj()):
val = 0
if self.list[2]:
pn = event.getPlaceName()
if find(pn.upper(),self.list[2].upper()) == -1:
val = 0
2002-10-20 19:55:16 +05:30
if val == 1:
return 1
return 0
#-------------------------------------------------------------------------
#
# HasFamilyEvent
#
#-------------------------------------------------------------------------
class HasFamilyEvent(Rule):
"""Rule that checks for a person who has a relationship event
with a particular value"""
2003-03-07 07:51:18 +05:30
labels = [ _('Family event:'), _('Date:'), _('Place:'), _('Description:') ]
2002-10-20 19:55:16 +05:30
def __init__(self,list):
Rule.__init__(self,list)
if self.list[0]:
self.date = Date.Date()
self.date.set(self.list[0])
else:
self.date = None
def name(self):
return 'Has the family event'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
for f in p.getFamilyList():
for event in f.getEventList():
val = 1
if self.list[0] and event.getName() != self.list[0]:
val = 0
v = self.list[3]
if v and find(event.getDescription().upper(),v.upper())==-1:
2002-10-20 19:55:16 +05:30
val = 0
if self.date:
if date_cmp(self.date,event.getDateObj()):
val = 0
pn = event.getPlaceName().upper()
if self.list[2] and find(pn,self.list[2].upper()) == -1:
2002-10-20 19:55:16 +05:30
val = 0
if val == 1:
return 1
return 0
#-------------------------------------------------------------------------
#
# HasRelationship
#
#-------------------------------------------------------------------------
class HasRelationship(Rule):
"""Rule that checks for a person who has a particular relationship"""
2003-03-07 07:51:18 +05:30
labels = [ _('Number of relationships:'),
_('Relationship type:'),
_('Number of children:') ]
2002-10-20 19:55:16 +05:30
def name(self):
return 'Has the relationships'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
rel_type = 0
cnt = 0
num_rel = len(p.getFamilyList())
# count children and look for a relationship type match
for f in p.getFamilyList():
cnt = cnt + len(f.getChildList())
if self.list[1] and f.getRelationship() == self.list[1]:
rel_type = 1
# if number of relations specified
if self.list[0]:
try:
v = int(self.list[0])
except:
return 0
if v != num_rel:
return 0
# number of childred
if self.list[2]:
try:
v = int(self.list[2])
except:
return 0
if v != cnt:
return 0
# relation
if self.list[1]:
return rel_type == 1
else:
return 1
#-------------------------------------------------------------------------
#
# HasBirth
#
#-------------------------------------------------------------------------
class HasBirth(Rule):
"""Rule that checks for a person with a birth of a particular value"""
2003-03-07 07:51:18 +05:30
labels = [ _('Date:'), _('Place:'), _('Description:') ]
2002-10-20 19:55:16 +05:30
def __init__(self,list):
Rule.__init__(self,list)
if self.list[0]:
self.date = Date.Date()
self.date.set(self.list[0])
else:
self.date = None
def name(self):
return 'Has the birth'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
event = p.getBirth()
ed = event.getDescription().upper()
if len(self.list) > 2 and find(ed,self.list[2].upper())==-1:
2002-10-20 19:55:16 +05:30
return 0
if self.date:
if date_cmp(self.date,event.getDateObj()) == 0:
return 0
pn = event.getPlaceName().upper()
if len(self.list) > 1 and find(pn,self.list[1].upper()) == -1:
2002-10-20 19:55:16 +05:30
return 0
return 1
#-------------------------------------------------------------------------
#
# HasDeath
#
#-------------------------------------------------------------------------
class HasDeath(Rule):
"""Rule that checks for a person with a death of a particular value"""
2003-03-07 07:51:18 +05:30
labels = [ _('Date:'), _('Place:'), _('Description:') ]
2002-10-20 19:55:16 +05:30
def __init__(self,list):
Rule.__init__(self,list)
if self.list[0]:
self.date = Date.Date()
self.date.set(self.list[0])
else:
self.date = None
def name(self):
return 'Has the death'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
event = p.getDeath()
ed = event.getDescription().upper()
if self.list[2] and find(ed,self.list[2].upper())==-1:
2002-10-20 19:55:16 +05:30
return 0
if self.date:
if date_cmp(self.date,event.getDateObj()) == 0:
return 0
pn = p.getPlaceName().upper()
if self.list[1] and find(pn,self.list[1].upper()) == -1:
2002-10-20 19:55:16 +05:30
return 0
return 1
#-------------------------------------------------------------------------
#
# HasAttribute
#
#-------------------------------------------------------------------------
class HasAttribute(Rule):
"""Rule that checks for a person with a particular personal attribute"""
2003-03-07 07:51:18 +05:30
labels = [ _('Personal attribute:'), _('Value:') ]
2002-10-20 19:55:16 +05:30
def name(self):
return 'Has the personal attribute'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
for event in p.getAttributes():
if self.list[0] and event.getType() != self.list[0]:
return 0
ev = event.getValue().upper()
if self.list[1] and find(ev,self.list[1].upper())==-1:
2002-10-20 19:55:16 +05:30
return 0
return 1
#-------------------------------------------------------------------------
#
# HasFamilyAttribute
#
#-------------------------------------------------------------------------
class HasFamilyAttribute(Rule):
"""Rule that checks for a person with a particular family attribute"""
2003-03-07 07:51:18 +05:30
labels = [ _('Family attribute:'), _('Value:') ]
2002-10-20 19:55:16 +05:30
def name(self):
return 'Has the family attribute'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
for f in p.getFamilyList():
for event in f.getAttributes():
val = 1
if self.list[0] and event.getType() != self.list[0]:
val = 0
ev = event.getValue().upper()
if self.list[1] and find(ev,self.list[1].upper())==-1:
2002-10-20 19:55:16 +05:30
val = 0
if val == 1:
return 1
return 0
#-------------------------------------------------------------------------
#
# HasNameOf
#
#-------------------------------------------------------------------------
class HasNameOf(Rule):
"""Rule that checks for full or partial name matches"""
2003-03-07 07:51:18 +05:30
labels = [_('Given name:'),_('Family name:'),_('Suffix:'),_('Title:')]
2002-10-20 19:55:16 +05:30
def name(self):
return 'Has a name'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
self.f = self.list[0]
self.l = self.list[1]
self.s = self.list[2]
self.t = self.list[3]
for name in [p.getPrimaryName()] + p.getAlternateNames():
val = 1
if self.f and find(name.getFirstName().upper(),self.f.upper()) == -1:
2002-10-20 19:55:16 +05:30
val = 0
if self.l and find(name.getSurname().upper(),self.l.upper()) == -1:
2002-10-20 19:55:16 +05:30
val = 0
if self.s and find(name.getSuffix().upper(),self.s.upper()) == -1:
2002-10-20 19:55:16 +05:30
val = 0
if self.t and find(name.getTitle().upper(),self.t.upper()) == -1:
2002-10-20 19:55:16 +05:30
val = 0
if val == 1:
return 1
return 0
2003-03-25 10:56:05 +05:30
#-------------------------------------------------------------------------
#
# MatchesFilter
#
#-------------------------------------------------------------------------
2002-10-20 19:55:16 +05:30
class MatchesFilter(Rule):
"""Rule that checks against another filter"""
2003-03-07 07:51:18 +05:30
labels = [_('Filter name:')]
2002-10-20 19:55:16 +05:30
def name(self):
return 'Matches the filter named'
def apply(self,db,p):
2002-10-20 19:55:16 +05:30
for filter in SystemFilters.get_filters():
if filter.get_name() == self.list[0]:
return filter.check(p)
for filter in CustomFilters.get_filters():
if filter.get_name() == self.list[0]:
2003-03-25 10:56:05 +05:30
return filter.check(db,p)
2002-10-20 19:55:16 +05:30
return 0
#-------------------------------------------------------------------------
#
# IsSpouseOfFilterMatch
#
#-------------------------------------------------------------------------
class IsSpouseOfFilterMatch(Rule):
"""Rule that checks for a person married to someone matching
a filter"""
labels = [_('Filter name:')]
def name(self):
return 'Is spouse of filter match'
def apply(self,db,p):
filter = MatchesFilter (self.list)
for family in p.getFamilyList ():
for spouse in [family.getFather (), family.getMother ()]:
if not spouse:
continue
if spouse == p:
continue
if filter.apply (db, spouse):
return 1
return 0
#-------------------------------------------------------------------------
#
# loop_error
#
#-------------------------------------------------------------------------
# def loop_error(p1,p2):
# p1name = p1.getPrimaryName().getName()
# p2name = p2.getPrimaryName().getName()
# p1id = p1.getId()
# p2id = p2.getId()
# raise Errors.FilterError(_("Loop detected while applying filter"),
# _("A relationship loop was detected between %(person1_name)s "
# "[%(person1_id)s] and %(person2_name)s [%(person2_id)s]. "
# "This is probably due to an error in the "
# "database.") % {
# "person1_name" : p1name,
# "person1_id" : p1id,
# "person2_name" : p2name,
# "person2_id" : p2id})
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# GenericFilter
#
#-------------------------------------------------------------------------
class GenericFilter:
"""Filter class that consists of several rules"""
def __init__(self,source=None):
if source:
self.flist = source.flist[:]
self.name = source.name
self.comment = source.comment
self.logical_op = source.logical_op
self.invert = source.invert
else:
self.flist = []
self.name = ''
self.comment = ''
self.logical_op = 'and'
self.invert = 0
def set_logical_op(self,val):
if val in const.logical_functions:
self.logical_op = val
else:
self.logical_op = 'and'
def get_logical_op(self):
return self.logical_op
def set_invert(self, val):
self.invert = not not val
def get_invert(self):
return self.invert
def get_name(self):
return self.name
def set_name(self,name):
self.name = name
def set_comment(self,comment):
self.comment = comment
def get_comment(self):
return self.comment
def add_rule(self,rule):
self.flist.append(rule)
def delete_rule(self,rule):
self.flist.remove(rule)
2002-10-20 19:55:16 +05:30
def set_rules(self,rules):
self.flist = rules
def get_rules(self):
return self.flist
def check_or(self,db,p):
2002-10-20 19:55:16 +05:30
test = 0
for rule in self.flist:
test = test or rule.apply(db,p)
2002-10-20 19:55:16 +05:30
if test:
break
if self.invert:
return not test
else:
return test
def check_xor(self,db,p):
2002-10-20 19:55:16 +05:30
test = 0
for rule in self.flist:
temp = rule.apply(db,p)
2002-10-20 19:55:16 +05:30
test = ((not test) and temp) or (test and (not temp))
if self.invert:
return not test
else:
return test
def check_one(self,db,p):
2002-10-20 19:55:16 +05:30
count = 0
for rule in self.flist:
if rule.apply(db,p):
2002-10-20 19:55:16 +05:30
count = count + 1
if count > 1:
break
if self.invert:
return count != 1
else:
return count == 1
def check_and(self,db,p):
2002-10-20 19:55:16 +05:30
test = 1
for rule in self.flist:
test = test and rule.apply(db,p)
2002-10-20 19:55:16 +05:30
if not test:
break
if self.invert:
return not test
else:
return test
def get_check_func(self):
2002-10-20 19:55:16 +05:30
try:
m = getattr(self, 'check_' + self.logical_op)
except AttributeError:
m = self.check_and
return m
2002-10-20 19:55:16 +05:30
def check(self,db,p):
return self.get_check_func()(db,p)
2002-10-20 19:55:16 +05:30
def apply(self,db,list):
m = self.get_check_func()
res = []
for p in list:
if m(db,p):
res.append(p)
return res
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# Name to class mappings
#
#-------------------------------------------------------------------------
tasks = {
_("Everyone") : Everyone,
_("Has the Id") : HasIdOf,
_("Has a name") : HasNameOf,
_("Has the relationships") : HasRelationship,
_("Has the death") : HasDeath,
_("Has the birth") : HasBirth,
_("Is a descendant of") : IsDescendantOf,
_("Is a descendant family member of"): IsDescendantFamilyOf,
_("Is a descendant of filter match") : IsDescendantOfFilterMatch,
_("Is a descendant of person not more than N generations away")
: IsLessThanNthGenerationDescendantOf,
_("Is a descendant of person at least N generations away")
: IsMoreThanNthGenerationDescendantOf,
_("Is a child of filter match") : IsChildOfFilterMatch,
2002-10-20 19:55:16 +05:30
_("Is an ancestor of") : IsAncestorOf,
_("Is an ancestor of filter match") : IsAncestorOfFilterMatch,
_("Is an ancestor of person not more than N generations away")
: IsLessThanNthGenerationAncestorOf,
_("Is an ancestor of person at least N generations away")
: IsMoreThanNthGenerationAncestorOf,
_("Is a parent of filter match") : IsParentOfFilterMatch,
_("Has a common ancestor with") : HasCommonAncestorWith,
_("Has a common ancestor with filter match")
: HasCommonAncestorWithFilterMatch,
2002-10-20 19:55:16 +05:30
_("Is a female") : IsFemale,
_("Is a male") : IsMale,
_("Has the personal event") : HasEvent,
_("Has the family event") : HasFamilyEvent,
_("Has the personal attribute") : HasAttribute,
_("Has the family attribute") : HasFamilyAttribute,
_("Matches the filter named") : MatchesFilter,
_("Is spouse of filter match") : IsSpouseOfFilterMatch,
2002-10-20 19:55:16 +05:30
}
#-------------------------------------------------------------------------
#
# GenericFilterList
#
#-------------------------------------------------------------------------
class GenericFilterList:
"""Container class for the generic filters. Stores, saves, and
loads the filters."""
def __init__(self,file):
self.filter_list = []
self.file = os.path.expanduser(file)
def get_filters(self):
return self.filter_list
def add(self,filter):
self.filter_list.append(filter)
def load(self):
try:
parser = make_parser()
parser.setContentHandler(FilterParser(self))
if self.file[0:7] != "file://":
parser.parse("file://" + self.file)
else:
parser.parse(self.file)
2002-10-20 19:55:16 +05:30
except (IOError,OSError,SAXParseException):
pass
def fix(self,line):
l = line.strip()
l = l.replace('&','&')
l = l.replace('>','>')
l = l.replace('<','&lt;')
return l.replace('"','&quot;')
2002-10-20 19:55:16 +05:30
def save(self):
# try:
# f = open(self.file,'w')
# except:
# return
2003-03-21 10:12:12 +05:30
f = open(self.file.encode('iso8859-1'),'w')
2002-10-20 19:55:16 +05:30
2003-01-29 10:13:12 +05:30
f.write("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n")
2002-10-20 19:55:16 +05:30
f.write('<filters>\n')
for i in self.filter_list:
f.write(' <filter name="%s"' % self.fix(i.get_name()))
if i.get_invert():
f.write(' invert="1"')
f.write(' function="%s"' % i.get_logical_op())
comment = i.get_comment()
if comment:
f.write(' comment="%s"' % self.fix(comment))
f.write('>\n')
for rule in i.get_rules():
f.write(' <rule class="%s">\n' % self.fix(rule.name()))
for v in rule.values():
f.write(' <arg value="%s"/>\n' % self.fix(v))
f.write(' </rule>\n')
f.write(' </filter>\n')
f.write('</filters>\n')
f.close()
#-------------------------------------------------------------------------
#
# FilterParser
#
#-------------------------------------------------------------------------
class FilterParser(handler.ContentHandler):
"""Parses the XML file and builds the list of filters"""
def __init__(self,gfilter_list):
handler.ContentHandler.__init__(self)
self.gfilter_list = gfilter_list
self.f = None
self.r = None
self.a = []
self.cname = None
def setDocumentLocator(self,locator):
self.locator = locator
def startElement(self,tag,attrs):
if tag == "filter":
self.f = GenericFilter()
self.f.set_name(attrs['name'])
2002-10-20 19:55:16 +05:30
if attrs.has_key('function'):
try:
if int(attrs['function']):
2002-10-20 19:55:16 +05:30
op = 'or'
else:
op = 'and'
except ValueError:
op = attrs['function']
2002-10-20 19:55:16 +05:30
self.f.set_logical_op(op)
if attrs.has_key('comment'):
self.f.set_comment(attrs['comment'])
2002-10-20 19:55:16 +05:30
if attrs.has_key('invert'):
try:
self.f.set_invert(int(attrs['invert']))
2002-10-20 19:55:16 +05:30
except ValueError:
pass
self.gfilter_list.add(self.f)
elif tag == "rule":
2003-02-04 00:54:27 +05:30
cname = attrs['class']
name = _(cname)
2002-10-20 19:55:16 +05:30
self.a = []
self.cname = tasks[name]
elif tag == "arg":
self.a.append(attrs['value'])
2002-10-20 19:55:16 +05:30
def endElement(self,tag):
if tag == "rule":
rule = self.cname(self.a)
self.f.add_rule(rule)
def characters(self, data):
pass
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
SystemFilters = None
CustomFilters = None
def reload_system_filters():
global SystemFilters
SystemFilters = GenericFilterList(const.system_filters)
SystemFilters.load()
def reload_custom_filters():
global CustomFilters
CustomFilters = GenericFilterList(const.custom_filters)
CustomFilters.load()
if not SystemFilters:
reload_system_filters()
if not CustomFilters:
reload_custom_filters()
def build_filter_menu(local_filters = []):
2002-10-28 19:06:39 +05:30
menu = gtk.Menu()
2002-10-20 19:55:16 +05:30
for filter in local_filters:
2002-10-28 19:06:39 +05:30
menuitem = gtk.MenuItem(filter.get_name())
2002-10-20 19:55:16 +05:30
menuitem.show()
menu.append(menuitem)
menuitem.set_data("filter", filter)
for filter in SystemFilters.get_filters():
2002-10-28 19:06:39 +05:30
menuitem = gtk.MenuItem(_(filter.get_name()))
2002-10-20 19:55:16 +05:30
menuitem.show()
menu.append(menuitem)
menuitem.set_data("filter", filter)
for filter in CustomFilters.get_filters():
2002-10-28 19:06:39 +05:30
menuitem = gtk.MenuItem(_(filter.get_name()))
2002-10-20 19:55:16 +05:30
menuitem.show()
menu.append(menuitem)
menuitem.set_data("filter", filter)
if len(local_filters):
menu.set_active(2)
elif len(SystemFilters.get_filters()):
menu.set_active(4 + len(local_filters))
elif len(CustomFilters.get_filters()):
menu.set_active(6 + len(local_filters) + len(SystemFilters.get_filters()))
else:
menu.set_active(0)
return menu