gramps/src/Calendar.py

555 lines
18 KiB
Python
Raw Normal View History

2002-10-20 19:55:16 +05:30
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2001 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
#
"""
Calendar conversion routines for GRAMPS.
The original algorithms for this module came from Scott E. Lee's
C implementation. The original C source can be found at Scott's
web site at http://www.scottlee.com
"""
__author__ = "Donald N. Allingham"
__version__ = "$Revision$"
from intl import gettext as _
2003-01-02 10:01:52 +05:30
import re
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
2003-01-02 10:01:52 +05:30
# Constants
2002-10-20 19:55:16 +05:30
#
#-------------------------------------------------------------------------
2003-01-02 10:01:52 +05:30
UNDEF = -999999
EXACT = 0
ABOUT = 1
BEFORE = 2
AFTER = 3
#-------------------------------------------------------------------------
#
# Regular expressions for parsing
#
#-------------------------------------------------------------------------
_modifiers = '(' + \
_("abt\.?") + '|' + \
_("about") + '|' + \
_("est\.?") + '|' + \
_("circa") + '|' + \
_("around") + '|' + \
_("before") + '|' + \
_("after") + '|' + \
_("aft\.?") + '|' + \
_("bef\.?") + \
'|abt|aft|after|before|bef)'
_start = "^\s*" + _modifiers + "?\s*"
fmt1 = re.compile(_start+"(\S+)(\s+\d+\s*,)?\s*([?\d]+)?\s*$", re.IGNORECASE)
fmt2 = re.compile(_start+"(\d+)\.?\s+([^\d]+)(\s+\d+)?\s*$", re.IGNORECASE)
fmt3 = re.compile(_start+r"([?\d]+)\s*[./-]\s*([?\d]+)\s*[./-]\s*([?\d]+)\s*$",
re.IGNORECASE)
fmt7 = re.compile(_start+r"([?\d]+)\s*[./-]\s*([?\d]+)\s*$", re.IGNORECASE)
fmt4 = re.compile(_start+"(\S+)\s+(\d+)\s*$", re.IGNORECASE)
fmt5 = re.compile(_start+"(\d+)\s*$", re.IGNORECASE)
fmt6 = re.compile(_start+"(\S+)\s*$", re.IGNORECASE)
2002-10-20 19:55:16 +05:30
2003-01-07 09:10:22 +05:30
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
def set_format_code(code):
Calendar.FORMATCODE = code
#-------------------------------------------------------------------------
#
#
#
#-------------------------------------------------------------------------
def get_format_code():
return Calendar.FORMATCODE
#-------------------------------------------------------------------------
#
# Calendar - base calendar
#
#-------------------------------------------------------------------------
class Calendar:
2003-01-07 09:10:22 +05:30
ENTRYCODE = 0
FORMATCODE = 0
2003-01-02 10:01:52 +05:30
MONTHS = [
_("January"), _("February"), _("March"), _("April"),
_("May"), _("June"), _("July"), _("August"),
_("September"), _("October"), _("November"), _("December")]
2003-01-02 10:01:52 +05:30
M2NUM = {
(MONTHS[0][0:3]).lower(): 1, (MONTHS[1][0:3]).lower(): 2,
(MONTHS[2][0:3]).lower(): 3, (MONTHS[3][0:3]).lower(): 4,
(MONTHS[4][0:3]).lower(): 5, (MONTHS[5][0:3]).lower(): 6,
(MONTHS[6][0:3]).lower(): 7, (MONTHS[7][0:3]).lower(): 8,
(MONTHS[8][0:3]).lower(): 9, (MONTHS[9][0:3]).lower(): 10,
(MONTHS[10][0:3]).lower(): 11, (MONTHS[11][0:3]).lower(): 12
}
M2V = {
_("abt") : ABOUT, _("about") : ABOUT,
_("abt.") : ABOUT, _("est") : ABOUT,
_("est.") : ABOUT, _("circa") : ABOUT,
_("around") : ABOUT, _("before") : BEFORE,
_("bef") : BEFORE, _("bef.") : BEFORE,
_("after") : AFTER, _("aft.") : AFTER,
_("aft") : AFTER,
# And the untranslated versions for reading saved data from XML.
"abt" : ABOUT, "about" : ABOUT,
"bef" : BEFORE, "bef." : BEFORE,
"aft." : AFTER, "abt." : ABOUT,
"est." : ABOUT, "est" : ABOUT,
"after" : AFTER, "before" : BEFORE,
"aft" : AFTER,
}
MODE = {
ABOUT : _("about"),
BEFORE : _("before"),
AFTER : _("after")}
EM2NUM ={
"jan" : 1, "feb" : 2, "mar" : 3, "apr" : 4,
"may" : 5, "jun" : 6, "jul" : 7, "aug" : 8,
"sep" : 9, "oct" :10, "nov" : 11,"dec" : 12
}
NAME = "Undefined Calendar"
TNAME = _("Undefined Calendar")
def mlen(self):
return -1
def __init__(self,source=None):
if source:
2003-01-02 10:01:52 +05:30
self.get_ymd(source.get_sdn())
def month(self,val):
try:
2003-01-02 10:01:52 +05:30
return Calendar.MONTHS[val-1]
except:
return "Illegal Month"
2003-01-09 10:11:08 +05:30
def check(self,year,month,day):
return 1
2003-01-02 10:01:52 +05:30
def quote_display(self,year,month,day,mode):
return "%04d-%02d-%02d (%s)" % (year,month,day,Calendar.NAME)
2003-01-02 10:01:52 +05:30
2003-01-07 09:10:22 +05:30
def display(self,year,month,day,mode):
return _FMT_FUNC[Calendar.FORMATCODE](self,year,month,day,mode)
2003-01-02 10:01:52 +05:30
def format_yymmdd(self,year,month,day,mode):
if month == UNDEF and day == UNDEF and year == UNDEF :
return ""
elif day == UNDEF:
if month == UNDEF:
retval = str(year)
elif year == UNDEF:
2003-01-02 10:01:52 +05:30
retval = "????-%02d-??" % (month)
else:
retval = "%04d-%02d" % (year,month)
elif month == UNDEF:
retval = "%04d-??-%02d" % (year,day)
else:
if year == UNDEF:
retval = "????-%02d-%02d" % (month,day)
else:
retval = "%04d-%02d-%02d" % (year,month,day)
2003-01-07 09:10:22 +05:30
return self.fmt_mode(retval,mode)
def format_mon_dd_year(self,year,month,day,mode):
"""
Formats the date in the form of DD Month Year, such as
January 20, 2000
"""
if month == UNDEF and day == UNDEF and year == UNDEF:
return ""
elif day == UNDEF:
if month == UNDEF:
retval = str(year)
elif year == UNDEF:
retval = self.month(month)
else:
retval = "%s %d" % (self.month(month),year)
elif month == UNDEF:
retval = str(year)
else:
if year == UNDEF:
retval = "%s %d, ????" % (self.month(month),day)
else:
retval = "%s %d, %d" % (self.month(month),day,year)
2003-01-02 10:01:52 +05:30
2003-01-07 09:10:22 +05:30
return self.fmt_mode(retval,mode)
def format_MON_dd_year(self,year,month,day,mode):
"""
Formats the date in the form of DD Month Year, such as
January 20, 2000
"""
if month == UNDEF and day == UNDEF and year == UNDEF:
return ""
elif day == UNDEF:
if month == UNDEF:
retval = str(year)
elif year == UNDEF:
retval = self.month(month).upper()[0:3]
else:
retval = "%s %d" % (self.month(month).upper()[0:3],year)
elif month == UNDEF:
retval = str(year)
2003-01-02 10:01:52 +05:30
else:
2003-01-07 09:10:22 +05:30
if year == UNDEF:
retval = "%s %d, ????" % (self.month(month).upper()[0:3],day)
else:
retval = "%s %d, %d" % (self.month(month).upper()[0:3],day,year)
2003-01-07 09:10:22 +05:30
return self.fmt_mode(retval,mode)
def format_dd_mon_year(self,year,month,day,mode):
"""
Formats the date in the form of DD Month Year, such as
20 January 2000
"""
2003-01-02 10:01:52 +05:30
if year==UNDEF:
if month == UNDEF:
d = ""
2003-01-02 10:01:52 +05:30
elif day == UNDEF:
d = self.month(month)
else:
d = "%02d %s" % (day,self.month(month))
2003-01-02 10:01:52 +05:30
elif month == UNDEF:
d = str(year)
2003-01-02 10:01:52 +05:30
elif day == UNDEF:
d = "%s %d" % (self.month(month),year)
else:
d = "%02d %s %d" % (day,self.month(month),year)
2003-01-02 10:01:52 +05:30
2003-01-07 09:10:22 +05:30
return self.fmt_mode(d,mode)
def format_dd_MON_year(self,year,month,day,mode):
"""
Formats the date in the form of DD. Month Year, such as
20. January 2000
"""
if month == UNDEF and day == UNDEF and year == UNDEF :
return ""
elif day == UNDEF:
if month == UNDEF:
retval = str(year)
elif year == UNDEF:
retval = self.month(month).upper()[0:3]
else:
retval = "%s %d" % (self.month(month).upper()[0:3],year)
elif month == UNDEF:
retval = str(year)
else:
month_str = self.month(month).upper()[0:3]
if year == UNDEF:
2003-01-07 09:10:22 +05:30
retval = "%d %s ????" % (day,month_str)
else:
retval = "%d %s %d" % (day,month_str,year)
return self.fmt_mode(retval,mode)
def format_dd_dot_MON_year(self,year,month,day,mode):
"""
Formats the date in the form of DD. Month Year, such as
20. January 2000
"""
if month == UNDEF and day == UNDEF and year == UNDEF :
return ""
elif day == UNDEF:
if month == UNDEF:
retval = str(year)
elif year == UNDEF:
retval = self.month(month).upper()[0:3]
else:
retval = "%s %d" % (self.month(month).upper()[0:3],year)
elif month == UNDEF:
retval = str(year)
else:
month_str = self.month(month).upper()[0:3]
if year == UNDEF:
2003-01-07 09:10:22 +05:30
retval = "%d. %s ????" % (day,month_str)
else:
retval = "%d. %s %d" % (day,month_str,year)
return self.fmt_mode(retval,mode)
def format4(self,year,month,day,mode):
return self._get_mmddyyyy(year,month,day,mode,"/")
def format5(self,year,month,day,mode):
return self._get_mmddyyyy(year,month,day,mode,"-")
def format6(self,year,month,day,mode):
return self._get_ddmmyyyy(year,month,day,mode,"/")
def format7(self,year,month,day,mode):
return self._get_ddmmyyyy(year,month,day,mode,"-")
def format8(self,year,month,day,mode):
return self._get_mmddyyyy(year,month,day,mode,".")
def format9(self,year,month,day,mode):
return self._get_ddmmyyyy(year,month,day,mode,".")
def format11(self,year,month,day,mode):
return self._get_yyyymmdd(year,month,day,mode,"/")
def format12(self,year,month,day,mode):
return self._get_yyyymmdd(year,month,day,mode,"-")
def format13(self,year,month,day,mode):
return self._get_yyyymmdd(year,month,day,mode,".")
def _get_mmddyyyy(self,year,month,day,mode,sep):
if month == UNDEF and day == UNDEF and year == UNDEF :
return ""
elif day == UNDEF:
if month == UNDEF:
retval = str(year)
elif year == UNDEF:
2003-01-19 11:55:20 +05:30
retval = "%02d%s??%s??" % (month,sep,sep)
2003-01-07 09:10:22 +05:30
else:
2003-01-19 11:55:20 +05:30
retval = "%02d%s??%s%04d" % (month,sep,sep,year)
2003-01-07 09:10:22 +05:30
elif month == UNDEF:
retval = "??%s%02d%s%04d" % (sep,day,sep,year)
else:
if year == UNDEF:
2003-01-19 11:55:20 +05:30
retval = "%02d%s%02d%s????" % (month,sep,day,sep)
2003-01-07 09:10:22 +05:30
else:
2003-01-19 11:55:20 +05:30
retval = "%02d%s%02d%s%04d" % (month,sep,day,sep,year)
2003-01-07 09:10:22 +05:30
return self.fmt_mode(retval,mode)
def _get_yyyymmdd(self,year,month,day,mode,sep):
retval = ""
if month == UNDEF and day == UNDEF and year == UNDEF :
pass
elif day == UNDEF:
if month == UNDEF:
retval = str(year)
2003-01-07 09:10:22 +05:30
elif year == UNDEF:
2003-01-19 11:55:20 +05:30
retval = "????%s%02d%s??" % (sep,month,sep)
2003-01-07 09:10:22 +05:30
else:
2003-01-19 11:55:20 +05:30
retval = "%04d%s%02d" % (year,sep,month)
2003-01-07 09:10:22 +05:30
elif month == UNDEF:
retval = "%04d%s??%s%02d" % (year,sep,sep,day)
else:
if year == UNDEF:
2003-01-19 11:55:20 +05:30
retval = "????%s%02d%s%02d" % (sep,month,sep,day)
2003-01-07 09:10:22 +05:30
else:
2003-01-19 11:55:20 +05:30
retval = "%02d%s%02d%s%02d" % (year,sep,month,sep,day)
2003-01-07 09:10:22 +05:30
return self.fmt_mode(retval,mode)
def _get_ddmmyyyy(self,year,month,day,mode,sep):
retval = ""
if month == UNDEF and day == UNDEF and year == UNDEF :
pass
elif day == UNDEF:
if month == UNDEF:
retval = str(year)
elif year == UNDEF:
2003-01-19 11:55:20 +05:30
retval = "??%s%02d%s??" % (sep,month,sep)
2003-01-07 09:10:22 +05:30
else:
2003-01-19 11:55:20 +05:30
retval = "??%s%02d%s%04d" % (sep,month,sep,year)
2003-01-07 09:10:22 +05:30
elif month == UNDEF:
retval = "%02d%s??%s%04d" % (day,sep,sep,year)
else:
if year == UNDEF:
2003-01-19 11:55:20 +05:30
retval = "%02d%s%02d%s????" % (day,sep,month,sep)
2003-01-07 09:10:22 +05:30
else:
2003-01-19 11:55:20 +05:30
retval = "%02d%s%02d%s%04d" % (day,sep,month,sep,year)
2003-01-07 09:10:22 +05:30
return self.fmt_mode(retval,mode)
def fmt_mode(self,val,mode):
2003-01-02 10:01:52 +05:30
if Calendar.MODE.has_key(mode):
2003-01-07 09:10:22 +05:30
return "%s %s" % (Calendar.MODE[mode],val)
2003-01-02 10:01:52 +05:30
else:
2003-01-07 09:10:22 +05:30
return val
2003-01-02 10:01:52 +05:30
def get_ymd(self,val):
return (0,0,0)
def get_sdn(self,y,m,d):
return 0
2003-01-02 10:01:52 +05:30
def set_mode_value(self,val):
if not val:
return EXACT
else:
try:
return Calendar.M2V[val.lower()]
except KeyError:
return EXACT
def set_value(self,s):
try:
return int(s)
except:
return UNDEF
def set_month_string(self,text):
val = unicode(text[0:self.mlen()]).lower()
try:
return Calendar.M2NUM[val]
except KeyError:
if Calendar.EM2NUM.has_key(val):
return Calendar.EM2NUM[val]
else:
return UNDEF
def set(self,text):
mode = UNDEF
year = UNDEF
month = UNDEF
day = UNDEF
match = fmt2.match(text)
if match != None:
matches = match.groups()
mode = self.set_mode_value(matches[0])
month = self.set_month_string(matches[2])
day = self.set_value(matches[1])
if len(matches) == 4 and matches[3] != None:
year = self.set_value(matches[3])
return (year,month,day,mode)
match = fmt5.match(text)
if match != None:
matches = match.groups()
mode = self.set_mode_value(matches[0])
year = self.set_value(matches[1])
return (year,month,day,mode)
match = fmt7.match(text)
if match != None:
matches = match.groups()
mode = self.set_mode_value(matches[0])
2003-01-08 11:01:17 +05:30
if Calendar.ENTRYCODE == 2:
2003-01-02 10:01:52 +05:30
month = self.set_value(matches[2])
year = self.set_value(matches[1])
else:
month = self.set_value(matches[1])
year = self.set_value(matches[2])
return (year,month,day,mode)
match = fmt3.match(text)
if match != None:
matches = match.groups()
mode = self.set_mode_value(matches[0])
2003-01-08 11:01:17 +05:30
if Calendar.ENTRYCODE == 0:
2003-01-02 10:01:52 +05:30
month = self.set_value(matches[1])
day = self.set_value(matches[2])
year = self.set_value(matches[3])
2003-01-08 11:01:17 +05:30
elif Calendar.ENTRYCODE == 1:
2003-01-02 10:01:52 +05:30
month = self.set_value(matches[2])
day = self.set_value(matches[1])
year = self.set_value(matches[3])
else:
month = self.set_value(matches[2])
day = self.set_value(matches[3])
year = self.set_value(matches[1])
return (year,month,day,mode)
match = fmt1.match(text)
if match != None:
matches = match.groups()
mode = self.set_mode_value(matches[0])
month = self.set_month_string(unicode(matches[1]))
if matches[2]:
val = matches[2].replace(',','')
day = self.set_value(val)
year = self.set_value(matches[3])
return (year,month,day,mode)
match = fmt4.match(text)
if match != None:
matches = match.groups()
mode = self.set_mode_value(matches[0])
month = self.set_month_string(unicode(matches[1]))
if len(matches) == 4:
year = self.set_value(matches[3])
return (year,month,day,mode)
match = fmt6.match(text)
if match != None:
matches = match.groups()
mode = self.set_mode_value(matches[0])
month = self.set_value(matches[1])
return (year,month,day,mode)
2003-01-07 09:10:22 +05:30
_FMT_FUNC = [
Calendar.format_mon_dd_year,
Calendar.format_MON_dd_year,
Calendar.format_dd_MON_year,
Calendar.format4,
Calendar.format5,
Calendar.format6,
Calendar.format7,
2003-01-19 11:55:20 +05:30
Calendar.format8,
2003-01-07 09:10:22 +05:30
Calendar.format9,
Calendar.format_dd_dot_MON_year,
Calendar.format11,
Calendar.format12,
Calendar.format13,
]
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
2003-01-02 10:01:52 +05:30
# Calendar registration
2002-10-20 19:55:16 +05:30
#
#-------------------------------------------------------------------------
2003-01-02 10:01:52 +05:30
_calendars = {}
2002-10-20 19:55:16 +05:30
2003-01-02 10:01:52 +05:30
def register( class_obj ):
_calendars[class_obj.NAME] = class_obj
2002-10-20 19:55:16 +05:30
2003-01-02 10:01:52 +05:30
def find_calendar(name):
try:
return _calendars[name]
except:
return None
2002-10-20 19:55:16 +05:30
2003-01-02 10:01:52 +05:30
def calendar_names():
list = []
for n in _calendars.values():
list.append(n)
list.sort()
return list
2002-10-20 19:55:16 +05:30