linkchecker/linkcheck/gui/checker.py

46 lines
1.6 KiB
Python
Raw Normal View History

# -*- coding: iso-8859-1 -*-
2011-02-17 18:59:02 +00:00
# Copyright (C) 2008-2011 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.
#
2009-07-24 21:58:20 +00:00
# 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.
from PyQt4 import QtCore
from .. import director
class CheckerThread (QtCore.QThread):
"""Separate checker thread."""
def __init__ (self, parent=None):
2011-02-17 18:59:02 +00:00
"""Reset check variables."""
super(CheckerThread, self).__init__(parent)
self.aggregate = None
2011-05-07 19:14:08 +00:00
def check (self, aggregate):
2011-02-17 18:59:02 +00:00
"""Set check variables and start the thread."""
self.aggregate = aggregate
# setup the thread and call run()
self.start()
def cancel (self):
2011-02-17 18:59:02 +00:00
"""Reset check variables and set stop flag."""
if self.aggregate is not None:
2011-05-09 18:49:07 +00:00
aggregate = self.aggregate
self.aggregate = None
2011-05-09 18:49:07 +00:00
aggregate.cancel()
def run (self):
2011-02-17 18:59:02 +00:00
"""Start checking."""
2010-10-16 17:26:46 +00:00
assert self.aggregate.config["threads"] > 0
director.check_urls(self.aggregate)