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