summaryrefslogtreecommitdiffstats
path: root/src/H5Oint.c
Commit message (Collapse)AuthorAgeFilesLines
* H5T_copy() constification plus Quincey's contributions.David Young2020-01-291-23/+78
|
* Squashed commit of the token_refactoring branch:Dana Robinson2020-01-161-25/+104
|
* Merge pull request #2071 in HDFFV/hdf5 from ~KMU/hdf5:bugfix/intel_warnings ↵Kimmy Mu2020-01-061-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to develop * commit '0a2bb11b248df6841daabca3970df5d8504adfc7': address problems from comments fix and address comments change according to previous comments add missing piece remove unnecessary check macro fix intel compile warnings Revert "fix warnings from Intel compiler" Revert "fix warnings and some text alignment" Revert "let hdf5 pick up the right compiler in Intel environment" Revert "fix issues from previous PR comments" Revert "using a different MACRO" using a different MACRO fix issues from previous PR comments let hdf5 pick up the right compiler in Intel environment fix warnings and some text alignment fix warnings from Intel compiler
| * Merge branch 'develop' into bugfix/intel_warningskmu2019-12-091-1/+0
| |\
| * | remove unnecessary check macrokmu2019-12-061-1/+1
| | |
| * | fix intel compile warningskmu2019-12-041-2/+2
| | |
* | | Small changes from the token_refactoring branch, to reduce the delta to developQuincey Koziol2020-01-041-58/+1
| | |
* | | Refactor all the 'H5VL_*_optional' callbacks to move the type of operation outQuincey Koziol2019-12-201-0/+1
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of the va_list, so it's at least possible for another connector to know what the operation is and decide whether to implement it or not. Added a new VOL sub-class called "introspect" where callbacks that report information about the connector or container can be placed. Added an 'opt_query' callback to this sub-class, for a connector to report back to the library whether a particular optional callback operation is supported. Also added a 'get_conn_cls' introspection callback, to retrieve the H5VL_class_t of a connector (either the "current" connector, H5VL_GET_CONN_LVL_CURR, or the terminal connector, H5VL_GET_CONN_LVL_TERM). Moved the "post open" operation from a file 'specific' operation to a file 'optional' operation, now that it's possible to detect (with the 'opt_query' introspection callback) whether a VOL connector implements an optional operation, without just returning an error. Added new internal VOL helper routines: H5VL_object_is_native, to determine if an object is in (or is a) native file, and H5VL_file_is_same, to determine if two objects are in (or are) the same terminal VOL connector's container. (And moved the special handling for FILE_IS_EQUAL operation out of internal VOL callback routine into H5VL_file_is_same) Made new dataset 'get' operation for H5Dvlen_get_buf_size, aligning it better with other 'get' operations in API. Fixed several issues with pass-through connectors, which are now passing the 'make check-passthrough-vol' tests again. A bunch of warning and style cleanups as well.
* | Revert "Make a squash commit of 'Quiet some warnings by adjusting warnings ↵David Young2019-11-271-1/+0
|/ | | | level and fixing some code.' (commit 5c911d8baf3)"
* Add an #include to get a function declaration.David Young2019-11-251-0/+1
|
* Add object header flags to API contextChris Hogan2019-11-141-2/+12
| | | | | Add missing DCPL to API context state Replace a couple LCPL H5P_get calls with H5CX_get_*
* Update versioning to next major versionAllen Byrne2019-09-251-346/+347
|
* Added the map (H5M) APIDana Robinson2019-08-131-0/+3
|
* Add support for GCC 7.x warnings, update warnhist script to account for them,Quincey Koziol2019-06-211-0/+1
| | | | clean up warnings.
* Set V112 as the latest format and extend the arrays of version bounds.Vailin Choi2019-04-041-0/+1
|
* - Added H5MMprivate.h #includes where neededDana Robinson2019-03-161-2/+0
| | | | | - Added casts to quiet H5MM_memcpy warnings - Removed char * casts from HDmemcpy
* Added an H5MM_memcpy call that checks for buffer overlap.Dana Robinson2019-03-161-2/+2
|
* Remove H5O_BOGUS_INVALID_ID from H5O_msg_class_g initialization, sinceNeil Fortner2019-01-081-6/+1
| | | | space for it was removed.
* Formatting adjustmentsJacob Smith2018-12-181-30/+30
|
* Merge branch 'develop' into dset_ohdr_minimizeJacob Smith2018-12-181-1/+0
|\
| * Removed H5I_REFERENCE from the library. It has always been unusedDana Robinson2018-12-081-1/+0
| | | | | | | | and has been marked 'deprecated' since 1.10.0. Fixes HDFFV-10252.
* | Reformat to be more consistent with existing code.Jacob Smith2018-12-131-115/+47
| | | | | | | | Fix a few typos.
* | Merge branch 'develop' into dset_ohdr_minimizeJacob Smith2018-12-121-383/+129
|\ \ | |/
| * Refactor infrastructure for setting FAPL information from environmentQuincey Koziol2018-11-281-1/+0
| | | | | | | | | | | | 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 switch remainder of API routines to use VOL callbacks.Quincey Koziol2018-11-101-1/+1
| |
| * Remove most debugging shims & scaffolding.Quincey Koziol2018-11-041-8/+0
| |
| * Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into ↵Quincey Koziol2018-10-251-1/+1
| |\ | | | | | | | | | stackable_vol
| | * Split H5VLnative.h into public and private files and updatedDana Robinson2018-10-201-1/+1
| | |
| * | Squashed commit of private branch changes to support stackable VOL plugins.Quincey Koziol2018-10-251-1/+9
| |/ | | | | | | modified: test/dsets.c
| * VOL FEATUREDana Robinson2018-10-101-46/+61
| |
| * Remainder of vol_normalization changes (dataset, attribute, files, objects).Dana Robinson2018-09-241-84/+82
| |
| * Removed 'VOL' versions of FUNC_ENTER macros as well as empty functionsDana Robinson2018-09-181-274/+8
| | | | | | | | orginally intended to support the full SWMR feature.
* | Continued progress in implementing tests.Jacob Smith2018-09-201-2/+1
| |
* | Stash work on object header reduction code and tests.Jacob Smith2018-09-111-87/+295
|/ | | | CMake stuff is not verified.
* Changes made based on feedback from pull request #1039.Vailin Choi2018-05-141-12/+15
|
* Fix for HDFFV-10180 Performance issues with H5Oget_info.Vailin Choi2018-04-241-69/+84
|
* Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into ↵Quincey Koziol2018-03-181-4/+59
|\ | | | | | | | | | | merge_func_enter_vol Plus initial steps toward merging API context push into FUNC_ENTER_API* macros
| * Fix for HDFFV-10209 VDS SWMR test failureVailin Choi2018-03-091-0/+1
| | | | | | | | Free the object header when there are chksum retries.
| * Changes made based on code reviews.Vailin Choi2018-01-121-10/+12
| |
| * (1) Merge branch 'develop' into bugfix/version_boundsVailin Choi2017-11-251-4/+56
| | | | | | | | | | | | (2) Add two new options to h5repack for low and high bounds as in H5Pset_libver_bounds. (3) Modify message pre_copy callbacks so that H5Ocopy can handle version bounds check. (4) Add version bounds check for cache image feature.
* | Add API context interface and use it throughout the library.Quincey Koziol2018-03-151-185/+591
|/
* Moved code from H5O.c to H5Oint.cDana Robinson2017-11-141-0/+2641
|
* Added H5Oint.c file.Dana Robinson2017-11-141-0/+72