| 
									
										
										
										
											2021-06-10 08:46:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef Py_INTERNAL_DICT_H
 | 
					
						
							|  |  |  | #define Py_INTERNAL_DICT_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef Py_BUILD_CORE
 | 
					
						
							|  |  |  | #  error "this header requires Py_BUILD_CORE define"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-29 22:21:39 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-09 12:59:26 -07:00
										 |  |  | /* runtime lifecycle */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern void _PyDict_Fini(PyInterpreterState *interp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* other API */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef WITH_FREELISTS
 | 
					
						
							|  |  |  | // without freelists
 | 
					
						
							|  |  |  | #  define PyDict_MAXFREELIST 0
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef PyDict_MAXFREELIST
 | 
					
						
							|  |  |  | #  define PyDict_MAXFREELIST 80
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct _Py_dict_state { | 
					
						
							|  |  |  | #if PyDict_MAXFREELIST > 0
 | 
					
						
							|  |  |  |     /* Dictionary reuse scheme to save calls to malloc and free */ | 
					
						
							|  |  |  |     PyDictObject *free_list[PyDict_MAXFREELIST]; | 
					
						
							|  |  |  |     int numfree; | 
					
						
							|  |  |  |     PyDictKeysObject *keys_free_list[PyDict_MAXFREELIST]; | 
					
						
							|  |  |  |     int keys_numfree; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-29 22:21:39 -06:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  |     /* Cached hash code of me_key. */ | 
					
						
							|  |  |  |     Py_hash_t me_hash; | 
					
						
							|  |  |  |     PyObject *me_key; | 
					
						
							|  |  |  |     PyObject *me_value; /* This field is only meaningful for combined tables */ | 
					
						
							|  |  |  | } PyDictKeyEntry; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-25 15:41:55 +01:00
										 |  |  | extern PyDictKeysObject *_PyDict_NewKeysForClass(void); | 
					
						
							|  |  |  | extern PyObject *_PyDict_FromKeys(PyObject *, PyObject *, PyObject *); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Gets a version number unique to the current state of the keys of dict, if possible.
 | 
					
						
							|  |  |  |  * Returns the version number, or zero if it was not possible to get a version number. */ | 
					
						
							|  |  |  | extern uint32_t _PyDictKeys_GetVersionForCurrentState(PyDictKeysObject *dictkeys); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern Py_ssize_t _PyDict_KeysSize(PyDictKeysObject *keys); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-28 09:54:10 +01:00
										 |  |  | /* _Py_dict_lookup() returns index of entry which can be used like DK_ENTRIES(dk)[index].
 | 
					
						
							| 
									
										
										
										
											2016-09-07 17:40:12 -07:00
										 |  |  |  * -1 when no entry found, -3 when compare raises error. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-02-25 15:41:55 +01:00
										 |  |  | extern Py_ssize_t _Py_dict_lookup(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern Py_ssize_t _PyDict_GetItemHint(PyDictObject *, PyObject *, Py_ssize_t, PyObject **); | 
					
						
							|  |  |  | extern Py_ssize_t _PyDictKeys_StringLookup(PyDictKeysObject* dictkeys, PyObject *key); | 
					
						
							|  |  |  | extern PyObject *_PyDict_LoadGlobal(PyDictObject *, PyDictObject *, PyObject *); | 
					
						
							| 
									
										
										
										
											2021-05-28 09:54:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-19 05:30:37 -05:00
										 |  |  | /* Consumes references to key and value */ | 
					
						
							| 
									
										
										
										
											2022-02-25 15:41:55 +01:00
										 |  |  | extern int _PyDict_SetItem_Take2(PyDictObject *op, PyObject *key, PyObject *value); | 
					
						
							|  |  |  | extern int _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, PyObject *name, PyObject *value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern PyObject *_PyDict_Pop_KnownHash(PyObject *, PyObject *, Py_hash_t, PyObject *); | 
					
						
							| 
									
										
										
										
											2015-05-29 22:21:39 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 17:40:12 -07:00
										 |  |  | #define DKIX_EMPTY (-1)
 | 
					
						
							|  |  |  | #define DKIX_DUMMY (-2)  /* Used internally */
 | 
					
						
							|  |  |  | #define DKIX_ERROR (-3)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-28 09:54:10 +01:00
										 |  |  | typedef enum { | 
					
						
							|  |  |  |     DICT_KEYS_GENERAL = 0, | 
					
						
							|  |  |  |     DICT_KEYS_UNICODE = 1, | 
					
						
							|  |  |  |     DICT_KEYS_SPLIT = 2 | 
					
						
							|  |  |  | } DictKeysKind; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-07 17:40:12 -07:00
										 |  |  | /* See dictobject.c for actual layout of DictKeysObject */ | 
					
						
							| 
									
										
										
										
											2015-05-29 22:21:39 -06:00
										 |  |  | struct _dictkeysobject { | 
					
						
							|  |  |  |     Py_ssize_t dk_refcnt; | 
					
						
							| 
									
										
										
										
											2016-09-08 12:01:25 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Size of the hash table (dk_indices). It must be a power of 2. */ | 
					
						
							| 
									
										
										
										
											2021-05-28 09:54:10 +01:00
										 |  |  |     uint8_t dk_log2_size; | 
					
						
							| 
									
										
										
										
											2016-09-08 12:01:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-22 20:03:15 +09:00
										 |  |  |     /* Size of the hash table (dk_indices) by bytes. */ | 
					
						
							|  |  |  |     uint8_t dk_log2_index_bytes; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-28 09:54:10 +01:00
										 |  |  |     /* Kind of keys */ | 
					
						
							|  |  |  |     uint8_t dk_kind; | 
					
						
							| 
									
										
										
										
											2016-09-08 12:01:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-28 09:54:10 +01:00
										 |  |  |     /* Version number -- Reset to 0 by any modification to keys */ | 
					
						
							|  |  |  |     uint32_t dk_version; | 
					
						
							| 
									
										
										
										
											2016-09-08 12:01:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-14 15:02:01 +02:00
										 |  |  |     /* Number of usable entries in dk_entries. */ | 
					
						
							| 
									
										
										
										
											2015-05-29 22:21:39 -06:00
										 |  |  |     Py_ssize_t dk_usable; | 
					
						
							| 
									
										
										
										
											2016-09-08 12:01:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-14 15:02:01 +02:00
										 |  |  |     /* Number of used entries in dk_entries. */ | 
					
						
							| 
									
										
										
										
											2016-09-08 12:01:25 -07:00
										 |  |  |     Py_ssize_t dk_nentries; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Actual hash table of dk_size entries. It holds indices in dk_entries,
 | 
					
						
							|  |  |  |        or DKIX_EMPTY(-1) or DKIX_DUMMY(-2). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        Indices must be: 0 <= indice < USABLE_FRACTION(dk_size). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        The size in bytes of an indice depends on dk_size: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |        - 1 byte if dk_size <= 0xff (char*) | 
					
						
							|  |  |  |        - 2 bytes if dk_size <= 0xffff (int16_t*) | 
					
						
							|  |  |  |        - 4 bytes if dk_size <= 0xffffffff (int32_t*) | 
					
						
							| 
									
										
										
										
											2016-09-08 13:16:41 -07:00
										 |  |  |        - 8 bytes otherwise (int64_t*) | 
					
						
							| 
									
										
										
										
											2016-09-08 12:01:25 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-19 22:41:19 -07:00
										 |  |  |        Dynamically sized, SIZEOF_VOID_P is minimum. */ | 
					
						
							|  |  |  |     char dk_indices[];  /* char is required to avoid strict aliasing. */ | 
					
						
							| 
									
										
										
										
											2016-09-08 12:01:25 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* "PyDictKeyEntry dk_entries[dk_usable];" array follows:
 | 
					
						
							|  |  |  |        see the DK_ENTRIES() macro */ | 
					
						
							| 
									
										
										
										
											2015-05-29 22:21:39 -06:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-08 11:50:38 +00:00
										 |  |  | /* This must be no more than 250, for the prefix size to fit in one byte. */ | 
					
						
							|  |  |  | #define SHARED_KEYS_MAX_SIZE 30
 | 
					
						
							|  |  |  | #define NEXT_LOG2_SHARED_KEYS_MAX_SIZE 6
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Layout of dict values:
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The PyObject *values are preceded by an array of bytes holding | 
					
						
							|  |  |  |  * the insertion order and size. | 
					
						
							|  |  |  |  * [-1] = prefix size. [-2] = used size. size[-2-n...] = insertion order. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-10-06 13:19:53 +01:00
										 |  |  | struct _dictvalues { | 
					
						
							|  |  |  |     PyObject *values[1]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-10 08:46:01 +01:00
										 |  |  | #define DK_LOG_SIZE(dk)  ((dk)->dk_log2_size)
 | 
					
						
							|  |  |  | #if SIZEOF_VOID_P > 4
 | 
					
						
							|  |  |  | #define DK_SIZE(dk)      (((int64_t)1)<<DK_LOG_SIZE(dk))
 | 
					
						
							|  |  |  | #define DK_IXSIZE(dk)                     \
 | 
					
						
							|  |  |  |     (DK_LOG_SIZE(dk) <= 7 ?               \ | 
					
						
							|  |  |  |         1 : DK_LOG_SIZE(dk) <= 15 ?       \ | 
					
						
							|  |  |  |             2 : DK_LOG_SIZE(dk) <= 31 ?   \ | 
					
						
							|  |  |  |                 4 : sizeof(int64_t)) | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define DK_SIZE(dk)      (1<<DK_LOG_SIZE(dk))
 | 
					
						
							|  |  |  | #define DK_IXSIZE(dk)                     \
 | 
					
						
							|  |  |  |     (DK_LOG_SIZE(dk) <= 7 ?               \ | 
					
						
							|  |  |  |         1 : DK_LOG_SIZE(dk) <= 15 ?       \ | 
					
						
							|  |  |  |             2 : sizeof(int32_t)) | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #define DK_ENTRIES(dk) \
 | 
					
						
							| 
									
										
										
										
											2022-02-22 20:03:15 +09:00
										 |  |  |     ((PyDictKeyEntry*)(&((int8_t*)((dk)->dk_indices))[(size_t)1 << (dk)->dk_log2_index_bytes])) | 
					
						
							| 
									
										
										
										
											2021-06-10 08:46:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 10:40:21 +01:00
										 |  |  | extern uint64_t _pydict_global_version; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define DICT_NEXT_VERSION() (++_pydict_global_version)
 | 
					
						
							| 
									
										
										
										
											2021-06-10 08:46:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-25 15:41:55 +01:00
										 |  |  | extern PyObject *_PyObject_MakeDictFromInstanceAttributes(PyObject *obj, PyDictValues *values); | 
					
						
							| 
									
										
										
										
											2021-10-13 14:19:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-08 11:50:38 +00:00
										 |  |  | static inline void | 
					
						
							|  |  |  | _PyDictValues_AddToInsertionOrder(PyDictValues *values, Py_ssize_t ix) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     assert(ix < SHARED_KEYS_MAX_SIZE); | 
					
						
							|  |  |  |     uint8_t *size_ptr = ((uint8_t *)values)-2; | 
					
						
							|  |  |  |     int size = *size_ptr; | 
					
						
							|  |  |  |     assert(size+2 < ((uint8_t *)values)[-1]); | 
					
						
							|  |  |  |     size++; | 
					
						
							|  |  |  |     size_ptr[-size] = (uint8_t)ix; | 
					
						
							|  |  |  |     *size_ptr = size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-10 08:46:01 +01:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-29 22:21:39 -06:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-06-10 08:46:01 +01:00
										 |  |  | #endif   /* !Py_INTERNAL_DICT_H */
 |