Guido van Rossum | ad50ca9 | 2002-12-30 22:30:22 +0000 | [diff] [blame] | 1 | """Drop-in replacement for the thread module. |
| 2 | |
| 3 | Meant to be used as a brain-dead substitute so that threaded code does |
| 4 | not need to be rewritten for when the thread module is not present. |
| 5 | |
| 6 | Suggested usage is:: |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | ad50ca9 | 2002-12-30 22:30:22 +0000 | [diff] [blame] | 8 | try: |
| 9 | import thread |
| 10 | except ImportError: |
| 11 | import dummy_thread as thread |
| 12 | |
| 13 | """ |
| 14 | __author__ = "Brett Cannon" |
| 15 | __email__ = "brett@python.org" |
| 16 | |
| 17 | # Exports only things specified by thread documentation |
| 18 | # (skipping obsolete synonyms allocate(), start_new(), exit_thread()) |
| 19 | __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock', |
| 20 | 'LockType'] |
| 21 | |
| 22 | import traceback as _traceback |
| 23 | |
| 24 | class error(Exception): |
| 25 | """Dummy implementation of thread.error.""" |
| 26 | |
| 27 | def __init__(self, *args): |
| 28 | self.args = args |
| 29 | |
| 30 | def start_new_thread(function, args, kwargs={}): |
| 31 | """Dummy implementation of thread.start_new_thread(). |
| 32 | |
| 33 | Compatibility is maintained by making sure that ``args`` is a |
| 34 | tuple and ``kwargs`` is a dictionary. If an exception is raised |
| 35 | and it is SystemExit (which can be done by thread.exit()) it is |
| 36 | caught and nothing is done; all other exceptions are printed out |
| 37 | by using traceback.print_exc(). |
| 38 | |
| 39 | """ |
| 40 | if type(args) != type(tuple()): |
| 41 | raise TypeError("2nd arg must be a tuple") |
| 42 | if type(kwargs) != type(dict()): |
| 43 | raise TypeError("3rd arg must be a dict") |
| 44 | try: |
| 45 | function(*args, **kwargs) |
| 46 | except SystemExit: |
| 47 | pass |
| 48 | except: |
| 49 | _traceback.print_exc() |
| 50 | |
| 51 | def exit(): |
| 52 | """Dummy implementation of thread.exit().""" |
| 53 | raise SystemExit |
| 54 | |
| 55 | def get_ident(): |
| 56 | """Dummy implementation of thread.get_ident(). |
| 57 | |
| 58 | Since this module should only be used when threadmodule is not |
| 59 | available, it is safe to assume that the current process is the |
| 60 | only thread. Thus a constant can be safely returned. |
| 61 | """ |
| 62 | return -1 |
| 63 | |
| 64 | def allocate_lock(): |
| 65 | """Dummy implementation of thread.allocate_lock().""" |
| 66 | return LockType() |
| 67 | |
| 68 | class LockType(object): |
| 69 | """Class implementing dummy implementation of thread.LockType. |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 70 | |
Guido van Rossum | ad50ca9 | 2002-12-30 22:30:22 +0000 | [diff] [blame] | 71 | Compatibility is maintained by maintaining self.locked_status |
| 72 | which is a boolean that stores the state of the lock. Pickling of |
| 73 | the lock, though, should not be done since if the thread module is |
| 74 | then used with an unpickled ``lock()`` from here problems could |
| 75 | occur from this class not having atomic methods. |
| 76 | |
| 77 | """ |
| 78 | |
| 79 | def __init__(self): |
| 80 | self.locked_status = False |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 81 | |
Guido van Rossum | ad50ca9 | 2002-12-30 22:30:22 +0000 | [diff] [blame] | 82 | def acquire(self, waitflag=None): |
| 83 | """Dummy implementation of acquire(). |
| 84 | |
| 85 | For blocking calls, self.locked_status is automatically set to |
| 86 | True and returned appropriately based on value of |
| 87 | ``waitflag``. If it is non-blocking, then the value is |
| 88 | actually checked and not set if it is already acquired. This |
| 89 | is all done so that threading.Condition's assert statements |
| 90 | aren't triggered and throw a little fit. |
| 91 | |
| 92 | """ |
| 93 | if waitflag is None: |
| 94 | self.locked_status = True |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 95 | return None |
Guido van Rossum | ad50ca9 | 2002-12-30 22:30:22 +0000 | [diff] [blame] | 96 | elif not waitflag: |
| 97 | if not self.locked_status: |
| 98 | self.locked_status = True |
| 99 | return True |
| 100 | else: |
| 101 | return False |
| 102 | else: |
| 103 | self.locked_status = True |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 104 | return True |
Guido van Rossum | ad50ca9 | 2002-12-30 22:30:22 +0000 | [diff] [blame] | 105 | |
| 106 | def release(self): |
| 107 | """Release the dummy lock.""" |
| 108 | # XXX Perhaps shouldn't actually bother to test? Could lead |
| 109 | # to problems for complex, threaded code. |
| 110 | if not self.locked_status: |
| 111 | raise error |
| 112 | self.locked_status = False |
| 113 | return True |
| 114 | |
| 115 | def locked(self): |
| 116 | return self.locked_status |