blob: e02f7837b69ed289ad1f1a40b66f9605708f00b2 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +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
Benjamin Peterson63b55582015-01-05 14:38:46 -060023.. note::
Brett Cannon7f98a6c2009-09-17 03:39:33 +000024
Benjamin Peterson63b55582015-01-05 14:38:46 -060025 The C extension interface is specific to CPython, and extension modules do
26 not work on other Python implementations. In many cases, it is possible to
27 avoid writing C extensions and preserve portability to other implementations.
28 For example, if your use case is calling C library functions or system calls,
29 you should consider using the :mod:`ctypes` module or the `cffi
Sanyam Khurana338cd832018-01-20 05:55:37 +053030 <https://cffi.readthedocs.io/>`_ library rather than writing
31 custom C code.
Benjamin Peterson63b55582015-01-05 14:38:46 -060032 These modules let you write Python code to interface with C code and are more
33 portable between implementations of Python than writing and compiling a C
34 extension module.
Brett Cannon7f98a6c2009-09-17 03:39:33 +000035
Georg Brandl116aa622007-08-15 14:28:22 +000036
37.. _extending-simpleexample:
38
39A Simple Example
40================
41
42Let's create an extension module called ``spam`` (the favorite food of Monty
43Python fans...) and let's say we want to create a Python interface to the C
Emanuele Gaifascdfe9102017-11-24 09:49:57 +010044library function :c:func:`system` [#]_. This function takes a null-terminated
Georg Brandl116aa622007-08-15 14:28:22 +000045character string as argument and returns an integer. We want this function to
46be callable from Python as follows::
47
48 >>> import spam
49 >>> status = spam.system("ls -l")
50
51Begin by creating a file :file:`spammodule.c`. (Historically, if a module is
52called ``spam``, the C file containing its implementation is called
53:file:`spammodule.c`; if the module name is very long, like ``spammify``, the
54module name can be just :file:`spammify.c`.)
55
56The first line of our file can be::
57
58 #include <Python.h>
59
60which pulls in the Python API (you can add a comment describing the purpose of
61the module and a copyright notice if you like).
62
Georg Brandle720c0a2009-04-27 16:20:50 +000063.. note::
Georg Brandl116aa622007-08-15 14:28:22 +000064
65 Since Python may define some pre-processor definitions which affect the standard
66 headers on some systems, you *must* include :file:`Python.h` before any standard
67 headers are included.
68
69All user-visible symbols defined by :file:`Python.h` have a prefix of ``Py`` or
70``PY``, except those defined in standard header files. For convenience, and
71since they are used extensively by the Python interpreter, ``"Python.h"``
72includes a few standard header files: ``<stdio.h>``, ``<string.h>``,
73``<errno.h>``, and ``<stdlib.h>``. If the latter header file does not exist on
Georg Brandl60203b42010-10-06 10:11:56 +000074your system, it declares the functions :c:func:`malloc`, :c:func:`free` and
75:c:func:`realloc` directly.
Georg Brandl116aa622007-08-15 14:28:22 +000076
77The next thing we add to our module file is the C function that will be called
78when the Python expression ``spam.system(string)`` is evaluated (we'll see
79shortly how it ends up being called)::
80
81 static PyObject *
82 spam_system(PyObject *self, PyObject *args)
83 {
84 const char *command;
85 int sts;
86
87 if (!PyArg_ParseTuple(args, "s", &command))
88 return NULL;
89 sts = system(command);
Georg Brandlc877a7c2010-11-26 11:55:48 +000090 return PyLong_FromLong(sts);
Georg Brandl116aa622007-08-15 14:28:22 +000091 }
92
93There is a straightforward translation from the argument list in Python (for
94example, the single expression ``"ls -l"``) to the arguments passed to the C
95function. The C function always has two arguments, conventionally named *self*
96and *args*.
97
Georg Brandl21dc5ba2009-07-11 10:43:08 +000098The *self* argument points to the module object for module-level functions;
99for a method it would point to the object instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000100
101The *args* argument will be a pointer to a Python tuple object containing the
102arguments. Each item of the tuple corresponds to an argument in the call's
103argument list. The arguments are Python objects --- in order to do anything
104with them in our C function we have to convert them to C values. The function
Georg Brandl60203b42010-10-06 10:11:56 +0000105:c:func:`PyArg_ParseTuple` in the Python API checks the argument types and
Georg Brandl116aa622007-08-15 14:28:22 +0000106converts them to C values. It uses a template string to determine the required
107types of the arguments as well as the types of the C variables into which to
108store the converted values. More about this later.
109
Georg Brandl60203b42010-10-06 10:11:56 +0000110:c:func:`PyArg_ParseTuple` returns true (nonzero) if all arguments have the right
Georg Brandl116aa622007-08-15 14:28:22 +0000111type and its components have been stored in the variables whose addresses are
112passed. It returns false (zero) if an invalid argument list was passed. In the
113latter case it also raises an appropriate exception so the calling function can
114return *NULL* immediately (as we saw in the example).
115
116
117.. _extending-errors:
118
119Intermezzo: Errors and Exceptions
120=================================
121
122An important convention throughout the Python interpreter is the following: when
123a function fails, it should set an exception condition and return an error value
124(usually a *NULL* pointer). Exceptions are stored in a static global variable
125inside the interpreter; if this variable is *NULL* no exception has occurred. A
126second global variable stores the "associated value" of the exception (the
127second argument to :keyword:`raise`). A third variable contains the stack
128traceback in case the error originated in Python code. These three variables
129are the C equivalents of the result in Python of :meth:`sys.exc_info` (see the
130section on module :mod:`sys` in the Python Library Reference). It is important
131to know about them to understand how errors are passed around.
132
133The Python API defines a number of functions to set various types of exceptions.
134
Georg Brandl60203b42010-10-06 10:11:56 +0000135The most common one is :c:func:`PyErr_SetString`. Its arguments are an exception
Georg Brandl116aa622007-08-15 14:28:22 +0000136object and a C string. The exception object is usually a predefined object like
Georg Brandl60203b42010-10-06 10:11:56 +0000137:c:data:`PyExc_ZeroDivisionError`. The C string indicates the cause of the error
Georg Brandl116aa622007-08-15 14:28:22 +0000138and is converted to a Python string object and stored as the "associated value"
139of the exception.
140
Georg Brandl60203b42010-10-06 10:11:56 +0000141Another useful function is :c:func:`PyErr_SetFromErrno`, which only takes an
Georg Brandl116aa622007-08-15 14:28:22 +0000142exception argument and constructs the associated value by inspection of the
Georg Brandl60203b42010-10-06 10:11:56 +0000143global variable :c:data:`errno`. The most general function is
144:c:func:`PyErr_SetObject`, which takes two object arguments, the exception and
145its associated value. You don't need to :c:func:`Py_INCREF` the objects passed
Georg Brandl116aa622007-08-15 14:28:22 +0000146to any of these functions.
147
148You can test non-destructively whether an exception has been set with
Georg Brandl60203b42010-10-06 10:11:56 +0000149:c:func:`PyErr_Occurred`. This returns the current exception object, or *NULL*
Georg Brandl116aa622007-08-15 14:28:22 +0000150if no exception has occurred. You normally don't need to call
Georg Brandl60203b42010-10-06 10:11:56 +0000151:c:func:`PyErr_Occurred` to see whether an error occurred in a function call,
Georg Brandl116aa622007-08-15 14:28:22 +0000152since you should be able to tell from the return value.
153
154When a function *f* that calls another function *g* detects that the latter
155fails, *f* should itself return an error value (usually *NULL* or ``-1``). It
Georg Brandl60203b42010-10-06 10:11:56 +0000156should *not* call one of the :c:func:`PyErr_\*` functions --- one has already
Georg Brandl116aa622007-08-15 14:28:22 +0000157been called by *g*. *f*'s caller is then supposed to also return an error
Georg Brandl60203b42010-10-06 10:11:56 +0000158indication to *its* caller, again *without* calling :c:func:`PyErr_\*`, and so on
Georg Brandl116aa622007-08-15 14:28:22 +0000159--- the most detailed cause of the error was already reported by the function
160that first detected it. Once the error reaches the Python interpreter's main
161loop, this aborts the currently executing Python code and tries to find an
162exception handler specified by the Python programmer.
163
164(There are situations where a module can actually give a more detailed error
Georg Brandl60203b42010-10-06 10:11:56 +0000165message by calling another :c:func:`PyErr_\*` function, and in such cases it is
Georg Brandl116aa622007-08-15 14:28:22 +0000166fine to do so. As a general rule, however, this is not necessary, and can cause
167information about the cause of the error to be lost: most operations can fail
168for a variety of reasons.)
169
170To ignore an exception set by a function call that failed, the exception
Georg Brandl682d7e02010-10-06 10:26:05 +0000171condition must be cleared explicitly by calling :c:func:`PyErr_Clear`. The only
Georg Brandl60203b42010-10-06 10:11:56 +0000172time C code should call :c:func:`PyErr_Clear` is if it doesn't want to pass the
Georg Brandl116aa622007-08-15 14:28:22 +0000173error on to the interpreter but wants to handle it completely by itself
174(possibly by trying something else, or pretending nothing went wrong).
175
Georg Brandl60203b42010-10-06 10:11:56 +0000176Every failing :c:func:`malloc` call must be turned into an exception --- the
177direct caller of :c:func:`malloc` (or :c:func:`realloc`) must call
178:c:func:`PyErr_NoMemory` and return a failure indicator itself. All the
179object-creating functions (for example, :c:func:`PyLong_FromLong`) already do
180this, so this note is only relevant to those who call :c:func:`malloc` directly.
Georg Brandl116aa622007-08-15 14:28:22 +0000181
Georg Brandl60203b42010-10-06 10:11:56 +0000182Also note that, with the important exception of :c:func:`PyArg_ParseTuple` and
Georg Brandl116aa622007-08-15 14:28:22 +0000183friends, functions that return an integer status usually return a positive value
184or zero for success and ``-1`` for failure, like Unix system calls.
185
Georg Brandl60203b42010-10-06 10:11:56 +0000186Finally, be careful to clean up garbage (by making :c:func:`Py_XDECREF` or
187:c:func:`Py_DECREF` calls for objects you have already created) when you return
Georg Brandl116aa622007-08-15 14:28:22 +0000188an error indicator!
189
190The choice of which exception to raise is entirely yours. There are predeclared
191C objects corresponding to all built-in Python exceptions, such as
Georg Brandl60203b42010-10-06 10:11:56 +0000192:c:data:`PyExc_ZeroDivisionError`, which you can use directly. Of course, you
193should choose exceptions wisely --- don't use :c:data:`PyExc_TypeError` to mean
194that a file couldn't be opened (that should probably be :c:data:`PyExc_IOError`).
195If something's wrong with the argument list, the :c:func:`PyArg_ParseTuple`
196function usually raises :c:data:`PyExc_TypeError`. If you have an argument whose
Georg Brandl116aa622007-08-15 14:28:22 +0000197value must be in a particular range or must satisfy other conditions,
Georg Brandl60203b42010-10-06 10:11:56 +0000198:c:data:`PyExc_ValueError` is appropriate.
Georg Brandl116aa622007-08-15 14:28:22 +0000199
200You can also define a new exception that is unique to your module. For this, you
201usually declare a static object variable at the beginning of your file::
202
203 static PyObject *SpamError;
204
Georg Brandl60203b42010-10-06 10:11:56 +0000205and initialize it in your module's initialization function (:c:func:`PyInit_spam`)
Georg Brandl116aa622007-08-15 14:28:22 +0000206with an exception object (leaving out the error checking for now)::
207
208 PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000209 PyInit_spam(void)
Georg Brandl116aa622007-08-15 14:28:22 +0000210 {
211 PyObject *m;
212
Martin v. Löwis1a214512008-06-11 05:26:20 +0000213 m = PyModule_Create(&spammodule);
Georg Brandl116aa622007-08-15 14:28:22 +0000214 if (m == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +0000215 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +0000216
217 SpamError = PyErr_NewException("spam.error", NULL, NULL);
218 Py_INCREF(SpamError);
219 PyModule_AddObject(m, "error", SpamError);
Martin v. Löwis1a214512008-06-11 05:26:20 +0000220 return m;
Georg Brandl116aa622007-08-15 14:28:22 +0000221 }
222
223Note that the Python name for the exception object is :exc:`spam.error`. The
Georg Brandl60203b42010-10-06 10:11:56 +0000224:c:func:`PyErr_NewException` function may create a class with the base class
Georg Brandl116aa622007-08-15 14:28:22 +0000225being :exc:`Exception` (unless another class is passed in instead of *NULL*),
226described in :ref:`bltin-exceptions`.
227
Georg Brandl60203b42010-10-06 10:11:56 +0000228Note also that the :c:data:`SpamError` variable retains a reference to the newly
Georg Brandl116aa622007-08-15 14:28:22 +0000229created exception class; this is intentional! Since the exception could be
230removed from the module by external code, an owned reference to the class is
Georg Brandl60203b42010-10-06 10:11:56 +0000231needed to ensure that it will not be discarded, causing :c:data:`SpamError` to
Georg Brandl116aa622007-08-15 14:28:22 +0000232become a dangling pointer. Should it become a dangling pointer, C code which
233raises the exception could cause a core dump or other unintended side effects.
234
Georg Brandl9c491c92010-08-02 20:21:21 +0000235We discuss the use of ``PyMODINIT_FUNC`` as a function return type later in this
Georg Brandl116aa622007-08-15 14:28:22 +0000236sample.
237
Georg Brandl9c491c92010-08-02 20:21:21 +0000238The :exc:`spam.error` exception can be raised in your extension module using a
Georg Brandl60203b42010-10-06 10:11:56 +0000239call to :c:func:`PyErr_SetString` as shown below::
Georg Brandl9c491c92010-08-02 20:21:21 +0000240
241 static PyObject *
242 spam_system(PyObject *self, PyObject *args)
243 {
244 const char *command;
245 int sts;
246
247 if (!PyArg_ParseTuple(args, "s", &command))
248 return NULL;
249 sts = system(command);
250 if (sts < 0) {
251 PyErr_SetString(SpamError, "System command failed");
252 return NULL;
253 }
254 return PyLong_FromLong(sts);
255 }
256
Georg Brandl116aa622007-08-15 14:28:22 +0000257
258.. _backtoexample:
259
260Back to the Example
261===================
262
263Going back to our example function, you should now be able to understand this
264statement::
265
266 if (!PyArg_ParseTuple(args, "s", &command))
267 return NULL;
268
269It returns *NULL* (the error indicator for functions returning object pointers)
270if an error is detected in the argument list, relying on the exception set by
Georg Brandl60203b42010-10-06 10:11:56 +0000271:c:func:`PyArg_ParseTuple`. Otherwise the string value of the argument has been
272copied to the local variable :c:data:`command`. This is a pointer assignment and
Georg Brandl116aa622007-08-15 14:28:22 +0000273you are not supposed to modify the string to which it points (so in Standard C,
Georg Brandl60203b42010-10-06 10:11:56 +0000274the variable :c:data:`command` should properly be declared as ``const char
Georg Brandl116aa622007-08-15 14:28:22 +0000275*command``).
276
Georg Brandl60203b42010-10-06 10:11:56 +0000277The next statement is a call to the Unix function :c:func:`system`, passing it
278the string we just got from :c:func:`PyArg_ParseTuple`::
Georg Brandl116aa622007-08-15 14:28:22 +0000279
280 sts = system(command);
281
Georg Brandl60203b42010-10-06 10:11:56 +0000282Our :func:`spam.system` function must return the value of :c:data:`sts` as a
Georg Brandlc877a7c2010-11-26 11:55:48 +0000283Python object. This is done using the function :c:func:`PyLong_FromLong`. ::
Georg Brandl116aa622007-08-15 14:28:22 +0000284
Georg Brandlc877a7c2010-11-26 11:55:48 +0000285 return PyLong_FromLong(sts);
Georg Brandl116aa622007-08-15 14:28:22 +0000286
287In this case, it will return an integer object. (Yes, even integers are objects
288on the heap in Python!)
289
290If you have a C function that returns no useful argument (a function returning
Georg Brandl60203b42010-10-06 10:11:56 +0000291:c:type:`void`), the corresponding Python function must return ``None``. You
292need this idiom to do so (which is implemented by the :c:macro:`Py_RETURN_NONE`
Georg Brandl116aa622007-08-15 14:28:22 +0000293macro)::
294
295 Py_INCREF(Py_None);
296 return Py_None;
297
Georg Brandl60203b42010-10-06 10:11:56 +0000298:c:data:`Py_None` is the C name for the special Python object ``None``. It is a
Georg Brandl116aa622007-08-15 14:28:22 +0000299genuine Python object rather than a *NULL* pointer, which means "error" in most
300contexts, as we have seen.
301
302
303.. _methodtable:
304
305The Module's Method Table and Initialization Function
306=====================================================
307
Georg Brandl60203b42010-10-06 10:11:56 +0000308I promised to show how :c:func:`spam_system` is called from Python programs.
Georg Brandl116aa622007-08-15 14:28:22 +0000309First, we need to list its name and address in a "method table"::
310
311 static PyMethodDef SpamMethods[] = {
312 ...
313 {"system", spam_system, METH_VARARGS,
314 "Execute a shell command."},
315 ...
316 {NULL, NULL, 0, NULL} /* Sentinel */
317 };
318
319Note the third entry (``METH_VARARGS``). This is a flag telling the interpreter
320the calling convention to be used for the C function. It should normally always
321be ``METH_VARARGS`` or ``METH_VARARGS | METH_KEYWORDS``; a value of ``0`` means
Georg Brandl60203b42010-10-06 10:11:56 +0000322that an obsolete variant of :c:func:`PyArg_ParseTuple` is used.
Georg Brandl116aa622007-08-15 14:28:22 +0000323
324When using only ``METH_VARARGS``, the function should expect the Python-level
325parameters to be passed in as a tuple acceptable for parsing via
Georg Brandl60203b42010-10-06 10:11:56 +0000326:c:func:`PyArg_ParseTuple`; more information on this function is provided below.
Georg Brandl116aa622007-08-15 14:28:22 +0000327
328The :const:`METH_KEYWORDS` bit may be set in the third field if keyword
329arguments should be passed to the function. In this case, the C function should
Eli Bendersky44fb6132012-02-11 10:27:31 +0200330accept a third ``PyObject *`` parameter which will be a dictionary of keywords.
Georg Brandl60203b42010-10-06 10:11:56 +0000331Use :c:func:`PyArg_ParseTupleAndKeywords` to parse the arguments to such a
Georg Brandl116aa622007-08-15 14:28:22 +0000332function.
333
Martin v. Löwis1a214512008-06-11 05:26:20 +0000334The method table must be referenced in the module definition structure::
335
Benjamin Peterson3851d122008-10-20 21:04:06 +0000336 static struct PyModuleDef spammodule = {
Sergey Fedoseevd9a2b992017-08-30 19:50:40 +0500337 PyModuleDef_HEAD_INIT,
338 "spam", /* name of module */
339 spam_doc, /* module documentation, may be NULL */
340 -1, /* size of per-interpreter state of the module,
341 or -1 if the module keeps state in global variables. */
342 SpamMethods
Martin v. Löwis1a214512008-06-11 05:26:20 +0000343 };
344
345This structure, in turn, must be passed to the interpreter in the module's
Georg Brandl116aa622007-08-15 14:28:22 +0000346initialization function. The initialization function must be named
Georg Brandl60203b42010-10-06 10:11:56 +0000347:c:func:`PyInit_name`, where *name* is the name of the module, and should be the
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000348only non-\ ``static`` item defined in the module file::
Georg Brandl116aa622007-08-15 14:28:22 +0000349
350 PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000351 PyInit_spam(void)
Georg Brandl116aa622007-08-15 14:28:22 +0000352 {
Martin v. Löwis1a214512008-06-11 05:26:20 +0000353 return PyModule_Create(&spammodule);
Georg Brandl116aa622007-08-15 14:28:22 +0000354 }
355
Benjamin Peterson71e30a02008-12-24 16:27:25 +0000356Note that PyMODINIT_FUNC declares the function as ``PyObject *`` return type,
357declares any special linkage declarations required by the platform, and for C++
Georg Brandl116aa622007-08-15 14:28:22 +0000358declares the function as ``extern "C"``.
359
360When the Python program imports module :mod:`spam` for the first time,
Georg Brandl60203b42010-10-06 10:11:56 +0000361:c:func:`PyInit_spam` is called. (See below for comments about embedding Python.)
362It calls :c:func:`PyModule_Create`, which returns a module object, and
Georg Brandl116aa622007-08-15 14:28:22 +0000363inserts built-in function objects into the newly created module based upon the
Georg Brandl60203b42010-10-06 10:11:56 +0000364table (an array of :c:type:`PyMethodDef` structures) found in the module definition.
365:c:func:`PyModule_Create` returns a pointer to the module object
Martin v. Löwis1a214512008-06-11 05:26:20 +0000366that it creates. It may abort with a fatal error for
Georg Brandl116aa622007-08-15 14:28:22 +0000367certain errors, or return *NULL* if the module could not be initialized
Martin v. Löwis1a214512008-06-11 05:26:20 +0000368satisfactorily. The init function must return the module object to its caller,
369so that it then gets inserted into ``sys.modules``.
Georg Brandl116aa622007-08-15 14:28:22 +0000370
Georg Brandl60203b42010-10-06 10:11:56 +0000371When embedding Python, the :c:func:`PyInit_spam` function is not called
372automatically unless there's an entry in the :c:data:`PyImport_Inittab` table.
373To add the module to the initialization table, use :c:func:`PyImport_AppendInittab`,
Martin v. Löwis1a214512008-06-11 05:26:20 +0000374optionally followed by an import of the module::
Georg Brandl116aa622007-08-15 14:28:22 +0000375
376 int
377 main(int argc, char *argv[])
378 {
Victor Stinner25e014b2014-08-01 12:28:49 +0200379 wchar_t *program = Py_DecodeLocale(argv[0], NULL);
380 if (program == NULL) {
381 fprintf(stderr, "Fatal error: cannot decode argv[0]\n");
382 exit(1);
383 }
384
Georg Brandlc4a55fc2010-02-06 18:46:57 +0000385 /* Add a built-in module, before Py_Initialize */
Martin v. Löwis1a214512008-06-11 05:26:20 +0000386 PyImport_AppendInittab("spam", PyInit_spam);
387
Georg Brandl116aa622007-08-15 14:28:22 +0000388 /* Pass argv[0] to the Python interpreter */
Victor Stinner25e014b2014-08-01 12:28:49 +0200389 Py_SetProgramName(program);
Georg Brandl116aa622007-08-15 14:28:22 +0000390
391 /* Initialize the Python interpreter. Required. */
392 Py_Initialize();
393
Martin v. Löwis1a214512008-06-11 05:26:20 +0000394 /* Optionally import the module; alternatively,
395 import can be deferred until the embedded script
396 imports it. */
397 PyImport_ImportModule("spam");
Georg Brandl116aa622007-08-15 14:28:22 +0000398
Georg Brandl49c6fc92013-10-06 13:14:10 +0200399 ...
400
Victor Stinner25e014b2014-08-01 12:28:49 +0200401 PyMem_RawFree(program);
402 return 0;
403 }
404
Georg Brandl116aa622007-08-15 14:28:22 +0000405.. note::
406
407 Removing entries from ``sys.modules`` or importing compiled modules into
Georg Brandl60203b42010-10-06 10:11:56 +0000408 multiple interpreters within a process (or following a :c:func:`fork` without an
409 intervening :c:func:`exec`) can create problems for some extension modules.
Georg Brandl116aa622007-08-15 14:28:22 +0000410 Extension module authors should exercise caution when initializing internal data
411 structures.
412
413A more substantial example module is included in the Python source distribution
414as :file:`Modules/xxmodule.c`. This file may be used as a template or simply
Benjamin Peterson2614cda2010-03-21 22:36:19 +0000415read as an example.
Georg Brandl116aa622007-08-15 14:28:22 +0000416
Nick Coghlan2ab5b092015-07-03 19:49:15 +1000417.. note::
418
419 Unlike our ``spam`` example, ``xxmodule`` uses *multi-phase initialization*
420 (new in Python 3.5), where a PyModuleDef structure is returned from
421 ``PyInit_spam``, and creation of the module is left to the import machinery.
422 For details on multi-phase initialization, see :PEP:`489`.
423
Georg Brandl116aa622007-08-15 14:28:22 +0000424
425.. _compilation:
426
427Compilation and Linkage
428=======================
429
430There are two more things to do before you can use your new extension: compiling
431and linking it with the Python system. If you use dynamic loading, the details
432may depend on the style of dynamic loading your system uses; see the chapters
433about building extension modules (chapter :ref:`building`) and additional
434information that pertains only to building on Windows (chapter
435:ref:`building-on-windows`) for more information about this.
436
437If you can't use dynamic loading, or if you want to make your module a permanent
438part of the Python interpreter, you will have to change the configuration setup
439and rebuild the interpreter. Luckily, this is very simple on Unix: just place
440your file (:file:`spammodule.c` for example) in the :file:`Modules/` directory
441of an unpacked source distribution, add a line to the file
442:file:`Modules/Setup.local` describing your file::
443
444 spam spammodule.o
445
446and rebuild the interpreter by running :program:`make` in the toplevel
447directory. You can also run :program:`make` in the :file:`Modules/`
448subdirectory, but then you must first rebuild :file:`Makefile` there by running
449':program:`make` Makefile'. (This is necessary each time you change the
450:file:`Setup` file.)
451
452If your module requires additional libraries to link with, these can be listed
453on the line in the configuration file as well, for instance::
454
455 spam spammodule.o -lX11
456
457
458.. _callingpython:
459
460Calling Python Functions from C
461===============================
462
463So far we have concentrated on making C functions callable from Python. The
464reverse is also useful: calling Python functions from C. This is especially the
465case for libraries that support so-called "callback" functions. If a C
466interface makes use of callbacks, the equivalent Python often needs to provide a
467callback mechanism to the Python programmer; the implementation will require
468calling the Python callback functions from a C callback. Other uses are also
469imaginable.
470
471Fortunately, the Python interpreter is easily called recursively, and there is a
472standard interface to call a Python function. (I won't dwell on how to call the
473Python parser with a particular string as input --- if you're interested, have a
474look at the implementation of the :option:`-c` command line option in
Georg Brandl22291c52007-09-06 14:49:02 +0000475:file:`Modules/main.c` from the Python source code.)
Georg Brandl116aa622007-08-15 14:28:22 +0000476
477Calling a Python function is easy. First, the Python program must somehow pass
478you the Python function object. You should provide a function (or some other
479interface) to do this. When this function is called, save a pointer to the
Georg Brandl60203b42010-10-06 10:11:56 +0000480Python function object (be careful to :c:func:`Py_INCREF` it!) in a global
Georg Brandl116aa622007-08-15 14:28:22 +0000481variable --- or wherever you see fit. For example, the following function might
482be part of a module definition::
483
484 static PyObject *my_callback = NULL;
485
486 static PyObject *
487 my_set_callback(PyObject *dummy, PyObject *args)
488 {
489 PyObject *result = NULL;
490 PyObject *temp;
491
492 if (PyArg_ParseTuple(args, "O:set_callback", &temp)) {
493 if (!PyCallable_Check(temp)) {
494 PyErr_SetString(PyExc_TypeError, "parameter must be callable");
495 return NULL;
496 }
497 Py_XINCREF(temp); /* Add a reference to new callback */
498 Py_XDECREF(my_callback); /* Dispose of previous callback */
499 my_callback = temp; /* Remember new callback */
500 /* Boilerplate to return "None" */
501 Py_INCREF(Py_None);
502 result = Py_None;
503 }
504 return result;
505 }
506
507This function must be registered with the interpreter using the
508:const:`METH_VARARGS` flag; this is described in section :ref:`methodtable`. The
Georg Brandl60203b42010-10-06 10:11:56 +0000509:c:func:`PyArg_ParseTuple` function and its arguments are documented in section
Georg Brandl116aa622007-08-15 14:28:22 +0000510:ref:`parsetuple`.
511
Georg Brandl60203b42010-10-06 10:11:56 +0000512The macros :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF` increment/decrement the
Georg Brandl116aa622007-08-15 14:28:22 +0000513reference count of an object and are safe in the presence of *NULL* pointers
514(but note that *temp* will not be *NULL* in this context). More info on them
515in section :ref:`refcounts`.
516
Benjamin Petersond23f8222009-04-05 19:13:16 +0000517.. index:: single: PyObject_CallObject()
Georg Brandl116aa622007-08-15 14:28:22 +0000518
519Later, when it is time to call the function, you call the C function
Georg Brandl60203b42010-10-06 10:11:56 +0000520:c:func:`PyObject_CallObject`. This function has two arguments, both pointers to
Georg Brandl116aa622007-08-15 14:28:22 +0000521arbitrary Python objects: the Python function, and the argument list. The
522argument list must always be a tuple object, whose length is the number of
Georg Brandl48310cd2009-01-03 21:18:54 +0000523arguments. To call the Python function with no arguments, pass in NULL, or
Christian Heimesd8654cf2007-12-02 15:22:16 +0000524an empty tuple; to call it with one argument, pass a singleton tuple.
Georg Brandl60203b42010-10-06 10:11:56 +0000525:c:func:`Py_BuildValue` returns a tuple when its format string consists of zero
Christian Heimesd8654cf2007-12-02 15:22:16 +0000526or more format codes between parentheses. For example::
Georg Brandl116aa622007-08-15 14:28:22 +0000527
528 int arg;
529 PyObject *arglist;
530 PyObject *result;
531 ...
532 arg = 123;
533 ...
534 /* Time to call the callback */
535 arglist = Py_BuildValue("(i)", arg);
Benjamin Petersond23f8222009-04-05 19:13:16 +0000536 result = PyObject_CallObject(my_callback, arglist);
Georg Brandl116aa622007-08-15 14:28:22 +0000537 Py_DECREF(arglist);
538
Georg Brandl60203b42010-10-06 10:11:56 +0000539:c:func:`PyObject_CallObject` returns a Python object pointer: this is the return
540value of the Python function. :c:func:`PyObject_CallObject` is
Georg Brandl116aa622007-08-15 14:28:22 +0000541"reference-count-neutral" with respect to its arguments. In the example a new
Georg Brandl60203b42010-10-06 10:11:56 +0000542tuple was created to serve as the argument list, which is :c:func:`Py_DECREF`\
Georg Brandl337672b2013-10-06 11:02:38 +0200543-ed immediately after the :c:func:`PyObject_CallObject` call.
Georg Brandl116aa622007-08-15 14:28:22 +0000544
Georg Brandl60203b42010-10-06 10:11:56 +0000545The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand
Georg Brandl116aa622007-08-15 14:28:22 +0000546new object, or it is an existing object whose reference count has been
547incremented. So, unless you want to save it in a global variable, you should
Georg Brandl60203b42010-10-06 10:11:56 +0000548somehow :c:func:`Py_DECREF` the result, even (especially!) if you are not
Georg Brandl116aa622007-08-15 14:28:22 +0000549interested in its value.
550
551Before you do this, however, it is important to check that the return value
552isn't *NULL*. If it is, the Python function terminated by raising an exception.
Georg Brandl60203b42010-10-06 10:11:56 +0000553If the C code that called :c:func:`PyObject_CallObject` is called from Python, it
Georg Brandl116aa622007-08-15 14:28:22 +0000554should now return an error indication to its Python caller, so the interpreter
555can print a stack trace, or the calling Python code can handle the exception.
556If this is not possible or desirable, the exception should be cleared by calling
Georg Brandl60203b42010-10-06 10:11:56 +0000557:c:func:`PyErr_Clear`. For example::
Georg Brandl116aa622007-08-15 14:28:22 +0000558
559 if (result == NULL)
560 return NULL; /* Pass error back */
561 ...use result...
Georg Brandl48310cd2009-01-03 21:18:54 +0000562 Py_DECREF(result);
Georg Brandl116aa622007-08-15 14:28:22 +0000563
564Depending on the desired interface to the Python callback function, you may also
Georg Brandl60203b42010-10-06 10:11:56 +0000565have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases
Georg Brandl116aa622007-08-15 14:28:22 +0000566the argument list is also provided by the Python program, through the same
567interface that specified the callback function. It can then be saved and used
568in the same manner as the function object. In other cases, you may have to
569construct a new tuple to pass as the argument list. The simplest way to do this
Georg Brandl60203b42010-10-06 10:11:56 +0000570is to call :c:func:`Py_BuildValue`. For example, if you want to pass an integral
Georg Brandl116aa622007-08-15 14:28:22 +0000571event code, you might use the following code::
572
573 PyObject *arglist;
574 ...
575 arglist = Py_BuildValue("(l)", eventcode);
Benjamin Petersond23f8222009-04-05 19:13:16 +0000576 result = PyObject_CallObject(my_callback, arglist);
Georg Brandl116aa622007-08-15 14:28:22 +0000577 Py_DECREF(arglist);
578 if (result == NULL)
579 return NULL; /* Pass error back */
580 /* Here maybe use the result */
581 Py_DECREF(result);
582
583Note the placement of ``Py_DECREF(arglist)`` immediately after the call, before
Christian Heimesd8654cf2007-12-02 15:22:16 +0000584the error check! Also note that strictly speaking this code is not complete:
Georg Brandl60203b42010-10-06 10:11:56 +0000585:c:func:`Py_BuildValue` may run out of memory, and this should be checked.
Georg Brandl116aa622007-08-15 14:28:22 +0000586
Georg Brandl48310cd2009-01-03 21:18:54 +0000587You may also call a function with keyword arguments by using
Georg Brandl60203b42010-10-06 10:11:56 +0000588:c:func:`PyObject_Call`, which supports arguments and keyword arguments. As in
589the above example, we use :c:func:`Py_BuildValue` to construct the dictionary. ::
Christian Heimesd8654cf2007-12-02 15:22:16 +0000590
591 PyObject *dict;
592 ...
593 dict = Py_BuildValue("{s:i}", "name", val);
Benjamin Petersond23f8222009-04-05 19:13:16 +0000594 result = PyObject_Call(my_callback, NULL, dict);
Christian Heimesd8654cf2007-12-02 15:22:16 +0000595 Py_DECREF(dict);
596 if (result == NULL)
597 return NULL; /* Pass error back */
598 /* Here maybe use the result */
599 Py_DECREF(result);
Georg Brandl116aa622007-08-15 14:28:22 +0000600
Benjamin Petersond23f8222009-04-05 19:13:16 +0000601
Georg Brandl116aa622007-08-15 14:28:22 +0000602.. _parsetuple:
603
604Extracting Parameters in Extension Functions
605============================================
606
607.. index:: single: PyArg_ParseTuple()
608
Georg Brandl60203b42010-10-06 10:11:56 +0000609The :c:func:`PyArg_ParseTuple` function is declared as follows::
Georg Brandl116aa622007-08-15 14:28:22 +0000610
Serhiy Storchaka03863d22015-06-21 17:11:21 +0300611 int PyArg_ParseTuple(PyObject *arg, const char *format, ...);
Georg Brandl116aa622007-08-15 14:28:22 +0000612
613The *arg* argument must be a tuple object containing an argument list passed
614from Python to a C function. The *format* argument must be a format string,
615whose syntax is explained in :ref:`arg-parsing` in the Python/C API Reference
616Manual. The remaining arguments must be addresses of variables whose type is
617determined by the format string.
618
Georg Brandl60203b42010-10-06 10:11:56 +0000619Note that while :c:func:`PyArg_ParseTuple` checks that the Python arguments have
Georg Brandl116aa622007-08-15 14:28:22 +0000620the required types, it cannot check the validity of the addresses of C variables
621passed to the call: if you make mistakes there, your code will probably crash or
622at least overwrite random bits in memory. So be careful!
623
624Note that any Python object references which are provided to the caller are
625*borrowed* references; do not decrement their reference count!
626
627Some example calls::
628
Gregory P. Smith02c3b5c2008-11-23 23:49:16 +0000629 #define PY_SSIZE_T_CLEAN /* Make "s#" use Py_ssize_t rather than int. */
630 #include <Python.h>
631
632::
633
Georg Brandl116aa622007-08-15 14:28:22 +0000634 int ok;
635 int i, j;
636 long k, l;
637 const char *s;
Gregory P. Smith02c3b5c2008-11-23 23:49:16 +0000638 Py_ssize_t size;
Georg Brandl116aa622007-08-15 14:28:22 +0000639
640 ok = PyArg_ParseTuple(args, ""); /* No arguments */
641 /* Python call: f() */
642
643::
644
645 ok = PyArg_ParseTuple(args, "s", &s); /* A string */
646 /* Possible Python call: f('whoops!') */
647
648::
649
650 ok = PyArg_ParseTuple(args, "lls", &k, &l, &s); /* Two longs and a string */
651 /* Possible Python call: f(1, 2, 'three') */
652
653::
654
655 ok = PyArg_ParseTuple(args, "(ii)s#", &i, &j, &s, &size);
656 /* A pair of ints and a string, whose size is also returned */
657 /* Possible Python call: f((1, 2), 'three') */
658
659::
660
661 {
662 const char *file;
663 const char *mode = "r";
664 int bufsize = 0;
665 ok = PyArg_ParseTuple(args, "s|si", &file, &mode, &bufsize);
666 /* A string, and optionally another string and an integer */
667 /* Possible Python calls:
668 f('spam')
669 f('spam', 'w')
670 f('spam', 'wb', 100000) */
671 }
672
673::
674
675 {
676 int left, top, right, bottom, h, v;
677 ok = PyArg_ParseTuple(args, "((ii)(ii))(ii)",
678 &left, &top, &right, &bottom, &h, &v);
679 /* A rectangle and a point */
680 /* Possible Python call:
681 f(((0, 0), (400, 300)), (10, 10)) */
682 }
683
684::
685
686 {
687 Py_complex c;
688 ok = PyArg_ParseTuple(args, "D:myfunction", &c);
689 /* a complex, also providing a function name for errors */
690 /* Possible Python call: myfunction(1+2j) */
691 }
692
693
694.. _parsetupleandkeywords:
695
696Keyword Parameters for Extension Functions
697==========================================
698
699.. index:: single: PyArg_ParseTupleAndKeywords()
700
Georg Brandl60203b42010-10-06 10:11:56 +0000701The :c:func:`PyArg_ParseTupleAndKeywords` function is declared as follows::
Georg Brandl116aa622007-08-15 14:28:22 +0000702
703 int PyArg_ParseTupleAndKeywords(PyObject *arg, PyObject *kwdict,
Serhiy Storchaka03863d22015-06-21 17:11:21 +0300704 const char *format, char *kwlist[], ...);
Georg Brandl116aa622007-08-15 14:28:22 +0000705
706The *arg* and *format* parameters are identical to those of the
Georg Brandl60203b42010-10-06 10:11:56 +0000707:c:func:`PyArg_ParseTuple` function. The *kwdict* parameter is the dictionary of
Georg Brandl116aa622007-08-15 14:28:22 +0000708keywords received as the third parameter from the Python runtime. The *kwlist*
709parameter is a *NULL*-terminated list of strings which identify the parameters;
710the names are matched with the type information from *format* from left to
Georg Brandl60203b42010-10-06 10:11:56 +0000711right. On success, :c:func:`PyArg_ParseTupleAndKeywords` returns true, otherwise
Georg Brandl116aa622007-08-15 14:28:22 +0000712it returns false and raises an appropriate exception.
713
714.. note::
715
716 Nested tuples cannot be parsed when using keyword arguments! Keyword parameters
717 passed in which are not present in the *kwlist* will cause :exc:`TypeError` to
718 be raised.
719
720.. index:: single: Philbrick, Geoff
721
722Here is an example module which uses keywords, based on an example by Geoff
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000723Philbrick (philbrick@hks.com)::
Georg Brandl116aa622007-08-15 14:28:22 +0000724
725 #include "Python.h"
726
727 static PyObject *
728 keywdarg_parrot(PyObject *self, PyObject *args, PyObject *keywds)
Georg Brandl48310cd2009-01-03 21:18:54 +0000729 {
Georg Brandl116aa622007-08-15 14:28:22 +0000730 int voltage;
Serhiy Storchaka84b8e922017-03-30 10:01:03 +0300731 const char *state = "a stiff";
732 const char *action = "voom";
733 const char *type = "Norwegian Blue";
Georg Brandl116aa622007-08-15 14:28:22 +0000734
735 static char *kwlist[] = {"voltage", "state", "action", "type", NULL};
736
Georg Brandl48310cd2009-01-03 21:18:54 +0000737 if (!PyArg_ParseTupleAndKeywords(args, keywds, "i|sss", kwlist,
Georg Brandl116aa622007-08-15 14:28:22 +0000738 &voltage, &state, &action, &type))
Georg Brandl48310cd2009-01-03 21:18:54 +0000739 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +0000740
Georg Brandl48310cd2009-01-03 21:18:54 +0000741 printf("-- This parrot wouldn't %s if you put %i Volts through it.\n",
Georg Brandl116aa622007-08-15 14:28:22 +0000742 action, voltage);
743 printf("-- Lovely plumage, the %s -- It's %s!\n", type, state);
744
Georg Brandla072de12013-10-06 20:46:08 +0200745 Py_RETURN_NONE;
Georg Brandl116aa622007-08-15 14:28:22 +0000746 }
747
748 static PyMethodDef keywdarg_methods[] = {
749 /* The cast of the function is necessary since PyCFunction values
750 * only take two PyObject* parameters, and keywdarg_parrot() takes
751 * three.
752 */
753 {"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS | METH_KEYWORDS,
754 "Print a lovely skit to standard output."},
755 {NULL, NULL, 0, NULL} /* sentinel */
756 };
757
Eli Bendersky8f773492012-08-15 14:49:49 +0300758 static struct PyModuleDef keywdargmodule = {
759 PyModuleDef_HEAD_INIT,
760 "keywdarg",
761 NULL,
762 -1,
763 keywdarg_methods
764 };
Georg Brandl116aa622007-08-15 14:28:22 +0000765
Eli Bendersky8f773492012-08-15 14:49:49 +0300766 PyMODINIT_FUNC
767 PyInit_keywdarg(void)
Georg Brandl116aa622007-08-15 14:28:22 +0000768 {
Eli Bendersky8f773492012-08-15 14:49:49 +0300769 return PyModule_Create(&keywdargmodule);
Georg Brandl116aa622007-08-15 14:28:22 +0000770 }
771
772
773.. _buildvalue:
774
775Building Arbitrary Values
776=========================
777
Georg Brandl60203b42010-10-06 10:11:56 +0000778This function is the counterpart to :c:func:`PyArg_ParseTuple`. It is declared
Georg Brandl116aa622007-08-15 14:28:22 +0000779as follows::
780
Serhiy Storchaka03863d22015-06-21 17:11:21 +0300781 PyObject *Py_BuildValue(const char *format, ...);
Georg Brandl116aa622007-08-15 14:28:22 +0000782
783It recognizes a set of format units similar to the ones recognized by
Georg Brandl60203b42010-10-06 10:11:56 +0000784:c:func:`PyArg_ParseTuple`, but the arguments (which are input to the function,
Georg Brandl116aa622007-08-15 14:28:22 +0000785not output) must not be pointers, just values. It returns a new Python object,
786suitable for returning from a C function called from Python.
787
Georg Brandl60203b42010-10-06 10:11:56 +0000788One difference with :c:func:`PyArg_ParseTuple`: while the latter requires its
Georg Brandl116aa622007-08-15 14:28:22 +0000789first argument to be a tuple (since Python argument lists are always represented
Georg Brandl60203b42010-10-06 10:11:56 +0000790as tuples internally), :c:func:`Py_BuildValue` does not always build a tuple. It
Georg Brandl116aa622007-08-15 14:28:22 +0000791builds a tuple only if its format string contains two or more format units. If
792the format string is empty, it returns ``None``; if it contains exactly one
793format unit, it returns whatever object is described by that format unit. To
794force it to return a tuple of size 0 or one, parenthesize the format string.
795
Martin Panter1050d2d2016-07-26 11:18:21 +0200796Examples (to the left the call, to the right the resulting Python value):
797
798.. code-block:: none
Georg Brandl116aa622007-08-15 14:28:22 +0000799
800 Py_BuildValue("") None
801 Py_BuildValue("i", 123) 123
802 Py_BuildValue("iii", 123, 456, 789) (123, 456, 789)
803 Py_BuildValue("s", "hello") 'hello'
804 Py_BuildValue("y", "hello") b'hello'
805 Py_BuildValue("ss", "hello", "world") ('hello', 'world')
806 Py_BuildValue("s#", "hello", 4) 'hell'
807 Py_BuildValue("y#", "hello", 4) b'hell'
808 Py_BuildValue("()") ()
809 Py_BuildValue("(i)", 123) (123,)
810 Py_BuildValue("(ii)", 123, 456) (123, 456)
811 Py_BuildValue("(i,i)", 123, 456) (123, 456)
812 Py_BuildValue("[i,i]", 123, 456) [123, 456]
813 Py_BuildValue("{s:i,s:i}",
814 "abc", 123, "def", 456) {'abc': 123, 'def': 456}
815 Py_BuildValue("((ii)(ii)) (ii)",
816 1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6))
817
818
819.. _refcounts:
820
821Reference Counts
822================
823
824In languages like C or C++, the programmer is responsible for dynamic allocation
825and deallocation of memory on the heap. In C, this is done using the functions
Georg Brandl60203b42010-10-06 10:11:56 +0000826:c:func:`malloc` and :c:func:`free`. In C++, the operators ``new`` and
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000827``delete`` are used with essentially the same meaning and we'll restrict
Georg Brandl116aa622007-08-15 14:28:22 +0000828the following discussion to the C case.
829
Georg Brandl60203b42010-10-06 10:11:56 +0000830Every block of memory allocated with :c:func:`malloc` should eventually be
831returned to the pool of available memory by exactly one call to :c:func:`free`.
832It is important to call :c:func:`free` at the right time. If a block's address
833is forgotten but :c:func:`free` is not called for it, the memory it occupies
Georg Brandl116aa622007-08-15 14:28:22 +0000834cannot be reused until the program terminates. This is called a :dfn:`memory
Georg Brandl60203b42010-10-06 10:11:56 +0000835leak`. On the other hand, if a program calls :c:func:`free` for a block and then
Georg Brandl116aa622007-08-15 14:28:22 +0000836continues to use the block, it creates a conflict with re-use of the block
Georg Brandl60203b42010-10-06 10:11:56 +0000837through another :c:func:`malloc` call. This is called :dfn:`using freed memory`.
Georg Brandl116aa622007-08-15 14:28:22 +0000838It has the same bad consequences as referencing uninitialized data --- core
839dumps, wrong results, mysterious crashes.
840
841Common causes of memory leaks are unusual paths through the code. For instance,
842a function may allocate a block of memory, do some calculation, and then free
843the block again. Now a change in the requirements for the function may add a
844test to the calculation that detects an error condition and can return
845prematurely from the function. It's easy to forget to free the allocated memory
846block when taking this premature exit, especially when it is added later to the
847code. Such leaks, once introduced, often go undetected for a long time: the
848error exit is taken only in a small fraction of all calls, and most modern
849machines have plenty of virtual memory, so the leak only becomes apparent in a
850long-running process that uses the leaking function frequently. Therefore, it's
851important to prevent leaks from happening by having a coding convention or
852strategy that minimizes this kind of errors.
853
Georg Brandl60203b42010-10-06 10:11:56 +0000854Since Python makes heavy use of :c:func:`malloc` and :c:func:`free`, it needs a
Georg Brandl116aa622007-08-15 14:28:22 +0000855strategy to avoid memory leaks as well as the use of freed memory. The chosen
856method is called :dfn:`reference counting`. The principle is simple: every
857object contains a counter, which is incremented when a reference to the object
858is stored somewhere, and which is decremented when a reference to it is deleted.
859When the counter reaches zero, the last reference to the object has been deleted
860and the object is freed.
861
862An alternative strategy is called :dfn:`automatic garbage collection`.
863(Sometimes, reference counting is also referred to as a garbage collection
864strategy, hence my use of "automatic" to distinguish the two.) The big
865advantage of automatic garbage collection is that the user doesn't need to call
Georg Brandl60203b42010-10-06 10:11:56 +0000866:c:func:`free` explicitly. (Another claimed advantage is an improvement in speed
Georg Brandl116aa622007-08-15 14:28:22 +0000867or memory usage --- this is no hard fact however.) The disadvantage is that for
868C, there is no truly portable automatic garbage collector, while reference
Georg Brandl60203b42010-10-06 10:11:56 +0000869counting can be implemented portably (as long as the functions :c:func:`malloc`
870and :c:func:`free` are available --- which the C Standard guarantees). Maybe some
Georg Brandl116aa622007-08-15 14:28:22 +0000871day a sufficiently portable automatic garbage collector will be available for C.
872Until then, we'll have to live with reference counts.
873
874While Python uses the traditional reference counting implementation, it also
875offers a cycle detector that works to detect reference cycles. This allows
876applications to not worry about creating direct or indirect circular references;
877these are the weakness of garbage collection implemented using only reference
878counting. Reference cycles consist of objects which contain (possibly indirect)
879references to themselves, so that each object in the cycle has a reference count
880which is non-zero. Typical reference counting implementations are not able to
881reclaim the memory belonging to any objects in a reference cycle, or referenced
882from the objects in the cycle, even though there are no further references to
883the cycle itself.
884
Georg Brandla4c8c472014-10-31 10:38:49 +0100885The cycle detector is able to detect garbage cycles and can reclaim them.
886The :mod:`gc` module exposes a way to run the detector (the
Serhiy Storchaka0b68a2d2013-10-09 13:26:17 +0300887:func:`~gc.collect` function), as well as configuration
Georg Brandl116aa622007-08-15 14:28:22 +0000888interfaces and the ability to disable the detector at runtime. The cycle
889detector is considered an optional component; though it is included by default,
Martin Panter5c679332016-10-30 04:20:17 +0000890it can be disabled at build time using the :option:`!--without-cycle-gc` option
Georg Brandlf6945182008-02-01 11:56:49 +0000891to the :program:`configure` script on Unix platforms (including Mac OS X). If
892the cycle detector is disabled in this way, the :mod:`gc` module will not be
893available.
Georg Brandl116aa622007-08-15 14:28:22 +0000894
895
896.. _refcountsinpython:
897
898Reference Counting in Python
899----------------------------
900
901There are two macros, ``Py_INCREF(x)`` and ``Py_DECREF(x)``, which handle the
Georg Brandl60203b42010-10-06 10:11:56 +0000902incrementing and decrementing of the reference count. :c:func:`Py_DECREF` also
Georg Brandl116aa622007-08-15 14:28:22 +0000903frees the object when the count reaches zero. For flexibility, it doesn't call
Georg Brandl60203b42010-10-06 10:11:56 +0000904:c:func:`free` directly --- rather, it makes a call through a function pointer in
Georg Brandl116aa622007-08-15 14:28:22 +0000905the object's :dfn:`type object`. For this purpose (and others), every object
906also contains a pointer to its type object.
907
908The big question now remains: when to use ``Py_INCREF(x)`` and ``Py_DECREF(x)``?
909Let's first introduce some terms. Nobody "owns" an object; however, you can
910:dfn:`own a reference` to an object. An object's reference count is now defined
911as the number of owned references to it. The owner of a reference is
Georg Brandl60203b42010-10-06 10:11:56 +0000912responsible for calling :c:func:`Py_DECREF` when the reference is no longer
Georg Brandl116aa622007-08-15 14:28:22 +0000913needed. Ownership of a reference can be transferred. There are three ways to
Georg Brandl60203b42010-10-06 10:11:56 +0000914dispose of an owned reference: pass it on, store it, or call :c:func:`Py_DECREF`.
Georg Brandl116aa622007-08-15 14:28:22 +0000915Forgetting to dispose of an owned reference creates a memory leak.
916
917It is also possible to :dfn:`borrow` [#]_ a reference to an object. The
Georg Brandl60203b42010-10-06 10:11:56 +0000918borrower of a reference should not call :c:func:`Py_DECREF`. The borrower must
Georg Brandl116aa622007-08-15 14:28:22 +0000919not hold on to the object longer than the owner from which it was borrowed.
920Using a borrowed reference after the owner has disposed of it risks using freed
Emanuele Gaifascdfe9102017-11-24 09:49:57 +0100921memory and should be avoided completely [#]_.
Georg Brandl116aa622007-08-15 14:28:22 +0000922
923The advantage of borrowing over owning a reference is that you don't need to
924take care of disposing of the reference on all possible paths through the code
925--- in other words, with a borrowed reference you don't run the risk of leaking
Benjamin Peterson6ebe78f2008-12-21 00:06:59 +0000926when a premature exit is taken. The disadvantage of borrowing over owning is
Georg Brandl116aa622007-08-15 14:28:22 +0000927that there are some subtle situations where in seemingly correct code a borrowed
928reference can be used after the owner from which it was borrowed has in fact
929disposed of it.
930
931A borrowed reference can be changed into an owned reference by calling
Georg Brandl60203b42010-10-06 10:11:56 +0000932:c:func:`Py_INCREF`. This does not affect the status of the owner from which the
Georg Brandl116aa622007-08-15 14:28:22 +0000933reference was borrowed --- it creates a new owned reference, and gives full
934owner responsibilities (the new owner must dispose of the reference properly, as
935well as the previous owner).
936
937
938.. _ownershiprules:
939
940Ownership Rules
941---------------
942
943Whenever an object reference is passed into or out of a function, it is part of
944the function's interface specification whether ownership is transferred with the
945reference or not.
946
947Most functions that return a reference to an object pass on ownership with the
948reference. In particular, all functions whose function it is to create a new
Georg Brandl60203b42010-10-06 10:11:56 +0000949object, such as :c:func:`PyLong_FromLong` and :c:func:`Py_BuildValue`, pass
Georg Brandl116aa622007-08-15 14:28:22 +0000950ownership to the receiver. Even if the object is not actually new, you still
951receive ownership of a new reference to that object. For instance,
Georg Brandl60203b42010-10-06 10:11:56 +0000952:c:func:`PyLong_FromLong` maintains a cache of popular values and can return a
Georg Brandl116aa622007-08-15 14:28:22 +0000953reference to a cached item.
954
955Many functions that extract objects from other objects also transfer ownership
Georg Brandl60203b42010-10-06 10:11:56 +0000956with the reference, for instance :c:func:`PyObject_GetAttrString`. The picture
Georg Brandl116aa622007-08-15 14:28:22 +0000957is less clear, here, however, since a few common routines are exceptions:
Georg Brandl60203b42010-10-06 10:11:56 +0000958:c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:func:`PyDict_GetItem`, and
959:c:func:`PyDict_GetItemString` all return references that you borrow from the
Georg Brandl116aa622007-08-15 14:28:22 +0000960tuple, list or dictionary.
961
Georg Brandl60203b42010-10-06 10:11:56 +0000962The function :c:func:`PyImport_AddModule` also returns a borrowed reference, even
Georg Brandl116aa622007-08-15 14:28:22 +0000963though it may actually create the object it returns: this is possible because an
964owned reference to the object is stored in ``sys.modules``.
965
966When you pass an object reference into another function, in general, the
967function borrows the reference from you --- if it needs to store it, it will use
Georg Brandl60203b42010-10-06 10:11:56 +0000968:c:func:`Py_INCREF` to become an independent owner. There are exactly two
969important exceptions to this rule: :c:func:`PyTuple_SetItem` and
970:c:func:`PyList_SetItem`. These functions take over ownership of the item passed
971to them --- even if they fail! (Note that :c:func:`PyDict_SetItem` and friends
Georg Brandl116aa622007-08-15 14:28:22 +0000972don't take over ownership --- they are "normal.")
973
974When a C function is called from Python, it borrows references to its arguments
975from the caller. The caller owns a reference to the object, so the borrowed
976reference's lifetime is guaranteed until the function returns. Only when such a
977borrowed reference must be stored or passed on, it must be turned into an owned
Georg Brandl60203b42010-10-06 10:11:56 +0000978reference by calling :c:func:`Py_INCREF`.
Georg Brandl116aa622007-08-15 14:28:22 +0000979
980The object reference returned from a C function that is called from Python must
981be an owned reference --- ownership is transferred from the function to its
982caller.
983
984
985.. _thinice:
986
987Thin Ice
988--------
989
990There are a few situations where seemingly harmless use of a borrowed reference
991can lead to problems. These all have to do with implicit invocations of the
992interpreter, which can cause the owner of a reference to dispose of it.
993
Georg Brandl60203b42010-10-06 10:11:56 +0000994The first and most important case to know about is using :c:func:`Py_DECREF` on
Georg Brandl116aa622007-08-15 14:28:22 +0000995an unrelated object while borrowing a reference to a list item. For instance::
996
997 void
998 bug(PyObject *list)
999 {
1000 PyObject *item = PyList_GetItem(list, 0);
1001
Georg Brandl9914dd32007-12-02 23:08:39 +00001002 PyList_SetItem(list, 1, PyLong_FromLong(0L));
Georg Brandl116aa622007-08-15 14:28:22 +00001003 PyObject_Print(item, stdout, 0); /* BUG! */
1004 }
1005
1006This function first borrows a reference to ``list[0]``, then replaces
1007``list[1]`` with the value ``0``, and finally prints the borrowed reference.
1008Looks harmless, right? But it's not!
1009
Georg Brandl60203b42010-10-06 10:11:56 +00001010Let's follow the control flow into :c:func:`PyList_SetItem`. The list owns
Georg Brandl116aa622007-08-15 14:28:22 +00001011references to all its items, so when item 1 is replaced, it has to dispose of
1012the original item 1. Now let's suppose the original item 1 was an instance of a
1013user-defined class, and let's further suppose that the class defined a
1014:meth:`__del__` method. If this class instance has a reference count of 1,
1015disposing of it will call its :meth:`__del__` method.
1016
1017Since it is written in Python, the :meth:`__del__` method can execute arbitrary
1018Python code. Could it perhaps do something to invalidate the reference to
Georg Brandl60203b42010-10-06 10:11:56 +00001019``item`` in :c:func:`bug`? You bet! Assuming that the list passed into
1020:c:func:`bug` is accessible to the :meth:`__del__` method, it could execute a
Georg Brandl116aa622007-08-15 14:28:22 +00001021statement to the effect of ``del list[0]``, and assuming this was the last
1022reference to that object, it would free the memory associated with it, thereby
1023invalidating ``item``.
1024
1025The solution, once you know the source of the problem, is easy: temporarily
1026increment the reference count. The correct version of the function reads::
1027
1028 void
1029 no_bug(PyObject *list)
1030 {
1031 PyObject *item = PyList_GetItem(list, 0);
1032
1033 Py_INCREF(item);
Georg Brandl9914dd32007-12-02 23:08:39 +00001034 PyList_SetItem(list, 1, PyLong_FromLong(0L));
Georg Brandl116aa622007-08-15 14:28:22 +00001035 PyObject_Print(item, stdout, 0);
1036 Py_DECREF(item);
1037 }
1038
1039This is a true story. An older version of Python contained variants of this bug
1040and someone spent a considerable amount of time in a C debugger to figure out
1041why his :meth:`__del__` methods would fail...
1042
1043The second case of problems with a borrowed reference is a variant involving
1044threads. Normally, multiple threads in the Python interpreter can't get in each
1045other's way, because there is a global lock protecting Python's entire object
1046space. However, it is possible to temporarily release this lock using the macro
Georg Brandl60203b42010-10-06 10:11:56 +00001047:c:macro:`Py_BEGIN_ALLOW_THREADS`, and to re-acquire it using
1048:c:macro:`Py_END_ALLOW_THREADS`. This is common around blocking I/O calls, to
Georg Brandl116aa622007-08-15 14:28:22 +00001049let other threads use the processor while waiting for the I/O to complete.
1050Obviously, the following function has the same problem as the previous one::
1051
1052 void
1053 bug(PyObject *list)
1054 {
1055 PyObject *item = PyList_GetItem(list, 0);
1056 Py_BEGIN_ALLOW_THREADS
1057 ...some blocking I/O call...
1058 Py_END_ALLOW_THREADS
1059 PyObject_Print(item, stdout, 0); /* BUG! */
1060 }
1061
1062
1063.. _nullpointers:
1064
1065NULL Pointers
1066-------------
1067
1068In general, functions that take object references as arguments do not expect you
1069to pass them *NULL* pointers, and will dump core (or cause later core dumps) if
1070you do so. Functions that return object references generally return *NULL* only
1071to indicate that an exception occurred. The reason for not testing for *NULL*
1072arguments is that functions often pass the objects they receive on to other
1073function --- if each function were to test for *NULL*, there would be a lot of
1074redundant tests and the code would run more slowly.
1075
1076It is better to test for *NULL* only at the "source:" when a pointer that may be
Georg Brandl60203b42010-10-06 10:11:56 +00001077*NULL* is received, for example, from :c:func:`malloc` or from a function that
Georg Brandl116aa622007-08-15 14:28:22 +00001078may raise an exception.
1079
Georg Brandl60203b42010-10-06 10:11:56 +00001080The macros :c:func:`Py_INCREF` and :c:func:`Py_DECREF` do not check for *NULL*
1081pointers --- however, their variants :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF`
Georg Brandl116aa622007-08-15 14:28:22 +00001082do.
1083
1084The macros for checking for a particular object type (``Pytype_Check()``) don't
1085check for *NULL* pointers --- again, there is much code that calls several of
1086these in a row to test an object against various different expected types, and
1087this would generate redundant tests. There are no variants with *NULL*
1088checking.
1089
1090The C function calling mechanism guarantees that the argument list passed to C
1091functions (``args`` in the examples) is never *NULL* --- in fact it guarantees
Emanuele Gaifascdfe9102017-11-24 09:49:57 +01001092that it is always a tuple [#]_.
Georg Brandl116aa622007-08-15 14:28:22 +00001093
1094It is a severe error to ever let a *NULL* pointer "escape" to the Python user.
1095
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001096.. Frank Stajano:
1097 A pedagogically buggy example, along the lines of the previous listing, would
1098 be helpful here -- showing in more concrete terms what sort of actions could
1099 cause the problem. I can't very well imagine it from the description.
Georg Brandl116aa622007-08-15 14:28:22 +00001100
1101
1102.. _cplusplus:
1103
1104Writing Extensions in C++
1105=========================
1106
1107It is possible to write extension modules in C++. Some restrictions apply. If
1108the main program (the Python interpreter) is compiled and linked by the C
1109compiler, global or static objects with constructors cannot be used. This is
1110not a problem if the main program is linked by the C++ compiler. Functions that
1111will be called by the Python interpreter (in particular, module initialization
1112functions) have to be declared using ``extern "C"``. It is unnecessary to
1113enclose the Python header files in ``extern "C" {...}`` --- they use this form
1114already if the symbol ``__cplusplus`` is defined (all recent C++ compilers
1115define this symbol).
1116
1117
Benjamin Petersonb173f782009-05-05 22:31:58 +00001118.. _using-capsules:
Georg Brandl116aa622007-08-15 14:28:22 +00001119
1120Providing a C API for an Extension Module
1121=========================================
1122
1123.. sectionauthor:: Konrad Hinsen <hinsen@cnrs-orleans.fr>
1124
1125
1126Many extension modules just provide new functions and types to be used from
1127Python, but sometimes the code in an extension module can be useful for other
1128extension modules. For example, an extension module could implement a type
1129"collection" which works like lists without order. Just like the standard Python
1130list type has a C API which permits extension modules to create and manipulate
1131lists, this new collection type should have a set of C functions for direct
1132manipulation from other extension modules.
1133
1134At first sight this seems easy: just write the functions (without declaring them
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001135``static``, of course), provide an appropriate header file, and document
Georg Brandl116aa622007-08-15 14:28:22 +00001136the C API. And in fact this would work if all extension modules were always
1137linked statically with the Python interpreter. When modules are used as shared
1138libraries, however, the symbols defined in one module may not be visible to
1139another module. The details of visibility depend on the operating system; some
1140systems use one global namespace for the Python interpreter and all extension
1141modules (Windows, for example), whereas others require an explicit list of
1142imported symbols at module link time (AIX is one example), or offer a choice of
1143different strategies (most Unices). And even if symbols are globally visible,
1144the module whose functions one wishes to call might not have been loaded yet!
1145
1146Portability therefore requires not to make any assumptions about symbol
1147visibility. This means that all symbols in extension modules should be declared
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001148``static``, except for the module's initialization function, in order to
Georg Brandl116aa622007-08-15 14:28:22 +00001149avoid name clashes with other extension modules (as discussed in section
1150:ref:`methodtable`). And it means that symbols that *should* be accessible from
1151other extension modules must be exported in a different way.
1152
1153Python provides a special mechanism to pass C-level information (pointers) from
Benjamin Petersonb173f782009-05-05 22:31:58 +00001154one extension module to another one: Capsules. A Capsule is a Python data type
Georg Brandl60203b42010-10-06 10:11:56 +00001155which stores a pointer (:c:type:`void \*`). Capsules can only be created and
Georg Brandl116aa622007-08-15 14:28:22 +00001156accessed via their C API, but they can be passed around like any other Python
1157object. In particular, they can be assigned to a name in an extension module's
1158namespace. Other extension modules can then import this module, retrieve the
Benjamin Petersonb173f782009-05-05 22:31:58 +00001159value of this name, and then retrieve the pointer from the Capsule.
Georg Brandl116aa622007-08-15 14:28:22 +00001160
Benjamin Petersonb173f782009-05-05 22:31:58 +00001161There are many ways in which Capsules can be used to export the C API of an
1162extension module. Each function could get its own Capsule, or all C API pointers
1163could be stored in an array whose address is published in a Capsule. And the
Georg Brandl116aa622007-08-15 14:28:22 +00001164various tasks of storing and retrieving the pointers can be distributed in
1165different ways between the module providing the code and the client modules.
1166
Benjamin Petersonb173f782009-05-05 22:31:58 +00001167Whichever method you choose, it's important to name your Capsules properly.
Georg Brandl60203b42010-10-06 10:11:56 +00001168The function :c:func:`PyCapsule_New` takes a name parameter
1169(:c:type:`const char \*`); you're permitted to pass in a *NULL* name, but
Benjamin Petersonb173f782009-05-05 22:31:58 +00001170we strongly encourage you to specify a name. Properly named Capsules provide
1171a degree of runtime type-safety; there is no feasible way to tell one unnamed
1172Capsule from another.
1173
1174In particular, Capsules used to expose C APIs should be given a name following
1175this convention::
1176
1177 modulename.attributename
1178
Georg Brandl60203b42010-10-06 10:11:56 +00001179The convenience function :c:func:`PyCapsule_Import` makes it easy to
Benjamin Petersonb173f782009-05-05 22:31:58 +00001180load a C API provided via a Capsule, but only if the Capsule's name
1181matches this convention. This behavior gives C API users a high degree
1182of certainty that the Capsule they load contains the correct C API.
1183
Georg Brandl116aa622007-08-15 14:28:22 +00001184The following example demonstrates an approach that puts most of the burden on
1185the writer of the exporting module, which is appropriate for commonly used
1186library modules. It stores all C API pointers (just one in the example!) in an
Georg Brandl60203b42010-10-06 10:11:56 +00001187array of :c:type:`void` pointers which becomes the value of a Capsule. The header
Georg Brandl116aa622007-08-15 14:28:22 +00001188file corresponding to the module provides a macro that takes care of importing
1189the module and retrieving its C API pointers; client modules only have to call
1190this macro before accessing the C API.
1191
1192The exporting module is a modification of the :mod:`spam` module from section
1193:ref:`extending-simpleexample`. The function :func:`spam.system` does not call
Georg Brandl60203b42010-10-06 10:11:56 +00001194the C library function :c:func:`system` directly, but a function
1195:c:func:`PySpam_System`, which would of course do something more complicated in
Georg Brandl116aa622007-08-15 14:28:22 +00001196reality (such as adding "spam" to every command). This function
Georg Brandl60203b42010-10-06 10:11:56 +00001197:c:func:`PySpam_System` is also exported to other extension modules.
Georg Brandl116aa622007-08-15 14:28:22 +00001198
Georg Brandl60203b42010-10-06 10:11:56 +00001199The function :c:func:`PySpam_System` is a plain C function, declared
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001200``static`` like everything else::
Georg Brandl116aa622007-08-15 14:28:22 +00001201
1202 static int
1203 PySpam_System(const char *command)
1204 {
1205 return system(command);
1206 }
1207
Georg Brandl60203b42010-10-06 10:11:56 +00001208The function :c:func:`spam_system` is modified in a trivial way::
Georg Brandl116aa622007-08-15 14:28:22 +00001209
1210 static PyObject *
1211 spam_system(PyObject *self, PyObject *args)
1212 {
1213 const char *command;
1214 int sts;
1215
1216 if (!PyArg_ParseTuple(args, "s", &command))
1217 return NULL;
1218 sts = PySpam_System(command);
Georg Brandlc877a7c2010-11-26 11:55:48 +00001219 return PyLong_FromLong(sts);
Georg Brandl116aa622007-08-15 14:28:22 +00001220 }
1221
1222In the beginning of the module, right after the line ::
1223
1224 #include "Python.h"
1225
1226two more lines must be added::
1227
1228 #define SPAM_MODULE
1229 #include "spammodule.h"
1230
1231The ``#define`` is used to tell the header file that it is being included in the
1232exporting module, not a client module. Finally, the module's initialization
1233function must take care of initializing the C API pointer array::
1234
1235 PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001236 PyInit_spam(void)
Georg Brandl116aa622007-08-15 14:28:22 +00001237 {
1238 PyObject *m;
1239 static void *PySpam_API[PySpam_API_pointers];
1240 PyObject *c_api_object;
1241
Martin v. Löwis1a214512008-06-11 05:26:20 +00001242 m = PyModule_Create(&spammodule);
Georg Brandl116aa622007-08-15 14:28:22 +00001243 if (m == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001244 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +00001245
1246 /* Initialize the C API pointer array */
1247 PySpam_API[PySpam_System_NUM] = (void *)PySpam_System;
1248
Benjamin Petersonb173f782009-05-05 22:31:58 +00001249 /* Create a Capsule containing the API pointer array's address */
1250 c_api_object = PyCapsule_New((void *)PySpam_API, "spam._C_API", NULL);
Georg Brandl116aa622007-08-15 14:28:22 +00001251
1252 if (c_api_object != NULL)
1253 PyModule_AddObject(m, "_C_API", c_api_object);
Martin v. Löwis1a214512008-06-11 05:26:20 +00001254 return m;
Georg Brandl116aa622007-08-15 14:28:22 +00001255 }
1256
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001257Note that ``PySpam_API`` is declared ``static``; otherwise the pointer
Martin v. Löwis1a214512008-06-11 05:26:20 +00001258array would disappear when :func:`PyInit_spam` terminates!
Georg Brandl116aa622007-08-15 14:28:22 +00001259
1260The bulk of the work is in the header file :file:`spammodule.h`, which looks
1261like this::
1262
1263 #ifndef Py_SPAMMODULE_H
1264 #define Py_SPAMMODULE_H
1265 #ifdef __cplusplus
1266 extern "C" {
1267 #endif
1268
1269 /* Header file for spammodule */
1270
1271 /* C API functions */
1272 #define PySpam_System_NUM 0
1273 #define PySpam_System_RETURN int
1274 #define PySpam_System_PROTO (const char *command)
1275
1276 /* Total number of C API pointers */
1277 #define PySpam_API_pointers 1
1278
1279
1280 #ifdef SPAM_MODULE
1281 /* This section is used when compiling spammodule.c */
1282
1283 static PySpam_System_RETURN PySpam_System PySpam_System_PROTO;
1284
1285 #else
1286 /* This section is used in modules that use spammodule's API */
1287
1288 static void **PySpam_API;
1289
1290 #define PySpam_System \
1291 (*(PySpam_System_RETURN (*)PySpam_System_PROTO) PySpam_API[PySpam_System_NUM])
1292
Benjamin Petersonb173f782009-05-05 22:31:58 +00001293 /* Return -1 on error, 0 on success.
1294 * PyCapsule_Import will set an exception if there's an error.
1295 */
Georg Brandl116aa622007-08-15 14:28:22 +00001296 static int
1297 import_spam(void)
1298 {
Benjamin Petersonb173f782009-05-05 22:31:58 +00001299 PySpam_API = (void **)PyCapsule_Import("spam._C_API", 0);
1300 return (PySpam_API != NULL) ? 0 : -1;
Georg Brandl116aa622007-08-15 14:28:22 +00001301 }
1302
1303 #endif
1304
1305 #ifdef __cplusplus
1306 }
1307 #endif
1308
1309 #endif /* !defined(Py_SPAMMODULE_H) */
1310
1311All that a client module must do in order to have access to the function
Georg Brandl60203b42010-10-06 10:11:56 +00001312:c:func:`PySpam_System` is to call the function (or rather macro)
1313:c:func:`import_spam` in its initialization function::
Georg Brandl116aa622007-08-15 14:28:22 +00001314
1315 PyMODINIT_FUNC
Benjamin Peterson7c435242009-03-24 01:40:39 +00001316 PyInit_client(void)
Georg Brandl116aa622007-08-15 14:28:22 +00001317 {
1318 PyObject *m;
1319
Georg Brandl21151762009-03-31 15:52:41 +00001320 m = PyModule_Create(&clientmodule);
Georg Brandl116aa622007-08-15 14:28:22 +00001321 if (m == NULL)
Georg Brandl21151762009-03-31 15:52:41 +00001322 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +00001323 if (import_spam() < 0)
Georg Brandl21151762009-03-31 15:52:41 +00001324 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +00001325 /* additional initialization can happen here */
Georg Brandl21151762009-03-31 15:52:41 +00001326 return m;
Georg Brandl116aa622007-08-15 14:28:22 +00001327 }
1328
1329The main disadvantage of this approach is that the file :file:`spammodule.h` is
1330rather complicated. However, the basic structure is the same for each function
1331that is exported, so it has to be learned only once.
1332
Benjamin Petersonb173f782009-05-05 22:31:58 +00001333Finally it should be mentioned that Capsules offer additional functionality,
Georg Brandl116aa622007-08-15 14:28:22 +00001334which is especially useful for memory allocation and deallocation of the pointer
Benjamin Petersonb173f782009-05-05 22:31:58 +00001335stored in a Capsule. The details are described in the Python/C API Reference
1336Manual in the section :ref:`capsules` and in the implementation of Capsules (files
1337:file:`Include/pycapsule.h` and :file:`Objects/pycapsule.c` in the Python source
Georg Brandl116aa622007-08-15 14:28:22 +00001338code distribution).
1339
1340.. rubric:: Footnotes
1341
1342.. [#] An interface for this function already exists in the standard module :mod:`os`
1343 --- it was chosen as a simple and straightforward example.
1344
1345.. [#] The metaphor of "borrowing" a reference is not completely correct: the owner
1346 still has a copy of the reference.
1347
1348.. [#] Checking that the reference count is at least 1 **does not work** --- the
1349 reference count itself could be in freed memory and may thus be reused for
1350 another object!
1351
1352.. [#] These guarantees don't hold when you use the "old" style calling convention ---
1353 this is still found in much existing code.