| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. highlightlang:: c | 
|  | 2 |  | 
|  | 3 |  | 
|  | 4 | .. _extending-intro: | 
|  | 5 |  | 
|  | 6 | ****************************** | 
|  | 7 | Extending Python with C or C++ | 
|  | 8 | ****************************** | 
|  | 9 |  | 
|  | 10 | It is quite easy to add new built-in modules to Python, if you know how to | 
|  | 11 | program in C.  Such :dfn:`extension modules` can do two things that can't be | 
|  | 12 | done directly in Python: they can implement new built-in object types, and they | 
|  | 13 | can call C library functions and system calls. | 
|  | 14 |  | 
|  | 15 | To support extensions, the Python API (Application Programmers Interface) | 
|  | 16 | defines a set of functions, macros and variables that provide access to most | 
|  | 17 | aspects of the Python run-time system.  The Python API is incorporated in a C | 
|  | 18 | source file by including the header ``"Python.h"``. | 
|  | 19 |  | 
|  | 20 | The compilation of an extension module depends on its intended use as well as on | 
|  | 21 | your system setup; details are given in later chapters. | 
|  | 22 |  | 
| Benjamin Peterson | 63b5558 | 2015-01-05 14:38:46 -0600 | [diff] [blame] | 23 | .. note:: | 
| Brett Cannon | 7f98a6c | 2009-09-17 03:39:33 +0000 | [diff] [blame] | 24 |  | 
| Benjamin Peterson | 63b5558 | 2015-01-05 14:38:46 -0600 | [diff] [blame] | 25 | The C extension interface is specific to CPython, and extension modules do | 
|  | 26 | not work on other Python implementations.  In many cases, it is possible to | 
|  | 27 | avoid writing C extensions and preserve portability to other implementations. | 
|  | 28 | For example, if your use case is calling C library functions or system calls, | 
|  | 29 | you should consider using the :mod:`ctypes` module or the `cffi | 
| Georg Brandl | 5d94134 | 2016-02-26 19:37:12 +0100 | [diff] [blame] | 30 | <https://cffi.readthedocs.org>`_ library rather than writing custom C code. | 
| Benjamin Peterson | 63b5558 | 2015-01-05 14:38:46 -0600 | [diff] [blame] | 31 | These modules let you write Python code to interface with C code and are more | 
|  | 32 | portable between implementations of Python than writing and compiling a C | 
|  | 33 | extension module. | 
| Brett Cannon | 7f98a6c | 2009-09-17 03:39:33 +0000 | [diff] [blame] | 34 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 35 |  | 
|  | 36 | .. _extending-simpleexample: | 
|  | 37 |  | 
|  | 38 | A Simple Example | 
|  | 39 | ================ | 
|  | 40 |  | 
|  | 41 | Let's create an extension module called ``spam`` (the favorite food of Monty | 
|  | 42 | Python fans...) and let's say we want to create a Python interface to the C | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 43 | library function :c:func:`system`. [#]_ This function takes a null-terminated | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 44 | character string as argument and returns an integer.  We want this function to | 
|  | 45 | be callable from Python as follows:: | 
|  | 46 |  | 
|  | 47 | >>> import spam | 
|  | 48 | >>> status = spam.system("ls -l") | 
|  | 49 |  | 
|  | 50 | Begin by creating a file :file:`spammodule.c`.  (Historically, if a module is | 
|  | 51 | called ``spam``, the C file containing its implementation is called | 
|  | 52 | :file:`spammodule.c`; if the module name is very long, like ``spammify``, the | 
|  | 53 | module name can be just :file:`spammify.c`.) | 
|  | 54 |  | 
|  | 55 | The first line of our file can be:: | 
|  | 56 |  | 
|  | 57 | #include <Python.h> | 
|  | 58 |  | 
|  | 59 | which pulls in the Python API (you can add a comment describing the purpose of | 
|  | 60 | the module and a copyright notice if you like). | 
|  | 61 |  | 
| Georg Brandl | e720c0a | 2009-04-27 16:20:50 +0000 | [diff] [blame] | 62 | .. note:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 63 |  | 
|  | 64 | Since Python may define some pre-processor definitions which affect the standard | 
|  | 65 | headers on some systems, you *must* include :file:`Python.h` before any standard | 
|  | 66 | headers are included. | 
|  | 67 |  | 
|  | 68 | All user-visible symbols defined by :file:`Python.h` have a prefix of ``Py`` or | 
|  | 69 | ``PY``, except those defined in standard header files. For convenience, and | 
|  | 70 | since they are used extensively by the Python interpreter, ``"Python.h"`` | 
|  | 71 | includes a few standard header files: ``<stdio.h>``, ``<string.h>``, | 
|  | 72 | ``<errno.h>``, and ``<stdlib.h>``.  If the latter header file does not exist on | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 73 | your system, it declares the functions :c:func:`malloc`, :c:func:`free` and | 
|  | 74 | :c:func:`realloc` directly. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 75 |  | 
|  | 76 | The next thing we add to our module file is the C function that will be called | 
|  | 77 | when the Python expression ``spam.system(string)`` is evaluated (we'll see | 
|  | 78 | shortly how it ends up being called):: | 
|  | 79 |  | 
|  | 80 | static PyObject * | 
|  | 81 | spam_system(PyObject *self, PyObject *args) | 
|  | 82 | { | 
|  | 83 | const char *command; | 
|  | 84 | int sts; | 
|  | 85 |  | 
|  | 86 | if (!PyArg_ParseTuple(args, "s", &command)) | 
|  | 87 | return NULL; | 
|  | 88 | sts = system(command); | 
| Georg Brandl | c877a7c | 2010-11-26 11:55:48 +0000 | [diff] [blame] | 89 | return PyLong_FromLong(sts); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 90 | } | 
|  | 91 |  | 
|  | 92 | There is a straightforward translation from the argument list in Python (for | 
|  | 93 | example, the single expression ``"ls -l"``) to the arguments passed to the C | 
|  | 94 | function.  The C function always has two arguments, conventionally named *self* | 
|  | 95 | and *args*. | 
|  | 96 |  | 
| Georg Brandl | 21dc5ba | 2009-07-11 10:43:08 +0000 | [diff] [blame] | 97 | The *self* argument points to the module object for module-level functions; | 
|  | 98 | for a method it would point to the object instance. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 99 |  | 
|  | 100 | The *args* argument will be a pointer to a Python tuple object containing the | 
|  | 101 | arguments.  Each item of the tuple corresponds to an argument in the call's | 
|  | 102 | argument list.  The arguments are Python objects --- in order to do anything | 
|  | 103 | with them in our C function we have to convert them to C values.  The function | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 104 | :c:func:`PyArg_ParseTuple` in the Python API checks the argument types and | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 105 | converts them to C values.  It uses a template string to determine the required | 
|  | 106 | types of the arguments as well as the types of the C variables into which to | 
|  | 107 | store the converted values.  More about this later. | 
|  | 108 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 109 | :c:func:`PyArg_ParseTuple` returns true (nonzero) if all arguments have the right | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 110 | type and its components have been stored in the variables whose addresses are | 
|  | 111 | passed.  It returns false (zero) if an invalid argument list was passed.  In the | 
|  | 112 | latter case it also raises an appropriate exception so the calling function can | 
|  | 113 | return *NULL* immediately (as we saw in the example). | 
|  | 114 |  | 
|  | 115 |  | 
|  | 116 | .. _extending-errors: | 
|  | 117 |  | 
|  | 118 | Intermezzo: Errors and Exceptions | 
|  | 119 | ================================= | 
|  | 120 |  | 
|  | 121 | An important convention throughout the Python interpreter is the following: when | 
|  | 122 | a function fails, it should set an exception condition and return an error value | 
|  | 123 | (usually a *NULL* pointer).  Exceptions are stored in a static global variable | 
|  | 124 | inside the interpreter; if this variable is *NULL* no exception has occurred.  A | 
|  | 125 | second global variable stores the "associated value" of the exception (the | 
|  | 126 | second argument to :keyword:`raise`).  A third variable contains the stack | 
|  | 127 | traceback in case the error originated in Python code.  These three variables | 
|  | 128 | are the C equivalents of the result in Python of :meth:`sys.exc_info` (see the | 
|  | 129 | section on module :mod:`sys` in the Python Library Reference).  It is important | 
|  | 130 | to know about them to understand how errors are passed around. | 
|  | 131 |  | 
|  | 132 | The Python API defines a number of functions to set various types of exceptions. | 
|  | 133 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 134 | The most common one is :c:func:`PyErr_SetString`.  Its arguments are an exception | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 135 | object and a C string.  The exception object is usually a predefined object like | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 136 | :c:data:`PyExc_ZeroDivisionError`.  The C string indicates the cause of the error | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 137 | and is converted to a Python string object and stored as the "associated value" | 
|  | 138 | of the exception. | 
|  | 139 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 140 | Another useful function is :c:func:`PyErr_SetFromErrno`, which only takes an | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 141 | exception argument and constructs the associated value by inspection of the | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 142 | global variable :c:data:`errno`.  The most general function is | 
|  | 143 | :c:func:`PyErr_SetObject`, which takes two object arguments, the exception and | 
|  | 144 | its associated value.  You don't need to :c:func:`Py_INCREF` the objects passed | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 145 | to any of these functions. | 
|  | 146 |  | 
|  | 147 | You can test non-destructively whether an exception has been set with | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 148 | :c:func:`PyErr_Occurred`.  This returns the current exception object, or *NULL* | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 149 | if no exception has occurred.  You normally don't need to call | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 150 | :c:func:`PyErr_Occurred` to see whether an error occurred in a function call, | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 151 | since you should be able to tell from the return value. | 
|  | 152 |  | 
|  | 153 | When a function *f* that calls another function *g* detects that the latter | 
|  | 154 | fails, *f* should itself return an error value (usually *NULL* or ``-1``).  It | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 155 | should *not* call one of the :c:func:`PyErr_\*` functions --- one has already | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 156 | been called by *g*. *f*'s caller is then supposed to also return an error | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 157 | indication to *its* caller, again *without* calling :c:func:`PyErr_\*`, and so on | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 158 | --- the most detailed cause of the error was already reported by the function | 
|  | 159 | that first detected it.  Once the error reaches the Python interpreter's main | 
|  | 160 | loop, this aborts the currently executing Python code and tries to find an | 
|  | 161 | exception handler specified by the Python programmer. | 
|  | 162 |  | 
|  | 163 | (There are situations where a module can actually give a more detailed error | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 164 | message by calling another :c:func:`PyErr_\*` function, and in such cases it is | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 165 | fine to do so.  As a general rule, however, this is not necessary, and can cause | 
|  | 166 | information about the cause of the error to be lost: most operations can fail | 
|  | 167 | for a variety of reasons.) | 
|  | 168 |  | 
|  | 169 | To ignore an exception set by a function call that failed, the exception | 
| Georg Brandl | 682d7e0 | 2010-10-06 10:26:05 +0000 | [diff] [blame] | 170 | condition must be cleared explicitly by calling :c:func:`PyErr_Clear`.  The only | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 171 | time C code should call :c:func:`PyErr_Clear` is if it doesn't want to pass the | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 172 | error on to the interpreter but wants to handle it completely by itself | 
|  | 173 | (possibly by trying something else, or pretending nothing went wrong). | 
|  | 174 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 175 | Every failing :c:func:`malloc` call must be turned into an exception --- the | 
|  | 176 | direct caller of :c:func:`malloc` (or :c:func:`realloc`) must call | 
|  | 177 | :c:func:`PyErr_NoMemory` and return a failure indicator itself.  All the | 
|  | 178 | object-creating functions (for example, :c:func:`PyLong_FromLong`) already do | 
|  | 179 | this, so this note is only relevant to those who call :c:func:`malloc` directly. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 180 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 181 | Also note that, with the important exception of :c:func:`PyArg_ParseTuple` and | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 182 | friends, functions that return an integer status usually return a positive value | 
|  | 183 | or zero for success and ``-1`` for failure, like Unix system calls. | 
|  | 184 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 185 | Finally, be careful to clean up garbage (by making :c:func:`Py_XDECREF` or | 
|  | 186 | :c:func:`Py_DECREF` calls for objects you have already created) when you return | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 187 | an error indicator! | 
|  | 188 |  | 
|  | 189 | The choice of which exception to raise is entirely yours.  There are predeclared | 
|  | 190 | C objects corresponding to all built-in Python exceptions, such as | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 191 | :c:data:`PyExc_ZeroDivisionError`, which you can use directly. Of course, you | 
|  | 192 | should choose exceptions wisely --- don't use :c:data:`PyExc_TypeError` to mean | 
|  | 193 | that a file couldn't be opened (that should probably be :c:data:`PyExc_IOError`). | 
|  | 194 | If something's wrong with the argument list, the :c:func:`PyArg_ParseTuple` | 
|  | 195 | function usually raises :c:data:`PyExc_TypeError`.  If you have an argument whose | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 196 | value must be in a particular range or must satisfy other conditions, | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 197 | :c:data:`PyExc_ValueError` is appropriate. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 198 |  | 
|  | 199 | You can also define a new exception that is unique to your module. For this, you | 
|  | 200 | usually declare a static object variable at the beginning of your file:: | 
|  | 201 |  | 
|  | 202 | static PyObject *SpamError; | 
|  | 203 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 204 | and initialize it in your module's initialization function (:c:func:`PyInit_spam`) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 205 | with an exception object (leaving out the error checking for now):: | 
|  | 206 |  | 
|  | 207 | PyMODINIT_FUNC | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 208 | PyInit_spam(void) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 209 | { | 
|  | 210 | PyObject *m; | 
|  | 211 |  | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 212 | m = PyModule_Create(&spammodule); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 213 | if (m == NULL) | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 214 | return NULL; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 215 |  | 
|  | 216 | SpamError = PyErr_NewException("spam.error", NULL, NULL); | 
|  | 217 | Py_INCREF(SpamError); | 
|  | 218 | PyModule_AddObject(m, "error", SpamError); | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 219 | return m; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 220 | } | 
|  | 221 |  | 
|  | 222 | Note that the Python name for the exception object is :exc:`spam.error`.  The | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 223 | :c:func:`PyErr_NewException` function may create a class with the base class | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 224 | being :exc:`Exception` (unless another class is passed in instead of *NULL*), | 
|  | 225 | described in :ref:`bltin-exceptions`. | 
|  | 226 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 227 | Note also that the :c:data:`SpamError` variable retains a reference to the newly | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 228 | created exception class; this is intentional!  Since the exception could be | 
|  | 229 | removed from the module by external code, an owned reference to the class is | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 230 | needed to ensure that it will not be discarded, causing :c:data:`SpamError` to | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 231 | become a dangling pointer. Should it become a dangling pointer, C code which | 
|  | 232 | raises the exception could cause a core dump or other unintended side effects. | 
|  | 233 |  | 
| Georg Brandl | 9c491c9 | 2010-08-02 20:21:21 +0000 | [diff] [blame] | 234 | We discuss the use of ``PyMODINIT_FUNC`` as a function return type later in this | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 235 | sample. | 
|  | 236 |  | 
| Georg Brandl | 9c491c9 | 2010-08-02 20:21:21 +0000 | [diff] [blame] | 237 | The :exc:`spam.error` exception can be raised in your extension module using a | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 238 | call to :c:func:`PyErr_SetString` as shown below:: | 
| Georg Brandl | 9c491c9 | 2010-08-02 20:21:21 +0000 | [diff] [blame] | 239 |  | 
|  | 240 | static PyObject * | 
|  | 241 | spam_system(PyObject *self, PyObject *args) | 
|  | 242 | { | 
|  | 243 | const char *command; | 
|  | 244 | int sts; | 
|  | 245 |  | 
|  | 246 | if (!PyArg_ParseTuple(args, "s", &command)) | 
|  | 247 | return NULL; | 
|  | 248 | sts = system(command); | 
|  | 249 | if (sts < 0) { | 
|  | 250 | PyErr_SetString(SpamError, "System command failed"); | 
|  | 251 | return NULL; | 
|  | 252 | } | 
|  | 253 | return PyLong_FromLong(sts); | 
|  | 254 | } | 
|  | 255 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 256 |  | 
|  | 257 | .. _backtoexample: | 
|  | 258 |  | 
|  | 259 | Back to the Example | 
|  | 260 | =================== | 
|  | 261 |  | 
|  | 262 | Going back to our example function, you should now be able to understand this | 
|  | 263 | statement:: | 
|  | 264 |  | 
|  | 265 | if (!PyArg_ParseTuple(args, "s", &command)) | 
|  | 266 | return NULL; | 
|  | 267 |  | 
|  | 268 | It returns *NULL* (the error indicator for functions returning object pointers) | 
|  | 269 | if an error is detected in the argument list, relying on the exception set by | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 270 | :c:func:`PyArg_ParseTuple`.  Otherwise the string value of the argument has been | 
|  | 271 | copied to the local variable :c:data:`command`.  This is a pointer assignment and | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 272 | you are not supposed to modify the string to which it points (so in Standard C, | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 273 | the variable :c:data:`command` should properly be declared as ``const char | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 274 | *command``). | 
|  | 275 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 276 | The next statement is a call to the Unix function :c:func:`system`, passing it | 
|  | 277 | the string we just got from :c:func:`PyArg_ParseTuple`:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 278 |  | 
|  | 279 | sts = system(command); | 
|  | 280 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 281 | Our :func:`spam.system` function must return the value of :c:data:`sts` as a | 
| Georg Brandl | c877a7c | 2010-11-26 11:55:48 +0000 | [diff] [blame] | 282 | Python object.  This is done using the function :c:func:`PyLong_FromLong`. :: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 283 |  | 
| Georg Brandl | c877a7c | 2010-11-26 11:55:48 +0000 | [diff] [blame] | 284 | return PyLong_FromLong(sts); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 285 |  | 
|  | 286 | In this case, it will return an integer object.  (Yes, even integers are objects | 
|  | 287 | on the heap in Python!) | 
|  | 288 |  | 
|  | 289 | If you have a C function that returns no useful argument (a function returning | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 290 | :c:type:`void`), the corresponding Python function must return ``None``.   You | 
|  | 291 | need this idiom to do so (which is implemented by the :c:macro:`Py_RETURN_NONE` | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 292 | macro):: | 
|  | 293 |  | 
|  | 294 | Py_INCREF(Py_None); | 
|  | 295 | return Py_None; | 
|  | 296 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 297 | :c:data:`Py_None` is the C name for the special Python object ``None``.  It is a | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 298 | genuine Python object rather than a *NULL* pointer, which means "error" in most | 
|  | 299 | contexts, as we have seen. | 
|  | 300 |  | 
|  | 301 |  | 
|  | 302 | .. _methodtable: | 
|  | 303 |  | 
|  | 304 | The Module's Method Table and Initialization Function | 
|  | 305 | ===================================================== | 
|  | 306 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 307 | I promised to show how :c:func:`spam_system` is called from Python programs. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 308 | First, we need to list its name and address in a "method table":: | 
|  | 309 |  | 
|  | 310 | static PyMethodDef SpamMethods[] = { | 
|  | 311 | ... | 
|  | 312 | {"system",  spam_system, METH_VARARGS, | 
|  | 313 | "Execute a shell command."}, | 
|  | 314 | ... | 
|  | 315 | {NULL, NULL, 0, NULL}        /* Sentinel */ | 
|  | 316 | }; | 
|  | 317 |  | 
|  | 318 | Note the third entry (``METH_VARARGS``).  This is a flag telling the interpreter | 
|  | 319 | the calling convention to be used for the C function.  It should normally always | 
|  | 320 | be ``METH_VARARGS`` or ``METH_VARARGS | METH_KEYWORDS``; a value of ``0`` means | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 321 | that an obsolete variant of :c:func:`PyArg_ParseTuple` is used. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 322 |  | 
|  | 323 | When using only ``METH_VARARGS``, the function should expect the Python-level | 
|  | 324 | parameters to be passed in as a tuple acceptable for parsing via | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 325 | :c:func:`PyArg_ParseTuple`; more information on this function is provided below. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 326 |  | 
|  | 327 | The :const:`METH_KEYWORDS` bit may be set in the third field if keyword | 
|  | 328 | arguments should be passed to the function.  In this case, the C function should | 
| Eli Bendersky | 44fb613 | 2012-02-11 10:27:31 +0200 | [diff] [blame] | 329 | accept a third ``PyObject *`` parameter which will be a dictionary of keywords. | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 330 | Use :c:func:`PyArg_ParseTupleAndKeywords` to parse the arguments to such a | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 331 | function. | 
|  | 332 |  | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 333 | The method table must be referenced in the module definition structure:: | 
|  | 334 |  | 
| Benjamin Peterson | 3851d12 | 2008-10-20 21:04:06 +0000 | [diff] [blame] | 335 | static struct PyModuleDef spammodule = { | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 336 | PyModuleDef_HEAD_INIT, | 
|  | 337 | "spam",   /* name of module */ | 
|  | 338 | spam_doc, /* module documentation, may be NULL */ | 
|  | 339 | -1,       /* size of per-interpreter state of the module, | 
|  | 340 | or -1 if the module keeps state in global variables. */ | 
|  | 341 | SpamMethods | 
|  | 342 | }; | 
|  | 343 |  | 
|  | 344 | This structure, in turn, must be passed to the interpreter in the module's | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 345 | initialization function.  The initialization function must be named | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 346 | :c:func:`PyInit_name`, where *name* is the name of the module, and should be the | 
| Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 347 | only non-\ ``static`` item defined in the module file:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 348 |  | 
|  | 349 | PyMODINIT_FUNC | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 350 | PyInit_spam(void) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 351 | { | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 352 | return PyModule_Create(&spammodule); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 353 | } | 
|  | 354 |  | 
| Benjamin Peterson | 71e30a0 | 2008-12-24 16:27:25 +0000 | [diff] [blame] | 355 | Note that PyMODINIT_FUNC declares the function as ``PyObject *`` return type, | 
|  | 356 | declares any special linkage declarations required by the platform, and for C++ | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 357 | declares the function as ``extern "C"``. | 
|  | 358 |  | 
|  | 359 | When the Python program imports module :mod:`spam` for the first time, | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 360 | :c:func:`PyInit_spam` is called. (See below for comments about embedding Python.) | 
|  | 361 | It calls :c:func:`PyModule_Create`, which returns a module object, and | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 362 | inserts built-in function objects into the newly created module based upon the | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 363 | table (an array of :c:type:`PyMethodDef` structures) found in the module definition. | 
|  | 364 | :c:func:`PyModule_Create` returns a pointer to the module object | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 365 | that it creates.  It may abort with a fatal error for | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 366 | certain errors, or return *NULL* if the module could not be initialized | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 367 | satisfactorily. The init function must return the module object to its caller, | 
|  | 368 | so that it then gets inserted into ``sys.modules``. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 369 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 370 | When embedding Python, the :c:func:`PyInit_spam` function is not called | 
|  | 371 | automatically unless there's an entry in the :c:data:`PyImport_Inittab` table. | 
|  | 372 | To add the module to the initialization table, use :c:func:`PyImport_AppendInittab`, | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 373 | optionally followed by an import of the module:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 374 |  | 
|  | 375 | int | 
|  | 376 | main(int argc, char *argv[]) | 
|  | 377 | { | 
| Victor Stinner | 25e014b | 2014-08-01 12:28:49 +0200 | [diff] [blame] | 378 | wchar_t *program = Py_DecodeLocale(argv[0], NULL); | 
|  | 379 | if (program == NULL) { | 
|  | 380 | fprintf(stderr, "Fatal error: cannot decode argv[0]\n"); | 
|  | 381 | exit(1); | 
|  | 382 | } | 
|  | 383 |  | 
| Georg Brandl | c4a55fc | 2010-02-06 18:46:57 +0000 | [diff] [blame] | 384 | /* Add a built-in module, before Py_Initialize */ | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 385 | PyImport_AppendInittab("spam", PyInit_spam); | 
|  | 386 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 387 | /* Pass argv[0] to the Python interpreter */ | 
| Victor Stinner | 25e014b | 2014-08-01 12:28:49 +0200 | [diff] [blame] | 388 | Py_SetProgramName(program); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 389 |  | 
|  | 390 | /* Initialize the Python interpreter.  Required. */ | 
|  | 391 | Py_Initialize(); | 
|  | 392 |  | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 393 | /* Optionally import the module; alternatively, | 
|  | 394 | import can be deferred until the embedded script | 
|  | 395 | imports it. */ | 
|  | 396 | PyImport_ImportModule("spam"); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 397 |  | 
| Georg Brandl | 49c6fc9 | 2013-10-06 13:14:10 +0200 | [diff] [blame] | 398 | ... | 
|  | 399 |  | 
| Victor Stinner | 25e014b | 2014-08-01 12:28:49 +0200 | [diff] [blame] | 400 | PyMem_RawFree(program); | 
|  | 401 | return 0; | 
|  | 402 | } | 
|  | 403 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 404 | .. note:: | 
|  | 405 |  | 
|  | 406 | Removing entries from ``sys.modules`` or importing compiled modules into | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 407 | multiple interpreters within a process (or following a :c:func:`fork` without an | 
|  | 408 | intervening :c:func:`exec`) can create problems for some extension modules. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 409 | Extension module authors should exercise caution when initializing internal data | 
|  | 410 | structures. | 
|  | 411 |  | 
|  | 412 | A more substantial example module is included in the Python source distribution | 
|  | 413 | as :file:`Modules/xxmodule.c`.  This file may be used as a  template or simply | 
| Benjamin Peterson | 2614cda | 2010-03-21 22:36:19 +0000 | [diff] [blame] | 414 | read as an example. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 415 |  | 
| Nick Coghlan | 2ab5b09 | 2015-07-03 19:49:15 +1000 | [diff] [blame] | 416 | .. note:: | 
|  | 417 |  | 
|  | 418 | Unlike our ``spam`` example, ``xxmodule`` uses *multi-phase initialization* | 
|  | 419 | (new in Python 3.5), where a PyModuleDef structure is returned from | 
|  | 420 | ``PyInit_spam``, and creation of the module is left to the import machinery. | 
|  | 421 | For details on multi-phase initialization, see :PEP:`489`. | 
|  | 422 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 423 |  | 
|  | 424 | .. _compilation: | 
|  | 425 |  | 
|  | 426 | Compilation and Linkage | 
|  | 427 | ======================= | 
|  | 428 |  | 
|  | 429 | There are two more things to do before you can use your new extension: compiling | 
|  | 430 | and linking it with the Python system.  If you use dynamic loading, the details | 
|  | 431 | may depend on the style of dynamic loading your system uses; see the chapters | 
|  | 432 | about building extension modules (chapter :ref:`building`) and additional | 
|  | 433 | information that pertains only to building on Windows (chapter | 
|  | 434 | :ref:`building-on-windows`) for more information about this. | 
|  | 435 |  | 
|  | 436 | If you can't use dynamic loading, or if you want to make your module a permanent | 
|  | 437 | part of the Python interpreter, you will have to change the configuration setup | 
|  | 438 | and rebuild the interpreter.  Luckily, this is very simple on Unix: just place | 
|  | 439 | your file (:file:`spammodule.c` for example) in the :file:`Modules/` directory | 
|  | 440 | of an unpacked source distribution, add a line to the file | 
|  | 441 | :file:`Modules/Setup.local` describing your file:: | 
|  | 442 |  | 
|  | 443 | spam spammodule.o | 
|  | 444 |  | 
|  | 445 | and rebuild the interpreter by running :program:`make` in the toplevel | 
|  | 446 | directory.  You can also run :program:`make` in the :file:`Modules/` | 
|  | 447 | subdirectory, but then you must first rebuild :file:`Makefile` there by running | 
|  | 448 | ':program:`make` Makefile'.  (This is necessary each time you change the | 
|  | 449 | :file:`Setup` file.) | 
|  | 450 |  | 
|  | 451 | If your module requires additional libraries to link with, these can be listed | 
|  | 452 | on the line in the configuration file as well, for instance:: | 
|  | 453 |  | 
|  | 454 | spam spammodule.o -lX11 | 
|  | 455 |  | 
|  | 456 |  | 
|  | 457 | .. _callingpython: | 
|  | 458 |  | 
|  | 459 | Calling Python Functions from C | 
|  | 460 | =============================== | 
|  | 461 |  | 
|  | 462 | So far we have concentrated on making C functions callable from Python.  The | 
|  | 463 | reverse is also useful: calling Python functions from C. This is especially the | 
|  | 464 | case for libraries that support so-called "callback" functions.  If a C | 
|  | 465 | interface makes use of callbacks, the equivalent Python often needs to provide a | 
|  | 466 | callback mechanism to the Python programmer; the implementation will require | 
|  | 467 | calling the Python callback functions from a C callback.  Other uses are also | 
|  | 468 | imaginable. | 
|  | 469 |  | 
|  | 470 | Fortunately, the Python interpreter is easily called recursively, and there is a | 
|  | 471 | standard interface to call a Python function.  (I won't dwell on how to call the | 
|  | 472 | Python parser with a particular string as input --- if you're interested, have a | 
|  | 473 | look at the implementation of the :option:`-c` command line option in | 
| Georg Brandl | 22291c5 | 2007-09-06 14:49:02 +0000 | [diff] [blame] | 474 | :file:`Modules/main.c` from the Python source code.) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 475 |  | 
|  | 476 | Calling a Python function is easy.  First, the Python program must somehow pass | 
|  | 477 | you the Python function object.  You should provide a function (or some other | 
|  | 478 | interface) to do this.  When this function is called, save a pointer to the | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 479 | Python function object (be careful to :c:func:`Py_INCREF` it!) in a global | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 480 | variable --- or wherever you see fit. For example, the following function might | 
|  | 481 | be part of a module definition:: | 
|  | 482 |  | 
|  | 483 | static PyObject *my_callback = NULL; | 
|  | 484 |  | 
|  | 485 | static PyObject * | 
|  | 486 | my_set_callback(PyObject *dummy, PyObject *args) | 
|  | 487 | { | 
|  | 488 | PyObject *result = NULL; | 
|  | 489 | PyObject *temp; | 
|  | 490 |  | 
|  | 491 | if (PyArg_ParseTuple(args, "O:set_callback", &temp)) { | 
|  | 492 | if (!PyCallable_Check(temp)) { | 
|  | 493 | PyErr_SetString(PyExc_TypeError, "parameter must be callable"); | 
|  | 494 | return NULL; | 
|  | 495 | } | 
|  | 496 | Py_XINCREF(temp);         /* Add a reference to new callback */ | 
|  | 497 | Py_XDECREF(my_callback);  /* Dispose of previous callback */ | 
|  | 498 | my_callback = temp;       /* Remember new callback */ | 
|  | 499 | /* Boilerplate to return "None" */ | 
|  | 500 | Py_INCREF(Py_None); | 
|  | 501 | result = Py_None; | 
|  | 502 | } | 
|  | 503 | return result; | 
|  | 504 | } | 
|  | 505 |  | 
|  | 506 | This function must be registered with the interpreter using the | 
|  | 507 | :const:`METH_VARARGS` flag; this is described in section :ref:`methodtable`.  The | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 508 | :c:func:`PyArg_ParseTuple` function and its arguments are documented in section | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 509 | :ref:`parsetuple`. | 
|  | 510 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 511 | The macros :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF` increment/decrement the | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 512 | reference count of an object and are safe in the presence of *NULL* pointers | 
|  | 513 | (but note that *temp* will not be  *NULL* in this context).  More info on them | 
|  | 514 | in section :ref:`refcounts`. | 
|  | 515 |  | 
| Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 516 | .. index:: single: PyObject_CallObject() | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 517 |  | 
|  | 518 | Later, when it is time to call the function, you call the C function | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 519 | :c:func:`PyObject_CallObject`.  This function has two arguments, both pointers to | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 520 | arbitrary Python objects: the Python function, and the argument list.  The | 
|  | 521 | argument list must always be a tuple object, whose length is the number of | 
| Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 522 | arguments.  To call the Python function with no arguments, pass in NULL, or | 
| Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 523 | an empty tuple; to call it with one argument, pass a singleton tuple. | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 524 | :c:func:`Py_BuildValue` returns a tuple when its format string consists of zero | 
| Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 525 | or more format codes between parentheses.  For example:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 526 |  | 
|  | 527 | int arg; | 
|  | 528 | PyObject *arglist; | 
|  | 529 | PyObject *result; | 
|  | 530 | ... | 
|  | 531 | arg = 123; | 
|  | 532 | ... | 
|  | 533 | /* Time to call the callback */ | 
|  | 534 | arglist = Py_BuildValue("(i)", arg); | 
| Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 535 | result = PyObject_CallObject(my_callback, arglist); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 536 | Py_DECREF(arglist); | 
|  | 537 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 538 | :c:func:`PyObject_CallObject` returns a Python object pointer: this is the return | 
|  | 539 | value of the Python function.  :c:func:`PyObject_CallObject` is | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 540 | "reference-count-neutral" with respect to its arguments.  In the example a new | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 541 | tuple was created to serve as the argument list, which is :c:func:`Py_DECREF`\ | 
| Georg Brandl | 337672b | 2013-10-06 11:02:38 +0200 | [diff] [blame] | 542 | -ed immediately after the :c:func:`PyObject_CallObject` call. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 543 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 544 | The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 545 | new object, or it is an existing object whose reference count has been | 
|  | 546 | incremented.  So, unless you want to save it in a global variable, you should | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 547 | somehow :c:func:`Py_DECREF` the result, even (especially!) if you are not | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 548 | interested in its value. | 
|  | 549 |  | 
|  | 550 | Before you do this, however, it is important to check that the return value | 
|  | 551 | isn't *NULL*.  If it is, the Python function terminated by raising an exception. | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 552 | If the C code that called :c:func:`PyObject_CallObject` is called from Python, it | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 553 | should now return an error indication to its Python caller, so the interpreter | 
|  | 554 | can print a stack trace, or the calling Python code can handle the exception. | 
|  | 555 | If this is not possible or desirable, the exception should be cleared by calling | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 556 | :c:func:`PyErr_Clear`.  For example:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 557 |  | 
|  | 558 | if (result == NULL) | 
|  | 559 | return NULL; /* Pass error back */ | 
|  | 560 | ...use result... | 
| Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 561 | Py_DECREF(result); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 562 |  | 
|  | 563 | Depending on the desired interface to the Python callback function, you may also | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 564 | have to provide an argument list to :c:func:`PyObject_CallObject`.  In some cases | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 565 | the argument list is also provided by the Python program, through the same | 
|  | 566 | interface that specified the callback function.  It can then be saved and used | 
|  | 567 | in the same manner as the function object.  In other cases, you may have to | 
|  | 568 | construct a new tuple to pass as the argument list.  The simplest way to do this | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 569 | is to call :c:func:`Py_BuildValue`.  For example, if you want to pass an integral | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 570 | event code, you might use the following code:: | 
|  | 571 |  | 
|  | 572 | PyObject *arglist; | 
|  | 573 | ... | 
|  | 574 | arglist = Py_BuildValue("(l)", eventcode); | 
| Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 575 | result = PyObject_CallObject(my_callback, arglist); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 576 | Py_DECREF(arglist); | 
|  | 577 | if (result == NULL) | 
|  | 578 | return NULL; /* Pass error back */ | 
|  | 579 | /* Here maybe use the result */ | 
|  | 580 | Py_DECREF(result); | 
|  | 581 |  | 
|  | 582 | Note the placement of ``Py_DECREF(arglist)`` immediately after the call, before | 
| Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 583 | the error check!  Also note that strictly speaking this code is not complete: | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 584 | :c:func:`Py_BuildValue` may run out of memory, and this should be checked. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 585 |  | 
| Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 586 | You may also call a function with keyword arguments by using | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 587 | :c:func:`PyObject_Call`, which supports arguments and keyword arguments.  As in | 
|  | 588 | the above example, we use :c:func:`Py_BuildValue` to construct the dictionary. :: | 
| Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 589 |  | 
|  | 590 | PyObject *dict; | 
|  | 591 | ... | 
|  | 592 | dict = Py_BuildValue("{s:i}", "name", val); | 
| Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 593 | result = PyObject_Call(my_callback, NULL, dict); | 
| Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 594 | Py_DECREF(dict); | 
|  | 595 | if (result == NULL) | 
|  | 596 | return NULL; /* Pass error back */ | 
|  | 597 | /* Here maybe use the result */ | 
|  | 598 | Py_DECREF(result); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 599 |  | 
| Benjamin Peterson | d23f822 | 2009-04-05 19:13:16 +0000 | [diff] [blame] | 600 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 601 | .. _parsetuple: | 
|  | 602 |  | 
|  | 603 | Extracting Parameters in Extension Functions | 
|  | 604 | ============================================ | 
|  | 605 |  | 
|  | 606 | .. index:: single: PyArg_ParseTuple() | 
|  | 607 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 608 | The :c:func:`PyArg_ParseTuple` function is declared as follows:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 609 |  | 
| Serhiy Storchaka | 03863d2 | 2015-06-21 17:11:21 +0300 | [diff] [blame] | 610 | int PyArg_ParseTuple(PyObject *arg, const char *format, ...); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 611 |  | 
|  | 612 | The *arg* argument must be a tuple object containing an argument list passed | 
|  | 613 | from Python to a C function.  The *format* argument must be a format string, | 
|  | 614 | whose syntax is explained in :ref:`arg-parsing` in the Python/C API Reference | 
|  | 615 | Manual.  The remaining arguments must be addresses of variables whose type is | 
|  | 616 | determined by the format string. | 
|  | 617 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 618 | Note that while :c:func:`PyArg_ParseTuple` checks that the Python arguments have | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 619 | the required types, it cannot check the validity of the addresses of C variables | 
|  | 620 | passed to the call: if you make mistakes there, your code will probably crash or | 
|  | 621 | at least overwrite random bits in memory.  So be careful! | 
|  | 622 |  | 
|  | 623 | Note that any Python object references which are provided to the caller are | 
|  | 624 | *borrowed* references; do not decrement their reference count! | 
|  | 625 |  | 
|  | 626 | Some example calls:: | 
|  | 627 |  | 
| Gregory P. Smith | 02c3b5c | 2008-11-23 23:49:16 +0000 | [diff] [blame] | 628 | #define PY_SSIZE_T_CLEAN  /* Make "s#" use Py_ssize_t rather than int. */ | 
|  | 629 | #include <Python.h> | 
|  | 630 |  | 
|  | 631 | :: | 
|  | 632 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 633 | int ok; | 
|  | 634 | int i, j; | 
|  | 635 | long k, l; | 
|  | 636 | const char *s; | 
| Gregory P. Smith | 02c3b5c | 2008-11-23 23:49:16 +0000 | [diff] [blame] | 637 | Py_ssize_t size; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 638 |  | 
|  | 639 | ok = PyArg_ParseTuple(args, ""); /* No arguments */ | 
|  | 640 | /* Python call: f() */ | 
|  | 641 |  | 
|  | 642 | :: | 
|  | 643 |  | 
|  | 644 | ok = PyArg_ParseTuple(args, "s", &s); /* A string */ | 
|  | 645 | /* Possible Python call: f('whoops!') */ | 
|  | 646 |  | 
|  | 647 | :: | 
|  | 648 |  | 
|  | 649 | ok = PyArg_ParseTuple(args, "lls", &k, &l, &s); /* Two longs and a string */ | 
|  | 650 | /* Possible Python call: f(1, 2, 'three') */ | 
|  | 651 |  | 
|  | 652 | :: | 
|  | 653 |  | 
|  | 654 | ok = PyArg_ParseTuple(args, "(ii)s#", &i, &j, &s, &size); | 
|  | 655 | /* A pair of ints and a string, whose size is also returned */ | 
|  | 656 | /* Possible Python call: f((1, 2), 'three') */ | 
|  | 657 |  | 
|  | 658 | :: | 
|  | 659 |  | 
|  | 660 | { | 
|  | 661 | const char *file; | 
|  | 662 | const char *mode = "r"; | 
|  | 663 | int bufsize = 0; | 
|  | 664 | ok = PyArg_ParseTuple(args, "s|si", &file, &mode, &bufsize); | 
|  | 665 | /* A string, and optionally another string and an integer */ | 
|  | 666 | /* Possible Python calls: | 
|  | 667 | f('spam') | 
|  | 668 | f('spam', 'w') | 
|  | 669 | f('spam', 'wb', 100000) */ | 
|  | 670 | } | 
|  | 671 |  | 
|  | 672 | :: | 
|  | 673 |  | 
|  | 674 | { | 
|  | 675 | int left, top, right, bottom, h, v; | 
|  | 676 | ok = PyArg_ParseTuple(args, "((ii)(ii))(ii)", | 
|  | 677 | &left, &top, &right, &bottom, &h, &v); | 
|  | 678 | /* A rectangle and a point */ | 
|  | 679 | /* Possible Python call: | 
|  | 680 | f(((0, 0), (400, 300)), (10, 10)) */ | 
|  | 681 | } | 
|  | 682 |  | 
|  | 683 | :: | 
|  | 684 |  | 
|  | 685 | { | 
|  | 686 | Py_complex c; | 
|  | 687 | ok = PyArg_ParseTuple(args, "D:myfunction", &c); | 
|  | 688 | /* a complex, also providing a function name for errors */ | 
|  | 689 | /* Possible Python call: myfunction(1+2j) */ | 
|  | 690 | } | 
|  | 691 |  | 
|  | 692 |  | 
|  | 693 | .. _parsetupleandkeywords: | 
|  | 694 |  | 
|  | 695 | Keyword Parameters for Extension Functions | 
|  | 696 | ========================================== | 
|  | 697 |  | 
|  | 698 | .. index:: single: PyArg_ParseTupleAndKeywords() | 
|  | 699 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 700 | The :c:func:`PyArg_ParseTupleAndKeywords` function is declared as follows:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 701 |  | 
|  | 702 | int PyArg_ParseTupleAndKeywords(PyObject *arg, PyObject *kwdict, | 
| Serhiy Storchaka | 03863d2 | 2015-06-21 17:11:21 +0300 | [diff] [blame] | 703 | const char *format, char *kwlist[], ...); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 704 |  | 
|  | 705 | The *arg* and *format* parameters are identical to those of the | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 706 | :c:func:`PyArg_ParseTuple` function.  The *kwdict* parameter is the dictionary of | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 707 | keywords received as the third parameter from the Python runtime.  The *kwlist* | 
|  | 708 | parameter is a *NULL*-terminated list of strings which identify the parameters; | 
|  | 709 | the names are matched with the type information from *format* from left to | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 710 | right.  On success, :c:func:`PyArg_ParseTupleAndKeywords` returns true, otherwise | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 711 | it returns false and raises an appropriate exception. | 
|  | 712 |  | 
|  | 713 | .. note:: | 
|  | 714 |  | 
|  | 715 | Nested tuples cannot be parsed when using keyword arguments!  Keyword parameters | 
|  | 716 | passed in which are not present in the *kwlist* will cause :exc:`TypeError` to | 
|  | 717 | be raised. | 
|  | 718 |  | 
|  | 719 | .. index:: single: Philbrick, Geoff | 
|  | 720 |  | 
|  | 721 | Here is an example module which uses keywords, based on an example by Geoff | 
| Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 722 | Philbrick (philbrick@hks.com):: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 723 |  | 
|  | 724 | #include "Python.h" | 
|  | 725 |  | 
|  | 726 | static PyObject * | 
|  | 727 | keywdarg_parrot(PyObject *self, PyObject *args, PyObject *keywds) | 
| Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 728 | { | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 729 | int voltage; | 
|  | 730 | char *state = "a stiff"; | 
|  | 731 | char *action = "voom"; | 
|  | 732 | char *type = "Norwegian Blue"; | 
|  | 733 |  | 
|  | 734 | static char *kwlist[] = {"voltage", "state", "action", "type", NULL}; | 
|  | 735 |  | 
| Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 736 | if (!PyArg_ParseTupleAndKeywords(args, keywds, "i|sss", kwlist, | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 737 | &voltage, &state, &action, &type)) | 
| Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 738 | return NULL; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 739 |  | 
| Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 740 | printf("-- This parrot wouldn't %s if you put %i Volts through it.\n", | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 741 | action, voltage); | 
|  | 742 | printf("-- Lovely plumage, the %s -- It's %s!\n", type, state); | 
|  | 743 |  | 
| Georg Brandl | a072de1 | 2013-10-06 20:46:08 +0200 | [diff] [blame] | 744 | Py_RETURN_NONE; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 745 | } | 
|  | 746 |  | 
|  | 747 | static PyMethodDef keywdarg_methods[] = { | 
|  | 748 | /* The cast of the function is necessary since PyCFunction values | 
|  | 749 | * only take two PyObject* parameters, and keywdarg_parrot() takes | 
|  | 750 | * three. | 
|  | 751 | */ | 
|  | 752 | {"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS | METH_KEYWORDS, | 
|  | 753 | "Print a lovely skit to standard output."}, | 
|  | 754 | {NULL, NULL, 0, NULL}   /* sentinel */ | 
|  | 755 | }; | 
|  | 756 |  | 
| Eli Bendersky | 8f77349 | 2012-08-15 14:49:49 +0300 | [diff] [blame] | 757 | static struct PyModuleDef keywdargmodule = { | 
|  | 758 | PyModuleDef_HEAD_INIT, | 
|  | 759 | "keywdarg", | 
|  | 760 | NULL, | 
|  | 761 | -1, | 
|  | 762 | keywdarg_methods | 
|  | 763 | }; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 764 |  | 
| Eli Bendersky | 8f77349 | 2012-08-15 14:49:49 +0300 | [diff] [blame] | 765 | PyMODINIT_FUNC | 
|  | 766 | PyInit_keywdarg(void) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 767 | { | 
| Eli Bendersky | 8f77349 | 2012-08-15 14:49:49 +0300 | [diff] [blame] | 768 | return PyModule_Create(&keywdargmodule); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 769 | } | 
|  | 770 |  | 
|  | 771 |  | 
|  | 772 | .. _buildvalue: | 
|  | 773 |  | 
|  | 774 | Building Arbitrary Values | 
|  | 775 | ========================= | 
|  | 776 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 777 | This function is the counterpart to :c:func:`PyArg_ParseTuple`.  It is declared | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 778 | as follows:: | 
|  | 779 |  | 
| Serhiy Storchaka | 03863d2 | 2015-06-21 17:11:21 +0300 | [diff] [blame] | 780 | PyObject *Py_BuildValue(const char *format, ...); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 781 |  | 
|  | 782 | It recognizes a set of format units similar to the ones recognized by | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 783 | :c:func:`PyArg_ParseTuple`, but the arguments (which are input to the function, | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 784 | not output) must not be pointers, just values.  It returns a new Python object, | 
|  | 785 | suitable for returning from a C function called from Python. | 
|  | 786 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 787 | One difference with :c:func:`PyArg_ParseTuple`: while the latter requires its | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 788 | first argument to be a tuple (since Python argument lists are always represented | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 789 | as tuples internally), :c:func:`Py_BuildValue` does not always build a tuple.  It | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 790 | builds a tuple only if its format string contains two or more format units. If | 
|  | 791 | the format string is empty, it returns ``None``; if it contains exactly one | 
|  | 792 | format unit, it returns whatever object is described by that format unit.  To | 
|  | 793 | force it to return a tuple of size 0 or one, parenthesize the format string. | 
|  | 794 |  | 
| Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 795 | Examples (to the left the call, to the right the resulting Python value): | 
|  | 796 |  | 
|  | 797 | .. code-block:: none | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 798 |  | 
|  | 799 | Py_BuildValue("")                        None | 
|  | 800 | Py_BuildValue("i", 123)                  123 | 
|  | 801 | Py_BuildValue("iii", 123, 456, 789)      (123, 456, 789) | 
|  | 802 | Py_BuildValue("s", "hello")              'hello' | 
|  | 803 | Py_BuildValue("y", "hello")              b'hello' | 
|  | 804 | Py_BuildValue("ss", "hello", "world")    ('hello', 'world') | 
|  | 805 | Py_BuildValue("s#", "hello", 4)          'hell' | 
|  | 806 | Py_BuildValue("y#", "hello", 4)          b'hell' | 
|  | 807 | Py_BuildValue("()")                      () | 
|  | 808 | Py_BuildValue("(i)", 123)                (123,) | 
|  | 809 | Py_BuildValue("(ii)", 123, 456)          (123, 456) | 
|  | 810 | Py_BuildValue("(i,i)", 123, 456)         (123, 456) | 
|  | 811 | Py_BuildValue("[i,i]", 123, 456)         [123, 456] | 
|  | 812 | Py_BuildValue("{s:i,s:i}", | 
|  | 813 | "abc", 123, "def", 456)    {'abc': 123, 'def': 456} | 
|  | 814 | Py_BuildValue("((ii)(ii)) (ii)", | 
|  | 815 | 1, 2, 3, 4, 5, 6)          (((1, 2), (3, 4)), (5, 6)) | 
|  | 816 |  | 
|  | 817 |  | 
|  | 818 | .. _refcounts: | 
|  | 819 |  | 
|  | 820 | Reference Counts | 
|  | 821 | ================ | 
|  | 822 |  | 
|  | 823 | In languages like C or C++, the programmer is responsible for dynamic allocation | 
|  | 824 | and deallocation of memory on the heap.  In C, this is done using the functions | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 825 | :c:func:`malloc` and :c:func:`free`.  In C++, the operators ``new`` and | 
| Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 826 | ``delete`` are used with essentially the same meaning and we'll restrict | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 827 | the following discussion to the C case. | 
|  | 828 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 829 | Every block of memory allocated with :c:func:`malloc` should eventually be | 
|  | 830 | returned to the pool of available memory by exactly one call to :c:func:`free`. | 
|  | 831 | It is important to call :c:func:`free` at the right time.  If a block's address | 
|  | 832 | is forgotten but :c:func:`free` is not called for it, the memory it occupies | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 833 | cannot be reused until the program terminates.  This is called a :dfn:`memory | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 834 | leak`.  On the other hand, if a program calls :c:func:`free` for a block and then | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 835 | continues to use the block, it creates a conflict with re-use of the block | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 836 | through another :c:func:`malloc` call.  This is called :dfn:`using freed memory`. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 837 | It has the same bad consequences as referencing uninitialized data --- core | 
|  | 838 | dumps, wrong results, mysterious crashes. | 
|  | 839 |  | 
|  | 840 | Common causes of memory leaks are unusual paths through the code.  For instance, | 
|  | 841 | a function may allocate a block of memory, do some calculation, and then free | 
|  | 842 | the block again.  Now a change in the requirements for the function may add a | 
|  | 843 | test to the calculation that detects an error condition and can return | 
|  | 844 | prematurely from the function.  It's easy to forget to free the allocated memory | 
|  | 845 | block when taking this premature exit, especially when it is added later to the | 
|  | 846 | code.  Such leaks, once introduced, often go undetected for a long time: the | 
|  | 847 | error exit is taken only in a small fraction of all calls, and most modern | 
|  | 848 | machines have plenty of virtual memory, so the leak only becomes apparent in a | 
|  | 849 | long-running process that uses the leaking function frequently.  Therefore, it's | 
|  | 850 | important to prevent leaks from happening by having a coding convention or | 
|  | 851 | strategy that minimizes this kind of errors. | 
|  | 852 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 853 | Since Python makes heavy use of :c:func:`malloc` and :c:func:`free`, it needs a | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 854 | strategy to avoid memory leaks as well as the use of freed memory.  The chosen | 
|  | 855 | method is called :dfn:`reference counting`.  The principle is simple: every | 
|  | 856 | object contains a counter, which is incremented when a reference to the object | 
|  | 857 | is stored somewhere, and which is decremented when a reference to it is deleted. | 
|  | 858 | When the counter reaches zero, the last reference to the object has been deleted | 
|  | 859 | and the object is freed. | 
|  | 860 |  | 
|  | 861 | An alternative strategy is called :dfn:`automatic garbage collection`. | 
|  | 862 | (Sometimes, reference counting is also referred to as a garbage collection | 
|  | 863 | strategy, hence my use of "automatic" to distinguish the two.)  The big | 
|  | 864 | advantage of automatic garbage collection is that the user doesn't need to call | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 865 | :c:func:`free` explicitly.  (Another claimed advantage is an improvement in speed | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 866 | or memory usage --- this is no hard fact however.)  The disadvantage is that for | 
|  | 867 | C, there is no truly portable automatic garbage collector, while reference | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 868 | counting can be implemented portably (as long as the functions :c:func:`malloc` | 
|  | 869 | and :c:func:`free` are available --- which the C Standard guarantees). Maybe some | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 870 | day a sufficiently portable automatic garbage collector will be available for C. | 
|  | 871 | Until then, we'll have to live with reference counts. | 
|  | 872 |  | 
|  | 873 | While Python uses the traditional reference counting implementation, it also | 
|  | 874 | offers a cycle detector that works to detect reference cycles.  This allows | 
|  | 875 | applications to not worry about creating direct or indirect circular references; | 
|  | 876 | these are the weakness of garbage collection implemented using only reference | 
|  | 877 | counting.  Reference cycles consist of objects which contain (possibly indirect) | 
|  | 878 | references to themselves, so that each object in the cycle has a reference count | 
|  | 879 | which is non-zero.  Typical reference counting implementations are not able to | 
|  | 880 | reclaim the memory belonging to any objects in a reference cycle, or referenced | 
|  | 881 | from the objects in the cycle, even though there are no further references to | 
|  | 882 | the cycle itself. | 
|  | 883 |  | 
| Georg Brandl | a4c8c47 | 2014-10-31 10:38:49 +0100 | [diff] [blame] | 884 | The cycle detector is able to detect garbage cycles and can reclaim them. | 
|  | 885 | The :mod:`gc` module exposes a way to run the detector (the | 
| Serhiy Storchaka | 0b68a2d | 2013-10-09 13:26:17 +0300 | [diff] [blame] | 886 | :func:`~gc.collect` function), as well as configuration | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 887 | interfaces and the ability to disable the detector at runtime.  The cycle | 
|  | 888 | detector is considered an optional component; though it is included by default, | 
| Martin Panter | 5c67933 | 2016-10-30 04:20:17 +0000 | [diff] [blame] | 889 | it can be disabled at build time using the :option:`!--without-cycle-gc` option | 
| Georg Brandl | f694518 | 2008-02-01 11:56:49 +0000 | [diff] [blame] | 890 | to the :program:`configure` script on Unix platforms (including Mac OS X).  If | 
|  | 891 | the cycle detector is disabled in this way, the :mod:`gc` module will not be | 
|  | 892 | available. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 893 |  | 
|  | 894 |  | 
|  | 895 | .. _refcountsinpython: | 
|  | 896 |  | 
|  | 897 | Reference Counting in Python | 
|  | 898 | ---------------------------- | 
|  | 899 |  | 
|  | 900 | There are two macros, ``Py_INCREF(x)`` and ``Py_DECREF(x)``, which handle the | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 901 | incrementing and decrementing of the reference count. :c:func:`Py_DECREF` also | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 902 | frees the object when the count reaches zero. For flexibility, it doesn't call | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 903 | :c:func:`free` directly --- rather, it makes a call through a function pointer in | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 904 | the object's :dfn:`type object`.  For this purpose (and others), every object | 
|  | 905 | also contains a pointer to its type object. | 
|  | 906 |  | 
|  | 907 | The big question now remains: when to use ``Py_INCREF(x)`` and ``Py_DECREF(x)``? | 
|  | 908 | Let's first introduce some terms.  Nobody "owns" an object; however, you can | 
|  | 909 | :dfn:`own a reference` to an object.  An object's reference count is now defined | 
|  | 910 | as the number of owned references to it.  The owner of a reference is | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 911 | responsible for calling :c:func:`Py_DECREF` when the reference is no longer | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 912 | needed.  Ownership of a reference can be transferred.  There are three ways to | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 913 | dispose of an owned reference: pass it on, store it, or call :c:func:`Py_DECREF`. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 914 | Forgetting to dispose of an owned reference creates a memory leak. | 
|  | 915 |  | 
|  | 916 | It is also possible to :dfn:`borrow` [#]_ a reference to an object.  The | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 917 | borrower of a reference should not call :c:func:`Py_DECREF`.  The borrower must | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 918 | not hold on to the object longer than the owner from which it was borrowed. | 
|  | 919 | Using a borrowed reference after the owner has disposed of it risks using freed | 
|  | 920 | memory and should be avoided completely. [#]_ | 
|  | 921 |  | 
|  | 922 | The advantage of borrowing over owning a reference is that you don't need to | 
|  | 923 | take care of disposing of the reference on all possible paths through the code | 
|  | 924 | --- in other words, with a borrowed reference you don't run the risk of leaking | 
| Benjamin Peterson | 6ebe78f | 2008-12-21 00:06:59 +0000 | [diff] [blame] | 925 | when a premature exit is taken.  The disadvantage of borrowing over owning is | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 926 | that there are some subtle situations where in seemingly correct code a borrowed | 
|  | 927 | reference can be used after the owner from which it was borrowed has in fact | 
|  | 928 | disposed of it. | 
|  | 929 |  | 
|  | 930 | A borrowed reference can be changed into an owned reference by calling | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 931 | :c:func:`Py_INCREF`.  This does not affect the status of the owner from which the | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 932 | reference was borrowed --- it creates a new owned reference, and gives full | 
|  | 933 | owner responsibilities (the new owner must dispose of the reference properly, as | 
|  | 934 | well as the previous owner). | 
|  | 935 |  | 
|  | 936 |  | 
|  | 937 | .. _ownershiprules: | 
|  | 938 |  | 
|  | 939 | Ownership Rules | 
|  | 940 | --------------- | 
|  | 941 |  | 
|  | 942 | Whenever an object reference is passed into or out of a function, it is part of | 
|  | 943 | the function's interface specification whether ownership is transferred with the | 
|  | 944 | reference or not. | 
|  | 945 |  | 
|  | 946 | Most functions that return a reference to an object pass on ownership with the | 
|  | 947 | reference.  In particular, all functions whose function it is to create a new | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 948 | object, such as :c:func:`PyLong_FromLong` and :c:func:`Py_BuildValue`, pass | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 949 | ownership to the receiver.  Even if the object is not actually new, you still | 
|  | 950 | receive ownership of a new reference to that object.  For instance, | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 951 | :c:func:`PyLong_FromLong` maintains a cache of popular values and can return a | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 952 | reference to a cached item. | 
|  | 953 |  | 
|  | 954 | Many functions that extract objects from other objects also transfer ownership | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 955 | with the reference, for instance :c:func:`PyObject_GetAttrString`.  The picture | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 956 | is less clear, here, however, since a few common routines are exceptions: | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 957 | :c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:func:`PyDict_GetItem`, and | 
|  | 958 | :c:func:`PyDict_GetItemString` all return references that you borrow from the | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 959 | tuple, list or dictionary. | 
|  | 960 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 961 | The function :c:func:`PyImport_AddModule` also returns a borrowed reference, even | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 962 | though it may actually create the object it returns: this is possible because an | 
|  | 963 | owned reference to the object is stored in ``sys.modules``. | 
|  | 964 |  | 
|  | 965 | When you pass an object reference into another function, in general, the | 
|  | 966 | function borrows the reference from you --- if it needs to store it, it will use | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 967 | :c:func:`Py_INCREF` to become an independent owner.  There are exactly two | 
|  | 968 | important exceptions to this rule: :c:func:`PyTuple_SetItem` and | 
|  | 969 | :c:func:`PyList_SetItem`.  These functions take over ownership of the item passed | 
|  | 970 | to them --- even if they fail!  (Note that :c:func:`PyDict_SetItem` and friends | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 971 | don't take over ownership --- they are "normal.") | 
|  | 972 |  | 
|  | 973 | When a C function is called from Python, it borrows references to its arguments | 
|  | 974 | from the caller.  The caller owns a reference to the object, so the borrowed | 
|  | 975 | reference's lifetime is guaranteed until the function returns.  Only when such a | 
|  | 976 | borrowed reference must be stored or passed on, it must be turned into an owned | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 977 | reference by calling :c:func:`Py_INCREF`. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 978 |  | 
|  | 979 | The object reference returned from a C function that is called from Python must | 
|  | 980 | be an owned reference --- ownership is transferred from the function to its | 
|  | 981 | caller. | 
|  | 982 |  | 
|  | 983 |  | 
|  | 984 | .. _thinice: | 
|  | 985 |  | 
|  | 986 | Thin Ice | 
|  | 987 | -------- | 
|  | 988 |  | 
|  | 989 | There are a few situations where seemingly harmless use of a borrowed reference | 
|  | 990 | can lead to problems.  These all have to do with implicit invocations of the | 
|  | 991 | interpreter, which can cause the owner of a reference to dispose of it. | 
|  | 992 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 993 | The first and most important case to know about is using :c:func:`Py_DECREF` on | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 994 | an unrelated object while borrowing a reference to a list item.  For instance:: | 
|  | 995 |  | 
|  | 996 | void | 
|  | 997 | bug(PyObject *list) | 
|  | 998 | { | 
|  | 999 | PyObject *item = PyList_GetItem(list, 0); | 
|  | 1000 |  | 
| Georg Brandl | 9914dd3 | 2007-12-02 23:08:39 +0000 | [diff] [blame] | 1001 | PyList_SetItem(list, 1, PyLong_FromLong(0L)); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1002 | PyObject_Print(item, stdout, 0); /* BUG! */ | 
|  | 1003 | } | 
|  | 1004 |  | 
|  | 1005 | This function first borrows a reference to ``list[0]``, then replaces | 
|  | 1006 | ``list[1]`` with the value ``0``, and finally prints the borrowed reference. | 
|  | 1007 | Looks harmless, right?  But it's not! | 
|  | 1008 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1009 | Let's follow the control flow into :c:func:`PyList_SetItem`.  The list owns | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1010 | references to all its items, so when item 1 is replaced, it has to dispose of | 
|  | 1011 | the original item 1.  Now let's suppose the original item 1 was an instance of a | 
|  | 1012 | user-defined class, and let's further suppose that the class defined a | 
|  | 1013 | :meth:`__del__` method.  If this class instance has a reference count of 1, | 
|  | 1014 | disposing of it will call its :meth:`__del__` method. | 
|  | 1015 |  | 
|  | 1016 | Since it is written in Python, the :meth:`__del__` method can execute arbitrary | 
|  | 1017 | Python code.  Could it perhaps do something to invalidate the reference to | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1018 | ``item`` in :c:func:`bug`?  You bet!  Assuming that the list passed into | 
|  | 1019 | :c:func:`bug` is accessible to the :meth:`__del__` method, it could execute a | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1020 | statement to the effect of ``del list[0]``, and assuming this was the last | 
|  | 1021 | reference to that object, it would free the memory associated with it, thereby | 
|  | 1022 | invalidating ``item``. | 
|  | 1023 |  | 
|  | 1024 | The solution, once you know the source of the problem, is easy: temporarily | 
|  | 1025 | increment the reference count.  The correct version of the function reads:: | 
|  | 1026 |  | 
|  | 1027 | void | 
|  | 1028 | no_bug(PyObject *list) | 
|  | 1029 | { | 
|  | 1030 | PyObject *item = PyList_GetItem(list, 0); | 
|  | 1031 |  | 
|  | 1032 | Py_INCREF(item); | 
| Georg Brandl | 9914dd3 | 2007-12-02 23:08:39 +0000 | [diff] [blame] | 1033 | PyList_SetItem(list, 1, PyLong_FromLong(0L)); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1034 | PyObject_Print(item, stdout, 0); | 
|  | 1035 | Py_DECREF(item); | 
|  | 1036 | } | 
|  | 1037 |  | 
|  | 1038 | This is a true story.  An older version of Python contained variants of this bug | 
|  | 1039 | and someone spent a considerable amount of time in a C debugger to figure out | 
|  | 1040 | why his :meth:`__del__` methods would fail... | 
|  | 1041 |  | 
|  | 1042 | The second case of problems with a borrowed reference is a variant involving | 
|  | 1043 | threads.  Normally, multiple threads in the Python interpreter can't get in each | 
|  | 1044 | other's way, because there is a global lock protecting Python's entire object | 
|  | 1045 | space.  However, it is possible to temporarily release this lock using the macro | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1046 | :c:macro:`Py_BEGIN_ALLOW_THREADS`, and to re-acquire it using | 
|  | 1047 | :c:macro:`Py_END_ALLOW_THREADS`.  This is common around blocking I/O calls, to | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1048 | let other threads use the processor while waiting for the I/O to complete. | 
|  | 1049 | Obviously, the following function has the same problem as the previous one:: | 
|  | 1050 |  | 
|  | 1051 | void | 
|  | 1052 | bug(PyObject *list) | 
|  | 1053 | { | 
|  | 1054 | PyObject *item = PyList_GetItem(list, 0); | 
|  | 1055 | Py_BEGIN_ALLOW_THREADS | 
|  | 1056 | ...some blocking I/O call... | 
|  | 1057 | Py_END_ALLOW_THREADS | 
|  | 1058 | PyObject_Print(item, stdout, 0); /* BUG! */ | 
|  | 1059 | } | 
|  | 1060 |  | 
|  | 1061 |  | 
|  | 1062 | .. _nullpointers: | 
|  | 1063 |  | 
|  | 1064 | NULL Pointers | 
|  | 1065 | ------------- | 
|  | 1066 |  | 
|  | 1067 | In general, functions that take object references as arguments do not expect you | 
|  | 1068 | to pass them *NULL* pointers, and will dump core (or cause later core dumps) if | 
|  | 1069 | you do so.  Functions that return object references generally return *NULL* only | 
|  | 1070 | to indicate that an exception occurred.  The reason for not testing for *NULL* | 
|  | 1071 | arguments is that functions often pass the objects they receive on to other | 
|  | 1072 | function --- if each function were to test for *NULL*, there would be a lot of | 
|  | 1073 | redundant tests and the code would run more slowly. | 
|  | 1074 |  | 
|  | 1075 | It is better to test for *NULL* only at the "source:" when a pointer that may be | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1076 | *NULL* is received, for example, from :c:func:`malloc` or from a function that | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1077 | may raise an exception. | 
|  | 1078 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1079 | The macros :c:func:`Py_INCREF` and :c:func:`Py_DECREF` do not check for *NULL* | 
|  | 1080 | pointers --- however, their variants :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF` | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1081 | do. | 
|  | 1082 |  | 
|  | 1083 | The macros for checking for a particular object type (``Pytype_Check()``) don't | 
|  | 1084 | check for *NULL* pointers --- again, there is much code that calls several of | 
|  | 1085 | these in a row to test an object against various different expected types, and | 
|  | 1086 | this would generate redundant tests.  There are no variants with *NULL* | 
|  | 1087 | checking. | 
|  | 1088 |  | 
|  | 1089 | The C function calling mechanism guarantees that the argument list passed to C | 
|  | 1090 | functions (``args`` in the examples) is never *NULL* --- in fact it guarantees | 
|  | 1091 | that it is always a tuple. [#]_ | 
|  | 1092 |  | 
|  | 1093 | It is a severe error to ever let a *NULL* pointer "escape" to the Python user. | 
|  | 1094 |  | 
| Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 1095 | .. Frank Stajano: | 
|  | 1096 | A pedagogically buggy example, along the lines of the previous listing, would | 
|  | 1097 | be helpful here -- showing in more concrete terms what sort of actions could | 
|  | 1098 | cause the problem. I can't very well imagine it from the description. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1099 |  | 
|  | 1100 |  | 
|  | 1101 | .. _cplusplus: | 
|  | 1102 |  | 
|  | 1103 | Writing Extensions in C++ | 
|  | 1104 | ========================= | 
|  | 1105 |  | 
|  | 1106 | It is possible to write extension modules in C++.  Some restrictions apply.  If | 
|  | 1107 | the main program (the Python interpreter) is compiled and linked by the C | 
|  | 1108 | compiler, global or static objects with constructors cannot be used.  This is | 
|  | 1109 | not a problem if the main program is linked by the C++ compiler.  Functions that | 
|  | 1110 | will be called by the Python interpreter (in particular, module initialization | 
|  | 1111 | functions) have to be declared using ``extern "C"``. It is unnecessary to | 
|  | 1112 | enclose the Python header files in ``extern "C" {...}`` --- they use this form | 
|  | 1113 | already if the symbol ``__cplusplus`` is defined (all recent C++ compilers | 
|  | 1114 | define this symbol). | 
|  | 1115 |  | 
|  | 1116 |  | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1117 | .. _using-capsules: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1118 |  | 
|  | 1119 | Providing a C API for an Extension Module | 
|  | 1120 | ========================================= | 
|  | 1121 |  | 
|  | 1122 | .. sectionauthor:: Konrad Hinsen <hinsen@cnrs-orleans.fr> | 
|  | 1123 |  | 
|  | 1124 |  | 
|  | 1125 | Many extension modules just provide new functions and types to be used from | 
|  | 1126 | Python, but sometimes the code in an extension module can be useful for other | 
|  | 1127 | extension modules. For example, an extension module could implement a type | 
|  | 1128 | "collection" which works like lists without order. Just like the standard Python | 
|  | 1129 | list type has a C API which permits extension modules to create and manipulate | 
|  | 1130 | lists, this new collection type should have a set of C functions for direct | 
|  | 1131 | manipulation from other extension modules. | 
|  | 1132 |  | 
|  | 1133 | At first sight this seems easy: just write the functions (without declaring them | 
| Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 1134 | ``static``, of course), provide an appropriate header file, and document | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1135 | the C API. And in fact this would work if all extension modules were always | 
|  | 1136 | linked statically with the Python interpreter. When modules are used as shared | 
|  | 1137 | libraries, however, the symbols defined in one module may not be visible to | 
|  | 1138 | another module. The details of visibility depend on the operating system; some | 
|  | 1139 | systems use one global namespace for the Python interpreter and all extension | 
|  | 1140 | modules (Windows, for example), whereas others require an explicit list of | 
|  | 1141 | imported symbols at module link time (AIX is one example), or offer a choice of | 
|  | 1142 | different strategies (most Unices). And even if symbols are globally visible, | 
|  | 1143 | the module whose functions one wishes to call might not have been loaded yet! | 
|  | 1144 |  | 
|  | 1145 | Portability therefore requires not to make any assumptions about symbol | 
|  | 1146 | visibility. This means that all symbols in extension modules should be declared | 
| Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 1147 | ``static``, except for the module's initialization function, in order to | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1148 | avoid name clashes with other extension modules (as discussed in section | 
|  | 1149 | :ref:`methodtable`). And it means that symbols that *should* be accessible from | 
|  | 1150 | other extension modules must be exported in a different way. | 
|  | 1151 |  | 
|  | 1152 | Python provides a special mechanism to pass C-level information (pointers) from | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1153 | one extension module to another one: Capsules. A Capsule is a Python data type | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1154 | which stores a pointer (:c:type:`void \*`).  Capsules can only be created and | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1155 | accessed via their C API, but they can be passed around like any other Python | 
|  | 1156 | object. In particular,  they can be assigned to a name in an extension module's | 
|  | 1157 | namespace. Other extension modules can then import this module, retrieve the | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1158 | value of this name, and then retrieve the pointer from the Capsule. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1159 |  | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1160 | There are many ways in which Capsules can be used to export the C API of an | 
|  | 1161 | extension module. Each function could get its own Capsule, or all C API pointers | 
|  | 1162 | could be stored in an array whose address is published in a Capsule. And the | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1163 | various tasks of storing and retrieving the pointers can be distributed in | 
|  | 1164 | different ways between the module providing the code and the client modules. | 
|  | 1165 |  | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1166 | Whichever method you choose, it's important to name your Capsules properly. | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1167 | The function :c:func:`PyCapsule_New` takes a name parameter | 
|  | 1168 | (:c:type:`const char \*`); you're permitted to pass in a *NULL* name, but | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1169 | we strongly encourage you to specify a name.  Properly named Capsules provide | 
|  | 1170 | a degree of runtime type-safety; there is no feasible way to tell one unnamed | 
|  | 1171 | Capsule from another. | 
|  | 1172 |  | 
|  | 1173 | In particular, Capsules used to expose C APIs should be given a name following | 
|  | 1174 | this convention:: | 
|  | 1175 |  | 
|  | 1176 | modulename.attributename | 
|  | 1177 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1178 | The convenience function :c:func:`PyCapsule_Import` makes it easy to | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1179 | load a C API provided via a Capsule, but only if the Capsule's name | 
|  | 1180 | matches this convention.  This behavior gives C API users a high degree | 
|  | 1181 | of certainty that the Capsule they load contains the correct C API. | 
|  | 1182 |  | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1183 | The following example demonstrates an approach that puts most of the burden on | 
|  | 1184 | the writer of the exporting module, which is appropriate for commonly used | 
|  | 1185 | library modules. It stores all C API pointers (just one in the example!) in an | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1186 | array of :c:type:`void` pointers which becomes the value of a Capsule. The header | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1187 | file corresponding to the module provides a macro that takes care of importing | 
|  | 1188 | the module and retrieving its C API pointers; client modules only have to call | 
|  | 1189 | this macro before accessing the C API. | 
|  | 1190 |  | 
|  | 1191 | The exporting module is a modification of the :mod:`spam` module from section | 
|  | 1192 | :ref:`extending-simpleexample`. The function :func:`spam.system` does not call | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1193 | the C library function :c:func:`system` directly, but a function | 
|  | 1194 | :c:func:`PySpam_System`, which would of course do something more complicated in | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1195 | reality (such as adding "spam" to every command). This function | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1196 | :c:func:`PySpam_System` is also exported to other extension modules. | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1197 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1198 | The function :c:func:`PySpam_System` is a plain C function, declared | 
| Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 1199 | ``static`` like everything else:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1200 |  | 
|  | 1201 | static int | 
|  | 1202 | PySpam_System(const char *command) | 
|  | 1203 | { | 
|  | 1204 | return system(command); | 
|  | 1205 | } | 
|  | 1206 |  | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1207 | The function :c:func:`spam_system` is modified in a trivial way:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1208 |  | 
|  | 1209 | static PyObject * | 
|  | 1210 | spam_system(PyObject *self, PyObject *args) | 
|  | 1211 | { | 
|  | 1212 | const char *command; | 
|  | 1213 | int sts; | 
|  | 1214 |  | 
|  | 1215 | if (!PyArg_ParseTuple(args, "s", &command)) | 
|  | 1216 | return NULL; | 
|  | 1217 | sts = PySpam_System(command); | 
| Georg Brandl | c877a7c | 2010-11-26 11:55:48 +0000 | [diff] [blame] | 1218 | return PyLong_FromLong(sts); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1219 | } | 
|  | 1220 |  | 
|  | 1221 | In the beginning of the module, right after the line :: | 
|  | 1222 |  | 
|  | 1223 | #include "Python.h" | 
|  | 1224 |  | 
|  | 1225 | two more lines must be added:: | 
|  | 1226 |  | 
|  | 1227 | #define SPAM_MODULE | 
|  | 1228 | #include "spammodule.h" | 
|  | 1229 |  | 
|  | 1230 | The ``#define`` is used to tell the header file that it is being included in the | 
|  | 1231 | exporting module, not a client module. Finally, the module's initialization | 
|  | 1232 | function must take care of initializing the C API pointer array:: | 
|  | 1233 |  | 
|  | 1234 | PyMODINIT_FUNC | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1235 | PyInit_spam(void) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1236 | { | 
|  | 1237 | PyObject *m; | 
|  | 1238 | static void *PySpam_API[PySpam_API_pointers]; | 
|  | 1239 | PyObject *c_api_object; | 
|  | 1240 |  | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1241 | m = PyModule_Create(&spammodule); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1242 | if (m == NULL) | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1243 | return NULL; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1244 |  | 
|  | 1245 | /* Initialize the C API pointer array */ | 
|  | 1246 | PySpam_API[PySpam_System_NUM] = (void *)PySpam_System; | 
|  | 1247 |  | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1248 | /* Create a Capsule containing the API pointer array's address */ | 
|  | 1249 | c_api_object = PyCapsule_New((void *)PySpam_API, "spam._C_API", NULL); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1250 |  | 
|  | 1251 | if (c_api_object != NULL) | 
|  | 1252 | PyModule_AddObject(m, "_C_API", c_api_object); | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1253 | return m; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1254 | } | 
|  | 1255 |  | 
| Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 1256 | Note that ``PySpam_API`` is declared ``static``; otherwise the pointer | 
| Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1257 | array would disappear when :func:`PyInit_spam` terminates! | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1258 |  | 
|  | 1259 | The bulk of the work is in the header file :file:`spammodule.h`, which looks | 
|  | 1260 | like this:: | 
|  | 1261 |  | 
|  | 1262 | #ifndef Py_SPAMMODULE_H | 
|  | 1263 | #define Py_SPAMMODULE_H | 
|  | 1264 | #ifdef __cplusplus | 
|  | 1265 | extern "C" { | 
|  | 1266 | #endif | 
|  | 1267 |  | 
|  | 1268 | /* Header file for spammodule */ | 
|  | 1269 |  | 
|  | 1270 | /* C API functions */ | 
|  | 1271 | #define PySpam_System_NUM 0 | 
|  | 1272 | #define PySpam_System_RETURN int | 
|  | 1273 | #define PySpam_System_PROTO (const char *command) | 
|  | 1274 |  | 
|  | 1275 | /* Total number of C API pointers */ | 
|  | 1276 | #define PySpam_API_pointers 1 | 
|  | 1277 |  | 
|  | 1278 |  | 
|  | 1279 | #ifdef SPAM_MODULE | 
|  | 1280 | /* This section is used when compiling spammodule.c */ | 
|  | 1281 |  | 
|  | 1282 | static PySpam_System_RETURN PySpam_System PySpam_System_PROTO; | 
|  | 1283 |  | 
|  | 1284 | #else | 
|  | 1285 | /* This section is used in modules that use spammodule's API */ | 
|  | 1286 |  | 
|  | 1287 | static void **PySpam_API; | 
|  | 1288 |  | 
|  | 1289 | #define PySpam_System \ | 
|  | 1290 | (*(PySpam_System_RETURN (*)PySpam_System_PROTO) PySpam_API[PySpam_System_NUM]) | 
|  | 1291 |  | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1292 | /* Return -1 on error, 0 on success. | 
|  | 1293 | * PyCapsule_Import will set an exception if there's an error. | 
|  | 1294 | */ | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1295 | static int | 
|  | 1296 | import_spam(void) | 
|  | 1297 | { | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1298 | PySpam_API = (void **)PyCapsule_Import("spam._C_API", 0); | 
|  | 1299 | return (PySpam_API != NULL) ? 0 : -1; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1300 | } | 
|  | 1301 |  | 
|  | 1302 | #endif | 
|  | 1303 |  | 
|  | 1304 | #ifdef __cplusplus | 
|  | 1305 | } | 
|  | 1306 | #endif | 
|  | 1307 |  | 
|  | 1308 | #endif /* !defined(Py_SPAMMODULE_H) */ | 
|  | 1309 |  | 
|  | 1310 | All that a client module must do in order to have access to the function | 
| Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 1311 | :c:func:`PySpam_System` is to call the function (or rather macro) | 
|  | 1312 | :c:func:`import_spam` in its initialization function:: | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1313 |  | 
|  | 1314 | PyMODINIT_FUNC | 
| Benjamin Peterson | 7c43524 | 2009-03-24 01:40:39 +0000 | [diff] [blame] | 1315 | PyInit_client(void) | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1316 | { | 
|  | 1317 | PyObject *m; | 
|  | 1318 |  | 
| Georg Brandl | 2115176 | 2009-03-31 15:52:41 +0000 | [diff] [blame] | 1319 | m = PyModule_Create(&clientmodule); | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1320 | if (m == NULL) | 
| Georg Brandl | 2115176 | 2009-03-31 15:52:41 +0000 | [diff] [blame] | 1321 | return NULL; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1322 | if (import_spam() < 0) | 
| Georg Brandl | 2115176 | 2009-03-31 15:52:41 +0000 | [diff] [blame] | 1323 | return NULL; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1324 | /* additional initialization can happen here */ | 
| Georg Brandl | 2115176 | 2009-03-31 15:52:41 +0000 | [diff] [blame] | 1325 | return m; | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1326 | } | 
|  | 1327 |  | 
|  | 1328 | The main disadvantage of this approach is that the file :file:`spammodule.h` is | 
|  | 1329 | rather complicated. However, the basic structure is the same for each function | 
|  | 1330 | that is exported, so it has to be learned only once. | 
|  | 1331 |  | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1332 | Finally it should be mentioned that Capsules offer additional functionality, | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1333 | which is especially useful for memory allocation and deallocation of the pointer | 
| Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1334 | stored in a Capsule. The details are described in the Python/C API Reference | 
|  | 1335 | Manual in the section :ref:`capsules` and in the implementation of Capsules (files | 
|  | 1336 | :file:`Include/pycapsule.h` and :file:`Objects/pycapsule.c` in the Python source | 
| Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1337 | code distribution). | 
|  | 1338 |  | 
|  | 1339 | .. rubric:: Footnotes | 
|  | 1340 |  | 
|  | 1341 | .. [#] An interface for this function already exists in the standard module :mod:`os` | 
|  | 1342 | --- it was chosen as a simple and straightforward example. | 
|  | 1343 |  | 
|  | 1344 | .. [#] The metaphor of "borrowing" a reference is not completely correct: the owner | 
|  | 1345 | still has a copy of the reference. | 
|  | 1346 |  | 
|  | 1347 | .. [#] Checking that the reference count is at least 1 **does not work** --- the | 
|  | 1348 | reference count itself could be in freed memory and may thus be reused for | 
|  | 1349 | another object! | 
|  | 1350 |  | 
|  | 1351 | .. [#] These guarantees don't hold when you use the "old" style calling convention --- | 
|  | 1352 | this is still found in much existing code. |