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