summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2020-04-25 02:13:31 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2020-04-25 02:13:31 (GMT)
commited833f1c8d07d32eaa9319c8e3220b5033485abd (patch)
treec2106952bcf67dce4c46c1a5f324516689924c9f /tools
parent536a8b57bcc63f69b5a66d889d126bee572f970d (diff)
downloadhdf5-ed833f1c8d07d32eaa9319c8e3220b5033485abd.zip
hdf5-ed833f1c8d07d32eaa9319c8e3220b5033485abd.tar.gz
hdf5-ed833f1c8d07d32eaa9319c8e3220b5033485abd.tar.bz2
Extend h5debug to support 3-D datasets for chunks.
Diffstat (limited to 'tools')
-rw-r--r--tools/src/misc/h5debug.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/tools/src/misc/h5debug.c b/tools/src/misc/h5debug.c
index a167709..c1940f7 100644
--- a/tools/src/misc/h5debug.c
+++ b/tools/src/misc/h5debug.c
@@ -251,7 +251,7 @@ main(int argc, char *argv[])
hid_t fid, fapl;
H5VL_object_t *vol_obj;
H5F_t *f;
- haddr_t addr = 0, extra = 0, extra2 = 0, extra3 = 0, extra4 = 0;
+ haddr_t addr = 0, extra = 0, extra2 = 0, extra3 = 0, extra4 = 0, extra5 = 0;
uint8_t sig[H5F_SIGNATURE_LEN];
size_t u;
H5E_auto2_t func;
@@ -327,6 +327,8 @@ main(int argc, char *argv[])
extra3 = (haddr_t)HDstrtoll(argv[5], NULL, 0);
if(argc > 6)
extra4 = (haddr_t)HDstrtoll(argv[6], NULL, 0);
+ if(argc > 7)
+ extra5 = (haddr_t)HDstrtoll(argv[7], NULL, 0);
/*
* Read the signature at the specified file position.
@@ -410,10 +412,12 @@ main(int argc, char *argv[])
dim[1] = (uint32_t)extra3;
if(ndims > 2)
dim[2] = (uint32_t)extra4;
+ if(ndims > 3)
+ dim[3] = (uint32_t)extra5;
/* Check for dimension error */
- if(ndims > 3) {
- HDfprintf(stderr, "ERROR: Only 3 dimensions support currently (fix h5debug)\n");
+ if(ndims > 4) {
+ HDfprintf(stderr, "ERROR: Only 4 dimensions support currently (fix h5debug)\n");
HDfprintf(stderr, "B-tree chunked storage node usage:\n");
HDfprintf(stderr, "\th5debug <filename> <B-tree node address> <# of dimensions> <slowest chunk dim>...<fastest chunk dim>\n");
HDexit(4);