X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/31d626536ff0cdfa875075e092bf8c86a5e43710..4bb811f3af19a18cba0a0122f320d900e5933da0:/src/gras/DataDesc/ddt_create.c diff --git a/src/gras/DataDesc/ddt_create.c b/src/gras/DataDesc/ddt_create.c index 626b98c406..543ae354f4 100644 --- a/src/gras/DataDesc/ddt_create.c +++ b/src/gras/DataDesc/ddt_create.c @@ -10,34 +10,83 @@ #include "DataDesc/datadesc_private.h" -GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(new,DataDesc); +GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(create,datadesc); + +/** + * gras_ddt_freev: + * + * gime that memory back, dude. I mean it. + */ +void gras_ddt_freev(void *ddt) { + gras_datadesc_type_t *type= (gras_datadesc_type_t *)ddt; + + if (type) { + gras_datadesc_unref(type); + } +} static gras_error_t gras_ddt_new(const char *name, gras_datadesc_type_t **dst) { - gras_datadesc_type_t *res=malloc(sizeof(gras_datadesc_type_t)); + gras_error_t errcode; + gras_datadesc_type_t *res; + + res=malloc(sizeof(gras_datadesc_type_t)); if (!res) RAISE_MALLOC; - memset(res, 0, sizeof(res)); + memset(res, 0, sizeof(gras_datadesc_type_t)); res->name = strdup(name); + res->name_len = strlen(name); + res->refcounter = 1; + TRY(gras_set_add(gras_datadesc_set_local, + (gras_set_elm_t*)res,&gras_ddt_freev)); + *dst=res; return no_error; } /** - * gras_ddt_new_scalar: + * gras_datadesc_by_name: + * + * Retrieve a type from its name + */ +gras_datadesc_type_t *gras_datadesc_by_name(const char *name) { + + gras_datadesc_type_t *type; + + if (gras_set_get_by_name(gras_datadesc_set_local, + name,(gras_set_elm_t**)&type) == no_error) { + return type; + } else { + return NULL; + } +} + +/** + * gras_datadesc_by_id: + * + * Retrieve a type from its code + */ +gras_error_t gras_datadesc_by_id(long int code, + gras_datadesc_type_t **type) { + return gras_set_get_by_id(gras_datadesc_set_local, + code,(gras_set_elm_t**)type); +} + +/** + * gras_datadesc_declare_scalar: * * Create a new scalar and give a pointer to it */ gras_error_t -gras_ddt_new_scalar(const char *name, - gras_ddt_scalar_type_t type, - enum e_gras_dd_scalar_encoding encoding, - gras_datadesc_type_cb_void_t cb, - gras_datadesc_type_t **dst) { +gras_datadesc_declare_scalar(const char *name, + gras_ddt_scalar_type_t type, + enum e_gras_dd_scalar_encoding encoding, + gras_datadesc_type_cb_void_t cb, + gras_datadesc_type_t **dst) { gras_error_t errcode; gras_datadesc_type_t *res; @@ -49,19 +98,19 @@ gras_ddt_new_scalar(const char *name, for (arch = 0; arch < gras_arch_count; arch ++) { long int sz; long int mask; + res->size[arch] = gras_arches[arch].sizeof_scalars[type]; - res->size[arch] = gras_arch_sizes[arch].sizeof_scalars[type]; - sz = res->size[arch]; mask = sz; - /* just in case you wonder, x>>1 == x/2 on all architectures when x>=0 and a size is always>=0 */ - + /* just in case you wonder, x>>1 == x/2 on all architectures when x>=0 + and a size is always>=0 */ + /* make sure mask have all the bits under the biggest one of size set to 1 Example: size=000100101 => mask=0000111111 */ while ((sz >>= 1)) { mask |= sz; - } + } if (res->size[arch] & (mask >> 1)) { /* if size have bits to one beside its biggest */ /* size is not a power of 2 */ @@ -70,7 +119,7 @@ gras_ddt_new_scalar(const char *name, gras_assert0(res->alignment[arch] != 0, "scalar type too large"); - res->aligned_size[arch] = aligned(res->size[arch], res->alignment[arch]); + res->aligned_size[arch] = aligned(res->size[arch], res->alignment[arch]); gras_assert0 (res->aligned_size[arch] >= 0, "scalar type too large"); @@ -79,13 +128,6 @@ gras_ddt_new_scalar(const char *name, res->alignment[arch] = res->size[arch]; res->aligned_size[arch] = res->size[arch]; } - - /* FIXME size < 0 sometimes? - } else { - res->alignment = 0; - res->aligned_size = 0; - } - */ } res->category_code = e_gras_datadesc_type_cat_scalar; @@ -102,7 +144,7 @@ gras_ddt_new_scalar(const char *name, * Frees one struct or union field */ void gras_dd_cat_field_free(void *f) { - gras_dd_cat_field_t *field = (gras_dd_cat_field_t *)f; + gras_dd_cat_field_t *field = *(gras_dd_cat_field_t **)f; if (field) { if (field->name) free(field->name); @@ -111,15 +153,13 @@ void gras_dd_cat_field_free(void *f) { } /** - * gras_ddt_new_struct: + * gras_datadesc_declare_struct: * * Create a new struct and give a pointer to it */ gras_error_t -gras_ddt_new_struct(const char *name, - gras_datadesc_type_cb_void_t pre, - gras_datadesc_type_cb_void_t post, - gras_datadesc_type_t **dst) { +gras_datadesc_declare_struct(const char *name, + gras_datadesc_type_t **dst) { gras_error_t errcode; gras_datadesc_type_t *res; @@ -129,38 +169,38 @@ gras_ddt_new_struct(const char *name, res=*dst; for (arch=0; archsize[arch] = 0; - res->alignment[arch] = 0; - res->aligned_size[arch] = 0; + res->size[arch] = 0; + res->alignment[arch] = 0; + res->aligned_size[arch] = 0; } - res->category_code = e_gras_datadesc_type_cat_struct; + res->category_code = e_gras_datadesc_type_cat_struct; TRY(gras_dynar_new(&(res->category.struct_data.fields), sizeof(gras_dd_cat_field_t*), &gras_dd_cat_field_free)); - res->pre = pre; - res->post = post; return no_error; } /** - * gras_ddt_new_struct_append: + * gras_datadesc_declare_struct_append: * * Append a field to the struct */ gras_error_t -gras_ddt_new_struct_append(gras_datadesc_type_t *struct_type, - const char *name, - gras_datadesc_type_t *field_type, - gras_datadesc_type_cb_void_t pre, - gras_datadesc_type_cb_void_t post) { +gras_datadesc_declare_struct_append(gras_datadesc_type_t *struct_type, + const char *name, + gras_datadesc_type_t *field_type) { gras_error_t errcode; gras_dd_cat_field_t *field; int arch; - - gras_assert0(field_type->size >= 0, - "Cannot add a dynamically sized field in a structure"); + + gras_assert1(!struct_type->category.struct_data.closed, + "Cannot add anything to the already closed struct %s", + struct_type->name); + gras_assert1(field_type->size >= 0, + "Cannot add a dynamically sized field in structure %s", + struct_type->name); field=malloc(sizeof(gras_dd_cat_field_t)); if (!field) @@ -168,79 +208,104 @@ gras_ddt_new_struct_append(gras_datadesc_type_t *struct_type, field->name = strdup(name); + DEBUG0("----------------"); + DEBUG4("PRE s={size=%d,align=%d,asize=%d} struct_boundary=%d", + struct_type->size[GRAS_THISARCH], + struct_type->alignment[GRAS_THISARCH], + struct_type->aligned_size[GRAS_THISARCH], + gras_arches[GRAS_THISARCH].struct_boundary); + + for (arch=0; archoffset[arch] = aligned(struct_type->size[arch], field_type->alignment[arch]); + field->offset[arch] = aligned(struct_type->size[arch], + min(field_type->alignment[arch], + gras_arches[arch].struct_boundary)); + + struct_type->size[arch] = field->offset[arch] + field_type->size[arch]; + struct_type->alignment[arch] = max(struct_type->alignment[arch], + field_type->alignment[arch]); + struct_type->aligned_size[arch] = aligned(struct_type->size[arch], + struct_type->alignment[arch]); } field->code = field_type->code; - field->pre = pre; - field->post = post; + field->pre = NULL; + field->post = NULL; - TRY(gras_dynar_push(struct_type->category.struct_data.fields, field)); - - for (arch=0; archsize[arch] = field->offset[arch] + field_type->size[arch]; - struct_type->alignment[arch] = max(struct_type->alignment[arch], field_type->alignment[arch]); - struct_type->aligned_size[arch] = aligned(struct_type->size[arch], struct_type->alignment[arch]); - } - + TRY(gras_dynar_push(struct_type->category.struct_data.fields, &field)); + + DEBUG3("Push a %s into %s at offset %d.", + field_type->name, struct_type->name,field->offset[GRAS_THISARCH]); + DEBUG3(" f={size=%d,align=%d,asize=%d}", + field_type->size[GRAS_THISARCH], + field_type->alignment[GRAS_THISARCH], + field_type->aligned_size[GRAS_THISARCH]); + DEBUG3(" s={size=%d,align=%d,asize=%d}", + struct_type->size[GRAS_THISARCH], + struct_type->alignment[GRAS_THISARCH], + struct_type->aligned_size[GRAS_THISARCH]); return no_error; } +void +gras_datadesc_declare_struct_close(gras_datadesc_type_t *struct_type) { + struct_type->category.struct_data.closed = 1; + // INFO0("FIXME: Do something in gras_datadesc_declare_struct_close"); +} /** - * gras_ddt_new_union: + * gras_datadesc_declare_union: * * Create a new union and give a pointer to it */ gras_error_t -gras_ddt_new_union(const char *name, - gras_datadesc_type_cb_int_t field_count, - gras_datadesc_type_cb_void_t post, - gras_datadesc_type_t **dst) { +gras_datadesc_declare_union(const char *name, + gras_datadesc_type_cb_int_t selector, + gras_datadesc_type_t **dst) { gras_error_t errcode; gras_datadesc_type_t *res; int arch; - gras_assert0(field_count, + gras_assert0(selector, "Attempt to creat an union without field_count function"); TRY(gras_ddt_new(name,dst)); res=*dst; for (arch=0; archsize[arch] = 0; - res->alignment[arch] = 0; - res->aligned_size[arch] = 0; + res->size[arch] = 0; + res->alignment[arch] = 0; + res->aligned_size[arch] = 0; } + res->category_code = e_gras_datadesc_type_cat_union; TRY(gras_dynar_new(&(res->category.union_data.fields), sizeof(gras_dd_cat_field_t*), &gras_dd_cat_field_free)); - res->category.union_data.field_count = field_count; - res->pre = NULL; - res->post = post; + res->category.union_data.selector = selector; return no_error; } /** - * gras_ddt_new_union_append: + * gras_datadesc_declare_union_append: * * Append a field to the union */ gras_error_t -gras_ddt_new_union_append(gras_datadesc_type_t *union_type, - const char *name, - gras_datadesc_type_t *field_type, - gras_datadesc_type_cb_void_t pre, - gras_datadesc_type_cb_void_t post) { +gras_datadesc_declare_union_append(gras_datadesc_type_t *union_type, + const char *name, + gras_datadesc_type_t *field_type) { gras_error_t errcode; gras_dd_cat_field_t *field; int arch; - gras_assert0(field_type->size >= 0, - "Cannot add a dynamically sized field in an union"); + gras_assert1(!union_type->category.union_data.closed, + "Cannot add anything to the already closed union %s", + union_type->name); + gras_assert1(field_type->size >= 0, + "Cannot add a dynamically sized field in union %s", + union_type->name); field=malloc(sizeof(gras_dd_cat_field_t)); if (!field) @@ -251,189 +316,215 @@ gras_ddt_new_union_append(gras_datadesc_type_t *union_type, field->offset[arch] = 0; /* that's the purpose of union ;) */ } field->code = field_type->code; - field->pre = pre; - field->post = post; + field->pre = NULL; + field->post = NULL; - TRY(gras_dynar_push(union_type->category.union_data.fields, field)); + TRY(gras_dynar_push(union_type->category.union_data.fields, &field)); for (arch=0; archsize[arch] = max(union_type->size[arch], field_type->size[arch]); - union_type->alignment[arch] = max(union_type->alignment[arch], field_type->alignment[arch]); - union_type->aligned_size[arch] = aligned(union_type->size[arch], union_type->alignment[arch]); + union_type->size[arch] = max(union_type->size[arch], + field_type->size[arch]); + union_type->alignment[arch] = max(union_type->alignment[arch], + field_type->alignment[arch]); + union_type->aligned_size[arch] = aligned(union_type->size[arch], + union_type->alignment[arch]); } - return no_error; } +void +gras_datadesc_declare_union_close(gras_datadesc_type_t *union_type) { + union_type->category.union_data.closed = 1; + // INFO0("FIXME: Do something in gras_datadesc_declare_union_close"); +} /** - * gras_ddt_new_ref: + * gras_datadesc_declare_ref: * - * Create a new ref and give a pointer to it + * Create a new ref to a fixed type and give a pointer to it */ gras_error_t -gras_ddt_new_ref(const char *name, - gras_datadesc_type_t *referenced_type, - gras_datadesc_type_cb_int_t discriminant, - gras_datadesc_type_cb_void_t post, - gras_datadesc_type_t **dst) { +gras_datadesc_declare_ref(const char *name, + gras_datadesc_type_t *referenced_type, + gras_datadesc_type_t **dst) { gras_error_t errcode; gras_datadesc_type_t *res; + gras_datadesc_type_t *pointer_type = gras_datadesc_by_name("data pointer"); int arch; - gras_assert0(discriminant || referenced_type, - "Attempt to create a generic reference without discriminant"); + TRY(gras_ddt_new(name,dst)); + res=*dst; + + gras_assert0(pointer_type, "Cannot get the description of data pointer"); + + for (arch=0; archsize[arch] = pointer_type->size[arch]; + res->alignment[arch] = pointer_type->alignment[arch]; + res->aligned_size[arch] = pointer_type->aligned_size[arch]; + } + + res->category_code = e_gras_datadesc_type_cat_ref; + + res->category.ref_data.code = referenced_type->code; + res->category.ref_data.selector = NULL; + + return no_error; +} +/** + * gras_datadesc_declare_ref_generic: + * + * Create a new ref to a type given at use time, and give a pointer to it + */ +gras_error_t +gras_datadesc_declare_ref_generic(const char *name, + gras_datadesc_type_cb_int_t selector, + gras_datadesc_type_t **dst) { + + gras_error_t errcode; + gras_datadesc_type_t *res; + gras_datadesc_type_t *pointer_type = gras_datadesc_by_name("data pointer"); + int arch; TRY(gras_ddt_new(name,dst)); res=*dst; - /* FIXME: Size from bootstraping */ + gras_assert0(pointer_type, "Cannot get the description of data pointer"); + for (arch=0; archsize[arch] = 0; - res->alignment[arch] = 0; - res->aligned_size[arch] = 0; + res->size[arch] = pointer_type->size[arch]; + res->alignment[arch] = pointer_type->alignment[arch]; + res->aligned_size[arch] = pointer_type->aligned_size[arch]; } res->category_code = e_gras_datadesc_type_cat_ref; - res->category.ref_data.code = referenced_type ? referenced_type->code : -1; - res->category.ref_data.discriminant = discriminant; - res->pre = NULL; - res->post = post; + res->category.ref_data.code = -1; + res->category.ref_data.selector = selector; return no_error; } /** - * gras_ddt_new_array: + * gras_datadesc_declare_array_fixed: * * Create a new array and give a pointer to it */ gras_error_t -gras_ddt_new_array(const char *name, - gras_datadesc_type_t *element_type, - long int fixed_size, - gras_datadesc_type_cb_int_t dynamic_size, - gras_datadesc_type_cb_void_t post, - gras_datadesc_type_t **dst) { +gras_datadesc_declare_array_fixed(const char *name, + gras_datadesc_type_t *element_type, + long int fixed_size, + gras_datadesc_type_t **dst) { gras_error_t errcode; gras_datadesc_type_t *res; int arch; - gras_assert0(dynamic_size || fixed_size>0, - "Attempt to create a dynamic array without size discriminant"); - TRY(gras_ddt_new(name,dst)); res=*dst; + gras_assert1(fixed_size > 0, "'%s' is a array of negative fixed size",name); for (arch=0; archsize[arch] = fixed_size; /* make sure it indicates "dynamic" */ - } else { - res->size[arch] = fixed_size * element_type->aligned_size[arch]; - } - res->alignment[arch] = element_type->alignment[arch]; - res->aligned_size[arch] = fixed_size; /*FIXME: That was so in GS, but looks stupid*/ - } + res->size[arch] = fixed_size * element_type->aligned_size[arch]; + res->alignment[arch] = element_type->alignment[arch]; + res->aligned_size[arch] = res->size[arch]; + } + res->category_code = e_gras_datadesc_type_cat_array; res->category.array_data.code = element_type->code; res->category.array_data.fixed_size = fixed_size; - res->category.array_data.dynamic_size = dynamic_size; - - res->pre = NULL; - res->post = post; + res->category.array_data.dynamic_size = NULL; return no_error; } - /** - * gras_ddt_new_ignored: + * gras_datadesc_declare_array_dyn: * - * Create a new ignored field and give a pointer to it. - * - * If you give a default value, it will be copied away so that you can free your copy. + * Create a new array and give a pointer to it */ gras_error_t -gras_ddt_new_ignored(const char *name, - void *default_value, - void_f_pvoid_t *free_func, - long int size, - long int alignment, - gras_datadesc_type_cb_void_t post, - gras_datadesc_type_t **dst) { - RAISE_UNIMPLEMENTED; - /* +gras_datadesc_declare_array_dyn(const char *name, + gras_datadesc_type_t *element_type, + gras_datadesc_type_cb_int_t dynamic_size, + gras_datadesc_type_t **dst) { + gras_error_t errcode; gras_datadesc_type_t *res; + int arch; + + gras_assert1(dynamic_size, + "'%s' is a dynamic array without size discriminant", + name); TRY(gras_ddt_new(name,dst)); res=*dst; - res->size = size > 0?size:0; - res->alignment = alignment; - - if (size > 0) { - res->aligned_size = aligned(size, alignment); - } else { - res->aligned_size = 0; - } - - if (default_value && res->size) { - res->category.ignored_data.default_value = malloc((size_t)size); - if (! (res->category.ignored_data.default_value) ) - RAISE_MALLOC; - memcpy(res->category.ignored_data.default_value, - default_value, (size_t)size); + for (arch=0; archsize[arch] = -1; /* make sure it indicates "dynamic" */ + res->alignment[arch] = element_type->alignment[arch]; + res->aligned_size[arch] = -1; /*FIXME: That was so in GS, but looks stupid*/ } - res->category_code = e_gras_datadesc_type_cat_ignored; - res->category.ignored_data.free_func = free_func; - - res->post = post; - + res->category_code = e_gras_datadesc_type_cat_array; - res->size = size; + res->category.array_data.code = element_type->code; + res->category.array_data.fixed_size = -1; + res->category.array_data.dynamic_size = dynamic_size; return no_error; - */ } -/** - * gras_ddt_new_parse: - * - * Create a datadescription from the result of parsing the C type description - */ gras_error_t -gras_ddt_new_parse(const char *name, - const char *C_statement, - gras_datadesc_type_t **dst) { +gras_datadesc_import_nws(const char *name, + const DataDescriptor *desc, + size_t howmany, + gras_datadesc_type_t **dst) { RAISE_UNIMPLEMENTED; } - -gras_error_t -gras_ddt_new_from_nws(const char *name, - const DataDescriptor *desc, - size_t howmany, - gras_datadesc_type_t **dst) { - RAISE_UNIMPLEMENTED; +/** + * gras_datadesc_cb_set_pre: + * + * Add a pre-send callback to this datadexc + */ +void gras_datadesc_cb_set_pre (gras_datadesc_type_t *type, + gras_datadesc_type_cb_void_t pre) { + type->pre = pre; } - /** - * gras_ddt_free: + * gras_datadesc_cb_set_post: * - * Frees a datadescription. + * Add a post-send callback to this datadexc */ -void gras_ddt_free(gras_datadesc_type_t **type) { - gras_datadesc_type_t *t; +void gras_datadesc_cb_set_post(gras_datadesc_type_t *type, + gras_datadesc_type_cb_void_t post) { + type->post = post; +} - if (type && *type) { - t=*type; +/** + * gras_datadesc_ref: + * + * Adds a reference to the datastruct. + * ddt will be freed only when the refcount becomes 0. + */ +void gras_datadesc_ref(gras_datadesc_type_t *type) { + type->refcounter ++; +} - free(t->name); - switch (t->category_code) { +/** + * gras_datadesc_unref: + * + * Adds a reference to the datastruct. + * ddt will be freed only when the refcount becomes 0. + */ +void gras_datadesc_unref(gras_datadesc_type_t *type) { + type->refcounter--; + if (!type->refcounter) { + /* even the set of ddt released that type. Let's free it */ + DEBUG1("Let's free ddt %s",type->name); + + free(type->name); + switch (type->category_code) { case e_gras_datadesc_type_cat_scalar: case e_gras_datadesc_type_cat_ref: case e_gras_datadesc_type_cat_array: @@ -441,22 +532,24 @@ void gras_ddt_free(gras_datadesc_type_t **type) { break; case e_gras_datadesc_type_cat_ignored: - if (t->category.ignored_data.free_func) { - t->category.ignored_data.free_func(t->category.ignored_data.default_value); + if (type->category.ignored_data.free_func) { + type->category.ignored_data.free_func + (type->category.ignored_data.default_value); } break; case e_gras_datadesc_type_cat_struct: - gras_dynar_free(t->category.struct_data.fields); + gras_dynar_free(type->category.struct_data.fields); break; case e_gras_datadesc_type_cat_union: - gras_dynar_free(t->category.union_data.fields); + gras_dynar_free(type->category.union_data.fields); break; default: /* datadesc was invalid. Killing it is like euthanasy, I guess */ break; } + free(type); } }