2003-04-03 02:44:12 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
|
|
|
* the files COPYING and Copyright.html. COPYING can be found at the root *
|
|
|
|
* of the source code distribution tree; Copyright.html can be found at the *
|
|
|
|
* root level of an installed copy of the electronic HDF5 document set and *
|
|
|
|
* is linked from the top-level documents page. It can also be found at *
|
|
|
|
* http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
* access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. *
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
#include "h5trav.h"
|
2003-10-23 05:30:19 +08:00
|
|
|
#include "H5private.h"
|
2003-04-09 04:27:27 +08:00
|
|
|
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* functions for traversal */
|
2003-10-29 01:40:05 +08:00
|
|
|
int traverse( hid_t loc_id,
|
|
|
|
const char *group_name,
|
|
|
|
trav_table_t *table,
|
|
|
|
trav_info_t *info,
|
|
|
|
int *idx );
|
|
|
|
|
2003-12-19 00:18:09 +08:00
|
|
|
herr_t get_nnames( hid_t loc_id,
|
2003-10-29 01:40:05 +08:00
|
|
|
const char *group_name );
|
|
|
|
|
|
|
|
herr_t get_name_type( hid_t loc_id,
|
|
|
|
const char *group_name,
|
|
|
|
int idx,
|
|
|
|
char **name,
|
2003-12-04 23:31:05 +08:00
|
|
|
H5G_obj_t *type );
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2003-10-29 01:40:05 +08:00
|
|
|
* Function: h5trav_getinfo
|
2003-01-24 06:08:51 +08:00
|
|
|
*
|
2003-10-29 01:40:05 +08:00
|
|
|
* Purpose: get an array of "trav_info_t" , containing the name and type of
|
|
|
|
* objects in the file
|
2003-01-24 06:08:51 +08:00
|
|
|
*
|
2003-12-19 00:18:09 +08:00
|
|
|
* Return: number of object names in file
|
2003-01-24 06:08:51 +08:00
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: November 6, 2002
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2003-10-29 01:40:05 +08:00
|
|
|
int h5trav_getinfo( hid_t file_id, trav_info_t *info )
|
2003-01-24 06:08:51 +08:00
|
|
|
{
|
|
|
|
|
2003-10-29 01:40:05 +08:00
|
|
|
trav_table_t *table=NULL;
|
2003-12-19 00:18:09 +08:00
|
|
|
int nnames=0;
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
/* init table */
|
2003-10-29 01:40:05 +08:00
|
|
|
trav_table_init( &table );
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
/* iterate starting on the root group */
|
2003-12-19 00:18:09 +08:00
|
|
|
if (( nnames = traverse( file_id, "/", table, info, &nnames )) < 0 )
|
2003-01-24 06:08:51 +08:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* free table */
|
2003-10-29 01:40:05 +08:00
|
|
|
trav_table_free( table );
|
2003-01-24 06:08:51 +08:00
|
|
|
|
2003-12-19 00:18:09 +08:00
|
|
|
return nnames;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: h5trav_gettable
|
|
|
|
*
|
|
|
|
* Purpose: get the trav_table_t struct
|
|
|
|
*
|
|
|
|
* Return: 0, -1 on error
|
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: December 17, 2003
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
int h5trav_gettable(hid_t fid, trav_table_t *travt)
|
|
|
|
{
|
|
|
|
int nnames=0;
|
|
|
|
|
|
|
|
/* iterate starting on the root group */
|
|
|
|
if (( nnames = traverse(fid,"/",travt,NULL,&nnames))<0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-10-23 05:30:19 +08:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2003-10-29 01:40:05 +08:00
|
|
|
* Function: h5trav_getindex
|
2003-10-23 05:30:19 +08:00
|
|
|
*
|
|
|
|
* Purpose: get index of OBJ in list
|
|
|
|
*
|
|
|
|
* Return: index, -1 if not found
|
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: May 9, 2003
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2003-10-29 01:40:05 +08:00
|
|
|
int h5trav_getindex( const char *obj, int nobjs, trav_info_t *info )
|
2003-10-23 05:30:19 +08:00
|
|
|
{
|
|
|
|
char *pdest;
|
|
|
|
int result;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for ( i = 0; i < nobjs; i++)
|
|
|
|
{
|
|
|
|
if ( strcmp(obj,info[i].name)==0 )
|
|
|
|
return i;
|
|
|
|
|
|
|
|
pdest = strstr( info[i].name, obj );
|
|
|
|
result = (int)(pdest - info[i].name);
|
|
|
|
|
|
|
|
/* found at position 1, meaning without '/' */
|
|
|
|
if( pdest != NULL && result==1 )
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2003-10-29 01:40:05 +08:00
|
|
|
* Function: h5trav_freeinfo
|
2003-10-23 05:30:19 +08:00
|
|
|
*
|
|
|
|
* Purpose: free info memory
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2003-10-29 01:40:05 +08:00
|
|
|
void h5trav_freeinfo( trav_info_t *info, int nobjs )
|
2003-10-23 05:30:19 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if ( info )
|
|
|
|
{
|
|
|
|
for ( i = 0; i < nobjs; i++)
|
|
|
|
{
|
|
|
|
if (info[i].name)
|
|
|
|
HDfree( info[i].name );
|
|
|
|
}
|
|
|
|
HDfree(info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-01-24 06:08:51 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2003-12-19 00:18:09 +08:00
|
|
|
* Function: count_names
|
2003-01-24 06:08:51 +08:00
|
|
|
*
|
|
|
|
* Purpose: operator function
|
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: October 10, 2002
|
|
|
|
*
|
|
|
|
* Comments:
|
|
|
|
*
|
|
|
|
* Modifications:
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2003-12-19 00:18:09 +08:00
|
|
|
static herr_t count_names( hid_t loc_id, const char *name, void *op_data)
|
2003-01-24 06:08:51 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
H5G_stat_t statbuf;
|
|
|
|
|
2003-10-23 05:30:19 +08:00
|
|
|
if (H5Gget_objinfo( loc_id, name, 0, &statbuf) < 0 )
|
2003-01-24 06:08:51 +08:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
(*(int *)op_data)++;
|
|
|
|
|
|
|
|
/* Define a default zero value for return. This will cause the iterator to continue */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2003-12-19 00:18:09 +08:00
|
|
|
* Function: get_nnames
|
2003-01-24 06:08:51 +08:00
|
|
|
*
|
2003-12-19 00:18:09 +08:00
|
|
|
* Purpose: Counts the number of names in the group GROUP_NAME
|
2003-01-24 06:08:51 +08:00
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: October 10, 2002
|
|
|
|
*
|
|
|
|
* Return:
|
|
|
|
* Success: The return value of the first operator that
|
|
|
|
* returns non-zero, or zero if all members were
|
|
|
|
* processed with no operator returning non-zero.
|
|
|
|
*
|
|
|
|
* Failure: Negative if something goes wrong within the
|
|
|
|
* library, or the negative value returned by one
|
|
|
|
* of the operators.
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2003-12-19 00:18:09 +08:00
|
|
|
herr_t get_nnames( hid_t loc_id, const char *group_name )
|
2003-01-24 06:08:51 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
int nobjs = 0;
|
|
|
|
|
2003-12-19 00:18:09 +08:00
|
|
|
if ( H5Giterate( loc_id, group_name, NULL, count_names, (void *)&nobjs ) < 0 )
|
2003-01-24 06:08:51 +08:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
return nobjs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: opget_info
|
|
|
|
*
|
|
|
|
* Purpose: operator function
|
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: October 10, 2002
|
|
|
|
*
|
|
|
|
* Comments:
|
|
|
|
*
|
|
|
|
* Modifications:
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
static herr_t opget_info( hid_t loc_id, const char *name, void *op_data)
|
|
|
|
{
|
|
|
|
|
|
|
|
H5G_stat_t statbuf;
|
|
|
|
|
2003-10-23 05:30:19 +08:00
|
|
|
if (H5Gget_objinfo( loc_id, name, 0, &statbuf) < 0 )
|
2003-08-22 21:45:40 +08:00
|
|
|
return -1;
|
2003-01-24 06:08:51 +08:00
|
|
|
|
2003-10-29 01:40:05 +08:00
|
|
|
((trav_info_t *)op_data)->type = statbuf.type;
|
|
|
|
((trav_info_t *)op_data)->name = (char *)HDstrdup(name);
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
/* Define 1 for return. This will cause the iterator to stop */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: get_name_type
|
|
|
|
*
|
|
|
|
* Purpose:
|
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: October 10, 2002
|
|
|
|
*
|
|
|
|
* Return:
|
|
|
|
* Success: The return value of the first operator that
|
|
|
|
* returns non-zero, or zero if all members were
|
|
|
|
* processed with no operator returning non-zero.
|
|
|
|
*
|
|
|
|
* Failure: Negative if something goes wrong within the
|
|
|
|
* library, or the negative value returned by one
|
|
|
|
* of the operators.
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2003-12-04 23:31:05 +08:00
|
|
|
herr_t get_name_type( hid_t loc_id,
|
|
|
|
const char *group_name,
|
|
|
|
int idx,
|
|
|
|
char **name,
|
|
|
|
H5G_obj_t *type )
|
2003-01-24 06:08:51 +08:00
|
|
|
{
|
|
|
|
|
2003-10-29 01:40:05 +08:00
|
|
|
trav_info_t info;
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
if (H5Giterate( loc_id, group_name, &idx, opget_info, (void *)&info) < 0 )
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
*name = info.name;
|
|
|
|
*type = info.type;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: traverse
|
|
|
|
*
|
2003-10-29 01:40:05 +08:00
|
|
|
* Purpose: recursive function that searches HDF5 objects in LOC_ID
|
2003-01-24 06:08:51 +08:00
|
|
|
*
|
2003-10-29 01:40:05 +08:00
|
|
|
* Return: number of objects found in LOC_ID
|
2003-01-24 06:08:51 +08:00
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: November 4, 2002
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2003-10-29 01:40:05 +08:00
|
|
|
int traverse( hid_t loc_id,
|
|
|
|
const char *group_name,
|
|
|
|
trav_table_t *table,
|
|
|
|
trav_info_t *info,
|
|
|
|
int *idx )
|
2003-01-24 06:08:51 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
char *name=NULL;
|
2003-12-03 23:35:32 +08:00
|
|
|
H5G_obj_t type;
|
2003-12-19 00:18:09 +08:00
|
|
|
int n_names;
|
2003-01-24 06:08:51 +08:00
|
|
|
char *path=NULL;
|
|
|
|
H5G_stat_t statbuf;
|
|
|
|
int inserted_objs=0;
|
2003-12-19 00:18:09 +08:00
|
|
|
int i, j;
|
|
|
|
|
2003-07-26 10:55:47 +08:00
|
|
|
|
2003-12-19 00:18:09 +08:00
|
|
|
/* get the number of names */
|
|
|
|
if (( n_names = get_nnames( loc_id, group_name )) < 0 )
|
2003-01-24 06:08:51 +08:00
|
|
|
return -1;
|
|
|
|
|
2003-12-19 00:18:09 +08:00
|
|
|
for ( i = 0; i < n_names; i++)
|
2003-01-24 06:08:51 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
if (get_name_type( loc_id, group_name, i, &name, &type ) < 0 )
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* allocate path buffer */
|
2003-10-23 05:30:19 +08:00
|
|
|
path = (char*) HDmalloc(strlen(group_name) + strlen(name) + 2);
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
/* initialize path */
|
|
|
|
strcpy( path, group_name );
|
|
|
|
if ( strcmp(group_name,"/")!=0 )
|
|
|
|
strcat( path, "/" );
|
|
|
|
strcat( path, name );
|
|
|
|
|
|
|
|
/* disable error reporting */
|
2003-08-09 03:30:19 +08:00
|
|
|
H5E_BEGIN_TRY {
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
/* get info */
|
2003-10-23 05:30:19 +08:00
|
|
|
H5Gget_objinfo( loc_id, path, 1, &statbuf);
|
2003-08-09 03:30:19 +08:00
|
|
|
} H5E_END_TRY;
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
/* add to array */
|
|
|
|
if ( info )
|
|
|
|
{
|
2003-04-09 04:27:27 +08:00
|
|
|
info[*idx].name = (char *)HDstrdup(path);
|
2003-01-24 06:08:51 +08:00
|
|
|
info[*idx].type = type;
|
|
|
|
(*idx)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch ( type )
|
|
|
|
{
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* H5G_GROUP
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
case H5G_GROUP:
|
|
|
|
|
|
|
|
/* increment */
|
|
|
|
inserted_objs++;
|
|
|
|
|
|
|
|
/* nlink is number of hard links to object */
|
2003-10-29 01:40:05 +08:00
|
|
|
if (statbuf.nlink > 0 && trav_table_search(statbuf.objno, table ) == -1)
|
2003-01-24 06:08:51 +08:00
|
|
|
{
|
|
|
|
/* add object to table */
|
2003-10-29 01:40:05 +08:00
|
|
|
trav_table_add(statbuf.objno, path, H5G_GROUP, table );
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
/* recurse with the absolute name */
|
|
|
|
inserted_objs += traverse( loc_id, path, table, info, idx );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* search table
|
|
|
|
group with more than one link to it */
|
|
|
|
if (statbuf.nlink > 1)
|
|
|
|
{
|
2003-10-29 01:40:05 +08:00
|
|
|
if ((j = trav_table_search(statbuf.objno, table )) < 0 )
|
2003-01-24 06:08:51 +08:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
if ( table->objs[j].displayed == 0 )
|
|
|
|
{
|
|
|
|
table->objs[j].displayed = 1;
|
2003-12-19 04:25:11 +08:00
|
|
|
trav_table_addlink(table,j,path);
|
2003-01-24 06:08:51 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-10-30 01:46:11 +08:00
|
|
|
#if defined (H5_TRAV_DEBUG)
|
2003-12-19 04:25:11 +08:00
|
|
|
printf("<%s> HARDLINK\n", path);
|
2003-10-30 01:46:11 +08:00
|
|
|
#endif
|
2003-12-19 00:18:09 +08:00
|
|
|
trav_table_addlink(table,j,path);
|
2003-01-24 06:08:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* H5G_DATASET
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
case H5G_DATASET:
|
|
|
|
|
|
|
|
/* increment */
|
|
|
|
inserted_objs++;
|
|
|
|
|
|
|
|
/* nlink is number of hard links to object */
|
2003-10-29 01:40:05 +08:00
|
|
|
if (statbuf.nlink > 0 && trav_table_search(statbuf.objno, table ) == -1)
|
2003-01-24 06:08:51 +08:00
|
|
|
{
|
|
|
|
/* add object to table */
|
2003-10-29 01:40:05 +08:00
|
|
|
trav_table_add(statbuf.objno, path, H5G_DATASET, table );
|
2003-01-24 06:08:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* search table
|
|
|
|
dataset with more than one link to it */
|
|
|
|
if (statbuf.nlink > 1)
|
|
|
|
{
|
2003-10-29 01:40:05 +08:00
|
|
|
if ((j = trav_table_search(statbuf.objno, table )) < 0 )
|
2003-01-24 06:08:51 +08:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
if ( table->objs[j].displayed == 0 )
|
|
|
|
{
|
|
|
|
table->objs[j].displayed = 1;
|
2003-12-19 04:25:11 +08:00
|
|
|
trav_table_addlink(table,j,path);
|
2003-01-24 06:08:51 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-10-30 01:46:11 +08:00
|
|
|
#if defined (H5_TRAV_DEBUG)
|
2003-12-19 04:25:11 +08:00
|
|
|
printf("<%s> HARDLINK\n", path);
|
2003-10-30 01:46:11 +08:00
|
|
|
#endif
|
2003-12-19 00:18:09 +08:00
|
|
|
trav_table_addlink(table,j,path);
|
|
|
|
} /* displayed==1 */
|
|
|
|
} /* nlink>1 */
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* H5G_TYPE
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
case H5G_TYPE:
|
|
|
|
|
|
|
|
/* increment */
|
|
|
|
inserted_objs++;
|
|
|
|
|
|
|
|
/* nlink is number of hard links to object */
|
2003-10-29 01:40:05 +08:00
|
|
|
if (statbuf.nlink > 0 && trav_table_search(statbuf.objno, table ) == -1)
|
2003-01-24 06:08:51 +08:00
|
|
|
{
|
|
|
|
/* add object to table */
|
2003-10-29 01:40:05 +08:00
|
|
|
trav_table_add(statbuf.objno, path, H5G_TYPE, table );
|
2003-01-24 06:08:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* H5G_LINK
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
case H5G_LINK:
|
|
|
|
|
|
|
|
/* increment */
|
|
|
|
inserted_objs++;
|
2003-12-19 00:18:09 +08:00
|
|
|
|
|
|
|
/* add object to table */
|
|
|
|
trav_table_add(statbuf.objno, path, H5G_LINK, table );
|
|
|
|
|
2003-01-24 06:08:51 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* end switch
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( name )
|
2003-10-23 05:30:19 +08:00
|
|
|
HDfree( name );
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
if ( path )
|
2003-10-23 05:30:19 +08:00
|
|
|
HDfree( path );
|
2003-01-24 06:08:51 +08:00
|
|
|
|
|
|
|
} /* i */
|
|
|
|
|
|
|
|
return inserted_objs;
|
|
|
|
}
|
|
|
|
|
2003-12-17 22:07:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2003-12-19 00:18:09 +08:00
|
|
|
* Function: h5trav_printinfo
|
2003-12-17 22:07:41 +08:00
|
|
|
*
|
2003-12-19 00:18:09 +08:00
|
|
|
* Purpose: print list of names in file
|
2003-12-17 22:07:41 +08:00
|
|
|
*
|
|
|
|
* Return: void
|
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: May 9, 2003
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
void h5trav_printinfo(int nobjs, trav_info_t *travi)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for ( i = 0; i < nobjs; i++)
|
|
|
|
{
|
|
|
|
switch ( travi[i].type )
|
|
|
|
{
|
|
|
|
case H5G_GROUP:
|
|
|
|
printf(" %-10s %s\n", "group", travi[i].name );
|
|
|
|
break;
|
|
|
|
case H5G_DATASET:
|
|
|
|
printf(" %-10s %s\n", "dataset", travi[i].name );
|
|
|
|
break;
|
|
|
|
case H5G_TYPE:
|
|
|
|
printf(" %-10s %s\n", "datatype", travi[i].name );
|
|
|
|
break;
|
|
|
|
case H5G_LINK:
|
|
|
|
printf(" %-10s %s\n", "link", travi[i].name );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf(" %-10s %s\n", "User defined object", travi[i].name );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-12-19 00:18:09 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: h5trav_printtable
|
|
|
|
*
|
|
|
|
* Purpose: print list of objects in file
|
|
|
|
*
|
|
|
|
* Return: void
|
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: May 9, 2003
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
void h5trav_printtable(trav_table_t *table)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for ( i = 0; i < table->nobjs; i++)
|
|
|
|
{
|
|
|
|
switch ( table->objs[i].type )
|
|
|
|
{
|
|
|
|
case H5G_GROUP:
|
|
|
|
printf(" %-10s %s\n", "group", table->objs[i].name );
|
|
|
|
break;
|
|
|
|
case H5G_DATASET:
|
|
|
|
printf(" %-10s %s\n", "dataset", table->objs[i].name );
|
|
|
|
break;
|
|
|
|
case H5G_TYPE:
|
|
|
|
printf(" %-10s %s\n", "datatype", table->objs[i].name );
|
|
|
|
break;
|
|
|
|
case H5G_LINK:
|
|
|
|
printf(" %-10s %s\n", "link", table->objs[i].name );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf(" %-10s %s\n", "User defined object", table->objs[i].name );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (table->objs[i].nlinks)
|
|
|
|
{
|
|
|
|
for ( j=0; j<table->objs[i].nlinks; j++)
|
|
|
|
{
|
2003-12-19 04:25:11 +08:00
|
|
|
printf(" %-10s %s\n", " hardlink", table->objs[i].links[j].new_name );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: h5trav_getindext
|
|
|
|
*
|
|
|
|
* Purpose: get index of NAME in list
|
|
|
|
*
|
|
|
|
* Return: index, -1 if not found
|
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: December 18, 2003
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
int h5trav_getindext(const char *name, trav_table_t *table)
|
|
|
|
{
|
|
|
|
char *pdest;
|
|
|
|
int result;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for ( i = 0; i < table->nobjs; i++)
|
|
|
|
{
|
|
|
|
if ( strcmp(name,table->objs[i].name)==0 )
|
|
|
|
return i;
|
|
|
|
|
|
|
|
pdest = strstr( table->objs[i].name, name );
|
|
|
|
result = (int)(pdest - table->objs[i].name);
|
|
|
|
|
|
|
|
/* found at position 1, meaning without '/' */
|
|
|
|
if( pdest != NULL && result==1 )
|
|
|
|
return i;
|
|
|
|
|
|
|
|
/* search also in the list of links */
|
|
|
|
if (table->objs[i].nlinks)
|
|
|
|
{
|
|
|
|
for ( j=0; j<table->objs[i].nlinks; j++)
|
|
|
|
{
|
|
|
|
if ( strcmp(name,table->objs[i].links[j].new_name)==0 )
|
|
|
|
return i;
|
|
|
|
|
|
|
|
pdest = strstr( table->objs[i].links[j].new_name, name );
|
|
|
|
result = (int)(pdest - table->objs[i].links[j].new_name);
|
|
|
|
|
|
|
|
/* found at position 1, meaning without '/' */
|
|
|
|
if( pdest != NULL && result==1 )
|
|
|
|
return i;
|
|
|
|
|
2003-12-19 00:18:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2003-12-19 04:25:11 +08:00
|
|
|
return -1;
|
2003-12-19 00:18:09 +08:00
|
|
|
}
|
|
|
|
|