| 
									
										
										
										
											2001-10-05 21:52:26 +00: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 23:09:22 +00:00
										 |  |  | /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType,
 | 
					
						
							|  |  |  |  * and CallableProxyType. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2001-10-05 21:52:26 +00:00
										 |  |  | struct _PyWeakReference { | 
					
						
							|  |  |  |     PyObject_HEAD | 
					
						
							| 
									
										
										
										
											2004-10-30 23:09:22 +00: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 21:52:26 +00:00
										 |  |  |     PyObject *wr_object; | 
					
						
							| 
									
										
										
										
											2004-10-30 23:09:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* A callable to invoke when wr_object dies, or NULL if none. */ | 
					
						
							| 
									
										
										
										
											2001-10-05 21:52:26 +00:00
										 |  |  |     PyObject *wr_callback; | 
					
						
							| 
									
										
										
										
											2004-10-30 23:09:22 +00: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 21:52:26 +00:00
										 |  |  |     long hash; | 
					
						
							| 
									
										
										
										
											2004-10-30 23:09:22 +00: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 21:52:26 +00:00
										 |  |  |     PyWeakReference *wr_prev; | 
					
						
							|  |  |  |     PyWeakReference *wr_next; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_DATA(PyTypeObject) _PyWeakref_RefType; | 
					
						
							|  |  |  | PyAPI_DATA(PyTypeObject) _PyWeakref_ProxyType; | 
					
						
							|  |  |  | PyAPI_DATA(PyTypeObject) _PyWeakref_CallableProxyType; | 
					
						
							| 
									
										
										
										
											2001-10-05 21:52:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-02 18:57:45 +00:00
										 |  |  | #define PyWeakref_CheckRef(op) PyObject_TypeCheck(op, &_PyWeakref_RefType)
 | 
					
						
							|  |  |  | #define PyWeakref_CheckRefExact(op) \
 | 
					
						
							| 
									
										
										
										
											2001-10-05 21:52:26 +00:00
										 |  |  |         ((op)->ob_type == &_PyWeakref_RefType) | 
					
						
							|  |  |  | #define PyWeakref_CheckProxy(op) \
 | 
					
						
							|  |  |  |         (((op)->ob_type == &_PyWeakref_ProxyType) || \ | 
					
						
							|  |  |  |          ((op)->ob_type == &_PyWeakref_CallableProxyType)) | 
					
						
							| 
									
										
										
										
											2004-07-02 18:57:45 +00: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 21:52:26 +00:00
										 |  |  | #define PyWeakref_Check(op) \
 | 
					
						
							|  |  |  |         (PyWeakref_CheckRef(op) || PyWeakref_CheckProxy(op)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) PyWeakref_NewRef(PyObject *ob, | 
					
						
							| 
									
										
										
										
											2001-10-05 21:52:26 +00:00
										 |  |  |                                               PyObject *callback); | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) PyWeakref_NewProxy(PyObject *ob, | 
					
						
							| 
									
										
										
										
											2001-10-05 21:52:26 +00:00
										 |  |  |                                                 PyObject *callback); | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) PyWeakref_GetObject(PyObject *ref); | 
					
						
							| 
									
										
										
										
											2001-10-05 21:52:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(long) _PyWeakref_GetWeakrefCount(PyWeakReference *head); | 
					
						
							| 
									
										
										
										
											2001-10-05 21:52:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-20 21:21:46 +00:00
										 |  |  | PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-05 21:52:26 +00:00
										 |  |  | #define PyWeakref_GET_OBJECT(ref) (((PyWeakReference *)(ref))->wr_object)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_WEAKREFOBJECT_H */
 |