X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6d22c8d5405eacbdf9d78257bcf999279ba7e780..60f31f9d24bd348ccad2ea99ba96424360b11a92:/src/xbt/set.c diff --git a/src/xbt/set.c b/src/xbt/set.c index 47ef8d3860..543bcf3912 100644 --- a/src/xbt/set.c +++ b/src/xbt/set.c @@ -79,14 +79,19 @@ gras_error_t gras_set_add (gras_set_t *set, errcode = gras_dict_get_ext (set->dict, elm->name, elm->name_len, - (void**) &found_in_dict); + (void**)&found_in_dict); if (errcode == no_error) { - elm->ID=found_in_dict->ID; - DEBUG2("Reinsertion of key %s (id %d)", elm->name, elm->ID); - TRY(gras_dict_set_ext(set->dict, elm->name, elm->name_len, elm, free_func)); - TRY(gras_dynar_set(set->dynar, elm->ID, &elm)); - return no_error; - + if (elm == found_in_dict) { + DEBUG2("Ignoring request to insert the same element twice (key %s ; id %d)", + elm->name, elm->ID); + return no_error; + } else { + elm->ID=found_in_dict->ID; + DEBUG2("Reinsertion of key %s (id %d)", elm->name, elm->ID); + TRY(gras_dict_set_ext(set->dict, elm->name, elm->name_len, elm, free_func)); + TRY(gras_dynar_set(set->dynar, elm->ID, &elm)); + return no_error; + } } else if (errcode != mismatch_error) { return errcode; /* I expected mismatch_error */ } @@ -110,8 +115,10 @@ gras_error_t gras_set_add (gras_set_t *set, gras_error_t gras_set_get_by_name (gras_set_t *set, const char *name, /* OUT */gras_set_elm_t **dst) { - - return gras_dict_get_ext(set->dict, name, strlen(name), (void**) dst); + gras_error_t errcode; + errcode = gras_dict_get_ext(set->dict, name, strlen(name), (void**) dst); + DEBUG2("Lookup key %s: %s",name,gras_error_name(errcode)); + return errcode; } /** * gras_set_get_by_name_ext: @@ -135,29 +142,22 @@ gras_error_t gras_set_get_by_name_ext(gras_set_t *set, /** * gras_set_get_by_code: * @set: - * @name: Name of the searched cell - * @name_len: length of the name, when strlen cannot be trusted + * @id: what you're looking for * @dst: where to put the found data into * - * get a data stored in the cell by providing its name (and the length - * of the name, when strlen cannot be trusted because you don't use a char* - * as name, you weird guy). + * get a data stored in the cell by providing its id. + * @warning, if the ID does not exists, you're getting into trouble */ gras_error_t gras_set_get_by_id (gras_set_t *set, int id, /* OUT */gras_set_elm_t **dst) { - DEBUG2("Lookup type of id %d (of %d)", - id, gras_dynar_length(set->dynar)); - if (id < gras_dynar_length(set->dynar) && - id >= 0) { - gras_dynar_get(set->dynar,id,dst); - DEBUG3("Lookup type of id %d (of %d): %s", - id, gras_dynar_length(set->dynar), (*dst)->name); + + /* Don't bother checking the bounds, the dynar does so */ + + gras_dynar_get(set->dynar,id,dst); + DEBUG3("Lookup type of id %d (of %d): %s", + id, gras_dynar_length(set->dynar), (*dst)->name); - } else { - DEBUG1("Cannot get ID %d: out of bound", id); - return mismatch_error; - } return no_error; }