Commit ff4018f3 authored by Vinay Sajip's avatar Vinay Sajip

Issue #5262: Fixed bug in next roll over time computation in TimedRotatingFileHandler.

parent cadc6ed2
...@@ -203,8 +203,15 @@ class TimedRotatingFileHandler(BaseRotatingHandler): ...@@ -203,8 +203,15 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
self.extMatch = re.compile(self.extMatch) self.extMatch = re.compile(self.extMatch)
self.interval = self.interval * interval # multiply by units requested self.interval = self.interval * interval # multiply by units requested
self.rolloverAt = currentTime + self.interval self.rolloverAt = self.computeRollover(int(time.time()))
#print "Will rollover at %d, %d seconds from now" % (self.rolloverAt, self.rolloverAt - currentTime)
def computeRollover(self, currentTime):
"""
Work out the rollover time based on the specified time.
"""
result = currentTime + self.interval
# If we are rolling over at midnight or weekly, then the interval is already known. # If we are rolling over at midnight or weekly, then the interval is already known.
# What we need to figure out is WHEN the next interval is. In other words, # What we need to figure out is WHEN the next interval is. In other words,
# if you are rolling over at midnight, then your base interval is 1 day, # if you are rolling over at midnight, then your base interval is 1 day,
...@@ -214,7 +221,7 @@ class TimedRotatingFileHandler(BaseRotatingHandler): ...@@ -214,7 +221,7 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
# the rest. Note that this code doesn't care about leap seconds. :) # the rest. Note that this code doesn't care about leap seconds. :)
if self.when == 'MIDNIGHT' or self.when.startswith('W'): if self.when == 'MIDNIGHT' or self.when.startswith('W'):
# This could be done with less code, but I wanted it to be clear # This could be done with less code, but I wanted it to be clear
if utc: if self.utc:
t = time.gmtime(currentTime) t = time.gmtime(currentTime)
else: else:
t = time.localtime(currentTime) t = time.localtime(currentTime)
...@@ -224,7 +231,7 @@ class TimedRotatingFileHandler(BaseRotatingHandler): ...@@ -224,7 +231,7 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
# r is the number of seconds left between now and midnight # r is the number of seconds left between now and midnight
r = _MIDNIGHT - ((currentHour * 60 + currentMinute) * 60 + r = _MIDNIGHT - ((currentHour * 60 + currentMinute) * 60 +
currentSecond) currentSecond)
self.rolloverAt = currentTime + r result = currentTime + r
# If we are rolling over on a certain day, add in the number of days until # If we are rolling over on a certain day, add in the number of days until
# the next rollover, but offset by 1 since we just calculated the time # the next rollover, but offset by 1 since we just calculated the time
# until the next day starts. There are three cases: # until the next day starts. There are three cases:
...@@ -240,15 +247,15 @@ class TimedRotatingFileHandler(BaseRotatingHandler): ...@@ -240,15 +247,15 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
# The calculations described in 2) and 3) above need to have a day added. # The calculations described in 2) and 3) above need to have a day added.
# This is because the above time calculation takes us to midnight on this # This is because the above time calculation takes us to midnight on this
# day, i.e. the start of the next day. # day, i.e. the start of the next day.
if when.startswith('W'): if self.when.startswith('W'):
day = t[6] # 0 is Monday day = t[6] # 0 is Monday
if day != self.dayOfWeek: if day != self.dayOfWeek:
if day < self.dayOfWeek: if day < self.dayOfWeek:
daysToWait = self.dayOfWeek - day daysToWait = self.dayOfWeek - day
else: else:
daysToWait = 6 - day + self.dayOfWeek + 1 daysToWait = 6 - day + self.dayOfWeek + 1
newRolloverAt = self.rolloverAt + (daysToWait * (60 * 60 * 24)) newRolloverAt = result + (daysToWait * (60 * 60 * 24))
if not utc: if not self.utc:
dstNow = t[-1] dstNow = t[-1]
dstAtRollover = time.localtime(newRolloverAt)[-1] dstAtRollover = time.localtime(newRolloverAt)[-1]
if dstNow != dstAtRollover: if dstNow != dstAtRollover:
...@@ -256,9 +263,8 @@ class TimedRotatingFileHandler(BaseRotatingHandler): ...@@ -256,9 +263,8 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
newRolloverAt = newRolloverAt - 3600 newRolloverAt = newRolloverAt - 3600
else: # DST bows out before next rollover, so we need to add an hour else: # DST bows out before next rollover, so we need to add an hour
newRolloverAt = newRolloverAt + 3600 newRolloverAt = newRolloverAt + 3600
self.rolloverAt = newRolloverAt result = newRolloverAt
return result
#print "Will rollover at %d, %d seconds from now" % (self.rolloverAt, self.rolloverAt - currentTime)
def shouldRollover(self, record): def shouldRollover(self, record):
""" """
...@@ -327,8 +333,8 @@ class TimedRotatingFileHandler(BaseRotatingHandler): ...@@ -327,8 +333,8 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
#print "%s -> %s" % (self.baseFilename, dfn) #print "%s -> %s" % (self.baseFilename, dfn)
self.mode = 'w' self.mode = 'w'
self.stream = self._open() self.stream = self._open()
newRolloverAt = self.rolloverAt + self.interval
currentTime = int(time.time()) currentTime = int(time.time())
newRolloverAt = self.computeRollover(currentTime)
while newRolloverAt <= currentTime: while newRolloverAt <= currentTime:
newRolloverAt = newRolloverAt + self.interval newRolloverAt = newRolloverAt + self.interval
#If DST changes and midnight or weekly rollover, adjust for this. #If DST changes and midnight or weekly rollover, adjust for this.
......
...@@ -56,6 +56,9 @@ Core and Builtins ...@@ -56,6 +56,9 @@ Core and Builtins
Library Library
------- -------
- Issue #5262: Fixed bug in next rollover time computation in
TimedRotatingFileHandler.
- Issue #6121: pydoc now ignores leading and trailing spaces in the - Issue #6121: pydoc now ignores leading and trailing spaces in the
argument to the 'help' function. argument to the 'help' function.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment