2003-11-16 12:17:49 -04:00
|
|
|
/* Set object interface */
|
|
|
|
|
|
|
|
#ifndef Py_SETOBJECT_H
|
|
|
|
#define Py_SETOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-07-30 22:16:36 -03:00
|
|
|
|
2003-11-16 12:17:49 -04:00
|
|
|
/*
|
2005-07-30 22:16:36 -03: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 00:45:16 -03: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 12:17:49 -04:00
|
|
|
*/
|
|
|
|
|
2005-07-30 22:16:36 -03:00
|
|
|
#define PySet_MINSIZE 8
|
|
|
|
|
2003-11-16 12:17:49 -04:00
|
|
|
typedef struct {
|
2005-07-30 22:16:36 -03: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 12:17:49 -04:00
|
|
|
PyObject_HEAD
|
2005-07-30 22:16:36 -03:00
|
|
|
|
2006-06-19 02:40:44 -03:00
|
|
|
Py_ssize_t fill; /* # Active + # Dummy */
|
|
|
|
Py_ssize_t used; /* # Active */
|
2005-07-30 22:16:36 -03: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 13:32:00 -03:00
|
|
|
*/
|
2006-06-19 02:40:44 -03:00
|
|
|
Py_ssize_t mask;
|
2005-07-30 22:16:36 -03:00
|
|
|
|
|
|
|
/* table points to smalltable for small tables, else to
|
|
|
|
* additional malloc'ed memory. table is never NULL! This rule
|
2005-08-01 18:39:29 -03:00
|
|
|
* saves repeated runtime null-tests.
|
2005-07-30 22:16:36 -03: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 12:17:49 -04:00
|
|
|
|
|
|
|
PyAPI_DATA(PyTypeObject) PySet_Type;
|
|
|
|
PyAPI_DATA(PyTypeObject) PyFrozenSet_Type;
|
|
|
|
|
2005-08-07 10:02:53 -03:00
|
|
|
/* Invariants for frozensets:
|
2005-07-30 22:16:36 -03:00
|
|
|
* data is immutable.
|
|
|
|
* hash is the hash of the frozenset or -1 if not computed yet.
|
2005-08-07 10:02:53 -03:00
|
|
|
* Invariants for sets:
|
|
|
|
* hash is -1
|
2005-07-30 22:16:36 -03:00
|
|
|
*/
|
|
|
|
|
2007-12-18 22:37:44 -04:00
|
|
|
#define PyFrozenSet_CheckExact(ob) (Py_TYPE(ob) == &PyFrozenSet_Type)
|
2005-08-07 10:02:53 -03:00
|
|
|
#define PyAnySet_CheckExact(ob) \
|
2007-12-18 22:37:44 -04:00
|
|
|
(Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type)
|
2003-11-17 12:42:33 -04:00
|
|
|
#define PyAnySet_Check(ob) \
|
2007-12-18 22:37:44 -04: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))
|
2008-01-28 17:47:42 -04:00
|
|
|
#define PySet_Check(ob) \
|
2008-02-03 18:51:43 -04:00
|
|
|
(Py_TYPE(ob) == &PySet_Type || \
|
|
|
|
PyType_IsSubtype(Py_TYPE(ob), &PySet_Type))
|
|
|
|
#define PyFrozenSet_Check(ob) \
|
2008-02-03 19:14:32 -04:00
|
|
|
(Py_TYPE(ob) == &PyFrozenSet_Type || \
|
2008-02-03 18:51:43 -04:00
|
|
|
PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
|
2003-11-17 12:42:33 -04:00
|
|
|
|
2005-08-16 00:47:52 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PySet_New(PyObject *);
|
|
|
|
PyAPI_FUNC(PyObject *) PyFrozenSet_New(PyObject *);
|
2006-03-04 14:41:19 -04:00
|
|
|
PyAPI_FUNC(Py_ssize_t) PySet_Size(PyObject *anyset);
|
2005-08-16 00:47:52 -03:00
|
|
|
#define PySet_GET_SIZE(so) (((PySetObject *)(so))->used)
|
2006-03-30 18:45:35 -04:00
|
|
|
PyAPI_FUNC(int) PySet_Clear(PyObject *set);
|
2005-08-16 00:47:52 -03:00
|
|
|
PyAPI_FUNC(int) PySet_Contains(PyObject *anyset, PyObject *key);
|
2005-08-16 07:44:15 -03:00
|
|
|
PyAPI_FUNC(int) PySet_Discard(PyObject *set, PyObject *key);
|
2005-08-16 00:47:52 -03:00
|
|
|
PyAPI_FUNC(int) PySet_Add(PyObject *set, PyObject *key);
|
2007-03-20 18:27:24 -03: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 00:47:52 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PySet_Pop(PyObject *set);
|
2006-03-30 18:45:35 -04:00
|
|
|
PyAPI_FUNC(int) _PySet_Update(PyObject *set, PyObject *iterable);
|
2005-08-16 00:47:52 -03:00
|
|
|
|
2003-11-16 12:17:49 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_SETOBJECT_H */
|