linkchecker/linkcheck/director/status.py
2012-09-03 20:17:49 +02:00

54 lines
2.1 KiB
Python

# -*- coding: iso-8859-1 -*-
# Copyright (C) 2006-2012 Bastian Kleineidam
#
# 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.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""Status message handling"""
import time
from . import task
class Status (task.LoggedCheckedTask):
"""Status thread."""
def __init__ (self, urlqueue, logger, wait_seconds, max_duration):
"""Initialize the status logger task.
@param urlqueue: the URL queue
@ptype urlqueue: Urlqueue
@param logger: the logger object to inform about status
@ptype logger: console.StatusLogger
@param wait_seconds: interval in seconds to report status
@ptype wait_seconds: int
@param max_duration: abort checking after given number of seconds
@ptype max_duration: int or None
"""
super(Status, self).__init__(logger)
self.urlqueue = urlqueue
self.wait_seconds = wait_seconds
self.max_duration = max_duration
def run_checked (self):
"""Print periodic status messages."""
self.start_time = time.time()
self.setName("Status")
while not self.stopped(self.wait_seconds):
self.log_status()
def log_status (self):
"""Log a status message."""
duration = time.time() - self.start_time
if self.max_duration is not None and duration > self.max_duration:
raise KeyboardInterrupt()
checked, in_progress, queue = self.urlqueue.status()
self.logger.log_status(checked, in_progress, queue, duration)