Cleanup: use '_len' instead of '_size' w/ BLI API
- When returning the number of items in a collection use BLI_*_len() - Keep _size() for size in bytes. - Keep _count() for data structures that don't store length (hint this isn't a simple getter). See P611 to apply instead of manually resolving conflicts.
This commit is contained in:
@@ -566,7 +566,7 @@ static PyObject *bpy_slot_to_py(BMesh *bm, BMOpSlot *slot)
|
||||
switch (slot->slot_subtype.map) {
|
||||
case BMO_OP_SLOT_SUBTYPE_MAP_ELEM:
|
||||
{
|
||||
item = _PyDict_NewPresized(slot_hash ? BLI_ghash_size(slot_hash) : 0);
|
||||
item = _PyDict_NewPresized(slot_hash ? BLI_ghash_len(slot_hash) : 0);
|
||||
if (slot_hash) {
|
||||
GHASH_ITER (hash_iter, slot_hash) {
|
||||
BMHeader *ele_key = BLI_ghashIterator_getKey(&hash_iter);
|
||||
@@ -584,7 +584,7 @@ static PyObject *bpy_slot_to_py(BMesh *bm, BMOpSlot *slot)
|
||||
}
|
||||
case BMO_OP_SLOT_SUBTYPE_MAP_FLT:
|
||||
{
|
||||
item = _PyDict_NewPresized(slot_hash ? BLI_ghash_size(slot_hash) : 0);
|
||||
item = _PyDict_NewPresized(slot_hash ? BLI_ghash_len(slot_hash) : 0);
|
||||
if (slot_hash) {
|
||||
GHASH_ITER (hash_iter, slot_hash) {
|
||||
BMHeader *ele_key = BLI_ghashIterator_getKey(&hash_iter);
|
||||
@@ -602,7 +602,7 @@ static PyObject *bpy_slot_to_py(BMesh *bm, BMOpSlot *slot)
|
||||
}
|
||||
case BMO_OP_SLOT_SUBTYPE_MAP_INT:
|
||||
{
|
||||
item = _PyDict_NewPresized(slot_hash ? BLI_ghash_size(slot_hash) : 0);
|
||||
item = _PyDict_NewPresized(slot_hash ? BLI_ghash_len(slot_hash) : 0);
|
||||
if (slot_hash) {
|
||||
GHASH_ITER (hash_iter, slot_hash) {
|
||||
BMHeader *ele_key = BLI_ghashIterator_getKey(&hash_iter);
|
||||
@@ -620,7 +620,7 @@ static PyObject *bpy_slot_to_py(BMesh *bm, BMOpSlot *slot)
|
||||
}
|
||||
case BMO_OP_SLOT_SUBTYPE_MAP_BOOL:
|
||||
{
|
||||
item = _PyDict_NewPresized(slot_hash ? BLI_ghash_size(slot_hash) : 0);
|
||||
item = _PyDict_NewPresized(slot_hash ? BLI_ghash_len(slot_hash) : 0);
|
||||
if (slot_hash) {
|
||||
GHASH_ITER (hash_iter, slot_hash) {
|
||||
BMHeader *ele_key = BLI_ghashIterator_getKey(&hash_iter);
|
||||
|
@@ -384,7 +384,7 @@ static PyObject *pyop_dir(PyObject *UNUSED(self))
|
||||
int i;
|
||||
|
||||
WM_operatortype_iter(&iter);
|
||||
list = PyList_New(BLI_ghash_size(iter.gh));
|
||||
list = PyList_New(BLI_ghash_len(iter.gh));
|
||||
|
||||
for (i = 0; !BLI_ghashIterator_done(&iter); BLI_ghashIterator_step(&iter), i++) {
|
||||
wmOperatorType *ot = BLI_ghashIterator_getValue(&iter);
|
||||
|
@@ -223,7 +223,7 @@ static PyObject *id_free_weakref_cb(PyObject *weakinfo_capsule, PyObject *weakre
|
||||
GHash *weakinfo_hash = PyCapsule_GetPointer(weakinfo_capsule, NULL);
|
||||
|
||||
|
||||
if (BLI_ghash_size(weakinfo_hash) > 1) {
|
||||
if (BLI_ghash_len(weakinfo_hash) > 1) {
|
||||
BLI_ghash_remove(weakinfo_hash, weakref, NULL, NULL);
|
||||
}
|
||||
else { /* get the last id and free it */
|
||||
@@ -243,7 +243,7 @@ static void id_release_weakref_list(struct ID *id, GHash *weakinfo_hash)
|
||||
BLI_ghashIterator_init(&weakinfo_hash_iter, weakinfo_hash);
|
||||
|
||||
#ifdef DEBUG_RNA_WEAKREF
|
||||
fprintf(stdout, "id_release_weakref: '%s', %d items\n", id->name, BLI_ghash_size(weakinfo_hash));
|
||||
fprintf(stdout, "id_release_weakref: '%s', %d items\n", id->name, BLI_ghash_len(weakinfo_hash));
|
||||
#endif
|
||||
|
||||
while (!BLI_ghashIterator_done(&weakinfo_hash_iter)) {
|
||||
@@ -266,7 +266,7 @@ static void id_release_weakref_list(struct ID *id, GHash *weakinfo_hash)
|
||||
BLI_ghash_remove(id_weakref_pool, (void *)id, NULL, NULL);
|
||||
BLI_ghash_free(weakinfo_hash, NULL, NULL);
|
||||
|
||||
if (BLI_ghash_size(id_weakref_pool) == 0) {
|
||||
if (BLI_ghash_len(id_weakref_pool) == 0) {
|
||||
BLI_ghash_free(id_weakref_pool, NULL, NULL);
|
||||
id_weakref_pool = NULL;
|
||||
#ifdef DEBUG_RNA_WEAKREF
|
||||
|
Reference in New Issue
Block a user