X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cd873505887849deebc1746f5cbee02f3d77ba8d..268fb240b28aeba1e066b2163cad6ba0016e545f:/src/xbt/dict.cpp diff --git a/src/xbt/dict.cpp b/src/xbt/dict.cpp index 370774f008..5f53f43d2c 100644 --- a/src/xbt/dict.cpp +++ b/src/xbt/dict.cpp @@ -72,20 +72,15 @@ xbt_dict_t xbt_dict_new_homogeneous(void_f_pvoid_t free_ctn) */ void xbt_dict_free(xbt_dict_t * dict) { - xbt_dictelm_t current; - xbt_dictelm_t previous; - int table_size; - xbt_dictelm_t *table; - - // if ( *dict ) xbt_dict_dump_sizes(*dict); - if (dict != nullptr && *dict != nullptr) { - table_size = (*dict)->table_size; - table = (*dict)->table; + int table_size = (*dict)->table_size; + xbt_dictelm_t* table = (*dict)->table; /* Warning: the size of the table is 'table_size+1'... * This is because table_size is used as a binary mask in xbt_dict_rehash */ for (int i = 0; (*dict)->count && i <= table_size; i++) { - current = table[i]; + xbt_dictelm_t current = table[i]; + xbt_dictelm_t previous; + while (current != nullptr) { previous = current; current = current->next; @@ -113,12 +108,13 @@ static void xbt_dict_rehash(xbt_dict_t dict) xbt_dictelm_t *currcell = (xbt_dictelm_t *) xbt_realloc((char *) dict->table, newsize * sizeof(xbt_dictelm_t)); memset(&currcell[oldsize], 0, oldsize * sizeof(xbt_dictelm_t)); /* zero second half */ - dict->table_size = --newsize; + newsize--; + dict->table_size = newsize; dict->table = currcell; XBT_DEBUG("REHASH (%d->%d)", oldsize, newsize); for (unsigned i = 0; i < oldsize; i++, currcell++) { - if (!*currcell) /* empty cell */ + if (*currcell == nullptr) /* empty cell */ continue; xbt_dictelm_t *twincell = currcell + oldsize; @@ -131,7 +127,7 @@ static void xbt_dict_rehash(xbt_dict_t dict) if ((bucklet->hash_code & newsize) != i) { /* Move to b */ *pprev = bucklet->next; bucklet->next = *twincell; - if (!*twincell) + if (*twincell == nullptr) dict->fill++; *twincell = bucklet; } else { @@ -139,7 +135,7 @@ static void xbt_dict_rehash(xbt_dict_t dict) } } - if (!*currcell) /* everything moved */ + if (*currcell == nullptr) /* everything moved */ dict->fill--; } } @@ -163,6 +159,7 @@ void xbt_dict_set_ext(xbt_dict_t dict, const char *key, int key_len, void *data, xbt_dictelm_t current; xbt_dictelm_t previous = nullptr; + xbt_assert(not free_ctn, "Cannot set an individual free function in homogeneous dicts."); XBT_CDEBUG(xbt_dict, "ADD %.*s hash = %u, size = %d, & = %u", key_len, key, hash_code, dict->table_size, hash_code & dict->table_size); current = dict->table[hash_code & dict->table_size]; @@ -174,7 +171,7 @@ void xbt_dict_set_ext(xbt_dict_t dict, const char *key, int key_len, void *data, if (current == nullptr) { /* this key doesn't exist yet */ - current = xbt_dictelm_new(dict, key, key_len, hash_code, data, free_ctn); + current = xbt_dictelm_new(key, key_len, hash_code, data); dict->count++; if (previous == nullptr) { dict->table[hash_code & dict->table_size] = current; @@ -367,7 +364,7 @@ void xbt_dict_remove_ext(xbt_dict_t dict, const char *key, int key_len) } } - if (!dict->table[hash_code & dict->table_size]) + if (not dict->table[hash_code & dict->table_size]) dict->fill--; xbt_dictelm_free(dict, current); @@ -428,7 +425,7 @@ void xbt_dict_dump_output_string(void *s) */ int xbt_dict_is_empty(xbt_dict_t dict) { - return !dict || (xbt_dict_length(dict) == 0); + return not dict || (xbt_dict_length(dict) == 0); } /** @@ -442,11 +439,10 @@ int xbt_dict_is_empty(xbt_dict_t dict) */ void xbt_dict_dump(xbt_dict_t dict, void_f_pvoid_t output) { - int i; xbt_dictelm_t element; printf("Dict %p:\n", dict); if (dict != nullptr) { - for (i = 0; i < dict->table_size; i++) { + for (int i = 0; i < dict->table_size; i++) { element = dict->table[i]; if (element) { printf("[\n"); @@ -475,7 +471,7 @@ void xbt_dict_dump_sizes(xbt_dict_t dict) printf("Dict %p: %d bucklets, %d used cells (of %d) ", dict, dict->count, dict->fill, dict->table_size); - if (!dict) { + if (not dict) { printf("\n"); return; } @@ -500,7 +496,7 @@ void xbt_dict_dump_sizes(xbt_dict_t dict) xbt_dynar_set(sizes, size, &prevsize); } } - if (!all_sizes) + if (not all_sizes) all_sizes = xbt_dynar_new(sizeof(int), nullptr); xbt_dynar_foreach(sizes, count, size) { @@ -558,7 +554,10 @@ void xbt_dict_postexit() total_count += size; } } - printf("; %f elm per cell\n", avg / (double) total_count); + if (total_count > 0) + printf("; %f elm per cell\n", avg / (double)total_count); + else + printf("; 0 elm per cell\n"); } } @@ -591,7 +590,7 @@ static void debugged_add(xbt_dict_t head, const char* key) debugged_add_ext(head, key, key); } -static xbt_dict_t new_fixture(void) +static xbt_dict_t new_fixture() { xbt_test_add("Fill in the dictionnary"); @@ -615,10 +614,10 @@ static void search_ext(xbt_dict_t head, const char *key, const char *data) if (data) { xbt_test_assert(found, "data do not match expectations: found nullptr while searching for %s", data); if (found) - xbt_test_assert(!strcmp(data, found), "data do not match expectations: found %s while searching for %s", - found, data); + xbt_test_assert(not strcmp(data, found), "data do not match expectations: found %s while searching for %s", found, + data); } else { - xbt_test_assert(!found, "data do not match expectations: found %s while searching for nullptr", found); + xbt_test_assert(not found, "data do not match expectations: found %s while searching for nullptr", found); } } @@ -642,12 +641,12 @@ static void traverse(xbt_dict_t head) int i = 0; xbt_dict_foreach(head, cursor, key, data) { - if (!key || !data || strcmp(key, data)) { + if (not key || not data || strcmp(key, data)) { xbt_test_log("Seen #%d: %s->%s", ++i, key, data); } else { xbt_test_log("Seen #%d: %s", ++i, key); } - xbt_test_assert(!data || !strcmp(key, data), "Key(%s) != value(%s). Aborting", key, data); + xbt_test_assert(not data || not strcmp(key, data), "Key(%s) != value(%s). Aborting", key, data); } } @@ -696,7 +695,7 @@ static void count_check_get_key(xbt_dict_t dict, int length) xbt_dict_foreach(dict, cursor, key, data) { effective++; char* key2 = xbt_dict_get_key(dict, data); - xbt_assert(!strcmp(key, key2), "The data was registered under %s instead of %s as expected", key2, key); + xbt_assert(not strcmp(key, key2), "The data was registered under %s instead of %s as expected", key2, key); } xbt_test_assert(effective == length, "Effective length(%d) != %d.", effective, length); @@ -760,7 +759,7 @@ XBT_TEST_UNIT("basic", test_dict_basic, "Basic usage: change, retrieve and trave xbt_test_add("Search 123"); char* data = (char*)xbt_dict_get(head, "123"); xbt_test_assert(data); - xbt_test_assert(!strcmp("123", data)); + xbt_test_assert(not strcmp("123", data)); search_not_found(head, "Can't be found"); search_not_found(head, "123 Can't be found"); @@ -867,13 +866,13 @@ XBT_TEST_UNIT("nulldata", test_dict_nulldata, "nullptr data management") char* data; xbt_dict_foreach(head, cursor, key, data) { - if (!key || !data || strcmp(key, data)) { + if (not key || not data || strcmp(key, data)) { xbt_test_log("Seen: %s->%s", key, data); } else { xbt_test_log("Seen: %s", key); } - if (!strcmp(key, "null")) + if (not strcmp(key, "null")) found = 1; } xbt_test_assert(found, "the key 'null', associated to nullptr is not found"); @@ -920,7 +919,7 @@ XBT_TEST_UNIT("crash", test_dict_crash, "Crash test") xbt_dict_set(head, key, key, nullptr); data = (char*) xbt_dict_get(head, key); - xbt_test_assert(!strcmp(key, data), "Retrieved value (%s) != Injected value (%s)", key, data); + xbt_test_assert(not strcmp(key, data), "Retrieved value (%s) != Injected value (%s)", key, data); count(head, j + 1); } @@ -933,7 +932,6 @@ XBT_TEST_UNIT("crash", test_dict_crash, "Crash test") xbt_dict_t head = xbt_dict_new_homogeneous(&free); xbt_test_add("Fill %d elements, with keys being the number of element", NB_ELM); for (int j = 0; j < NB_ELM; j++) { - /* if (!(j%1000)) { printf("."); fflush(stdout); } */ char* key = (char*)xbt_malloc(10); snprintf(key,10, "%d", j); @@ -951,9 +949,9 @@ XBT_TEST_UNIT("crash", test_dict_crash, "Crash test") for (int j = 0; j < NB_ELM; j++) { snprintf(key,10, "%d", j); void* data = xbt_dict_get(head, key); - xbt_test_assert(!strcmp(key, (char *) data), "with get, key=%s != data=%s", key, (char *) data); + xbt_test_assert(not strcmp(key, (char*)data), "with get, key=%s != data=%s", key, (char*)data); data = xbt_dict_get_ext(head, key, strlen(key)); - xbt_test_assert(!strcmp(key, (char *) data), "with get_ext, key=%s != data=%s", key, (char *) data); + xbt_test_assert(not strcmp(key, (char*)data), "with get_ext, key=%s != data=%s", key, (char*)data); } } free(key); @@ -961,7 +959,6 @@ XBT_TEST_UNIT("crash", test_dict_crash, "Crash test") xbt_test_add("Remove my %d elements", NB_ELM); key = (char*) xbt_malloc(10); for (int j = 0; j < NB_ELM; j++) { - /* if (!(j%10000)) printf("."); fflush(stdout); */ snprintf(key,10, "%d", j); xbt_dict_remove(head, key); }