| 
									
										
										
										
											2003-11-16 16:17:49 +00:00
										 |  |  | /* Set object interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef Py_SETOBJECT_H
 | 
					
						
							|  |  |  | #define Py_SETOBJECT_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-31 01:16:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-16 16:17:49 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-07-31 01:16:36 +00:00
										 |  |  | There are three kinds of slots in the table: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 1. Unused:  key == NULL | 
					
						
							|  |  |  | 2. Active:  key != NULL and key != dummy | 
					
						
							|  |  |  | 3. Dummy:   key == dummy | 
					
						
							| 
									
										
										
										
											2005-08-02 03:45:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Note: .pop() abuses the hash field of an Unused or Dummy slot to | 
					
						
							|  |  |  | hold a search finger.  The hash field of Unused or Dummy slots has | 
					
						
							|  |  |  | no meaning otherwise. | 
					
						
							| 
									
										
										
										
											2003-11-16 16:17:49 +00:00
										 |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-31 01:16:36 +00:00
										 |  |  | #define PySet_MINSIZE 8
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-16 16:17:49 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2005-07-31 01:16:36 +00:00
										 |  |  | 	long hash;      /* cached hash code for the entry key */ | 
					
						
							|  |  |  | 	PyObject *key; | 
					
						
							|  |  |  | } setentry; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  | This data structure is shared by set and frozenset objects. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct _setobject PySetObject; | 
					
						
							|  |  |  | struct _setobject { | 
					
						
							| 
									
										
										
										
											2003-11-16 16:17:49 +00:00
										 |  |  | 	PyObject_HEAD | 
					
						
							| 
									
										
										
										
											2005-07-31 01:16:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-19 05:40:44 +00:00
										 |  |  | 	Py_ssize_t fill;  /* # Active + # Dummy */ | 
					
						
							|  |  |  | 	Py_ssize_t used;  /* # Active */ | 
					
						
							| 
									
										
										
										
											2005-07-31 01:16:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* The table contains mask + 1 slots, and that's a power of 2.
 | 
					
						
							|  |  |  | 	 * We store the mask instead of the size because the mask is more | 
					
						
							|  |  |  | 	 * frequently needed. | 
					
						
							| 
									
										
										
										
											2004-10-28 16:32:00 +00:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2006-06-19 05:40:44 +00:00
										 |  |  | 	Py_ssize_t mask; | 
					
						
							| 
									
										
										
										
											2005-07-31 01:16:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* table points to smalltable for small tables, else to
 | 
					
						
							|  |  |  | 	 * additional malloc'ed memory.  table is never NULL!  This rule | 
					
						
							| 
									
										
										
										
											2005-08-01 21:39:29 +00:00
										 |  |  | 	 * saves repeated runtime null-tests. | 
					
						
							| 
									
										
										
										
											2005-07-31 01:16:36 +00:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	setentry *table; | 
					
						
							|  |  |  | 	setentry *(*lookup)(PySetObject *so, PyObject *key, long hash); | 
					
						
							|  |  |  | 	setentry smalltable[PySet_MINSIZE]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	long hash;		/* only used by frozenset objects */ | 
					
						
							|  |  |  | 	PyObject *weakreflist;	/* List of weak references */ | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2003-11-16 16:17:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | PyAPI_DATA(PyTypeObject) PySet_Type; | 
					
						
							|  |  |  | PyAPI_DATA(PyTypeObject) PyFrozenSet_Type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-08-07 13:02:53 +00:00
										 |  |  | /* Invariants for frozensets:
 | 
					
						
							| 
									
										
										
										
											2005-07-31 01:16:36 +00:00
										 |  |  |  *     data is immutable. | 
					
						
							|  |  |  |  *     hash is the hash of the frozenset or -1 if not computed yet. | 
					
						
							| 
									
										
										
										
											2005-08-07 13:02:53 +00:00
										 |  |  |  * Invariants for sets: | 
					
						
							|  |  |  |  *     hash is -1 | 
					
						
							| 
									
										
										
										
											2005-07-31 01:16:36 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-21 06:55:02 +00:00
										 |  |  | #define PyFrozenSet_CheckExact(ob) (Py_Type(ob) == &PyFrozenSet_Type)
 | 
					
						
							| 
									
										
										
										
											2005-08-07 13:02:53 +00:00
										 |  |  | #define PyAnySet_CheckExact(ob) \
 | 
					
						
							| 
									
										
										
										
											2007-07-21 06:55:02 +00:00
										 |  |  | 	(Py_Type(ob) == &PySet_Type || Py_Type(ob) == &PyFrozenSet_Type) | 
					
						
							| 
									
										
										
										
											2003-11-17 16:42:33 +00:00
										 |  |  | #define PyAnySet_Check(ob) \
 | 
					
						
							| 
									
										
										
										
											2007-07-21 06:55:02 +00:00
										 |  |  | 	(Py_Type(ob) == &PySet_Type || Py_Type(ob) == &PyFrozenSet_Type || \ | 
					
						
							|  |  |  | 	  PyType_IsSubtype(Py_Type(ob), &PySet_Type) || \ | 
					
						
							|  |  |  | 	  PyType_IsSubtype(Py_Type(ob), &PyFrozenSet_Type)) | 
					
						
							| 
									
										
										
										
											2003-11-17 16:42:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-08-16 03:47:52 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) PySet_New(PyObject *); | 
					
						
							|  |  |  | PyAPI_FUNC(PyObject *) PyFrozenSet_New(PyObject *); | 
					
						
							| 
									
										
										
										
											2006-03-04 18:41:19 +00:00
										 |  |  | PyAPI_FUNC(Py_ssize_t) PySet_Size(PyObject *anyset); | 
					
						
							| 
									
										
										
										
											2005-08-16 03:47:52 +00:00
										 |  |  | #define PySet_GET_SIZE(so) (((PySetObject *)(so))->used)
 | 
					
						
							| 
									
										
										
										
											2006-03-30 22:45:35 +00:00
										 |  |  | PyAPI_FUNC(int) PySet_Clear(PyObject *set); | 
					
						
							| 
									
										
										
										
											2005-08-16 03:47:52 +00:00
										 |  |  | PyAPI_FUNC(int) PySet_Contains(PyObject *anyset, PyObject *key); | 
					
						
							| 
									
										
										
										
											2005-08-16 10:44:15 +00:00
										 |  |  | PyAPI_FUNC(int) PySet_Discard(PyObject *set, PyObject *key); | 
					
						
							| 
									
										
										
										
											2005-08-16 03:47:52 +00:00
										 |  |  | PyAPI_FUNC(int) PySet_Add(PyObject *set, PyObject *key); | 
					
						
							| 
									
										
										
										
											2007-03-20 21:27:24 +00:00
										 |  |  | PyAPI_FUNC(int) _PySet_Next(PyObject *set, Py_ssize_t *pos, PyObject **key); | 
					
						
							|  |  |  | PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash); | 
					
						
							| 
									
										
										
										
											2005-08-16 03:47:52 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) PySet_Pop(PyObject *set); | 
					
						
							| 
									
										
										
										
											2006-03-30 22:45:35 +00:00
										 |  |  | PyAPI_FUNC(int) _PySet_Update(PyObject *set, PyObject *iterable); | 
					
						
							| 
									
										
										
										
											2005-08-16 03:47:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-16 16:17:49 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_SETOBJECT_H */
 |