summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Updated scripts to match changes on developQuincey Koziol2021-09-281-0/+2
|
* Merge remote-tracking branch 'origin/develop' into post_open_fixQuincey Koziol2021-09-2770-1730/+1907
|\
| * VFD ctl feature (#981)jhendersonHDF2021-09-2317-146/+526
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added "ctl" callback to the VFD interface, and the associated H5FDctl() and H5FD_ctl() calls. Modified the MPIO VFD accordingly -- specifically: Added ctl() call with op-code support to expose rank, size, and communicator. Modified H5FD_mpi_get_rank(), H5FD_mpi_get_size(), and H5FD_mpi_get_comm() to use the new ctl() callback. In passing removed the const qualifier from the file parameter of these functions, as the file parameter of the ctl callback is not const. Deleted the old H5FD__mpio_mpi_rank(), H5FD__mpio_mpi_size(), and H5FD__mpio_communicator() calls from the MPIO VFD. Deleted H5FD_class_mpi_t from H5FDprivate.h, and modified the MPIO VFD accordingly. Note that all VFDs now use H5FD_class_t, with no special class for VFDs that that support MPI. Some minor touch ups to the Neil's selection I/O mods in passing. Tested serial and parallel, debug and production on charis and jelly. * Reserve a range of VFD "ctl" opcodes for library and experimental usage * Add "ctl" callbacks to passthrough VFDs * Add RELEASE.txt entry for "ctl" callback * Use H5FDopen with H5F_ACC_RDWR flag instead of H5F_ACC_TRUNC in vfd test * Remove handling of passthrough "ctl" flag from multi VFD * Move logic for testing H5FD_CTL__TEST_OPCODE into a testing VFD Revise description of "ctl" callback in RELEASE.txt Remove unused H5FD_CTL__NUM_OPCODES definition Fix some warnings in multi VFD Co-authored-by: mainzer <mainzer#hdfgroup.org>
| * Modified gcc/clang warning suppression macros to account for some warnings ↵Sean McBride2021-09-1610-106/+134
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | flags being supported by one compiler but not the other (#379) * Committing clang-format changes * Fixed GCC warning suppression pragmas to also work with clang H5_GCC_DIAG_ON remains gcc-only. Added a new H5_CLANG_DIAG_ON that's clang-only, but it's not used anywhere currently. Added a new H5_GCC_CLANG_DIAG_ON that works with both compilers, which afterall support mostly the same warnings. Changed almost all uses of H5_GCC_DIAG_ON to use H5_GCC_CLANG_DIAG_ON, with the exception of a couple, where they really were suppressing gcc-only warnings. * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
| * Fix several warnings (#720)jhendersonHDF2021-09-1413-33/+47
| |
| * H5Ztrans: (feature) Improved H5Z_xform_noop() and H5Z_xform_create() … (#933)Jan-Willem Blokland2021-09-131-5/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * H5Ztrans: (feature) Improved H5Z_xform_noop() and H5Z_xform_create() function - Made a small improvement for H5Z_xform_noop() function. Now, the function will also return TRUE if the data transform function expression = "x". For this case, the HDF5 library behaves in a similar fashion as the case when no data transform function has been specified. - Improved the inline documentation of the function H5Z_xform_create() such it is more inline with the rest of the code. * Committing clang-format changes * H5Ztrans: (feature) Added 3 tests for improved H5Z_xform_noop() function - Added serial test with data transform expression = "x" to verify the improved H5Z_xform_noop() function behaves as expected. - Added 2 parallel tests with data transform expression = "x" in combination with a filter. Before, these tests will fail but with the improved H5Z_xform_noop() function they work and result in the expected behavior. - Small bug fix for one of parallel filter tests. * Committing clang-format changes * H5Ztrans: (feature) Added release note about detection of the simple data transform function "x". - Added a brief explanation about the implemented improvement of the detection of the simple data transform function "x" to the RELEASE.txt file. Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
| * Fix various warnings and issues in doxygen doc generation (#994)Allen Byrne2021-09-103-43/+11
| | | | | | | | | | * Fix various warnings and issues in doxygen doc generation * Add new file to list
| * Update copyright headers with reproduction notice in 5 files (#993)Larry Knox2021-09-082-17/+14
| | | | | | | | | | | | | | | | | | * Update copyright headers with reproduction notice in 5 files that did not match terms in COPYING file . * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
| * Small doxygen fixes plus simple doc fixes (#989)Allen Byrne2021-09-042-10/+8
| | | | | | | | Change doxygen generated file location Clang format override for flags
| * Synch CMake doxygen options with autotools configure (#983)Allen Byrne2021-09-021-1/+2
| |
| * A batch of life-cycle examples for different modules (#654)Gerd Heber2021-09-0132-1383/+1166
| | | | | | | | | | | | | | | | | | * Create a tag file for permalinks. * Added DOXYGEN_TAG_FILE. * Added Doxygen life-cycle examples for different modules. Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
* | Merge branch 'develop' into post_open_fixQuincey Koziol2021-08-3118-181/+280
|\ \ | |/
| * More various warnings (#958)Sean McBride2021-08-254-22/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | * Committing clang-format changes * Fixed various -Wdouble-promotion warnings * Fixed -Wshadow warning for `optopt` conflict On macOS at least, there is a global various named `optopt` in unistd.h. * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
| * More clang tidy (#908)Sean McBride2021-08-236-42/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Pacify clang-analyzer-unix.cstring.NullArg * Apply some bugprone-suspicious-string-compare * Apply some readability-simplify-boolean-expr * Apply some readability-make-member-function-const * Apple some bugprone-macro-parentheses * Changed an f suffix to L for `long double` * Applied some readability-uppercase-literal-suffix automatically * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
| * Develop windows compiler fixes (#912)Allen Byrne2021-08-191-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix windows compiler issues Restore MS C++ Default exception handling behavior #885 Remove clang toolchain as it skips compiler checks * Add check and header gaurd for pwd.h * Revert change * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
| * Correct number of args to Windows HDunsetenv macro (#939)Allen Byrne2021-08-191-1/+1
| | | | | | | | | | * Correct number of args to Windows HDunsetenv macro * Correct format
| * Fix formatting (#923)Allen Byrne2021-08-181-1/+1
| |
| * Fixes a bad memory read and unfreed memory in fsinfo code (#893)Dana Robinson2021-08-122-14/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes a bad memory read and unfreed memory in fsinfo code The segfaul from CVE-2020-10810 was fixed some time ago, but the illegal memory read and unfreed memory were not. This fix tracks some buffer sizes and errors out gracefully on errors, ensuring buffers are cleaned up and avoiding the H5FL infinite loop + abort on library close. * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
| * Guard the SKIP_MPICXX macros against redefinition. (#892)David Wells2021-08-121-0/+4
| |
| * Unsigned comparison to 0 warning avoidance (#869)Larry Knox2021-08-021-3/+4
| | | | | | | | | | | | | | * Added int variable for comparison with H5_VERS_RELEASE in H5.c to avoid warning that unsigned comparison < 0 is always false, which is known, but for later versions the comparison can possibly be true. * Better solution for avoiding warning that unsigned comparison < 0.
| * Added int variable for comparison with H5_VERS_RELEASE in H5.c to avoid (#866)Larry Knox2021-07-301-1/+3
| | | | | | | | warning that unsigned comparison < 0 is always false, which is known, but for later versions the comparison can possibly be true.
| * Updates a comment in H5mpi.c (#863)Dana Robinson2021-07-281-1/+1
| | | | | | MPI_Type_struct() is an MPI-1 call we no longer use.
| * Remove version-check for relnum in H5check. (#812)Allen Byrne2021-07-272-93/+154
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove version-check for relnum in H5check. * Add in release exception code check * Fix typos * Fix more typos * Rework comments * format change * format whitespace * Library version must be less than or equal to headers * Need the NOT version of the compare * Enable release+1 check for PASS * Add release note * Update note
| * Fixes a couple of warnings: (#849)Dana Robinson2021-07-221-2/+2
| | | | | | | | | | | | | | - warn_unused_result warnings from h5jamgentest and j5stat_gentest that were triggered by write(2) calls where we didn't check the return value - A missing callback in the NULL VOL connector - A possibly uninitialized property list pointer
| * Avoid popping API context when one wasn't pushed (#848)jhendersonHDF2021-07-221-3/+16
| |
| * Allow parallel filters feature for comm size of 1 (#840)jhendersonHDF2021-07-201-3/+11
| |
* | Merge remote-tracking branch 'origin/develop' into post_open_fixQuincey Koziol2021-07-142-10/+9
|\ \ | |/
| * Remove checks for winsock2.h (#813)Dana Robinson2021-07-062-10/+9
| | | | | | | | This is only needed on Windows and always available, so there's no need to check for it.
* | Remove commented out codeQuincey Koziol2021-07-021-10/+0
| |
* | Remove duplicated call to underlying group close operation from API wrapperQuincey Koziol2021-07-021-4/+0
| |
* | Committing clang-format changesgithub-actions2021-07-011-348/+359
| |
* | Merge branch 'post_open_fix' of github.com:hpc-io/hdf5 into post_open_fixQuincey Koziol2021-07-011-331/+338
|\ \
| * | Committing clang-format changesgithub-actions2021-06-301-331/+338
| | |
* | | Finish adding operations to H5Pset_plugin_new_api_context frameworkQuincey Koziol2021-07-012-143/+1246
|/ /
* | Add more wrappers for VOL callback API routinesQuincey Koziol2021-06-301-37/+649
| |
* | Merge remote-tracking branch 'origin/develop' into post_open_fixQuincey Koziol2021-06-3018-240/+248
|\ \ | |/
| * Fixes parallel issues from recent C99 changes (#809)Dana Robinson2021-06-3018-240/+248
| | | | | | | | | | | | | | * Fixes parallel issues from recent C99 changes * Adds MPE FUNC --> __func__ changes missed in earlier PRs * Even more missed FUNC --> __func__ macros
* | Merge remote-tracking branch 'origin/develop' into post_open_fixQuincey Koziol2021-06-2920-768/+815
|\ \ | |/
| * Assume C99 types exist in H5detect.c (#808)Dana Robinson2021-06-291-90/+0
| |
| * Removes type guesses when C99 types are missing (#807)Dana Robinson2021-06-291-68/+0
| |
| * Brings the tools getopt(3) replacement into the main library (#803)Dana Robinson2021-06-292-0/+215
| | | | | | | | | | | | | | * Moves get_option from the tools library to the C library * Adds H5 prefix to get_option call and variables * Renames the H5_get_option long options struct and enum
| * Cleans up POSIX/C bits in H5private.h (#804)Dana Robinson2021-06-292-452/+448
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Cleans up POSIX/C bits in H5private.h * Assume difftime exists (C89) * Reorg AC_CHECK_HEADERS so headers are in alphabetical order * Split off networking-related AC_CHECK_HEADERS * Remove unused UNAME_CYGWIN from configure.ac * Remove checks for unused sys/timeb.h * Tidying pass over H5private.h HD prefix macros * Tidy H5win32defs.h * Add HD prefix to various scanf calls * Committing clang-format changes * Fixes to the alarm(2) code used in the tests to make Windows happy Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
| * Removes obsolete equivalents of C99's __func__ (#800)Dana Robinson2021-06-2917-161/+155
| |
* | Merge branch 'post_open_fix' of github.com:hpc-io/hdf5 into post_open_fixQuincey Koziol2021-06-2920-502/+521
|\ \
| * | Committing clang-format changesgithub-actions2021-06-281-1/+0
| | |
| * | Committing clang-format changesgithub-actions2021-06-2819-561/+581
| | |
* | | Add more operations to H5Pset_plugin_new_api_context frameworkQuincey Koziol2021-06-291-145/+461
| | |
* | | Allow event strings to be NULLQuincey Koziol2021-06-291-5/+15
|/ /
* | Add new source filesQuincey Koziol2021-06-281-0/+88
| |
* | Most changes for fixing post open issuesQuincey Koziol2021-06-2832-1055/+1734
|/