summaryrefslogtreecommitdiffstats
path: root/src/H5Gname.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-11-07 19:03:07 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-11-07 19:03:07 (GMT)
commit53357538de48331d44345e8b91020c84fc144e9c (patch)
tree49eda56e271ad0f580d87d16bf338ae20ddc9c56 /src/H5Gname.c
parentde285fb90913bdc8a67f9a226de1b3d7ebd805db (diff)
downloadhdf5-53357538de48331d44345e8b91020c84fc144e9c.zip
hdf5-53357538de48331d44345e8b91020c84fc144e9c.tar.gz
hdf5-53357538de48331d44345e8b91020c84fc144e9c.tar.bz2
[svn-r12876] Description:
Make code that retrieves names for references thrash memory less by keeping track of the current buffer size and only re-allocating it when necessary. Tested on: Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Gname.c')
-rw-r--r--src/H5Gname.c21
1 files changed, 17 insertions, 4 deletions
diff --git a/src/H5Gname.c b/src/H5Gname.c
index b4c3db9..efa7865 100644
--- a/src/H5Gname.c
+++ b/src/H5Gname.c
@@ -57,6 +57,7 @@ typedef struct H5G_ref_path_iter_t {
/* In/Out */
H5SL_t *ref_path_table; /* Skip list for tracking visited nodes */
+ size_t max_container_len; /* Maximum size of container */
/* Out */
char *container; /* full name of the container object */
@@ -1077,9 +1078,15 @@ H5G_refname_iterator(hid_t group, const char *name, void *_udata)
* the correct object is found in a mounted file hierarchy)
*/
if(udata->loc->addr == objno && udata->loc->file == loc.oloc->file) {
+ size_t len_needed; /* Length of container string needed */
+
/* Build the object's full name */
- if(NULL == (udata->container = H5MM_realloc(udata->container, HDstrlen(udata->container) + HDstrlen(name) + 2)))
- HGOTO_ERROR(H5E_SYM, H5E_NOSPACE, FAIL, "can't allocate path string")
+ len_needed = HDstrlen(udata->container) + HDstrlen(name) + 2;
+ if(len_needed > udata->max_container_len) {
+ if(NULL == (udata->container = H5MM_realloc(udata->container, len_needed)))
+ HGOTO_ERROR(H5E_SYM, H5E_NOSPACE, FAIL, "can't allocate path string")
+ udata->max_container_len = len_needed;
+ } /* end if */
HDstrcat(udata->container, name);
/* We found a match so we return immediately */
@@ -1110,12 +1117,17 @@ H5G_refname_iterator(hid_t group, const char *name, void *_udata)
/* If it's a group, we recurse into it */
if(sb.type == H5G_GROUP) {
int last_obj;
+ size_t len_needed; /* Length of container string needed */
size_t len;
/* Build full path name of group to recurse into */
len = HDstrlen(udata->container);
- if(NULL == (udata->container = H5MM_realloc(udata->container, HDstrlen(udata->container) + HDstrlen(name) + 2)))
- HGOTO_ERROR(H5E_SYM, H5E_NOSPACE, FAIL, "can't allocate path string")
+ len_needed = len + HDstrlen(name) + 2;
+ if(len_needed > udata->max_container_len) {
+ if(NULL == (udata->container = H5MM_realloc(udata->container, len_needed)))
+ HGOTO_ERROR(H5E_SYM, H5E_NOSPACE, FAIL, "can't allocate path string")
+ udata->max_container_len = len_needed;
+ } /* end if */
if(!udata->is_root_group)
HDstrcat(udata->container, name);
else
@@ -1198,6 +1210,7 @@ H5G_get_refobj_name(hid_t file, hid_t dxpl_id, const H5O_loc_t *loc,
udata.is_root_group = TRUE;
if(NULL == (udata.container = H5MM_strdup("")))
HGOTO_ERROR(H5E_SYM, H5E_NOSPACE, FAIL, "can't allocate root group name")
+ udata.max_container_len = 1;
udata.loc = loc;
/* Create skip list to store reference path information */