Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 1 | .. highlightlang:: c |
| 2 | |
| 3 | .. _capsules: |
| 4 | |
| 5 | Capsules |
| 6 | -------- |
| 7 | |
| 8 | .. index:: object: Capsule |
| 9 | |
| 10 | Refer to :ref:`using-capsules` for more information on using these objects. |
| 11 | |
| 12 | |
| 13 | .. ctype:: PyCapsule |
| 14 | |
| 15 | This subtype of :ctype:`PyObject` represents an opaque value, useful for C |
| 16 | extension modules who need to pass an opaque value (as a :ctype:`void\*` |
| 17 | pointer) through Python code to other C code. It is often used to make a C |
| 18 | function pointer defined in one module available to other modules, so the |
| 19 | regular import mechanism can be used to access C APIs defined in dynamically |
| 20 | loaded modules. |
| 21 | |
| 22 | .. ctype:: PyCapsule_Destructor |
| 23 | |
| 24 | The type of a destructor callback for a capsule. Defined as:: |
| 25 | |
| 26 | typedef void (*PyCapsule_Destructor)(PyObject *); |
| 27 | |
| 28 | See :cfunc:`PyCapsule_New` for the semantics of PyCapsule_Destructor |
| 29 | callbacks. |
| 30 | |
| 31 | |
| 32 | .. cfunction:: int PyCapsule_CheckExact(PyObject *p) |
| 33 | |
| 34 | Return true if its argument is a :ctype:`PyCapsule`. |
| 35 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 36 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 37 | .. cfunction:: PyObject* PyCapsule_New(void *pointer, const char *name, PyCapsule_Destructor destructor) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 38 | |
| 39 | Create a :ctype:`PyCapsule` encapsulating the *pointer*. The *pointer* |
| 40 | argument may not be *NULL*. |
| 41 | |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 42 | On failure, set an exception and return *NULL*. |
| 43 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 44 | The *name* string may either be *NULL* or a pointer to a valid C string. If |
| 45 | non-*NULL*, this string must outlive the capsule. (Though it is permitted to |
| 46 | free it inside the *destructor*.) |
| 47 | |
| 48 | If the *destructor* argument is not *NULL*, it will be called with the |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 49 | capsule as its argument when it is destroyed. |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 50 | |
| 51 | If this capsule will be stored as an attribute of a module, the *name* should |
| 52 | be specified as ``modulename.attributename``. This will enable other modules |
| 53 | to import the capsule using :cfunc:`PyCapsule_Import`. |
| 54 | |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 55 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 56 | .. cfunction:: void* PyCapsule_GetPointer(PyObject *capsule, const char *name) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 57 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 58 | Retrieve the *pointer* stored in the capsule. On failure, set an exception |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 59 | and return *NULL*. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 60 | |
| 61 | The *name* parameter must compare exactly to the name stored in the capsule. |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 62 | If the name stored in the capsule is *NULL*, the *name* passed in must also |
| 63 | be *NULL*. Python uses the C function :cfunc:`strcmp` to compare capsule |
| 64 | names. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 65 | |
| 66 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 67 | .. cfunction:: PyCapsule_Destructor PyCapsule_GetDestructor(PyObject *capsule) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 68 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 69 | Return the current destructor stored in the capsule. On failure, set an |
| 70 | exception and return *NULL*. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 71 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 72 | It is legal for a capsule to have a *NULL* destructor. This makes a *NULL* |
| 73 | return code somewhat ambiguous; use :cfunc:`PyCapsule_IsValid` or |
Georg Brandl | 30f4a4c | 2009-05-06 08:32:17 +0000 | [diff] [blame] | 74 | :cfunc:`PyErr_Occurred` to disambiguate. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 75 | |
| 76 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 77 | .. cfunction:: void* PyCapsule_GetContext(PyObject *capsule) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 78 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 79 | Return the current context stored in the capsule. On failure, set an |
| 80 | exception and return *NULL*. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 81 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 82 | It is legal for a capsule to have a *NULL* context. This makes a *NULL* |
| 83 | return code somewhat ambiguous; use :cfunc:`PyCapsule_IsValid` or |
Georg Brandl | 30f4a4c | 2009-05-06 08:32:17 +0000 | [diff] [blame] | 84 | :cfunc:`PyErr_Occurred` to disambiguate. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 85 | |
| 86 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 87 | .. cfunction:: const char* PyCapsule_GetName(PyObject *capsule) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 88 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 89 | Return the current name stored in the capsule. On failure, set an exception |
| 90 | and return *NULL*. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 91 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 92 | It is legal for a capsule to have a *NULL* name. This makes a *NULL* return |
| 93 | code somewhat ambiguous; use :cfunc:`PyCapsule_IsValid` or |
Georg Brandl | 30f4a4c | 2009-05-06 08:32:17 +0000 | [diff] [blame] | 94 | :cfunc:`PyErr_Occurred` to disambiguate. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 95 | |
| 96 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 97 | .. cfunction:: void* PyCapsule_Import(const char *name, int no_block) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 98 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 99 | Import a pointer to a C object from a capsule attribute in a module. The |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 100 | *name* parameter should specify the full name to the attribute, as in |
| 101 | ``module.attribute``. The *name* stored in the capsule must match this |
| 102 | string exactly. If *no_block* is true, import the module without blocking |
| 103 | (using :cfunc:`PyImport_ImportModuleNoBlock`). If *no_block* is false, |
| 104 | import the module conventionally (using :cfunc:`PyImport_ImportModule`). |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 105 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 106 | Return the capsule's internal *pointer* on success. On failure, set an |
| 107 | exception and return *NULL*. However, if :cfunc:`PyCapsule_Import` failed to |
| 108 | import the module, and *no_block* was true, no exception is set. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 109 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 110 | .. cfunction:: int PyCapsule_IsValid(PyObject *capsule, const char *name) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 111 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 112 | Determines whether or not *capsule* is a valid capsule. A valid capsule is |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 113 | non-*NULL*, passes :cfunc:`PyCapsule_CheckExact`, has a non-*NULL* pointer |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 114 | stored in it, and its internal name matches the *name* parameter. (See |
| 115 | :cfunc:`PyCapsule_GetPointer` for information on how capsule names are |
| 116 | compared.) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 117 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 118 | In other words, if :cfunc:`PyCapsule_IsValid` returns a true value, calls to |
| 119 | any of the accessors (any function starting with :cfunc:`PyCapsule_Get`) are |
| 120 | guaranteed to succeed. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 121 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 122 | Return a nonzero value if the object is valid and matches the name passed in. |
| 123 | Return 0 otherwise. This function will not fail. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 124 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 125 | .. cfunction:: int PyCapsule_SetContext(PyObject *capsule, void *context) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 126 | |
| 127 | Set the context pointer inside *capsule* to *context*. |
| 128 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 129 | Return 0 on success. Return nonzero and set an exception on failure. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 130 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 131 | .. cfunction:: int PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 132 | |
| 133 | Set the destructor inside *capsule* to *destructor*. |
| 134 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 135 | Return 0 on success. Return nonzero and set an exception on failure. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 136 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 137 | .. cfunction:: int PyCapsule_SetName(PyObject *capsule, const char *name) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 138 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 139 | Set the name inside *capsule* to *name*. If non-*NULL*, the name must |
| 140 | outlive the capsule. If the previous *name* stored in the capsule was not |
| 141 | *NULL*, no attempt is made to free it. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 142 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 143 | Return 0 on success. Return nonzero and set an exception on failure. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 144 | |
Georg Brandl | f05f820 | 2009-05-05 22:53:19 +0000 | [diff] [blame] | 145 | .. cfunction:: int PyCapsule_SetPointer(PyObject *capsule, void *pointer) |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 146 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 147 | Set the void pointer inside *capsule* to *pointer*. The pointer may not be |
| 148 | *NULL*. |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 149 | |
Benjamin Peterson | b9ce9b5 | 2009-05-05 22:43:21 +0000 | [diff] [blame] | 150 | Return 0 on success. Return nonzero and set an exception on failure. |