summaryrefslogtreecommitdiffstats
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
* Fix error in examples/Makefile.amNeil Fortner2017-05-231-1/+1
|
* Add support for variable length types (not within compound or array, with no ↵Neil Fortner2017-05-214-6/+390
| | | | sub-type conversions) with attributes. Added h5dsm_tvlen.c to test this. Other minor fixes/cleanup.
* Fix mistake in h5dsm_obj_info.cNeil Fortner2017-05-112-1/+3
|
* Add maps to h5dsm_test.sh. Fix issues with maps implementation.Neil Fortner2017-05-114-18/+77
|
* Add maps implementation (based on a patch supplied by MohamadNeil Fortner2017-05-112-1/+232
| | | | Chaarawi). Add h5dsm_map.c example. Other minor fixes/cleanup.
* Add support for H5Aget_name, H5Aget_creatE_plist, H5Aget_space, andNeil Fortner2017-05-092-128/+198
| | | | | H5Aget_type. Update h5dsm_attr_open.c to test these functions. Minor improvemetns to h5dsm_test.sh.
* Update DAOS plugin to work with new version of DAOS: removeNeil Fortner2017-05-091-13/+13
| | | | | daos_obj_declare, disable output comparison in h5dsm_test.sh, re-enable rpartial test.
* Add regression test script h5dsm_test.shNeil Fortner2017-05-082-0/+573
|
* Fix memory leak in collective group open through soft links. MinorNeil Fortner2017-05-052-31/+61
| | | | changes to examples.
* Implement H5Oget_info. Fix bugs in H5Oopen_by_addr and H5Oopen. AddNeil Fortner2017-05-043-1/+180
| | | | | h5dsm_obj_info and h5dsm_obj_open_addr examples. Other minor fixes/cleanup.
* Add support for H5Literate and H5Literate_by_name. AddNeil Fortner2017-05-031-0/+95
| | | | h5dsm_link_iter.c examples. Other minor fixes/cleanup.
* Implement H5Oopen, H5Oopen_by_addr, H5Acreate_by_name, H5Aopen_by_name,Neil Fortner2017-05-019-117/+124
| | | | | and H5Aiterate_by_name. Add h5dsm_obj_open.c example. Fix memory leak on dataset open. Other minor fixes/cleanup.
* Add support for H5Aiterate. Add h5dsm_attr_iter.c example for this.Neil Fortner2017-04-271-0/+104
| | | | Added minor comments to other areas.
* Update DAOS plugin to work with latest version of DAOS, based on work by ↵Neil Fortner2017-04-271-2/+42
| | | | | | | Mohamad Chaarawi. Temporarily modify h5dsm_ttconv.c to avoid triggering failures due to DAOS not supporting overwrites.
* Add support for collective group create and open, usingNeil Fortner2017-04-2419-0/+38
| | | | | H5Pset_all_coll_metadata_ops. Improved file create/open using this code. Modified examples to use this feature. Other minor fixes/cleanup.
* Add support for datatype conversion with datasets, including withNeil Fortner2017-03-161-6/+1097
| | | | | partial I/O. Add test cases covering this to h5dsm_ttconv.c. Other fixes to general type conversion code. Other minor fixes/cleanup.
* Modify plugin to use H5VL_daosm_term as the plugin's terminate callback,Neil Fortner2017-03-1619-76/+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-1419-75/+172
| | | | 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.
* Fix attribute datatype conversion implementation to always supplyNeil Fortner2017-03-082-1/+925
| | | | | | background buffer for compound conversion, as the library requires (despite the reference manual saying it's optional). Added h5dsm_ttconv.c to test this. Other minor fixes/cleanup.
* Add full support for soft links. Add h5dsm_slink_create.c example. FixNeil Fortner2017-02-151-0/+64
| | | | bug in id handling. Other minor fixes/cleanup.
* Implement attribute read/write. Added examples for this. AddedNeil Fortner2017-02-104-3/+218
| | | | | optional snapshot parameter to h5dsm_file_open.c. 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-083-1/+173
| | | | | create and open. It is now possible to H5Gopen the root group. Other fixes/refactoring.
* Implement H5Lexists. Add h5dsm_link_exists example. Other minor fixesNeil Fortner2017-02-021-0/+69
| | | | and cleanup.
* Improve handling of snapshots with multiple processes so any processesNeil Fortner2017-02-022-2/+2
| | | | | can call H5VLdaosm_snap_create. Fix bug that prevented non-root processes from incrementing the epoch on flush. Other minor fixes.
* Implement new transaction model, transactions are now hidden from theNeil Fortner2017-01-3112-240/+189
| | | | | | 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.
* Fix bugs in h5dsm_dset_r1m.cNeil Fortner2016-12-152-6/+6
|
* Merge branch 'hdf5_daosm' of ↵U-hdf\nfortne22016-12-152-0/+223
|\ | | | | | | ssh://bitbucket.hdfgroup.org:7999/~nfortne2/hdf5_nf into hdf5_daosm
| * Add 1 MB write/read examples. Not tested.Neil Fortner2016-12-142-0/+223
| |
* | Add support for reading FCPL from file. Other minor fixes.U-hdf\nfortne22016-12-151-1/+1
|/
* Add h5dsm_dset_rpartial.cNeil Fortner2016-12-131-0/+153
|
* Split H5VLdaosm.h into public and private headers, to remove the needNeil Fortner2016-12-134-7/+11
| | | | for the application to include daos.h. Fix bugs in examples.
* Add transaction number printing for write examples, optional transactionNeil Fortner2016-12-128-32/+70
| | | | | number arguments for read examples. Rework and fix bug in h5dsm_dset_wpartial.c. Not tested.
* Implement group traversal. Major refactoring of group/link code. AddedNeil Fortner2016-12-092-0/+134
| | | | group examples, all examples now work with paths.
* Add support for saving/loading max OID in file. Other fixes.Neil Fortner2016-12-091-2/+2
|
* Fix memory leak in H5VL_daosm_dataset_write, bug inNeil Fortner2016-12-071-3/+13
| | | | | H5VL_daosm_file_open, bug in h5dsm_dset_wpartial, and add separate transactions in h5dsm_dset_wpartial.
* Add new example for partial I/O write.Neil Fortner2016-12-071-0/+141
|
* Fix bugs in read/write implementation. Only seems to read/write theNeil Fortner2016-11-295-14/+28
| | | | first element. Examples don't build correctly with make.
* Initial implementation of dataset reads and writes. Untested. Does notNeil Fortner2016-11-298-3/+430
| | | | support partial I/O or datatype conversions. Also added h5dsm examples.
* Tested "make installcheck" on jelly.lrknox2016-08-311-1/+1
|
* Correct incorrect merge from main that added extra commands to a list inlrknox2016-08-311-2/+2
| | | | | run-c-ex.sh.in without moving the "); then" to the end of the extended list, causing make installcheck to fail.
* [svn-r28715] - merge from trunkMohamad Chaarawi2015-12-211-2/+3
|\ | | | | | | - fix farray, earray, and btree test to use correct function to retrieve internal file struct.
| * [svn-r28669] Changes to correct errors found with -ansi flag.Larry Knox2015-12-151-2/+3
| | | | | | | | | | | | | | | | | | h5tools_dump.c Removed 3 lines commented out with //. h5_vds-percival-unlim.c Changed C++-style comment to C-style comment. Tested with h5committest.new.
* | [svn-r28288] merge from trunk.Mohamad Chaarawi2015-11-051-1/+1
|\ \ | |/
| * [svn-r28086] fixed spellingScot Breitenfeld2015-10-151-1/+1
| |
* | [svn-r27972] merge from trunk.Mohamad Chaarawi2015-10-0612-2/+2031
|\ \ | |/
| * [svn-r27839] Removed generated autotools stragglers missed in trunk sync.Dana Robinson2015-09-211-1395/+0
| |
| * [svn-r27835] Description:Quincey Koziol2015-09-211-15/+29
| |\ | | | | | | | | | | | | | | | | | | | | | Sync w/trunk. Tested on: MacOSX/64 10.10.5 (amazon) w/serial & parallel (h5committest not required on this branch)
| * | [svn-r27769] Maintenance: Fixed example that failed daily tests.Elena Pourmal2015-09-141-6/+17
| | | | | | | | | | | | Tested on Mac Air, jam and ostrich.
| * | [svn-r27630] Description:Quincey Koziol2015-08-311-0/+1
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bring in changes from the trunk, through r27628. Tested on: MacOSX/64 10.10.5 (amazon) w/serial (h5committest not required on this branch)