summaryrefslogtreecommitdiffstats
path: root/src/H5VLint.c
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r29903] merge from trunk.Mohamad Chaarawi2016-05-091-2/+1
|
* [svn-r27959] - merge from trunk (pre-VDS)Mohamad Chaarawi2015-10-051-142/+6
| | | | - fix VOL initialization and Native plugin registration with new FAPL changes
* [svn-r27777] merge from trunk.Mohamad Chaarawi2015-09-141-26/+2
|
* [svn-r25575] cleanup H5I usage in VOL by removing the use of the aux pointer andMohamad Chaarawi2014-09-051-76/+264
| | | | | make a higher level wrapper object around all VOL objects that includes the VOL information.
* [svn-r25555] - rework the public H5VL wrappers to not use H5VL_t* and use a ↵Mohamad Chaarawi2014-08-261-265/+219
| | | | | | | plugin hid_t instead - rework the private VL layer to use the class structure directly - some bug fixes
* [svn-r25549] Implement 4 new routines:Mohamad Chaarawi2014-08-251-30/+0
| | | | | | | | H5VLinitialize, H5VLterminate, H5VLget_plugin_id, H5VLclose Add simple tests in external log plugin. Fix some bugs with terminating Native plugin.
* [svn-r25537] VOL framework changes.Mohamad Chaarawi2014-08-191-303/+430
|
* [svn-r25521] major rework of the internal setup of VOL plugins to make it moreMohamad Chaarawi2014-08-081-289/+177
| | | | | | | symmetrical to VFDs and allow new functionality to be implemented later. + some Bug fixes
* [svn-r25482] - update is_accessible implementation to use fapl and pass it ↵Mohamad Chaarawi2014-07-241-1/+1
| | | | | | | | | | down to H5Fint.c - move is_HDF5 inside deprecated macros in H5Fpublic.h - move H5ES_status_t outside of H5VLpublic.h to H5ESpublic.h - rename public properties in H5VLpublic.h to H5VL_PROP_* to add more scoping - no need to include private if pkg is included in H5VLnative.c - rename plist_id to lapl_id in loc_params structs
* [svn-r25481] - remove unsigned char * from traceMohamad Chaarawi2014-07-241-1/+1
| | | | | - add H5Iiterate callback type to trace - other minor tweeks
* [svn-r25476] - fix error output in several places.Mohamad Chaarawi2014-07-231-5/+5
| | | | | - uncomment tests to check error output in Makefiles. - fix bug in native implementation of H5Aiterate.
* [svn-r24311] change event queue to event stack (just variable names)Mohamad Chaarawi2013-10-171-68/+68
|
* [svn-r24076] Allow H5VLobject_register to create an hid_t for files and ↵Mohamad Chaarawi2013-08-261-3/+11
| | | | attributes.
* [svn-r23803] Add VOL callback for H5AiterateMohamad Chaarawi2013-06-211-0/+69
| | | | | Add VOL callback for H5T get routines Update Native implementation
* [svn-r23473] Update the VOL plugin callbacks with better async I/O support:Mohamad Chaarawi2013-03-281-131/+239
| | | | | | | | | | | | | | - change hid_t req in callbacks to void **req - change all callbacks to accept dxpl_ids (except dataset write and read which already do) - update all the private and public VL routines to accept a dxpl_id and event queue id - Add an async class for the VOL plugin with cancel, test, and wait request operations - add the external VOL log plugin test to the examples directory NOTE that async operations are still not provided by the HDF5 API, so all event queue IDs and requests passed to all plugins are NULL for now. Tested on jam.
* [svn-r22565] change OH id registration to original way, and re-register the ↵Mohamad Chaarawi2012-07-121-11/+6
| | | | | | | | ID with the VOL info on the upper level (API and iteration/visit routines) - this fixes the bug exposed in H5Oopen with external log plugin update the private VL registration routine to take an app_ref update the datatype ID creation for the VOL to take an app_ref
* [svn-r22559] - move the vol plugin ref count increment for H5Freopen into ↵Mohamad Chaarawi2012-07-111-0/+6
| | | | | | the VOL layer - fix a bug in H5VLdatatype_get_binary
* [svn-r22558] add fapl copy & free callbacks to the VOL class as they are ↵Mohamad Chaarawi2012-07-111-7/+66
| | | | needed for VOL info property.
* [svn-r22549] Mohamad Chaarawi2012-07-101-6/+70
| | | | | | | | | | move ref count management on the VOL struct inside the VLint code - H5Freopen still needs to be handled create the public interface for VOL callbacks: - unresolved issue with var_args update and create new API fapl calls to support stacking drivers: - need to add fapl copy callback fix a memory leak with registration of external plugins
* [svn-r22523] - rework how IDs for VOL objects are createdMohamad Chaarawi2012-07-061-0/+1
| | | | | - change how the vlose routine is registered with VOL IDs - some bug fixes
* [svn-r22519] - many bug fixesMohamad Chaarawi2012-07-051-1/+1
| | | | - still some unresolved issues with named datatypes
* [svn-r22513] fix some committed datatype issuesMohamad Chaarawi2012-07-031-1/+1
| | | | update get_type routines to construct a VOL datatype if the type is named
* [svn-r22511] - remove the internal file type and use the file ID created at ↵Mohamad Chaarawi2012-07-031-1/+36
| | | | | | | the API level for the native implementation - work on fixing the named datatype issue.. still not resolved - branch still not stable and tests do not pass at this point
* [svn-r22502] implement named datatypes solution in object headersMohamad Chaarawi2012-06-291-15/+14
| | | | modify datatype open and get_binary callbacks to be disjoint
* [svn-r22501] change the interface callbacks for the VOL to use objects ↵Mohamad Chaarawi2012-06-281-521/+403
| | | | | | pointers and public VL structure instead of IDs. tests will fail now because of named datatypes.
* [svn-r22467] update is_accessible implementationMohamad Chaarawi2012-06-151-1/+9
| | | | deprecate is_HDF5
* [svn-r22465] add a vol_info parameter to the fapl and update some of the ↵Mohamad Chaarawi2012-06-151-2/+5
| | | | | | routines accordingly insert (commented out though for now) public version of the VOL callback
* [svn-r22457] rename location types for objects at the VOL levelMohamad Chaarawi2012-06-121-4/+4
|
* [svn-r22456] change all usage of lookup/free VOL callback in H5G,O,A and ↵Mohamad Chaarawi2012-06-121-7/+10
| | | | | | use the loc_param struct instead. update the native implementation
* [svn-r22452] - remove nrefs paramMohamad Chaarawi2012-06-111-71/+22
| | | | | | | | - create a struct to hold parameters for object locations instead of calling into VOL to lookup and free object: * update the implementation for H5Oopen(_by_name/idx/ref) * H5Rderefence * H5Aopen(_by_name), H5Arename(_by_name) * other routines coming later
* [svn-r22436] add a public routine to get the name of the VOL plugin ↵Mohamad Chaarawi2012-06-051-0/+41
| | | | associated with a File or object
* [svn-r22435] separate public and private VOL routinesMohamad Chaarawi2012-06-051-0/+1996