summaryrefslogtreecommitdiffstats
path: root/src/H5VLconnector.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove ability to loc by ref from H5VL layerJerome Soumagne2019-10-081-14/+2
|
* Add H5VL_OBJECT_GET_TYPE to get object typeJerome Soumagne2019-10-081-1/+3
| | | | Add H5VL_OBJECT_LOOKUP to lookup objects
* Add H5VL_MAX_TOKEN_SIZE and H5VL_token_tJerome Soumagne2019-10-081-0/+7
|
* Adapt Jerome's "file info" H5VL 'get' query to retrieve container token info.Quincey Koziol2019-10-081-20/+35
| | | | Remove "by address" location for VOL operations. (Switching to "by token")
* Fix H5VL_blob_get to return size of blobJerome Soumagne2019-10-081-4/+6
| | | | | | | | | | | | | | | | | | | | Fix const in blob API Add H5HG_HEAP_ID_SIZE macro to return native blob size Add maximum size for blobs Fix blob API callbacks to pass VOL file object Add public wrappers for blob VOL API Implement passthrough blob callbacks Update H5Tvlen after callback changes Update trace information for H5VL blob routines Fix public header inclusion in native and passthru headers
* Add 'blob' callbacks to VOL, along with a native implementation to store themQuincey Koziol2019-10-081-2/+20
| | | | | | | in the global heap, and changed the VL datatype conversion code to use blobs. Move encode/decode of sequence lengths into VL datatype callbacks, from native VOL blob routines.
* Added the map (H5M) APIDana Robinson2019-08-131-1/+1
|
* Added missing DELETE enum value.Dana Robinson2019-06-141-1/+2
|
* Merge branch 'develop' into vol_dev_headersDana Robinson2019-06-141-87/+0
| | | | | Also moved the wrapper functions from the H5VLconnector.h to H5VLconnector_passthru.h
* Split VOL connector routines into separate headers:Dana Robinson2019-05-241-0/+503
* H5VLconnector.h for terminal connector things * H5VLconnector_passthru.h for passthrough connector things Note that these headers are arranged such that they are included in hdf5.h so VOL connectors only need to include that. The separation into multiple headers is mainly for readability.