2006-02-04 03:33:53 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2007-09-21 01:29:46 +05:30
|
|
|
# Copyright (C) 2000-2007 Donald N. Allingham
|
2006-02-04 03:33:53 +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.
|
|
|
|
#
|
2006-04-08 11:26:31 +05:30
|
|
|
# This program is distributed in the hope that it will be useful,
|
2006-02-04 03:33:53 +05:30
|
|
|
# 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$
|
|
|
|
|
2008-02-24 19:25:55 +05:30
|
|
|
"""Support for dates."""
|
2006-02-04 03:33:53 +05:30
|
|
|
|
2007-09-21 01:29:46 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2006-04-07 03:32:46 +05:30
|
|
|
from gettext import gettext as _
|
2007-09-21 01:29:46 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Set up logging
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import logging
|
|
|
|
log = logging.getLogger(".Date")
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Gnome/GTK modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Gramps modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2008-02-19 01:37:09 +05:30
|
|
|
from gen.lib.calendar import (gregorian_sdn, julian_sdn, hebrew_sdn,
|
|
|
|
french_sdn, persian_sdn, islamic_sdn,
|
|
|
|
gregorian_ymd, julian_ymd, hebrew_ymd,
|
|
|
|
french_ymd, persian_ymd, islamic_ymd)
|
2007-11-25 23:43:19 +05:30
|
|
|
import Config
|
2007-09-21 01:29:46 +05:30
|
|
|
|
2006-02-04 03:33:53 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# DateError exception
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class DateError(Exception):
|
2008-02-24 19:25:55 +05:30
|
|
|
"""Error used to report Date errors."""
|
2006-04-08 11:26:31 +05:30
|
|
|
def __init__(self, value=""):
|
2006-02-04 03:33:53 +05:30
|
|
|
Exception.__init__(self)
|
|
|
|
self.value = value
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.value
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Date class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class Date:
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
The core date handling class for GRAMPs.
|
|
|
|
|
|
|
|
Supports partial dates, compound dates and alternate calendars.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-04-08 09:54:18 +05:30
|
|
|
MOD_NONE = 0 # CODE
|
2006-02-04 03:33:53 +05:30
|
|
|
MOD_BEFORE = 1
|
|
|
|
MOD_AFTER = 2
|
|
|
|
MOD_ABOUT = 3
|
|
|
|
MOD_RANGE = 4
|
|
|
|
MOD_SPAN = 5
|
|
|
|
MOD_TEXTONLY = 6
|
|
|
|
|
2008-04-08 09:54:18 +05:30
|
|
|
QUAL_NONE = 0 # BITWISE
|
|
|
|
QUAL_ESTIMATED = 1
|
|
|
|
QUAL_CALCULATED = 2
|
|
|
|
QUAL_INTERPRETED = 4
|
2006-02-04 03:33:53 +05:30
|
|
|
|
2008-04-08 09:54:18 +05:30
|
|
|
CAL_GREGORIAN = 0 # CODE
|
2006-02-04 03:33:53 +05:30
|
|
|
CAL_JULIAN = 1
|
|
|
|
CAL_HEBREW = 2
|
|
|
|
CAL_FRENCH = 3
|
|
|
|
CAL_PERSIAN = 4
|
|
|
|
CAL_ISLAMIC = 5
|
|
|
|
|
2008-04-08 09:54:18 +05:30
|
|
|
NEWYEAR_JAN1 = 0 # CODE
|
|
|
|
NEWYEAR_MAR1 = 1
|
|
|
|
NEWYEAR_MAR25 = 2
|
|
|
|
NEWYEAR_SEP1 = 3
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
EMPTY = (0, 0, 0, False)
|
2006-02-04 03:33:53 +05:30
|
|
|
|
|
|
|
_POS_DAY = 0
|
|
|
|
_POS_MON = 1
|
|
|
|
_POS_YR = 2
|
|
|
|
_POS_SL = 3
|
|
|
|
_POS_RDAY = 4
|
|
|
|
_POS_RMON = 5
|
|
|
|
_POS_RYR = 6
|
|
|
|
_POS_RSL = 7
|
|
|
|
|
|
|
|
_calendar_convert = [
|
2006-04-08 11:26:31 +05:30
|
|
|
gregorian_sdn,
|
|
|
|
julian_sdn,
|
|
|
|
hebrew_sdn,
|
|
|
|
french_sdn,
|
|
|
|
persian_sdn,
|
|
|
|
islamic_sdn,
|
2006-02-04 03:33:53 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
_calendar_change = [
|
2006-04-08 11:26:31 +05:30
|
|
|
gregorian_ymd,
|
|
|
|
julian_ymd,
|
|
|
|
hebrew_ymd,
|
|
|
|
french_ymd,
|
|
|
|
persian_ymd,
|
|
|
|
islamic_ymd,
|
2006-02-04 03:33:53 +05:30
|
|
|
]
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
calendar_names = ["Gregorian",
|
|
|
|
"Julian",
|
|
|
|
"Hebrew",
|
|
|
|
"French Republican",
|
|
|
|
"Persian",
|
2006-02-04 03:33:53 +05:30
|
|
|
"Islamic"]
|
|
|
|
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
ui_calendar_names = [_("Gregorian"),
|
|
|
|
_("Julian"),
|
|
|
|
_("Hebrew"),
|
|
|
|
_("French Republican"),
|
|
|
|
_("Persian"),
|
2006-02-04 03:33:53 +05:30
|
|
|
_("Islamic")]
|
|
|
|
|
2008-02-19 10:52:50 +05:30
|
|
|
def __init__(self, *source, **kwargs):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Create a new Date instance.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
calendar = kwargs.get("calendar", None)
|
|
|
|
modifier = kwargs.get("modifier", None)
|
|
|
|
quality = kwargs.get("quality", None)
|
2007-12-31 22:13:58 +05:30
|
|
|
#### setup None, Date, or numbers
|
|
|
|
if len(source) == 0:
|
|
|
|
source = None
|
|
|
|
elif len(source) == 1:
|
|
|
|
if type(source[0]) == int:
|
|
|
|
source = (source[0], 0, 0)
|
|
|
|
else:
|
|
|
|
source = source[0]
|
|
|
|
elif len(source) == 2:
|
|
|
|
source = (source[0], source[1], 0)
|
|
|
|
elif len(source) == 3:
|
|
|
|
pass # source is ok
|
|
|
|
else:
|
|
|
|
raise AttributeError, "invalid args to Date: %s" % source
|
|
|
|
#### ok, process either date or tuple
|
|
|
|
if type(source) == tuple:
|
2008-02-19 10:52:50 +05:30
|
|
|
if calendar == None:
|
|
|
|
self.calendar = Date.CAL_GREGORIAN
|
|
|
|
else:
|
|
|
|
self.calendar = self.lookup_calendar(calendar)
|
|
|
|
if modifier == None:
|
|
|
|
self.modifier = Date.MOD_NONE
|
|
|
|
else:
|
|
|
|
self.modifier = self.lookup_modifier(modifier)
|
|
|
|
if quality == None:
|
|
|
|
self.quality = Date.QUAL_NONE
|
|
|
|
else:
|
|
|
|
self.quality = self.lookup_quality(quality)
|
2007-12-31 22:13:58 +05:30
|
|
|
self.dateval = Date.EMPTY
|
|
|
|
self.text = u""
|
|
|
|
self.sortval = 0
|
2008-04-08 09:54:18 +05:30
|
|
|
self.newyear = 0
|
2007-12-31 22:13:58 +05:30
|
|
|
self.set_yr_mon_day(*source)
|
2008-04-17 17:45:48 +05:30
|
|
|
elif type(source) == str and source != "":
|
2008-02-19 11:30:51 +05:30
|
|
|
if (calendar != None or
|
|
|
|
modifier != None or
|
|
|
|
quality != None):
|
2008-02-24 19:25:55 +05:30
|
|
|
raise AttributeError("can't set calendar, modifier, or "
|
|
|
|
"quality with string date")
|
2008-02-19 10:52:50 +05:30
|
|
|
import DateHandler
|
|
|
|
source = DateHandler.parser.parse(source)
|
2008-02-19 11:30:51 +05:30
|
|
|
self.calendar = source.calendar
|
2008-02-19 10:52:50 +05:30
|
|
|
self.modifier = source.modifier
|
|
|
|
self.quality = source.quality
|
|
|
|
self.dateval = source.dateval
|
|
|
|
self.text = source.text
|
|
|
|
self.sortval = source.sortval
|
2008-04-08 09:54:18 +05:30
|
|
|
self.newyear = source.newyear
|
2007-12-31 22:13:58 +05:30
|
|
|
elif source:
|
2006-02-04 03:33:53 +05:30
|
|
|
self.calendar = source.calendar
|
|
|
|
self.modifier = source.modifier
|
|
|
|
self.quality = source.quality
|
|
|
|
self.dateval = source.dateval
|
|
|
|
self.text = source.text
|
|
|
|
self.sortval = source.sortval
|
2008-04-08 09:54:18 +05:30
|
|
|
self.newyear = source.newyear
|
2006-02-04 03:33:53 +05:30
|
|
|
else:
|
|
|
|
self.calendar = Date.CAL_GREGORIAN
|
|
|
|
self.modifier = Date.MOD_NONE
|
|
|
|
self.quality = Date.QUAL_NONE
|
|
|
|
self.dateval = Date.EMPTY
|
|
|
|
self.text = u""
|
|
|
|
self.sortval = 0
|
2008-04-08 09:54:18 +05:30
|
|
|
self.newyear = Date.NEWYEAR_JAN1
|
2006-02-04 03:33:53 +05:30
|
|
|
|
2006-09-09 22:40:13 +05:30
|
|
|
def serialize(self, no_text_date=False):
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Convert to a series of tuples for data storage.
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2006-09-09 22:40:13 +05:30
|
|
|
if no_text_date:
|
|
|
|
text = u''
|
|
|
|
else:
|
|
|
|
text = self.text
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
return (self.calendar, self.modifier, self.quality,
|
2008-04-08 09:54:18 +05:30
|
|
|
self.dateval, text, self.sortval, self.newyear)
|
2006-02-04 03:33:53 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def unserialize(self, data):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Load from the format created by serialize.
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
|
|
|
(self.calendar, self.modifier, self.quality,
|
2008-04-08 09:54:18 +05:30
|
|
|
self.dateval, self.text, self.sortval, self.newyear) = data
|
2006-02-04 03:33:53 +05:30
|
|
|
return self
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def copy(self, source):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Copy all the attributes of the given Date instance to the present
|
|
|
|
instance, without creating a new object.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
self.calendar = source.calendar
|
|
|
|
self.modifier = source.modifier
|
|
|
|
self.quality = source.quality
|
|
|
|
self.dateval = source.dateval
|
|
|
|
self.text = source.text
|
|
|
|
self.sortval = source.sortval
|
2008-04-08 09:54:18 +05:30
|
|
|
self.newyear = source.newyear
|
2006-02-04 03:33:53 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def __cmp__(self, other):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Compare two dates.
|
|
|
|
|
2006-02-04 03:33:53 +05:30
|
|
|
Comparison function. Allows the usage of equality tests.
|
|
|
|
This allows you do run statements like 'date1 <= date2'
|
|
|
|
"""
|
2006-04-08 11:26:31 +05:30
|
|
|
if isinstance(other, Date):
|
|
|
|
return cmp(self.sortval, other.sortval)
|
2006-02-04 03:33:53 +05:30
|
|
|
else:
|
|
|
|
return -1
|
|
|
|
|
2007-12-31 22:13:58 +05:30
|
|
|
def __add__(self, other):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Date arithmetic: Date() + years, or Date() + (years, [months, [days]]).
|
2007-12-31 22:13:58 +05:30
|
|
|
"""
|
|
|
|
if type(other) == int:
|
|
|
|
return self.copy_offset_ymd(other)
|
|
|
|
elif type(other) in [tuple, list]:
|
|
|
|
return self.copy_offset_ymd(*other)
|
|
|
|
else:
|
|
|
|
raise AttributeError, "unknown date add type: %s " % type(other)
|
|
|
|
|
|
|
|
def __radd__(self, other):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Add a number + Date() or (years, months, days) + Date().
|
2007-12-31 22:13:58 +05:30
|
|
|
"""
|
|
|
|
return self + other
|
|
|
|
|
|
|
|
def __sub__(self, other):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Date arithmetic: Date() - years, Date - (y,m,d), or Date() - Date().
|
2007-12-31 22:13:58 +05:30
|
|
|
"""
|
2008-02-17 23:23:43 +05:30
|
|
|
if type(other) == int: # Date - value -> Date
|
2007-12-31 22:13:58 +05:30
|
|
|
return self.copy_offset_ymd(-other)
|
2008-02-17 23:23:43 +05:30
|
|
|
elif type(other) in [tuple, list]: # Date - (y, m, d) -> Date
|
|
|
|
return self.copy_offset_ymd(*map(lambda x: -x, other))
|
|
|
|
elif type(other) == type(self): # Date1 - Date2 -> tuple
|
|
|
|
# We should make sure that Date2 + tuple -> Date1 and
|
|
|
|
# Date1 - tuple -> Date2
|
2008-01-05 08:32:56 +05:30
|
|
|
d1 = map(lambda i: i or 1, self.get_ymd())
|
|
|
|
d2 = map(lambda i: i or 1, other.get_ymd())
|
2008-02-17 23:23:43 +05:30
|
|
|
date1 = self
|
|
|
|
date2 = other
|
2008-01-01 02:53:48 +05:30
|
|
|
if d1 < d2:
|
|
|
|
d1, d2 = d2, d1
|
2008-02-17 23:23:43 +05:30
|
|
|
date1, date2 = date2, date1
|
2008-02-19 11:30:51 +05:30
|
|
|
# d1 - d2 (1998, 12, 32) - (1982, 12, 15)
|
|
|
|
if self.calendar != other.calendar:
|
|
|
|
diff = date1.sortval - date2.sortval
|
|
|
|
return (diff/365, (diff % 365)/30, (diff % 365) % 30)
|
2008-01-05 08:32:56 +05:30
|
|
|
# days:
|
|
|
|
if d2[2] > d1[2]:
|
|
|
|
# months:
|
|
|
|
if d2[1] > d1[1]:
|
|
|
|
d1[0] -= 1
|
|
|
|
d1[1] += 12
|
|
|
|
d1[1] -= 1
|
|
|
|
d1[2] += 31
|
|
|
|
# months:
|
|
|
|
if d2[1] > d1[1]:
|
|
|
|
d1[0] -= 1 # from years
|
|
|
|
d1[1] += 12 # to months
|
2008-01-01 02:53:48 +05:30
|
|
|
days = d1[2] - d2[2]
|
|
|
|
months = d1[1] - d2[1]
|
|
|
|
years = d1[0] - d2[0]
|
2008-02-17 23:23:43 +05:30
|
|
|
if days > 31:
|
2008-01-03 19:48:18 +05:30
|
|
|
months += days / 31
|
|
|
|
days = days % 31
|
2008-01-05 08:32:56 +05:30
|
|
|
if months > 12:
|
2008-01-03 19:48:18 +05:30
|
|
|
years += months / 12
|
|
|
|
months = months % 12
|
2008-02-17 23:23:43 +05:30
|
|
|
# estimate: (years, months, days)
|
|
|
|
# Check transitivity:
|
|
|
|
eDate = date1 - (years, months, days)
|
|
|
|
if eDate < date2: # too small
|
|
|
|
diff = 0
|
|
|
|
while eDate < date2 and diff < 60:
|
|
|
|
diff += 1
|
|
|
|
eDate = eDate + (0, 0, diff)
|
|
|
|
if diff == 60:
|
2008-02-24 06:28:33 +05:30
|
|
|
return None
|
2008-02-17 23:23:43 +05:30
|
|
|
return (years, months, days - diff)
|
|
|
|
elif eDate > date2:
|
|
|
|
diff = 0
|
|
|
|
while eDate > date2 and diff > -60:
|
|
|
|
diff -= 1
|
|
|
|
eDate = eDate - (0, 0, abs(diff))
|
|
|
|
if diff == -60:
|
2008-02-24 06:28:33 +05:30
|
|
|
return None
|
2008-02-17 23:23:43 +05:30
|
|
|
return (years, months, days + diff)
|
|
|
|
else:
|
|
|
|
return (years, months, days)
|
2007-12-31 22:13:58 +05:30
|
|
|
else:
|
|
|
|
raise AttributeError, "unknown date sub type: %s " % type(other)
|
|
|
|
|
2008-02-17 23:34:36 +05:30
|
|
|
# Can't use this (as is) as this breaks comparing dates to None
|
|
|
|
#def __eq__(self, other):
|
|
|
|
# return self.sortval == other.sortval
|
2008-02-17 23:23:43 +05:30
|
|
|
|
2008-01-03 19:48:18 +05:30
|
|
|
def __lt__(self, other):
|
2008-04-17 17:45:48 +05:30
|
|
|
"""
|
|
|
|
Comparison for less than.
|
|
|
|
"""
|
|
|
|
return self.match(other, comparison="<")
|
2008-01-03 19:48:18 +05:30
|
|
|
|
|
|
|
def __gt__(self, other):
|
2008-04-17 17:45:48 +05:30
|
|
|
"""
|
|
|
|
Comparison for greater than.
|
|
|
|
"""
|
|
|
|
return self.match(other, comparison=">")
|
2008-01-03 19:48:18 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def is_equal(self, other):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
Return 1 if the given Date instance is the same as the present
|
2008-02-24 19:25:55 +05:30
|
|
|
instance IN ALL REGARDS.
|
|
|
|
|
|
|
|
Needed, because the __cmp__ only looks at the sorting value, and
|
|
|
|
ignores the modifiers/comments.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
if self.modifier == other.modifier \
|
|
|
|
and self.modifier == Date.MOD_TEXTONLY:
|
|
|
|
value = self.text == other.text
|
|
|
|
else:
|
|
|
|
value = (self.calendar == other.calendar and
|
|
|
|
self.modifier == other.modifier and
|
|
|
|
self.quality == other.quality and
|
|
|
|
self.dateval == other.dateval)
|
|
|
|
return value
|
2007-09-21 01:29:46 +05:30
|
|
|
|
|
|
|
def get_start_stop_range(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the minimal start_date, and a maximal stop_date corresponding
|
|
|
|
to this date, given in Gregorian calendar.
|
|
|
|
|
2007-09-21 01:29:46 +05:30
|
|
|
Useful in doing range overlap comparisons between different dates.
|
|
|
|
|
|
|
|
Note that we stay in (YR,MON,DAY)
|
|
|
|
"""
|
|
|
|
|
|
|
|
def yr_mon_day(dateval):
|
2008-02-24 19:25:55 +05:30
|
|
|
"""
|
|
|
|
Local function to swap order for easy comparisons, and correct
|
|
|
|
year of slash date.
|
|
|
|
|
|
|
|
Slash date is given as year1/year2, where year1 is Julian year,
|
|
|
|
and year2=year1+1 the Gregorian year.
|
2008-02-25 11:16:45 +05:30
|
|
|
|
|
|
|
Slash date is already taken care of.
|
2007-09-21 01:29:46 +05:30
|
|
|
"""
|
2008-02-25 11:16:45 +05:30
|
|
|
return (dateval[Date._POS_YR], dateval[Date._POS_MON],
|
|
|
|
dateval[Date._POS_DAY])
|
2007-09-21 01:29:46 +05:30
|
|
|
def date_offset(dateval, offset):
|
2008-02-24 19:25:55 +05:30
|
|
|
"""
|
|
|
|
Local function to do date arithmetic: add the offset, return
|
|
|
|
(year,month,day) in the Gregorian calendar.
|
2007-09-21 01:29:46 +05:30
|
|
|
"""
|
|
|
|
new_date = Date()
|
|
|
|
new_date.set_yr_mon_day(dateval[0], dateval[1], dateval[2])
|
2007-10-17 09:37:26 +05:30
|
|
|
return new_date.offset(offset)
|
2007-09-21 01:29:46 +05:30
|
|
|
|
|
|
|
datecopy = Date(self)
|
|
|
|
#we do all calculation in Gregorian calendar
|
|
|
|
datecopy.convert_calendar(Date.CAL_GREGORIAN)
|
|
|
|
start = yr_mon_day(datecopy.get_start_date())
|
|
|
|
stop = yr_mon_day(datecopy.get_stop_date())
|
|
|
|
|
|
|
|
if stop == (0, 0, 0):
|
|
|
|
stop = start
|
|
|
|
|
|
|
|
stopmax = list(stop)
|
|
|
|
if stopmax[0] == 0: # then use start_year, if one
|
|
|
|
stopmax[0] = start[Date._POS_YR]
|
|
|
|
if stopmax[1] == 0:
|
|
|
|
stopmax[1] = 12
|
|
|
|
if stopmax[2] == 0:
|
|
|
|
stopmax[2] = 31
|
|
|
|
startmin = list(start)
|
|
|
|
if startmin[1] == 0:
|
|
|
|
startmin[1] = 1
|
|
|
|
if startmin[2] == 0:
|
|
|
|
startmin[2] = 1
|
|
|
|
# if BEFORE, AFTER, or ABOUT/EST, adjust:
|
|
|
|
if self.modifier == Date.MOD_BEFORE:
|
|
|
|
stopmax = date_offset(startmin, -1)
|
2007-11-25 23:43:19 +05:30
|
|
|
fdiff = Config.get(Config.DATE_BEFORE_RANGE)
|
2007-09-21 02:54:22 +05:30
|
|
|
startmin = (stopmax[0] - fdiff, stopmax[1], stopmax[2])
|
2007-09-21 01:29:46 +05:30
|
|
|
elif self.modifier == Date.MOD_AFTER:
|
|
|
|
startmin = date_offset(stopmax, 1)
|
2007-11-25 23:43:19 +05:30
|
|
|
fdiff = Config.get(Config.DATE_AFTER_RANGE)
|
2007-09-21 02:54:22 +05:30
|
|
|
stopmax = (startmin[0] + fdiff, startmin[1], startmin[2])
|
2007-09-21 01:29:46 +05:30
|
|
|
elif (self.modifier == Date.MOD_ABOUT or
|
|
|
|
self.quality == Date.QUAL_ESTIMATED):
|
2007-11-25 23:43:19 +05:30
|
|
|
fdiff = Config.get(Config.DATE_ABOUT_RANGE)
|
2007-09-21 02:54:22 +05:30
|
|
|
startmin = (startmin[0] - fdiff, startmin[1], startmin[2])
|
|
|
|
stopmax = (stopmax[0] + fdiff, stopmax[1], stopmax[2])
|
2007-09-21 01:29:46 +05:30
|
|
|
# return tuples not lists, for comparisons
|
|
|
|
return (tuple(startmin), tuple(stopmax))
|
|
|
|
|
2007-11-22 01:35:18 +05:30
|
|
|
def match(self, other_date, comparison="="):
|
2007-09-21 01:29:46 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Compare two dates using sophisticated techniques looking for any match
|
|
|
|
between two possible dates, date spans and qualities.
|
|
|
|
|
|
|
|
The other comparisons for Date (is_equal() and __cmp() don't actually
|
|
|
|
look for anything other than a straight match, or a simple comparison
|
|
|
|
of the sortval.
|
2007-11-22 01:35:18 +05:30
|
|
|
|
|
|
|
comparison =,== :
|
|
|
|
Returns True if any part of other_date matches any part of self
|
|
|
|
comparison < :
|
|
|
|
Returns True if any part of other_date < any part of self
|
|
|
|
comparison << :
|
|
|
|
Returns True if all parts of other_date < all parts of self
|
|
|
|
comparison > :
|
|
|
|
Returns True if any part of other_date > any part of self
|
|
|
|
comparison >> :
|
|
|
|
Returns True if all parts of other_date > all parts of self
|
2007-09-21 01:29:46 +05:30
|
|
|
"""
|
2008-04-17 17:45:48 +05:30
|
|
|
if (self.sortval == 0 or other_date.sortval == 0):
|
|
|
|
return False
|
|
|
|
elif (other_date.modifier == Date.MOD_TEXTONLY or
|
2007-09-21 01:29:46 +05:30
|
|
|
self.modifier == Date.MOD_TEXTONLY):
|
2007-11-22 01:35:18 +05:30
|
|
|
if comparison in ["=", "=="]:
|
|
|
|
return (self.text.upper().find(other_date.text.upper()) != -1)
|
|
|
|
else:
|
|
|
|
return False
|
2007-09-21 01:29:46 +05:30
|
|
|
|
|
|
|
# Obtain minimal start and maximal stop in Gregorian calendar
|
|
|
|
other_start, other_stop = other_date.get_start_stop_range()
|
2007-11-22 01:35:18 +05:30
|
|
|
self_start, self_stop = self.get_start_stop_range()
|
|
|
|
|
|
|
|
if comparison in ["=", "=="]:
|
|
|
|
# If some overlap then match is True, otherwise False.
|
|
|
|
return ((self_start <= other_start <= self_stop) or
|
|
|
|
(self_start <= other_stop <= self_stop) or
|
|
|
|
(other_start <= self_start <= other_stop) or
|
|
|
|
(other_start <= self_stop <= other_stop))
|
|
|
|
elif comparison == "<":
|
|
|
|
# If any < any
|
|
|
|
return self_start < other_stop
|
|
|
|
elif comparison == "<<":
|
|
|
|
# If all < all
|
|
|
|
return self_stop < other_start
|
|
|
|
elif comparison == ">":
|
|
|
|
# If any > any
|
|
|
|
return self_stop > other_start
|
|
|
|
elif comparison == ">>":
|
|
|
|
# If all > all
|
|
|
|
return self_start > other_stop
|
|
|
|
else:
|
2008-02-19 10:52:50 +05:30
|
|
|
raise AttributeError, ("invalid match comparison operator: '%s'" %
|
|
|
|
comparison)
|
2006-02-04 03:33:53 +05:30
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Produce a string representation of the Date object.
|
|
|
|
|
|
|
|
If the date is not valid, the text representation is displayed. If
|
2006-02-04 03:33:53 +05:30
|
|
|
the date is a range or a span, a string in the form of
|
|
|
|
'YYYY-MM-DD - YYYY-MM-DD' is returned. Otherwise, a string in
|
|
|
|
the form of 'YYYY-MM-DD' is returned.
|
|
|
|
"""
|
|
|
|
if self.quality == Date.QUAL_ESTIMATED:
|
|
|
|
qual = "est "
|
|
|
|
elif self.quality == Date.QUAL_CALCULATED:
|
|
|
|
qual = "calc "
|
|
|
|
else:
|
|
|
|
qual = ""
|
|
|
|
|
|
|
|
if self.modifier == Date.MOD_BEFORE:
|
|
|
|
pref = "bef "
|
|
|
|
elif self.modifier == Date.MOD_AFTER:
|
|
|
|
pref = "aft "
|
|
|
|
elif self.modifier == Date.MOD_ABOUT:
|
|
|
|
pref = "abt "
|
|
|
|
else:
|
|
|
|
pref = ""
|
|
|
|
|
|
|
|
if self.calendar != Date.CAL_GREGORIAN:
|
|
|
|
cal = " (%s)" % Date.calendar_names[self.calendar]
|
|
|
|
else:
|
|
|
|
cal = ""
|
|
|
|
|
|
|
|
if self.modifier == Date.MOD_TEXTONLY:
|
|
|
|
val = self.text
|
|
|
|
elif self.modifier == Date.MOD_RANGE or self.modifier == Date.MOD_SPAN:
|
|
|
|
val = "%04d-%02d-%02d - %04d-%02d-%02d" % (
|
2006-04-08 11:26:31 +05:30
|
|
|
self.dateval[Date._POS_YR], self.dateval[Date._POS_MON],
|
|
|
|
self.dateval[Date._POS_DAY], self.dateval[Date._POS_RYR],
|
|
|
|
self.dateval[Date._POS_RMON], self.dateval[Date._POS_RDAY])
|
2006-02-04 03:33:53 +05:30
|
|
|
else:
|
|
|
|
val = "%04d-%02d-%02d" % (
|
2006-04-08 11:26:31 +05:30
|
|
|
self.dateval[Date._POS_YR], self.dateval[Date._POS_MON],
|
2006-02-04 03:33:53 +05:30
|
|
|
self.dateval[Date._POS_DAY])
|
2006-04-08 11:26:31 +05:30
|
|
|
return "%s%s%s%s" % (qual, pref, val, cal)
|
2006-02-04 03:33:53 +05:30
|
|
|
|
|
|
|
def get_sort_value(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the sort value of Date object.
|
|
|
|
|
|
|
|
If the value is a text string, 0 is returned. Otherwise, the
|
|
|
|
calculated sort date is returned. The sort date is rebuilt on every
|
|
|
|
assignment.
|
2006-02-04 03:33:53 +05:30
|
|
|
|
2008-03-10 01:21:36 +05:30
|
|
|
The sort value is an integer representing the value. The sortval is
|
|
|
|
the integer number of days that have elapsed since Monday, January 1,
|
|
|
|
4713 BC in the proleptic Julian calendar.
|
|
|
|
See http://en.wikipedia.org/wiki/Julian_day
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
return self.sortval
|
|
|
|
|
|
|
|
def get_modifier(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return an integer indicating the calendar selected.
|
|
|
|
|
|
|
|
The valid values are::
|
2006-02-04 03:33:53 +05:30
|
|
|
|
|
|
|
MOD_NONE = no modifier (default)
|
|
|
|
MOD_BEFORE = before
|
|
|
|
MOD_AFTER = after
|
|
|
|
MOD_ABOUT = about
|
|
|
|
MOD_RANGE = date range
|
|
|
|
MOD_SPAN = date span
|
|
|
|
MOD_TEXTONLY = text only
|
|
|
|
"""
|
|
|
|
return self.modifier
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def set_modifier(self, val):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Set the modifier for the date.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2006-04-08 11:26:31 +05:30
|
|
|
if val not in (Date.MOD_NONE, Date.MOD_BEFORE, Date.MOD_AFTER,
|
|
|
|
Date.MOD_ABOUT, Date.MOD_RANGE, Date.MOD_SPAN,
|
2006-02-04 03:33:53 +05:30
|
|
|
Date.MOD_TEXTONLY):
|
|
|
|
raise DateError("Invalid modifier")
|
|
|
|
self.modifier = val
|
|
|
|
|
|
|
|
def get_quality(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return an integer indicating the calendar selected.
|
|
|
|
|
|
|
|
The valid values are::
|
2006-02-04 03:33:53 +05:30
|
|
|
|
|
|
|
QUAL_NONE = normal (default)
|
|
|
|
QUAL_ESTIMATED = estimated
|
|
|
|
QUAL_CALCULATED = calculated
|
|
|
|
"""
|
|
|
|
return self.quality
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def set_quality(self, val):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Set the quality selected for the date.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2006-04-08 11:26:31 +05:30
|
|
|
if val not in (Date.QUAL_NONE, Date.QUAL_ESTIMATED,
|
2006-02-04 03:33:53 +05:30
|
|
|
Date.QUAL_CALCULATED):
|
|
|
|
raise DateError("Invalid quality")
|
|
|
|
self.quality = val
|
|
|
|
|
|
|
|
def get_calendar(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return an integer indicating the calendar selected.
|
|
|
|
|
|
|
|
The valid values are::
|
2006-02-04 03:33:53 +05:30
|
|
|
|
|
|
|
CAL_GREGORIAN - Gregorian calendar
|
|
|
|
CAL_JULIAN - Julian calendar
|
|
|
|
CAL_HEBREW - Hebrew (Jewish) calendar
|
|
|
|
CAL_FRENCH - French Republican calendar
|
|
|
|
CAL_PERSIAN - Persian calendar
|
|
|
|
CAL_ISLAMIC - Islamic calendar
|
|
|
|
"""
|
|
|
|
return self.calendar
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def set_calendar(self, val):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Set the calendar selected for the date.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2006-04-08 11:26:31 +05:30
|
|
|
if val not in (Date.CAL_GREGORIAN, Date.CAL_JULIAN, Date.CAL_HEBREW,
|
|
|
|
Date.CAL_FRENCH, Date.CAL_PERSIAN, Date.CAL_ISLAMIC):
|
2006-02-04 03:33:53 +05:30
|
|
|
raise DateError("Invalid calendar")
|
|
|
|
self.calendar = val
|
|
|
|
|
|
|
|
def get_start_date(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return a tuple representing the start date.
|
|
|
|
|
|
|
|
If the date is a compound date (range or a span), it is the first part
|
|
|
|
of the compound date. If the date is a text string, a tuple of
|
2006-04-08 11:26:31 +05:30
|
|
|
(0, 0, 0, False) is returned. Otherwise, a date of (DD, MM, YY, slash)
|
2006-02-04 03:33:53 +05:30
|
|
|
is returned. If slash is True, then the date is in the form of 1530/1.
|
|
|
|
"""
|
|
|
|
if self.modifier == Date.MOD_TEXTONLY:
|
|
|
|
val = Date.EMPTY
|
|
|
|
else:
|
|
|
|
val = self.dateval[0:4]
|
|
|
|
return val
|
|
|
|
|
|
|
|
def get_stop_date(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return a tuple representing the second half of a compound date.
|
|
|
|
|
2006-02-04 03:33:53 +05:30
|
|
|
If the date is not a compound date, (including text strings) a tuple
|
2006-04-08 11:26:31 +05:30
|
|
|
of (0, 0, 0, False) is returned. Otherwise, a date of (DD, MM, YY, slash)
|
2006-02-04 03:33:53 +05:30
|
|
|
is returned. If slash is True, then the date is in the form of 1530/1.
|
|
|
|
"""
|
|
|
|
if self.modifier == Date.MOD_RANGE or self.modifier == Date.MOD_SPAN:
|
|
|
|
val = self.dateval[4:8]
|
|
|
|
else:
|
|
|
|
val = Date.EMPTY
|
|
|
|
return val
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def _get_low_item(self, index):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the item specified.
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
if self.modifier == Date.MOD_TEXTONLY:
|
|
|
|
val = 0
|
|
|
|
else:
|
|
|
|
val = self.dateval[index]
|
|
|
|
return val
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def _get_low_item_valid(self, index):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Determine if the item specified is valid.
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
if self.modifier == Date.MOD_TEXTONLY:
|
|
|
|
val = False
|
|
|
|
else:
|
|
|
|
val = self.dateval[index] != 0
|
|
|
|
return val
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def _get_high_item(self, index):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the item specified.
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
if self.modifier == Date.MOD_SPAN or self.modifier == Date.MOD_RANGE:
|
|
|
|
val = self.dateval[index]
|
|
|
|
else:
|
|
|
|
val = 0
|
|
|
|
return val
|
|
|
|
|
|
|
|
def get_year(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the year associated with the date.
|
|
|
|
|
|
|
|
If the year is not defined, a zero is returned. If the date is a
|
|
|
|
compound date, the lower date year is returned.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
return self._get_low_item(Date._POS_YR)
|
|
|
|
|
2007-09-21 01:29:46 +05:30
|
|
|
def set_yr_mon_day(self, year, month, day):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Set the year, month, and day values.
|
2007-09-21 01:29:46 +05:30
|
|
|
"""
|
|
|
|
dv = list(self.dateval)
|
|
|
|
dv[Date._POS_YR] = year
|
|
|
|
dv[Date._POS_MON] = month
|
|
|
|
dv[Date._POS_DAY] = day
|
|
|
|
self.dateval = tuple(dv)
|
|
|
|
self._calc_sort_value()
|
|
|
|
|
2007-11-21 20:19:50 +05:30
|
|
|
def set_yr_mon_day_offset(self, year=0, month=0, day=0):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Set the year, month, and day values by offset.
|
2007-11-21 20:19:50 +05:30
|
|
|
"""
|
|
|
|
dv = list(self.dateval)
|
2007-11-21 20:41:14 +05:30
|
|
|
if dv[Date._POS_YR]:
|
|
|
|
dv[Date._POS_YR] += year
|
|
|
|
elif year:
|
|
|
|
dv[Date._POS_YR] = year
|
|
|
|
if dv[Date._POS_MON]:
|
|
|
|
dv[Date._POS_MON] += month
|
|
|
|
elif month:
|
2008-02-17 23:23:43 +05:30
|
|
|
if month < 0:
|
|
|
|
dv[Date._POS_MON] = 1 + month
|
|
|
|
else:
|
|
|
|
dv[Date._POS_MON] = month
|
2008-01-01 02:53:48 +05:30
|
|
|
# Fix if month out of bounds:
|
|
|
|
if month != 0: # only check if changed
|
2008-02-17 23:23:43 +05:30
|
|
|
if dv[Date._POS_MON] == 0: # subtraction
|
|
|
|
dv[Date._POS_MON] = 12
|
|
|
|
dv[Date._POS_YR] -= 1
|
|
|
|
elif dv[Date._POS_MON] < 0: # subtraction
|
|
|
|
dv[Date._POS_YR] -= int((-dv[Date._POS_MON]) / 12) + 1
|
|
|
|
dv[Date._POS_MON] = (dv[Date._POS_MON] % 12)
|
2008-01-01 02:53:48 +05:30
|
|
|
elif dv[Date._POS_MON] > 12 or dv[Date._POS_MON] < 1:
|
|
|
|
dv[Date._POS_YR] += int(dv[Date._POS_MON] / 12)
|
|
|
|
dv[Date._POS_MON] = dv[Date._POS_MON] % 12
|
2007-11-21 20:19:50 +05:30
|
|
|
self.dateval = tuple(dv)
|
|
|
|
self._calc_sort_value()
|
2008-01-01 04:56:50 +05:30
|
|
|
if day != 0 or dv[Date._POS_DAY] > 28:
|
2008-01-01 02:53:48 +05:30
|
|
|
self.set_yr_mon_day(*self.offset(day))
|
2007-11-21 20:19:50 +05:30
|
|
|
|
|
|
|
def copy_offset_ymd(self, year=0, month=0, day=0):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return a Date copy based on year, month, and day offset.
|
2007-11-21 20:19:50 +05:30
|
|
|
"""
|
2008-02-25 11:16:45 +05:30
|
|
|
orig_cal = self.calendar
|
|
|
|
if self.calendar != 0:
|
|
|
|
new_date = self.to_calendar("gregorian")
|
|
|
|
else:
|
|
|
|
new_date = self
|
|
|
|
retval = Date(new_date)
|
2007-11-21 20:19:50 +05:30
|
|
|
retval.set_yr_mon_day_offset(year, month, day)
|
2008-02-25 11:16:45 +05:30
|
|
|
if orig_cal == 0:
|
|
|
|
return retval
|
|
|
|
else:
|
|
|
|
retval.convert_calendar(orig_cal)
|
|
|
|
return retval
|
2007-12-03 00:11:21 +05:30
|
|
|
|
|
|
|
def copy_ymd(self, year=0, month=0, day=0):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return a Date copy with year, month, and day set.
|
2007-12-03 00:11:21 +05:30
|
|
|
"""
|
|
|
|
retval = Date(self)
|
|
|
|
retval.set_yr_mon_day(year, month, day)
|
|
|
|
return retval
|
2007-11-21 20:19:50 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def set_year(self, year):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Set the year value.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2006-04-08 11:26:31 +05:30
|
|
|
self.dateval = self.dateval[0:2] + (year, ) + self.dateval[3:]
|
|
|
|
self._calc_sort_value()
|
2006-02-04 03:33:53 +05:30
|
|
|
|
|
|
|
def get_year_valid(self):
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return true if the year is valid.
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
return self._get_low_item_valid(Date._POS_YR)
|
|
|
|
|
|
|
|
def get_month(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the month associated with the date.
|
|
|
|
|
|
|
|
If the month is not defined, a zero is returned. If the date is a
|
|
|
|
compound date, the lower date month is returned.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
return self._get_low_item(Date._POS_MON)
|
|
|
|
|
|
|
|
def get_month_valid(self):
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return true if the month is valid
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
return self._get_low_item_valid(Date._POS_MON)
|
|
|
|
|
|
|
|
def get_day(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the day of the month associated with the date.
|
|
|
|
|
|
|
|
If the day is not defined, a zero is returned. If the date is a
|
|
|
|
compound date, the lower date day is returned.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
return self._get_low_item(Date._POS_DAY)
|
|
|
|
|
|
|
|
def get_day_valid(self):
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return true if the day is valid.
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
return self._get_low_item_valid(Date._POS_DAY)
|
|
|
|
|
|
|
|
def get_valid(self):
|
2008-02-24 19:25:55 +05:30
|
|
|
"""
|
|
|
|
Return true if any part of the date is valid.
|
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
return self.modifier != Date.MOD_TEXTONLY
|
|
|
|
|
|
|
|
def get_stop_year(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the day of the year associated with the second part of a
|
|
|
|
compound date.
|
|
|
|
|
|
|
|
If the year is not defined, a zero is returned.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
return self._get_high_item(Date._POS_RYR)
|
|
|
|
|
|
|
|
def get_stop_month(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the month of the month associated with the second part of a
|
|
|
|
compound date.
|
|
|
|
|
|
|
|
If the month is not defined, a zero is returned.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
return self._get_high_item(Date._POS_RMON)
|
|
|
|
|
|
|
|
def get_stop_day(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the day of the month associated with the second part of a
|
|
|
|
compound date.
|
|
|
|
|
|
|
|
If the day is not defined, a zero is returned.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
return self._get_high_item(Date._POS_RDAY)
|
|
|
|
|
|
|
|
def get_high_year(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the high year estimate.
|
|
|
|
|
|
|
|
For compound dates with non-zero stop year, the stop year is returned.
|
|
|
|
Otherwise, the start year is returned.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
if self.is_compound():
|
|
|
|
ret = self.get_stop_year()
|
|
|
|
if ret:
|
|
|
|
return ret
|
|
|
|
else:
|
|
|
|
return self.get_year()
|
|
|
|
|
|
|
|
def get_text(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return the text value associated with an invalid date.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
return self.text
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def set(self, quality, modifier, calendar, value, text=None):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Set the date to the specified value.
|
|
|
|
|
|
|
|
Parameters are::
|
2006-02-04 03:33:53 +05:30
|
|
|
|
|
|
|
quality - The date quality for the date (see get_quality
|
|
|
|
for more information)
|
|
|
|
modified - The date modifier for the date (see get_modifier
|
|
|
|
for more information)
|
|
|
|
calendar - The calendar associated with the date (see
|
|
|
|
get_calendar for more information).
|
|
|
|
value - A tuple representing the date information. For a
|
2006-04-08 11:26:31 +05:30
|
|
|
non-compound date, the format is (DD, MM, YY, slash)
|
2006-02-04 03:33:53 +05:30
|
|
|
and for a compound date the tuple stores data as
|
2006-04-08 11:26:31 +05:30
|
|
|
(DD, MM, YY, slash1, DD, MM, YY, slash2)
|
2006-02-04 03:33:53 +05:30
|
|
|
text - A text string holding either the verbatim user input
|
|
|
|
or a comment relating to the date.
|
|
|
|
|
|
|
|
The sort value is recalculated.
|
|
|
|
"""
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
if modifier in (Date.MOD_NONE, Date.MOD_BEFORE,
|
|
|
|
Date.MOD_AFTER, Date.MOD_ABOUT) and len(value) < 4:
|
|
|
|
raise DateError("Invalid value. Should be: (DD, MM, YY, slash)")
|
|
|
|
if modifier in (Date.MOD_RANGE, Date.MOD_SPAN) and len(value) < 8:
|
|
|
|
raise DateError("Invalid value. Should be: (DD, MM, "
|
|
|
|
"YY, slash1, DD, MM, YY, slash2)")
|
|
|
|
if modifier not in (Date.MOD_NONE, Date.MOD_BEFORE, Date.MOD_AFTER,
|
|
|
|
Date.MOD_ABOUT, Date.MOD_RANGE, Date.MOD_SPAN,
|
2006-02-04 03:33:53 +05:30
|
|
|
Date.MOD_TEXTONLY):
|
|
|
|
raise DateError("Invalid modifier")
|
2006-04-08 11:26:31 +05:30
|
|
|
if quality not in (Date.QUAL_NONE, Date.QUAL_ESTIMATED,
|
2006-02-04 03:33:53 +05:30
|
|
|
Date.QUAL_CALCULATED):
|
|
|
|
raise DateError("Invalid quality")
|
2006-04-08 11:26:31 +05:30
|
|
|
if calendar not in (Date.CAL_GREGORIAN, Date.CAL_JULIAN,
|
|
|
|
Date.CAL_HEBREW, Date.CAL_FRENCH,
|
|
|
|
Date.CAL_PERSIAN, Date.CAL_ISLAMIC):
|
2006-02-04 03:33:53 +05:30
|
|
|
raise DateError("Invalid calendar")
|
|
|
|
|
|
|
|
self.quality = quality
|
|
|
|
self.modifier = modifier
|
|
|
|
self.calendar = calendar
|
|
|
|
self.dateval = value
|
2006-04-08 11:26:31 +05:30
|
|
|
year = max(value[Date._POS_YR], 1)
|
|
|
|
month = max(value[Date._POS_MON], 1)
|
|
|
|
day = max(value[Date._POS_DAY], 1)
|
2006-02-04 03:33:53 +05:30
|
|
|
if year == 0 and month == 0 and day == 0:
|
|
|
|
self.sortval = 0
|
|
|
|
else:
|
2006-04-08 11:26:31 +05:30
|
|
|
func = Date._calendar_convert[calendar]
|
|
|
|
self.sortval = func(year, month, day)
|
2006-02-04 03:33:53 +05:30
|
|
|
if text:
|
|
|
|
self.text = text
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def _calc_sort_value(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Calculate the numerical sort value associated with the date.
|
2006-04-08 11:26:31 +05:30
|
|
|
"""
|
|
|
|
year = max(self.dateval[Date._POS_YR], 1)
|
|
|
|
month = max(self.dateval[Date._POS_MON], 1)
|
|
|
|
day = max(self.dateval[Date._POS_DAY], 1)
|
2006-02-04 03:33:53 +05:30
|
|
|
if year == 0 and month == 0 and day == 0:
|
|
|
|
self.sortval = 0
|
|
|
|
else:
|
2006-04-08 11:26:31 +05:30
|
|
|
func = Date._calendar_convert[self.calendar]
|
|
|
|
self.sortval = func(year, month, day)
|
2006-02-04 03:33:53 +05:30
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def convert_calendar(self, calendar):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Convert the date from the current calendar to the specified calendar.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
if calendar == self.calendar:
|
|
|
|
return
|
2006-04-08 11:26:31 +05:30
|
|
|
(year, month, day) = Date._calendar_change[calendar](self.sortval)
|
2006-02-04 03:33:53 +05:30
|
|
|
if self.is_compound():
|
2006-04-08 11:26:31 +05:30
|
|
|
ryear = max(self.dateval[Date._POS_RYR], 1)
|
|
|
|
rmonth = max(self.dateval[Date._POS_RMON], 1)
|
|
|
|
rday = max(self.dateval[Date._POS_RDAY], 1)
|
|
|
|
sdn = Date._calendar_convert[self.calendar](ryear, rmonth, rday)
|
|
|
|
(nyear, nmonth, nday) = Date._calendar_change[calendar](sdn)
|
|
|
|
self.dateval = (day, month, year, self.dateval[Date._POS_SL],
|
|
|
|
nday, nmonth, nyear, self.dateval[Date._POS_RSL])
|
2006-02-04 03:33:53 +05:30
|
|
|
else:
|
2006-04-08 11:26:31 +05:30
|
|
|
self.dateval = (day, month, year, self.dateval[Date._POS_SL])
|
2006-02-04 03:33:53 +05:30
|
|
|
self.calendar = calendar
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def set_as_text(self, text):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Set the day to a text string, and assign the sort value to zero.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
self.modifier = Date.MOD_TEXTONLY
|
|
|
|
self.text = text
|
|
|
|
self.sortval = 0
|
|
|
|
|
2006-04-08 11:26:31 +05:30
|
|
|
def set_text_value(self, text):
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Set the text string to a given text.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
self.text = text
|
|
|
|
|
|
|
|
def is_empty(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return True if the date contains no information (empty text).
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
return (self.modifier == Date.MOD_TEXTONLY and not self.text) or \
|
|
|
|
(self.get_start_date()==Date.EMPTY
|
|
|
|
and self.get_stop_date()==Date.EMPTY)
|
|
|
|
|
|
|
|
def is_compound(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return True if the date is a date range or a date span.
|
2006-02-04 03:33:53 +05:30
|
|
|
"""
|
|
|
|
return self.modifier == Date.MOD_RANGE \
|
|
|
|
or self.modifier == Date.MOD_SPAN
|
|
|
|
|
|
|
|
def is_regular(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return True if the date is a regular date.
|
2006-02-04 03:33:53 +05:30
|
|
|
|
|
|
|
The regular date is a single exact date, i.e. not text-only, not
|
|
|
|
a range or a span, not estimated/calculated, not about/before/after
|
|
|
|
date, and having year, month, and day all non-zero.
|
|
|
|
"""
|
|
|
|
return self.modifier == Date.MOD_NONE \
|
|
|
|
and self.quality == Date.QUAL_NONE \
|
|
|
|
and self.get_year_valid() and self.get_month_valid() \
|
|
|
|
and self.get_day_valid()
|
2007-09-21 01:29:46 +05:30
|
|
|
|
2008-01-01 02:53:48 +05:30
|
|
|
def get_ymd(self):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return (year, month, day).
|
2008-01-01 02:53:48 +05:30
|
|
|
"""
|
|
|
|
return (self.get_year(), self.get_month(), self.get_day())
|
|
|
|
|
2007-10-17 09:37:26 +05:30
|
|
|
def offset(self, value):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return (year, month, day) of this date +- value.
|
2007-10-17 09:37:26 +05:30
|
|
|
"""
|
|
|
|
return Date._calendar_change[Date.CAL_GREGORIAN](self.sortval + value)
|
|
|
|
|
2007-12-31 22:13:58 +05:30
|
|
|
def offset_date(self, value):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return (year, month, day) of this date +- value.
|
2007-12-31 22:13:58 +05:30
|
|
|
"""
|
|
|
|
return Date(Date._calendar_change[Date.CAL_GREGORIAN](self.sortval + value))
|
|
|
|
|
2008-02-19 10:52:50 +05:30
|
|
|
def lookup_calendar(self, calendar):
|
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Lookup calendar name in the list of known calendars, even if translated.
|
2008-02-19 10:52:50 +05:30
|
|
|
"""
|
|
|
|
calendar_lower = [n.lower() for n in Date.calendar_names]
|
|
|
|
ui_lower = [n.lower() for n in Date.ui_calendar_names]
|
|
|
|
if calendar.lower() in calendar_lower:
|
|
|
|
return calendar_lower.index(calendar.lower())
|
|
|
|
elif calendar.lower() in ui_lower:
|
|
|
|
return ui_lower.index(calendar.lower())
|
|
|
|
else:
|
|
|
|
raise AttributeError("invalid calendar: '%s'" % calendar)
|
|
|
|
|
|
|
|
def lookup_quality(self, quality):
|
|
|
|
"""
|
|
|
|
Lookup date quality keyword, even if translated.
|
|
|
|
"""
|
|
|
|
qualities = ["none", "estimated", "calculated"]
|
|
|
|
ui_qualities = [_("none"), _("estimated"), _("calculated")]
|
|
|
|
if quality.lower() in qualities:
|
|
|
|
return qualities.index(quality.lower())
|
|
|
|
elif quality.lower() in ui_qualities:
|
|
|
|
return ui_qualities.index(quality.lower())
|
|
|
|
else:
|
|
|
|
raise AttributeError("invalid quality: '%s'" % quality)
|
|
|
|
|
|
|
|
def lookup_modifier(self, modifier):
|
|
|
|
"""
|
|
|
|
Lookup date modifier keyword, even if translated.
|
|
|
|
"""
|
|
|
|
mods = ["none", "before", "after", "about",
|
|
|
|
"range", "span", "textonly"]
|
|
|
|
ui_mods = [_("none"), _("before"), _("after"), _("about"),
|
|
|
|
_("range"), _("span"), _("textonly")]
|
|
|
|
if modifier.lower() in mods:
|
|
|
|
return mods.index(modifier.lower())
|
|
|
|
elif modifier.lower() in ui_mods:
|
|
|
|
return ui_mods.index(modifier.lower())
|
|
|
|
else:
|
|
|
|
raise AttributeError("invalid modifier: '%s'" % modifier)
|
|
|
|
|
2008-02-24 06:28:33 +05:30
|
|
|
def to_calendar(self, calendar_name):
|
|
|
|
"""
|
|
|
|
Return a new Date object in the calendar calendar_name.
|
2008-02-24 19:25:55 +05:30
|
|
|
|
2008-02-24 06:28:33 +05:30
|
|
|
>>> Date("Jan 1 1591").to_calendar("julian")
|
|
|
|
1590-12-22 (Julian)
|
|
|
|
"""
|
|
|
|
cal = self.lookup_calendar(calendar_name)
|
|
|
|
retval = Date(self)
|
|
|
|
retval.convert_calendar(cal)
|
|
|
|
return retval
|
2008-02-25 11:16:45 +05:30
|
|
|
|
|
|
|
def get_slash(self):
|
|
|
|
"""
|
|
|
|
Return true if the date is a slash-date.
|
|
|
|
"""
|
|
|
|
return self._get_low_item_valid(Date._POS_SL)
|
|
|
|
|
|
|
|
|