2001-10-05 18:52:26 -03:00
|
|
|
/* Weak references objects for Python. */
|
|
|
|
|
|
|
|
#ifndef Py_WEAKREFOBJECT_H
|
|
|
|
#define Py_WEAKREFOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _PyWeakReference PyWeakReference;
|
|
|
|
|
2004-10-30 20:09:22 -03:00
|
|
|
/* PyWeakReference is the base struct for the Python ReferenceType, ProxyType,
|
|
|
|
* and CallableProxyType.
|
|
|
|
*/
|
2001-10-05 18:52:26 -03:00
|
|
|
struct _PyWeakReference {
|
|
|
|
PyObject_HEAD
|
2004-10-30 20:09:22 -03:00
|
|
|
|
|
|
|
/* The object to which this is a weak reference, or Py_None if none.
|
|
|
|
* Note that this is a stealth reference: wr_object's refcount is
|
|
|
|
* not incremented to reflect this pointer.
|
|
|
|
*/
|
2001-10-05 18:52:26 -03:00
|
|
|
PyObject *wr_object;
|
2004-10-30 20:09:22 -03:00
|
|
|
|
|
|
|
/* A callable to invoke when wr_object dies, or NULL if none. */
|
2001-10-05 18:52:26 -03:00
|
|
|
PyObject *wr_callback;
|
2004-10-30 20:09:22 -03:00
|
|
|
|
|
|
|
/* A cache for wr_object's hash code. As usual for hashes, this is -1
|
|
|
|
* if the hash code isn't known yet.
|
|
|
|
*/
|
2001-10-05 18:52:26 -03:00
|
|
|
long hash;
|
2004-10-30 20:09:22 -03:00
|
|
|
|
|
|
|
/* If wr_object is weakly referenced, wr_object has a doubly-linked NULL-
|
|
|
|
* terminated list of weak references to it. These are the list pointers.
|
|
|
|
* If wr_object goes away, wr_object is set to Py_None, and these pointers
|
|
|
|
* have no meaning then.
|
|
|
|
*/
|
2001-10-05 18:52:26 -03:00
|
|
|
PyWeakReference *wr_prev;
|
|
|
|
PyWeakReference *wr_next;
|
|
|
|
};
|
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_DATA(PyTypeObject) _PyWeakref_RefType;
|
|
|
|
PyAPI_DATA(PyTypeObject) _PyWeakref_ProxyType;
|
|
|
|
PyAPI_DATA(PyTypeObject) _PyWeakref_CallableProxyType;
|
2001-10-05 18:52:26 -03:00
|
|
|
|
2004-07-02 15:57:45 -03:00
|
|
|
#define PyWeakref_CheckRef(op) PyObject_TypeCheck(op, &_PyWeakref_RefType)
|
|
|
|
#define PyWeakref_CheckRefExact(op) \
|
2007-12-18 22:37:44 -04:00
|
|
|
(Py_TYPE(op) == &_PyWeakref_RefType)
|
2001-10-05 18:52:26 -03:00
|
|
|
#define PyWeakref_CheckProxy(op) \
|
2007-12-18 22:37:44 -04:00
|
|
|
((Py_TYPE(op) == &_PyWeakref_ProxyType) || \
|
|
|
|
(Py_TYPE(op) == &_PyWeakref_CallableProxyType))
|
2004-07-02 15:57:45 -03:00
|
|
|
|
|
|
|
/* This macro calls PyWeakref_CheckRef() last since that can involve a
|
|
|
|
function call; this makes it more likely that the function call
|
|
|
|
will be avoided. */
|
2001-10-05 18:52:26 -03:00
|
|
|
#define PyWeakref_Check(op) \
|
|
|
|
(PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op))
|
|
|
|
|
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob,
|
2001-10-05 18:52:26 -03:00
|
|
|
PyObject *callback);
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob,
|
2001-10-05 18:52:26 -03:00
|
|
|
PyObject *callback);
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref);
|
2001-10-05 18:52:26 -03:00
|
|
|
|
2006-08-02 03:14:22 -03:00
|
|
|
PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head);
|
2001-10-05 18:52:26 -03:00
|
|
|
|
2003-11-20 17:21:46 -04:00
|
|
|
PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self);
|
|
|
|
|
2001-10-05 18:52:26 -03:00
|
|
|
#define PyWeakref_GET_OBJECT(ref) (((PyWeakReference *)(ref))->wr_object)
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_WEAKREFOBJECT_H */
|