summaryrefslogtreecommitdiffstats
path: root/src/H5T.c
Commit message (Collapse)AuthorAgeFilesLines
* Update URL in source file Copyright headers for web copy of COPYINGLarry Knox2021-02-201-1/+1
| | | | file - src and test directories.
* 1 12 Whitespace changes after clang-format run (#288)Allen Byrne2021-01-291-1/+1
| | | | | | | | | | | | | | | | | | | | | * OESS-98 fix tools test for plugins * sync fork * Merge of changes from dev * Move problem option to bottom of the list until fixed * HDFFV-11106 - fix parsing optional args * HDFFV-11106 add note * grammer fix * Whitespace after clang formatting * Undo format version 11 changes * Update check to working version
* Merge PR #274 to 1.12 Branch (#283)Neil Fortner2021-01-271-4/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Improve performance of multiple calls to H5Sget_select_elem_pointlist (#270) * Cache the pointer to the next point to process after the last call to H5S__get_select_elem_pointlist. This allows the normal process of iterating over the points in batches to be much more efficient, as the library does not need to traverse the entirety of the preceding points every time the funciton is re-entered. * Update RELEASE.txt for point selection iteration performance fix. * Fix problems with vlens and refs inside compound using H5VLget_file_type() (#274) * Fixed problems with vlens and refs inside compound using H5VLget_file_type() * Fix date in RELEASE.txt * Add assertions * Move some manipulation of H5VL_object_t struct fields into the H5VL package. * Add fix that was mistakenly left off merge commit. * Update src/H5Tprivate.h Co-authored-by: Larry Knox <lrknox@hdfgroup.org>
* Merge changes from developAllen Byrne2020-10-081-2/+4
| | | | | Comments and whitespace Skip file-locking and cache changes
* Source formattedAllen Byrne2020-10-011-1807/+1923
|
* Clean up private / package / static namespace issues (function naming, whichQuincey Koziol2020-08-221-27/+5
| | | | | | header file, FUNC_ENTER / LEAVE, etc). Removed remaining personal email addresses from library source code (still needs cleaned from other directories). Misc. warning, style, and whitespace cleanup.
* Sync with developDana Robinson2020-08-011-29/+40
|
* Merge pull request #2325 in HDFFV/hdf5 from ~DYOUNG/werror:h5t_copy to developDavid Young2020-02-251-126/+318
| | | | | | | | | | | Merged per discussion with Elena. * commit '3f903a441ad84001ea66589728bd8b036b6fdfca': Take out the temporary performance tests. Make calls through a function pointer. Use the same number of arguments, always. Increase iterations, provide a baseline for no-op, simplify the overhead case a bit. Temporarily add some code that measures the time to run the simplest possible H5T__copy_all()-like routine 10 million times and then measures the version with FUNC_ENTER_STATIC/_LEAVE_NOAPI and a HGOTO_ERROR() statement. H5T_copy() constification plus Quincey's contributions.
* Revert "Merge branch 'hdf5_1_12' of ↵Jerome Soumagne2019-12-091-2/+1
| | | | | | | https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into hdf5_1_12" This reverts commit 9f9336a5bd541752f472bab4c93da8de89f862cd, reversing changes made to 437a1919e7ba60fe75a33a466d264183a0255319.
* Merge branch 'hdf5_1_12' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 ↵Richard Warren2019-12-061-2/+3
|\ | | | | | | into hdf5_1_12
| * Implement H5VLget_file_type() to return a copy of a datatype with theNeil Fortner2019-12-061-15/+61
| | | | | | | | | | | | | | | | | | | | | | 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.
| * More fixes for the PR:Vailin Choi2019-12-061-0/+1
| | | | | | | | | | (1) Set the version for reference datatype message to H5O_DTYPE_VERSION_4. (2) The tests for the new reference types should work for V112 and beyond.
* | Merged HDFFV-10929_2GB_testing to hdf5_1_12Richard Warren2019-12-061-14/+61
|/
* Fix encode and decode of tokens in H5VLnativeJerome Soumagne2019-10-111-1/+1
| | | | | | | | Fix encode and decode of deprecated object reference addresses Make H5Rdeprec.c use tokens instead of haddr_t Fix H5Oopen_by_addr() to serialize addr to token
* Add new H5R API that abstracts object, region and attribute reference typesJerome Soumagne2019-10-081-54/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* More whitespace synchingAllen Byrne2019-10-021-69/+69
|
* Added the map (H5M) APIDana Robinson2019-08-131-0/+1
|
* Add support for GCC9, update warnhist script, and clean up warnings.Quincey Koziol2019-07-031-2/+2
|
* Updated configure & CMake compiler flags for GCC 8.x, along with correspondingQuincey Koziol2019-06-281-2/+2
| | | | | changes to warnhist script (and some extra improvements for condensing C++ and Java warnings), and fixed a bunch of warnings.
* Updated H5Tcopy() to get the dataset's datatype through the VOL whenDana Robinson2019-06-241-18/+34
| | | | that is passed in as the object ID.
* 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 an H5MM_memcpy call that checks for buffer overlap.Dana Robinson2019-03-161-2/+2
|
* C and POSIX call cleanupDana Robinson2019-01-111-1/+1
|
* HDFFV-10625 -- Implemented a process-0 read and then broadcast for ↵Quincey Koziol2019-01-071-0/+106
| | | | collective read of full (HS_ALL), contiguous, atomic datasets by all the processes in the file communicator.
* 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.
* Switch driver | plugin => connector.Quincey Koziol2018-11-041-3/+3
|
* Refactor and standardize named datatype VOL callbacks.Quincey Koziol2018-11-011-49/+48
|
* Updates after merging changes from develop.Quincey Koziol2018-10-261-1/+1
|
* Squashed commit of private branch changes to support stackable VOL plugins.Quincey Koziol2018-10-251-5/+5
| | | | modified: test/dsets.c
* VOL FEATUREDana Robinson2018-10-101-5/+50
|
* Normalization with vol_integration (misc internal and datatype)Dana Robinson2018-09-201-158/+104
|
* 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.
* Fixed HDFFV-10404Binh-Minh Ribler2018-07-131-1/+1
| | | | | | | | | Description: Applied the typo fixes from user's report. The previous pull request couldn't be merged because it was too old, and it was too complicated for me to resolve conflicts. Platform tested: Linux/64 (jelly) - very minor
* Revert "Merge pull request #1116 in HDFFV/hdf5 from ↵hdftest2018-06-241-2/+2
| | | | | | | ~HDFTEST/hdf5_hft:hdf5_1_10 to develop" This reverts commit e9f476dad47ce593f13dacb77b1cc664d1f24e7b, reversing changes made to 2ff00b1b937ebe36ac6ddf590c16a4c27fc0b053.
* Merge branch 'develop' into hdf5_1_10.syncM. Scot Breitenfeld2018-05-081-533/+649
|\
| * Cleanup API context function usage.Quincey Koziol2018-03-191-30/+3
| |
| * Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into ↵Quincey Koziol2018-03-181-14/+41
| |\ | | | | | | | | | | | | | | | merge_func_enter_vol Plus initial steps toward merging API context push into FUNC_ENTER_API* macros
| | * Merge branch 'develop' into hdffv_10355Dana Robinson2018-03-061-0/+5
| | |\
| | | * Fix for HDFFV-10357 (CVE-2017-17508).Dana Robinson2018-02-271-0/+5
| | | |
| | * | Fix for HDFFV-10355 (CVE-2017-17506).Dana Robinson2018-02-271-4/+9
| | |/
| | * Changes made based on code reviews.Vailin Choi2018-01-121-3/+2
| | |
| | * (1) Merge branch 'develop' into bugfix/version_boundsVailin Choi2017-11-251-6/+6
| | |\ | | | | | | | | | | | | | | | | | | | | (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.
| | * | Initial checkin for library version boundsVailin Choi2017-10-031-8/+26
| | |/ | | | | | | | | | Code changes to provide versioning support when adding to the enumerated defines for H5F_libver_t.
| * | Add API context interface and use it throughout the library.Quincey Koziol2018-03-151-533/+676
| |/
| * HDFFV-10186 Add endianess to bitfield and fix testsAllen Byrne2017-05-101-8/+21
| |
| * HDFFV-10186 Whitespace changesAllen Byrne2017-05-091-1441/+1389
| | | | | | | | Mostly replacing tabs with spaces Removed empty mod sections
| * 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.
* | Needs to sync with lib version and Sencode.M. Scot Breitenfeld2018-03-071-14/+41
| |
* | Fix for HDFFV-9947 H5SencodeVailin Choi2017-11-281-2/+2
| | | | | | | | Modifications to fix H5Sencode bug when num points selected is > 2^32.