source: python/vendor/Python-2.7.6/Modules/threadmodule.c

Last change on this file was 388, checked in by dmik, 11 years ago

python: Update vendor to 2.7.6.

  • Property svn:eol-style set to native
File size: 28.9 KB
Line 
1
2/* Thread module */
3/* Interface to Sjoerd's portable C thread library */
4
5#include "Python.h"
6#include "structmember.h" /* offsetof */
7
8#ifndef WITH_THREAD
9#error "Error! The rest of Python is not compiled with thread support."
10#error "Rerun configure, adding a --with-threads option."
11#error "Then run `make clean' followed by `make'."
12#endif
13
14#include "pythread.h"
15
16static PyObject *ThreadError;
17static PyObject *str_dict;
18static long nb_threads = 0;
19
20/* Lock objects */
21
22typedef struct {
23 PyObject_HEAD
24 PyThread_type_lock lock_lock;
25 PyObject *in_weakreflist;
26} lockobject;
27
28static void
29lock_dealloc(lockobject *self)
30{
31 if (self->in_weakreflist != NULL)
32 PyObject_ClearWeakRefs((PyObject *) self);
33 if (self->lock_lock != NULL) {
34 /* Unlock the lock so it's safe to free it */
35 PyThread_acquire_lock(self->lock_lock, 0);
36 PyThread_release_lock(self->lock_lock);
37
38 PyThread_free_lock(self->lock_lock);
39 }
40 PyObject_Del(self);
41}
42
43static PyObject *
44lock_PyThread_acquire_lock(lockobject *self, PyObject *args)
45{
46 int i = 1;
47
48 if (!PyArg_ParseTuple(args, "|i:acquire", &i))
49 return NULL;
50
51 Py_BEGIN_ALLOW_THREADS
52 i = PyThread_acquire_lock(self->lock_lock, i);
53 Py_END_ALLOW_THREADS
54
55 return PyBool_FromLong((long)i);
56}
57
58PyDoc_STRVAR(acquire_doc,
59"acquire([wait]) -> bool\n\
60(acquire_lock() is an obsolete synonym)\n\
61\n\
62Lock the lock. Without argument, this blocks if the lock is already\n\
63locked (even by the same thread), waiting for another thread to release\n\
64the lock, and return True once the lock is acquired.\n\
65With an argument, this will only block if the argument is true,\n\
66and the return value reflects whether the lock is acquired.\n\
67The blocking operation is not interruptible.");
68
69static PyObject *
70lock_PyThread_release_lock(lockobject *self)
71{
72 /* Sanity check: the lock must be locked */
73 if (PyThread_acquire_lock(self->lock_lock, 0)) {
74 PyThread_release_lock(self->lock_lock);
75 PyErr_SetString(ThreadError, "release unlocked lock");
76 return NULL;
77 }
78
79 PyThread_release_lock(self->lock_lock);
80 Py_INCREF(Py_None);
81 return Py_None;
82}
83
84PyDoc_STRVAR(release_doc,
85"release()\n\
86(release_lock() is an obsolete synonym)\n\
87\n\
88Release the lock, allowing another thread that is blocked waiting for\n\
89the lock to acquire the lock. The lock must be in the locked state,\n\
90but it needn't be locked by the same thread that unlocks it.");
91
92static PyObject *
93lock_locked_lock(lockobject *self)
94{
95 if (PyThread_acquire_lock(self->lock_lock, 0)) {
96 PyThread_release_lock(self->lock_lock);
97 return PyBool_FromLong(0L);
98 }
99 return PyBool_FromLong(1L);
100}
101
102PyDoc_STRVAR(locked_doc,
103"locked() -> bool\n\
104(locked_lock() is an obsolete synonym)\n\
105\n\
106Return whether the lock is in the locked state.");
107
108static PyMethodDef lock_methods[] = {
109 {"acquire_lock", (PyCFunction)lock_PyThread_acquire_lock,
110 METH_VARARGS, acquire_doc},
111 {"acquire", (PyCFunction)lock_PyThread_acquire_lock,
112 METH_VARARGS, acquire_doc},
113 {"release_lock", (PyCFunction)lock_PyThread_release_lock,
114 METH_NOARGS, release_doc},
115 {"release", (PyCFunction)lock_PyThread_release_lock,
116 METH_NOARGS, release_doc},
117 {"locked_lock", (PyCFunction)lock_locked_lock,
118 METH_NOARGS, locked_doc},
119 {"locked", (PyCFunction)lock_locked_lock,
120 METH_NOARGS, locked_doc},
121 {"__enter__", (PyCFunction)lock_PyThread_acquire_lock,
122 METH_VARARGS, acquire_doc},
123 {"__exit__", (PyCFunction)lock_PyThread_release_lock,
124 METH_VARARGS, release_doc},
125 {NULL} /* sentinel */
126};
127
128static PyTypeObject Locktype = {
129 PyVarObject_HEAD_INIT(&PyType_Type, 0)
130 "thread.lock", /*tp_name*/
131 sizeof(lockobject), /*tp_size*/
132 0, /*tp_itemsize*/
133 /* methods */
134 (destructor)lock_dealloc, /*tp_dealloc*/
135 0, /*tp_print*/
136 0, /*tp_getattr*/
137 0, /*tp_setattr*/
138 0, /*tp_compare*/
139 0, /*tp_repr*/
140 0, /* tp_as_number */
141 0, /* tp_as_sequence */
142 0, /* tp_as_mapping */
143 0, /* tp_hash */
144 0, /* tp_call */
145 0, /* tp_str */
146 0, /* tp_getattro */
147 0, /* tp_setattro */
148 0, /* tp_as_buffer */
149 Py_TPFLAGS_HAVE_WEAKREFS, /* tp_flags */
150 0, /* tp_doc */
151 0, /* tp_traverse */
152 0, /* tp_clear */
153 0, /* tp_richcompare */
154 offsetof(lockobject, in_weakreflist), /* tp_weaklistoffset */
155 0, /* tp_iter */
156 0, /* tp_iternext */
157 lock_methods, /* tp_methods */
158};
159
160static lockobject *
161newlockobject(void)
162{
163 lockobject *self;
164 self = PyObject_New(lockobject, &Locktype);
165 if (self == NULL)
166 return NULL;
167 self->lock_lock = PyThread_allocate_lock();
168 self->in_weakreflist = NULL;
169 if (self->lock_lock == NULL) {
170 Py_DECREF(self);
171 PyErr_SetString(ThreadError, "can't allocate lock");
172 return NULL;
173 }
174 return self;
175}
176
177/* Thread-local objects */
178
179#include "structmember.h"
180
181/* Quick overview:
182
183 We need to be able to reclaim reference cycles as soon as possible
184 (both when a thread is being terminated, or a thread-local object
185 becomes unreachable from user data). Constraints:
186 - it must not be possible for thread-state dicts to be involved in
187 reference cycles (otherwise the cyclic GC will refuse to consider
188 objects referenced from a reachable thread-state dict, even though
189 local_dealloc would clear them)
190 - the death of a thread-state dict must still imply destruction of the
191 corresponding local dicts in all thread-local objects.
192
193 Our implementation uses small "localdummy" objects in order to break
194 the reference chain. These trivial objects are hashable (using the
195 default scheme of identity hashing) and weakrefable.
196 Each thread-state holds a separate localdummy for each local object
197 (as a /strong reference/),
198 and each thread-local object holds a dict mapping /weak references/
199 of localdummies to local dicts.
200
201 Therefore:
202 - only the thread-state dict holds a strong reference to the dummies
203 - only the thread-local object holds a strong reference to the local dicts
204 - only outside objects (application- or library-level) hold strong
205 references to the thread-local objects
206 - as soon as a thread-state dict is destroyed, the weakref callbacks of all
207 dummies attached to that thread are called, and destroy the corresponding
208 local dicts from thread-local objects
209 - as soon as a thread-local object is destroyed, its local dicts are
210 destroyed and its dummies are manually removed from all thread states
211 - the GC can do its work correctly when a thread-local object is dangling,
212 without any interference from the thread-state dicts
213
214 As an additional optimization, each localdummy holds a borrowed reference
215 to the corresponding localdict. This borrowed reference is only used
216 by the thread-local object which has created the localdummy, which should
217 guarantee that the localdict still exists when accessed.
218*/
219
220typedef struct {
221 PyObject_HEAD
222 PyObject *localdict; /* Borrowed reference! */
223 PyObject *weakreflist; /* List of weak references to self */
224} localdummyobject;
225
226static void
227localdummy_dealloc(localdummyobject *self)
228{
229 if (self->weakreflist != NULL)
230 PyObject_ClearWeakRefs((PyObject *) self);
231 Py_TYPE(self)->tp_free((PyObject*)self);
232}
233
234static PyTypeObject localdummytype = {
235 PyVarObject_HEAD_INIT(NULL, 0)
236 /* tp_name */ "_thread._localdummy",
237 /* tp_basicsize */ sizeof(localdummyobject),
238 /* tp_itemsize */ 0,
239 /* tp_dealloc */ (destructor)localdummy_dealloc,
240 /* tp_print */ 0,
241 /* tp_getattr */ 0,
242 /* tp_setattr */ 0,
243 /* tp_reserved */ 0,
244 /* tp_repr */ 0,
245 /* tp_as_number */ 0,
246 /* tp_as_sequence */ 0,
247 /* tp_as_mapping */ 0,
248 /* tp_hash */ 0,
249 /* tp_call */ 0,
250 /* tp_str */ 0,
251 /* tp_getattro */ 0,
252 /* tp_setattro */ 0,
253 /* tp_as_buffer */ 0,
254 /* tp_flags */ Py_TPFLAGS_DEFAULT,
255 /* tp_doc */ "Thread-local dummy",
256 /* tp_traverse */ 0,
257 /* tp_clear */ 0,
258 /* tp_richcompare */ 0,
259 /* tp_weaklistoffset */ offsetof(localdummyobject, weakreflist)
260};
261
262
263typedef struct {
264 PyObject_HEAD
265 PyObject *key;
266 PyObject *args;
267 PyObject *kw;
268 PyObject *weakreflist; /* List of weak references to self */
269 /* A {localdummy weakref -> localdict} dict */
270 PyObject *dummies;
271 /* The callback for weakrefs to localdummies */
272 PyObject *wr_callback;
273} localobject;
274
275/* Forward declaration */
276static PyObject *_ldict(localobject *self);
277static PyObject *_localdummy_destroyed(PyObject *meth_self, PyObject *dummyweakref);
278
279/* Create and register the dummy for the current thread.
280 Returns a borrowed reference of the corresponding local dict */
281static PyObject *
282_local_create_dummy(localobject *self)
283{
284 PyObject *tdict, *ldict = NULL, *wr = NULL;
285 localdummyobject *dummy = NULL;
286 int r;
287
288 tdict = PyThreadState_GetDict();
289 if (tdict == NULL) {
290 PyErr_SetString(PyExc_SystemError,
291 "Couldn't get thread-state dictionary");
292 goto err;
293 }
294
295 ldict = PyDict_New();
296 if (ldict == NULL)
297 goto err;
298 dummy = (localdummyobject *) localdummytype.tp_alloc(&localdummytype, 0);
299 if (dummy == NULL)
300 goto err;
301 dummy->localdict = ldict;
302 wr = PyWeakref_NewRef((PyObject *) dummy, self->wr_callback);
303 if (wr == NULL)
304 goto err;
305
306 /* As a side-effect, this will cache the weakref's hash before the
307 dummy gets deleted */
308 r = PyDict_SetItem(self->dummies, wr, ldict);
309 if (r < 0)
310 goto err;
311 Py_CLEAR(wr);
312 r = PyDict_SetItem(tdict, self->key, (PyObject *) dummy);
313 if (r < 0)
314 goto err;
315 Py_CLEAR(dummy);
316
317 Py_DECREF(ldict);
318 return ldict;
319
320err:
321 Py_XDECREF(ldict);
322 Py_XDECREF(wr);
323 Py_XDECREF(dummy);
324 return NULL;
325}
326
327static PyObject *
328local_new(PyTypeObject *type, PyObject *args, PyObject *kw)
329{
330 localobject *self;
331 PyObject *wr;
332 static PyMethodDef wr_callback_def = {
333 "_localdummy_destroyed", (PyCFunction) _localdummy_destroyed, METH_O
334 };
335
336 if (type->tp_init == PyBaseObject_Type.tp_init
337 && ((args && PyObject_IsTrue(args))
338 || (kw && PyObject_IsTrue(kw)))) {
339 PyErr_SetString(PyExc_TypeError,
340 "Initialization arguments are not supported");
341 return NULL;
342 }
343
344 self = (localobject *)type->tp_alloc(type, 0);
345 if (self == NULL)
346 return NULL;
347
348 Py_XINCREF(args);
349 self->args = args;
350 Py_XINCREF(kw);
351 self->kw = kw;
352 self->key = PyString_FromFormat("thread.local.%p", self);
353 if (self->key == NULL)
354 goto err;
355
356 self->dummies = PyDict_New();
357 if (self->dummies == NULL)
358 goto err;
359
360 /* We use a weak reference to self in the callback closure
361 in order to avoid spurious reference cycles */
362 wr = PyWeakref_NewRef((PyObject *) self, NULL);
363 if (wr == NULL)
364 goto err;
365 self->wr_callback = PyCFunction_New(&wr_callback_def, wr);
366 Py_DECREF(wr);
367 if (self->wr_callback == NULL)
368 goto err;
369
370 if (_local_create_dummy(self) == NULL)
371 goto err;
372
373 return (PyObject *)self;
374
375 err:
376 Py_DECREF(self);
377 return NULL;
378}
379
380static int
381local_traverse(localobject *self, visitproc visit, void *arg)
382{
383 Py_VISIT(self->args);
384 Py_VISIT(self->kw);
385 Py_VISIT(self->dummies);
386 return 0;
387}
388
389static int
390local_clear(localobject *self)
391{
392 PyThreadState *tstate;
393 Py_CLEAR(self->args);
394 Py_CLEAR(self->kw);
395 Py_CLEAR(self->dummies);
396 Py_CLEAR(self->wr_callback);
397 /* Remove all strong references to dummies from the thread states */
398 if (self->key
399 && (tstate = PyThreadState_Get())
400 && tstate->interp) {
401 for(tstate = PyInterpreterState_ThreadHead(tstate->interp);
402 tstate;
403 tstate = PyThreadState_Next(tstate))
404 if (tstate->dict &&
405 PyDict_GetItem(tstate->dict, self->key))
406 PyDict_DelItem(tstate->dict, self->key);
407 }
408 return 0;
409}
410
411static void
412local_dealloc(localobject *self)
413{
414 /* Weakrefs must be invalidated right now, otherwise they can be used
415 from code called below, which is very dangerous since Py_REFCNT(self) == 0 */
416 if (self->weakreflist != NULL)
417 PyObject_ClearWeakRefs((PyObject *) self);
418
419 PyObject_GC_UnTrack(self);
420
421 local_clear(self);
422 Py_XDECREF(self->key);
423 Py_TYPE(self)->tp_free((PyObject*)self);
424}
425
426/* Returns a borrowed reference to the local dict, creating it if necessary */
427static PyObject *
428_ldict(localobject *self)
429{
430 PyObject *tdict, *ldict, *dummy;
431
432 tdict = PyThreadState_GetDict();
433 if (tdict == NULL) {
434 PyErr_SetString(PyExc_SystemError,
435 "Couldn't get thread-state dictionary");
436 return NULL;
437 }
438
439 dummy = PyDict_GetItem(tdict, self->key);
440 if (dummy == NULL) {
441 ldict = _local_create_dummy(self);
442 if (ldict == NULL)
443 return NULL;
444
445 if (Py_TYPE(self)->tp_init != PyBaseObject_Type.tp_init &&
446 Py_TYPE(self)->tp_init((PyObject*)self,
447 self->args, self->kw) < 0) {
448 /* we need to get rid of ldict from thread so
449 we create a new one the next time we do an attr
450 access */
451 PyDict_DelItem(tdict, self->key);
452 return NULL;
453 }
454 }
455 else {
456 assert(Py_TYPE(dummy) == &localdummytype);
457 ldict = ((localdummyobject *) dummy)->localdict;
458 }
459
460 return ldict;
461}
462
463static int
464local_setattro(localobject *self, PyObject *name, PyObject *v)
465{
466 PyObject *ldict;
467 int r;
468
469 ldict = _ldict(self);
470 if (ldict == NULL)
471 return -1;
472
473 r = PyObject_RichCompareBool(name, str_dict, Py_EQ);
474 if (r == 1) {
475 PyErr_Format(PyExc_AttributeError,
476 "'%.50s' object attribute '__dict__' is read-only",
477 Py_TYPE(self)->tp_name);
478 return -1;
479 }
480 if (r == -1)
481 return -1;
482
483 return _PyObject_GenericSetAttrWithDict((PyObject *)self, name, v, ldict);
484}
485
486static PyObject *local_getattro(localobject *, PyObject *);
487
488static PyTypeObject localtype = {
489 PyVarObject_HEAD_INIT(NULL, 0)
490 /* tp_name */ "thread._local",
491 /* tp_basicsize */ sizeof(localobject),
492 /* tp_itemsize */ 0,
493 /* tp_dealloc */ (destructor)local_dealloc,
494 /* tp_print */ 0,
495 /* tp_getattr */ 0,
496 /* tp_setattr */ 0,
497 /* tp_compare */ 0,
498 /* tp_repr */ 0,
499 /* tp_as_number */ 0,
500 /* tp_as_sequence */ 0,
501 /* tp_as_mapping */ 0,
502 /* tp_hash */ 0,
503 /* tp_call */ 0,
504 /* tp_str */ 0,
505 /* tp_getattro */ (getattrofunc)local_getattro,
506 /* tp_setattro */ (setattrofunc)local_setattro,
507 /* tp_as_buffer */ 0,
508 /* tp_flags */ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
509 | Py_TPFLAGS_HAVE_GC,
510 /* tp_doc */ "Thread-local data",
511 /* tp_traverse */ (traverseproc)local_traverse,
512 /* tp_clear */ (inquiry)local_clear,
513 /* tp_richcompare */ 0,
514 /* tp_weaklistoffset */ offsetof(localobject, weakreflist),
515 /* tp_iter */ 0,
516 /* tp_iternext */ 0,
517 /* tp_methods */ 0,
518 /* tp_members */ 0,
519 /* tp_getset */ 0,
520 /* tp_base */ 0,
521 /* tp_dict */ 0, /* internal use */
522 /* tp_descr_get */ 0,
523 /* tp_descr_set */ 0,
524 /* tp_dictoffset */ 0,
525 /* tp_init */ 0,
526 /* tp_alloc */ 0,
527 /* tp_new */ local_new,
528 /* tp_free */ 0, /* Low-level free-mem routine */
529 /* tp_is_gc */ 0, /* For PyObject_IS_GC */
530};
531
532static PyObject *
533local_getattro(localobject *self, PyObject *name)
534{
535 PyObject *ldict, *value;
536 int r;
537
538 ldict = _ldict(self);
539 if (ldict == NULL)
540 return NULL;
541
542 r = PyObject_RichCompareBool(name, str_dict, Py_EQ);
543 if (r == 1) {
544 Py_INCREF(ldict);
545 return ldict;
546 }
547 if (r == -1)
548 return NULL;
549
550 if (Py_TYPE(self) != &localtype)
551 /* use generic lookup for subtypes */
552 return _PyObject_GenericGetAttrWithDict((PyObject *)self, name, ldict);
553
554 /* Optimization: just look in dict ourselves */
555 value = PyDict_GetItem(ldict, name);
556 if (value == NULL)
557 /* Fall back on generic to get __class__ and __dict__ */
558 return _PyObject_GenericGetAttrWithDict((PyObject *)self, name, ldict);
559
560 Py_INCREF(value);
561 return value;
562}
563
564/* Called when a dummy is destroyed. */
565static PyObject *
566_localdummy_destroyed(PyObject *localweakref, PyObject *dummyweakref)
567{
568 PyObject *obj;
569 localobject *self;
570 assert(PyWeakref_CheckRef(localweakref));
571 obj = PyWeakref_GET_OBJECT(localweakref);
572 if (obj == Py_None)
573 Py_RETURN_NONE;
574 Py_INCREF(obj);
575 assert(PyObject_TypeCheck(obj, &localtype));
576 /* If the thread-local object is still alive and not being cleared,
577 remove the corresponding local dict */
578 self = (localobject *) obj;
579 if (self->dummies != NULL) {
580 PyObject *ldict;
581 ldict = PyDict_GetItem(self->dummies, dummyweakref);
582 if (ldict != NULL) {
583 PyDict_DelItem(self->dummies, dummyweakref);
584 }
585 if (PyErr_Occurred())
586 PyErr_WriteUnraisable(obj);
587 }
588 Py_DECREF(obj);
589 Py_RETURN_NONE;
590}
591
592/* Module functions */
593
594struct bootstate {
595 PyInterpreterState *interp;
596 PyObject *func;
597 PyObject *args;
598 PyObject *keyw;
599 PyThreadState *tstate;
600};
601
602static void
603t_bootstrap(void *boot_raw)
604{
605 struct bootstate *boot = (struct bootstate *) boot_raw;
606 PyThreadState *tstate;
607 PyObject *res;
608
609 tstate = boot->tstate;
610 tstate->thread_id = PyThread_get_thread_ident();
611 _PyThreadState_Init(tstate);
612 PyEval_AcquireThread(tstate);
613 nb_threads++;
614 res = PyEval_CallObjectWithKeywords(
615 boot->func, boot->args, boot->keyw);
616 if (res == NULL) {
617 if (PyErr_ExceptionMatches(PyExc_SystemExit))
618 PyErr_Clear();
619 else {
620 PyObject *file;
621 PyObject *exc, *value, *tb;
622 PyErr_Fetch(&exc, &value, &tb);
623 PySys_WriteStderr(
624 "Unhandled exception in thread started by ");
625 file = PySys_GetObject("stderr");
626 if (file)
627 PyFile_WriteObject(boot->func, file, 0);
628 else
629 PyObject_Print(boot->func, stderr, 0);
630 PySys_WriteStderr("\n");
631 PyErr_Restore(exc, value, tb);
632 PyErr_PrintEx(0);
633 }
634 }
635 else
636 Py_DECREF(res);
637 Py_DECREF(boot->func);
638 Py_DECREF(boot->args);
639 Py_XDECREF(boot->keyw);
640 PyMem_DEL(boot_raw);
641 nb_threads--;
642 PyThreadState_Clear(tstate);
643 PyThreadState_DeleteCurrent();
644 PyThread_exit_thread();
645}
646
647static PyObject *
648thread_PyThread_start_new_thread(PyObject *self, PyObject *fargs)
649{
650 PyObject *func, *args, *keyw = NULL;
651 struct bootstate *boot;
652 long ident;
653
654 if (!PyArg_UnpackTuple(fargs, "start_new_thread", 2, 3,
655 &func, &args, &keyw))
656 return NULL;
657 if (!PyCallable_Check(func)) {
658 PyErr_SetString(PyExc_TypeError,
659 "first arg must be callable");
660 return NULL;
661 }
662 if (!PyTuple_Check(args)) {
663 PyErr_SetString(PyExc_TypeError,
664 "2nd arg must be a tuple");
665 return NULL;
666 }
667 if (keyw != NULL && !PyDict_Check(keyw)) {
668 PyErr_SetString(PyExc_TypeError,
669 "optional 3rd arg must be a dictionary");
670 return NULL;
671 }
672 boot = PyMem_NEW(struct bootstate, 1);
673 if (boot == NULL)
674 return PyErr_NoMemory();
675 boot->interp = PyThreadState_GET()->interp;
676 boot->func = func;
677 boot->args = args;
678 boot->keyw = keyw;
679 boot->tstate = _PyThreadState_Prealloc(boot->interp);
680 if (boot->tstate == NULL) {
681 PyMem_DEL(boot);
682 return PyErr_NoMemory();
683 }
684 Py_INCREF(func);
685 Py_INCREF(args);
686 Py_XINCREF(keyw);
687 PyEval_InitThreads(); /* Start the interpreter's thread-awareness */
688 ident = PyThread_start_new_thread(t_bootstrap, (void*) boot);
689 if (ident == -1) {
690 PyErr_SetString(ThreadError, "can't start new thread");
691 Py_DECREF(func);
692 Py_DECREF(args);
693 Py_XDECREF(keyw);
694 PyThreadState_Clear(boot->tstate);
695 PyMem_DEL(boot);
696 return NULL;
697 }
698 return PyInt_FromLong(ident);
699}
700
701PyDoc_STRVAR(start_new_doc,
702"start_new_thread(function, args[, kwargs])\n\
703(start_new() is an obsolete synonym)\n\
704\n\
705Start a new thread and return its identifier. The thread will call the\n\
706function with positional arguments from the tuple args and keyword arguments\n\
707taken from the optional dictionary kwargs. The thread exits when the\n\
708function returns; the return value is ignored. The thread will also exit\n\
709when the function raises an unhandled exception; a stack trace will be\n\
710printed unless the exception is SystemExit.\n");
711
712static PyObject *
713thread_PyThread_exit_thread(PyObject *self)
714{
715 PyErr_SetNone(PyExc_SystemExit);
716 return NULL;
717}
718
719PyDoc_STRVAR(exit_doc,
720"exit()\n\
721(exit_thread() is an obsolete synonym)\n\
722\n\
723This is synonymous to ``raise SystemExit''. It will cause the current\n\
724thread to exit silently unless the exception is caught.");
725
726static PyObject *
727thread_PyThread_interrupt_main(PyObject * self)
728{
729 PyErr_SetInterrupt();
730 Py_INCREF(Py_None);
731 return Py_None;
732}
733
734PyDoc_STRVAR(interrupt_doc,
735"interrupt_main()\n\
736\n\
737Raise a KeyboardInterrupt in the main thread.\n\
738A subthread can use this function to interrupt the main thread."
739);
740
741static lockobject *newlockobject(void);
742
743static PyObject *
744thread_PyThread_allocate_lock(PyObject *self)
745{
746 return (PyObject *) newlockobject();
747}
748
749PyDoc_STRVAR(allocate_doc,
750"allocate_lock() -> lock object\n\
751(allocate() is an obsolete synonym)\n\
752\n\
753Create a new lock object. See help(LockType) for information about locks.");
754
755static PyObject *
756thread_get_ident(PyObject *self)
757{
758 long ident;
759 ident = PyThread_get_thread_ident();
760 if (ident == -1) {
761 PyErr_SetString(ThreadError, "no current thread ident");
762 return NULL;
763 }
764 return PyInt_FromLong(ident);
765}
766
767PyDoc_STRVAR(get_ident_doc,
768"get_ident() -> integer\n\
769\n\
770Return a non-zero integer that uniquely identifies the current thread\n\
771amongst other threads that exist simultaneously.\n\
772This may be used to identify per-thread resources.\n\
773Even though on some platforms threads identities may appear to be\n\
774allocated consecutive numbers starting at 1, this behavior should not\n\
775be relied upon, and the number should be seen purely as a magic cookie.\n\
776A thread's identity may be reused for another thread after it exits.");
777
778static PyObject *
779thread__count(PyObject *self)
780{
781 return PyInt_FromLong(nb_threads);
782}
783
784PyDoc_STRVAR(_count_doc,
785"_count() -> integer\n\
786\n\
787\
788Return the number of currently running Python threads, excluding \n\
789the main thread. The returned number comprises all threads created\n\
790through `start_new_thread()` as well as `threading.Thread`, and not\n\
791yet finished.\n\
792\n\
793This function is meant for internal and specialized purposes only.\n\
794In most applications `threading.enumerate()` should be used instead.");
795
796static PyObject *
797thread_stack_size(PyObject *self, PyObject *args)
798{
799 size_t old_size;
800 Py_ssize_t new_size = 0;
801 int rc;
802
803 if (!PyArg_ParseTuple(args, "|n:stack_size", &new_size))
804 return NULL;
805
806 if (new_size < 0) {
807 PyErr_SetString(PyExc_ValueError,
808 "size must be 0 or a positive value");
809 return NULL;
810 }
811
812 old_size = PyThread_get_stacksize();
813
814 rc = PyThread_set_stacksize((size_t) new_size);
815 if (rc == -1) {
816 PyErr_Format(PyExc_ValueError,
817 "size not valid: %zd bytes",
818 new_size);
819 return NULL;
820 }
821 if (rc == -2) {
822 PyErr_SetString(ThreadError,
823 "setting stack size not supported");
824 return NULL;
825 }
826
827 return PyInt_FromSsize_t((Py_ssize_t) old_size);
828}
829
830PyDoc_STRVAR(stack_size_doc,
831"stack_size([size]) -> size\n\
832\n\
833Return the thread stack size used when creating new threads. The\n\
834optional size argument specifies the stack size (in bytes) to be used\n\
835for subsequently created threads, and must be 0 (use platform or\n\
836configured default) or a positive integer value of at least 32,768 (32k).\n\
837If changing the thread stack size is unsupported, a ThreadError\n\
838exception is raised. If the specified size is invalid, a ValueError\n\
839exception is raised, and the stack size is unmodified. 32k bytes\n\
840 currently the minimum supported stack size value to guarantee\n\
841sufficient stack space for the interpreter itself.\n\
842\n\
843Note that some platforms may have particular restrictions on values for\n\
844the stack size, such as requiring a minimum stack size larger than 32kB or\n\
845requiring allocation in multiples of the system memory page size\n\
846- platform documentation should be referred to for more information\n\
847(4kB pages are common; using multiples of 4096 for the stack size is\n\
848the suggested approach in the absence of more specific information).");
849
850static PyMethodDef thread_methods[] = {
851 {"start_new_thread", (PyCFunction)thread_PyThread_start_new_thread,
852 METH_VARARGS,
853 start_new_doc},
854 {"start_new", (PyCFunction)thread_PyThread_start_new_thread,
855 METH_VARARGS,
856 start_new_doc},
857 {"allocate_lock", (PyCFunction)thread_PyThread_allocate_lock,
858 METH_NOARGS, allocate_doc},
859 {"allocate", (PyCFunction)thread_PyThread_allocate_lock,
860 METH_NOARGS, allocate_doc},
861 {"exit_thread", (PyCFunction)thread_PyThread_exit_thread,
862 METH_NOARGS, exit_doc},
863 {"exit", (PyCFunction)thread_PyThread_exit_thread,
864 METH_NOARGS, exit_doc},
865 {"interrupt_main", (PyCFunction)thread_PyThread_interrupt_main,
866 METH_NOARGS, interrupt_doc},
867 {"get_ident", (PyCFunction)thread_get_ident,
868 METH_NOARGS, get_ident_doc},
869 {"_count", (PyCFunction)thread__count,
870 METH_NOARGS, _count_doc},
871 {"stack_size", (PyCFunction)thread_stack_size,
872 METH_VARARGS,
873 stack_size_doc},
874 {NULL, NULL} /* sentinel */
875};
876
877
878/* Initialization function */
879
880PyDoc_STRVAR(thread_doc,
881"This module provides primitive operations to write multi-threaded programs.\n\
882The 'threading' module provides a more convenient interface.");
883
884PyDoc_STRVAR(lock_doc,
885"A lock object is a synchronization primitive. To create a lock,\n\
886call the PyThread_allocate_lock() function. Methods are:\n\
887\n\
888acquire() -- lock the lock, possibly blocking until it can be obtained\n\
889release() -- unlock of the lock\n\
890locked() -- test whether the lock is currently locked\n\
891\n\
892A lock is not owned by the thread that locked it; another thread may\n\
893unlock it. A thread attempting to lock a lock that it has already locked\n\
894will block until another thread unlocks it. Deadlocks may ensue.");
895
896PyMODINIT_FUNC
897initthread(void)
898{
899 PyObject *m, *d;
900
901 /* Initialize types: */
902 if (PyType_Ready(&localdummytype) < 0)
903 return;
904 if (PyType_Ready(&localtype) < 0)
905 return;
906
907 /* Create the module and add the functions */
908 m = Py_InitModule3("thread", thread_methods, thread_doc);
909 if (m == NULL)
910 return;
911
912 /* Add a symbolic constant */
913 d = PyModule_GetDict(m);
914 ThreadError = PyErr_NewException("thread.error", NULL, NULL);
915 PyDict_SetItemString(d, "error", ThreadError);
916 Locktype.tp_doc = lock_doc;
917 if (PyType_Ready(&Locktype) < 0)
918 return;
919 Py_INCREF(&Locktype);
920 PyDict_SetItemString(d, "LockType", (PyObject *)&Locktype);
921
922 Py_INCREF(&localtype);
923 if (PyModule_AddObject(m, "_local", (PyObject *)&localtype) < 0)
924 return;
925
926 nb_threads = 0;
927
928 str_dict = PyString_InternFromString("__dict__");
929 if (str_dict == NULL)
930 return;
931
932 /* Initialize the C thread library */
933 PyThread_init_thread();
934}
Note: See TracBrowser for help on using the repository browser.