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