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
|
|
|
|
#
|
2001-12-16 05:46:43 +05:30
|
|
|
"""
|
|
|
|
Provides sorting routines for use in GRAMPS. Since these functions are
|
|
|
|
intended to provide fast sorting, they tend to bypass access methods,
|
|
|
|
and directly use class members. For this reason, care needs to be taken
|
|
|
|
to make sure these remain in sync with the rest of the design.
|
|
|
|
"""
|
2001-05-13 07:26:57 +05:30
|
|
|
|
2001-12-16 05:46:43 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Imported Modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-08-03 04:35:51 +05:30
|
|
|
import string
|
2001-12-16 05:46:43 +05:30
|
|
|
import Date
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2001-12-16 05:46:43 +05:30
|
|
|
# Functions
|
2001-05-13 07:26:57 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-12-16 05:46:43 +05:30
|
|
|
|
2001-08-06 08:30:01 +05:30
|
|
|
def build_sort_name(n):
|
2001-12-16 05:46:43 +05:30
|
|
|
"""Builds a name from a RelLib.Name instance that is suitable for
|
|
|
|
use as a sort key in a GtkCList. The name is converted to upper case
|
|
|
|
to provide for case-insenstive sorting"""
|
2001-09-09 01:42:38 +05:30
|
|
|
return "%-25s%-30s%s" % \
|
|
|
|
(string.upper(n.Surname),string.upper(n.FirstName),string.upper(n.Suffix))
|
2001-05-13 07:26:57 +05:30
|
|
|
|
2001-12-16 05:46:43 +05:30
|
|
|
def build_sort_date(n):
|
|
|
|
"""Builds a date from a Date.Date instance that is suitable for
|
|
|
|
use as a sort key in a GtkCList. The resultant string is in the format
|
|
|
|
of YYYYMMDD. Unknown values are given as all nines, so that the
|
|
|
|
appear at the end"""
|
2001-08-06 08:30:01 +05:30
|
|
|
y = n.start.year
|
2001-11-26 03:23:10 +05:30
|
|
|
if y < 0:
|
2001-07-06 05:34:20 +05:30
|
|
|
y = 9999
|
2001-08-06 08:30:01 +05:30
|
|
|
m = n.start.month
|
2001-11-26 03:23:10 +05:30
|
|
|
if m < 0:
|
2001-07-06 05:34:20 +05:30
|
|
|
m = 99
|
2001-08-06 08:30:01 +05:30
|
|
|
d = n.start.day
|
2001-11-26 03:23:10 +05:30
|
|
|
if d < 0:
|
2001-07-06 05:34:20 +05:30
|
|
|
d = 99
|
2001-10-15 02:17:38 +05:30
|
|
|
return "%04d%02d%02d" % (y,m,d)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
2001-12-16 05:46:43 +05:30
|
|
|
def by_last_name(first, second):
|
|
|
|
"""Sort routine for comparing two last names. If last names are equal,
|
|
|
|
uses the given name and suffix"""
|
|
|
|
u = string.upper
|
|
|
|
name1 = first.PrimaryName
|
|
|
|
name2 = second.PrimaryName
|
2001-05-13 07:26:57 +05:30
|
|
|
|
2001-12-16 05:46:43 +05:30
|
|
|
fsn = u(name1.Surname)
|
|
|
|
ssn = u(name2.Surname)
|
2001-08-17 04:54:53 +05:30
|
|
|
|
2001-09-19 05:13:53 +05:30
|
|
|
if fsn == ssn :
|
2001-12-16 05:46:43 +05:30
|
|
|
ffn = u(name1.FirstName)
|
|
|
|
sfn = u(name2.FirstName)
|
2001-08-17 04:54:53 +05:30
|
|
|
if ffn == sfn :
|
2001-12-16 05:46:43 +05:30
|
|
|
return cmp(u(name1.Suffix), u(name2.Suffix))
|
2001-07-06 05:34:20 +05:30
|
|
|
else :
|
2001-08-17 04:54:53 +05:30
|
|
|
return cmp(ffn, sfn)
|
2001-07-06 05:34:20 +05:30
|
|
|
else :
|
2001-08-17 04:54:53 +05:30
|
|
|
return cmp(fsn, ssn)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
2001-10-20 20:33:23 +05:30
|
|
|
def by_birthdate(first, second) :
|
2001-12-16 05:46:43 +05:30
|
|
|
"""Sort routine for comparing two people by birth dates. If the birth dates
|
|
|
|
are equal, sorts by name"""
|
2001-10-20 20:33:23 +05:30
|
|
|
date1 = first.getBirth().getDateObj()
|
|
|
|
date2 = second.getBirth().getDateObj()
|
2001-12-16 05:46:43 +05:30
|
|
|
val = Date.compare_dates(date1,date2)
|
2001-10-20 20:33:23 +05:30
|
|
|
if val == 0:
|
|
|
|
return by_last_name(first,second)
|
|
|
|
return val
|