summaryrefslogtreecommitdiffstats
path: root/src/H5Dio.c
Commit message (Collapse)AuthorAgeFilesLines
* Bug fix to allow pass-through VOL connectors to set DXPL properties (like ↵Quincey Koziol2020-08-251-12/+0
| | | | requesting collective operations) on dataset I/O
* Minor changes from normalization with 1.10Dana Robinson2020-07-091-13/+8
|
* Trim trailing whitespaceQuincey Koziol2020-04-201-3/+3
|
* Reduce differences between my -Werror branch and `develop`:David Young2020-01-291-5/+10
| | | | | | | | Rename index -> idx, fileno -> fnumber, fileno -> fno to avoid GCC shadowed declaration warnings about index(3). Convert #pragma GCC diagnostic push/pop/ignored to the HDF5 library's H5_GCC_DIAG_OFF()/H5_GCC_DIAG_ON() macros.
* squash cast warning fixkmu2020-01-231-14/+8
|
* Refactor all the 'H5VL_*_optional' callbacks to move the type of operation outQuincey Koziol2019-12-201-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Implement H5VLget_file_type() to return a copy of a datatype with theNeil Fortner2019-11-081-1/+1
| | | | | | | | | | | 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.
* Add new H5R API that abstracts object, region and attribute reference typesJerome Soumagne2019-10-081-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also support references to external files Add new H5T_REF type and type conversion routines Support conversion from H5T_REF_OBJ/DSET_REG to H5T_REF Add H5Treclaim() API to reclaim memory of vlen/reference types Deprecate H5Dvlen_reclaim() Fix H5T_vlen_reclaim() and H5T_reclaim() to use private callback Add H5T_ref_reclaim() Move previous H5R APIs to H5Rdeprec.c Clean up H5Ocopy Separate H5O_copy_expand_ref() to H5Ocopy_ref() Add support for copying new reference types Clean up deprecated routines to go through VOL and same code path Fix return codes in existing trefer.c test Rename trefer.c to trefer_deprec.c trefer.c is for new references Add performance test for trefer Add additional obj_copy_ref test Make use of tokens and blobs to store references Skip blob encoding for object references Start adding new reference examples
* Add 'blob' callbacks to VOL, along with a native implementation to store themQuincey Koziol2019-10-081-18/+18
| | | | | | | 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.
* Begin converting dataset code to use shared file pointer instead of top fileQuincey Koziol2019-08-201-0/+1
| | | | pointer.
* Add H5Sselect_shape_same and H5Sselect_intersect_block API routines, alongQuincey Koziol2019-07-301-2/+2
| | | | with tests and minor cleanups and refactorings.
* Fix issue with direct chunk write not updating the "last chunk" indexNeil Fortner2019-03-061-1/+3
| | | | | cache. Fix issues involving datasets being "no allocated" when they contain cached raw data.
* Updated H5Dio.c comment.Dana Robinson2019-02-011-5/+2
|
* Fixed a bug revealed by the dtransform test. A datatype transformDana Robinson2019-01-311-1/+1
| | | | buffer needed to be calloc'd.
* Fix for parallel filters tests with new read-proc0-broadcast featureJordan Henderson2019-01-081-4/+8
|
* HDFFV-10625 -- Implemented a process-0 read and then broadcast for ↵Quincey Koziol2019-01-071-14/+4
| | | | collective read of full (HS_ALL), contiguous, atomic datasets by all the processes in the file communicator.
* Moved private native VOL connector functions to H5VLnative_private.h.Dana Robinson2018-12-201-1/+2
|
* Moved the optional enums to H5VLnative.h and converted to an intDana Robinson2018-12-181-0/+1
| | | | typedef and a set of #defines.
* Moved the native VOL connector's optional enums to theDana Robinson2018-12-151-2/+2
| | | | | public headers and renamed to include native/NATIVE in the name.
* Refactor and standarize file object callbacks, including some fixes on theQuincey Koziol2018-10-311-2/+2
| | | | dataset callbacks.
* Convert dataset callbacks to standard form, for wrapping object IDs, etc.Quincey Koziol2018-10-291-8/+4
| | | | Also, fix a few attribute issues that I missed.
* Squashed commit of private branch changes to support stackable VOL plugins.Quincey Koziol2018-10-251-4/+4
| | | | modified: test/dsets.c
* VOL FEATUREDana Robinson2018-10-101-55/+29
|
* Remainder of vol_normalization changes (dataset, attribute, files, objects).Dana Robinson2018-09-241-30/+29
|
* Removed 'VOL' versions of FUNC_ENTER macros as well as empty functionsDana Robinson2018-09-181-2/+2
| | | | orginally intended to support the full SWMR feature.
* Add configure check for MPI_Mprobe and MPI_Imrecv functionsJordan Henderson2018-07-261-1/+2
| | | | | | | | | | | | | | | Add line to libhdf5settings file for status of Parallel writes to filtered datasets status Surround Parallel Compression code in MPI_VERSION >= 3 checks Add disabled message for Parallel Compression built w/ MPI-2 Modify Parallel Compression tests to only run the parallel filtered read tests when parallel filtered writes are disabled Update big I/O code to handle being built with MPI-2 Add checks to CMakeLists.txt for MPI_Mprobe and MPI_Imrecv
* * Added H5DO compatibility functions.Dana Robinson2018-05-041-56/+51
| | | | | * Changed the offset copy to use an array on the stack. * Yanked some unused #defines.
* * Fixed the error testsDana Robinson2018-05-021-88/+83
| | | | * Moved common functionality into helper functions
* Merge branch 'develop' into h5do_direct_chunk_hl_to_srcDana Robinson2018-04-301-12/+12
|\
| * Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into ↵Quincey Koziol2018-04-291-340/+277
| |\ | | | | | | | | | merge_hyperslab_updates
| * | Checkpoint normalization against incoming hyperslab / selection / dataspaceQuincey Koziol2017-03-281-18/+18
| | | | | | | | | | | | improvements.
* | | Normalize with trunk prior to update mergeDana Robinson2018-04-301-16/+16
| | |
* | | Fixed a warning.Dana Robinson2018-04-301-1/+1
| | |
* | | Finished move of H5DOread/write_chunk calls to H5D.Dana Robinson2018-04-301-246/+142
| | |
* | | First stage of moving H5DOread/write_chunk() to src/ and makingDana Robinson2018-04-301-5/+150
| |/ |/| | | | | | | | | | | | | | | | | them H5D calls. * Moved H5DOread/write_chunk() to H5Dio.c and renamed to H5D*. * Moved the hl/test/test_dset_opt test to test/ and renamed to direct_chunk. * Moved the hl/test/dectris_hl_perf test to tools/test/perform and renamed to direct_write_perf. * Updated autotools and CMake files.
* | Corrections for parallel I/O & tests.Quincey Koziol2018-03-211-5/+4
| |
* | Cleanup API context function usage.Quincey Koziol2018-03-191-20/+4
| |
* | Add API context interface and use it throughout the library.Quincey Koziol2018-03-151-313/+168
| |
* | Normalization with VOL integration branch.Dana Robinson2017-12-011-1/+1
| |
* | Normalization with VOL integration branch.Dana Robinson2017-11-301-11/+4
| |
* | Fixed misc Warnings flagged by VS2017.Dana Robinson2017-11-271-1/+3
| |
* | Add test file to build processJordan Henderson2017-08-031-1/+1
| |
* | Suggested changes from code reviewJordan Henderson2017-07-071-3/+57
| |
* | Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Jordan Henderson2017-07-051-55/+103
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '6428a637752753cc8a9007c0c3c38b9ea9cc97fd': (165 commits) Skip HDFFV-10160 filenotclosed test for split/multi driver Temporary skip this test for split/multi driver. Further investigation to resolve the failure is needed. Please enter the commit message for your changes. Lines starting More minor whitespace cleanup Fixed a minor comment typo in H5R.c * Reverted removal of H5I_REFERENCE to avoid breaking binary compatibility. * Added a quick H5I_REFERENCE smoke check to test_misc19() in tmisc.c. Added missing free() call to test_misc19(). Purged the unused H5I_REFERENCE from the library. Added a test for VFD IDs to testhdf5. Revert "Partial removal of NDEBUG ifdefs from the library." Partial removal of NDEBUG ifdefs from the library. Removed compiler flag cleanup since Solaris chokes on it. Fix for HDFFV-10160 Modifications to fix the assertion/abort failure when the application does not close the file. Fixed a bug in autotools Fortran processing where a test for the presence of a C long double type always returned true. Updated the --enable-debug/production handling in configure.ac so that it more reliably indicates that the configure option can no longer be used. Previously, using --enable-debug="", etc. would not trigger an error (even though such usage is unlikely). Added awk processing to remove extraneous whitespace from H5_ flags in configure. Fixed a comment in configure.ac HDFFV-10219 another mode change HDFFV-10219 change subset to use BINARY mode for h5dump HDFFV-10219 default input binary to NATIVE Set default of var to NATIVE HDFFV-10219 - disable h5dump tests until h5import NATIVE is fixed ...
| * | Fixed many minor warnings.Dana Robinson2017-05-251-1/+0
| | |
| * | Incorporate patch from GE Healthcare (HDFFV-9934)Vailin Choi2017-04-251-49/+100
| | | | | | | | | | | | | | | This is the same patch that had already been integrated to 1.8 branch (pull request #387). Tested on moohan, ostrich, platypus, emu, osx1010test, quail, kituo, mayll.
| * | Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to ↵Larry Knox2017-04-251-6/+4
| |/ | | | | | | | | | | | | | | | | | | hdf5_1_10 * commit '54957d37f5aa73912763dbb6e308555e863c43f4': Commit copyright header change for src/H5PLpkg.c which was added after running script to make changes. Add new files in release_docs to MANIFEST. Cimmit changes to Makefile.in(s) and H5PL.c that resulted from running autogen.sh. Merge pull request #407 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10_1 to hdf5_1_10_1 Change copyright headers to replace url referring to file to be removed and replace it with new url for COPYING file.
* | Trigger error if library tries to break to independent I/O with filtersJordan Henderson2017-02-081-0/+7
| | | | | | in the pipeline
* | Switch working branch from master to developJordan Henderson2017-01-131-5/+0
|/
* [svn-r30189] Description:Quincey Koziol2016-07-181-12/+25
| | | | | | | | | Clean up more warnings: drop the warning count from ~1310 down to ~940, with only 31 types of warnings in 148 files (down from 38 types in 167 files). Tested on: MacOSX/64 10.11.5 (amazon) w/serial & parallel (h5committest forthcoming)