1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
# -*- 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()
|