summaryrefslogtreecommitdiffstats
path: root/examples/h5dsm_dset_open.c
Commit message (Collapse)AuthorAgeFilesLines
* Add support for collective group create and open, usingNeil Fortner2017-04-241-0/+2
| | | | | H5Pset_all_coll_metadata_ops. Improved file create/open using this code. Modified examples to use this feature. Other minor fixes/cleanup.
* Modify plugin to use H5VL_daosm_term as the plugin's terminate callback,Neil Fortner2017-03-161-4/+0
| | | | | now called when the plugin is closed (see merge from vol branch). Removed cal to H5Idec_ref from H5VL_daosm_term. Removed H5VLdaosm_term from examples.
* Modify DAOS-M plugin to call daos_pool_connect at plugin initializationNeil Fortner2017-03-141-4/+9
| | | | time, using a communicator passed to the initialization function. Add public functions H5VLdaosm_init and H5VLdaosm_term. Apps no longer need to call daos_init and daos_fini. Updated examples. Other minor fixes/cleanup.
* Add support for H5Dget_space, H5Dget_type, H5Dget_access_plist, andNeil Fortner2017-02-081-1/+64
| | | | | | H5Dget_create_plist. H5Dget_space_status returns not allocated, as in the FF1 plugin. Added tests for the first four functions to h5dsm_dset_open.c
* Add support for attribute create/open/close. Add examples for attributeNeil Fortner2017-02-081-1/+0
| | | | | create and open. It is now possible to H5Gopen the root group. Other fixes/refactoring.
* Implement new transaction model, transactions are now hidden from theNeil Fortner2017-01-311-23/+18
| | | | | | API, H5TR functions have no effect. Added support for H5Fflush. Added H5VLdaosm_snap_create and H5Pset_daosm_snap_open to save and load snapshots. Added enforcement of file access flags. Updated examples. Other minor fixes/cleanup.
* Split H5VLdaosm.h into public and private headers, to remove the needNeil Fortner2016-12-131-1/+1
| | | | for the application to include daos.h. Fix bugs in examples.
* Add transaction number printing for write examples, optional transactionNeil Fortner2016-12-121-5/+18
| | | | | number arguments for read examples. Rework and fix bug in h5dsm_dset_wpartial.c. Not tested.
* Fix bugs in read/write implementation. Only seems to read/write theNeil Fortner2016-11-291-3/+0
| | | | first element. Examples don't build correctly with make.
* Initial implementation of dataset reads and writes. Untested. Does notNeil Fortner2016-11-291-0/+64
support partial I/O or datatype conversions. Also added h5dsm examples.