Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

setobject.h 3.3 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
  1. /* Set object interface */
  2. #ifndef Py_SETOBJECT_H
  3. #define Py_SETOBJECT_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #ifndef Py_LIMITED_API
  8. /* There are three kinds of entries in the table:
  9. 1. Unused: key == NULL and hash == 0
  10. 2. Dummy: key == dummy and hash == -1
  11. 3. Active: key != NULL and key != dummy and hash != -1
  12. The hash field of Unused slots is always zero.
  13. The hash field of Dummy slots are set to -1
  14. meaning that dummy entries can be detected by
  15. either entry->key==dummy or by entry->hash==-1.
  16. */
  17. #define PySet_MINSIZE 8
  18. typedef struct {
  19. PyObject *key;
  20. Py_hash_t hash; /* Cached hash code of the key */
  21. } setentry;
  22. /* The SetObject data structure is shared by set and frozenset objects.
  23. Invariant for sets:
  24. - hash is -1
  25. Invariants for frozensets:
  26. - data is immutable.
  27. - hash is the hash of the frozenset or -1 if not computed yet.
  28. */
  29. typedef struct {
  30. PyObject_HEAD
  31. Py_ssize_t fill; /* Number active and dummy entries*/
  32. Py_ssize_t used; /* Number active entries */
  33. /* The table contains mask + 1 slots, and that's a power of 2.
  34. * We store the mask instead of the size because the mask is more
  35. * frequently needed.
  36. */
  37. Py_ssize_t mask;
  38. /* The table points to a fixed-size smalltable for small tables
  39. * or to additional malloc'ed memory for bigger tables.
  40. * The table pointer is never NULL which saves us from repeated
  41. * runtime null-tests.
  42. */
  43. setentry *table;
  44. Py_hash_t hash; /* Only used by frozenset objects */
  45. Py_ssize_t finger; /* Search finger for pop() */
  46. setentry smalltable[PySet_MINSIZE];
  47. PyObject *weakreflist; /* List of weak references */
  48. } PySetObject;
  49. #define PySet_GET_SIZE(so) (assert(PyAnySet_Check(so)),(((PySetObject *)(so))->used))
  50. PyAPI_DATA(PyObject *) _PySet_Dummy;
  51. PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, Py_hash_t *hash);
  52. PyAPI_FUNC(int) _PySet_Update(PyObject *set, PyObject *iterable);
  53. PyAPI_FUNC(int) PySet_ClearFreeList(void);
  54. #endif /* Section excluded by Py_LIMITED_API */
  55. PyAPI_DATA(PyTypeObject) PySet_Type;
  56. PyAPI_DATA(PyTypeObject) PyFrozenSet_Type;
  57. PyAPI_DATA(PyTypeObject) PySetIter_Type;
  58. PyAPI_FUNC(PyObject *) PySet_New(PyObject *);
  59. PyAPI_FUNC(PyObject *) PyFrozenSet_New(PyObject *);
  60. PyAPI_FUNC(int) PySet_Add(PyObject *set, PyObject *key);
  61. PyAPI_FUNC(int) PySet_Clear(PyObject *set);
  62. PyAPI_FUNC(int) PySet_Contains(PyObject *anyset, PyObject *key);
  63. PyAPI_FUNC(int) PySet_Discard(PyObject *set, PyObject *key);
  64. PyAPI_FUNC(PyObject *) PySet_Pop(PyObject *set);
  65. PyAPI_FUNC(Py_ssize_t) PySet_Size(PyObject *anyset);
  66. #define PyFrozenSet_CheckExact(ob) (Py_TYPE(ob) == &PyFrozenSet_Type)
  67. #define PyAnySet_CheckExact(ob) \
  68. (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type)
  69. #define PyAnySet_Check(ob) \
  70. (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type || \
  71. PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \
  72. PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
  73. #define PySet_Check(ob) \
  74. (Py_TYPE(ob) == &PySet_Type || \
  75. PyType_IsSubtype(Py_TYPE(ob), &PySet_Type))
  76. #define PyFrozenSet_Check(ob) \
  77. (Py_TYPE(ob) == &PyFrozenSet_Type || \
  78. PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type))
  79. #ifdef __cplusplus
  80. }
  81. #endif
  82. #endif /* !Py_SETOBJECT_H */
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...