/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 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. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * Programmer: Robb Matzke * Monday, March 23, 1998 */ /* * We include the private header file so we can get to the uniform * programming environment it declares. Other than that, h5ls only calls * HDF5 API functions (except for H5G_basename()) */ #include "H5private.h" #include "h5tools.h" #include "h5tools_utils.h" /* Command-line switches */ static int verbose_g = 0; /* lots of extra output */ static int width_g = 80; /* output width in characters */ static hbool_t address_g = FALSE; /* print raw data addresses */ static hbool_t data_g = FALSE; /* display dataset values? */ static hbool_t label_g = FALSE; /* label compound values? */ static hbool_t string_g = FALSE; /* print 1-byte numbers as ASCII? */ static hbool_t fullname_g = FALSE; /* print full path names */ static hbool_t recursive_g = FALSE; /* recursive descent listing */ static hbool_t grp_literal_g = FALSE; /* list group, not contents */ static hbool_t hexdump_g = FALSE; /* show data as raw hexadecimal */ static hbool_t show_errors_g = FALSE; /* print HDF5 error messages */ static hbool_t simple_output_g = FALSE; /* make output more machine-readable */ static hbool_t show_file_name_g = FALSE; /* show file name for full names */ /* Info to pass to the iteration functions */ typedef struct iter_t { const char *container; /* full name of the container object */ } iter_t; /* Table containing object id and object name */ static struct { int nalloc; /* number of slots allocated */ int nobjs; /* number of objects */ struct { haddr_t id; /* object number */ char *name; /* full object name */ } *obj; } idtab_g; /* Information about how to display each type of object */ static struct dispatch_t { const char *name; hid_t (*open)(hid_t loc, const char *name); herr_t (*close)(hid_t obj); herr_t (*list1)(hid_t obj); herr_t (*list2)(hid_t obj, const char *name); } dispatch_g[H5G_NLIBTYPES]; #define DISPATCH(TYPE,NAME,OPEN,CLOSE,LIST1,LIST2) { \ dispatch_g[TYPE].name = (NAME); \ dispatch_g[TYPE].open = (OPEN); \ dispatch_g[TYPE].close = (CLOSE); \ dispatch_g[TYPE].list1 = (LIST1); \ dispatch_g[TYPE].list2 = (LIST2); \ } static herr_t list (hid_t group, const char *name, void *cd); static void display_type(hid_t type, int ind); static char *fix_name(const char *path, const char *base); const char *progname="h5ls"; int d_status; /*------------------------------------------------------------------------- * Function: usage * * Purpose: Prints a usage message on stderr and then returns. * * Return: void * * Programmer: Robb Matzke * Thursday, July 16, 1998 * * Modifications: * *------------------------------------------------------------------------- */ static void usage (void) { fprintf(stderr, "\ usage: %s [OPTIONS] [OBJECTS...]\n\ OPTIONS\n\ -h, -?, --help Print a usage message and exit\n\ -a, --address Print addresses for raw data\n\ -d, --data Print the values of datasets\n\ -e, --errors Show all HDF5 error reporting\n\ -f, --full Print full path names instead of base names\n\ -g, --group Show information about a group, not its contents\n\ -l, --label Label members of compound datasets\n\ -r, --recursive List all groups recursively, avoiding cycles\n\ -s, --string Print 1-byte integer datasets as ASCII\n\ -S, --simple Use a machine-readable output format\n\ -wN, --width=N Set the number of columns of output\n\ -v, --verbose Generate more verbose output\n\ -V, --version Print version number and exit\n\ --vfd=DRIVER Use the specified virtual file driver\n\ -x, --hexdump Show raw data in hexadecimal format\n\ \n\ OBJECTS\n\ Each object consists of an HDF5 file name optionally followed by a\n\ slash and an object name within the file (if no object is specified\n\ within the file then the contents of the root group are displayed).\n\ The file name may include a printf(3C) integer format such as\n\ \"%%05d\" to open a file family.\n", progname); } /*------------------------------------------------------------------------- * Function: sym_insert * * Purpose: Add a symbol to the table. * * Return: void * * Programmer: Robb Matzke * Thursday, January 21, 1999 * * Modifications: * *------------------------------------------------------------------------- */ static void sym_insert(H5G_stat_t *sb, const char *name) { haddr_t objno; /* Compact form of object's location */ int n; /* Don't add it if the link count is 1 because such an object can only * have one name. */ if (sb->nlink<2) return; /* Extend the table */ if (idtab_g.nobjs>=idtab_g.nalloc) { idtab_g.nalloc = MAX(256, 2*idtab_g.nalloc); idtab_g.obj = realloc(idtab_g.obj, idtab_g.nalloc*sizeof(idtab_g.obj[0])); } /* Insert the entry */ n = idtab_g.nobjs++; objno = (haddr_t)sb->objno[0] | ((haddr_t)sb->objno[1] << (8 * sizeof(long))); idtab_g.obj[n].id = objno; idtab_g.obj[n].name = HDstrdup(name); } /*------------------------------------------------------------------------- * Function: sym_lookup * * Purpose: Find another name for the specified object. * * Return: Success: Ptr to another name. * * Failure: NULL * * Programmer: Robb Matzke * Thursday, January 21, 1999 * * Modifications: * *------------------------------------------------------------------------- */ static char * sym_lookup(H5G_stat_t *sb) { haddr_t objno; /* Compact form of object's location */ int n; if (sb->nlink<2) return NULL; /*only one name possible*/ objno = (haddr_t)sb->objno[0] | ((haddr_t)sb->objno[1] << (8 * sizeof(long))); for (n=0; n0) { switch (plsb) { case H5T_PAD_ZERO: plsb_s = "zero"; break; case H5T_PAD_ONE: plsb_s = "one"; break; case H5T_PAD_BACKGROUND: plsb_s = "bkg"; break; case H5T_PAD_ERROR: case H5T_NPAD: plsb_s = "unknown"; break; } } if (H5Tget_offset(type)+prec<8*H5Tget_size(type)) { switch (pmsb) { case H5T_PAD_ZERO: pmsb_s = "zero"; break; case H5T_PAD_ONE: pmsb_s = "one"; break; case H5T_PAD_BACKGROUND: pmsb_s = "bkg"; break; case H5T_PAD_ERROR: case H5T_NPAD: pmsb_s = "unknown"; break; } } if (plsb_s || pmsb_s) { printf("\n%*s(", ind, ""); if (plsb_s) { nbits = H5Tget_offset(type); printf("%lu %s bit%s at bit 0", (unsigned long)nbits, plsb_s, 1==nbits?"":"s"); } if (plsb_s && pmsb_s) printf(", "); if (pmsb_s) { nbits = 8*H5Tget_size(type)-(H5Tget_offset(type)+prec); printf("%lu %s bit%s at bit %lu", (unsigned long)nbits, pmsb_s, 1==nbits?"":"s", (unsigned long)(8*H5Tget_size(type)-nbits)); } printf(")"); } } } /*------------------------------------------------------------------------- * Function: display_int_type * * Purpose: Print the name of an integer data type. Common information * like number of bits, byte order, and sign scheme appear on * the first line. Additional information might appear in * parentheses on the following lines. * * Return: Success: TRUE * * Failure: FALSE, nothing printed * * Programmer: Robb Matzke * Thursday, November 5, 1998 * * Modifications: * *------------------------------------------------------------------------- */ static hbool_t display_int_type(hid_t type, int ind) { H5T_order_t order; /* byte order value */ const char *order_s=NULL; /* byte order string */ H5T_sign_t sign; /* sign scheme value */ const char *sign_s=NULL; /* sign scheme string */ if (H5T_INTEGER!=H5Tget_class(type)) return FALSE; /* Byte order */ if (H5Tget_size(type)>1) { order = H5Tget_order(type); if (H5T_ORDER_LE==order) { order_s = " little-endian"; } else if (H5T_ORDER_BE==order) { order_s = " big-endian"; } else if (H5T_ORDER_VAX==order) { order_s = " mixed-endian"; } else { order_s = " unknown-byte-order"; } } else { order_s = ""; } /* Sign */ if ((sign=H5Tget_sign(type))>=0) { if (H5T_SGN_NONE==sign) { sign_s = " unsigned"; } else if (H5T_SGN_2==sign) { sign_s = ""; } else { sign_s = " unknown-sign"; } } else { sign_s = " unknown-sign"; } /* Print size, order, and sign on first line, precision and padding * information on the subsequent lines */ printf("%lu-bit%s%s integer", (unsigned long)(8*H5Tget_size(type)), order_s, sign_s); display_precision(type, ind); return TRUE; } /*------------------------------------------------------------------------- * Function: display_float_type * * Purpose: Print info about a floating point data type. * * Return: Success: TRUE * * Failure: FALSE, nothing printed * * Programmer: Robb Matzke * Thursday, November 5, 1998 * * Modifications: * *------------------------------------------------------------------------- */ static hbool_t display_float_type(hid_t type, int ind) { H5T_order_t order; /* byte order value */ const char *order_s=NULL; /* byte order string */ size_t spos; /* sign bit position */ size_t esize, epos; /* exponent size and position */ size_t msize, mpos; /* significand size and position */ size_t ebias; /* exponent bias */ H5T_norm_t norm; /* significand normalization */ const char *norm_s=NULL; /* normalization string */ H5T_pad_t pad; /* internal padding value */ const char *pad_s=NULL; /* internal padding string */ if (H5T_FLOAT!=H5Tget_class(type)) return FALSE; /* Byte order */ if (H5Tget_size(type)>1) { order = H5Tget_order(type); if (H5T_ORDER_LE==order) { order_s = " little-endian"; } else if (H5T_ORDER_BE==order) { order_s = " big-endian"; } else if (H5T_ORDER_VAX==order) { order_s = " mixed-endian"; } else { order_s = " unknown-byte-order"; } } else { order_s = ""; } /* Print size and byte order on first line, precision and padding on * subsequent lines. */ printf("%lu-bit%s floating-point", (unsigned long)(8*H5Tget_size(type)), order_s); display_precision(type, ind); /* Print sizes, locations, and other information about each field */ H5Tget_fields (type, &spos, &epos, &esize, &mpos, &msize); ebias = H5Tget_ebias(type); norm = H5Tget_norm(type); switch (norm) { case H5T_NORM_IMPLIED: norm_s = ", msb implied"; break; case H5T_NORM_MSBSET: norm_s = ", msb always set"; break; case H5T_NORM_NONE: norm_s = ", no normalization"; break; case H5T_NORM_ERROR: norm_s = ", unknown normalization"; break; } printf("\n%*s(significant for %lu bit%s at bit %lu%s)", ind, "", (unsigned long)msize, 1==msize?"":"s", (unsigned long)mpos, norm_s); printf("\n%*s(exponent for %lu bit%s at bit %lu, bias is 0x%lx)", ind, "", (unsigned long)esize, 1==esize?"":"s", (unsigned long)epos, (unsigned long)ebias); printf("\n%*s(sign bit at %lu)", ind, "", (unsigned long)spos); /* Display internal padding */ if (1+esize+msize0); super = H5Tget_super(type); printf("enum "); display_type(super, ind+4); printf(" {"); /* Determine what data type to use for the native values. To simplify * things we entertain three possibilities: * 1. long_long -- the largest native signed integer * 2. unsigned long_long -- the largest native unsigned integer * 3. raw format */ if (H5Tget_size(type)<=sizeof(long_long)) { dst_size = sizeof(long_long); if (H5T_SGN_NONE==H5Tget_sign(type)) { native = H5T_NATIVE_ULLONG; } else { native = H5T_NATIVE_LLONG; } } else { dst_size = H5Tget_size(type); } /* Get the names and raw values of all members */ name = calloc(nmembs, sizeof(char*)); value = calloc(nmembs, MAX(H5Tget_size(type), dst_size)); for (i=0; i0) H5Tconvert(super, native, nmembs, value, NULL, H5P_DEFAULT); /* Sort members by increasing value */ /*not implemented yet*/ /* Print members */ for (i=0; i", ind+4, ""); printf("\n%*s}", ind, ""); return TRUE; } /*------------------------------------------------------------------------- * Function: display_string_type * * Purpose: Print information about a string data type. * * Return: Success: TRUE * * Failure: FALSE, nothing printed * * Programmer: Robb Matzke * Thursday, November 5, 1998 * * Modifications: * *------------------------------------------------------------------------- */ static hbool_t display_string_type(hid_t type, int UNUSED ind) { H5T_str_t pad; const char *pad_s=NULL; H5T_cset_t cset; const char *cset_s=NULL; if (H5T_STRING!=H5Tget_class(type)) return FALSE; /* Padding */ pad = H5Tget_strpad(type); switch (pad) { case H5T_STR_NULLTERM: pad_s = "null-terminated"; break; case H5T_STR_NULLPAD: pad_s = "null-padded"; break; case H5T_STR_SPACEPAD: pad_s = "space-padded"; break; case H5T_STR_RESERVED_3: case H5T_STR_RESERVED_4: case H5T_STR_RESERVED_5: case H5T_STR_RESERVED_6: case H5T_STR_RESERVED_7: case H5T_STR_RESERVED_8: case H5T_STR_RESERVED_9: case H5T_STR_RESERVED_10: case H5T_STR_RESERVED_11: case H5T_STR_RESERVED_12: case H5T_STR_RESERVED_13: case H5T_STR_RESERVED_14: case H5T_STR_RESERVED_15: case H5T_STR_ERROR: pad_s = "unknown-format"; break; } /* Character set */ cset = H5Tget_cset(type); switch (cset) { case H5T_CSET_ASCII: cset_s = "ASCII"; break; case H5T_CSET_UTF8: cset_s = "UTF-8"; break; case H5T_CSET_RESERVED_2: case H5T_CSET_RESERVED_3: case H5T_CSET_RESERVED_4: case H5T_CSET_RESERVED_5: case H5T_CSET_RESERVED_6: case H5T_CSET_RESERVED_7: case H5T_CSET_RESERVED_8: case H5T_CSET_RESERVED_9: case H5T_CSET_RESERVED_10: case H5T_CSET_RESERVED_11: case H5T_CSET_RESERVED_12: case H5T_CSET_RESERVED_13: case H5T_CSET_RESERVED_14: case H5T_CSET_RESERVED_15: case H5T_CSET_ERROR: cset_s = "unknown-character-set"; break; } if (H5Tis_variable_str(type)) { printf("variable-length"); } else { printf("%lu-byte", (unsigned long)H5Tget_size(type)); } printf(" %s %s string", pad_s, cset_s); return TRUE; } /*------------------------------------------------------------------------- * Function: display_reference_type * * Purpose: Prints information about a reference data type. * * Return: Success: TRUE * * Failure: FALSE, nothing printed * * Programmer: Robb Matzke * Thursday, November 5, 1998 * * Modifications: * Robb Matzke, 1999-06-04 * Knows about object and dataset region references. * *------------------------------------------------------------------------- */ static hbool_t display_reference_type(hid_t type, int UNUSED ind) { if (H5T_REFERENCE!=H5Tget_class(type)) return FALSE; if (H5Tequal(type, H5T_STD_REF_OBJ)) { printf("object reference"); } else if (H5Tequal(type, H5T_STD_REF_DSETREG)) { printf("dataset region reference"); } else { printf("%lu-byte unknown reference", (unsigned long)H5Tget_size(type)); } return TRUE; } /*------------------------------------------------------------------------- * Function: display_opaque_type * * Purpose: Prints information about an opaque data type. * * Return: Success: TRUE * * Failure: FALSE, nothing printed * * Programmer: Robb Matzke * Monday, June 7, 1999 * * Modifications: * *------------------------------------------------------------------------- */ static hbool_t display_opaque_type(hid_t type, int ind) { char *tag; size_t size; if (H5T_OPAQUE!=H5Tget_class(type)) return FALSE; size = H5Tget_size(type); printf("%lu-byte opaque type", (unsigned long)size); if ((tag=H5Tget_tag(type))) { printf("\n%*s(tag = \"", ind, ""); display_string(stdout, tag, FALSE); printf("\")"); free(tag); } return TRUE; } /*------------------------------------------------------------------------- * Function: display_vlen_type * * Purpose: Print information about a variable-length type * * Return: Success: TRUE * * Failure: FALSE * * Programmer: Robb Matzke * Friday, December 1, 2000 * * Modifications: *------------------------------------------------------------------------- */ static hbool_t display_vlen_type(hid_t type, int ind) { hid_t super; if (H5T_VLEN!=H5Tget_class(type)) return FALSE; printf("variable length of\n%*s", ind+4, ""); super = H5Tget_super(type); display_type(super, ind+4); H5Tclose(super); return TRUE; } /*--------------------------------------------------------------------------- * Purpose: Print information about an array type * * Return: Success: TRUE * * Failure: FALSE * * Programmer: Robb Matzke * Thursday, January 31, 2002 * * Modifications: *--------------------------------------------------------------------------- */ static hbool_t display_array_type(hid_t type, int ind) { hid_t super; int ndims, i, *perm=NULL, identity; hsize_t *dims=NULL; if (H5T_ARRAY!=H5Tget_class(type)) return FALSE; ndims = H5Tget_array_ndims(type); if (ndims) { dims = malloc(ndims*sizeof(dims[0])); perm = malloc(ndims*sizeof(perm[0])); H5Tget_array_dims(type, dims, perm); /* Print dimensions */ for (i=0; i1) { order = H5Tget_order(type); if (H5T_ORDER_LE==order) { order_s = " little-endian"; } else if (H5T_ORDER_BE==order) { order_s = " big-endian"; } else if (H5T_ORDER_VAX==order) { order_s = " mixed-endian"; } else { order_s = "unknown-byte-order"; } } else { order_s = ""; } printf("%lu-bit%s bitfield", (unsigned long)(8*H5Tget_size(type)), order_s); display_precision(type, ind); return TRUE; } /*------------------------------------------------------------------------- * Function: display_type * * Purpose: Prints a data type definition. The definition is printed * without any leading space or trailing line-feed (although * there might be line-feeds inside the type definition). The * first line is assumed to have IND characters before it on * the same line (printed by the caller). * * Return: void * * Programmer: Robb Matzke * Thursday, November 5, 1998 * * Modifications: * Robb Matzke, 1999-06-11 * Prints the OID of shared data types. * *------------------------------------------------------------------------- */ static void display_type(hid_t type, int ind) { H5T_class_t data_class = H5Tget_class(type); /* Bad data type */ if (type<0) { printf(""); return; } /* Shared? If so then print the type's OID */ if (H5Tcommitted(type)) { H5G_stat_t sb; if (H5Gget_objinfo(type, ".", FALSE, &sb)>=0) { haddr_t objno; /* Compact form of object's location */ objno = (haddr_t)sb.objno[0] | ((haddr_t)sb.objno[1] << (8 * sizeof(long))); printf("shared-%lu:"H5_PRINTF_HADDR_FMT" ", sb.fileno[0], objno); } else printf("shared "); } /* Print the type */ if ((!simple_output_g && display_native_type(type, ind)) || display_ieee_type(type, ind) || display_int_type(type, ind) || display_float_type(type, ind) || display_cmpd_type(type, ind) || display_enum_type(type, ind) || display_string_type(type, ind) || display_reference_type(type, ind) || display_vlen_type(type, ind) || display_array_type(type, ind) || display_opaque_type(type, ind) || display_bitfield_type(type, ind)) return; /* Unknown type */ printf("%lu-byte class-%u unknown", (unsigned long)H5Tget_size(type), (unsigned)data_class); } /*------------------------------------------------------------------------- * Function: dump_dataset_values * * Purpose: Prints all values of a dataset. * * Return: void * * Programmer: Robb Matzke * Tuesday, July 21, 1998 * * Modifications: * Robb Matzke, 1999-09-27 * Understands the simple_output_g switch which causes data to * be displayed in a more machine-readable format. *------------------------------------------------------------------------- */ static void dump_dataset_values(hid_t dset) { hid_t f_type = H5Dget_type(dset); size_t size = H5Tget_size(f_type); h5tool_format_t info; char string_prefix[64]; static char fmt_double[16], fmt_float[16]; /* Set to all default values and then override */ memset(&info, 0, sizeof info); if (simple_output_g) { info.idx_fmt = ""; info.line_ncols = 65535; /*something big*/ info.line_per_line = 1; info.line_multi_new = 0; info.line_pre = " "; info.line_cont = " "; info.arr_pre = ""; info.arr_suf = ""; info.arr_sep = " "; info.cmpd_pre = ""; info.cmpd_suf = ""; info.cmpd_sep = " "; if (label_g) info.cmpd_name = "%s="; info.elmt_suf1 = " "; info.str_locale = ESCAPE_HTML; } else { info.idx_fmt = "(%s)"; info.line_ncols = width_g; info.line_multi_new = 1; if (label_g) info.cmpd_name = "%s="; info.line_pre = " %s "; info.line_cont = " %s "; info.str_repeat = 8; } /* Floating point types should display full precision */ sprintf(fmt_float, "%%1.%dg", FLT_DIG); info.fmt_float = fmt_float; sprintf(fmt_double, "%%1.%dg", DBL_DIG); info.fmt_double = fmt_double; info.dset_format = "DSET-%lu:"H5_PRINTF_HADDR_FMT"-"; info.dset_hidefileno = 0; info.obj_format = "-%lu:"H5_PRINTF_HADDR_FMT; info.obj_hidefileno = 0; info.dset_blockformat_pre = "%sBlk%lu: "; info.dset_ptformat_pre = "%sPt%lu: "; info.line_indent = ""; if (hexdump_g) { /* Print all data in hexadecimal format if the `-x' or `--hexdump' * command line switch was given. */ info.raw = TRUE; } else if (string_g && 1==size && H5T_INTEGER==H5Tget_class(f_type)) { /* Print 1-byte integer data as an ASCI character string instead of * integers if the `-s' or `--string' command-line option was given. */ info.ascii = TRUE; info.elmt_suf1 = ""; info.elmt_suf2 = ""; strcpy(string_prefix, info.line_pre); strcat(string_prefix, "\""); info.line_pre = string_prefix; info.line_suf = "\""; } /* Print all the values. */ printf(" Data:\n"); if (h5tools_dump_dset(stdout, &info, dset, -1, NULL, -1) < 0) { printf(" Unable to print data.\n"); } H5Tclose(f_type); } /*------------------------------------------------------------------------- * Function: list_attr * * Purpose: Prints information about attributes. * * Return: Success: 0 * * Failure: -1 * * Programmer: Robb Matzke * Friday, June 5, 1998 * * Modifications: * *------------------------------------------------------------------------- */ static herr_t list_attr (hid_t obj, const char *attr_name, void UNUSED *op_data) { hid_t attr, space, type, p_type; hsize_t size[64], nelmts=1; int ndims, i, n; size_t need; hsize_t temp_need; void *buf; h5tool_format_t info; H5S_class_t space_type; printf(" Attribute: "); n = display_string(stdout, attr_name, TRUE); printf("%*s", MAX(0, 9-n), ""); if ((attr = H5Aopen_name(obj, attr_name))) { space = H5Aget_space(attr); type = H5Aget_type(attr); /* Data space */ ndims = H5Sget_simple_extent_dims(space, size, NULL); space_type = H5Sget_simple_extent_type(space); switch (space_type) { case H5S_SCALAR: /* scalar dataspace */ puts(" scalar"); break; case H5S_SIMPLE: /* simple dataspace */ printf(" {"); for (i=0; i=0) { temp_need= nelmts * MAX(H5Tget_size(type), H5Tget_size(p_type)); assert(temp_need==(hsize_t)((size_t)temp_need)); need = (size_t)temp_need; buf = malloc(need); assert(buf); if (H5Aread(attr, p_type, buf)>=0) h5tools_dump_mem(stdout, &info, attr, p_type, space, buf, -1); free(buf); H5Tclose(p_type); } H5Sclose(space); H5Tclose(type); H5Aclose(attr); } else { putchar('\n'); } return 0; } /*------------------------------------------------------------------------- * Function: dataset_list1 * * Purpose: List information about a dataset which should appear on the * same line as the dataset name. This information will precede * information which is applicable to all objects which will be * printed by the caller. * * Return: Success: 0 * * Failure: -1 * * Programmer: Robb Matzke * Thursday, August 27, 1998 * * Modifications: * *------------------------------------------------------------------------- */ static herr_t dataset_list1(hid_t dset) { hsize_t cur_size[64]; /* current dataset dimensions */ hsize_t max_size[64]; /* maximum dataset dimensions */ hid_t space; /* data space */ int ndims; /* dimensionality */ H5S_class_t space_type; /* type of dataspace */ int i; /* Information that goes on the same row as the name. The name has * already been printed. */ space = H5Dget_space(dset); space_type = H5Sget_simple_extent_type(space); ndims = H5Sget_simple_extent_dims(space, cur_size, max_size); printf (" {"); for (i=0; i0) { HDfprintf(stdout, "/%Hu", max_size[i]); } } if (space_type==H5S_SCALAR) printf("SCALAR"); else if (space_type==H5S_NULL) printf("NULL"); putchar('}'); H5Sclose (space); return 0; } /*------------------------------------------------------------------------- * Function: dataset_list2 * * Purpose: List information about a dataset which should appear after * information which is general to all objects. * * Return: Success: 0 * * Failure: -1 * * Programmer: Robb Matzke * Thursday, August 27, 1998 * * Modifications: * *------------------------------------------------------------------------- */ static herr_t dataset_list2(hid_t dset, const char UNUSED *name) { hid_t dcpl; /* dataset creation property list */ hid_t type; /* data type of dataset */ hid_t space; /* data space of dataset */ int nf; /* number of filters */ unsigned filt_flags; /* filter flags */ H5Z_filter_t filt_id; /* filter identification number */ unsigned cd_values[20]; /* filter client data values */ size_t cd_nelmts; /* filter client number of values */ size_t cd_num; /* filter client data counter */ char f_name[256]; /* filter/file name */ char s[64]; /* temporary string buffer */ off_t f_offset; /* offset in external file */ hsize_t f_size; /* bytes used in external file */ hsize_t total, used; /* total size or offset */ hsize_t chsize[64]; /* chunk size in elements */ int ndims; /* dimensionality */ int n, max_len; /* max extern file name length */ double utilization; /* percent utilization of storage */ int i; if (verbose_g>0) { dcpl = H5Dget_create_plist(dset); space = H5Dget_space(dset); type = H5Dget_type(dset); /* Print information about chunked storage */ if (H5D_CHUNKED==H5Pget_layout(dcpl)) { ndims = H5Pget_chunk(dcpl, NELMTS(chsize), chsize/*out*/); printf(" %-10s {", "Chunks:"); total = H5Tget_size(type); for (i=0; i0) { #ifdef WIN32 utilization = (hssize_t)total * 100.0 / (hssize_t)used; #else utilization = (total*100.0)/used; #endif printf(", %1.2f%% utilization", utilization); } putchar('\n'); /* Print information about external strorage */ if ((nf = H5Pget_external_count(dcpl))>0) { for (i=0, max_len=0; i0) { for (i=0; i0) { printf(" %-10s ", "Type:"); display_type(type, 15); printf("\n"); } return 0; } /*------------------------------------------------------------------------- * Function: link_open * * Purpose: This gets called to open a symbolic link. Since symbolic * links don't correspond to actual objects we simply print the * link information and return failure. * * Return: Success: 0 - an invalid object but successful return * of this function. * * Failure: -1 * * Programmer: Robb Matzke * Thursday, August 27, 1998 * * Modifications: * *------------------------------------------------------------------------- */ static hid_t link_open(hid_t location, const char *name) { char buf[64]; if (H5Gget_linkval (location, name, sizeof(buf), buf)<0) return -1; if (NULL==HDmemchr(buf, 0, sizeof(buf))) { strcpy(buf+sizeof(buf)-4, "..."); } fputs(buf, stdout); return 0; } /*------------------------------------------------------------------------- * Function: list * * Purpose: Prints the group member name. * * Return: Success: 0 * * Failure: -1 * * Programmer: Robb Matzke * Monday, March 23, 1998 * * Modifications: * Robb Matzke, LLNL, 2003-06-06 * If simple_output_g (set by `--simple') is turned on then * the modification time is printed as UTC instead of the * local timezone. *------------------------------------------------------------------------- */ static herr_t list (hid_t group, const char *name, void *_iter) { hid_t obj=-1; char buf[512], comment[50], *fullname=NULL, *s=NULL; H5G_stat_t sb; haddr_t objno; /* Compact form of object's location */ struct tm *tm; herr_t status; iter_t *iter = (iter_t*)_iter; int n; /* Print the object name, either full name or base name */ fullname = fix_name(iter->container, name); if (fullname_g) { n = display_string(stdout, fullname, TRUE); printf("%*s ", MAX(0, 24-n), ""); } else { n = display_string(stdout, name, TRUE); printf("%*s ", MAX(0, 24-n), ""); } /* Get object information */ H5E_BEGIN_TRY { status = H5Gget_objinfo(group, name, FALSE, &sb); } H5E_END_TRY; if (status<0) { puts("**NOT FOUND**"); return 0; } else if (sb.type<0 || sb.type>=H5G_NTYPES) { printf("Unknown type(%d)", sb.type); sb.type = H5G_UNKNOWN; } if (sb.type>=0 && dispatch_g[sb.type].name) { fputs(dispatch_g[sb.type].name, stdout); } objno = (haddr_t)sb.objno[0] | ((haddr_t)sb.objno[1] << (8 * sizeof(long))); /* If the object has already been printed then just show the object ID * and return. */ if ((s=sym_lookup(&sb))) { printf(", same as "); display_string(stdout, s, TRUE); printf("\n"); goto done; } else { sym_insert(&sb, fullname); } /* Open the object. Not all objects can be opened. If this is the case * then return right away. */ if (sb.type>=0 && (NULL==dispatch_g[sb.type].open || (obj=(dispatch_g[sb.type].open)(group, name))<0)) { printf(" *ERROR*\n"); goto done; } /* List the first line of information for the object. */ if (sb.type>=0 && dispatch_g[sb.type].list1) { (dispatch_g[sb.type].list1)(obj); } putchar('\n'); /* Show detailed information about the object, beginning with information * which is common to all objects. */ if (verbose_g>0 && H5G_LINK!=sb.type) { if (sb.type>=0) H5Aiterate(obj, NULL, list_attr, NULL); printf(" %-10s %lu:"H5_PRINTF_HADDR_FMT"\n", "Location:", sb.fileno[0], objno); printf(" %-10s %u\n", "Links:", sb.nlink); if (sb.mtime>0) { if (simple_output_g) tm=gmtime(&(sb.mtime)); else tm=localtime(&(sb.mtime)); if (tm) { strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S %Z", tm); printf(" %-10s %s\n", "Modified:", buf); } } comment[0] = '\0'; H5Gget_comment(group, name, sizeof(comment), comment); strcpy(comment+sizeof(comment)-4, "..."); if (comment[0]) { printf(" %-10s \"", "Comment:"); display_string(stdout, comment, FALSE); puts("\""); } } if (sb.type>=0 && dispatch_g[sb.type].list2) { (dispatch_g[sb.type].list2)(obj, fullname); } /* Close the object. */ done: if (sb.type>=0 && obj>=0 && dispatch_g[sb.type].close) { (dispatch_g[sb.type].close)(obj); } if (fullname) free(fullname); return 0; } /*------------------------------------------------------------------------- * Function: fix_name * * Purpose: Returns a malloc'd buffer that contains the PATH and BASE * names separated by a single slash. It also removes duplicate * and trailing slashes. * * Return: Success: Ptr to fixed name from malloc() * * Failure: NULL * * Programmer: Robb Matzke * Thursday, January 21, 1999 * * Modifications: * *------------------------------------------------------------------------- */ static char * fix_name(const char *path, const char *base) { size_t n = (path ? HDstrlen(path) : 0) + (base ? HDstrlen(base) : 0) + 3; char *s = HDmalloc(n), prev='\0'; size_t len = 0; if (path) { /* Path, followed by slash */ for (/*void*/; *path; path++) if ('/'!=*path || '/'!=prev) prev = s[len++] = *path; if ('/' != prev) prev = s[len++] = '/'; } if (base) { /* Base name w/o trailing slashes */ const char *end = base + HDstrlen(base); while (end > base && '/' == end[-1]) --end; for (/*void*/; base < end; base++) if ('/' != *base || '/' != prev) prev = s[len++] = *base; } s[len] = '\0'; return s; } /*------------------------------------------------------------------------- * Function: get_width * * Purpose: Figure out how wide the screen is. This is highly * unportable, but the user can always override the width we * detect by giving a command-line option. These code snippets * were borrowed from the GNU less(1). * * Return: Success: Number of columns. * * Failure: Some default number of columms. * * Programmer: Robb Matzke * Friday, November 6, 1998 * * Modifications: * *------------------------------------------------------------------------- */ static int get_width(void) { int width = 80; /*the default */ char *s; /* Try to get it from the COLUMNS environment variable first since it's * value is sometimes wrong. */ if ((s=getenv("COLUMNS")) && *s && isdigit((int)*s)) { width = (int)strtol(s, NULL, 0); } #if defined(H5_HAVE_STRUCT_VIDEOCONFIG) && defined(H5_HAVE__GETVIDEOCONFIG) { /* Microsoft C */ struct videoconfig w; _getvideoconfig(&w); width = w.numtextcols; } #elif defined(H5_HAVE_STRUCT_TEXT_INFO) && defined(H5_HAVE_GETTEXTINFO) { /* Borland C or DJGPPC */ struct text_info w; gettextinfo(&w); width = w.screenwidth; } #elif defined(H5_HAVE_GETCONSOLESCREENBUFFERINFO) { /* Win32 C */ CONSOLE_SCREEN_BUFFER_INFO scr; GetConsoleScreenBufferInfo(con_out, &scr); width = scr.srWindow.Right - scr.srWindow.Left + 1; } #elif defined(H5_HAVE__SCRSIZE) { /* OS/2 */ int w[2]; _scrsize(w); width = w[0]; } #elif defined(H5_HAVE_TIOCGWINSZ) && defined(H5_HAVE_IOCTL) #ifndef __PUMAGON__ /* the ioctl() call coredump on TFLOPS. Turn it off for now. */ { /* Unix with ioctl(TIOCGWINSZ) */ struct winsize w; if (ioctl(2, TIOCGWINSZ, &w)>=0 && w.ws_col>0) { width = w.ws_col; } } #endif #elif defined(H5_HAVE_TIOCGETD) && defined(H5_HAVE_IOCTL) { /* Unix with ioctl(TIOCGETD) */ struct uwdata w; if (ioctl(2, WIOCGETD, &w)>=0 && w.uw_width>0) { width = w.uw_width / w.uw_hs; } } #endif /* Set to at least 1 */ if (width<1) width = 1; return width; } /*------------------------------------------------------------------------- * Function: leave * * Purpose: Close HDF5 and MPI and call exit() * * Return: Does not return * * Programmer: Quincey Koziol * Saturday, January 31, 2004 * * Modifications: * *------------------------------------------------------------------------- */ static void leave(int ret) { h5tools_close(); exit(ret); } /*------------------------------------------------------------------------- * Function: main * * Purpose: Opens a file and lists the specified group * * Return: Success: 0 * * Failure: 1 * * Programmer: Robb Matzke * Monday, March 23, 1998 * * Modifications: * *------------------------------------------------------------------------- */ int main (int argc, const char *argv[]) { hid_t file=-1, root=-1; char *fname=NULL, *oname=NULL, *x; const char *s = NULL; char *rest, *container=NULL; int argno; H5G_stat_t sb; iter_t iter; static char root_name[] = "/"; char drivername[50]; const char *preferred_driver=NULL; /* Initialize h5tools lib */ h5tools_init(); /* Build display table */ DISPATCH(H5G_DATASET, "Dataset", H5Dopen, H5Dclose, dataset_list1, dataset_list2); DISPATCH(H5G_GROUP, "Group", H5Gopen, H5Gclose, NULL, group_list2); DISPATCH(H5G_TYPE, "Type", H5Topen, H5Tclose, NULL, datatype_list2); DISPATCH(H5G_LINK, "-> ", link_open, NULL, NULL, NULL); #if 0 /* Name of this program without the path */ if ((progname=strrchr(argv[0], '/'))) progname++; else progname = argv[0]; #endif /* Default output width */ width_g = get_width(); /* Switches come before non-switch arguments */ for (argno=1; argno=argc) { usage(); leave(1); } else { s = argv[++argno]; } width_g = (int)strtol(s, &rest, 0); if (width_g<=0 || *rest) { usage(); leave(1); } } else if (!strcmp(argv[argno], "--verbose")) { verbose_g++; } else if (!strcmp(argv[argno], "--version")) { print_version(progname); leave(0); } else if (!strcmp(argv[argno], "--hexdump")) { hexdump_g = TRUE; } else if (!strncmp(argv[argno], "-w", 2)) { if (argv[argno][2]) { s = argv[argno]+2; } else if (argno+1>=argc) { usage(); leave(1); } else { s = argv[++argno]; } width_g = (int)strtol(s, &rest, 0); if (width_g<=0 || *rest) { usage(); leave(1); } } else if ('-'!=argv[argno][1]) { /* Single-letter switches */ for (s=argv[argno]+1; *s; s++) { switch (*s) { case '?': case 'h': /* --help */ usage(); leave(0); case 'a': /* --address */ address_g = TRUE; break; case 'd': /* --data */ data_g = TRUE; break; case 'e': /* --errors */ show_errors_g = TRUE; break; case 'f': /* --full */ fullname_g = TRUE; break; case 'g': /* --group */ grp_literal_g = TRUE; break; case 'l': /* --label */ label_g = TRUE; break; case 'r': /* --recursive */ recursive_g = TRUE; fullname_g = TRUE; break; case 'S': /* --simple */ simple_output_g = TRUE; break; case 's': /* --string */ string_g = TRUE; break; case 'v': /* --verbose */ verbose_g++; break; case 'V': /* --version */ print_version(progname); leave(0); case 'x': /* --hexdump */ hexdump_g = TRUE; break; default: usage(); leave(1); } } } else { usage(); leave(1); } } /* If no arguments remain then print a usage message (instead of doing * absolutely nothing ;-) */ if (argno>=argc) { usage(); leave(1); } /* Turn off HDF5's automatic error printing unless you're debugging h5ls */ if (!show_errors_g) H5Eset_auto_stack(H5E_DEFAULT, NULL, NULL); /* Each remaining argument is an hdf5 file followed by an optional slash * and object name. * * Example: ../dir1/foo/bar/baz * \_________/\______/ * file obj * * The dichotomy is determined by calling H5Fopen() repeatedly until it * succeeds. The first call uses the entire name and each subsequent call * chops off the last component. If we reach the beginning of the name * then there must have been something wrong with the file (perhaps it * doesn't exist). */ show_file_name_g = (argc-argno > 1); /*show file names if more than one*/ while (argno=0) { if (verbose_g) { printf("Opened \"%s\" with %s driver.\n", fname, drivername); } break; /*success*/ } /* Shorten the file name; lengthen the object name */ x = oname; oname = strrchr(fname, '/'); if (x) *x = '/'; if (!oname) break; *oname = '\0'; } if (file<0) { fprintf(stderr, "%s: unable to open file\n", argv[argno-1]); continue; } if (oname) oname++; if (!oname || !*oname) oname = root_name; /* Open the object and display it's information */ if (H5Gget_objinfo(file, oname, TRUE, &sb)>=0 && H5G_GROUP==sb.type && !grp_literal_g) { /* Specified name is a group. List the complete contents of the * group. */ sym_insert(&sb, oname); iter.container = container = fix_name(show_file_name_g?fname:"", oname); /* list root attributes */ if (verbose_g>0) { if ((root=H5Gopen(file, "/"))<0) leave(1); H5Aiterate(root, NULL, list_attr, NULL); if (H5Gclose(root)<0) leave(1); } /* list */ H5Giterate(file, oname, NULL, list, &iter); free(container); } else if ((root=H5Gopen(file, "/"))<0) { leave(1); /*major problem!*/ } else { /* Specified name is a non-group object -- list that object. The * container for the object is everything up to the base name. */ iter.container = show_file_name_g ? fname : "/"; list(root, oname, &iter); if (H5Gclose(root)<0) leave(1); } H5Fclose(file); free(fname); } leave(0); }