2001-05-13 01:56:57 +00:00
|
|
|
#
|
|
|
|
# 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 00:16:43 +00:00
|
|
|
"""
|
|
|
|
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 01:56:57 +00:00
|
|
|
|
2001-12-16 00:16:43 +00:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Imported Modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-08-02 23:05:51 +00:00
|
|
|
import string
|
2001-12-16 00:16:43 +00:00
|
|
|
import Date
|
2001-05-13 01:56:57 +00:00
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2001-12-16 00:16:43 +00:00
|
|
|
# Functions
|
2001-05-13 01:56:57 +00:00
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-12-16 00:16:43 +00:00
|
|
|
|
2001-08-06 03:00:01 +00:00
|
|
|
def build_sort_name(n):
|
2001-12-16 00:16:43 +00:00
|
|
|
"""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-08 20:12:38 +00:00
|
|
|
return "%-25s%-30s%s" % \
|
|
|
|
(string.upper(n.Surname),string.upper(n.FirstName),string.upper(n.Suffix))
|
2001-05-13 01:56:57 +00:00
|
|
|
|
2001-12-16 00:16:43 +00:00
|
|
|
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 03:00:01 +00:00
|
|
|
y = n.start.year
|
2001-11-25 21:53:10 +00:00
|
|
|
if y < 0:
|
2001-07-06 00:04:20 +00:00
|
|
|
y = 9999
|
2001-08-06 03:00:01 +00:00
|
|
|
m = n.start.month
|
2001-11-25 21:53:10 +00:00
|
|
|
if m < 0:
|
2001-07-06 00:04:20 +00:00
|
|
|
m = 99
|
2001-08-06 03:00:01 +00:00
|
|
|
d = n.start.day
|
2001-11-25 21:53:10 +00:00
|
|
|
if d < 0:
|
2001-07-06 00:04:20 +00:00
|
|
|
d = 99
|
2001-10-14 20:47:38 +00:00
|
|
|
return "%04d%02d%02d" % (y,m,d)
|
2001-05-13 01:56:57 +00:00
|
|
|
|
2001-12-16 00:16:43 +00:00
|
|
|
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 01:56:57 +00:00
|
|
|
|
2001-12-16 00:16:43 +00:00
|
|
|
fsn = u(name1.Surname)
|
|
|
|
ssn = u(name2.Surname)
|
2001-08-16 23:24:53 +00:00
|
|
|
|
2001-09-18 23:43:53 +00:00
|
|
|
if fsn == ssn :
|
2001-12-16 00:16:43 +00:00
|
|
|
ffn = u(name1.FirstName)
|
|
|
|
sfn = u(name2.FirstName)
|
2001-08-16 23:24:53 +00:00
|
|
|
if ffn == sfn :
|
2001-12-16 00:16:43 +00:00
|
|
|
return cmp(u(name1.Suffix), u(name2.Suffix))
|
2001-07-06 00:04:20 +00:00
|
|
|
else :
|
2001-08-16 23:24:53 +00:00
|
|
|
return cmp(ffn, sfn)
|
2001-07-06 00:04:20 +00:00
|
|
|
else :
|
2001-08-16 23:24:53 +00:00
|
|
|
return cmp(fsn, ssn)
|
2001-05-13 01:56:57 +00:00
|
|
|
|
2001-10-20 15:03:23 +00:00
|
|
|
def by_birthdate(first, second) :
|
2001-12-16 00:16:43 +00:00
|
|
|
"""Sort routine for comparing two people by birth dates. If the birth dates
|
|
|
|
are equal, sorts by name"""
|
2001-10-20 15:03:23 +00:00
|
|
|
date1 = first.getBirth().getDateObj()
|
|
|
|
date2 = second.getBirth().getDateObj()
|
2001-12-16 00:16:43 +00:00
|
|
|
val = Date.compare_dates(date1,date2)
|
2001-10-20 15:03:23 +00:00
|
|
|
if val == 0:
|
|
|
|
return by_last_name(first,second)
|
|
|
|
return val
|