Fred Drake | 6659c30 | 1998-03-03 22:02:19 +0000 | [diff] [blame] | 1 | \documentclass{manual} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 3 | % XXX PM Modulator |
| 4 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 5 | \title{Extending and Embedding the Python Interpreter} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 6 | |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 7 | \input{boilerplate} |
Guido van Rossum | 83eb962 | 1993-11-23 16:28:45 +0000 | [diff] [blame] | 8 | |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 9 | % Tell \index to actually write the .idx file |
| 10 | \makeindex |
| 11 | |
| 12 | \begin{document} |
| 13 | |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 14 | \maketitle |
| 15 | |
Guido van Rossum | 16cd7f9 | 1994-10-06 10:29:26 +0000 | [diff] [blame] | 16 | \input{copyright} |
| 17 | |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 18 | \begin{abstract} |
| 19 | |
| 20 | \noindent |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 21 | Python is an interpreted, object-oriented programming language. This |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 22 | document describes how to write modules in \C{} or \Cpp{} to extend the |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 23 | Python interpreter with new modules. Those modules can define new |
| 24 | functions but also new object types and their methods. The document |
| 25 | also describes how to embed the Python interpreter in another |
| 26 | application, for use as an extension language. Finally, it shows how |
| 27 | to compile and link extension modules so that they can be loaded |
| 28 | dynamically (at run time) into the interpreter, if the underlying |
| 29 | operating system supports this feature. |
| 30 | |
| 31 | This document assumes basic knowledge about Python. For an informal |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 32 | introduction to the language, see the Python Tutorial. The \emph{Python |
| 33 | Reference Manual} gives a more formal definition of the language. The |
| 34 | \emph{Python Library Reference} documents the existing object types, |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 35 | functions and modules (both built-in and written in Python) that give |
| 36 | the language its wide application range. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 37 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 38 | For a detailed description of the whole Python/\C{} API, see the separate |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 39 | \emph{Python/\C{} API Reference Manual}. \strong{Note:} While that |
| 40 | manual is still in a state of flux, it is safe to say that it is much |
| 41 | more up to date than the manual you're reading currently (which has |
| 42 | been in need for an upgrade for some time now). |
Guido van Rossum | fdacc58 | 1997-10-07 14:40:16 +0000 | [diff] [blame] | 43 | |
| 44 | |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 45 | \end{abstract} |
| 46 | |
Fred Drake | 4d4f9e7 | 1998-01-13 22:25:02 +0000 | [diff] [blame] | 47 | \tableofcontents |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 48 | |
Guido van Rossum | db65a6c | 1993-11-05 17:11:16 +0000 | [diff] [blame] | 49 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 50 | \chapter{Extending Python with \C{} or \Cpp{} code} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 51 | |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 52 | |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 53 | %\section{Introduction} |
| 54 | \label{intro} |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 55 | |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 56 | It is quite easy to add new built-in modules to Python, if you know |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 57 | how to program in \C{}. Such \dfn{extension modules} can do two things |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 58 | that can't be done directly in Python: they can implement new built-in |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 59 | object types, and they can call \C{} library functions and system calls. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 60 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 61 | To support extensions, the Python API (Application Programmers |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 62 | Interface) defines a set of functions, macros and variables that |
| 63 | provide access to most aspects of the Python run-time system. The |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 64 | Python API is incorporated in a \C{} source file by including the header |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 65 | \code{"Python.h"}. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 66 | |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 67 | The compilation of an extension module depends on its intended use as |
| 68 | well as on your system setup; details are given in a later section. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 69 | |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 70 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 71 | \section{A Simple Example} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 72 | \label{simpleExample} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 73 | |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 74 | Let's create an extension module called \samp{spam} (the favorite food |
| 75 | of Monty Python fans...) and let's say we want to create a Python |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 76 | interface to the \C{} library function \cfunction{system()}.\footnote{An |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 77 | interface for this function already exists in the standard module |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 78 | \module{os} --- it was chosen as a simple and straightfoward example.} |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 79 | This function takes a null-terminated character string as argument and |
| 80 | returns an integer. We want this function to be callable from Python |
| 81 | as follows: |
| 82 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 83 | \begin{verbatim} |
| 84 | >>> import spam |
| 85 | >>> status = spam.system("ls -l") |
| 86 | \end{verbatim} |
| 87 | |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 88 | Begin by creating a file \file{spammodule.c}. (In general, if a |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 89 | module is called \samp{spam}, the \C{} file containing its implementation |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 90 | is called \file{spammodule.c}; if the module name is very long, like |
| 91 | \samp{spammify}, the module name can be just \file{spammify.c}.) |
| 92 | |
| 93 | The first line of our file can be: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 94 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 95 | \begin{verbatim} |
| 96 | #include "Python.h" |
| 97 | \end{verbatim} |
| 98 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 99 | which pulls in the Python API (you can add a comment describing the |
| 100 | purpose of the module and a copyright notice if you like). |
| 101 | |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 102 | All user-visible symbols defined by \code{"Python.h"} have a prefix of |
| 103 | \samp{Py} or \samp{PY}, except those defined in standard header files. |
| 104 | For convenience, and since they are used extensively by the Python |
| 105 | interpreter, \code{"Python.h"} includes a few standard header files: |
| 106 | \code{<stdio.h>}, \code{<string.h>}, \code{<errno.h>}, and |
| 107 | \code{<stdlib.h>}. If the latter header file does not exist on your |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 108 | system, it declares the functions \cfunction{malloc()}, |
| 109 | \cfunction{free()} and \cfunction{realloc()} directly. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 110 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 111 | The next thing we add to our module file is the \C{} function that will |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 112 | be called when the Python expression \samp{spam.system(\var{string})} |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 113 | is evaluated (we'll see shortly how it ends up being called): |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 114 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 115 | \begin{verbatim} |
| 116 | static PyObject * |
| 117 | spam_system(self, args) |
| 118 | PyObject *self; |
| 119 | PyObject *args; |
| 120 | { |
| 121 | char *command; |
| 122 | int sts; |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 123 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 124 | if (!PyArg_ParseTuple(args, "s", &command)) |
| 125 | return NULL; |
| 126 | sts = system(command); |
| 127 | return Py_BuildValue("i", sts); |
| 128 | } |
| 129 | \end{verbatim} |
| 130 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 131 | There is a straightforward translation from the argument list in |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 132 | Python (e.g.\ the single expression \code{"ls -l"}) to the arguments |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 133 | passed to the \C{} function. The \C{} function always has two arguments, |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 134 | conventionally named \var{self} and \var{args}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 135 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 136 | The \var{self} argument is only used when the \C{} function implements a |
Fred Drake | dc40904 | 1998-04-02 18:54:54 +0000 | [diff] [blame] | 137 | built-in method. This will be discussed later. In the example, |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 138 | \var{self} will always be a \NULL{} pointer, since we are defining |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 139 | a function, not a method. (This is done so that the interpreter |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 140 | doesn't have to understand two different types of \C{} functions.) |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 141 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 142 | The \var{args} argument will be a pointer to a Python tuple object |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 143 | containing the arguments. Each item of the tuple corresponds to an |
| 144 | argument in the call's argument list. The arguments are Python |
Fred Drake | 1aedbd8 | 1998-02-16 14:47:27 +0000 | [diff] [blame] | 145 | objects --- in order to do anything with them in our \C{} function we have |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 146 | to convert them to \C{} values. The function \cfunction{PyArg_ParseTuple()} |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 147 | in the Python API checks the argument types and converts them to \C{} |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 148 | values. It uses a template string to determine the required types of |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 149 | the arguments as well as the types of the \C{} variables into which to |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 150 | store the converted values. More about this later. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 151 | |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 152 | \cfunction{PyArg_ParseTuple()} returns true (nonzero) if all arguments have |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 153 | the right type and its components have been stored in the variables |
| 154 | whose addresses are passed. It returns false (zero) if an invalid |
| 155 | argument list was passed. In the latter case it also raises an |
| 156 | appropriate exception by so the calling function can return |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 157 | \NULL{} immediately (as we saw in the example). |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 158 | |
| 159 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 160 | \section{Intermezzo: Errors and Exceptions} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 161 | \label{errors} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 162 | |
| 163 | An important convention throughout the Python interpreter is the |
| 164 | following: when a function fails, it should set an exception condition |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 165 | and return an error value (usually a \NULL{} pointer). Exceptions |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 166 | are stored in a static global variable inside the interpreter; if this |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 167 | variable is \NULL{} no exception has occurred. A second global |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 168 | variable stores the ``associated value'' of the exception (the second |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 169 | argument to \keyword{raise}). A third variable contains the stack |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 170 | traceback in case the error originated in Python code. These three |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 171 | variables are the \C{} equivalents of the Python variables |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 172 | \code{sys.exc_type}, \code{sys.exc_value} and \code{sys.exc_traceback} |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 173 | (see the section on module \module{sys} in the \emph{Python Library |
| 174 | Reference}). It is important to know about them to understand how |
| 175 | errors are passed around. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 176 | |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 177 | The Python API defines a number of functions to set various types of |
| 178 | exceptions. |
| 179 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 180 | The most common one is \cfunction{PyErr_SetString()}. Its arguments |
| 181 | are an exception object and a \C{} string. The exception object is |
| 182 | usually a predefined object like \cdata{PyExc_ZeroDivisionError}. The |
| 183 | \C{} string indicates the cause of the error and is converted to a |
| 184 | Python string object and stored as the ``associated value'' of the |
| 185 | exception. |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 186 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 187 | Another useful function is \cfunction{PyErr_SetFromErrno()}, which only |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 188 | takes an exception argument and constructs the associated value by |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 189 | inspection of the (\UNIX{}) global variable \cdata{errno}. The most |
| 190 | general function is \cfunction{PyErr_SetObject()}, which takes two object |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 191 | arguments, the exception and its associated value. You don't need to |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 192 | \cfunction{Py_INCREF()} the objects passed to any of these functions. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 193 | |
| 194 | You can test non-destructively whether an exception has been set with |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 195 | \cfunction{PyErr_Occurred()}. This returns the current exception object, |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 196 | or \NULL{} if no exception has occurred. You normally don't need |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 197 | to call \cfunction{PyErr_Occurred()} to see whether an error occurred in a |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 198 | function call, since you should be able to tell from the return value. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 199 | |
Guido van Rossum | d16ddb6 | 1996-12-13 02:38:17 +0000 | [diff] [blame] | 200 | When a function \var{f} that calls another function \var{g} detects |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 201 | that the latter fails, \var{f} should itself return an error value |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 202 | (e.g. \NULL{} or \code{-1}). It should \emph{not} call one of the |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 203 | \cfunction{PyErr_*()} functions --- one has already been called by \var{g}. |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 204 | \var{f}'s caller is then supposed to also return an error indication |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 205 | to \emph{its} caller, again \emph{without} calling \cfunction{PyErr_*()}, |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 206 | and so on --- the most detailed cause of the error was already |
| 207 | reported by the function that first detected it. Once the error |
| 208 | reaches the Python interpreter's main loop, this aborts the currently |
| 209 | executing Python code and tries to find an exception handler specified |
| 210 | by the Python programmer. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 211 | |
| 212 | (There are situations where a module can actually give a more detailed |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 213 | error message by calling another \cfunction{PyErr_*()} function, and in |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 214 | such cases it is fine to do so. As a general rule, however, this is |
| 215 | not necessary, and can cause information about the cause of the error |
| 216 | to be lost: most operations can fail for a variety of reasons.) |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 217 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 218 | To ignore an exception set by a function call that failed, the exception |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 219 | condition must be cleared explicitly by calling \cfunction{PyErr_Clear()}. |
| 220 | The only time \C{} code should call \cfunction{PyErr_Clear()} is if it doesn't |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 221 | want to pass the error on to the interpreter but wants to handle it |
| 222 | completely by itself (e.g. by trying something else or pretending |
| 223 | nothing happened). |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 224 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 225 | Note that a failing \cfunction{malloc()} call must be turned into an |
| 226 | exception --- the direct caller of \cfunction{malloc()} (or |
| 227 | \cfunction{realloc()}) must call \cfunction{PyErr_NoMemory()} and |
| 228 | return a failure indicator itself. All the object-creating functions |
| 229 | (\cfunction{PyInt_FromLong()} etc.) already do this, so only if you |
| 230 | call \cfunction{malloc()} directly this note is of importance. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 231 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 232 | Also note that, with the important exception of |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 233 | \cfunction{PyArg_ParseTuple()} and friends, functions that return an |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 234 | integer status usually return a positive value or zero for success and |
| 235 | \code{-1} for failure, like \UNIX{} system calls. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 236 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 237 | Finally, be careful to clean up garbage (by making |
| 238 | \cfunction{Py_XDECREF()} or \cfunction{Py_DECREF()} calls for objects |
| 239 | you have already created) when you return an error indicator! |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 240 | |
| 241 | The choice of which exception to raise is entirely yours. There are |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 242 | predeclared \C{} objects corresponding to all built-in Python exceptions, |
Fred Drake | b85fbec | 1998-04-13 00:50:04 +0000 | [diff] [blame] | 243 | e.g. \cdata{PyExc_ZeroDivisionError} which you can use directly. Of |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 244 | course, you should choose exceptions wisely --- don't use |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 245 | \cdata{PyExc_TypeError} to mean that a file couldn't be opened (that |
| 246 | should probably be \cdata{PyExc_IOError}). If something's wrong with |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 247 | the argument list, the \cfunction{PyArg_ParseTuple()} function usually |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 248 | raises \cdata{PyExc_TypeError}. If you have an argument whose value |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 249 | which must be in a particular range or must satisfy other conditions, |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 250 | \cdata{PyExc_ValueError} is appropriate. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 251 | |
| 252 | You can also define a new exception that is unique to your module. |
| 253 | For this, you usually declare a static object variable at the |
| 254 | beginning of your file, e.g. |
| 255 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 256 | \begin{verbatim} |
| 257 | static PyObject *SpamError; |
| 258 | \end{verbatim} |
| 259 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 260 | and initialize it in your module's initialization function |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 261 | (\cfunction{initspam()}) with an exception object, e.g. (leaving out |
| 262 | the error checking for now): |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 263 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 264 | \begin{verbatim} |
| 265 | void |
| 266 | initspam() |
| 267 | { |
| 268 | PyObject *m, *d; |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 269 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 270 | m = Py_InitModule("spam", SpamMethods); |
| 271 | d = PyModule_GetDict(m); |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 272 | SpamError = PyErr_NewException("spam.error", NULL, NULL); |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 273 | PyDict_SetItemString(d, "error", SpamError); |
| 274 | } |
| 275 | \end{verbatim} |
| 276 | |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 277 | Note that the Python name for the exception object is |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 278 | \exception{spam.error}. The \cfunction{PyErr_NewException()} function |
| 279 | may create either a string or class, depending on whether the |
| 280 | \samp{-X} flag was passed to the interpreter. If \samp{-X} was used, |
| 281 | \cdata{SpamError} will be a string object, otherwise it will be a |
| 282 | class object with the base class being \exception{Exception}, |
| 283 | described in the \emph{Python Library Reference} under ``Built-in |
| 284 | Exceptions.'' |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 285 | |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 286 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 287 | \section{Back to the Example} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 288 | \label{backToExample} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 289 | |
| 290 | Going back to our example function, you should now be able to |
| 291 | understand this statement: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 292 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 293 | \begin{verbatim} |
| 294 | if (!PyArg_ParseTuple(args, "s", &command)) |
| 295 | return NULL; |
| 296 | \end{verbatim} |
| 297 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 298 | It returns \NULL{} (the error indicator for functions returning |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 299 | object pointers) if an error is detected in the argument list, relying |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 300 | on the exception set by \cfunction{PyArg_ParseTuple()}. Otherwise the |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 301 | string value of the argument has been copied to the local variable |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 302 | \cdata{command}. This is a pointer assignment and you are not supposed |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 303 | to modify the string to which it points (so in Standard \C{}, the variable |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 304 | \cdata{command} should properly be declared as \samp{const char |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 305 | *command}). |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 306 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 307 | The next statement is a call to the \UNIX{} function |
| 308 | \cfunction{system()}, passing it the string we just got from |
| 309 | \cfunction{PyArg_ParseTuple()}: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 310 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 311 | \begin{verbatim} |
| 312 | sts = system(command); |
| 313 | \end{verbatim} |
| 314 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 315 | Our \function{spam.system()} function must return the value of |
| 316 | \cdata{sts} as a Python object. This is done using the function |
| 317 | \cfunction{Py_BuildValue()}, which is something like the inverse of |
| 318 | \cfunction{PyArg_ParseTuple()}: it takes a format string and an |
| 319 | arbitrary number of \C{} values, and returns a new Python object. |
| 320 | More info on \cfunction{Py_BuildValue()} is given later. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 321 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 322 | \begin{verbatim} |
| 323 | return Py_BuildValue("i", sts); |
| 324 | \end{verbatim} |
| 325 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 326 | In this case, it will return an integer object. (Yes, even integers |
| 327 | are objects on the heap in Python!) |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 328 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 329 | If you have a \C{} function that returns no useful argument (a function |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 330 | returning \ctype{void}), the corresponding Python function must return |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 331 | \code{None}. You need this idiom to do so: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 332 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 333 | \begin{verbatim} |
| 334 | Py_INCREF(Py_None); |
| 335 | return Py_None; |
| 336 | \end{verbatim} |
| 337 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 338 | \cdata{Py_None} is the \C{} name for the special Python object |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 339 | \code{None}. It is a genuine Python object rather than a \NULL{} |
| 340 | pointer, which means ``error'' in most contexts, as we have seen. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 341 | |
| 342 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 343 | \section{The Module's Method Table and Initialization Function} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 344 | \label{methodTable} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 345 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 346 | I promised to show how \cfunction{spam_system()} is called from Python |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 347 | programs. First, we need to list its name and address in a ``method |
| 348 | table'': |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 349 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 350 | \begin{verbatim} |
| 351 | static PyMethodDef SpamMethods[] = { |
| 352 | ... |
| 353 | {"system", spam_system, METH_VARARGS}, |
| 354 | ... |
| 355 | {NULL, NULL} /* Sentinel */ |
| 356 | }; |
| 357 | \end{verbatim} |
| 358 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 359 | Note the third entry (\samp{METH_VARARGS}). This is a flag telling |
| 360 | the interpreter the calling convention to be used for the \C{} |
| 361 | function. It should normally always be \samp{METH_VARARGS} or |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 362 | \samp{METH_VARARGS | METH_KEYWORDS}; a value of \code{0} means that an |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 363 | obsolete variant of \cfunction{PyArg_ParseTuple()} is used. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 364 | |
Fred Drake | b6e5032 | 1998-02-04 20:26:31 +0000 | [diff] [blame] | 365 | When using only \samp{METH_VARARGS}, the function should expect |
| 366 | the Python-level parameters to be passed in as a tuple acceptable for |
| 367 | parsing via \cfunction{PyArg_ParseTuple()}; more information on this |
| 368 | function is provided below. |
| 369 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 370 | The \constant{METH_KEYWORDS} bit may be set in the third field if keyword |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 371 | arguments should be passed to the function. In this case, the \C{} |
| 372 | function should accept a third \samp{PyObject *} parameter which will |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 373 | be a dictionary of keywords. Use \cfunction{PyArg_ParseTupleAndKeywords()} |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 374 | to parse the arguemts to such a function. |
| 375 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 376 | The method table must be passed to the interpreter in the module's |
| 377 | initialization function (which should be the only non-\code{static} |
| 378 | item defined in the module file): |
| 379 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 380 | \begin{verbatim} |
| 381 | void |
| 382 | initspam() |
| 383 | { |
| 384 | (void) Py_InitModule("spam", SpamMethods); |
| 385 | } |
| 386 | \end{verbatim} |
| 387 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 388 | When the Python program imports module \module{spam} for the first |
| 389 | time, \cfunction{initspam()} is called. It calls |
| 390 | \cfunction{Py_InitModule()}, which creates a ``module object'' (which |
| 391 | is inserted in the dictionary \code{sys.modules} under the key |
| 392 | \code{"spam"}), and inserts built-in function objects into the newly |
| 393 | created module based upon the table (an array of \ctype{PyMethodDef} |
| 394 | structures) that was passed as its second argument. |
| 395 | \cfunction{Py_InitModule()} returns a pointer to the module object |
| 396 | that it creates (which is unused here). It aborts with a fatal error |
| 397 | if the module could not be initialized satisfactorily, so the caller |
| 398 | doesn't need to check for errors. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 399 | |
| 400 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 401 | \section{Compilation and Linkage} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 402 | \label{compilation} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 403 | |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 404 | There are two more things to do before you can use your new extension: |
| 405 | compiling and linking it with the Python system. If you use dynamic |
| 406 | loading, the details depend on the style of dynamic loading your |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 407 | system uses; see the chapter ``Dynamic Loading'' for more information |
| 408 | about this. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 409 | |
| 410 | If you can't use dynamic loading, or if you want to make your module a |
| 411 | permanent part of the Python interpreter, you will have to change the |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 412 | configuration setup and rebuild the interpreter. Luckily, this is |
| 413 | very simple: just place your file (\file{spammodule.c} for example) in |
| 414 | the \file{Modules} directory, add a line to the file |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 415 | \file{Modules/Setup.local} describing your file: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 416 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 417 | \begin{verbatim} |
| 418 | spam spammodule.o |
| 419 | \end{verbatim} |
| 420 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 421 | and rebuild the interpreter by running \program{make} in the toplevel |
| 422 | directory. You can also run \program{make} in the \file{Modules} |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 423 | subdirectory, but then you must first rebuild \file{Makefile} |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 424 | there by running `\program{make} Makefile'. (This is necessary each |
| 425 | time you change the \file{Setup} file.) |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 426 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 427 | If your module requires additional libraries to link with, these can |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 428 | be listed on the line in the configuration file as well, for instance: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 429 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 430 | \begin{verbatim} |
| 431 | spam spammodule.o -lX11 |
| 432 | \end{verbatim} |
| 433 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 434 | \section{Calling Python Functions From \C{}} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 435 | \label{callingPython} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 436 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 437 | So far we have concentrated on making \C{} functions callable from |
| 438 | Python. The reverse is also useful: calling Python functions from \C{}. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 439 | This is especially the case for libraries that support so-called |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 440 | ``callback'' functions. If a \C{} interface makes use of callbacks, the |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 441 | equivalent Python often needs to provide a callback mechanism to the |
| 442 | Python programmer; the implementation will require calling the Python |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 443 | callback functions from a \C{} callback. Other uses are also imaginable. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 444 | |
| 445 | Fortunately, the Python interpreter is easily called recursively, and |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 446 | there is a standard interface to call a Python function. (I won't |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 447 | dwell on how to call the Python parser with a particular string as |
Guido van Rossum | db65a6c | 1993-11-05 17:11:16 +0000 | [diff] [blame] | 448 | input --- if you're interested, have a look at the implementation of |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 449 | the \samp{-c} command line option in \file{Python/pythonmain.c}.) |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 450 | |
| 451 | Calling a Python function is easy. First, the Python program must |
| 452 | somehow pass you the Python function object. You should provide a |
| 453 | function (or some other interface) to do this. When this function is |
| 454 | called, save a pointer to the Python function object (be careful to |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 455 | \cfunction{Py_INCREF()} it!) in a global variable --- or whereever you |
| 456 | see fit. For example, the following function might be part of a module |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 457 | definition: |
| 458 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 459 | \begin{verbatim} |
| 460 | static PyObject *my_callback = NULL; |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 461 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 462 | static PyObject * |
| 463 | my_set_callback(dummy, arg) |
| 464 | PyObject *dummy, *arg; |
| 465 | { |
| 466 | Py_XDECREF(my_callback); /* Dispose of previous callback */ |
| 467 | Py_XINCREF(arg); /* Add a reference to new callback */ |
| 468 | my_callback = arg; /* Remember new callback */ |
| 469 | /* Boilerplate to return "None" */ |
| 470 | Py_INCREF(Py_None); |
| 471 | return Py_None; |
| 472 | } |
| 473 | \end{verbatim} |
| 474 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 475 | The macros \cfunction{Py_XINCREF()} and \cfunction{Py_XDECREF()} |
| 476 | increment/decrement the reference count of an object and are safe in |
| 477 | the presence of \NULL{} pointers. More info on them in the section on |
| 478 | Reference Counts below. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 479 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 480 | Later, when it is time to call the function, you call the \C{} function |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 481 | \cfunction{PyEval_CallObject()}. This function has two arguments, both |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 482 | pointers to arbitrary Python objects: the Python function, and the |
| 483 | argument list. The argument list must always be a tuple object, whose |
| 484 | length is the number of arguments. To call the Python function with |
| 485 | no arguments, pass an empty tuple; to call it with one argument, pass |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 486 | a singleton tuple. \cfunction{Py_BuildValue()} returns a tuple when its |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 487 | format string consists of zero or more format codes between |
| 488 | parentheses. For example: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 489 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 490 | \begin{verbatim} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 491 | int arg; |
| 492 | PyObject *arglist; |
| 493 | PyObject *result; |
| 494 | ... |
| 495 | arg = 123; |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 496 | ... |
| 497 | /* Time to call the callback */ |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 498 | arglist = Py_BuildValue("(i)", arg); |
| 499 | result = PyEval_CallObject(my_callback, arglist); |
| 500 | Py_DECREF(arglist); |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 501 | \end{verbatim} |
| 502 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 503 | \cfunction{PyEval_CallObject()} returns a Python object pointer: this is |
| 504 | the return value of the Python function. \cfunction{PyEval_CallObject()} is |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 505 | ``reference-count-neutral'' with respect to its arguments. In the |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 506 | example a new tuple was created to serve as the argument list, which |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 507 | is \cfunction{Py_DECREF()}-ed immediately after the call. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 508 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 509 | The return value of \cfunction{PyEval_CallObject()} is ``new'': either it |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 510 | is a brand new object, or it is an existing object whose reference |
| 511 | count has been incremented. So, unless you want to save it in a |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 512 | global variable, you should somehow \cfunction{Py_DECREF()} the result, |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 513 | even (especially!) if you are not interested in its value. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 514 | |
| 515 | Before you do this, however, it is important to check that the return |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 516 | value isn't \NULL{}. If it is, the Python function terminated by |
| 517 | raising an exception. If the \C{} code that called |
| 518 | \cfunction{PyEval_CallObject()} is called from Python, it should now |
| 519 | return an error indication to its Python caller, so the interpreter |
| 520 | can print a stack trace, or the calling Python code can handle the |
| 521 | exception. If this is not possible or desirable, the exception should |
| 522 | be cleared by calling \cfunction{PyErr_Clear()}. For example: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 523 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 524 | \begin{verbatim} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 525 | if (result == NULL) |
| 526 | return NULL; /* Pass error back */ |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 527 | ...use result... |
| 528 | Py_DECREF(result); |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 529 | \end{verbatim} |
| 530 | |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 531 | Depending on the desired interface to the Python callback function, |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 532 | you may also have to provide an argument list to |
| 533 | \cfunction{PyEval_CallObject()}. In some cases the argument list is |
| 534 | also provided by the Python program, through the same interface that |
| 535 | specified the callback function. It can then be saved and used in the |
| 536 | same manner as the function object. In other cases, you may have to |
| 537 | construct a new tuple to pass as the argument list. The simplest way |
| 538 | to do this is to call \cfunction{Py_BuildValue()}. For example, if |
| 539 | you want to pass an integral event code, you might use the following |
| 540 | code: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 541 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 542 | \begin{verbatim} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 543 | PyObject *arglist; |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 544 | ... |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 545 | arglist = Py_BuildValue("(l)", eventcode); |
| 546 | result = PyEval_CallObject(my_callback, arglist); |
| 547 | Py_DECREF(arglist); |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 548 | if (result == NULL) |
| 549 | return NULL; /* Pass error back */ |
| 550 | /* Here maybe use the result */ |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 551 | Py_DECREF(result); |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 552 | \end{verbatim} |
| 553 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 554 | Note the placement of \samp{Py_DECREF(arglist)} immediately after the |
| 555 | call, before the error check! Also note that strictly spoken this |
| 556 | code is not complete: \cfunction{Py_BuildValue()} may run out of |
| 557 | memory, and this should be checked. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 558 | |
| 559 | |
Fred Drake | e795718 | 1998-04-04 07:17:47 +0000 | [diff] [blame] | 560 | \section{Format Strings for \cfunction{PyArg_ParseTuple()}} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 561 | \label{parseTuple} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 562 | |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 563 | The \cfunction{PyArg_ParseTuple()} function is declared as follows: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 564 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 565 | \begin{verbatim} |
| 566 | int PyArg_ParseTuple(PyObject *arg, char *format, ...); |
| 567 | \end{verbatim} |
| 568 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 569 | The \var{arg} argument must be a tuple object containing an argument |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 570 | list passed from Python to a \C{} function. The \var{format} argument |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 571 | must be a format string, whose syntax is explained below. The |
| 572 | remaining arguments must be addresses of variables whose type is |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 573 | determined by the format string. For the conversion to succeed, the |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 574 | \var{arg} object must match the format and the format must be |
| 575 | exhausted. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 576 | |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 577 | Note that while \cfunction{PyArg_ParseTuple()} checks that the Python |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 578 | arguments have the required types, it cannot check the validity of the |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 579 | addresses of \C{} variables passed to the call: if you make mistakes |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 580 | there, your code will probably crash or at least overwrite random bits |
| 581 | in memory. So be careful! |
| 582 | |
| 583 | A format string consists of zero or more ``format units''. A format |
| 584 | unit describes one Python object; it is usually a single character or |
| 585 | a parenthesized sequence of format units. With a few exceptions, a |
| 586 | format unit that is not a parenthesized sequence normally corresponds |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 587 | to a single address argument to \cfunction{PyArg_ParseTuple()}. In the |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 588 | following description, the quoted form is the format unit; the entry |
| 589 | in (round) parentheses is the Python object type that matches the |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 590 | format unit; and the entry in [square] brackets is the type of the \C{} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 591 | variable(s) whose address should be passed. (Use the \samp{\&} |
| 592 | operator to pass a variable's address.) |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 593 | |
Guido van Rossum | db65a6c | 1993-11-05 17:11:16 +0000 | [diff] [blame] | 594 | \begin{description} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 595 | |
Fred Drake | 3fe985f | 1998-03-04 03:51:42 +0000 | [diff] [blame] | 596 | \item[\samp{s} (string) {[char *]}] |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 597 | Convert a Python string to a \C{} pointer to a character string. You |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 598 | must not provide storage for the string itself; a pointer to an |
| 599 | existing string is stored into the character pointer variable whose |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 600 | address you pass. The \C{} string is null-terminated. The Python string |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 601 | must not contain embedded null bytes; if it does, a \exception{TypeError} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 602 | exception is raised. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 603 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 604 | \item[\samp{s\#} (string) {[char *, int]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 605 | This variant on \samp{s} stores into two \C{} variables, the first one |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 606 | a pointer to a character string, the second one its length. In this |
| 607 | case the Python string may contain embedded null bytes. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 608 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 609 | \item[\samp{z} (string or \code{None}) {[char *]}] |
| 610 | Like \samp{s}, but the Python object may also be \code{None}, in which |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 611 | case the \C{} pointer is set to \NULL{}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 612 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 613 | \item[\samp{z\#} (string or \code{None}) {[char *, int]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 614 | This is to \samp{s\#} as \samp{z} is to \samp{s}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 615 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 616 | \item[\samp{b} (integer) {[char]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 617 | Convert a Python integer to a tiny int, stored in a \C{} \ctype{char}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 618 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 619 | \item[\samp{h} (integer) {[short int]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 620 | Convert a Python integer to a \C{} \ctype{short int}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 621 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 622 | \item[\samp{i} (integer) {[int]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 623 | Convert a Python integer to a plain \C{} \ctype{int}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 624 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 625 | \item[\samp{l} (integer) {[long int]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 626 | Convert a Python integer to a \C{} \ctype{long int}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 627 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 628 | \item[\samp{c} (string of length 1) {[char]}] |
| 629 | Convert a Python character, represented as a string of length 1, to a |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 630 | \C{} \ctype{char}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 631 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 632 | \item[\samp{f} (float) {[float]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 633 | Convert a Python floating point number to a \C{} \ctype{float}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 634 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 635 | \item[\samp{d} (float) {[double]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 636 | Convert a Python floating point number to a \C{} \ctype{double}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 637 | |
Fred Drake | b6e5032 | 1998-02-04 20:26:31 +0000 | [diff] [blame] | 638 | \item[\samp{D} (complex) {[Py_complex]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 639 | Convert a Python complex number to a \C{} \ctype{Py_complex} structure. |
Fred Drake | b6e5032 | 1998-02-04 20:26:31 +0000 | [diff] [blame] | 640 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 641 | \item[\samp{O} (object) {[PyObject *]}] |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 642 | Store a Python object (without any conversion) in a \C{} object pointer. |
| 643 | The \C{} program thus receives the actual object that was passed. The |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 644 | object's reference count is not increased. The pointer stored is not |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 645 | \NULL{}. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 646 | |
Fred Drake | 3fe985f | 1998-03-04 03:51:42 +0000 | [diff] [blame] | 647 | \item[\samp{O!} (object) {[\var{typeobject}, PyObject *]}] |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 648 | Store a Python object in a \C{} object pointer. This is similar to |
| 649 | \samp{O}, but takes two \C{} arguments: the first is the address of a |
| 650 | Python type object, the second is the address of the \C{} variable (of |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 651 | type \ctype{PyObject *}) into which the object pointer is stored. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 652 | If the Python object does not have the required type, a |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 653 | \exception{TypeError} exception is raised. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 654 | |
Fred Drake | 3fe985f | 1998-03-04 03:51:42 +0000 | [diff] [blame] | 655 | \item[\samp{O\&} (object) {[\var{converter}, \var{anything}]}] |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 656 | Convert a Python object to a \C{} variable through a \var{converter} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 657 | function. This takes two arguments: the first is a function, the |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 658 | second is the address of a \C{} variable (of arbitrary type), converted |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 659 | to \ctype{void *}. The \var{converter} function in turn is called as |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 660 | follows: |
| 661 | |
| 662 | \code{\var{status} = \var{converter}(\var{object}, \var{address});} |
| 663 | |
| 664 | where \var{object} is the Python object to be converted and |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 665 | \var{address} is the \ctype{void *} argument that was passed to |
| 666 | \cfunction{PyArg_ConvertTuple()}. The returned \var{status} should be |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 667 | \code{1} for a successful conversion and \code{0} if the conversion |
| 668 | has failed. When the conversion fails, the \var{converter} function |
| 669 | should raise an exception. |
| 670 | |
| 671 | \item[\samp{S} (string) {[PyStringObject *]}] |
Guido van Rossum | 2474d68 | 1998-02-26 17:07:11 +0000 | [diff] [blame] | 672 | Like \samp{O} but requires that the Python object is a string object. |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 673 | Raises a \exception{TypeError} exception if the object is not a string |
| 674 | object. The \C{} variable may also be declared as \ctype{PyObject *}. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 675 | |
Fred Drake | 3fe985f | 1998-03-04 03:51:42 +0000 | [diff] [blame] | 676 | \item[\samp{(\var{items})} (tuple) {[\var{matching-items}]}] |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 677 | The object must be a Python tuple whose length is the number of format |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 678 | units in \var{items}. The \C{} arguments must correspond to the |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 679 | individual format units in \var{items}. Format units for tuples may |
| 680 | be nested. |
Guido van Rossum | db65a6c | 1993-11-05 17:11:16 +0000 | [diff] [blame] | 681 | |
| 682 | \end{description} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 683 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 684 | It is possible to pass Python long integers where integers are |
Fred Drake | 1aedbd8 | 1998-02-16 14:47:27 +0000 | [diff] [blame] | 685 | requested; however no proper range checking is done --- the most |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 686 | significant bits are silently truncated when the receiving field is |
| 687 | too small to receive the value (actually, the semantics are inherited |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 688 | from downcasts in \C{} --- your milage may vary). |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 689 | |
| 690 | A few other characters have a meaning in a format string. These may |
| 691 | not occur inside nested parentheses. They are: |
| 692 | |
| 693 | \begin{description} |
| 694 | |
| 695 | \item[\samp{|}] |
| 696 | Indicates that the remaining arguments in the Python argument list are |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 697 | optional. The \C{} variables corresponding to optional arguments should |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 698 | be initialized to their default value --- when an optional argument is |
Fred Drake | 40e72f7 | 1998-03-03 19:37:38 +0000 | [diff] [blame] | 699 | not specified, \cfunction{PyArg_ParseTuple()} does not touch the contents |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 700 | of the corresponding \C{} variable(s). |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 701 | |
| 702 | \item[\samp{:}] |
| 703 | The list of format units ends here; the string after the colon is used |
| 704 | as the function name in error messages (the ``associated value'' of |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 705 | the exceptions that \cfunction{PyArg_ParseTuple()} raises). |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 706 | |
| 707 | \item[\samp{;}] |
| 708 | The list of format units ends here; the string after the colon is used |
| 709 | as the error message \emph{instead} of the default error message. |
| 710 | Clearly, \samp{:} and \samp{;} mutually exclude each other. |
| 711 | |
| 712 | \end{description} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 713 | |
| 714 | Some example calls: |
| 715 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 716 | \begin{verbatim} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 717 | int ok; |
| 718 | int i, j; |
| 719 | long k, l; |
| 720 | char *s; |
| 721 | int size; |
| 722 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 723 | ok = PyArg_ParseTuple(args, ""); /* No arguments */ |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 724 | /* Python call: f() */ |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 725 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 726 | ok = PyArg_ParseTuple(args, "s", &s); /* A string */ |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 727 | /* Possible Python call: f('whoops!') */ |
| 728 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 729 | ok = PyArg_ParseTuple(args, "lls", &k, &l, &s); /* Two longs and a string */ |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 730 | /* Possible Python call: f(1, 2, 'three') */ |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 731 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 732 | ok = PyArg_ParseTuple(args, "(ii)s#", &i, &j, &s, &size); |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 733 | /* A pair of ints and a string, whose size is also returned */ |
Guido van Rossum | 7e924dd | 1997-02-10 16:51:52 +0000 | [diff] [blame] | 734 | /* Possible Python call: f((1, 2), 'three') */ |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 735 | |
| 736 | { |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 737 | char *file; |
| 738 | char *mode = "r"; |
| 739 | int bufsize = 0; |
| 740 | ok = PyArg_ParseTuple(args, "s|si", &file, &mode, &bufsize); |
| 741 | /* A string, and optionally another string and an integer */ |
| 742 | /* Possible Python calls: |
| 743 | f('spam') |
| 744 | f('spam', 'w') |
| 745 | f('spam', 'wb', 100000) */ |
| 746 | } |
| 747 | |
| 748 | { |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 749 | int left, top, right, bottom, h, v; |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 750 | ok = PyArg_ParseTuple(args, "((ii)(ii))(ii)", |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 751 | &left, &top, &right, &bottom, &h, &v); |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 752 | /* A rectangle and a point */ |
| 753 | /* Possible Python call: |
| 754 | f(((0, 0), (400, 300)), (10, 10)) */ |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 755 | } |
Fred Drake | b6e5032 | 1998-02-04 20:26:31 +0000 | [diff] [blame] | 756 | |
| 757 | { |
| 758 | Py_complex c; |
| 759 | ok = PyArg_ParseTuple(args, "D:myfunction", &c); |
| 760 | /* a complex, also providing a function name for errors */ |
| 761 | /* Possible Python call: myfunction(1+2j) */ |
| 762 | } |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 763 | \end{verbatim} |
Fred Drake | b6e5032 | 1998-02-04 20:26:31 +0000 | [diff] [blame] | 764 | |
| 765 | |
Fred Drake | e795718 | 1998-04-04 07:17:47 +0000 | [diff] [blame] | 766 | \section{Keyword Parsing with \cfunction{PyArg_ParseTupleAndKeywords()}} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 767 | \label{parseTupleAndKeywords} |
Fred Drake | b6e5032 | 1998-02-04 20:26:31 +0000 | [diff] [blame] | 768 | |
| 769 | The \cfunction{PyArg_ParseTupleAndKeywords()} function is declared as |
| 770 | follows: |
| 771 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 772 | \begin{verbatim} |
| 773 | int PyArg_ParseTupleAndKeywords(PyObject *arg, PyObject *kwdict, |
| 774 | char *format, char **kwlist, ...); |
| 775 | \end{verbatim} |
Fred Drake | b6e5032 | 1998-02-04 20:26:31 +0000 | [diff] [blame] | 776 | |
| 777 | The \var{arg} and \var{format} parameters are identical to those of the |
| 778 | \cfunction{PyArg_ParseTuple()} function. The \var{kwdict} parameter |
| 779 | is the dictionary of keywords received as the third parameter from the |
| 780 | Python runtime. The \var{kwlist} parameter is a \NULL{}-terminated |
| 781 | list of strings which identify the parameters; the names are matched |
| 782 | with the type information from \var{format} from left to right. |
| 783 | |
| 784 | \strong{Note:} Nested tuples cannot be parsed when using keyword |
| 785 | arguments! Keyword parameters passed in which are not present in the |
Fred Drake | cd05ca9 | 1998-03-07 05:32:08 +0000 | [diff] [blame] | 786 | \var{kwlist} will cause \exception{TypeError} to be raised. |
Fred Drake | b6e5032 | 1998-02-04 20:26:31 +0000 | [diff] [blame] | 787 | |
| 788 | Here is an example module which uses keywords, based on an example by |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 789 | Geoff Philbrick (\email{philbrick@hks.com}):% |
| 790 | \index{Philbrick, Geoff} |
Fred Drake | b6e5032 | 1998-02-04 20:26:31 +0000 | [diff] [blame] | 791 | |
| 792 | \begin{verbatim} |
| 793 | #include <stdio.h> |
| 794 | #include "Python.h" |
| 795 | |
| 796 | static PyObject * |
| 797 | keywdarg_parrot(self, args, keywds) |
| 798 | PyObject *self; |
| 799 | PyObject *args; |
| 800 | PyObject *keywds; |
| 801 | { |
| 802 | int voltage; |
| 803 | char *state = "a stiff"; |
| 804 | char *action = "voom"; |
| 805 | char *type = "Norwegian Blue"; |
| 806 | |
| 807 | static char *kwlist[] = {"voltage", "state", "action", "type", NULL}; |
| 808 | |
| 809 | if (!PyArg_ParseTupleAndKeywords(args, keywds, "i|sss", kwlist, |
| 810 | &voltage, &state, &action, &type)) |
| 811 | return NULL; |
| 812 | |
| 813 | printf("-- This parrot wouldn't %s if you put %i Volts through it.\n", |
| 814 | action, voltage); |
| 815 | printf("-- Lovely plumage, the %s -- It's %s!\n", type, state); |
| 816 | |
| 817 | Py_INCREF(Py_None); |
| 818 | |
| 819 | return Py_None; |
| 820 | } |
| 821 | |
| 822 | static PyMethodDef keywdarg_methods[] = { |
| 823 | {"parrot", (PyCFunction)keywdarg_parrot, METH_VARARGS|METH_KEYWORDS}, |
| 824 | {NULL, NULL} /* sentinel */ |
| 825 | }; |
| 826 | |
| 827 | void |
| 828 | initkeywdarg() |
| 829 | { |
| 830 | /* Create the module and add the functions */ |
Fred Drake | cd05ca9 | 1998-03-07 05:32:08 +0000 | [diff] [blame] | 831 | Py_InitModule("keywdarg", keywdarg_methods); |
Fred Drake | b6e5032 | 1998-02-04 20:26:31 +0000 | [diff] [blame] | 832 | } |
| 833 | \end{verbatim} |
| 834 | |
| 835 | |
Fred Drake | e795718 | 1998-04-04 07:17:47 +0000 | [diff] [blame] | 836 | \section{The \cfunction{Py_BuildValue()} Function} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 837 | \label{buildValue} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 838 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 839 | This function is the counterpart to \cfunction{PyArg_ParseTuple()}. It is |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 840 | declared as follows: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 841 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 842 | \begin{verbatim} |
| 843 | PyObject *Py_BuildValue(char *format, ...); |
| 844 | \end{verbatim} |
| 845 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 846 | It recognizes a set of format units similar to the ones recognized by |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 847 | \cfunction{PyArg_ParseTuple()}, but the arguments (which are input to the |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 848 | function, not output) must not be pointers, just values. It returns a |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 849 | new Python object, suitable for returning from a \C{} function called |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 850 | from Python. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 851 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 852 | One difference with \cfunction{PyArg_ParseTuple()}: while the latter |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 853 | requires its first argument to be a tuple (since Python argument lists |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 854 | are always represented as tuples internally), |
| 855 | \cfunction{Py_BuildValue()} does not always build a tuple. It builds |
| 856 | a tuple only if its format string contains two or more format units. |
| 857 | If the format string is empty, it returns \code{None}; if it contains |
| 858 | exactly one format unit, it returns whatever object is described by |
| 859 | that format unit. To force it to return a tuple of size 0 or one, |
| 860 | parenthesize the format string. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 861 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 862 | In the following description, the quoted form is the format unit; the |
| 863 | entry in (round) parentheses is the Python object type that the format |
| 864 | unit will return; and the entry in [square] brackets is the type of |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 865 | the \C{} value(s) to be passed. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 866 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 867 | The characters space, tab, colon and comma are ignored in format |
| 868 | strings (but not within format units such as \samp{s\#}). This can be |
| 869 | used to make long format strings a tad more readable. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 870 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 871 | \begin{description} |
| 872 | |
| 873 | \item[\samp{s} (string) {[char *]}] |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 874 | Convert a null-terminated \C{} string to a Python object. If the \C{} |
| 875 | string pointer is \NULL{}, \code{None} is returned. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 876 | |
| 877 | \item[\samp{s\#} (string) {[char *, int]}] |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 878 | Convert a \C{} string and its length to a Python object. If the \C{} string |
| 879 | pointer is \NULL{}, the length is ignored and \code{None} is |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 880 | returned. |
| 881 | |
| 882 | \item[\samp{z} (string or \code{None}) {[char *]}] |
| 883 | Same as \samp{s}. |
| 884 | |
| 885 | \item[\samp{z\#} (string or \code{None}) {[char *, int]}] |
| 886 | Same as \samp{s\#}. |
| 887 | |
| 888 | \item[\samp{i} (integer) {[int]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 889 | Convert a plain \C{} \ctype{int} to a Python integer object. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 890 | |
| 891 | \item[\samp{b} (integer) {[char]}] |
| 892 | Same as \samp{i}. |
| 893 | |
| 894 | \item[\samp{h} (integer) {[short int]}] |
| 895 | Same as \samp{i}. |
| 896 | |
| 897 | \item[\samp{l} (integer) {[long int]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 898 | Convert a \C{} \ctype{long int} to a Python integer object. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 899 | |
| 900 | \item[\samp{c} (string of length 1) {[char]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 901 | Convert a \C{} \ctype{int} representing a character to a Python string of |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 902 | length 1. |
| 903 | |
| 904 | \item[\samp{d} (float) {[double]}] |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 905 | Convert a \C{} \ctype{double} to a Python floating point number. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 906 | |
| 907 | \item[\samp{f} (float) {[float]}] |
| 908 | Same as \samp{d}. |
| 909 | |
| 910 | \item[\samp{O} (object) {[PyObject *]}] |
| 911 | Pass a Python object untouched (except for its reference count, which |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 912 | is incremented by one). If the object passed in is a \NULL{} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 913 | pointer, it is assumed that this was caused because the call producing |
| 914 | the argument found an error and set an exception. Therefore, |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 915 | \cfunction{Py_BuildValue()} will return \NULL{} but won't raise an |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 916 | exception. If no exception has been raised yet, |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 917 | \cdata{PyExc_SystemError} is set. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 918 | |
| 919 | \item[\samp{S} (object) {[PyObject *]}] |
| 920 | Same as \samp{O}. |
| 921 | |
| 922 | \item[\samp{O\&} (object) {[\var{converter}, \var{anything}]}] |
| 923 | Convert \var{anything} to a Python object through a \var{converter} |
| 924 | function. The function is called with \var{anything} (which should be |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 925 | compatible with \ctype{void *}) as its argument and should return a |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 926 | ``new'' Python object, or \NULL{} if an error occurred. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 927 | |
| 928 | \item[\samp{(\var{items})} (tuple) {[\var{matching-items}]}] |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 929 | Convert a sequence of \C{} values to a Python tuple with the same number |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 930 | of items. |
| 931 | |
| 932 | \item[\samp{[\var{items}]} (list) {[\var{matching-items}]}] |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 933 | Convert a sequence of \C{} values to a Python list with the same number |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 934 | of items. |
| 935 | |
| 936 | \item[\samp{\{\var{items}\}} (dictionary) {[\var{matching-items}]}] |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 937 | Convert a sequence of \C{} values to a Python dictionary. Each pair of |
| 938 | consecutive \C{} values adds one item to the dictionary, serving as key |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 939 | and value, respectively. |
| 940 | |
| 941 | \end{description} |
| 942 | |
| 943 | If there is an error in the format string, the |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 944 | \cdata{PyExc_SystemError} exception is raised and \NULL{} returned. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 945 | |
| 946 | Examples (to the left the call, to the right the resulting Python value): |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 947 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 948 | \begin{verbatim} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 949 | Py_BuildValue("") None |
| 950 | Py_BuildValue("i", 123) 123 |
Guido van Rossum | f23e0fe | 1995-03-18 11:04:29 +0000 | [diff] [blame] | 951 | Py_BuildValue("iii", 123, 456, 789) (123, 456, 789) |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 952 | Py_BuildValue("s", "hello") 'hello' |
| 953 | Py_BuildValue("ss", "hello", "world") ('hello', 'world') |
| 954 | Py_BuildValue("s#", "hello", 4) 'hell' |
| 955 | Py_BuildValue("()") () |
| 956 | Py_BuildValue("(i)", 123) (123,) |
| 957 | Py_BuildValue("(ii)", 123, 456) (123, 456) |
| 958 | Py_BuildValue("(i,i)", 123, 456) (123, 456) |
| 959 | Py_BuildValue("[i,i]", 123, 456) [123, 456] |
Guido van Rossum | f23e0fe | 1995-03-18 11:04:29 +0000 | [diff] [blame] | 960 | Py_BuildValue("{s:i,s:i}", |
| 961 | "abc", 123, "def", 456) {'abc': 123, 'def': 456} |
| 962 | Py_BuildValue("((ii)(ii)) (ii)", |
| 963 | 1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6)) |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 964 | \end{verbatim} |
| 965 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 966 | \section{Reference Counts} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 967 | \label{refcounts} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 968 | |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 969 | %\subsection{Introduction} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 970 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 971 | In languages like \C{} or \Cpp{}, the programmer is responsible for |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 972 | dynamic allocation and deallocation of memory on the heap. In \C{}, |
| 973 | this is done using the functions \cfunction{malloc()} and |
| 974 | \cfunction{free()}. In \Cpp{}, the operators \keyword{new} and |
| 975 | \keyword{delete} are used with essentially the same meaning; they are |
| 976 | actually implemented using \cfunction{malloc()} and |
| 977 | \cfunction{free()}, so we'll restrict the following discussion to the |
| 978 | latter. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 979 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 980 | Every block of memory allocated with \cfunction{malloc()} should |
| 981 | eventually be returned to the pool of available memory by exactly one |
| 982 | call to \cfunction{free()}. It is important to call |
| 983 | \cfunction{free()} at the right time. If a block's address is |
| 984 | forgotten but \cfunction{free()} is not called for it, the memory it |
| 985 | occupies cannot be reused until the program terminates. This is |
| 986 | called a \dfn{memory leak}. On the other hand, if a program calls |
| 987 | \cfunction{free()} for a block and then continues to use the block, it |
| 988 | creates a conflict with re-use of the block through another |
| 989 | \cfunction{malloc()} call. This is called \dfn{using freed memory}. |
| 990 | It has the same bad consequences as referencing uninitialized data --- |
| 991 | core dumps, wrong results, mysterious crashes. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 992 | |
| 993 | Common causes of memory leaks are unusual paths through the code. For |
| 994 | instance, a function may allocate a block of memory, do some |
| 995 | calculation, and then free the block again. Now a change in the |
| 996 | requirements for the function may add a test to the calculation that |
| 997 | detects an error condition and can return prematurely from the |
| 998 | function. It's easy to forget to free the allocated memory block when |
| 999 | taking this premature exit, especially when it is added later to the |
| 1000 | code. Such leaks, once introduced, often go undetected for a long |
| 1001 | time: the error exit is taken only in a small fraction of all calls, |
| 1002 | and most modern machines have plenty of virtual memory, so the leak |
| 1003 | only becomes apparent in a long-running process that uses the leaking |
| 1004 | function frequently. Therefore, it's important to prevent leaks from |
| 1005 | happening by having a coding convention or strategy that minimizes |
| 1006 | this kind of errors. |
| 1007 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1008 | Since Python makes heavy use of \cfunction{malloc()} and |
| 1009 | \cfunction{free()}, it needs a strategy to avoid memory leaks as well |
| 1010 | as the use of freed memory. The chosen method is called |
| 1011 | \dfn{reference counting}. The principle is simple: every object |
| 1012 | contains a counter, which is incremented when a reference to the |
| 1013 | object is stored somewhere, and which is decremented when a reference |
| 1014 | to it is deleted. When the counter reaches zero, the last reference |
| 1015 | to the object has been deleted and the object is freed. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1016 | |
| 1017 | An alternative strategy is called \dfn{automatic garbage collection}. |
| 1018 | (Sometimes, reference counting is also referred to as a garbage |
| 1019 | collection strategy, hence my use of ``automatic'' to distinguish the |
| 1020 | two.) The big advantage of automatic garbage collection is that the |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1021 | user doesn't need to call \cfunction{free()} explicitly. (Another claimed |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1022 | advantage is an improvement in speed or memory usage --- this is no |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1023 | hard fact however.) The disadvantage is that for \C{}, there is no |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1024 | truly portable automatic garbage collector, while reference counting |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1025 | can be implemented portably (as long as the functions \cfunction{malloc()} |
| 1026 | and \cfunction{free()} are available --- which the \C{} Standard guarantees). |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1027 | Maybe some day a sufficiently portable automatic garbage collector |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1028 | will be available for \C{}. Until then, we'll have to live with |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1029 | reference counts. |
| 1030 | |
| 1031 | \subsection{Reference Counting in Python} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1032 | \label{refcountsInPython} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1033 | |
| 1034 | There are two macros, \code{Py_INCREF(x)} and \code{Py_DECREF(x)}, |
| 1035 | which handle the incrementing and decrementing of the reference count. |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1036 | \cfunction{Py_DECREF()} also frees the object when the count reaches zero. |
| 1037 | For flexibility, it doesn't call \cfunction{free()} directly --- rather, it |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1038 | makes a call through a function pointer in the object's \dfn{type |
| 1039 | object}. For this purpose (and others), every object also contains a |
| 1040 | pointer to its type object. |
| 1041 | |
| 1042 | The big question now remains: when to use \code{Py_INCREF(x)} and |
| 1043 | \code{Py_DECREF(x)}? Let's first introduce some terms. Nobody |
| 1044 | ``owns'' an object; however, you can \dfn{own a reference} to an |
| 1045 | object. An object's reference count is now defined as the number of |
| 1046 | owned references to it. The owner of a reference is responsible for |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1047 | calling \cfunction{Py_DECREF()} when the reference is no longer |
| 1048 | needed. Ownership of a reference can be transferred. There are three |
| 1049 | ways to dispose of an owned reference: pass it on, store it, or call |
| 1050 | \cfunction{Py_DECREF()}. Forgetting to dispose of an owned reference |
| 1051 | creates a memory leak. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1052 | |
| 1053 | It is also possible to \dfn{borrow}\footnote{The metaphor of |
| 1054 | ``borrowing'' a reference is not completely correct: the owner still |
| 1055 | has a copy of the reference.} a reference to an object. The borrower |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1056 | of a reference should not call \cfunction{Py_DECREF()}. The borrower must |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1057 | not hold on to the object longer than the owner from which it was |
| 1058 | borrowed. Using a borrowed reference after the owner has disposed of |
| 1059 | it risks using freed memory and should be avoided |
| 1060 | completely.\footnote{Checking that the reference count is at least 1 |
| 1061 | \strong{does not work} --- the reference count itself could be in |
| 1062 | freed memory and may thus be reused for another object!} |
| 1063 | |
| 1064 | The advantage of borrowing over owning a reference is that you don't |
| 1065 | need to take care of disposing of the reference on all possible paths |
| 1066 | through the code --- in other words, with a borrowed reference you |
| 1067 | don't run the risk of leaking when a premature exit is taken. The |
| 1068 | disadvantage of borrowing over leaking is that there are some subtle |
| 1069 | situations where in seemingly correct code a borrowed reference can be |
| 1070 | used after the owner from which it was borrowed has in fact disposed |
| 1071 | of it. |
| 1072 | |
| 1073 | A borrowed reference can be changed into an owned reference by calling |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1074 | \cfunction{Py_INCREF()}. This does not affect the status of the owner from |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1075 | which the reference was borrowed --- it creates a new owned reference, |
| 1076 | and gives full owner responsibilities (i.e., the new owner must |
| 1077 | dispose of the reference properly, as well as the previous owner). |
| 1078 | |
| 1079 | \subsection{Ownership Rules} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1080 | \label{ownershipRules} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1081 | |
| 1082 | Whenever an object reference is passed into or out of a function, it |
| 1083 | is part of the function's interface specification whether ownership is |
| 1084 | transferred with the reference or not. |
| 1085 | |
| 1086 | Most functions that return a reference to an object pass on ownership |
| 1087 | with the reference. In particular, all functions whose function it is |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1088 | to create a new object, e.g.\ \cfunction{PyInt_FromLong()} and |
| 1089 | \cfunction{Py_BuildValue()}, pass ownership to the receiver. Even if in |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1090 | fact, in some cases, you don't receive a reference to a brand new |
| 1091 | object, you still receive ownership of the reference. For instance, |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1092 | \cfunction{PyInt_FromLong()} maintains a cache of popular values and can |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1093 | return a reference to a cached item. |
| 1094 | |
| 1095 | Many functions that extract objects from other objects also transfer |
| 1096 | ownership with the reference, for instance |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1097 | \cfunction{PyObject_GetAttrString()}. The picture is less clear, here, |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1098 | however, since a few common routines are exceptions: |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1099 | \cfunction{PyTuple_GetItem()}, \cfunction{PyList_GetItem()}, |
| 1100 | \cfunction{PyDict_GetItem()}, and \cfunction{PyDict_GetItemString()} |
| 1101 | all return references that you borrow from the tuple, list or |
| 1102 | dictionary. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1103 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1104 | The function \cfunction{PyImport_AddModule()} also returns a borrowed |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1105 | reference, even though it may actually create the object it returns: |
| 1106 | this is possible because an owned reference to the object is stored in |
| 1107 | \code{sys.modules}. |
| 1108 | |
| 1109 | When you pass an object reference into another function, in general, |
| 1110 | the function borrows the reference from you --- if it needs to store |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1111 | it, it will use \cfunction{Py_INCREF()} to become an independent |
| 1112 | owner. There are exactly two important exceptions to this rule: |
| 1113 | \cfunction{PyTuple_SetItem()} and \cfunction{PyList_SetItem()}. These |
| 1114 | functions take over ownership of the item passed to them --- even if |
| 1115 | they fail! (Note that \cfunction{PyDict_SetItem()} and friends don't |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1116 | take over ownership --- they are ``normal.'') |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1117 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1118 | When a \C{} function is called from Python, it borrows references to its |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1119 | arguments from the caller. The caller owns a reference to the object, |
| 1120 | so the borrowed reference's lifetime is guaranteed until the function |
| 1121 | returns. Only when such a borrowed reference must be stored or passed |
| 1122 | on, it must be turned into an owned reference by calling |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1123 | \cfunction{Py_INCREF()}. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1124 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1125 | The object reference returned from a \C{} function that is called from |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1126 | Python must be an owned reference --- ownership is tranferred from the |
| 1127 | function to its caller. |
| 1128 | |
| 1129 | \subsection{Thin Ice} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1130 | \label{thinIce} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1131 | |
| 1132 | There are a few situations where seemingly harmless use of a borrowed |
| 1133 | reference can lead to problems. These all have to do with implicit |
| 1134 | invocations of the interpreter, which can cause the owner of a |
| 1135 | reference to dispose of it. |
| 1136 | |
| 1137 | The first and most important case to know about is using |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1138 | \cfunction{Py_DECREF()} on an unrelated object while borrowing a |
| 1139 | reference to a list item. For instance: |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1140 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 1141 | \begin{verbatim} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1142 | bug(PyObject *list) { |
| 1143 | PyObject *item = PyList_GetItem(list, 0); |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1144 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1145 | PyList_SetItem(list, 1, PyInt_FromLong(0L)); |
| 1146 | PyObject_Print(item, stdout, 0); /* BUG! */ |
| 1147 | } |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 1148 | \end{verbatim} |
| 1149 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1150 | This function first borrows a reference to \code{list[0]}, then |
| 1151 | replaces \code{list[1]} with the value \code{0}, and finally prints |
| 1152 | the borrowed reference. Looks harmless, right? But it's not! |
| 1153 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1154 | Let's follow the control flow into \cfunction{PyList_SetItem()}. The list |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1155 | owns references to all its items, so when item 1 is replaced, it has |
| 1156 | to dispose of the original item 1. Now let's suppose the original |
| 1157 | item 1 was an instance of a user-defined class, and let's further |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1158 | suppose that the class defined a \method{__del__()} method. If this |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1159 | class instance has a reference count of 1, disposing of it will call |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1160 | its \method{__del__()} method. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1161 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1162 | Since it is written in Python, the \method{__del__()} method can execute |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1163 | arbitrary Python code. Could it perhaps do something to invalidate |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1164 | the reference to \code{item} in \cfunction{bug()}? You bet! Assuming |
| 1165 | that the list passed into \cfunction{bug()} is accessible to the |
| 1166 | \method{__del__()} method, it could execute a statement to the effect of |
| 1167 | \samp{del list[0]}, and assuming this was the last reference to that |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1168 | object, it would free the memory associated with it, thereby |
| 1169 | invalidating \code{item}. |
| 1170 | |
| 1171 | The solution, once you know the source of the problem, is easy: |
| 1172 | temporarily increment the reference count. The correct version of the |
| 1173 | function reads: |
| 1174 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 1175 | \begin{verbatim} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1176 | no_bug(PyObject *list) { |
| 1177 | PyObject *item = PyList_GetItem(list, 0); |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1178 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1179 | Py_INCREF(item); |
| 1180 | PyList_SetItem(list, 1, PyInt_FromLong(0L)); |
| 1181 | PyObject_Print(item, stdout, 0); |
| 1182 | Py_DECREF(item); |
| 1183 | } |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 1184 | \end{verbatim} |
| 1185 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1186 | This is a true story. An older version of Python contained variants |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1187 | of this bug and someone spent a considerable amount of time in a \C{} |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1188 | debugger to figure out why his \method{__del__()} methods would fail... |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1189 | |
| 1190 | The second case of problems with a borrowed reference is a variant |
| 1191 | involving threads. Normally, multiple threads in the Python |
| 1192 | interpreter can't get in each other's way, because there is a global |
| 1193 | lock protecting Python's entire object space. However, it is possible |
| 1194 | to temporarily release this lock using the macro |
| 1195 | \code{Py_BEGIN_ALLOW_THREADS}, and to re-acquire it using |
| 1196 | \code{Py_END_ALLOW_THREADS}. This is common around blocking I/O |
| 1197 | calls, to let other threads use the CPU while waiting for the I/O to |
| 1198 | complete. Obviously, the following function has the same problem as |
| 1199 | the previous one: |
| 1200 | |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 1201 | \begin{verbatim} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1202 | bug(PyObject *list) { |
| 1203 | PyObject *item = PyList_GetItem(list, 0); |
| 1204 | Py_BEGIN_ALLOW_THREADS |
| 1205 | ...some blocking I/O call... |
| 1206 | Py_END_ALLOW_THREADS |
| 1207 | PyObject_Print(item, stdout, 0); /* BUG! */ |
| 1208 | } |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 1209 | \end{verbatim} |
| 1210 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1211 | \subsection{NULL Pointers} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1212 | \label{nullPointers} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1213 | |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1214 | In general, functions that take object references as arguments do not |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1215 | expect you to pass them \NULL{} pointers, and will dump core (or |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1216 | cause later core dumps) if you do so. Functions that return object |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1217 | references generally return \NULL{} only to indicate that an |
| 1218 | exception occurred. The reason for not testing for \NULL{} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1219 | arguments is that functions often pass the objects they receive on to |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1220 | other function --- if each function were to test for \NULL{}, |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1221 | there would be a lot of redundant tests and the code would run slower. |
| 1222 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1223 | It is better to test for \NULL{} only at the ``source'', i.e.\ |
| 1224 | when a pointer that may be \NULL{} is received, e.g.\ from |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1225 | \cfunction{malloc()} or from a function that may raise an exception. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1226 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1227 | The macros \cfunction{Py_INCREF()} and \cfunction{Py_DECREF()} |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1228 | do not check for \NULL{} pointers --- however, their variants |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1229 | \cfunction{Py_XINCREF()} and \cfunction{Py_XDECREF()} do. |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1230 | |
| 1231 | The macros for checking for a particular object type |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1232 | (\code{Py\var{type}_Check()}) don't check for \NULL{} pointers --- |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1233 | again, there is much code that calls several of these in a row to test |
| 1234 | an object against various different expected types, and this would |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1235 | generate redundant tests. There are no variants with \NULL{} |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1236 | checking. |
| 1237 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1238 | The \C{} function calling mechanism guarantees that the argument list |
| 1239 | passed to \C{} functions (\code{args} in the examples) is never |
| 1240 | \NULL{} --- in fact it guarantees that it is always a tuple.% |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1241 | \footnote{These guarantees don't hold when you use the ``old'' style |
| 1242 | calling convention --- this is still found in much existing code.} |
| 1243 | |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1244 | It is a severe error to ever let a \NULL{} pointer ``escape'' to |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1245 | the Python user. |
Guido van Rossum | db65a6c | 1993-11-05 17:11:16 +0000 | [diff] [blame] | 1246 | |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1247 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1248 | \section{Writing Extensions in \Cpp{}} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1249 | \label{cplusplus} |
Guido van Rossum | db65a6c | 1993-11-05 17:11:16 +0000 | [diff] [blame] | 1250 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 1251 | It is possible to write extension modules in \Cpp{}. Some restrictions |
Guido van Rossum | ed39cd0 | 1995-10-08 00:17:19 +0000 | [diff] [blame] | 1252 | apply. If the main program (the Python interpreter) is compiled and |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1253 | linked by the \C{} compiler, global or static objects with constructors |
Guido van Rossum | ed39cd0 | 1995-10-08 00:17:19 +0000 | [diff] [blame] | 1254 | cannot be used. This is not a problem if the main program is linked |
Guido van Rossum | afcd589 | 1998-02-05 19:59:39 +0000 | [diff] [blame] | 1255 | by the \Cpp{} compiler. Functions that will be called by the |
| 1256 | Python interpreter (in particular, module initalization functions) |
| 1257 | have to be declared using \code{extern "C"}. |
Guido van Rossum | db65a6c | 1993-11-05 17:11:16 +0000 | [diff] [blame] | 1258 | It is unnecessary to enclose the Python header files in |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1259 | \code{extern "C" \{...\}} --- they use this form already if the symbol |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1260 | \samp{__cplusplus} is defined (all recent \Cpp{} compilers define this |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1261 | symbol). |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1262 | |
| 1263 | \chapter{Embedding Python in another application} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1264 | \label{embedding} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1265 | |
| 1266 | Embedding Python is similar to extending it, but not quite. The |
| 1267 | difference is that when you extend Python, the main program of the |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 1268 | application is still the Python interpreter, while if you embed |
Guido van Rossum | db65a6c | 1993-11-05 17:11:16 +0000 | [diff] [blame] | 1269 | Python, the main program may have nothing to do with Python --- |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1270 | instead, some parts of the application occasionally call the Python |
| 1271 | interpreter to run some Python code. |
| 1272 | |
| 1273 | So if you are embedding Python, you are providing your own main |
| 1274 | program. One of the things this main program has to do is initialize |
| 1275 | the Python interpreter. At the very least, you have to call the |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1276 | function \cfunction{Py_Initialize()}. There are optional calls to |
| 1277 | pass command line arguments to Python. Then later you can call the |
| 1278 | interpreter from any part of the application. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1279 | |
| 1280 | There are several different ways to call the interpreter: you can pass |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1281 | a string containing Python statements to |
| 1282 | \cfunction{PyRun_SimpleString()}, or you can pass a stdio file pointer |
| 1283 | and a file name (for identification in error messages only) to |
| 1284 | \cfunction{PyRun_SimpleFile()}. You can also call the lower-level |
| 1285 | operations described in the previous chapters to construct and use |
| 1286 | Python objects. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1287 | |
| 1288 | A simple demo of embedding Python can be found in the directory |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1289 | \file{Demo/embed}. |
Guido van Rossum | db65a6c | 1993-11-05 17:11:16 +0000 | [diff] [blame] | 1290 | |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1291 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 1292 | \section{Embedding Python in \Cpp{}} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1293 | \label{embeddingInCplusplus} |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1294 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 1295 | It is also possible to embed Python in a \Cpp{} program; precisely how this |
| 1296 | is done will depend on the details of the \Cpp{} system used; in general you |
| 1297 | will need to write the main program in \Cpp{}, and use the \Cpp{} compiler |
| 1298 | to compile and link your program. There is no need to recompile Python |
| 1299 | itself using \Cpp{}. |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1300 | |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1301 | |
| 1302 | \chapter{Dynamic Loading} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1303 | \label{dynload} |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1304 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1305 | On most modern systems it is possible to configure Python to support |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1306 | dynamic loading of extension modules implemented in \C{}. When shared |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1307 | libraries are used dynamic loading is configured automatically; |
| 1308 | otherwise you have to select it as a build option (see below). Once |
| 1309 | configured, dynamic loading is trivial to use: when a Python program |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1310 | executes \code{import spam}, the search for modules tries to find a |
| 1311 | file \file{spammodule.o} (\file{spammodule.so} when using shared |
Fred Drake | b789c70 | 1998-04-02 16:19:15 +0000 | [diff] [blame] | 1312 | libraries) in the module search path,% |
| 1313 | \indexiii{module}{search}{path} |
| 1314 | and if one is found, it is loaded into the executing binary and |
| 1315 | executed. Once loaded, the module acts just like a built-in extension |
| 1316 | module. |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1317 | |
Guido van Rossum | b92112d | 1995-03-20 14:24:09 +0000 | [diff] [blame] | 1318 | The advantages of dynamic loading are twofold: the ``core'' Python |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1319 | binary gets smaller, and users can extend Python with their own |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1320 | modules implemented in \C{} without having to build and maintain their |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1321 | own copy of the Python interpreter. There are also disadvantages: |
| 1322 | dynamic loading isn't available on all systems (this just means that |
| 1323 | on some systems you have to use static loading), and dynamically |
| 1324 | loading a module that was compiled for a different version of Python |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1325 | (e.g. with a different representation of objects) may dump core. |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1326 | |
| 1327 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1328 | \section{Configuring and Building the Interpreter for Dynamic Loading} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1329 | \label{dynloadConfig} |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1330 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1331 | There are three styles of dynamic loading: one using shared libraries, |
| 1332 | one using SGI IRIX 4 dynamic loading, and one using GNU dynamic |
| 1333 | loading. |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1334 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1335 | \subsection{Shared Libraries} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1336 | \label{sharedlibs} |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1337 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 1338 | The following systems support dynamic loading using shared libraries: |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1339 | SunOS 4; Solaris 2; SGI IRIX 5 (but not SGI IRIX 4!), Linux, FreeBSD, |
| 1340 | NetBSD; and probably all systems derived from SVR4, or at least those |
| 1341 | SVR4 derivatives that support shared libraries (are there any that |
| 1342 | don't?). |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1343 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1344 | You don't need to do anything to configure dynamic loading on these |
| 1345 | systems --- the \file{configure} detects the presence of the |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1346 | \code{<dlfcn.h>} header file and automatically configures dynamic |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1347 | loading. |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1348 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1349 | \subsection{SGI IRIX 4 Dynamic Loading} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1350 | \label{irixDynload} |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1351 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1352 | Only SGI IRIX 4 supports dynamic loading of modules using SGI dynamic |
| 1353 | loading. (SGI IRIX 5 might also support it but it is inferior to |
| 1354 | using shared libraries so there is no reason to; a small test didn't |
| 1355 | work right away so I gave up trying to support it.) |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1356 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1357 | Before you build Python, you first need to fetch and build the |
| 1358 | \code{dl} package written by Jack Jansen. This is available by |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1359 | anonymous ftp from \url{ftp://ftp.cwi.nl/pub/dynload/}, file |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1360 | \file{dl-1.6.tar.Z}. (The version number may change.) Follow the |
| 1361 | instructions in the package's \file{README} file to build it. |
| 1362 | |
| 1363 | Once you have built \code{dl}, you can configure Python to use it. To |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1364 | this end, you run the \program{configure} script with the option |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1365 | \code{--with-dl=\var{directory}} where \var{directory} is the absolute |
| 1366 | pathname of the \code{dl} directory. |
| 1367 | |
| 1368 | Now build and install Python as you normally would (see the |
| 1369 | \file{README} file in the toplevel Python directory.) |
| 1370 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1371 | \subsection{GNU Dynamic Loading} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1372 | \label{gnuDynload} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1373 | |
| 1374 | GNU dynamic loading supports (according to its \file{README} file) the |
| 1375 | following hardware and software combinations: VAX (Ultrix), Sun 3 |
| 1376 | (SunOS 3.4 and 4.0), Sparc (SunOS 4.0), Sequent Symmetry (Dynix), and |
| 1377 | Atari ST. There is no reason to use it on a Sparc; I haven't seen a |
| 1378 | Sun 3 for years so I don't know if these have shared libraries or not. |
| 1379 | |
Guido van Rossum | 7e924dd | 1997-02-10 16:51:52 +0000 | [diff] [blame] | 1380 | You need to fetch and build two packages. |
| 1381 | One is GNU DLD. All development of this code has been done with DLD |
Fred Drake | ca6567f | 1998-01-22 20:44:18 +0000 | [diff] [blame] | 1382 | version 3.2.3, which is available by anonymous ftp from |
| 1383 | \url{ftp://ftp.cwi.nl/pub/dynload}, file |
Guido van Rossum | 7e924dd | 1997-02-10 16:51:52 +0000 | [diff] [blame] | 1384 | \file{dld-3.2.3.tar.Z}. (A more recent version of DLD is available |
Fred Drake | ca6567f | 1998-01-22 20:44:18 +0000 | [diff] [blame] | 1385 | via \url{http://www-swiss.ai.mit.edu/~jaffer/DLD.html} but this has |
Guido van Rossum | 7e924dd | 1997-02-10 16:51:52 +0000 | [diff] [blame] | 1386 | not been tested.) |
| 1387 | The other package needed is an |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1388 | emulation of Jack Jansen's \code{dl} package that I wrote on top of |
| 1389 | GNU DLD 3.2.3. This is available from the same host and directory, |
Guido van Rossum | 98046b9 | 1997-08-14 19:50:18 +0000 | [diff] [blame] | 1390 | file \file{dl-dld-1.1.tar.Z}. (The version number may change --- but I doubt |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1391 | it will.) Follow the instructions in each package's \file{README} |
Guido van Rossum | 98046b9 | 1997-08-14 19:50:18 +0000 | [diff] [blame] | 1392 | file to configure and build them. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1393 | |
| 1394 | Now configure Python. Run the \file{configure} script with the option |
| 1395 | \code{--with-dl-dld=\var{dl-directory},\var{dld-directory}} where |
| 1396 | \var{dl-directory} is the absolute pathname of the directory where you |
| 1397 | have built the \file{dl-dld} package, and \var{dld-directory} is that |
| 1398 | of the GNU DLD package. The Python interpreter you build hereafter |
| 1399 | will support GNU dynamic loading. |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1400 | |
| 1401 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1402 | \section{Building a Dynamically Loadable Module} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1403 | \label{makedynload} |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1404 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1405 | Since there are three styles of dynamic loading, there are also three |
| 1406 | groups of instructions for building a dynamically loadable module. |
| 1407 | Instructions common for all three styles are given first. Assuming |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1408 | your module is called \module{spam}, the source filename must be |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1409 | \file{spammodule.c}, so the object name is \file{spammodule.o}. The |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1410 | module must be written as a normal Python extension module (as |
| 1411 | described earlier). |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1412 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1413 | Note that in all cases you will have to create your own Makefile that |
| 1414 | compiles your module file(s). This Makefile will have to pass two |
Fred Drake | 0fd8268 | 1998-01-09 05:39:38 +0000 | [diff] [blame] | 1415 | \samp{-I} arguments to the \C{} compiler which will make it find the |
Fred Drake | b789c70 | 1998-04-02 16:19:15 +0000 | [diff] [blame] | 1416 | Python header files. If the Make variable \makevar{PYTHONTOP} points to |
| 1417 | the toplevel Python directory, your \makevar{CFLAGS} Make variable should |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1418 | contain the options \samp{-I\$(PYTHONTOP) -I\$(PYTHONTOP)/Include}. |
Fred Drake | b789c70 | 1998-04-02 16:19:15 +0000 | [diff] [blame] | 1419 | (Most header files are in the \file{Include/} subdirectory, but the |
Guido van Rossum | 305ed11 | 1996-08-19 22:59:46 +0000 | [diff] [blame] | 1420 | \file{config.h} header lives in the toplevel directory.) |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1421 | |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1422 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1423 | \subsection{Shared Libraries} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1424 | \label{linking} |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1425 | |
Fred Drake | af8a015 | 1998-01-14 14:51:31 +0000 | [diff] [blame] | 1426 | You must link the \file{.o} file to produce a shared library. This is |
| 1427 | done using a special invocation of the \UNIX{} loader/linker, |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1428 | \manpage{ld}{1}. Unfortunately the invocation differs slightly per |
Fred Drake | af8a015 | 1998-01-14 14:51:31 +0000 | [diff] [blame] | 1429 | system. |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1430 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1431 | On SunOS 4, use |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 1432 | \begin{verbatim} |
| 1433 | ld spammodule.o -o spammodule.so |
| 1434 | \end{verbatim} |
| 1435 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1436 | On Solaris 2, use |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 1437 | \begin{verbatim} |
| 1438 | ld -G spammodule.o -o spammodule.so |
| 1439 | \end{verbatim} |
| 1440 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1441 | On SGI IRIX 5, use |
Fred Drake | 1e11a5c | 1998-02-13 07:11:32 +0000 | [diff] [blame] | 1442 | \begin{verbatim} |
| 1443 | ld -shared spammodule.o -o spammodule.so |
| 1444 | \end{verbatim} |
| 1445 | |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1446 | On other systems, consult the manual page for \manpage{ld}{1} to find |
| 1447 | what flags, if any, must be used. |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1448 | |
| 1449 | If your extension module uses system libraries that haven't already |
| 1450 | been linked with Python (e.g. a windowing system), these must be |
Fred Drake | d7bb303 | 1998-03-03 17:52:07 +0000 | [diff] [blame] | 1451 | passed to the \program{ld} command as \samp{-l} options after the |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1452 | \samp{.o} file. |
| 1453 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1454 | The resulting file \file{spammodule.so} must be copied into a directory |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1455 | along the Python module search path. |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1456 | |
| 1457 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1458 | \subsection{SGI IRIX 4 Dynamic Loading} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1459 | \label{irixLinking} |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1460 | |
Fred Drake | af8a015 | 1998-01-14 14:51:31 +0000 | [diff] [blame] | 1461 | \strong{IMPORTANT:} You must compile your extension module with the |
Fred Drake | a0dbddf | 1998-04-02 06:50:02 +0000 | [diff] [blame] | 1462 | additional \C{} flag \samp{-G0} (or \samp{-G 0}). This instructs the |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1463 | assembler to generate position-independent code. |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1464 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1465 | You don't need to link the resulting \file{spammodule.o} file; just |
Fred Drake | b789c70 | 1998-04-02 16:19:15 +0000 | [diff] [blame] | 1466 | copy it into a directory along the Python module search path.% |
| 1467 | \indexiii{module}{search}{path} |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1468 | |
| 1469 | The first time your extension is loaded, it takes some extra time and |
| 1470 | a few messages may be printed. This creates a file |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1471 | \file{spammodule.ld} which is an image that can be loaded quickly into |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1472 | the Python interpreter process. When a new Python interpreter is |
| 1473 | installed, the \code{dl} package detects this and rebuilds |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1474 | \file{spammodule.ld}. The file \file{spammodule.ld} is placed in the |
| 1475 | directory where \file{spammodule.o} was found, unless this directory is |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1476 | unwritable; in that case it is placed in a temporary |
| 1477 | directory.\footnote{Check the manual page of the \code{dl} package for |
| 1478 | details.} |
| 1479 | |
| 1480 | If your extension modules uses additional system libraries, you must |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1481 | create a file \file{spammodule.libs} in the same directory as the |
| 1482 | \file{spammodule.o}. This file should contain one or more lines with |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1483 | whitespace-separated options that will be passed to the linker --- |
| 1484 | normally only \samp{-l} options or absolute pathnames of libraries |
| 1485 | (\samp{.a} files) should be used. |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1486 | |
| 1487 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1488 | \subsection{GNU Dynamic Loading} |
Fred Drake | 3da06a6 | 1998-02-26 18:49:12 +0000 | [diff] [blame] | 1489 | \label{gnuLinking} |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1490 | |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1491 | Just copy \file{spammodule.o} into a directory along the Python module |
Fred Drake | b789c70 | 1998-04-02 16:19:15 +0000 | [diff] [blame] | 1492 | search path.% |
| 1493 | \indexiii{module}{search}{path} |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1494 | |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1495 | If your extension modules uses additional system libraries, you must |
Guido van Rossum | 5049bcb | 1995-03-13 16:55:23 +0000 | [diff] [blame] | 1496 | create a file \file{spammodule.libs} in the same directory as the |
| 1497 | \file{spammodule.o}. This file should contain one or more lines with |
Guido van Rossum | 6938f06 | 1994-08-01 12:22:53 +0000 | [diff] [blame] | 1498 | whitespace-separated absolute pathnames of libraries (\samp{.a} |
| 1499 | files). No \samp{-l} options can be used. |
Guido van Rossum | 6f0132f | 1993-11-19 13:13:22 +0000 | [diff] [blame] | 1500 | |
| 1501 | |
Guido van Rossum | 7a2dba2 | 1993-11-05 14:45:11 +0000 | [diff] [blame] | 1502 | \end{document} |