blob: 5488ce908843879e2e2c84a77d47bc9f6fa3a739 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001.. highlightlang:: c
2
3
4.. _extending-intro:
5
6******************************
7Extending Python with C or C++
8******************************
9
10It is quite easy to add new built-in modules to Python, if you know how to
11program in C. Such :dfn:`extension modules` can do two things that can't be
12done directly in Python: they can implement new built-in object types, and they
13can call C library functions and system calls.
14
15To support extensions, the Python API (Application Programmers Interface)
16defines a set of functions, macros and variables that provide access to most
17aspects of the Python run-time system. The Python API is incorporated in a C
18source file by including the header ``"Python.h"``.
19
20The compilation of an extension module depends on its intended use as well as on
21your system setup; details are given in later chapters.
22
Brett Cannon2348eda2009-09-17 03:24:45 +000023Do note that if your use case is calling C library functions or system calls,
24you should consider using the :mod:`ctypes` module rather than writing custom
25C code. Not only does :mod:`ctypes` let you write Python code to interface
26with C code, but it is more portable between implementations of Python than
27writing and compiling an extension module which typically ties you to CPython.
28
29
Georg Brandl8ec7f652007-08-15 14:28:01 +000030
31.. _extending-simpleexample:
32
33A Simple Example
34================
35
36Let's create an extension module called ``spam`` (the favorite food of Monty
37Python fans...) and let's say we want to create a Python interface to the C
Sandro Tosi98ed08f2012-01-14 16:42:02 +010038library function :c:func:`system`. [#]_ This function takes a null-terminated
Georg Brandl8ec7f652007-08-15 14:28:01 +000039character string as argument and returns an integer. We want this function to
40be callable from Python as follows::
41
42 >>> import spam
43 >>> status = spam.system("ls -l")
44
45Begin by creating a file :file:`spammodule.c`. (Historically, if a module is
46called ``spam``, the C file containing its implementation is called
47:file:`spammodule.c`; if the module name is very long, like ``spammify``, the
48module name can be just :file:`spammify.c`.)
49
50The first line of our file can be::
51
52 #include <Python.h>
53
54which pulls in the Python API (you can add a comment describing the purpose of
55the module and a copyright notice if you like).
56
Georg Brandl16a57f62009-04-27 15:29:09 +000057.. note::
Georg Brandl8ec7f652007-08-15 14:28:01 +000058
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
63All 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
65since they are used extensively by the Python interpreter, ``"Python.h"``
66includes 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 Tosi98ed08f2012-01-14 16:42:02 +010068your system, it declares the functions :c:func:`malloc`, :c:func:`free` and
69:c:func:`realloc` directly.
Georg Brandl8ec7f652007-08-15 14:28:01 +000070
71The next thing we add to our module file is the C function that will be called
72when the Python expression ``spam.system(string)`` is evaluated (we'll see
73shortly 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
87There is a straightforward translation from the argument list in Python (for
88example, the single expression ``"ls -l"``) to the arguments passed to the C
89function. The C function always has two arguments, conventionally named *self*
90and *args*.
91
Georg Brandl7788dba2014-10-06 18:01:02 +020092For module functions, the *self* argument is *NULL* or a pointer selected while
93initializing the module (see :c:func:`Py_InitModule4`). For a method, it would
94point to the object instance.
Georg Brandl8ec7f652007-08-15 14:28:01 +000095
96The *args* argument will be a pointer to a Python tuple object containing the
97arguments. Each item of the tuple corresponds to an argument in the call's
98argument list. The arguments are Python objects --- in order to do anything
99with them in our C function we have to convert them to C values. The function
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100100:c:func:`PyArg_ParseTuple` in the Python API checks the argument types and
Georg Brandl8ec7f652007-08-15 14:28:01 +0000101converts them to C values. It uses a template string to determine the required
102types of the arguments as well as the types of the C variables into which to
103store the converted values. More about this later.
104
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100105:c:func:`PyArg_ParseTuple` returns true (nonzero) if all arguments have the right
Georg Brandl8ec7f652007-08-15 14:28:01 +0000106type and its components have been stored in the variables whose addresses are
107passed. It returns false (zero) if an invalid argument list was passed. In the
108latter case it also raises an appropriate exception so the calling function can
109return *NULL* immediately (as we saw in the example).
110
111
112.. _extending-errors:
113
114Intermezzo: Errors and Exceptions
115=================================
116
117An important convention throughout the Python interpreter is the following: when
118a function fails, it should set an exception condition and return an error value
119(usually a *NULL* pointer). Exceptions are stored in a static global variable
120inside the interpreter; if this variable is *NULL* no exception has occurred. A
121second global variable stores the "associated value" of the exception (the
122second argument to :keyword:`raise`). A third variable contains the stack
123traceback in case the error originated in Python code. These three variables
124are the C equivalents of the Python variables ``sys.exc_type``,
125``sys.exc_value`` and ``sys.exc_traceback`` (see the section on module
126:mod:`sys` in the Python Library Reference). It is important to know about them
127to understand how errors are passed around.
128
129The Python API defines a number of functions to set various types of exceptions.
130
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100131The most common one is :c:func:`PyErr_SetString`. Its arguments are an exception
Georg Brandl8ec7f652007-08-15 14:28:01 +0000132object and a C string. The exception object is usually a predefined object like
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100133:c:data:`PyExc_ZeroDivisionError`. The C string indicates the cause of the error
Georg Brandl8ec7f652007-08-15 14:28:01 +0000134and is converted to a Python string object and stored as the "associated value"
135of the exception.
136
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100137Another useful function is :c:func:`PyErr_SetFromErrno`, which only takes an
Georg Brandl8ec7f652007-08-15 14:28:01 +0000138exception argument and constructs the associated value by inspection of the
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100139global variable :c:data:`errno`. The most general function is
140:c:func:`PyErr_SetObject`, which takes two object arguments, the exception and
141its associated value. You don't need to :c:func:`Py_INCREF` the objects passed
Georg Brandl8ec7f652007-08-15 14:28:01 +0000142to any of these functions.
143
144You can test non-destructively whether an exception has been set with
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100145:c:func:`PyErr_Occurred`. This returns the current exception object, or *NULL*
Georg Brandl8ec7f652007-08-15 14:28:01 +0000146if no exception has occurred. You normally don't need to call
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100147:c:func:`PyErr_Occurred` to see whether an error occurred in a function call,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000148since you should be able to tell from the return value.
149
150When a function *f* that calls another function *g* detects that the latter
151fails, *f* should itself return an error value (usually *NULL* or ``-1``). It
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100152should *not* call one of the :c:func:`PyErr_\*` functions --- one has already
Georg Brandl8ec7f652007-08-15 14:28:01 +0000153been called by *g*. *f*'s caller is then supposed to also return an error
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100154indication to *its* caller, again *without* calling :c:func:`PyErr_\*`, and so on
Georg Brandl8ec7f652007-08-15 14:28:01 +0000155--- the most detailed cause of the error was already reported by the function
156that first detected it. Once the error reaches the Python interpreter's main
157loop, this aborts the currently executing Python code and tries to find an
158exception handler specified by the Python programmer.
159
160(There are situations where a module can actually give a more detailed error
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100161message by calling another :c:func:`PyErr_\*` function, and in such cases it is
Georg Brandl8ec7f652007-08-15 14:28:01 +0000162fine to do so. As a general rule, however, this is not necessary, and can cause
163information about the cause of the error to be lost: most operations can fail
164for a variety of reasons.)
165
166To ignore an exception set by a function call that failed, the exception
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100167condition must be cleared explicitly by calling :c:func:`PyErr_Clear`. The only
168time C code should call :c:func:`PyErr_Clear` is if it doesn't want to pass the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000169error on to the interpreter but wants to handle it completely by itself
170(possibly by trying something else, or pretending nothing went wrong).
171
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100172Every failing :c:func:`malloc` call must be turned into an exception --- the
173direct caller of :c:func:`malloc` (or :c:func:`realloc`) must call
174:c:func:`PyErr_NoMemory` and return a failure indicator itself. All the
175object-creating functions (for example, :c:func:`PyInt_FromLong`) already do
176this, so this note is only relevant to those who call :c:func:`malloc` directly.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000177
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100178Also note that, with the important exception of :c:func:`PyArg_ParseTuple` and
Georg Brandl8ec7f652007-08-15 14:28:01 +0000179friends, functions that return an integer status usually return a positive value
180or zero for success and ``-1`` for failure, like Unix system calls.
181
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100182Finally, be careful to clean up garbage (by making :c:func:`Py_XDECREF` or
183:c:func:`Py_DECREF` calls for objects you have already created) when you return
Georg Brandl8ec7f652007-08-15 14:28:01 +0000184an error indicator!
185
186The choice of which exception to raise is entirely yours. There are predeclared
187C objects corresponding to all built-in Python exceptions, such as
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100188:c:data:`PyExc_ZeroDivisionError`, which you can use directly. Of course, you
189should choose exceptions wisely --- don't use :c:data:`PyExc_TypeError` to mean
190that a file couldn't be opened (that should probably be :c:data:`PyExc_IOError`).
191If something's wrong with the argument list, the :c:func:`PyArg_ParseTuple`
192function usually raises :c:data:`PyExc_TypeError`. If you have an argument whose
Georg Brandl8ec7f652007-08-15 14:28:01 +0000193value must be in a particular range or must satisfy other conditions,
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100194:c:data:`PyExc_ValueError` is appropriate.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000195
196You can also define a new exception that is unique to your module. For this, you
197usually declare a static object variable at the beginning of your file::
198
199 static PyObject *SpamError;
200
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100201and initialize it in your module's initialization function (:c:func:`initspam`)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000202with an exception object (leaving out the error checking for now)::
203
204 PyMODINIT_FUNC
205 initspam(void)
206 {
207 PyObject *m;
208
209 m = Py_InitModule("spam", SpamMethods);
210 if (m == NULL)
211 return;
212
213 SpamError = PyErr_NewException("spam.error", NULL, NULL);
214 Py_INCREF(SpamError);
215 PyModule_AddObject(m, "error", SpamError);
216 }
217
218Note that the Python name for the exception object is :exc:`spam.error`. The
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100219:c:func:`PyErr_NewException` function may create a class with the base class
Georg Brandl8ec7f652007-08-15 14:28:01 +0000220being :exc:`Exception` (unless another class is passed in instead of *NULL*),
221described in :ref:`bltin-exceptions`.
222
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100223Note also that the :c:data:`SpamError` variable retains a reference to the newly
Georg Brandl8ec7f652007-08-15 14:28:01 +0000224created exception class; this is intentional! Since the exception could be
225removed from the module by external code, an owned reference to the class is
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100226needed to ensure that it will not be discarded, causing :c:data:`SpamError` to
Georg Brandl8ec7f652007-08-15 14:28:01 +0000227become a dangling pointer. Should it become a dangling pointer, C code which
228raises the exception could cause a core dump or other unintended side effects.
229
Georg Brandl7d4bfb32010-08-02 21:44:25 +0000230We discuss the use of ``PyMODINIT_FUNC`` as a function return type later in this
Georg Brandl8ec7f652007-08-15 14:28:01 +0000231sample.
232
Georg Brandl7d4bfb32010-08-02 21:44:25 +0000233The :exc:`spam.error` exception can be raised in your extension module using a
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100234call to :c:func:`PyErr_SetString` as shown below::
Georg Brandl7d4bfb32010-08-02 21:44:25 +0000235
236 static PyObject *
237 spam_system(PyObject *self, PyObject *args)
238 {
239 const char *command;
240 int sts;
241
242 if (!PyArg_ParseTuple(args, "s", &command))
243 return NULL;
244 sts = system(command);
245 if (sts < 0) {
246 PyErr_SetString(SpamError, "System command failed");
247 return NULL;
248 }
249 return PyLong_FromLong(sts);
250 }
251
Georg Brandl8ec7f652007-08-15 14:28:01 +0000252
253.. _backtoexample:
254
255Back to the Example
256===================
257
258Going back to our example function, you should now be able to understand this
259statement::
260
261 if (!PyArg_ParseTuple(args, "s", &command))
262 return NULL;
263
264It returns *NULL* (the error indicator for functions returning object pointers)
265if an error is detected in the argument list, relying on the exception set by
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100266:c:func:`PyArg_ParseTuple`. Otherwise the string value of the argument has been
267copied to the local variable :c:data:`command`. This is a pointer assignment and
Georg Brandl8ec7f652007-08-15 14:28:01 +0000268you are not supposed to modify the string to which it points (so in Standard C,
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100269the variable :c:data:`command` should properly be declared as ``const char
Georg Brandl8ec7f652007-08-15 14:28:01 +0000270*command``).
271
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100272The next statement is a call to the Unix function :c:func:`system`, passing it
273the string we just got from :c:func:`PyArg_ParseTuple`::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000274
275 sts = system(command);
276
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100277Our :func:`spam.system` function must return the value of :c:data:`sts` as a
278Python object. This is done using the function :c:func:`Py_BuildValue`, which is
279something like the inverse of :c:func:`PyArg_ParseTuple`: it takes a format
Georg Brandl8ec7f652007-08-15 14:28:01 +0000280string and an arbitrary number of C values, and returns a new Python object.
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100281More info on :c:func:`Py_BuildValue` is given later. ::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000282
283 return Py_BuildValue("i", sts);
284
285In this case, it will return an integer object. (Yes, even integers are objects
286on the heap in Python!)
287
288If you have a C function that returns no useful argument (a function returning
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100289:c:type:`void`), the corresponding Python function must return ``None``. You
290need this idiom to do so (which is implemented by the :c:macro:`Py_RETURN_NONE`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000291macro)::
292
293 Py_INCREF(Py_None);
294 return Py_None;
295
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100296:c:data:`Py_None` is the C name for the special Python object ``None``. It is a
Georg Brandl8ec7f652007-08-15 14:28:01 +0000297genuine Python object rather than a *NULL* pointer, which means "error" in most
298contexts, as we have seen.
299
300
301.. _methodtable:
302
303The Module's Method Table and Initialization Function
304=====================================================
305
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100306I promised to show how :c:func:`spam_system` is called from Python programs.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000307First, we need to list its name and address in a "method table"::
308
309 static PyMethodDef SpamMethods[] = {
310 ...
311 {"system", spam_system, METH_VARARGS,
312 "Execute a shell command."},
313 ...
314 {NULL, NULL, 0, NULL} /* Sentinel */
315 };
316
317Note the third entry (``METH_VARARGS``). This is a flag telling the interpreter
318the calling convention to be used for the C function. It should normally always
319be ``METH_VARARGS`` or ``METH_VARARGS | METH_KEYWORDS``; a value of ``0`` means
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100320that an obsolete variant of :c:func:`PyArg_ParseTuple` is used.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000321
322When using only ``METH_VARARGS``, the function should expect the Python-level
323parameters to be passed in as a tuple acceptable for parsing via
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100324:c:func:`PyArg_ParseTuple`; more information on this function is provided below.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000325
326The :const:`METH_KEYWORDS` bit may be set in the third field if keyword
327arguments should be passed to the function. In this case, the C function should
328accept a third ``PyObject *`` parameter which will be a dictionary of keywords.
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100329Use :c:func:`PyArg_ParseTupleAndKeywords` to parse the arguments to such a
Georg Brandl8ec7f652007-08-15 14:28:01 +0000330function.
331
332The method table must be passed to the interpreter in the module's
333initialization function. The initialization function must be named
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100334:c:func:`initname`, where *name* is the name of the module, and should be the
Georg Brandlb19be572007-12-29 10:57:00 +0000335only non-\ ``static`` item defined in the module file::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000336
337 PyMODINIT_FUNC
338 initspam(void)
339 {
340 (void) Py_InitModule("spam", SpamMethods);
341 }
342
343Note that PyMODINIT_FUNC declares the function as ``void`` return type,
344declares any special linkage declarations required by the platform, and for C++
345declares the function as ``extern "C"``.
346
347When the Python program imports module :mod:`spam` for the first time,
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100348:c:func:`initspam` is called. (See below for comments about embedding Python.)
349It calls :c:func:`Py_InitModule`, which creates a "module object" (which is
Georg Brandl8ec7f652007-08-15 14:28:01 +0000350inserted in the dictionary ``sys.modules`` under the key ``"spam"``), and
351inserts built-in function objects into the newly created module based upon the
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100352table (an array of :c:type:`PyMethodDef` structures) that was passed as its
353second argument. :c:func:`Py_InitModule` returns a pointer to the module object
Georg Brandl8ec7f652007-08-15 14:28:01 +0000354that it creates (which is unused here). It may abort with a fatal error for
355certain errors, or return *NULL* if the module could not be initialized
356satisfactorily.
357
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100358When embedding Python, the :c:func:`initspam` function is not called
359automatically unless there's an entry in the :c:data:`_PyImport_Inittab` table.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000360The easiest way to handle this is to statically initialize your
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100361statically-linked modules by directly calling :c:func:`initspam` after the call
362to :c:func:`Py_Initialize`::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000363
364 int
365 main(int argc, char *argv[])
366 {
367 /* Pass argv[0] to the Python interpreter */
368 Py_SetProgramName(argv[0]);
369
370 /* Initialize the Python interpreter. Required. */
371 Py_Initialize();
372
373 /* Add a static module */
374 initspam();
375
Georg Brandle8c52e12013-10-06 13:14:10 +0200376 ...
377
Georg Brandl8ec7f652007-08-15 14:28:01 +0000378An example may be found in the file :file:`Demo/embed/demo.c` in the Python
379source distribution.
380
381.. note::
382
383 Removing entries from ``sys.modules`` or importing compiled modules into
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100384 multiple interpreters within a process (or following a :c:func:`fork` without an
385 intervening :c:func:`exec`) can create problems for some extension modules.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000386 Extension module authors should exercise caution when initializing internal data
387 structures. Note also that the :func:`reload` function can be used with
388 extension modules, and will call the module initialization function
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100389 (:c:func:`initspam` in the example), but will not load the module again if it was
Georg Brandl8ec7f652007-08-15 14:28:01 +0000390 loaded from a dynamically loadable object file (:file:`.so` on Unix,
391 :file:`.dll` on Windows).
392
393A more substantial example module is included in the Python source distribution
394as :file:`Modules/xxmodule.c`. This file may be used as a template or simply
Andrew M. Kuchlingf2055ae2010-02-22 21:04:02 +0000395read as an example.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000396
397
398.. _compilation:
399
400Compilation and Linkage
401=======================
402
403There are two more things to do before you can use your new extension: compiling
404and linking it with the Python system. If you use dynamic loading, the details
405may depend on the style of dynamic loading your system uses; see the chapters
406about building extension modules (chapter :ref:`building`) and additional
407information that pertains only to building on Windows (chapter
408:ref:`building-on-windows`) for more information about this.
409
410If you can't use dynamic loading, or if you want to make your module a permanent
411part of the Python interpreter, you will have to change the configuration setup
412and rebuild the interpreter. Luckily, this is very simple on Unix: just place
413your file (:file:`spammodule.c` for example) in the :file:`Modules/` directory
414of an unpacked source distribution, add a line to the file
415:file:`Modules/Setup.local` describing your file::
416
417 spam spammodule.o
418
419and rebuild the interpreter by running :program:`make` in the toplevel
420directory. You can also run :program:`make` in the :file:`Modules/`
421subdirectory, but then you must first rebuild :file:`Makefile` there by running
422':program:`make` Makefile'. (This is necessary each time you change the
423:file:`Setup` file.)
424
425If your module requires additional libraries to link with, these can be listed
426on the line in the configuration file as well, for instance::
427
428 spam spammodule.o -lX11
429
430
431.. _callingpython:
432
433Calling Python Functions from C
434===============================
435
436So far we have concentrated on making C functions callable from Python. The
437reverse is also useful: calling Python functions from C. This is especially the
438case for libraries that support so-called "callback" functions. If a C
439interface makes use of callbacks, the equivalent Python often needs to provide a
440callback mechanism to the Python programmer; the implementation will require
441calling the Python callback functions from a C callback. Other uses are also
442imaginable.
443
444Fortunately, the Python interpreter is easily called recursively, and there is a
445standard interface to call a Python function. (I won't dwell on how to call the
446Python parser with a particular string as input --- if you're interested, have a
447look at the implementation of the :option:`-c` command line option in
Georg Brandlecabc372007-09-06 14:49:56 +0000448:file:`Modules/main.c` from the Python source code.)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000449
450Calling a Python function is easy. First, the Python program must somehow pass
451you the Python function object. You should provide a function (or some other
452interface) to do this. When this function is called, save a pointer to the
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100453Python function object (be careful to :c:func:`Py_INCREF` it!) in a global
Georg Brandl8ec7f652007-08-15 14:28:01 +0000454variable --- or wherever you see fit. For example, the following function might
455be part of a module definition::
456
457 static PyObject *my_callback = NULL;
458
459 static PyObject *
460 my_set_callback(PyObject *dummy, PyObject *args)
461 {
462 PyObject *result = NULL;
463 PyObject *temp;
464
465 if (PyArg_ParseTuple(args, "O:set_callback", &temp)) {
466 if (!PyCallable_Check(temp)) {
467 PyErr_SetString(PyExc_TypeError, "parameter must be callable");
468 return NULL;
469 }
470 Py_XINCREF(temp); /* Add a reference to new callback */
471 Py_XDECREF(my_callback); /* Dispose of previous callback */
472 my_callback = temp; /* Remember new callback */
473 /* Boilerplate to return "None" */
474 Py_INCREF(Py_None);
475 result = Py_None;
476 }
477 return result;
478 }
479
480This function must be registered with the interpreter using the
481:const:`METH_VARARGS` flag; this is described in section :ref:`methodtable`. The
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100482:c:func:`PyArg_ParseTuple` function and its arguments are documented in section
Georg Brandl8ec7f652007-08-15 14:28:01 +0000483:ref:`parsetuple`.
484
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100485The macros :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF` increment/decrement the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000486reference count of an object and are safe in the presence of *NULL* pointers
487(but note that *temp* will not be *NULL* in this context). More info on them
488in section :ref:`refcounts`.
489
Georg Brandlc2784222009-03-31 16:50:25 +0000490.. index:: single: PyObject_CallObject()
Georg Brandl8ec7f652007-08-15 14:28:01 +0000491
492Later, when it is time to call the function, you call the C function
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100493:c:func:`PyObject_CallObject`. This function has two arguments, both pointers to
Georg Brandl8ec7f652007-08-15 14:28:01 +0000494arbitrary Python objects: the Python function, and the argument list. The
495argument list must always be a tuple object, whose length is the number of
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000496arguments. To call the Python function with no arguments, pass in NULL, or
Georg Brandl16f1df92007-12-01 22:24:47 +0000497an empty tuple; to call it with one argument, pass a singleton tuple.
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100498:c:func:`Py_BuildValue` returns a tuple when its format string consists of zero
Georg Brandl16f1df92007-12-01 22:24:47 +0000499or more format codes between parentheses. For example::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000500
501 int arg;
502 PyObject *arglist;
503 PyObject *result;
504 ...
505 arg = 123;
506 ...
507 /* Time to call the callback */
508 arglist = Py_BuildValue("(i)", arg);
Georg Brandlc2784222009-03-31 16:50:25 +0000509 result = PyObject_CallObject(my_callback, arglist);
Georg Brandl8ec7f652007-08-15 14:28:01 +0000510 Py_DECREF(arglist);
511
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100512:c:func:`PyObject_CallObject` returns a Python object pointer: this is the return
513value of the Python function. :c:func:`PyObject_CallObject` is
Georg Brandl8ec7f652007-08-15 14:28:01 +0000514"reference-count-neutral" with respect to its arguments. In the example a new
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100515tuple was created to serve as the argument list, which is :c:func:`Py_DECREF`\
Georg Brandlb2efdee2013-10-06 11:02:38 +0200516-ed immediately after the :c:func:`PyObject_CallObject` call.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000517
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100518The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand
Georg Brandl8ec7f652007-08-15 14:28:01 +0000519new object, or it is an existing object whose reference count has been
520incremented. So, unless you want to save it in a global variable, you should
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100521somehow :c:func:`Py_DECREF` the result, even (especially!) if you are not
Georg Brandl8ec7f652007-08-15 14:28:01 +0000522interested in its value.
523
524Before you do this, however, it is important to check that the return value
525isn't *NULL*. If it is, the Python function terminated by raising an exception.
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100526If the C code that called :c:func:`PyObject_CallObject` is called from Python, it
Georg Brandl8ec7f652007-08-15 14:28:01 +0000527should now return an error indication to its Python caller, so the interpreter
528can print a stack trace, or the calling Python code can handle the exception.
529If this is not possible or desirable, the exception should be cleared by calling
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100530:c:func:`PyErr_Clear`. For example::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000531
532 if (result == NULL)
533 return NULL; /* Pass error back */
534 ...use result...
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000535 Py_DECREF(result);
Georg Brandl8ec7f652007-08-15 14:28:01 +0000536
537Depending on the desired interface to the Python callback function, you may also
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100538have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases
Georg Brandl8ec7f652007-08-15 14:28:01 +0000539the argument list is also provided by the Python program, through the same
540interface that specified the callback function. It can then be saved and used
541in the same manner as the function object. In other cases, you may have to
542construct a new tuple to pass as the argument list. The simplest way to do this
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100543is to call :c:func:`Py_BuildValue`. For example, if you want to pass an integral
Georg Brandl8ec7f652007-08-15 14:28:01 +0000544event code, you might use the following code::
545
546 PyObject *arglist;
547 ...
548 arglist = Py_BuildValue("(l)", eventcode);
Georg Brandlc2784222009-03-31 16:50:25 +0000549 result = PyObject_CallObject(my_callback, arglist);
Georg Brandl8ec7f652007-08-15 14:28:01 +0000550 Py_DECREF(arglist);
551 if (result == NULL)
552 return NULL; /* Pass error back */
553 /* Here maybe use the result */
554 Py_DECREF(result);
555
556Note the placement of ``Py_DECREF(arglist)`` immediately after the call, before
Georg Brandl16f1df92007-12-01 22:24:47 +0000557the error check! Also note that strictly speaking this code is not complete:
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100558:c:func:`Py_BuildValue` may run out of memory, and this should be checked.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000559
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000560You may also call a function with keyword arguments by using
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100561:c:func:`PyObject_Call`, which supports arguments and keyword arguments. As in
562the above example, we use :c:func:`Py_BuildValue` to construct the dictionary. ::
Georg Brandl16f1df92007-12-01 22:24:47 +0000563
564 PyObject *dict;
565 ...
566 dict = Py_BuildValue("{s:i}", "name", val);
Georg Brandlc2784222009-03-31 16:50:25 +0000567 result = PyObject_Call(my_callback, NULL, dict);
Georg Brandl16f1df92007-12-01 22:24:47 +0000568 Py_DECREF(dict);
569 if (result == NULL)
570 return NULL; /* Pass error back */
571 /* Here maybe use the result */
572 Py_DECREF(result);
Georg Brandl8ec7f652007-08-15 14:28:01 +0000573
Georg Brandlc2784222009-03-31 16:50:25 +0000574
Georg Brandl8ec7f652007-08-15 14:28:01 +0000575.. _parsetuple:
576
577Extracting Parameters in Extension Functions
578============================================
579
580.. index:: single: PyArg_ParseTuple()
581
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100582The :c:func:`PyArg_ParseTuple` function is declared as follows::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000583
584 int PyArg_ParseTuple(PyObject *arg, char *format, ...);
585
586The *arg* argument must be a tuple object containing an argument list passed
587from Python to a C function. The *format* argument must be a format string,
588whose syntax is explained in :ref:`arg-parsing` in the Python/C API Reference
589Manual. The remaining arguments must be addresses of variables whose type is
590determined by the format string.
591
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100592Note that while :c:func:`PyArg_ParseTuple` checks that the Python arguments have
Georg Brandl8ec7f652007-08-15 14:28:01 +0000593the required types, it cannot check the validity of the addresses of C variables
594passed to the call: if you make mistakes there, your code will probably crash or
595at least overwrite random bits in memory. So be careful!
596
597Note that any Python object references which are provided to the caller are
598*borrowed* references; do not decrement their reference count!
599
600Some example calls::
601
602 int ok;
603 int i, j;
604 long k, l;
605 const char *s;
606 int size;
607
608 ok = PyArg_ParseTuple(args, ""); /* No arguments */
609 /* Python call: f() */
610
611::
612
613 ok = PyArg_ParseTuple(args, "s", &s); /* A string */
614 /* Possible Python call: f('whoops!') */
615
616::
617
618 ok = PyArg_ParseTuple(args, "lls", &k, &l, &s); /* Two longs and a string */
619 /* Possible Python call: f(1, 2, 'three') */
620
621::
622
623 ok = PyArg_ParseTuple(args, "(ii)s#", &i, &j, &s, &size);
624 /* A pair of ints and a string, whose size is also returned */
625 /* Possible Python call: f((1, 2), 'three') */
626
627::
628
629 {
630 const char *file;
631 const char *mode = "r";
632 int bufsize = 0;
633 ok = PyArg_ParseTuple(args, "s|si", &file, &mode, &bufsize);
634 /* A string, and optionally another string and an integer */
635 /* Possible Python calls:
636 f('spam')
637 f('spam', 'w')
638 f('spam', 'wb', 100000) */
639 }
640
641::
642
643 {
644 int left, top, right, bottom, h, v;
645 ok = PyArg_ParseTuple(args, "((ii)(ii))(ii)",
646 &left, &top, &right, &bottom, &h, &v);
647 /* A rectangle and a point */
648 /* Possible Python call:
649 f(((0, 0), (400, 300)), (10, 10)) */
650 }
651
652::
653
654 {
655 Py_complex c;
656 ok = PyArg_ParseTuple(args, "D:myfunction", &c);
657 /* a complex, also providing a function name for errors */
658 /* Possible Python call: myfunction(1+2j) */
659 }
660
661
662.. _parsetupleandkeywords:
663
664Keyword Parameters for Extension Functions
665==========================================
666
667.. index:: single: PyArg_ParseTupleAndKeywords()
668
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100669The :c:func:`PyArg_ParseTupleAndKeywords` function is declared as follows::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000670
671 int PyArg_ParseTupleAndKeywords(PyObject *arg, PyObject *kwdict,
672 char *format, char *kwlist[], ...);
673
674The *arg* and *format* parameters are identical to those of the
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100675:c:func:`PyArg_ParseTuple` function. The *kwdict* parameter is the dictionary of
Georg Brandl8ec7f652007-08-15 14:28:01 +0000676keywords received as the third parameter from the Python runtime. The *kwlist*
677parameter is a *NULL*-terminated list of strings which identify the parameters;
678the names are matched with the type information from *format* from left to
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100679right. On success, :c:func:`PyArg_ParseTupleAndKeywords` returns true, otherwise
Georg Brandl8ec7f652007-08-15 14:28:01 +0000680it returns false and raises an appropriate exception.
681
682.. note::
683
684 Nested tuples cannot be parsed when using keyword arguments! Keyword parameters
685 passed in which are not present in the *kwlist* will cause :exc:`TypeError` to
686 be raised.
687
688.. index:: single: Philbrick, Geoff
689
690Here is an example module which uses keywords, based on an example by Geoff
Georg Brandlb19be572007-12-29 10:57:00 +0000691Philbrick (philbrick@hks.com)::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000692
693 #include "Python.h"
694
695 static PyObject *
696 keywdarg_parrot(PyObject *self, PyObject *args, PyObject *keywds)
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000697 {
Georg Brandl8ec7f652007-08-15 14:28:01 +0000698 int voltage;
699 char *state = "a stiff";
700 char *action = "voom";
701 char *type = "Norwegian Blue";
702
703 static char *kwlist[] = {"voltage", "state", "action", "type", NULL};
704
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000705 if (!PyArg_ParseTupleAndKeywords(args, keywds, "i|sss", kwlist,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000706 &voltage, &state, &action, &type))
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000707 return NULL;
Georg Brandl8ec7f652007-08-15 14:28:01 +0000708
Georg Brandlc62ef8b2009-01-03 20:55:06 +0000709 printf("-- This parrot wouldn't %s if you put %i Volts through it.\n",
Georg Brandl8ec7f652007-08-15 14:28:01 +0000710 action, voltage);
711 printf("-- Lovely plumage, the %s -- It's %s!\n", type, state);
712
713 Py_INCREF(Py_None);
714
715 return Py_None;
716 }
717
718 static PyMethodDef keywdarg_methods[] = {
719 /* The cast of the function is necessary since PyCFunction values
720 * only take two PyObject* parameters, and keywdarg_parrot() takes
721 * three.
722 */
723 {"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS | METH_KEYWORDS,
724 "Print a lovely skit to standard output."},
725 {NULL, NULL, 0, NULL} /* sentinel */
726 };
727
728::
729
730 void
731 initkeywdarg(void)
732 {
733 /* Create the module and add the functions */
734 Py_InitModule("keywdarg", keywdarg_methods);
735 }
736
737
738.. _buildvalue:
739
740Building Arbitrary Values
741=========================
742
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100743This function is the counterpart to :c:func:`PyArg_ParseTuple`. It is declared
Georg Brandl8ec7f652007-08-15 14:28:01 +0000744as follows::
745
746 PyObject *Py_BuildValue(char *format, ...);
747
748It recognizes a set of format units similar to the ones recognized by
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100749:c:func:`PyArg_ParseTuple`, but the arguments (which are input to the function,
Georg Brandl8ec7f652007-08-15 14:28:01 +0000750not output) must not be pointers, just values. It returns a new Python object,
751suitable for returning from a C function called from Python.
752
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100753One difference with :c:func:`PyArg_ParseTuple`: while the latter requires its
Georg Brandl8ec7f652007-08-15 14:28:01 +0000754first argument to be a tuple (since Python argument lists are always represented
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100755as tuples internally), :c:func:`Py_BuildValue` does not always build a tuple. It
Georg Brandl8ec7f652007-08-15 14:28:01 +0000756builds a tuple only if its format string contains two or more format units. If
757the format string is empty, it returns ``None``; if it contains exactly one
758format unit, it returns whatever object is described by that format unit. To
759force it to return a tuple of size 0 or one, parenthesize the format string.
760
761Examples (to the left the call, to the right the resulting Python value)::
762
763 Py_BuildValue("") None
764 Py_BuildValue("i", 123) 123
765 Py_BuildValue("iii", 123, 456, 789) (123, 456, 789)
766 Py_BuildValue("s", "hello") 'hello'
767 Py_BuildValue("ss", "hello", "world") ('hello', 'world')
768 Py_BuildValue("s#", "hello", 4) 'hell'
769 Py_BuildValue("()") ()
770 Py_BuildValue("(i)", 123) (123,)
771 Py_BuildValue("(ii)", 123, 456) (123, 456)
772 Py_BuildValue("(i,i)", 123, 456) (123, 456)
773 Py_BuildValue("[i,i]", 123, 456) [123, 456]
774 Py_BuildValue("{s:i,s:i}",
775 "abc", 123, "def", 456) {'abc': 123, 'def': 456}
776 Py_BuildValue("((ii)(ii)) (ii)",
777 1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6))
778
779
780.. _refcounts:
781
782Reference Counts
783================
784
785In languages like C or C++, the programmer is responsible for dynamic allocation
786and deallocation of memory on the heap. In C, this is done using the functions
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100787:c:func:`malloc` and :c:func:`free`. In C++, the operators ``new`` and
Georg Brandlb19be572007-12-29 10:57:00 +0000788``delete`` are used with essentially the same meaning and we'll restrict
Georg Brandl8ec7f652007-08-15 14:28:01 +0000789the following discussion to the C case.
790
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100791Every block of memory allocated with :c:func:`malloc` should eventually be
792returned to the pool of available memory by exactly one call to :c:func:`free`.
793It is important to call :c:func:`free` at the right time. If a block's address
794is forgotten but :c:func:`free` is not called for it, the memory it occupies
Georg Brandl8ec7f652007-08-15 14:28:01 +0000795cannot be reused until the program terminates. This is called a :dfn:`memory
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100796leak`. On the other hand, if a program calls :c:func:`free` for a block and then
Georg Brandl8ec7f652007-08-15 14:28:01 +0000797continues to use the block, it creates a conflict with re-use of the block
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100798through another :c:func:`malloc` call. This is called :dfn:`using freed memory`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000799It has the same bad consequences as referencing uninitialized data --- core
800dumps, wrong results, mysterious crashes.
801
802Common causes of memory leaks are unusual paths through the code. For instance,
803a function may allocate a block of memory, do some calculation, and then free
804the block again. Now a change in the requirements for the function may add a
805test to the calculation that detects an error condition and can return
806prematurely from the function. It's easy to forget to free the allocated memory
807block when taking this premature exit, especially when it is added later to the
808code. Such leaks, once introduced, often go undetected for a long time: the
809error exit is taken only in a small fraction of all calls, and most modern
810machines have plenty of virtual memory, so the leak only becomes apparent in a
811long-running process that uses the leaking function frequently. Therefore, it's
812important to prevent leaks from happening by having a coding convention or
813strategy that minimizes this kind of errors.
814
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100815Since Python makes heavy use of :c:func:`malloc` and :c:func:`free`, it needs a
Georg Brandl8ec7f652007-08-15 14:28:01 +0000816strategy to avoid memory leaks as well as the use of freed memory. The chosen
817method is called :dfn:`reference counting`. The principle is simple: every
818object contains a counter, which is incremented when a reference to the object
819is stored somewhere, and which is decremented when a reference to it is deleted.
820When the counter reaches zero, the last reference to the object has been deleted
821and the object is freed.
822
823An alternative strategy is called :dfn:`automatic garbage collection`.
824(Sometimes, reference counting is also referred to as a garbage collection
825strategy, hence my use of "automatic" to distinguish the two.) The big
826advantage of automatic garbage collection is that the user doesn't need to call
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100827:c:func:`free` explicitly. (Another claimed advantage is an improvement in speed
Georg Brandl8ec7f652007-08-15 14:28:01 +0000828or memory usage --- this is no hard fact however.) The disadvantage is that for
829C, there is no truly portable automatic garbage collector, while reference
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100830counting can be implemented portably (as long as the functions :c:func:`malloc`
831and :c:func:`free` are available --- which the C Standard guarantees). Maybe some
Georg Brandl8ec7f652007-08-15 14:28:01 +0000832day a sufficiently portable automatic garbage collector will be available for C.
833Until then, we'll have to live with reference counts.
834
835While Python uses the traditional reference counting implementation, it also
836offers a cycle detector that works to detect reference cycles. This allows
837applications to not worry about creating direct or indirect circular references;
838these are the weakness of garbage collection implemented using only reference
839counting. Reference cycles consist of objects which contain (possibly indirect)
840references to themselves, so that each object in the cycle has a reference count
841which is non-zero. Typical reference counting implementations are not able to
842reclaim the memory belonging to any objects in a reference cycle, or referenced
843from the objects in the cycle, even though there are no further references to
844the cycle itself.
845
846The cycle detector is able to detect garbage cycles and can reclaim them so long
847as there are no finalizers implemented in Python (:meth:`__del__` methods).
848When there are such finalizers, the detector exposes the cycles through the
Serhiy Storchaka99a196f2013-10-09 13:25:21 +0300849:mod:`gc` module (specifically, the :attr:`~gc.garbage` variable in that module).
850The :mod:`gc` module also exposes a way to run the detector (the
851:func:`~gc.collect` function), as well as configuration
Georg Brandl8ec7f652007-08-15 14:28:01 +0000852interfaces and the ability to disable the detector at runtime. The cycle
853detector is considered an optional component; though it is included by default,
854it can be disabled at build time using the :option:`--without-cycle-gc` option
855to the :program:`configure` script on Unix platforms (including Mac OS X) or by
856removing the definition of ``WITH_CYCLE_GC`` in the :file:`pyconfig.h` header on
857other platforms. If the cycle detector is disabled in this way, the :mod:`gc`
858module will not be available.
859
860
861.. _refcountsinpython:
862
863Reference Counting in Python
864----------------------------
865
866There are two macros, ``Py_INCREF(x)`` and ``Py_DECREF(x)``, which handle the
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100867incrementing and decrementing of the reference count. :c:func:`Py_DECREF` also
Georg Brandl8ec7f652007-08-15 14:28:01 +0000868frees the object when the count reaches zero. For flexibility, it doesn't call
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100869:c:func:`free` directly --- rather, it makes a call through a function pointer in
Georg Brandl8ec7f652007-08-15 14:28:01 +0000870the object's :dfn:`type object`. For this purpose (and others), every object
871also contains a pointer to its type object.
872
873The big question now remains: when to use ``Py_INCREF(x)`` and ``Py_DECREF(x)``?
874Let's first introduce some terms. Nobody "owns" an object; however, you can
875:dfn:`own a reference` to an object. An object's reference count is now defined
876as the number of owned references to it. The owner of a reference is
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100877responsible for calling :c:func:`Py_DECREF` when the reference is no longer
Georg Brandl8ec7f652007-08-15 14:28:01 +0000878needed. Ownership of a reference can be transferred. There are three ways to
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100879dispose of an owned reference: pass it on, store it, or call :c:func:`Py_DECREF`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000880Forgetting to dispose of an owned reference creates a memory leak.
881
882It is also possible to :dfn:`borrow` [#]_ a reference to an object. The
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100883borrower of a reference should not call :c:func:`Py_DECREF`. The borrower must
Georg Brandl8ec7f652007-08-15 14:28:01 +0000884not hold on to the object longer than the owner from which it was borrowed.
885Using a borrowed reference after the owner has disposed of it risks using freed
886memory and should be avoided completely. [#]_
887
888The advantage of borrowing over owning a reference is that you don't need to
889take care of disposing of the reference on all possible paths through the code
890--- in other words, with a borrowed reference you don't run the risk of leaking
Georg Brandlcbc1ed52008-12-15 08:36:11 +0000891when a premature exit is taken. The disadvantage of borrowing over owning is
Georg Brandl8ec7f652007-08-15 14:28:01 +0000892that there are some subtle situations where in seemingly correct code a borrowed
893reference can be used after the owner from which it was borrowed has in fact
894disposed of it.
895
896A borrowed reference can be changed into an owned reference by calling
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100897:c:func:`Py_INCREF`. This does not affect the status of the owner from which the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000898reference was borrowed --- it creates a new owned reference, and gives full
899owner responsibilities (the new owner must dispose of the reference properly, as
900well as the previous owner).
901
902
903.. _ownershiprules:
904
905Ownership Rules
906---------------
907
908Whenever an object reference is passed into or out of a function, it is part of
909the function's interface specification whether ownership is transferred with the
910reference or not.
911
912Most functions that return a reference to an object pass on ownership with the
913reference. In particular, all functions whose function it is to create a new
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100914object, such as :c:func:`PyInt_FromLong` and :c:func:`Py_BuildValue`, pass
Georg Brandl8ec7f652007-08-15 14:28:01 +0000915ownership to the receiver. Even if the object is not actually new, you still
916receive ownership of a new reference to that object. For instance,
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100917:c:func:`PyInt_FromLong` maintains a cache of popular values and can return a
Georg Brandl8ec7f652007-08-15 14:28:01 +0000918reference to a cached item.
919
920Many functions that extract objects from other objects also transfer ownership
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100921with the reference, for instance :c:func:`PyObject_GetAttrString`. The picture
Georg Brandl8ec7f652007-08-15 14:28:01 +0000922is less clear, here, however, since a few common routines are exceptions:
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100923:c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:func:`PyDict_GetItem`, and
924:c:func:`PyDict_GetItemString` all return references that you borrow from the
Georg Brandl8ec7f652007-08-15 14:28:01 +0000925tuple, list or dictionary.
926
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100927The function :c:func:`PyImport_AddModule` also returns a borrowed reference, even
Georg Brandl8ec7f652007-08-15 14:28:01 +0000928though it may actually create the object it returns: this is possible because an
929owned reference to the object is stored in ``sys.modules``.
930
931When you pass an object reference into another function, in general, the
932function borrows the reference from you --- if it needs to store it, it will use
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100933:c:func:`Py_INCREF` to become an independent owner. There are exactly two
934important exceptions to this rule: :c:func:`PyTuple_SetItem` and
935:c:func:`PyList_SetItem`. These functions take over ownership of the item passed
936to them --- even if they fail! (Note that :c:func:`PyDict_SetItem` and friends
Georg Brandl8ec7f652007-08-15 14:28:01 +0000937don't take over ownership --- they are "normal.")
938
939When a C function is called from Python, it borrows references to its arguments
940from the caller. The caller owns a reference to the object, so the borrowed
941reference's lifetime is guaranteed until the function returns. Only when such a
942borrowed reference must be stored or passed on, it must be turned into an owned
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100943reference by calling :c:func:`Py_INCREF`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000944
945The object reference returned from a C function that is called from Python must
946be an owned reference --- ownership is transferred from the function to its
947caller.
948
949
950.. _thinice:
951
952Thin Ice
953--------
954
955There are a few situations where seemingly harmless use of a borrowed reference
956can lead to problems. These all have to do with implicit invocations of the
957interpreter, which can cause the owner of a reference to dispose of it.
958
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100959The first and most important case to know about is using :c:func:`Py_DECREF` on
Georg Brandl8ec7f652007-08-15 14:28:01 +0000960an unrelated object while borrowing a reference to a list item. For instance::
961
962 void
963 bug(PyObject *list)
964 {
965 PyObject *item = PyList_GetItem(list, 0);
966
967 PyList_SetItem(list, 1, PyInt_FromLong(0L));
968 PyObject_Print(item, stdout, 0); /* BUG! */
969 }
970
971This function first borrows a reference to ``list[0]``, then replaces
972``list[1]`` with the value ``0``, and finally prints the borrowed reference.
973Looks harmless, right? But it's not!
974
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100975Let's follow the control flow into :c:func:`PyList_SetItem`. The list owns
Georg Brandl8ec7f652007-08-15 14:28:01 +0000976references to all its items, so when item 1 is replaced, it has to dispose of
977the original item 1. Now let's suppose the original item 1 was an instance of a
978user-defined class, and let's further suppose that the class defined a
979:meth:`__del__` method. If this class instance has a reference count of 1,
980disposing of it will call its :meth:`__del__` method.
981
982Since it is written in Python, the :meth:`__del__` method can execute arbitrary
983Python code. Could it perhaps do something to invalidate the reference to
Sandro Tosi98ed08f2012-01-14 16:42:02 +0100984``item`` in :c:func:`bug`? You bet! Assuming that the list passed into
985:c:func:`bug` is accessible to the :meth:`__del__` method, it could execute a
Georg Brandl8ec7f652007-08-15 14:28:01 +0000986statement to the effect of ``del list[0]``, and assuming this was the last
987reference to that object, it would free the memory associated with it, thereby
988invalidating ``item``.
989
990The solution, once you know the source of the problem, is easy: temporarily
991increment the reference count. The correct version of the function reads::
992
993 void
994 no_bug(PyObject *list)
995 {
996 PyObject *item = PyList_GetItem(list, 0);
997
998 Py_INCREF(item);
999 PyList_SetItem(list, 1, PyInt_FromLong(0L));
1000 PyObject_Print(item, stdout, 0);
1001 Py_DECREF(item);
1002 }
1003
1004This is a true story. An older version of Python contained variants of this bug
1005and someone spent a considerable amount of time in a C debugger to figure out
1006why his :meth:`__del__` methods would fail...
1007
1008The second case of problems with a borrowed reference is a variant involving
1009threads. Normally, multiple threads in the Python interpreter can't get in each
1010other's way, because there is a global lock protecting Python's entire object
1011space. However, it is possible to temporarily release this lock using the macro
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001012:c:macro:`Py_BEGIN_ALLOW_THREADS`, and to re-acquire it using
1013:c:macro:`Py_END_ALLOW_THREADS`. This is common around blocking I/O calls, to
Georg Brandl8ec7f652007-08-15 14:28:01 +00001014let other threads use the processor while waiting for the I/O to complete.
1015Obviously, the following function has the same problem as the previous one::
1016
1017 void
1018 bug(PyObject *list)
1019 {
1020 PyObject *item = PyList_GetItem(list, 0);
1021 Py_BEGIN_ALLOW_THREADS
1022 ...some blocking I/O call...
1023 Py_END_ALLOW_THREADS
1024 PyObject_Print(item, stdout, 0); /* BUG! */
1025 }
1026
1027
1028.. _nullpointers:
1029
1030NULL Pointers
1031-------------
1032
1033In general, functions that take object references as arguments do not expect you
1034to pass them *NULL* pointers, and will dump core (or cause later core dumps) if
1035you do so. Functions that return object references generally return *NULL* only
1036to indicate that an exception occurred. The reason for not testing for *NULL*
1037arguments is that functions often pass the objects they receive on to other
1038function --- if each function were to test for *NULL*, there would be a lot of
1039redundant tests and the code would run more slowly.
1040
1041It is better to test for *NULL* only at the "source:" when a pointer that may be
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001042*NULL* is received, for example, from :c:func:`malloc` or from a function that
Georg Brandl8ec7f652007-08-15 14:28:01 +00001043may raise an exception.
1044
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001045The macros :c:func:`Py_INCREF` and :c:func:`Py_DECREF` do not check for *NULL*
1046pointers --- however, their variants :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF`
Georg Brandl8ec7f652007-08-15 14:28:01 +00001047do.
1048
1049The macros for checking for a particular object type (``Pytype_Check()``) don't
1050check for *NULL* pointers --- again, there is much code that calls several of
1051these in a row to test an object against various different expected types, and
1052this would generate redundant tests. There are no variants with *NULL*
1053checking.
1054
1055The C function calling mechanism guarantees that the argument list passed to C
1056functions (``args`` in the examples) is never *NULL* --- in fact it guarantees
1057that it is always a tuple. [#]_
1058
1059It is a severe error to ever let a *NULL* pointer "escape" to the Python user.
1060
Georg Brandlb19be572007-12-29 10:57:00 +00001061.. Frank Stajano:
1062 A pedagogically buggy example, along the lines of the previous listing, would
1063 be helpful here -- showing in more concrete terms what sort of actions could
1064 cause the problem. I can't very well imagine it from the description.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001065
1066
1067.. _cplusplus:
1068
1069Writing Extensions in C++
1070=========================
1071
1072It is possible to write extension modules in C++. Some restrictions apply. If
1073the main program (the Python interpreter) is compiled and linked by the C
1074compiler, global or static objects with constructors cannot be used. This is
1075not a problem if the main program is linked by the C++ compiler. Functions that
1076will be called by the Python interpreter (in particular, module initialization
1077functions) have to be declared using ``extern "C"``. It is unnecessary to
1078enclose the Python header files in ``extern "C" {...}`` --- they use this form
1079already if the symbol ``__cplusplus`` is defined (all recent C++ compilers
1080define this symbol).
1081
1082
Larry Hastings402b73f2010-03-25 00:54:54 +00001083.. _using-capsules:
Georg Brandl8ec7f652007-08-15 14:28:01 +00001084
1085Providing a C API for an Extension Module
1086=========================================
1087
1088.. sectionauthor:: Konrad Hinsen <hinsen@cnrs-orleans.fr>
1089
1090
1091Many extension modules just provide new functions and types to be used from
1092Python, but sometimes the code in an extension module can be useful for other
1093extension modules. For example, an extension module could implement a type
1094"collection" which works like lists without order. Just like the standard Python
1095list type has a C API which permits extension modules to create and manipulate
1096lists, this new collection type should have a set of C functions for direct
1097manipulation from other extension modules.
1098
1099At first sight this seems easy: just write the functions (without declaring them
Georg Brandlb19be572007-12-29 10:57:00 +00001100``static``, of course), provide an appropriate header file, and document
Georg Brandl8ec7f652007-08-15 14:28:01 +00001101the C API. And in fact this would work if all extension modules were always
1102linked statically with the Python interpreter. When modules are used as shared
1103libraries, however, the symbols defined in one module may not be visible to
1104another module. The details of visibility depend on the operating system; some
1105systems use one global namespace for the Python interpreter and all extension
1106modules (Windows, for example), whereas others require an explicit list of
1107imported symbols at module link time (AIX is one example), or offer a choice of
1108different strategies (most Unices). And even if symbols are globally visible,
1109the module whose functions one wishes to call might not have been loaded yet!
1110
1111Portability therefore requires not to make any assumptions about symbol
1112visibility. This means that all symbols in extension modules should be declared
Georg Brandlb19be572007-12-29 10:57:00 +00001113``static``, except for the module's initialization function, in order to
Georg Brandl8ec7f652007-08-15 14:28:01 +00001114avoid name clashes with other extension modules (as discussed in section
1115:ref:`methodtable`). And it means that symbols that *should* be accessible from
1116other extension modules must be exported in a different way.
1117
1118Python provides a special mechanism to pass C-level information (pointers) from
Larry Hastings402b73f2010-03-25 00:54:54 +00001119one extension module to another one: Capsules. A Capsule is a Python data type
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001120which stores a pointer (:c:type:`void \*`). Capsules can only be created and
Georg Brandl8ec7f652007-08-15 14:28:01 +00001121accessed via their C API, but they can be passed around like any other Python
1122object. In particular, they can be assigned to a name in an extension module's
1123namespace. Other extension modules can then import this module, retrieve the
Larry Hastings402b73f2010-03-25 00:54:54 +00001124value of this name, and then retrieve the pointer from the Capsule.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001125
Larry Hastings402b73f2010-03-25 00:54:54 +00001126There are many ways in which Capsules can be used to export the C API of an
1127extension module. Each function could get its own Capsule, or all C API pointers
1128could be stored in an array whose address is published in a Capsule. And the
Georg Brandl8ec7f652007-08-15 14:28:01 +00001129various tasks of storing and retrieving the pointers can be distributed in
1130different ways between the module providing the code and the client modules.
1131
Larry Hastings402b73f2010-03-25 00:54:54 +00001132Whichever method you choose, it's important to name your Capsules properly.
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001133The function :c:func:`PyCapsule_New` takes a name parameter
1134(:c:type:`const char \*`); you're permitted to pass in a *NULL* name, but
Larry Hastings402b73f2010-03-25 00:54:54 +00001135we strongly encourage you to specify a name. Properly named Capsules provide
1136a degree of runtime type-safety; there is no feasible way to tell one unnamed
1137Capsule from another.
1138
1139In particular, Capsules used to expose C APIs should be given a name following
1140this convention::
1141
1142 modulename.attributename
1143
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001144The convenience function :c:func:`PyCapsule_Import` makes it easy to
Larry Hastings402b73f2010-03-25 00:54:54 +00001145load a C API provided via a Capsule, but only if the Capsule's name
1146matches this convention. This behavior gives C API users a high degree
1147of certainty that the Capsule they load contains the correct C API.
1148
Georg Brandl8ec7f652007-08-15 14:28:01 +00001149The following example demonstrates an approach that puts most of the burden on
1150the writer of the exporting module, which is appropriate for commonly used
1151library modules. It stores all C API pointers (just one in the example!) in an
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001152array of :c:type:`void` pointers which becomes the value of a Capsule. The header
Georg Brandl8ec7f652007-08-15 14:28:01 +00001153file corresponding to the module provides a macro that takes care of importing
1154the module and retrieving its C API pointers; client modules only have to call
1155this macro before accessing the C API.
1156
1157The exporting module is a modification of the :mod:`spam` module from section
1158:ref:`extending-simpleexample`. The function :func:`spam.system` does not call
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001159the C library function :c:func:`system` directly, but a function
1160:c:func:`PySpam_System`, which would of course do something more complicated in
Georg Brandl8ec7f652007-08-15 14:28:01 +00001161reality (such as adding "spam" to every command). This function
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001162:c:func:`PySpam_System` is also exported to other extension modules.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001163
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001164The function :c:func:`PySpam_System` is a plain C function, declared
Georg Brandlb19be572007-12-29 10:57:00 +00001165``static`` like everything else::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001166
1167 static int
1168 PySpam_System(const char *command)
1169 {
1170 return system(command);
1171 }
1172
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001173The function :c:func:`spam_system` is modified in a trivial way::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001174
1175 static PyObject *
1176 spam_system(PyObject *self, PyObject *args)
1177 {
1178 const char *command;
1179 int sts;
1180
1181 if (!PyArg_ParseTuple(args, "s", &command))
1182 return NULL;
1183 sts = PySpam_System(command);
1184 return Py_BuildValue("i", sts);
1185 }
1186
1187In the beginning of the module, right after the line ::
1188
1189 #include "Python.h"
1190
1191two more lines must be added::
1192
1193 #define SPAM_MODULE
1194 #include "spammodule.h"
1195
1196The ``#define`` is used to tell the header file that it is being included in the
1197exporting module, not a client module. Finally, the module's initialization
1198function must take care of initializing the C API pointer array::
1199
1200 PyMODINIT_FUNC
1201 initspam(void)
1202 {
1203 PyObject *m;
1204 static void *PySpam_API[PySpam_API_pointers];
1205 PyObject *c_api_object;
1206
1207 m = Py_InitModule("spam", SpamMethods);
1208 if (m == NULL)
1209 return;
1210
1211 /* Initialize the C API pointer array */
1212 PySpam_API[PySpam_System_NUM] = (void *)PySpam_System;
1213
Larry Hastings402b73f2010-03-25 00:54:54 +00001214 /* Create a Capsule containing the API pointer array's address */
1215 c_api_object = PyCapsule_New((void *)PySpam_API, "spam._C_API", NULL);
Georg Brandl8ec7f652007-08-15 14:28:01 +00001216
1217 if (c_api_object != NULL)
1218 PyModule_AddObject(m, "_C_API", c_api_object);
1219 }
1220
Georg Brandlb19be572007-12-29 10:57:00 +00001221Note that ``PySpam_API`` is declared ``static``; otherwise the pointer
Georg Brandl8ec7f652007-08-15 14:28:01 +00001222array would disappear when :func:`initspam` terminates!
1223
1224The bulk of the work is in the header file :file:`spammodule.h`, which looks
1225like this::
1226
1227 #ifndef Py_SPAMMODULE_H
1228 #define Py_SPAMMODULE_H
1229 #ifdef __cplusplus
1230 extern "C" {
1231 #endif
1232
1233 /* Header file for spammodule */
1234
1235 /* C API functions */
1236 #define PySpam_System_NUM 0
1237 #define PySpam_System_RETURN int
1238 #define PySpam_System_PROTO (const char *command)
1239
1240 /* Total number of C API pointers */
1241 #define PySpam_API_pointers 1
1242
1243
1244 #ifdef SPAM_MODULE
1245 /* This section is used when compiling spammodule.c */
1246
1247 static PySpam_System_RETURN PySpam_System PySpam_System_PROTO;
1248
1249 #else
1250 /* This section is used in modules that use spammodule's API */
1251
1252 static void **PySpam_API;
1253
1254 #define PySpam_System \
1255 (*(PySpam_System_RETURN (*)PySpam_System_PROTO) PySpam_API[PySpam_System_NUM])
1256
Larry Hastings402b73f2010-03-25 00:54:54 +00001257 /* Return -1 on error, 0 on success.
1258 * PyCapsule_Import will set an exception if there's an error.
1259 */
Georg Brandl8ec7f652007-08-15 14:28:01 +00001260 static int
1261 import_spam(void)
1262 {
Larry Hastings402b73f2010-03-25 00:54:54 +00001263 PySpam_API = (void **)PyCapsule_Import("spam._C_API", 0);
1264 return (PySpam_API != NULL) ? 0 : -1;
Georg Brandl8ec7f652007-08-15 14:28:01 +00001265 }
1266
1267 #endif
1268
1269 #ifdef __cplusplus
1270 }
1271 #endif
1272
1273 #endif /* !defined(Py_SPAMMODULE_H) */
1274
1275All that a client module must do in order to have access to the function
Sandro Tosi98ed08f2012-01-14 16:42:02 +01001276:c:func:`PySpam_System` is to call the function (or rather macro)
1277:c:func:`import_spam` in its initialization function::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001278
1279 PyMODINIT_FUNC
1280 initclient(void)
1281 {
1282 PyObject *m;
1283
1284 m = Py_InitModule("client", ClientMethods);
1285 if (m == NULL)
1286 return;
1287 if (import_spam() < 0)
1288 return;
1289 /* additional initialization can happen here */
1290 }
1291
1292The main disadvantage of this approach is that the file :file:`spammodule.h` is
1293rather complicated. However, the basic structure is the same for each function
1294that is exported, so it has to be learned only once.
1295
Larry Hastings402b73f2010-03-25 00:54:54 +00001296Finally it should be mentioned that Capsules offer additional functionality,
Georg Brandl8ec7f652007-08-15 14:28:01 +00001297which is especially useful for memory allocation and deallocation of the pointer
Larry Hastings402b73f2010-03-25 00:54:54 +00001298stored in a Capsule. The details are described in the Python/C API Reference
1299Manual in the section :ref:`capsules` and in the implementation of Capsules (files
1300:file:`Include/pycapsule.h` and :file:`Objects/pycapsule.c` in the Python source
Georg Brandl8ec7f652007-08-15 14:28:01 +00001301code distribution).
1302
1303.. rubric:: Footnotes
1304
1305.. [#] An interface for this function already exists in the standard module :mod:`os`
1306 --- it was chosen as a simple and straightforward example.
1307
1308.. [#] The metaphor of "borrowing" a reference is not completely correct: the owner
1309 still has a copy of the reference.
1310
1311.. [#] Checking that the reference count is at least 1 **does not work** --- the
1312 reference count itself could be in freed memory and may thus be reused for
1313 another object!
1314
1315.. [#] These guarantees don't hold when you use the "old" style calling convention ---
1316 this is still found in much existing code.
1317