Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Changed H5VL_NATIVE_DATASET_GET_CHUNK_INFO_BY_COOR to | Binh-Minh Ribler | 2019-09-03 | 1 | -1/+1 |
| | | | | H5VL_NATIVE_DATASET_GET_CHUNK_INFO_BY_COORD per a review comment. | ||||
* | HDFFV-10677 and HDFFV-10661 | Binh-Minh Ribler | 2019-08-28 | 1 | -2/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: - Added functions to query chunk information: H5Dget_num_chunks(dset_id, fspace_id, *nchunks) Gets the number of written chunks that intersect with the given dataspace. However, in this version, the intersection is not yet completed. Thus, the number of all written chunks will be returned. H5Dget_chunk_info_by_coord(dset_id, *offset, *filter_mask, *addr, *size) Given a chunk's logical coordinates, returns the chunk's filter, address, and size. H5Dget_chunk_info(dset_id, fspace_id, index, *offset, *filter_mask, *addr, *size) Given a chunk's index, returns the chunk's logical coordinates, filter, address, and size. The chunk belongs to a set of chunks that have nonempty intersection with the specified dataspace. However, in this version, the intersection is not yet completed, and the index is of all the written chunks. These functions comply with VOL. - Fixed some oversights found in the library for the tests in chunk_info.c to work correctly. The returned value from a callback function was not checked in H5EA_iterate(), H5FA_iterate(), and H5D__none_idx_iterate(). This oversight caused a callback function to continue iterating even though it's supposed to stop. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1011test) | ||||
* | Merge branch 'develop' into dset_ohdr_minimize | Jacob Smith | 2018-12-27 | 1 | -2/+1 |
|\ | |||||
| * | Moved private native VOL connector functions to H5VLnative_private.h. | Dana Robinson | 2018-12-20 | 1 | -58/+0 |
| | | |||||
| * | Moved the remainder of the code into separate files. | Dana Robinson | 2018-12-20 | 1 | -0/+47 |
| | | |||||
| * | Split the native VOL connector code into multiple files and | Dana Robinson | 2018-12-20 | 1 | -0/+10 |
| | | | | | | | | moved the attribute code over. | ||||
* | | Merge branch 'develop' of ↵ | Jacob Smith | 2018-12-19 | 1 | -0/+57 |
|\ \ | |/ | | | | | https://bitbucket.hdfgroup.org/scm/~jake.smith/hdf5 into dset_ohdr_minimize | ||||
| * | Moved the optional enums to H5VLnative.h and converted to an int | Dana Robinson | 2018-12-18 | 1 | -0/+55 |
|/ | | | | typedef and a set of #defines. | ||||
* | Refactor infrastructure for setting FAPL information from environment | Quincey Koziol | 2018-11-28 | 1 | -1/+5 |
| | | | | | | variables during testing, including connecting native, pass-through, and dynamically loaded VOL connectors. Also bring native and pass-through VOL connectors into alignment, removing the "H5VLnative_private.h" header. | ||||
* | Switch driver | plugin => connector. | Quincey Koziol | 2018-11-04 | 1 | -2/+2 |
| | |||||
* | Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into ↵ | Quincey Koziol | 2018-10-25 | 1 | -7/+0 |
|\ | | | | | | | stackable_vol | ||||
| * | Split H5VLnative.h into public and private files and updated | Dana Robinson | 2018-10-20 | 1 | -8/+0 |
| | | |||||
| * | Updates to the VOL ID and object API calls. | Dana Robinson | 2018-10-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This brings the H5VL code in line with the H5I code regarding naming, parameter order, etc. Several public API calls were affected by this change. These changed names to reflect their use with VOL drivers: H5VLregister() --> H5VLregister_driver() H5VLregister_by_name() --> H5VLregister_driver_by_name() H5VLunregister() --> H5VLunregister_driver() H5VLis_registered() --> H5VLis_driver_registered() This call was renamed to match H5Iregister(). The order of the first two parameters also reversed and the object pointer is now const. H5VLobject_register() --> H5VLregister() | ||||
* | | Squashed commit of private branch changes to support stackable VOL plugins. | Quincey Koziol | 2018-10-25 | 1 | -3/+3 |
|/ | | | | modified: test/dsets.c | ||||
* | VOL FEATURE | Dana Robinson | 2018-10-10 | 1 | -0/+44 |