linkchecker/linkcheck/threader.py
2008-01-02 14:31:19 +00:00

84 lines
2.4 KiB
Python

# -*- coding: iso-8859-1 -*-
# Copyright (C) 2000-2008 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., 675 Mass Ave, Cambridge, MA 02139, USA.
"""
Support for managing threads.
"""
import os
import threading
try:
import win32process
_has_win32process = True
except ImportError:
_has_win32process = False
# generic thread priorities with mappings to Windows and Unix
# priority values
PRIO_HIGH = 0
PRIO_NORMAL = 1
PRIO_LOW = 2
_posix_nice_val = {
PRIO_HIGH: -5,
PRIO_NORMAL: +0,
PRIO_LOW: +10,
}
if _has_win32process:
if hasattr(win32process, "BELOW_NORMAL_PRIORITY_CLASS"):
_low = win32process.BELOW_NORMAL_PRIORITY_CLASS
else:
_low = win32process.IDLE_PRIORITY_CLASS
if hasattr(win32process, "ABOVE_NORMAL_PRIORITY_CLASS"):
_high = win32process.ABOVE_NORMAL_PRIORITY_CLASS
else:
_high = win32process.HIGH_PRIORITY_CLASS
_nt_prio_val = {
PRIO_HIGH: _high,
PRIO_NORMAL: win32process.NORMAL_PRIORITY_CLASS,
PRIO_LOW: _low,
}
def set_thread_priority (prio):
"""
Set priority of this thread (and thus also for all spawned threads).
"""
if os.name == 'nt' and _has_win32process:
res = win32process.SetPriorityClass(
win32process.GetCurrentProcess(), _nt_prio_val[prio])
elif os.name == 'posix':
res = os.nice(_posix_nice_val[prio])
else:
res = None
return res
class StoppableThread (threading.Thread):
"""
Thread class with a stop() method. The thread itself has to check
regularly for the stopped() condition.
"""
def __init__ (self):
super(StoppableThread, self).__init__()
self._stop = threading.Event()
def stop (self):
self._stop.set()
def stopped (self):
return self._stop.isSet()