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