summaryrefslogtreecommitdiffstats
path: root/examples/h5dsm_dset_open.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2016-11-29 22:33:45 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2016-11-29 22:33:45 (GMT)
commit46cfbdf4d5b0be60cd69e416e6673ca7a8643148 (patch)
treebd42c683d0b2ac1814dbc46660022eeef40de263 /examples/h5dsm_dset_open.c
parent9d0edcfd4124f115ccfc729352b195081d04ce31 (diff)
downloadhdf5-46cfbdf4d5b0be60cd69e416e6673ca7a8643148.zip
hdf5-46cfbdf4d5b0be60cd69e416e6673ca7a8643148.tar.gz
hdf5-46cfbdf4d5b0be60cd69e416e6673ca7a8643148.tar.bz2
Initial implementation of dataset reads and writes. Untested. Does not
support partial I/O or datatype conversions. Also added h5dsm examples.
Diffstat (limited to 'examples/h5dsm_dset_open.c')
-rw-r--r--examples/h5dsm_dset_open.c64
1 files changed, 64 insertions, 0 deletions
diff --git a/examples/h5dsm_dset_open.c b/examples/h5dsm_dset_open.c
new file mode 100644
index 0000000..c45147a
--- /dev/null
+++ b/examples/h5dsm_dset_open.c
@@ -0,0 +1,64 @@
+#include "h5dsm_example.h"
+
+int main(int argc, char *argv[]) {
+ uuid_t pool_uuid;
+ char *pool_grp = "daos_tier0";
+ hid_t file = -1, dset = -1, trans = -1, fapl = -1;
+ hsize_t dims[1] = {1};
+
+ (void)MPI_Init(&argc, &argv);
+ (void)daos_init();
+
+ if(argc != 4)
+ PRINTF_ERROR("argc != 4\n");
+
+ /* Parse UUID */
+ if(0 != uuid_parse(argv[1], pool_uuid))
+ ERROR;
+
+ /* Set up FAPL */
+ if((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
+ ERROR;
+ if(H5Pset_fapl_daosm(fapl, MPI_COMM_WORLD, MPI_INFO_NULL, pool_uuid, pool_grp) < 0)
+ ERROR;
+
+ /* Open file */
+ if((file = H5Fopen_ff(argv[2], H5F_ACC_RDONLY, fapl, &trans)) < 0)
+ ERROR;
+
+ /* Open dataset */
+ if((dset = H5Dopen_ff(file, argv[3], H5P_DEFAULT, trans)) < 0)
+ ERROR;
+
+ /* Close */
+ if(H5Dclose_ff(dset, -1) < 0)
+ ERROR;
+ if(H5TRclose(trans) < 0)
+ ERROR;
+ if(H5Fclose(file) < 0)
+ ERROR;
+ if(H5Sclose(space) < 0)
+ ERROR;
+ if(H5Pclose(fapl) < 0)
+ ERROR;
+
+ printf("Success\n");
+
+ (void)daos_fini();
+ (void)MPI_Finalize();
+ return 0;
+
+error:
+ H5E_BEGIN_TRY {
+ H5Dclose_ff(dset, -1);
+ H5TRclose(trans);
+ H5Fclose(file);
+ H5Sclose(space);
+ H5Pclose(fapl);
+ } H5E_END_TRY;
+
+ (void)daos_fini();
+ (void)MPI_Finalize();
+ return 1;
+}
+