| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | .. highlightlang:: c
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. _capsules:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Capsules
 | 
					
						
							|  |  |  | --------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. index:: object: Capsule
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Refer to :ref:`using-capsules` for more information on using these objects.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:type:: PyCapsule
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    This subtype of :c:type:`PyObject` represents an opaque value, useful for C
 | 
					
						
							|  |  |  |    extension modules who need to pass an opaque value (as a :c:type:`void\*`
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  |    pointer) through Python code to other C code.  It is often used to make a C
 | 
					
						
							|  |  |  |    function pointer defined in one module available to other modules, so the
 | 
					
						
							|  |  |  |    regular import mechanism can be used to access C APIs defined in dynamically
 | 
					
						
							|  |  |  |    loaded modules.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:type:: PyCapsule_Destructor
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    The type of a destructor callback for a capsule.  Defined as::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       typedef void (*PyCapsule_Destructor)(PyObject *);
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    See :c:func:`PyCapsule_New` for the semantics of PyCapsule_Destructor
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  |    callbacks.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: int PyCapsule_CheckExact(PyObject *p)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Return true if its argument is a :c:type:`PyCapsule`.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: PyObject* PyCapsule_New(void *pointer, const char *name, PyCapsule_Destructor destructor)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    Create a :c:type:`PyCapsule` encapsulating the *pointer*.  The *pointer*
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  |    argument may not be *NULL*.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    On failure, set an exception and return *NULL*.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    The *name* string may either be *NULL* or a pointer to a valid C string.  If
 | 
					
						
							|  |  |  |    non-*NULL*, this string must outlive the capsule.  (Though it is permitted to
 | 
					
						
							|  |  |  |    free it inside the *destructor*.)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    If the *destructor* argument is not *NULL*, it will be called with the
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:53:19 +00:00
										 |  |  |    capsule as its argument when it is destroyed.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    If this capsule will be stored as an attribute of a module, the *name* should
 | 
					
						
							|  |  |  |    be specified as ``modulename.attributename``.  This will enable other modules
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    to import the capsule using :c:func:`PyCapsule_Import`.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: void* PyCapsule_GetPointer(PyObject *capsule, const char *name)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:53:19 +00:00
										 |  |  |    Retrieve the *pointer* stored in the capsule.  On failure, set an exception
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    and return *NULL*.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    The *name* parameter must compare exactly to the name stored in the capsule.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    If the name stored in the capsule is *NULL*, the *name* passed in must also
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    be *NULL*.  Python uses the C function :c:func:`strcmp` to compare capsule
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    names.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: PyCapsule_Destructor PyCapsule_GetDestructor(PyObject *capsule)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Return the current destructor stored in the capsule.  On failure, set an
 | 
					
						
							|  |  |  |    exception and return *NULL*.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    It is legal for a capsule to have a *NULL* destructor.  This makes a *NULL*
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or
 | 
					
						
							|  |  |  |    :c:func:`PyErr_Occurred` to disambiguate.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: void* PyCapsule_GetContext(PyObject *capsule)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Return the current context stored in the capsule.  On failure, set an
 | 
					
						
							|  |  |  |    exception and return *NULL*.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    It is legal for a capsule to have a *NULL* context.  This makes a *NULL*
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or
 | 
					
						
							|  |  |  |    :c:func:`PyErr_Occurred` to disambiguate.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: const char* PyCapsule_GetName(PyObject *capsule)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Return the current name stored in the capsule.  On failure, set an exception
 | 
					
						
							|  |  |  |    and return *NULL*.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    It is legal for a capsule to have a *NULL* name.  This makes a *NULL* return
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or
 | 
					
						
							|  |  |  |    :c:func:`PyErr_Occurred` to disambiguate.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: void* PyCapsule_Import(const char *name, int no_block)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:53:19 +00:00
										 |  |  |    Import a pointer to a C object from a capsule attribute in a module.  The
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    *name* parameter should specify the full name to the attribute, as in
 | 
					
						
							|  |  |  |    ``module.attribute``.  The *name* stored in the capsule must match this
 | 
					
						
							|  |  |  |    string exactly.  If *no_block* is true, import the module without blocking
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    (using :c:func:`PyImport_ImportModuleNoBlock`).  If *no_block* is false,
 | 
					
						
							|  |  |  |    import the module conventionally (using :c:func:`PyImport_ImportModule`).
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Return the capsule's internal *pointer* on success.  On failure, set an
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    exception and return *NULL*.  However, if :c:func:`PyCapsule_Import` failed to
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    import the module, and *no_block* was true, no exception is set.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: int PyCapsule_IsValid(PyObject *capsule, const char *name)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Determines whether or not *capsule* is a valid capsule.  A valid capsule is
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    non-*NULL*, passes :c:func:`PyCapsule_CheckExact`, has a non-*NULL* pointer
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    stored in it, and its internal name matches the *name* parameter.  (See
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    :c:func:`PyCapsule_GetPointer` for information on how capsule names are
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    compared.)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  |    In other words, if :c:func:`PyCapsule_IsValid` returns a true value, calls to
 | 
					
						
							|  |  |  |    any of the accessors (any function starting with :c:func:`PyCapsule_Get`) are
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    guaranteed to succeed.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Return a nonzero value if the object is valid and matches the name passed in.
 | 
					
						
							|  |  |  |    Return 0 otherwise.  This function will not fail.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: int PyCapsule_SetContext(PyObject *capsule, void *context)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Set the context pointer inside *capsule* to *context*.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:53:19 +00:00
										 |  |  |    Return 0 on success.  Return nonzero and set an exception on failure.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: int PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Set the destructor inside *capsule* to *destructor*.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Return 0 on success.  Return nonzero and set an exception on failure.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: int PyCapsule_SetName(PyObject *capsule, const char *name)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Set the name inside *capsule* to *name*.  If non-*NULL*, the name must
 | 
					
						
							|  |  |  |    outlive the capsule.  If the previous *name* stored in the capsule was not
 | 
					
						
							|  |  |  |    *NULL*, no attempt is made to free it.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Return 0 on success.  Return nonzero and set an exception on failure.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-06 10:11:56 +00:00
										 |  |  | .. c:function:: int PyCapsule_SetPointer(PyObject *capsule, void *pointer)
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Set the void pointer inside *capsule* to *pointer*.  The pointer may not be
 | 
					
						
							|  |  |  |    *NULL*.
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:43:21 +00:00
										 |  |  |    Return 0 on success.  Return nonzero and set an exception on failure.
 |