diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2002-11-25 17:59:14 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2002-11-25 17:59:14 (GMT) |
commit | 8333adf8ffc1265440aefad62e0cd9ab33175bd7 (patch) | |
tree | dc4321c2e92663f32f83c9feab57aaddab839f57 /src/H5Gpkg.h | |
parent | b4b718b9297c479a3d1177209dcf1214d7de27a4 (diff) | |
download | hdf5-8333adf8ffc1265440aefad62e0cd9ab33175bd7.zip hdf5-8333adf8ffc1265440aefad62e0cd9ab33175bd7.tar.gz hdf5-8333adf8ffc1265440aefad62e0cd9ab33175bd7.tar.bz2 |
[svn-r6136]
Purpose:
new functions
Description:
H5Gget_num_objs, H5Gget_objname_by_idx and H5Gget_objtype_by_idx.
Platforms tested:
modi4, arabica, eirene
Misc. update:
RELEASE.txt updated.
Diffstat (limited to 'src/H5Gpkg.h')
-rw-r--r-- | src/H5Gpkg.h | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h index 9d2b98c..3fc8bd3 100644 --- a/src/H5Gpkg.h +++ b/src/H5Gpkg.h @@ -110,6 +110,18 @@ typedef struct H5G_bt_ud2_t { } H5G_bt_ud2_t; /* + * Data exchange structure to pass through the B-tree layer for the + * H5B_iterate function. + */ +typedef struct H5G_bt_ud3_t { + struct H5G_t *group; /*the group to which group_id points */ + hsize_t idx; /*index of group member to be querried */ + char *name; /*member name to be returned */ + hsize_t num_objs; /*the number of objects having been traversed*/ + int type; /*member type to be returned */ +} H5G_bt_ud3_t; + +/* * This is the class identifier to give to the B-tree functions. */ H5_DLLVAR H5B_class_t H5B_SNODE[1]; @@ -140,7 +152,12 @@ H5_DLL herr_t H5G_ent_encode_vec(H5F_t *f, uint8_t **pp, /* Functions that understand symbol table nodes */ H5_DLL unsigned H5G_node_k(const H5F_t *f); -H5_DLL herr_t H5G_node_iterate (H5F_t *f, void UNUSED *_lt_key, haddr_t addr, - void UNUSED *_rt_key, void *_udata); - +H5_DLL H5B_iterate_t H5G_node_iterate (H5F_t *f, void UNUSED *_lt_key, haddr_t addr, + void UNUSED *_rt_key, void *_udata); +H5_DLL H5B_iterate_t H5G_node_sumup(H5F_t *f, void UNUSED *_lt_key, haddr_t addr, + void UNUSED *_rt_key, void *_udata); +H5_DLL H5B_iterate_t H5G_node_name(H5F_t *f, void UNUSED *_lt_key, haddr_t addr, + void UNUSED *_rt_key, void *_udata); +H5_DLL H5B_iterate_t H5G_node_type(H5F_t *f, void UNUSED *_lt_key, haddr_t addr, + void UNUSED *_rt_key, void *_udata); #endif |