Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce new H5VL _by_value routines | Jordan Henderson | 2020-01-29 | 1 | -8/+101 |
| | |||||
* | Squashed commit of the token_refactoring branch: | Dana Robinson | 2020-01-16 | 1 | -4/+36 |
| | |||||
* | Fix some places where H5P_DEFAULT gets passed down to a VOL connector | Jordan Henderson | 2020-01-03 | 1 | -3/+3 |
| | |||||
* | Modify H5VL initialization routines to initialize all VOL-managed object | Neil Fortner | 2019-12-12 | 1 | -2/+31 |
| | | | | | types. Modify H5VLwrap_register() to reject non-VOL-managed object types. Also fix overisights in h5trace.c from previous changes. | ||||
* | Implement H5VLget_file_type() to return a copy of a datatype with the | Neil Fortner | 2019-11-08 | 1 | -0/+101 |
| | | | | | | | | | | | location set to be in a file. Only meant to be used by VOL connectors. Implement H5VLpeek_connector_id() to support connectors querying their own IDs. Fix app_ref with connector IDs in a couple places (external VOLs registered as default through ENV should be visible to the application). Modify vlen and reference interfaces to work with arbitrary VOL connectors. Implement file "post open" specific callback, to enable connectors to update their file structs after a wrap context has been set. | ||||
* | Minor tweaks to the VOL function comments to bring them in line with the | Dana Robinson | 2019-06-06 | 1 | -6/+27 |
| | | | | RM. | ||||
* | Added a VOL initialization property list type. | Dana Robinson | 2019-06-05 | 1 | -0/+22 |
| | |||||
* | Added code that disallows unregistering the native VOL connector. | Dana Robinson | 2019-05-24 | 1 | -34/+47 |
| | |||||
* | Merge remote-tracking branch 'origin/develop' into env_vol_load | Quincey Koziol | 2019-03-12 | 1 | -0/+159 |
|\ | |||||
| * | Add API routines to retrieve, restore, reset, and free library state. | Quincey Koziol | 2019-03-11 | 1 | -0/+159 |
| | | | | | | | | | | | | (Primarily for use in the async VOL connector, which has to schedule API operations for future execution and then restore the state of the library when the operation actually executes) | ||||
* | | Specify the default VOL connector to use with an environment variable. | Quincey Koziol | 2019-03-10 | 1 | -172/+28 |
|/ | | | | | | | | This implicitly adds support for changing the VOL connector for command-line tools or any application linked with the library. Also, add 'make check-vol' support for all directories, clearing up necessary issues in testing scripts, etc. | ||||
* | Revise "management" VOL callbacks into 'info' and object 'wrap / retrieval' | Quincey Koziol | 2019-02-23 | 1 | -2/+2 |
| | | | | classes. | ||||
* | Add API routines to wrap and retrieve objects | Quincey Koziol | 2019-01-11 | 1 | -0/+70 |
| | |||||
* | Added more sub-tests to the VOL plugin test. | Dana Robinson | 2018-12-28 | 1 | -7/+4 |
| | |||||
* | H5VLregister_by_value() should not set _BY_NAME when searching for | Dana Robinson | 2018-12-27 | 1 | -1/+1 |
| | | | | plugins. | ||||
* | Update API tracing info for VOL functions and regenerate trace macros for VOL | Quincey Koziol | 2018-11-28 | 1 | -0/+1 |
| | | | | API calls. | ||||
* | Added 'notify' callback for async requests; switched VOL class and info | Quincey Koziol | 2018-11-28 | 1 | -1/+2 |
| | | | | | | comparison to return comparison value as parameter, so they can return error values; "cancelled" -> "canceled"; switched order of 'wrap_object' and 'free_wrap_ctx' management callbacks. | ||||
* | Add info_to_str and str_to_info "management" callbacks for serializing and | Quincey Koziol | 2018-11-21 | 1 | -20/+107 |
| | | | | deserializing a connector's info object. | ||||
* | Switch driver | plugin => connector. | Quincey Koziol | 2018-11-04 | 1 | -94/+94 |
| | |||||
* | Move all callback-related routines into the callback source file, standardizing | Quincey Koziol | 2018-10-28 | 1 | -2129/+49 |
| | | | | their coding style | ||||
* | Updates after merging changes from develop. | Quincey Koziol | 2018-10-26 | 1 | -7/+7 |
| | |||||
* | Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into ↵ | Quincey Koziol | 2018-10-25 | 1 | -80/+20 |
|\ | | | | | | | stackable_vol | ||||
| * | Updates to the VOL ID and object API calls. | Dana Robinson | 2018-10-17 | 1 | -34/+39 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | -540/+817 |
|/ | | | | modified: test/dsets.c | ||||
* | VOL FEATURE | Dana Robinson | 2018-10-10 | 1 | -0/+2296 |