HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PY_CPythonAPI.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * COMMENTS:
7  * This file provides a set of functions, types, and macros that wrap
8  * Python's C API. This way, we can choose at runtime which version
9  * of the Python library we load, and we do not add a compile/link-time
10  * dependency on a particular version of Python. Use this wrapper API
11  * as follows:
12  *
13  * - Instead of including <python/Python.h>, instead include
14  * PY_CPythonAPI.h. Still include this file first, just like you would
15  * with Python.h.
16  * (It's even in the Python docs that you need to include Python.h
17  * before anything else. Otherwise you get strange gcc warnings.)
18  *
19  * - Add a "PY_" prefix to all Python functions, types, and macros. For
20  * example,
21  * PyObject *dict = PyDict_New();
22  * becomes
23  * PY_PyObject *dict = PY_PyDict_New();
24  *
25  * - Access to Python constants, such as PyExc_SystemExit, become function
26  * calls. For example,
27  * PyErr_SetObject(PyExc_IndexError, error_message);
28  * becomes
29  * PY_PyErr_SetObject(PY_PyExc_IndexError(), error_message);
30  *
31  * - When directly accessing members of Python structures, change the
32  * data member accesses into method calls. For example, when accessing
33  * the ob_type member of a [PY_]PyObject,
34  * op->ob_type
35  * becomes
36  * ob->ob_type()
37  *
38  * - Constructing instances of Python objects like PySequenceMethods,
39  * or creating subclasses of PyObject, is different.
40  */
41 
42 #ifndef __PY_CPythonAPI_h__
43 #define __PY_CPythonAPI_h__
44 
45 #include "PY_API.h"
46 #include <UT/UT_WorkBuffer.h>
47 #include <SYS/SYS_Types.h>
48 #include <SYS/SYS_Visibility.h>
49 #include <hboost/preprocessor/seq/for_each.hpp>
50 #include <hboost/preprocessor/seq/for_each_i.hpp>
51 #include <hboost/preprocessor/seq/seq.hpp>
52 #include <hboost/preprocessor/punctuation/comma_if.hpp>
53 #include <hboost/preprocessor/cat.hpp>
54 #include <hboost/preprocessor/stringize.hpp>
55 #include <patchlevel.h> // PY_MAJOR_VERSION, PY_MINOR_VERSION
56 #include <stdarg.h>
57 #include <stdio.h>
58 #include <string.h>
59 
60 #ifdef WIN32
61 // Disable MSVC warnings about not enough actual parameters for macros.
62 // Otherwise, wrapped functions that take no parameters will generate
63 // warnings.
64 #pragma warning(disable:4003)
65 #endif
66 
67 
68 using PY_AtExitFunc = void (*)();
69 
70 // The Py_Main signature changed between Python 2 and 3.
71 
72 #define PY_FUNC_SEQ_Py_Main \
73  ((Py_Main)(int)((int)(wchar_t **)))
74 
75 #define PY_FUNC_SEQ_PySys_SetArgv \
76  ((PySys_SetArgv)(void)((int)(wchar_t **)))
77 
78 #define PY_FUNC_SEQ_PySys_SetArgvEx \
79  ((PySys_SetArgvEx)(void)((int)(wchar_t **)(int)))
80 
81 class PY_PyFrameObject;
82 class PY_PyObject;
83 class UT_WorkBuffer;
84 
85 // These are the functions we'll automatically wrap, of the form
86 // (function_name)(return_type)(parm_types). parm_types is itself a sequence
87 // of (T1)(T2)(T3). While the wrapped functions don't have a "PY_" prefix,
88 // any non-native data types do.
89 #define PY_WRAPPED_FUNCTIONS \
90  ((_PyImport_AcquireLock)(void)()) \
91  ((_PyImport_ReleaseLock)(int)()) \
92  ((_Py_VaBuildValue_SizeT)(PY_PyObject *)((const char *)(va_list))) \
93  ((Py_AtExit)(int)((PY_AtExitFunc))) \
94  ((PyGILState_Release)(void)((PY_PyGILState_STATE))) \
95  ((PyRun_SimpleStringFlags)(int)((const char *)(PY_PyCompilerFlags *))) \
96  ((Py_CompileStringFlags)(PY_PyObject *) \
97  ((const char *)(const char *)(int)(PY_PyCompilerFlags *))) \
98  ((PyCFunction_NewEx)(PY_PyObject *) \
99  ((PY_PyMethodDef *)(PY_PyObject *)(PY_PyObject *))) \
100  ((PyConfig_Clear)(void)((PY_PyConfig *))) \
101  ((PyConfig_InitPythonConfig)(void)((PY_PyConfig *))) \
102  ((PyConfig_SetArgv)(PY_PyStatus)((PY_PyConfig *)(int)(wchar_t *const *))) \
103  ((PyConfig_SetBytesArgv)(PY_PyStatus)((PY_PyConfig *)(int)(char *const *))) \
104  ((PyEval_CallObjectWithKeywords)(PY_PyObject *) \
105  ((PY_PyObject *)(PY_PyObject *)(PY_PyObject *))) \
106  ((PyEval_GetFrame)(PY_PyFrameObject *)()) \
107  ((PyEval_EvalCode)(PY_PyObject *) \
108  ((PY_PyCodeObject *)(PY_PyObject *)(PY_PyObject *))) \
109  ((PyThread_get_thread_ident)(long)()) \
110  ((PyThreadState_SetAsyncExc)(int)((long)(PY_PyObject *))) \
111  PY_FUNC_SEQ_Py_Main \
112  ((Py_RunMain)(int)()) \
113  ((Py_IncRef)(void)((PY_PyObject *))) \
114  ((Py_InitializeFromConfig)(PY_PyStatus)((const PY_PyConfig *))) \
115  ((Py_DecRef)(void)((PY_PyObject *))) \
116  ((PyObject_GetAttr)(PY_PyObject *)((PY_PyObject *)(PY_PyObject *))) \
117  ((PyObject_GetAttrString)(PY_PyObject *)((PY_PyObject *)(const char *))) \
118  ((PyObject_SetAttr)(int)((PY_PyObject *)(PY_PyObject *)(PY_PyObject *))) \
119  ((PyObject_Repr)(PY_PyObject *)((PY_PyObject*))) \
120  ((PyObject_Str)(PY_PyObject *)((PY_PyObject *))) \
121  ((PyObject_IsTrue)(int)((PY_PyObject *))) \
122  ((PyObject_CallObject)(PY_PyObject *)((PY_PyObject *)(PY_PyObject *))) \
123  ((PyObject_Call)(PY_PyObject *) \
124  ((PY_PyObject *)(PY_PyObject *)(PY_PyObject *))) \
125  ((PyObject_GetIter)(PY_PyObject *)((PY_PyObject *))) \
126  ((PyObject_RichCompareBool)(int)((PY_PyObject *)(PY_PyObject *)(int))) \
127  ((PyObject_Print)(int)((PY_PyObject *)(FILE *)(int))) \
128  ((PyObject_Hash)(PY_Py_hash_t)((PY_PyObject *))) \
129  ((Py_VaBuildValue)(PY_PyObject *)((const char *)(va_list))) \
130  ((PyArg_VaParse)(int)((PY_PyObject *)(const char *)(va_list))) \
131  ((PyType_IsSubtype)(int)((PY_PyTypeObject *)(PY_PyTypeObject *))) \
132  ((PyType_Ready)(int)((PY_PyTypeObject *))) \
133  ((PyErr_Occurred)(PY_PyObject *)()) \
134  ((PyErr_ExceptionMatches)(int)((PY_PyObject *))) \
135  ((PyErr_Fetch)(void)((PY_PyObject **)(PY_PyObject **)(PY_PyObject **))) \
136  ((PyErr_Clear)(void)()) \
137  ((PyErr_NormalizeException)(void) \
138  ((PY_PyObject **)(PY_PyObject **)(PY_PyObject **))) \
139  ((PyErr_Print)(void)()) \
140  ((PyErr_SetInterrupt)(void)()) \
141  ((PyErr_SetString)(void)((PY_PyObject *)(const char *))) \
142  ((PyErr_SetNone)(void)((PY_PyObject *))) \
143  ((PyErr_SetObject)(void)((PY_PyObject *)(PY_PyObject *))) \
144  ((PyErr_CheckSignals)(int)()) \
145  ((PyLong_FromLongLong)(PY_PyObject *)((int64))) \
146  ((PyLong_FromLong)(PY_PyObject *)((long))) \
147  ((PyLong_AsLong)(long)((PY_PyObject *))) \
148  ((PyLong_AsLongLong)(int64)((PY_PyObject *))) \
149  ((PyLong_AsVoidPtr)(void*)((PY_PyObject *))) \
150  ((PyFloat_AsDouble)(double)((PY_PyObject *))) \
151  ((PyFloat_FromDouble)(PY_PyObject *)((double))) \
152  ((PySequence_Check)(int)((PY_PyObject *))) \
153  ((PySequence_Size)(PY_Py_ssize_t)((PY_PyObject *))) \
154  ((PySequence_GetItem)(PY_PyObject *)((PY_PyObject *)(PY_Py_ssize_t))) \
155  ((PySequence_GetSlice)(PY_PyObject *) \
156  ((PY_PyObject *)(PY_Py_ssize_t)(PY_Py_ssize_t))) \
157  ((PyList_New)(PY_PyObject *)((PY_Py_ssize_t))) \
158  ((PyList_Size)(PY_Py_ssize_t)((PY_PyObject *))) \
159  ((PyList_GetItem)(PY_PyObject *)((PY_PyObject *)(PY_Py_ssize_t))) \
160  ((PyList_SetItem)(int)((PY_PyObject *)(PY_Py_ssize_t)(PY_PyObject *))) \
161  ((PyList_Append)(int)((PY_PyObject *)(PY_PyObject *))) \
162  ((PyTuple_New)(PY_PyObject *)((PY_Py_ssize_t))) \
163  ((PyTuple_SetItem)(int)((PY_PyObject *)(PY_Py_ssize_t)(PY_PyObject *))) \
164  ((PyTuple_Size)(PY_Py_ssize_t)((PY_PyObject *))) \
165  ((PyDict_Copy)(PY_PyObject *)((PY_PyObject *))) \
166  ((PyDict_New)(PY_PyObject *)()) \
167  ((PyDict_Clear)(void)((PY_PyObject *))) \
168  ((PyDict_Next)(int) \
169  ((PY_PyObject *)(PY_Py_ssize_t *)(PY_PyObject **)(PY_PyObject **))) \
170  ((PyDict_GetItem)(PY_PyObject *)((PY_PyObject *)(PY_PyObject *))) \
171  ((PyDict_GetItemString)(PY_PyObject *)((PY_PyObject *)(const char *))) \
172  ((PyDict_SetItemString)(int) \
173  ((PY_PyObject *)(const char *)(PY_PyObject *))) \
174  ((PyDict_SetItem)(int)((PY_PyObject *)(PY_PyObject *)(PY_PyObject *))) \
175  ((PyDict_DelItemString)(PY_PyObject *)((PY_PyObject *)(const char *))) \
176  ((PyDict_Merge)(int)((PY_PyObject *)(PY_PyObject *)(int))) \
177  ((PyDict_Size)(int)((PY_PyObject *))) \
178  ((Py_ExitStatusException)(void)((PY_PyStatus))) \
179  ((PyIter_Next)(PY_PyObject *)((PY_PyObject *))) \
180  ((PyFunction_GetCode)(PY_PyObject *)((PY_PyObject *))) \
181  ((PyCallable_Check)(int)((PY_PyObject *))) \
182  ((PyImport_ImportModule)(PY_PyObject *)((const char *))) \
183  ((PyImport_ExecCodeModule)(PY_PyObject *)((char *)(PY_PyObject *))) \
184  ((PyImport_AddModule)(PY_PyObject *)((const char *))) \
185  ((PyImport_GetMagicNumber)(long)()) \
186  ((PyModule_GetDict)(PY_PyObject *)((PY_PyObject *))) \
187  ((PyModule_AddObject)(int)((PY_PyObject *)(const char *)(PY_PyObject *))) \
188  PY_FUNC_SEQ_PySys_SetArgv \
189  PY_FUNC_SEQ_PySys_SetArgvEx \
190  ((PySys_GetObject)(PY_PyObject *)((char *))) \
191  ((PyMarshal_ReadObjectFromString)(PY_PyObject *)((char *)(PY_Py_ssize_t))) \
192  ((PyMarshal_WriteObjectToString)(PY_PyObject *)((PY_PyObject *)(int))) \
193  ((PyPreConfig_InitPythonConfig)(void)((PY_PyPreConfig *))) \
194  ((Py_PreInitialize)(PY_PyStatus)((const PY_PyPreConfig *))) \
195  ((Py_PreInitializeFromArgs)(PY_PyStatus)((const PY_PyPreConfig *)(PY_Py_ssize_t)(wchar_t * const *))) \
196  ((Py_PreInitializeFromBytesArgs)(PY_PyStatus)((const PY_PyPreConfig *)(PY_Py_ssize_t)(char * const *))) \
197  ((PyRun_InteractiveLoopFlags)(int) \
198  ((FILE *)(const char *)(PY_PyCompilerFlags *))) \
199  ((PyStatus_Exception)(int)((PY_PyStatus))) \
200  /**/
201 
202 #define PY_FUNC_PYSYS_ADDWARNOPTION \
203  ((PySys_AddWarnOption)(void)((const wchar_t *)))
204 
205 // Like PY_WRAPPED_FUNCTIONS above, these are the functions we'll automatically
206 // wrap, of the form (function_name)(return_type)(parm_types). parm_types is
207 // itself a sequence of (T1)(T2)(T3). While the wrapped functions don't have a
208 // "PY_" prefix, any non-native data types do.
209 //
210 // The difference here from PY_WRAPPED_FUNCTIONS is that these functions do not
211 // assert on debug builds whether we have the GIL when they're called.
212 #define PY_WRAPPED_UNCHECKED_FUNCTIONS \
213  ((Py_InitializeEx)(void)((int))) \
214  ((Py_IsInitialized)(int)()) \
215  ((Py_SetProgramName)(void)((char*))) \
216  ((Py_SetPythonHome)(void)((char*))) \
217  ((PyEval_InitThreads)(void)()) \
218  ((PyEval_RestoreThread)(void)((PY_PyThreadState *))) \
219  ((PyEval_SaveThread)(PY_PyThreadState *)()) \
220  ((PyGILState_Ensure)(PY_PyGILState_STATE)()) \
221  ((PyGILState_GetThisThreadState)(PY_PyThreadState *)()) \
222  PY_FUNC_PYSYS_ADDWARNOPTION \
223  /**/
224 
225 // These wrapped functions only require the GIL on Python 3
226 #define PY_WRAPPED_MEMORY_FUNCTIONS \
227  ((PyMem_Malloc)(void *)((size_t))) \
228  ((PyMem_Free)(void)((void *))) \
229  /**/
230 
231 // These are the constants we'll automatically wrap, of the form
232 // (constant_name)(type). The names of the constants must correspond directly
233 // to symbols in the Python shared object.
234 typedef char *(*PY_PyOS_ReadlineFunctionPointerType)
235  (FILE *, FILE *, const char *);
236 #define PY_WRAPPED_CONSTANTS \
237  ((_Py_NoneStruct)(PY_PyObject)) \
238  ((_PyOS_ReadlineTState)(PY_PyThreadState *)) \
239  ((PyOS_ReadlineFunctionPointer)(PY_PyOS_ReadlineFunctionPointerType)) \
240  ((PyExc_RuntimeError)(PY_PyObject *)) \
241  ((PyExc_IndexError)(PY_PyObject *)) \
242  ((PyExc_AttributeError)(PY_PyObject *)) \
243  ((PyExc_TypeError)(PY_PyObject *)) \
244  ((PyExc_KeyboardInterrupt)(PY_PyObject *)) \
245  ((PyExc_SystemExit)(PY_PyObject *)) \
246  ((PyExc_BaseException)(PY_PyObject *)) \
247  ((PyLong_Type)(PY_PyTypeObject)) \
248  ((PyBool_Type)(PY_PyTypeObject)) \
249  ((PyFloat_Type)(PY_PyTypeObject)) \
250  ((PyUnicode_Type)(PY_PyTypeObject)) \
251  ((PyTuple_Type)(PY_PyTypeObject)) \
252  ((PyList_Type)(PY_PyTypeObject)) \
253  ((PyDict_Type)(PY_PyTypeObject)) \
254  ((PyFunction_Type)(PY_PyTypeObject))
255 
256 //----------------------------------------------------------------------------
257 
258 // These initial macros simplify usage of Boost's preprocessor SEQ_FOR_EACH
259 // macros. SEQ_FOR_EACH works as follows: you pass it a callback macro,
260 // some extra data, and a sequence of the form (a)(b)(c). It then calls
261 // the callback macro with a repetition construct (named r, and only used
262 // internally by boost), the extra data you pased in, and each element of
263 // the sequence.
264 //
265 // Almost all the time, you don't need extra data, so you pass in _ and
266 // ingore the second parameter in the callback macro.
267 //
268 // Often, the sequence contains other sequences, and that's where these
269 // macros come in handy. PY_FOR_EACH_SEQ_OF_2, for example, takes a callback
270 // and a sequence of pair sequences of the form ((A1)(A2))((B1)(B2))((C1)(C2)).
271 // It then calls the callback with (A1, A2), then with (B1, B2), and so on.
272 // PY_FOR_EACH_SEQ_OF_3 works with sequences of triplets.
273 
274 // This helper macro works by passing in the caller's macro as the extra data.
275 // The caller's macro will then be the second argument of the
276 // PY_CALLBACK_SEQ_OF_2 macro.
277 #define PY_FOR_EACH_SEQ_OF_2(macro, seq) \
278  HBOOST_PP_SEQ_FOR_EACH(PY_CALLBACK_SEQ_OF_2, macro, seq)
279 
280 // Pull off the first and second elements of the sequence, and pass them into
281 // the caller's macro.
282 #define PY_CALLBACK_SEQ_OF_2(r, macro, seq) \
283  macro(PY_SEQ_ELEM_0(seq), PY_SEQ_ELEM_1(seq))
284 
285 
286 // This helper macro is similar to the last one, except it works with
287 // subsequences of 3 elements.
288 #define PY_FOR_EACH_SEQ_OF_3(macro, seq) \
289  HBOOST_PP_SEQ_FOR_EACH(PY_CALLBACK_SEQ_OF_3, macro, seq)
290 #define PY_CALLBACK_SEQ_OF_3(r, macro, seq) \
291  macro(PY_SEQ_ELEM_0(seq), PY_SEQ_ELEM_1(seq), PY_SEQ_ELEM_2(seq))
292 
293 
294 // These helper macros extract the first, second, and third elements from
295 // an (a)(b)(c) style sequence.
296 #define PY_SEQ_ELEM_0(seq) \
297  HBOOST_PP_SEQ_HEAD(seq)
298 #define PY_SEQ_ELEM_1(seq) \
299  HBOOST_PP_SEQ_HEAD(HBOOST_PP_SEQ_TAIL(seq))
300 #define PY_SEQ_ELEM_2(seq) \
301  HBOOST_PP_SEQ_HEAD(HBOOST_PP_SEQ_TAIL(HBOOST_PP_SEQ_TAIL(seq)))
302 
303 //----------------------------------------------------------------------------
304 
305 // This macro takes a sequence of of parameter types (T1)(T2)(T3) and creates a
306 // parameter list of the form T1 arg1, T2 arg2, T3 arg3. SEQ_FOR_EACH_I
307 // passes in the index as well as the element into PY_MAKE_PARM.
308 #define PY_MAKE_PARM_LIST(parm_types) \
309  HBOOST_PP_SEQ_FOR_EACH_I(PY_MAKE_PARM, _, parm_types)
310 
311 // unused_data is the second parameter passed to FOR_EACH_I. i is the index
312 // of the element in the parm types sequence, and elem is that element.
313 // If i is not 0, we add a comma to make sure the parameters are comma-
314 // separated.
315 #define PY_MAKE_PARM(r, unused_data, i, elem) \
316  HBOOST_PP_COMMA_IF(i) elem HBOOST_PP_CAT(arg, i)
317 
318 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
319 
320 // This macro takes a sequence of of parameter types (T1)(T2)(T3) and creates
321 // an argument list of the form arg1, arg2, arg3. The length of the parameter
322 // type sequence is used, but the actual parameter types are not.
323 #define PY_MAKE_ARG_LIST(parm_types) \
324  HBOOST_PP_SEQ_FOR_EACH_I(PY_MAKE_ARG, _, parm_types)
325 
326 #define PY_MAKE_ARG(r, unused_data, i, unused_elem) \
327  HBOOST_PP_COMMA_IF(i) HBOOST_PP_CAT(arg, i)
328 
329 //============================================================================
330 
331 // These enums and opaque types are used by the wrapped Python functions:
342 
343 #if defined(WIN32)
344  // Windows doesn't define ssize_t (a signed version of size_t). pyconfig.h
345  // (included by Python.h) does define it, though. So, rather than defining
346  // ssize_t and risking a compiler error if Python.h is ever included in our
347  // code or HDK code, we instead just define PY_Py_ssize_t directly.
348  #if SIZEOF_VOID_P == 8
349  typedef int64 PY_Py_ssize_t;
350  #else
351  typedef int32 PY_Py_ssize_t;
352  #endif
353 #else
354  typedef ssize_t PY_Py_ssize_t;
355 #endif
356 
357 // Python 3.3+ defines Py_hash_t
359 
360 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
361 
362 // This helper function is used below to emulate the result of looking up a
363 // struct element via an offset, without actually knowing the type definition
364 // of the object.
365 template <typename RETURN_TYPE>
366 static inline RETURN_TYPE &
367 pyAccessStructMember(void *c_struct, int offset)
368 { return *(RETURN_TYPE *)((char *)c_struct + offset); }
369 
370 // We can't actually declare Python structures, since their size can change
371 // depending on defines that were set when Python was compiled. Also, their
372 // size and organization could change in future Python versions. Instead,
373 // we create wrapper classes with methods to look up the corresponding
374 // data member. For example, if you would normally write op->ob_type using
375 // the standard Python API, you instead write op->ob_type() using this API.
376 //
377 // Start by building up the Python class hierarchy. Since Python is written
378 // in C, the class hierarchy is built manually, using macros for common
379 // members between subclasses. These members aren't likely to change between
380 // Python versions, but if they do we can still preserve the API (i.e. using
381 // methods to access members), although we'll have to manually give some class
382 // definitions instead of letting macros take care of everything.
383 
384 // PY_PyObject_HEAD_EXTRA is at the beginning of most Python object structures.
385 // Unfortunately, its size varies depending on compiler defines, so we compute
386 // its size when we load the Python shared object. Its constructor is private
387 // and unimplemented so that you can't accidentally instance it or any of its
388 // subclasses.
390 {
391 public:
392  static int theStructSize;
393 private:
394  PY_PyObject_HEAD_EXTRA(); // unimplemented
395 };
396 
397 // This macro creates a new subclass, adding one member.
398 #define PY_ADD_SUBCLASS_1(subclass, base_class, member1_type, member1_name) \
399 class PY_API subclass : public base_class \
400 { \
401 public: \
402  member1_type member1_name() \
403  { return pyAccessStructMember<member1_type>( \
404  this, base_class::theStructSize); } \
405 \
406  static void computeStructSize() \
407  { theStructSize = base_class::theStructSize + sizeof(member1_type); } \
408 \
409  static int theStructSize; \
410 };
411 
412 // This macro creates a new subclass, adding two members.
413 #define PY_ADD_SUBCLASS_2(subclass, base_class, \
414  member1_type, member1_name, member2_type, member2_name) \
415 class PY_API subclass : public base_class \
416 { \
417 public: \
418  member1_type member1_name() \
419  { return pyAccessStructMember<member1_type>( \
420  this, base_class::theStructSize); } \
421 \
422  member2_type member2_name() \
423  { return pyAccessStructMember<member2_type>( \
424  this, base_class::theStructSize + sizeof(member1_type)); } \
425 \
426  static void computeStructSize() \
427  { theStructSize = base_class::theStructSize + \
428  sizeof(member1_type) + sizeof(member2_type); } \
429 \
430  static int theStructSize; \
431 };
432 
433 // The elements in the PyObject_HEAD_EXTRA are dependent on Python compilation
434 // settings. See the .C file for more information. The other structures
435 // we create are:
436 //
437 // PyObject_HEAD (common to all PyObject's) is defined as: (It's changed
438 // slightly in Python 3.0, but the size is the same. See PEP 3123.)
439 // PyObject_HEAD_EXTRA
440 // Py_ssize_t ob_refcnt;
441 // PyTypeObject *ob_type;
442 //
443 // PyObject_VAR_HEAD (common to all PyVarObject's) is defined as:
444 // PyObject_HEAD
445 // Py_ssize_t ob_size;
446 //
447 // PyTypeObject starts with:
448 // PyObject_VAR_HEAD
449 // const char *tp_name;
450 // ...more...
451 //
452 // PyFrameObject starts with:
453 // PyObject_VAR_HEAD
454 // PyFrameObject *f_back;
455 // PyCodeObject *f_code;
456 // ...more...
457 //
458 // PyListObject starts with
459 // PyObject_VAR_HEAD
460 // PyObject **ob_item;
461 // ...more...
462 //
463 // PyTupleObject starts with
464 // PyObject_VAR_HEAD
465 // PyObject *ob_item[1];
466 // ...more...
467 
469  PY_Py_ssize_t, ob_refcnt,
470  PY_PyTypeObject *, ob_type)
471 
473  PY_Py_ssize_t, ob_size)
474 
475 PY_ADD_SUBCLASS_1(PY_PyTypeObject, PY_PyVarObject,
476  const char *, tp_name)
477 
478 PY_ADD_SUBCLASS_2(PY_PyFrameObject, PY_PyVarObject,
479  PY_PyFrameObject *, f_back,
480  PY_PyCodeObject *, f_code)
481 
482 PY_ADD_SUBCLASS_1(PY_PyListObject, PY_PyVarObject,
483  PY_PyObject **, ob_item)
484 
485 // We need to manually specify PY_PyTupleObject. Its struct member is declared
486 // as "PyObject *ob_item[1]", so ob_item is a "PyObject **" whose value is
487 // computed as an offset from the "this" pointer, _without_ doing any
488 // dereferencing.
489 class PY_API PY_PyTupleObject : public PY_PyVarObject
490 {
491 public:
492  PY_PyObject **ob_item()
493  { return (PY_PyObject **)((char *)this + PY_PyVarObject::theStructSize); }
494 };
495 
496 //----------------------------------------------------------------------------
497 
498 // These few concrete types make it much easier to extend Python to add new
499 // classes, methods, etc. If Python changes their definition in future
500 // versions, we'll have to rework how we do things. Currently, though, these
501 // few classes are small.
502 
503 typedef PY_PyObject *(*PY_PyCFunction)(PY_PyObject *, PY_PyObject *);
504 
506 {
507  const char *ml_name;
509  int ml_flags;
510  const char *ml_doc;
511 };
512 
513 // New to Python 3.5.
514 // Required by PyModuleDef.
516 {
517  int slot;
518  void *value;
519 };
520 
522 {
523  /* If length is greater than zero, items must be non-NULL
524  and all items strings must be non-NULL */
526  wchar_t **items;
527 };
528 
530 {
531  int _config_init; /* _PyConfigInitEnum value */
532 
533  int isolated;
535  int dev_mode;
538  unsigned long hash_seed;
542 #if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 11
543  int code_debug_ranges;
544 #endif
547 #if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 11
548  wchar_t *dump_refs_file;
549 #endif
553  wchar_t *pycache_prefix;
562  int inspect;
567  int verbose;
568  int quiet;
572  wchar_t *stdio_encoding;
573  wchar_t *stdio_errors;
574 #if defined(WIN32)
575  int legacy_windows_stdio;
576 #endif
578 #if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 11
579  int use_frozen_modules;
580  int safe_path;
581 #endif
582 
583  /* --- Path configuration inputs ------------ */
585  wchar_t *program_name;
586  wchar_t *pythonpath_env;
587  wchar_t *home;
588  wchar_t *platlibdir;
589 
590  /* --- Path configuration outputs ----------- */
593 #if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 11
594  wchar_t *stdlib_dir;
595 #endif
596  wchar_t *executable;
597  wchar_t *base_executable;
598  wchar_t *prefix;
599  wchar_t *base_prefix;
600  wchar_t *exec_prefix;
602 
603  /* --- Parameter only used by Py_Main() ---------- */
605  wchar_t *run_command;
606  wchar_t *run_module;
607  wchar_t *run_filename;
608 
609  /* --- Private fields ---------------------------- */
610 
611  // Install importlib? If equals to 0, importlib is not initialized at all.
612  // Needed by freeze_importlib.
614 
615  // If equal to 0, stop Python initialization before the "main" phase.
617 
618  // If non-zero, disallow threads, subprocesses, and fork.
619  // Default: 0.
621 
622 #if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 11
623  // If non-zero, we believe we're running from a source tree.
624  int _is_python_build;
625 #endif
626 };
627 
629 {
632  int isolated;
637 #ifdef WIN32
638  int legacy_windows_fs_encoding;
639 #endif
641  int dev_mode;
643 };
644 
646 {
647  enum {
648  _PyStatus_TYPE_OK=0,
649  _PyStatus_TYPE_ERROR=1,
650  _PyStatus_TYPE_EXIT=2
651  } _type;
652  const char *func;
653  const char *err_msg;
654  int exitcode;
655 };
656 
657 //----------------------------------------------------------------------------
658 
659 // This macro takes a (function_name)(return_type)(parm_types) sequence and
660 // calls PY_DECLARE_FUNCTION.
661 #define PY_DECLARE_FUNCTION_FROM_SEQ(seq) \
662  PY_CALLBACK_SEQ_OF_3(_, PY_DECLARE_FUNCTION, seq)
663 
664 // This macro forward declares a function, prefixing "PY_" to the function
665 // name.
666 #define PY_DECLARE_FUNCTION(function_name, return_type, parm_types) \
667  PY_API return_type HBOOST_PP_CAT(PY_, function_name)( \
668  PY_MAKE_PARM_LIST(parm_types));
669 
670 // This macro forward declares the function that wraps a constant, prefixing
671 // "PY_" to the constant's name.
672 #define PY_DECLARE_WRAPPED_CONSTANT(constant_name, type) \
673  PY_API type &HBOOST_PP_CAT(PY_, constant_name)();
674 
675 // For each element in the big list of wrapped functions, create forward
676 // declarations. Create similar forward declarations for the big list of
677 // constants.
682 
683 // The PyBytes_Type symbol only exists in Python 3.
684 // It is preproc defined in Python 2.
685 // Therefore, we cannot register the constant with PY_WRAPPED_CONSTANTS.
686 // We want to map the constant in Python 3 but not in Python 2.
687 PY_DECLARE_WRAPPED_CONSTANT(PyBytes_Type, PY_PyTypeObject)
688 
689 //----------------------------------------------------------------------------
690 
691 // These functions need to be manually-wrapped:
692 PY_API PY_PyObject *PY_Py_InitModule(const char *name, PY_PyMethodDef *methods);
693 PY_API int PY_PyArg_ParseTuple(PY_PyObject *args, const char *format, ...);
694 PY_API PY_PyObject *PY_Py_BuildValue(const char *format, ...);
696  PY_PyObject *o, const char *name, const char *format, ...);
698 
699 #define PY_FUNC_SEQ_PyInt_AsLong (PyInt_AsLong)(long)((PY_PyObject *))
700 #define PY_FUNC_SEQ_PyInt_FromLong (PyInt_FromLong)(PY_PyObject *)((long))
701 #define PY_FUNC_SEQ_PyString_AsString \
702  (PyString_AsString)(char *)((PY_PyObject *))
703 #define PY_FUNC_SEQ_PyString_AsStringAndSize \
704  (PyString_AsStringAndSize)(int)((PY_PyObject *)(char **)(PY_Py_ssize_t *))
705 #define PY_FUNC_SEQ_PyString_FromString \
706  (PyString_FromString)(PY_PyObject *)((const char *))
707 #define PY_FUNC_SEQ_PyString_FromStringAndSize \
708  (PyString_FromStringAndSize)(PY_PyObject *)((const char *)(PY_Py_ssize_t))
709 #define PY_FUNC_SEQ_PyString_AsUTF8String \
710  (PyString_AsUTF8String)(PY_PyObject *)((PY_PyObject *))
711 #define PY_FUNC_SEQ_PyBytes_AsStringAndSize \
712  (PyBytes_AsStringAndSize)(int) \
713  ((PY_PyObject *)(char **)(PY_Py_ssize_t *))
714 #define PY_FUNC_SEQ_PyCObject_GetDesc \
715  (PyCObject_GetDesc)(void*)((PY_PyObject *))
716 #define PY_FUNC_SEQ_PyCObject_AsVoidPtr \
717  (PyCObject_AsVoidPtr)(void*)((PY_PyObject *))
718 #define PY_FUNC_SEQ_Py_DecodeLocale \
719  (Py_DecodeLocale)(wchar_t *)((const char *)(size_t *))
720 #define PY_FUNC_SEQ_PyMem_RawFree \
721  (PyMem_RawFree)(void)((void *))
722 #define PY_FUNC_SEQ_PyMem_RawMalloc \
723  (PyMem_RawMalloc)(void *)((size_t))
724 #define PY_FUNC_SEQ_PyModule_GetState \
725  (PyModule_GetState)(void *)((PY_PyObject *))
726 #define PY_FUNC_SEQ_PyOS_InitInterrupts \
727  (PyOS_InitInterrupts)(void)() \
728 
744 
745 
746 // These wrapper functions replace constants. If the constants change between
747 // Python versions, we can use the value of pyPythonVersion to decide what to
748 // return. First do a search to make sure they're not called from static
749 // constructors, though (like PY_METH_VARARGS), since pyPythonVersion may not
750 // be intialized yet.
751 static inline int PY_Py_single_input() { return 256; }
752 static inline int PY_Py_file_input() { return 257; }
753 static inline int PY_Py_eval_input() { return 258; }
754 static inline int PY_Py_MARSHAL_VERSION() { return 2; }
755 static inline int PY_METH_VARARGS() { return 0x0001; }
756 static inline int PY_Py_EQ() { return 2; }
757 static inline int PY_PyGILState_LOCKED() { return 0; }
758 static inline int PY_PyGILState_UNLOCKED() { return 1; }
759 
760 
761 // _Py_TrueStruct, _Py_FalseStruct and _Py_ZeroStruct need to be manually
762 // wrapped. Before Python 3.0, _Py_TrueStruct and _Py_ZeroStruct are
763 // PyIntObjects. Starting in 3.0, they're PyLongObjects, since ints were
764 // removed. For our purposes, we don't care -- we just treat them as
765 // PyObjects. However, the automatically- generated wrapper functions will
766 // give compiler errors because it can't convert PyIntObject/PyLongObjects to
767 // PyObjects. So, we wrap them manually.
769 PY_DECLARE_WRAPPED_CONSTANT(_Py_FalseStruct, PY_PyObject)
770 PY_DECLARE_WRAPPED_CONSTANT(_Py_ZeroStruct, PY_PyObject)
771 
772 // Even though int and string have been replaced by long and unicode in Python
773 // 3.0, we still support the old API, including the old types. They're simply
774 // mapped to the replacement types internally. So, PyInt_Check and
775 // PyString_Check will actually be using longs and unicodes in Python 3.0.
776 PY_DECLARE_WRAPPED_CONSTANT(PyInt_Type, PY_PyTypeObject)
777 PY_DECLARE_WRAPPED_CONSTANT(PyString_Type, PY_PyTypeObject)
778 PY_DECLARE_WRAPPED_CONSTANT(Py_TabcheckFlag, int)
779 PY_DECLARE_WRAPPED_CONSTANT(_PyThreadState_Current, PY_PyThreadState *)
780 #define PY_PyInt_Check(op) PY_PyObject_TypeCheck(op, &PY_PyInt_Type())
781 #define PY_PyString_Check(op) PY_PyObject_TypeCheck(op, &PY_PyString_Type())
782 
783 
784 // Various macros follow, to account for API elements that do not have symbols
785 // in the Python shared object. Note that they might need to be modified if
786 // the they change between Python versions.
787 #define PY_Py_INCREF PY_Py_IncRef
788 #define PY_Py_DECREF PY_Py_DecRef
789 #define PY_Py_XDECREF(op) if ((op) == NULL) ; else PY_Py_DECREF(op)
790 
791 #define PY_Py_False() (&PY__Py_ZeroStruct())
792 #define PY_Py_True() (&PY__Py_TrueStruct())
793 #define PY_Py_None() (&PY__Py_NoneStruct())
794 
795 #define PY_Py_RETURN_NONE return PY_Py_INCREF(PY_Py_None()), PY_Py_None()
796 #define PY_PyMODINIT_FUNC extern "C" SYS_VISIBILITY_EXPORT PY_PyObject*
797 
798 #define PY_PyRun_SimpleString(s) PY_PyRun_SimpleStringFlags(s, NULL)
799 #define PY_Py_CompileString(str, p, s) PY_Py_CompileStringFlags(str, p, s, NULL)
800 #define PY_PyRun_InteractiveLoop(f, p) PY_PyRun_InteractiveLoopFlags(f, p, NULL)
801 
802 #define PY_PyList_SET_ITEM(op, i, v) \
803  (((PY_PyListObject *)(op))->ob_item()[i] = (v))
804 #define PY_PyTuple_SET_ITEM(op, i, v) \
805  (((PY_PyTupleObject *)(op))->ob_item()[i] = (v))
806 
807 #define PY_PyList_GET_ITEM(op, i, v) \
808  (((PY_PyListObject *)(op))->ob_item()[i])
809 #define PY_PyTuple_GET_ITEM(op, i) \
810  (((PY_PyTupleObject *)(op))->ob_item()[i])
811 
812 // TODO: These checking defines may need to change for Python 3.0.
813 #define PY_PyObject_TypeCheck(ob, tp) \
814  ((ob)->ob_type() == (tp) || PY_PyType_IsSubtype((ob)->ob_type(), (tp)))
815 #define PY_PyCObject_Check(op) (op->ob_type() == &PY_PyCObject_Type())
816 #define PY_PyFloat_Check(op) PY_PyObject_TypeCheck(op, &PY_PyFloat_Type())
817 #define PY_PyLong_Check(op) PY_PyObject_TypeCheck(op, &PY_PyLong_Type())
818 #define PY_PyBool_Check(op) PY_PyObject_TypeCheck(op, &PY_PyBool_Type())
819 #define PY_PyUnicode_Check(op) PY_PyObject_TypeCheck(op, &PY_PyUnicode_Type())
820 #define PY_PyTuple_Check(op) PY_PyObject_TypeCheck(op, &PY_PyTuple_Type())
821 #define PY_PyList_Check(op) PY_PyObject_TypeCheck(op, &PY_PyList_Type())
822 #define PY_PyDict_Check(op) PY_PyObject_TypeCheck(op, &PY_PyDict_Type())
823 #define PY_PyFunction_Check(op) ((op)->ob_type() == &PY_PyFunction_Type())
824 #define PY_PyBytes_Check(op) ((op)->ob_type() == &PY_PyBytes_Type())
825 
826 // TODO: Before Python 3.0, this macro also checks returns true if
827 // PyInstance_Check returns true. Starting with 3.0, it no longer
828 // does the PyInstance_Check.
829 // To do the proper thing, We need to make this a manually-implemented function.
830 #define PY_PyExceptionInstance_Check(op) \
831  PY_PyObject_TypeCheck(op, (PY_PyTypeObject *)&PY_PyExc_BaseException())
832 
833 // Unfortunately, there's no uniform way to directly access struct members
834 // for both compile-time and non-compile-time dependencies on Python. The
835 // compile-time acccess doesn't use a method call, but the non-compile-time
836 // one does. So, we instead use macros.
837 #define PY_PYFRAME_BACK(op) ((op)->f_back())
838 #define PY_PYFRAME_CODE(op) ((op)->f_code())
839 
840 // This function loads the appropriate Python library and looks up symbols
841 // in it. It should only be called from PY_InterpreterAutoLock, when it
842 // initializes Python.
844 
845 // This function returns the Python major and minor version (e.g. a return
846 // value of 25 means version 2.5). It is up to you to ensure that you call
847 // this function after the Python library has been loaded (creating a
848 // PY_InterpreterAutoLock will load the Python library and initialize the
849 // interpreter).
851 
852 // Return the Python major version.
854 
855 // Return the Python minor version.
857 
858 // This function returns the path to HFS's Python's site-packages directory.
859 PY_API void PYgetHFSPythonSitePackagesPath(UT_WorkBuffer &site_packages_path);
860 
861 // Return true if the Python library in $HFS is loaded.
863 
864 // Convert argv to an array of wchar_t*. Alloc new memory for the wchar_t*
865 // array. It is the responsibility of the caller to free the returned array by
866 // calling PY_FreeWCharArgs().
867 PY_API wchar_t **PY_AllocAndInitWCharArgs(int argc, char *argv[]);
868 
869 // Free the memory for the specified wchar_t* array.
870 PY_API void PY_FreeWCharArgs(int argc, wchar_t **wargv);
871 
872 #endif
#define PY_FUNC_SEQ_PyMem_RawFree
const char * ml_doc
PY_PyWideStringList warnoptions
#define PY_FUNC_SEQ_PyString_AsString
#define PY_WRAPPED_FUNCTIONS
Definition: PY_CPythonAPI.h:89
#define PY_FUNC_SEQ_PyString_FromStringAndSize
int int32
Definition: SYS_Types.h:39
PY_API void PY_FreeWCharArgs(int argc, wchar_t **wargv)
wchar_t * filesystem_encoding
const char * ml_name
#define PY_FUNC_SEQ_PyOS_InitInterrupts
int PY_PyGILState_STATE
PY_PyObject *(* PY_PyCFunction)(PY_PyObject *, PY_PyObject *)
wchar_t * base_prefix
*get result *(waiting if necessary)*A common idiom is to fire a bunch of sub tasks at the and then *wait for them to all complete We provide a helper class
Definition: thread.h:632
PY_API int PY_PyGILState_Check()
PY_API int PY_PyArg_ParseTuple(PY_PyObject *args, const char *format,...)
void
Definition: png.h:1083
PY_PyWideStringList argv
wchar_t * program_name
wchar_t * platlibdir
#define PY_FUNC_SEQ_Py_DecodeLocale
wchar_t * check_hash_pycs_mode
PY_API PY_PyObject * PY_Py_BuildValue(const char *format,...)
int _install_importlib
PY_API bool PYisHFSPythonLibraryLoaded()
#define PY_FOR_EACH_SEQ_OF_3(macro, seq)
PY_API int PYgetPythonVersion()
int _isolated_interpreter
#define PY_FUNC_SEQ_PyCObject_AsVoidPtr
const char * err_msg
#define PY_FUNC_SEQ_PyCObject_GetDesc
PY_API int PYgetPythonMajorVersion()
class PY_API PY_PyCodeObject
unsigned long hash_seed
#define PY_WRAPPED_MEMORY_FUNCTIONS
wchar_t * run_module
PY_API void PYgetHFSPythonSitePackagesPath(UT_WorkBuffer &site_packages_path)
#define PY_WRAPPED_CONSTANTS
wchar_t * pythonpath_env
wchar_t * run_filename
#define PY_WRAPPED_UNCHECKED_FUNCTIONS
const char * func
GLintptr offset
Definition: glcorearb.h:665
int configure_c_stdio
PY_PyWideStringList module_search_paths
#define PY_FUNC_SEQ_PyBytes_AsStringAndSize
PY_API wchar_t ** PY_AllocAndInitWCharArgs(int argc, char *argv[])
#define PY_FUNC_SEQ_PyInt_AsLong
wchar_t * base_executable
wchar_t * filesystem_errors
int skip_source_first_line
int warn_default_encoding
GLint GLint GLsizei GLint GLenum format
Definition: glcorearb.h:108
PY_PyObject
wchar_t * exec_prefix
PY_API void PYloadPythonLibrary()
class PY_API PY_PyThreadState
class PY_API PY_PyTypeObject
#define PY_API
Definition: PY_API.h:10
#define PY_FUNC_SEQ_PyInt_FromLong
int module_search_paths_set
wchar_t * pycache_prefix
long long int64
Definition: SYS_Types.h:116
ob_size PY_PyVarObject
#define PY_ADD_SUBCLASS_1(subclass, base_class, member1_type, member1_name)
wchar_t * home
int pathconfig_warnings
void(*)( PY_AtExitFunc)
Definition: PY_CPythonAPI.h:68
GLuint const GLchar * name
Definition: glcorearb.h:786
class PY_API PY_PyCompilerFlags
wchar_t * prefix
#define PY_ADD_SUBCLASS_2(subclass, base_class, member1_type, member1_name, member2_type, member2_name)
#define PY_DECLARE_FUNCTION_FROM_SEQ(seq)
#define PY_DECLARE_WRAPPED_CONSTANT(constant_name, type)
wchar_t * run_command
PY_API int PYgetPythonMinorVersion()
#define PY_FOR_EACH_SEQ_OF_2(macro, seq)
PY_PyWideStringList xoptions
#define PY_FUNC_SEQ_PyString_AsStringAndSize
wchar_t * stdio_encoding
PY_Py_ssize_t PY_Py_hash_t
PY_API PY_PyObject * PY_PyObject_CallMethod(PY_PyObject *o, const char *name, const char *format,...)
int optimization_level
wchar_t * stdio_errors
PY_Py_ssize_t length
#define PY_FUNC_SEQ_PyMem_RawMalloc
#define PY_FUNC_SEQ_PyModule_GetState
PY_API PY_PyObject * PY_Py_InitModule(const char *name, PY_PyMethodDef *methods)
#define PY_DECLARE_FUNCTION(function_name, return_type, parm_types)
wchar_t * base_exec_prefix
**If you just want to fire and args
Definition: thread.h:618
#define PY_FUNC_SEQ_PyString_FromString
wchar_t * executable
ssize_t PY_Py_ssize_t
ob_size PY_PyFrameObject f_back
PY_PyWideStringList orig_argv
#define PY_FUNC_SEQ_PyString_AsUTF8String
int user_site_directory
int install_signal_handlers
PY_PyCFunction ml_meth