1993-07-28 11:05:47 +02:00
|
|
|
#ifndef Py_CEVAL_H
|
|
|
|
#define Py_CEVAL_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1991-02-19 13:39:46 +01:00
|
|
|
|
1992-08-05 21:58:53 +02:00
|
|
|
/* Interface to random parts in ceval.c */
|
1990-12-20 16:06:42 +01:00
|
|
|
|
1998-12-04 19:48:25 +01:00
|
|
|
DL_IMPORT(PyObject *) PyEval_CallObjectWithKeywords
|
2000-07-09 01:37:28 +02:00
|
|
|
(PyObject *, PyObject *, PyObject *);
|
1991-07-27 23:33:03 +02:00
|
|
|
|
1999-03-17 19:44:39 +01:00
|
|
|
/* DLL-level Backwards compatibility: */
|
|
|
|
#undef PyEval_CallObject
|
2000-07-09 01:37:28 +02:00
|
|
|
DL_IMPORT(PyObject *) PyEval_CallObject(PyObject *, PyObject *);
|
1999-03-17 19:44:39 +01:00
|
|
|
|
1997-08-30 17:02:50 +02:00
|
|
|
/* Inline this */
|
|
|
|
#define PyEval_CallObject(func,arg) \
|
|
|
|
PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)
|
|
|
|
|
2000-07-09 01:37:28 +02:00
|
|
|
DL_IMPORT(PyObject *) PyEval_CallFunction(PyObject *obj, char *format, ...);
|
|
|
|
DL_IMPORT(PyObject *) PyEval_CallMethod(PyObject *obj,
|
|
|
|
char *methodname, char *format, ...);
|
1998-08-08 22:53:36 +02:00
|
|
|
|
2000-07-09 01:37:28 +02:00
|
|
|
DL_IMPORT(PyObject *) PyEval_GetBuiltins(void);
|
|
|
|
DL_IMPORT(PyObject *) PyEval_GetGlobals(void);
|
|
|
|
DL_IMPORT(PyObject *) PyEval_GetLocals(void);
|
|
|
|
DL_IMPORT(PyObject *) PyEval_GetOwner(void);
|
|
|
|
DL_IMPORT(PyObject *) PyEval_GetFrame(void);
|
|
|
|
DL_IMPORT(int) PyEval_GetRestricted(void);
|
2001-03-22 03:32:48 +01:00
|
|
|
DL_IMPORT(int) PyEval_GetNestedScopes(void);
|
1990-12-20 16:06:42 +01:00
|
|
|
|
2000-07-09 01:37:28 +02:00
|
|
|
DL_IMPORT(int) Py_FlushLine(void);
|
1992-08-05 21:58:53 +02:00
|
|
|
|
2000-07-25 14:56:38 +02:00
|
|
|
DL_IMPORT(int) Py_AddPendingCall(int (*func)(void *), void *arg);
|
2000-07-09 01:37:28 +02:00
|
|
|
DL_IMPORT(int) Py_MakePendingCalls(void);
|
1994-09-14 15:23:36 +02:00
|
|
|
|
2000-09-01 02:01:58 +02:00
|
|
|
DL_IMPORT(void) Py_SetRecursionLimit(int);
|
|
|
|
DL_IMPORT(int) Py_GetRecursionLimit(void);
|
1992-08-05 21:58:53 +02:00
|
|
|
|
|
|
|
/* Interface for threads.
|
|
|
|
|
|
|
|
A module that plans to do a blocking system call (or something else
|
|
|
|
that lasts a long time and doesn't touch Python data) can allow other
|
|
|
|
threads to run as follows:
|
|
|
|
|
|
|
|
...preparations here...
|
1995-01-12 12:45:45 +01:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1992-08-05 21:58:53 +02:00
|
|
|
...blocking system call here...
|
1995-01-12 12:45:45 +01:00
|
|
|
Py_END_ALLOW_THREADS
|
1994-12-30 16:33:50 +01:00
|
|
|
...interpret result here...
|
1992-08-05 21:58:53 +02:00
|
|
|
|
1995-01-12 12:45:45 +01:00
|
|
|
The Py_BEGIN_ALLOW_THREADS/Py_END_ALLOW_THREADS pair expands to a
|
|
|
|
{}-surrounded block.
|
1992-08-05 21:58:53 +02:00
|
|
|
To leave the block in the middle (e.g., with return), you must insert
|
2000-09-15 20:19:27 +02:00
|
|
|
a line containing Py_BLOCK_THREADS before the return, e.g.
|
1992-08-05 21:58:53 +02:00
|
|
|
|
|
|
|
if (...premature_exit...) {
|
1995-01-12 12:45:45 +01:00
|
|
|
Py_BLOCK_THREADS
|
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
1992-08-05 21:58:53 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
An alternative is:
|
|
|
|
|
1995-01-12 12:45:45 +01:00
|
|
|
Py_BLOCK_THREADS
|
1992-08-05 21:58:53 +02:00
|
|
|
if (...premature_exit...) {
|
1995-01-12 12:45:45 +01:00
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
1992-08-05 21:58:53 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
1995-01-12 12:45:45 +01:00
|
|
|
Py_UNBLOCK_THREADS
|
1992-08-05 21:58:53 +02:00
|
|
|
|
|
|
|
For convenience, that the value of 'errno' is restored across
|
2000-09-15 20:19:27 +02:00
|
|
|
Py_END_ALLOW_THREADS and Py_BLOCK_THREADS.
|
1992-08-05 21:58:53 +02:00
|
|
|
|
1995-01-12 12:45:45 +01:00
|
|
|
WARNING: NEVER NEST CALLS TO Py_BEGIN_ALLOW_THREADS AND
|
|
|
|
Py_END_ALLOW_THREADS!!!
|
1992-08-05 21:58:53 +02:00
|
|
|
|
1995-01-12 12:45:45 +01:00
|
|
|
The function PyEval_InitThreads() should be called only from
|
1992-08-05 21:58:53 +02:00
|
|
|
initthread() in "threadmodule.c".
|
|
|
|
|
|
|
|
Note that not yet all candidates have been converted to use this
|
|
|
|
mechanism!
|
|
|
|
*/
|
|
|
|
|
2000-07-09 01:37:28 +02:00
|
|
|
extern DL_IMPORT(PyThreadState *) PyEval_SaveThread(void);
|
|
|
|
extern DL_IMPORT(void) PyEval_RestoreThread(PyThreadState *);
|
1992-08-05 21:58:53 +02:00
|
|
|
|
1994-08-01 13:34:53 +02:00
|
|
|
#ifdef WITH_THREAD
|
1992-08-05 21:58:53 +02:00
|
|
|
|
2000-07-09 01:37:28 +02:00
|
|
|
extern DL_IMPORT(void) PyEval_InitThreads(void);
|
|
|
|
extern DL_IMPORT(void) PyEval_AcquireLock(void);
|
|
|
|
extern DL_IMPORT(void) PyEval_ReleaseLock(void);
|
|
|
|
extern DL_IMPORT(void) PyEval_AcquireThread(PyThreadState *tstate);
|
|
|
|
extern DL_IMPORT(void) PyEval_ReleaseThread(PyThreadState *tstate);
|
2000-08-27 22:00:35 +02:00
|
|
|
extern DL_IMPORT(void) PyEval_ReInitThreads(void);
|
1997-07-19 01:56:58 +02:00
|
|
|
|
1995-01-12 12:45:45 +01:00
|
|
|
#define Py_BEGIN_ALLOW_THREADS { \
|
1997-07-19 01:56:58 +02:00
|
|
|
PyThreadState *_save; \
|
1995-01-12 12:45:45 +01:00
|
|
|
_save = PyEval_SaveThread();
|
|
|
|
#define Py_BLOCK_THREADS PyEval_RestoreThread(_save);
|
|
|
|
#define Py_UNBLOCK_THREADS _save = PyEval_SaveThread();
|
|
|
|
#define Py_END_ALLOW_THREADS PyEval_RestoreThread(_save); \
|
1992-08-05 21:58:53 +02:00
|
|
|
}
|
|
|
|
|
1994-08-01 13:34:53 +02:00
|
|
|
#else /* !WITH_THREAD */
|
1992-08-05 21:58:53 +02:00
|
|
|
|
1995-01-12 12:45:45 +01:00
|
|
|
#define Py_BEGIN_ALLOW_THREADS {
|
|
|
|
#define Py_BLOCK_THREADS
|
|
|
|
#define Py_UNBLOCK_THREADS
|
|
|
|
#define Py_END_ALLOW_THREADS }
|
1992-08-05 21:58:53 +02:00
|
|
|
|
1994-08-01 13:34:53 +02:00
|
|
|
#endif /* !WITH_THREAD */
|
1993-07-28 11:05:47 +02:00
|
|
|
|
2000-07-09 01:37:28 +02:00
|
|
|
extern DL_IMPORT(int) _PyEval_SliceIndex(PyObject *, int *);
|
2000-05-08 16:04:54 +02:00
|
|
|
|
|
|
|
|
1993-07-28 11:05:47 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_CEVAL_H */
|