home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / py2s152.zip / Python / pystate.c < prev    next >
C/C++ Source or Header  |  1999-06-27  |  6KB  |  237 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Thread and interpreter state structures and their interfaces */
  33.  
  34. #include "Python.h"
  35.  
  36. #define ZAP(x) { \
  37.     PyObject *tmp = (PyObject *)(x); \
  38.     (x) = NULL; \
  39.     Py_XDECREF(tmp); \
  40. }
  41.  
  42.  
  43. static PyInterpreterState *interp_head = NULL;
  44.  
  45. PyThreadState *_PyThreadState_Current = NULL;
  46.  
  47.  
  48. PyInterpreterState *
  49. PyInterpreterState_New()
  50. {
  51.     PyInterpreterState *interp = PyMem_NEW(PyInterpreterState, 1);
  52.  
  53.     if (interp != NULL) {
  54.         interp->modules = NULL;
  55.         interp->sysdict = NULL;
  56.         interp->builtins = NULL;
  57.         interp->checkinterval = 10;
  58.         interp->tstate_head = NULL;
  59.  
  60.         interp->next = interp_head;
  61.         interp_head = interp;
  62.     }
  63.  
  64.     return interp;
  65. }
  66.  
  67.  
  68. void
  69. PyInterpreterState_Clear(interp)
  70.     PyInterpreterState *interp;
  71. {
  72.     PyThreadState *p;
  73.     for (p = interp->tstate_head; p != NULL; p = p->next)
  74.         PyThreadState_Clear(p);
  75.     ZAP(interp->modules);
  76.     ZAP(interp->sysdict);
  77.     ZAP(interp->builtins);
  78. }
  79.  
  80.  
  81. static void
  82. zapthreads(interp)
  83.     PyInterpreterState *interp;
  84. {
  85.     PyThreadState *p, *q;
  86.     p = interp->tstate_head;
  87.     while (p != NULL) {
  88.         q = p->next;
  89.         PyThreadState_Delete(p);
  90.         p = q;
  91.     }
  92. }
  93.  
  94.  
  95. void
  96. PyInterpreterState_Delete(interp)
  97.     PyInterpreterState *interp;
  98. {
  99.     PyInterpreterState **p;
  100.     zapthreads(interp);
  101.     for (p = &interp_head; ; p = &(*p)->next) {
  102.         if (*p == NULL)
  103.             Py_FatalError(
  104.                 "PyInterpreterState_Delete: invalid interp");
  105.         if (*p == interp)
  106.             break;
  107.     }
  108.     if (interp->tstate_head != NULL)
  109.         Py_FatalError("PyInterpreterState_Delete: remaining threads");
  110.     *p = interp->next;
  111.     PyMem_DEL(interp);
  112. }
  113.  
  114.  
  115. PyThreadState *
  116. PyThreadState_New(interp)
  117.     PyInterpreterState *interp;
  118. {
  119.     PyThreadState *tstate = PyMem_NEW(PyThreadState, 1);
  120.  
  121.     if (tstate != NULL) {
  122.         tstate->interp = interp;
  123.  
  124.         tstate->frame = NULL;
  125.         tstate->recursion_depth = 0;
  126.         tstate->ticker = 0;
  127.         tstate->tracing = 0;
  128.  
  129.         tstate->dict = NULL;
  130.  
  131.         tstate->curexc_type = NULL;
  132.         tstate->curexc_value = NULL;
  133.         tstate->curexc_traceback = NULL;
  134.  
  135.         tstate->exc_type = NULL;
  136.         tstate->exc_value = NULL;
  137.         tstate->exc_traceback = NULL;
  138.  
  139.         tstate->sys_profilefunc = NULL;
  140.         tstate->sys_tracefunc = NULL;
  141.  
  142.         tstate->next = interp->tstate_head;
  143.         interp->tstate_head = tstate;
  144.     }
  145.  
  146.     return tstate;
  147. }
  148.  
  149.  
  150. void
  151. PyThreadState_Clear(tstate)
  152.     PyThreadState *tstate;
  153. {
  154.     if (Py_VerboseFlag && tstate->frame != NULL)
  155.         fprintf(stderr,
  156.           "PyThreadState_Clear: warning: thread still has a frame\n");
  157.  
  158.     ZAP(tstate->frame);
  159.  
  160.     ZAP(tstate->dict);
  161.  
  162.     ZAP(tstate->curexc_type);
  163.     ZAP(tstate->curexc_value);
  164.     ZAP(tstate->curexc_traceback);
  165.  
  166.     ZAP(tstate->exc_type);
  167.     ZAP(tstate->exc_value);
  168.     ZAP(tstate->exc_traceback);
  169.  
  170.     ZAP(tstate->sys_profilefunc);
  171.     ZAP(tstate->sys_tracefunc);
  172. }
  173.  
  174.  
  175. void
  176. PyThreadState_Delete(tstate)
  177.     PyThreadState *tstate;
  178. {
  179.     PyInterpreterState *interp;
  180.     PyThreadState **p;
  181.     if (tstate == NULL)
  182.         Py_FatalError("PyThreadState_Delete: NULL tstate");
  183.     if (tstate == _PyThreadState_Current)
  184.         Py_FatalError("PyThreadState_Delete: tstate is still current");
  185.     interp = tstate->interp;
  186.     if (interp == NULL)
  187.         Py_FatalError("PyThreadState_Delete: NULL interp");
  188.     for (p = &interp->tstate_head; ; p = &(*p)->next) {
  189.         if (*p == NULL)
  190.             Py_FatalError(
  191.                 "PyThreadState_Delete: invalid tstate");
  192.         if (*p == tstate)
  193.             break;
  194.     }
  195.     *p = tstate->next;
  196.     PyMem_DEL(tstate);
  197. }
  198.  
  199.  
  200. PyThreadState *
  201. PyThreadState_Get()
  202. {
  203.     if (_PyThreadState_Current == NULL)
  204.         Py_FatalError("PyThreadState_Get: no current thread");
  205.  
  206.     return _PyThreadState_Current;
  207. }
  208.  
  209.  
  210. PyThreadState *
  211. PyThreadState_Swap(new)
  212.     PyThreadState *new;
  213. {
  214.     PyThreadState *old = _PyThreadState_Current;
  215.  
  216.     _PyThreadState_Current = new;
  217.  
  218.     return old;
  219. }
  220.  
  221. /* An extension mechanism to store arbitrary additional per-thread state.
  222.    PyThreadState_GetDict() returns a dictionary that can be used to hold such
  223.    state; the caller should pick a unique key and store its state there.  If
  224.    PyThreadState_GetDict() returns NULL, an exception has been raised (most
  225.    likely MemoryError) and the caller should pass on the exception. */
  226.  
  227. PyObject *
  228. PyThreadState_GetDict()
  229. {
  230.     if (_PyThreadState_Current == NULL)
  231.         Py_FatalError("PyThreadState_GetDict: no current thread");
  232.  
  233.     if (_PyThreadState_Current->dict == NULL)
  234.         _PyThreadState_Current->dict = PyDict_New();
  235.     return _PyThreadState_Current->dict;
  236. }
  237.