* aifc.py: don't die on invalid MARK chunk

* calendar.py: remove stuff now built in time; some cleanup and
  generalization in the calendar printing
* cmd.py: use __init__.
* tzparse.py: This module is no longer necessary -- use builtin time instead!
This commit is contained in:
Guido van Rossum 1993-06-20 21:02:22 +00:00
parent 52fc1f607e
commit 9b3bc71598
4 changed files with 104 additions and 133 deletions

View File

@ -563,11 +563,20 @@ class Aifc_read:
def _readmark(self, chunk): def _readmark(self, chunk):
nmarkers = _read_short(chunk) nmarkers = _read_short(chunk)
for i in range(nmarkers): # Some files appear to contain invalid counts.
id = _read_short(chunk) # Cope with this by testing for EOF.
pos = _read_long(chunk) try:
name = _read_string(chunk) for i in range(nmarkers):
self._markers.append((id, pos, name)) id = _read_short(chunk)
pos = _read_long(chunk)
name = _read_string(chunk)
self._markers.append((id, pos, name))
except EOFError:
print 'Warning: MARK chunk contains only',
print len(self._markers),
if len(self._markers) == 1: print 'marker',
else: print 'markers',
print 'instead of', nmarkers
class Aifc_write: class Aifc_write:
# Variables used in this class: # Variables used in this class:

View File

@ -1,112 +1,26 @@
# module calendar
############################## ##############################
# Calendar support functions # # Calendar support functions #
############################## ##############################
# This is based on UNIX ctime() et al. (also Standard C and POSIX) # Revision 2: uses funtions from built-in time module where possible.
# Subtle but crucial differences:
# - the order of the elements of a 'struct tm' differs, to ease sorting
# - months numbers are 1-12, not 0-11; month arrays have a dummy element 0
# - Monday is the first day of the week (numbered 0)
# - years are expressed in full, e.g. 1970, not 70.
# - timezone is currently hardcoded
# - doesn't know about daylight saving time
# These are really parameters of the 'time' module: # Import functions and variables from time module
epoch = 1970 # Time began on January 1 of this year (00:00:00 UTC) from time import gmtime, localtime, mktime
day_0 = 3 # The epoch begins on a Thursday (Monday = 0) from time import timezone, altzone, daylight, tzname
# Localization: Minutes West from Greenwich
timezone = -2*60 # Middle-European time with DST on
# timezone = 5*60 # EST (sigh -- THINK time() doesn't return UTC)
# Return 1 for leap years, 0 for non-leap years
def isleap(year):
return year % 4 == 0 and (year % 100 <> 0 or year % 400 == 0)
# Constants for months referenced later
January = 1
February = 2
# Number of days per month (except for February in leap years)
mdays = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
# Exception raised for bad input (with string parameter for details) # Exception raised for bad input (with string parameter for details)
error = 'calendar error' error = 'calendar.error'
# Turn seconds since epoch into calendar time # Abbreviated names of months (1-based arrays!!!)
def gmtime(secs):
if secs < 0: raise error, 'negative input to gmtime()'
secs = int(secs)
mins, secs = divmod(secs, 60)
hours, mins = divmod(mins, 60)
days, hours = divmod(hours, 24)
wday = (days + day_0) % 7
year = epoch
# XXX Most of the following loop can be replaced by one division
while 1:
yd = 365 + isleap(year)
if days < yd: break
days = days - yd
year = year + 1
yday = days
month = January
while 1:
md = mdays[month] + (month == February and isleap(year))
if days < md: break
days = days - md
month = month + 1
return year, month, days + 1, hours, mins, secs, yday, wday
# XXX Week number also?
# Return number of leap years in range [y1, y2)
# Assume y1 <= y2 and no funny (non-leap century) years
def leapdays(y1, y2):
return (y2+3)/4 - (y1+3)/4
# Inverse of gmtime():
# Turn UTC calendar time (less yday, wday) into seconds since epoch
def mktime(year, month, day, hours, mins, secs):
days = day - 1
for m in range(January, month): days = days + mdays[m]
if isleap(year) and month > February: days = days+1
days = days + (year-epoch)*365 + leapdays(epoch, year)
return ((days*24 + hours)*60 + mins)*60 + secs
# Full and abbreviated names of weekdays
day_name = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', \
'Friday', 'Saturday', 'Sunday']
day_abbr = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
# Full and abbreviated of months (1-based arrays!!!)
month_name = ['', 'January', 'February', 'March', 'April', \
'May', 'June', 'July', 'August', \
'September', 'October', 'November', 'December']
month_abbr = [' ', 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', \ month_abbr = [' ', 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', \
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
# Zero-fill string to two positions (helper for asctime()) # Turn calendar time as returned by localtime() into a string
def dd(s):
while len(s) < 2: s = '0' + s
return s
# Blank-fill string to two positions (helper for asctime())
def zd(s):
while len(s) < 2: s = ' ' + s
return s
# Turn calendar time as returned by gmtime() into a string
# (the yday parameter is for compatibility with gmtime())
def asctime(arg): def asctime(arg):
year, month, day, hours, mins, secs, yday, wday = arg year, month, day, hours, mins, secs, wday, yday, isdst = arg
s = day_abbr[wday] + ' ' + month_abbr[month] + ' ' + zd(`day`) return '%s %s %02d %02d:%02d:%02d %04d' % (
s = s + ' ' + dd(`hours`) + ':' + dd(`mins`) + ':' + dd(`secs`) day_abbr[wday], month_abbr[month], day,
return s + ' ' + `year` hours, mins, secs, year)
# Local time ignores DST issues for now -- adjust 'timezone' to fake it
def localtime(secs):
return gmtime(secs - timezone*60)
# UNIX-style ctime (except it doesn't append '\n'!) # UNIX-style ctime (except it doesn't append '\n'!)
def ctime(secs): def ctime(secs):
@ -118,14 +32,45 @@ def ctime(secs):
# Calendar printing etc. # Calendar printing etc.
# Note when comparing these calendars to the ones printed by cal(1):
# My calendars have Monday as the first day of the week, and Sunday as
# the last! (I believe this is the European convention.)
# Constants for months referenced later
January = 1
February = 2
# Number of days per month (except for February in leap years)
mdays = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
# Full and abbreviated names of weekdays
day_name = ['Monday', 'Tuesday', 'Wednesday', 'Thursday', \
'Friday', 'Saturday', 'Sunday']
day_abbr = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
# Full names of months (1-based arrays!!!)
month_name = ['', 'January', 'February', 'March', 'April', \
'May', 'June', 'July', 'August', \
'September', 'October', 'November', 'December']
# Return 1 for leap years, 0 for non-leap years
def isleap(year):
return year % 4 == 0 and (year % 100 <> 0 or year % 400 == 0)
# Return number of leap years in range [y1, y2)
# Assume y1 <= y2 and no funny (non-leap century) years
def leapdays(y1, y2):
return (y2+3)/4 - (y1+3)/4
# Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12), day (1-31) # Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12), day (1-31)
def weekday(year, month, day): def weekday(year, month, day):
secs = mktime(year, month, day, 0, 0, 0) secs = mktime((year, month, day, 0, 0, 0, 0, 0, 0))
days = secs / (24*60*60) tuple = localtime(secs)
return (days + day_0) % 7 return tuple[6]
# Return weekday (0-6 ~ Mon-Sun) and number of days (28-31) for year, month # Return weekday (0-6 ~ Mon-Sun) and number of days (28-31) for year, month
def monthrange(year, month): def monthrange(year, month):
if not 1 <= month <= 12: raise ValueError, 'bad month number'
day1 = weekday(year, month, 1) day1 = weekday(year, month, 1)
ndays = mdays[month] + (month == February and isleap(year)) ndays = mdays[month] + (month == February and isleap(year))
return day1, ndays return day1, ndays
@ -146,53 +91,68 @@ def _monthcalendar(year, month):
return rows return rows
# Caching interface to _monthcalendar # Caching interface to _monthcalendar
mc_cache = {} _mc_cache = {}
def monthcalendar(year, month): def monthcalendar(year, month):
key = `year` + month_abbr[month] key = (year, month)
try: if _mc_cache.has_key(key):
return mc_cache[key] return _mc_cache[key]
except KeyError: else:
mc_cache[key] = ret = _monthcalendar(year, month) _mc_cache[key] = ret = _monthcalendar(year, month)
return ret return ret
# Center a string in a field # Center a string in a field
def center(str, width): def _center(str, width):
n = width - len(str) n = width - len(str)
if n < 0: return str if n <= 0: return str
return ' '*(n/2) + str + ' '*(n-n/2) return ' '*((n+1)/2) + str + ' '*((n)/2)
# XXX The following code knows that print separates items with space! # XXX The following code knows that print separates items with space!
# Print a single week (no newline) # Print a single week (no newline)
def prweek(week, width): def prweek(week, width):
for day in week: for day in week:
if day == 0: print ' '*width, if day == 0: s = ''
else: else: s = `day`
if width > 2: print ' '*(width-3), print _center(s, width),
if day < 10: print '',
print day,
# Return a header for a week # Return a header for a week
def weekheader(width): def weekheader(width):
str = '' str = ''
if width >= 9: names = day_name
else: names = day_abbr
for i in range(7): for i in range(7):
if str: str = str + ' ' if str: str = str + ' '
str = str + day_abbr[i%7][:width] str = str + _center(names[i%7][:width], width)
return str return str
# Print a month's calendar # Print a month's calendar
def prmonth(year, month): def prmonth(year, month, *rest):
print weekheader(3) if rest[2:]: raise TypeError, 'too many args'
w = 0
l = 0
if rest[0:]: w = rest[0]
if rest[1:]: l = rest[1]
w = max(2, w)
l = max(1, l)
print _center(month_name[month] + ' ' + `year`, 7*(w+1) - 1),
print '\n'*l,
print weekheader(w),
print '\n'*l,
for week in monthcalendar(year, month): for week in monthcalendar(year, month):
prweek(week, 3) prweek(week, w)
print print '\n'*l,
# Spacing between month columns # Spacing of month columns
spacing = ' ' _colwidth = 7*3 - 1 # Amount printed by prweek()
_spacing = ' '*4 # Spaces between columns
# 3-column formatting for year calendars # 3-column formatting for year calendars
def format3c(a, b, c): def format3c(a, b, c):
print center(a, 20), spacing, center(b, 20), spacing, center(c, 20) print _center(a, _colwidth),
print _spacing,
print _center(b, _colwidth),
print _spacing,
print _center(c, _colwidth)
# Print a year's calendar # Print a year's calendar
def prcal(year): def prcal(year):
@ -211,8 +171,8 @@ def prcal(year):
for i in range(height): for i in range(height):
for cal in data: for cal in data:
if i >= len(cal): if i >= len(cal):
print ' '*20, print ' '*_colwidth,
else: else:
prweek(cal[i], 2) prweek(cal[i], 2)
print spacing, print _spacing,
print print

View File

@ -8,11 +8,13 @@ PROMPT = '(Cmd) '
IDENTCHARS = string.letters + string.digits + '_' IDENTCHARS = string.letters + string.digits + '_'
class Cmd: class Cmd:
def init(self): def __init__(self):
self.prompt = PROMPT self.prompt = PROMPT
self.identchars = IDENTCHARS self.identchars = IDENTCHARS
self.lastcmd = '' self.lastcmd = ''
def init(self):
return self return self
def cmdloop(self): def cmdloop(self):
@ -56,7 +58,7 @@ class Cmd:
func() func()
else: else:
import newdir import newdir
names = newdir.dir(self) names = newdir.dir(self.__class__)
cmds = [] cmds = []
for name in names: for name in names:
if name[:3] == 'do_': if name[:3] == 'do_':

View File

@ -48,7 +48,7 @@ def isdst(time):
import calendar import calendar
(tzname, delta, dstname, daystart, hourstart, dayend, hourend) = \ (tzname, delta, dstname, daystart, hourstart, dayend, hourend) = \
tzparams tzparams
year, month, days, hours, mins, secs, yday, wday = \ year, month, days, hours, mins, secs, yday, wday, isdst = \
calendar.gmtime(time - delta*3600) calendar.gmtime(time - delta*3600)
return (daystart, hourstart) <= (yday+1, hours) < (dayend, hourend) return (daystart, hourstart) <= (yday+1, hours) < (dayend, hourend)