summaryrefslogtreecommitdiffstats
path: root/test/srb_read.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2000-04-13 15:17:14 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2000-04-13 15:17:14 (GMT)
commit10a6fb73ee4e50f7a0022669cc78650b8655c3bc (patch)
tree07c25e9a881b2c04a711ec7e6b662fc755665b09 /test/srb_read.c
parent0461ad7f43fb39efeae0e7ee0b9cc43a6a85b646 (diff)
downloadhdf5-10a6fb73ee4e50f7a0022669cc78650b8655c3bc.zip
hdf5-10a6fb73ee4e50f7a0022669cc78650b8655c3bc.tar.gz
hdf5-10a6fb73ee4e50f7a0022669cc78650b8655c3bc.tar.bz2
[svn-r2138] Add SRB as a new VFL, these are its testing programs.
Diffstat (limited to 'test/srb_read.c')
-rw-r--r--test/srb_read.c164
1 files changed, 164 insertions, 0 deletions
diff --git a/test/srb_read.c b/test/srb_read.c
new file mode 100644
index 0000000..6269243
--- /dev/null
+++ b/test/srb_read.c
@@ -0,0 +1,164 @@
+#include <h5test.h>
+
+#ifndef H5_HAVE_SRB
+int main(void)
+{
+ printf("Test skipped because SRB driver not available\n");
+ return 0;
+}
+#else
+
+#define fileName "/projects/mdas/srb/SRBVault/slu.ncsa/a.h5"
+#define DATASETNAME "IntArray"
+#define NX_SUB 3 /* hyperslab dimensions */
+#define NY_SUB 4
+#define NX 7 /* output buffer dimensions */
+#define NY 7
+#define NZ 3
+#define RANK 2
+#define RANK_OUT 3
+
+int main(void)
+{
+ hid_t fapl=-1, fid = -1, dataset;
+ hid_t datatype, dataspace;
+ hid_t memspace;
+ H5T_class_t class; /* data type class */
+ H5T_order_t order; /* data order */
+ size_t size; /*
+ * size of the data element
+ * stored in file
+ */
+ hsize_t dimsm[3]; /* memory space dimensions */
+ hsize_t dims_out[2]; /* dataset dimensions */
+ herr_t status;
+
+ int data_out[NX][NY][NZ ]; /* output buffer */
+
+ hsize_t count[2]; /* size of the hyperslab in the file */
+ hssize_t offset[2]; /* hyperslab offset in the file */
+ hsize_t count_out[3]; /* size of the hyperslab in memory */
+ hssize_t offset_out[3]; /* hyperslab offset in memory */
+ int i, j, k, status_n, rank;
+ SRB_Info srb_info={ NULL,
+ NULL,
+ NULL,
+ 0,
+ 0600,
+ -1
+ };
+
+ for (j = 0; j < NX; j++) {
+ for (i = 0; i < NY; i++) {
+ for (k = 0; k < NZ ; k++)
+ data_out[j][i][k] = 0;
+ }
+ }
+
+ fapl = H5Pcreate(H5P_FILE_ACCESS);
+ if (fapl < 0) {
+ printf (" H5Pcreate failed. \n");
+ return -1;
+ }
+
+ status = H5Pset_fapl_srb(fapl, srb_info);
+ if (status < 0) {
+ printf ("H5Pset_fapl_gass failed. \n");
+ return -1;
+ }
+
+ fid = H5Fopen(fileName, H5F_ACC_RDONLY, fapl);
+ /*fid = H5Fopen(fileName, H5F_ACC_RDWR, H5P_DEFAULT);*/
+ if (fid < 0) {
+ printf ("H5Fopen failed. \n");
+ return -1;
+ }
+ dataset = H5Dopen(fid, DATASETNAME);
+ if(dataset<0) {
+ printf ("H5Dopen failed. \n");
+ return -1;
+ }
+ /*
+ * Get datatype and dataspace handles and then query
+ * dataset class, order, size, rank and dimensions.
+ */
+ datatype = H5Dget_type(dataset); /* datatype handle */
+ class = H5Tget_class(datatype);
+ if (class == H5T_INTEGER) printf("Data set has INTEGER type \n");
+ order = H5Tget_order(datatype);
+ if (order == H5T_ORDER_LE) printf("Little endian order \n");
+
+ size = H5Tget_size(datatype);
+ printf(" Data size is %d \n", size);
+
+ dataspace = H5Dget_space(dataset); /* dataspace handle */
+ rank = H5Sget_simple_extent_ndims(dataspace);
+ status_n = H5Sget_simple_extent_dims(dataspace, dims_out, NULL);
+ printf("rank %d, dimensions %lu x %lu \n", rank,
+ (unsigned long)(dims_out[0]), (unsigned long)(dims_out[1]));
+
+ /*
+ * Define hyperslab in the dataset.
+ */
+ offset[0] = 1;
+ offset[1] = 2;
+ count[0] = NX_SUB;
+ count[1] = NY_SUB;
+ status = H5Sselect_hyperslab(dataspace, H5S_SELECT_SET, offset, NULL,
+ count, NULL);
+
+ /*
+ * Define the memory dataspace.
+ */
+ dimsm[0] = NX;
+ dimsm[1] = NY;
+ dimsm[2] = NZ ;
+ memspace = H5Screate_simple(RANK_OUT,dimsm,NULL);
+
+ /*
+ * Define memory hyperslab.
+ */
+ offset_out[0] = 3;
+ offset_out[1] = 0;
+ offset_out[2] = 0;
+ count_out[0] = NX_SUB;
+ count_out[1] = NY_SUB;
+ count_out[2] = 1;
+ status = H5Sselect_hyperslab(memspace, H5S_SELECT_SET, offset_out, NULL,
+ count_out, NULL);
+
+ /*
+ * Read data from hyperslab in the file into the hyperslab in
+ * memory and display.
+ */
+ status = H5Dread(dataset, H5T_NATIVE_INT, memspace, dataspace,
+ H5P_DEFAULT, data_out);
+ for (j = 0; j < NX; j++) {
+ for (i = 0; i < NY; i++) printf("%d ", data_out[j][i][0]);
+ printf("\n");
+ }
+ /*
+ * 0 0 0 0 0 0 0
+ * 0 0 0 0 0 0 0
+ * 0 0 0 0 0 0 0
+ * 3 4 5 6 0 0 0
+ * 4 5 6 7 0 0 0
+ * 5 6 7 8 0 0 0
+ * 0 0 0 0 0 0 0
+ */
+
+ /*
+ * Close/release resources.
+ */
+ H5Tclose(datatype);
+ H5Dclose(dataset);
+ H5Sclose(dataspace);
+ H5Sclose(memspace);
+ H5Fclose(fid);
+ H5Pclose(fapl);
+
+ printf("Test finished!\n");
+ return 0;
+}
+
+#endif