mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
ea3f926057
* Rework tools.cmake and add C flags (#3110) * Fix gh pages so that the doxygen files are uploaded (#3102) * Add workspace path * add debug * Make one job so workspace files are available * Put doxygen docs under docs folder in gh-pages * Fix a misc warning in test/vol.c (#3112) The compiler complains about using integers instead of size_t for some sizes. * Remove H5detect and H5make_libsettings (#3104) Removes H5detect and H5make_libsettings from the build and replaces their functionality with things that don't affect cross-compiling. H5detect --> floating-point types are now detected on library load H5make_libsettings --> Moved functionality to a new H5build_settings.c template file * clang-tidy clang-analyzer-core issues addressed (#3113) src/H5system.c:1293:13: warning: Dereference of null pointer [clang-analyzer-core.NullDereference] src/H5trace.c:4048:17: warning: Passed-by-value struct argument contains uninitialized data (e.g., via the field chain: 'initial.user') [clang-analyzer-core.CallAndMessage] * Add note for issue 3056 (#3117) * Use 1.14 toolchain (#3116) * Remove the checkposix script (#3122) This script was used to ensure that all non-HDF5 calls were prefixed with 'HD'. We are removing this scheme so this script is no longer needed. * Remove unused HD macros (#3120) * Remove unused HD macros The library prefixes most C and POSIX API calls with 'HD'. We are going to start removing these so the code looks like normal C. This PR removes most of the unused HD markup macros. * Replace ntohl/ntohs * Adds an optional version arg to bin/format_source (#3119) * Clean up mirror VFD code in utils dir (#3121) * Remove dead code * Replace mybzero with memset * Replace hbool_t/TRUE/FALSE with bool/true/false * Fix spelling issues flagged by codespell (#3130) * Make autogen.sh output message consistent (#3128) * Add Python for HDF-EOS zoo description (#3129) * Fix function name in comment in ros3 VFD (#3131) * Revert long double checks (#3133) * Revert "Remove long double conversion work-arounds (#3097)" This reverts commit1e1dac1dac
. * Update comments to reflect newer systems * Add java options to build scripts (#3127) * Add java options to build scripts Previously, cmakehdf5 turned on compiling of the java interface by default due to a value set in cacheinit.cmake. Now, consistent with how Fortran and CPP interfaces are handled, the script overwrites this default value to disable the libraries, fixing #2958. I also implemented the --enable-java/--disable java options for cmakehdf5, and -java for buildhdf5. Allen said these scripts should mention that compilers are to be specified in environment variables, but missing compilers causes errors at the CMake level, and CMake's error messages are already pretty informative (See the one in #2958 about JAVA_COMPILER). * Removed .lnt linter files (#3143) These were last usefully modified in 2004 * Fix path to libhdf5.settings in cmakehdf5 (#3140) * Many clang -Wextra-semi-stmt fixes (#2537) * Adds semicolons to function-like macros * Adds a do..while(0) loop to some macros * Removes semicolons when inappropriate, especially H5E_TRY_BEGIN/END * Remove HD prefix from network calls (#3142) HDsocket(), etc. Only affects the mirror VFD and its test code. * Remove hbool_t/TRUE/FALSE from java (#3145) Replaces with bool/true/false * CMake: (feature) ROS3 and cmake config file. (#3146) - Added a cmake variable to the hdf5-config.cmake file which indicate if the library has been build with or without the read-only S3 functionality. * Define minimal permissions for new GitHub workflows (#3147) * Track s3 i/o when S3COMMS_DEBUG enabled (#3139) * Track s3 i/o when S3COMMS_DEBUG enabled * Fix the snapshots workflow (#3148) * Add upload url as artifact * Change doxygen path and comment log-url upload * zip doxygen files for upload * add workspace var * chore: fix grammar (#3150) * chore: fix grammar * Removes the HD prefix from java C99 calls (#3149) POSIX calls (HDstrndup, etc.) are unchanged * Correct the zip usage (#3153) * Many fixes to various compiler warnings (#3124) * Fixed various -Wmissing-variable-declarations by adding static keyword * In a few cases, renamed the variable suffix from _g to _s. * Fixed some -Wmissing-variable-declarations by using different declaration macros * Fixed various -Wconditional-uninitialized warnings by just initializing variable to zero * Fixed various -Wcomma warnings * Fixed clang -Wstrict-prototypes warnings * Fixed various -Wunused-variable warnings * Updated some casts to fix the only 3 -Wcast-qual warnings * Fixed the only -Wsometimes-uninitialized warning * Create Security Policy (#3152) * Fix #1978 h5vers usage message. (#3162) Update Platforms Tested in RELEASE.txt. * speed-up building HDF5 (#3087) Disables building the tests when building the netCDF, etc. * Remove dead code behind #ifdef OLD_WAY (#3163) * Remove H5F_evict_tagged_metadata() (#3165) The rest of the library just calls H5AC_evict_tagged_metadata() directly. * Add missing space in zip command (#3167) * Fixed check for a VOL's async compatibility (#3164) * cap flag fix in test * added async comp. output * Update Linux workflows (#3173) * Consolidate environment setup * Turn on ros3 VFD in CMake (Linux only) * Add gh-pages doxygen link (#3175) * Fix the doxygen to gh pages and artifact creation (#3176) * Tidy the list of options in main.yml (#3181) * Remove HD/hbool_t from fortran (#3182) * Remove HD/hbool_t from high-level lib (#3183) * Remove HDva_(arg|copy|end|start) (#3184) * Drop HD prefix & hbool_t from H5TS (#3180) * Remove HD from fork/exec*/wait* (#3190) These are not C99 but are hidden behind ifdefs and are highly unlikely to ever have non-POSIX equivalents. * Fix assertion failure when attempting to use IOC VFD directly (#3187) * Rename HDqsort() to qsort() (#3193) * Rename HDqsort() to qsort() * Committing clang-format changes --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Rename HDpipe() to pipe() (#3192) Pipe is POSIX but implemented in Microsoft's CRT * Rename HDassert() to assert() (#3191) * Change HDassert to assert * Fix bin/make_err * Rename HD(f)printf() to (f)printf() (#3194) * Add note about HDF5_VOL_CONNECTOR to tools usage (#3159) * Rename HDsystem() to system() (#3197) system() is only used in the iopipe test and the things it calls (which are POSIX-y) are protected by an ifdef. * Remove HD from HDposix_memalign() (#3196) The posix_memalign call is only used in the direct VFD, which can only be built if posix_memalign() is available. * Remove HD from memory allocate/free calls (#3195) * HDcalloc * HDfree * HDmalloc * HDrealloc * chore: fix grammar (#3207) * docs: remove redundancy in Data Transfer section of user guide (#3208) * Remove checks for setsysinfo, which is unused (#3205) * Autotools * CMake * Remove HD from protected POSIX calls (#3203) These calls are non-C99 but protected by ifdefs and have no Windows equivalents: * HDalarm * HDasprintf * HDclock_gettime * HDfcntl * HDgethostname * HDgetrusage * HDsymlink * Rename HDato*() to ato*() (#3201) * Remove some "Programmer" comments (#3209) These are meaningless noise. Removes the "Programmer" lines on comment start lines: /* Programmer: John Smith These complicate my sed script that will rip out the rest of the comments. * Rename HDexit() and related to exit(), etc. (#3202) * HDatexit * HDexit * HD_exit * Remove HD from strto* calls (#3204) * HDstrtod * HDstrtol * HDstrtoll * HDstrtoul * HDstrtoull * HDstrtoumax * Remove HD from C std lib file ops (#3206) * HDfclose * HDferror * HDfeof * HDfflush * HDfopen * HDfread * HDfwrite * Remove programmer/date from comments (#3210) * Removes Programmer: and Date: fields * Fixes a few Modifications: fields leftover from previous work * Remove HD from HDmem* calls (#3211) * Remove HD from HDis* (e.g., isalpha) (#3212) * HDisalnum * HDisalpha * HDiscntrl * HDisdigit * HDisgraph * HDislower * HDisprint * HDispunct * HDisspace * HDisupper * HDisxdigit * Update actions for release option, fix branch for daily build (#3185) * Update actions for release option, fix branch for daily build * Scheduled workflows run on latest commit on the develop * Add snapshots location * docs: improve consistency in verb form (#3076) (#3188) * fix gh action if statements (#3213) * Adjust presets timeout and fix build script VS versions (#3215) * Several ros3vfd logging improvements * Committing clang-format changes * Update COPYING (#3231) Fixed old support URL. * addresses compilation fortran warnings on Frontier (#3236) * Fix doc for H5allocate_memory (#3240) * merge bbrelease to release (#3232) * merge bbrelease to release * Fix pre-req workflow * Replace support.hdfgroup.org URLs for alternative COPYING file (#3228) * Replace support.hdfgroup.org URLs for alternative COPYING file locations in copyright headers with https://www.hdfgroup.org/licenses. Replace support.hdfgroup.org URL for alternative COPYING_LBNL_HDF5 with github URL. Tweak chkcopyright script for change from UICOPYRIGHTSTR to THGCOPYRIGHTSTR. * Replace 1_10 reference with develop branch (#3227) * Switch CI to use release script (#3242) * Subfiling VFD source cleanup (#3241) * Subfiling VFD source cleanup Modularize Subfiling CMake code into separate CMakeLists.txt file Update Mercury util code to latest version and update Copyright Generate mercury_util_config.h header file instead of using pre-generated file Remove unnecessary Mercury functionality Fix minor warning in Subfiling VFD code * Remove Mercury headers from Autotools publicly-distributed header list * install h5fuse.sh in bin dir. (#3244) * Disable h5py until fixed properly without spack (#3243) * ROS3: (feature) Temporary security credentials (#3030) - Implemented support for AWS temporary security credentials. For this kind of credentials also a session/security token should be included in the request by adding the x-amz-security-token header. Co-authored-by: Larry Knox <lrknox@hdfgroup.org> Co-authored-by: Jordan Henderson <jhenderson@hdfgroup.org> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Avoid truncating at null byte when copying to std::string (#3083) --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Fix CMake builds when Subfiling VFD isn't enabled (#3250) * Fix CMake builds when Subfiling VFD isn't enabled * Add Subfiling VFD entry to hdf5-config.cmake.in * Fix some warnings in developer builds (#3247) * Fix some warnings in developer builds * Switch approach to Winline flag * Fixed more warnings about extra semicolons (#3249) * Require semi-colon after H5_CHECK_OVERFLOW calls Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Fix warning in H5C__UPDATE_STATS_FOR_DIRTY_PIN macro (#3259) Add braces to H5C__UPDATE_STATS_FOR_DIRTY_PIN macro to fix warning causing Werror Release builds to fail * Update DEFAULT_API_VERSION documentation for CMake (#3255) * Update DEFAULT_API_VERSION documentation for CMake * Fix hint --------- Co-authored-by: Larry Knox <lrknox@hdfgroup.org> * changed the scope of #ifdef DOXYGEN to now include H5D multi-functions (#3254) * Option changed but not all references (#3252) * Option changed but not all references * remove quotes from binary var * Move 1.12.3 release to October (#3263) * Fixed some -Wunused-variable warnings and one Wsometimes-uninitialized warning (#3260) * removed the use of encoded single apostrophe (#3261) * removed the use of encoded single apostrophe, and fix H5Dread_chunk from write to read * updated sanitizer paragraph * fixed brief description for H5Fget_info * ROS3: (fix) Replaced HDfprintf (#3266) - Replaced the HDfprintf() functions by fprintf() to be consistent with other parts of the library. * chore: make VRFY output consistent (#3268) * CMake: (fix) Threads dependency (#3267) - If the HDF5 library has been build with either thread-safety or subfiling VFD feature on it will have an additional dependency on a threading library. This dependency has been added to the hdf-config.cmake.in file. * chore: fix grammar - get hang -> get hung (#3272) * Another round of fixing -Wextra-semi-stmt warnings (#3264) Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: fix typo - persent -> present (#3273) * Remove py-pip from h5py action (#3265) * Update release schedule (#3317) * Move 1.12.3 to November * Add 1.14.3 in October * Update README.md w/ 1.4.3 info (#3318) * Switch parallel compression to use vector I/O (#3245) Updates parallel compression feature to use vector I/O instead of creating and passing down MPI derived types to VFD * Fix incorrect error check in H5Ofill.c for undefined fill values (#3312) * Fix H5Otoken_to_str call in h5dump and other minor cleanup (#3314) * Fix loading plugin fails with missing directory GH issue #3248 (#3315) * Made HGOTO_ERROR a do-while loop (#3308) * Made HGOTO_ERROR a do-while loop * Update files to skip list and ignore_words_list (#3321) * Update files to skip list and ignore_words_list for codespell to not check files generated by autotools. Autotools generate misspellings that can't be fixed in HDF5 code. * Windows runtime items go into the bin folder (#3320) * A couple of documentation items to fix (#3332) * Fix h5repack for variable-length datatyped datasets (#3331) * Fix CVE-2018-11202 (#3330) A malformed file could result in chunk index memory leaks. Under most conditions (i.e., when the --enable-using-memchecker option is NOT used), this would result in a small memory leak and and infinite loop and abort when shutting down the library. The infinite loop would be due to the "free list" package not being able to clear its resources so the library couldn't shut down. When the "using a memory checker" option is used, the free lists are disabled so there is just a memory leak with no abort on library shutdown. The chunk index resources are now correctly cleaned up when reading misparsed files and valgrind confirms no memory leaks. * Fix CVE-2018-13867 (#3336) * Fixes the last of the -Wextra-semi-stmt warnings (#3326) * Fixed extra semi warning by adjusting alternative macro definitions * Find-replace H5E_END_TRY; -> H5E_END_TRY * Made H5Epush_goto a do-while loop, fixed indentation * Made GOTOERROR and ERRMSG do-while loops * Made Hgoto_error and Hgoto_done do-while loops * Made vrfy_cint_type and vrfy_ctype do-while loops * Made TEST_TYPE_CONTIG and others do-while loops * Removed extraneous semi-colons * Committing clang-format changes --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Fix a typo in RELEASE.txt * Fix assertion failure in H5D__mpio_collective_filtered_vec_io (#3340) * Make h5dump spacing consistent when printing VLEN datatype (#3351) * Fix for the bug exposed from running test/set_extent.c when selection… (#3319) * Fix for the bug exposed from running test/set_extent.c when selection I/O is enabled. This is a fix from Neil. The test/set_extent.c is modified to test for selection I/O enabled. * Add Fortran ES module to deploy list (#3341) * Add Fortran ES module to deploy list * Change fortran mod file export to use a list of names * test(parallel): verify FALSE case (#3356) * Implementation of the mpio driver with selection I/O. (#3222) * This changes the default selection I/O to on for MPIO. * Work around a testphdf5 failure on Cray MPICH machines (#3361) * set H5_PAC_C_MAX_REAL_PRECISION default to 0 when cross sompiling with (#3364) CMake to fix Fortran build failures. * Add RELEASE.txt notes for recent selection I/O work. (#3374) * Fix possible performance regression introduced with in-place type conversion in 1.14.2 (#3376) * Correct script (#3377) * Correct CI settings (#3384) * Correct CI settings * Correct plugin file name * restore CI tarball name prefix to match bin/release (#3385) * Fix assertion failure during file close on error (#3387) * Fix compile failures with H5C_DO_MEMORY_SANITY_CHECKS enabled (#3388) * Fix valgrind warning about write of uninitialized bytes (#3389) * Fix valgrind warning about write of uninitialized bytes in ScaleOffset filter (#3390) * Update presets, examples uncompress, szip cache (#3391) * Fix serial to parallel chunked dataset file space allocation bug (#3394) * chore: fix typo (#3405) * Fix for CVE-2016-4332 (#3406) This CVE issue was previously listed as fixed (via HDFFV-9950) back in 2016, but with no confirmation test. Now that test files exist for the 2016 Talos CVE issues, we found that CVE-2016-4332 can raise an assert in debug builds. This fix replaces the assert with pointer checks that don't raise errors or asserts. Since the function is in cleanup code, we do our best to close and free things, even when presented with partially- initialized structs. Fixes CVE-2016-4332 and HDFFV-9950 (confirmed via the cve_hdf5 repo) * Fix ph5diff tests for MPIEXEC_MAX_NUMPROCS=1 (#3407) * Enable szip by default in Autotools (#3412) Since libaec is so prevalent and BSD-licensed for both encode and decode, we build the szip filter by default when the szip or aec libraries are found. * Re-enable SZIP default to ON in CMake (#3414) The Autotools were handled in a separate commit * Fix Heap-buffer-overflow WRITE in H5MM_memcpy (#3368) * Add Intel oneAPI actions (#2949) (#2977) * ci: add Intel oneAPI actions (#2949) * ci: fix CMake installation * ci: use absolute paths for libtool installation * ci(oneAPI): update compiler versions and use cron * Add RELEASE.txt entry for compound performance regression fix (#3376) (#3416) * chore: remove gubbins comment (#3420) * Add other types and full type to enum/str/vlen dataformat for structblock[begin/end] (#3353) * Avoid H5Ocopy in h5repack for variable-length string types (#3419) * Skip atomicity tests for OpenMPI major versions < 5 (#3421) * Fix an issue with use of uninitialized memory in trefer_deprec.c test (#3422) * Add parallel examples in doxygen (#3413) * Fix use of uninitialized value in testpar/t_dset.c test (#3423) * Remove extraneous "33" in RELEASE.txt (#3425) * Revise file close assertion failure fix (#3418) * Remove intel oneapi warning (#3426) * Fix for CVE-2018-15671. h5stat -S $POC will result in a crash with segmenetation fault. (#3427) It is because the object in the testfile points back to the root group. When the tool tries to traverse the object, it goes back to the root group and then back again. * chore: match function call and VRFY() output (#3428) * Fix the Fortran extension used in example links (#3430) * Put H5T_CONV_ab macros in do..while loops (#3432) Ever since a recent round of macro cleanup, bin/trace and clang-format have been bickering over what H5Tconv.c should look like and neither produces readable code. This change puts the top-level H5T_CONV_ab macros in do..while loops, adds appropriate semicolons, and adds the missing H5_CLANG_DIAG_ON|OFF and H5_GCC_CLANG_DIAG_ON|OFF macros to the list of statement macros clang-format recognizes. H5Tconv.c is now readable and both bin/trace and clang-format are happy. * Convert some H5MM calls to standard C equivalents (#2382) * H5MM_calloc and malloc are now mapped to stdlib C calls * H5MM_memcpy now maps directly to memcpy in release builds * H5MM_memcpy is still implemented as a separate function that checks for buffer overlap when H5MM_DEBUG is defined (default w/ debug builds) * Switches many library memcpy calls to use H5MM_memcpy * Fixes a possible zero allocation in H5Olayout.c * Add 1.14.4 to the release schedule (#3434) * Output stderr file in CMake testing on failure (#3431) * Add Intel oneAPI badges (#3433) * Add a CVE regression test action (#3445) * * Disable SZIP for Intel oneAPI Action (#3449) * Disable SZIP for Intel oneAPI Action * Disable Fortran and parallel * Update VOL CMake for REST VOL (#3450) * Update VOL CMake for REST VOL * Prevent linking static libs to VOLs * Add an h5py badge to README.md (#3477) * Removed all the ranks printing out testing information (#3457) * Fix Subfiling VFD IOC assignment bug (#3456) * Correct java test dimension (#3482) * Support CMake VOL builds with FetchContent from local directory (#3455) * Update VOL CMake for REST VOL * Prevent linking static libs to VOLs * index on fetch_local:5c5c3f1505
Prevent linking static libs to VOLs * index on (no branch):9a36d3e7b1
On fetch_local: WIP:add source dir fetch option for vols * Allow building of VOL from local source * Move LOCAL_DIR option to HDF5_VOL_ALLOW_EXTERNAL * Fix the Fortran include dir in install config files (#3454) * Convert hbool_t --> bool in examples (#3492) * Fix some minor formatting for consistency (#3499) * Create scorecard.yml (#3508) Bring in OSSF Scorecard code scanner as a GitHub action * Convert hbool_t --> bool in testpar (#3495) * hbool_t/TRUE/FALSE --> bool/true/false in tools (#3491) * Convert hbool_t --> bool in test (#3494) * Convert hbool_t --> bool in src (#3496) * hbool_t --> bool in src * Does not remove TRUE/FALSE * Public header files are unchanged * Public API calls are unchanged * TRUE/FALSE --> true/false in src * Add deprecation notice for hbool_t * Added new Fortran API wrappers (#3511) * Added new wrappers for h5get_free_list_sizes_f H5Sselect_intersect_block_f H5Sselect_shape_same_f h5pget_no_selection_io_cause_f h5pget_mpio_no_collective_cause_f H5Lvisit_by_name_f H5Lvisit_f H5Fget_info_f h5dwrite_chunk_f h5dread_chunk_f * added h5pget_file_space_page_size_f, h5pset_file_space_page_size_f, h5pget_file_space_strategy_f, h5pset_file_space_strategy_f, h5info tests * added fortran tests * Update tH5F.F90 * misc. fortran fixes for failing CI dailty tests (#3523) * fixed H5Lvisit* interface * changed integer type for direct write * Consistent initialization of hid_t in the tests (#3521) * Fix windows cpack with debug (#3525) * Add missing row for the ROS3 VFD in table #3415 (#3517) * fixed nvidia compiler issue (#3527) * Identify functions in a subgroup (#3530) * quiet warning on sunspot (gcc 11.2.0) (#3534) * Add API examples doxygen page (#3500) * removed C_INT32_T from Fortran APIs (#3537) * Add NVHPC 23.7 GitHub Actions (#3509) * Add NVHPC 27.3 GitHub Actions * Address @derobins review * Remove HD prefix from math functions (#3538) * Remove HD prefix from HDlog10 calls (#3539) Was missed in a previous commit and causes building subfiling to fail. * fixed arg to C H5Dwrite_chunk (#3541) * Strip HD prefix from string/char C API calls (#3540) * Strip HD prefix from string/char C API calls * HD(f)(put|get)(s|c) * HDstr* * HDv*printf * HD(s)(print|scan)f * HDperror But NOT: * HDstrcase* * HDvasprintf * HDstrtok_r * HDstrndup As those are not C99 and have portability work-around implementations. They will be handled later. * Fix th5_system.c screwup * Convert main.yml CI into callable workflows (#3529) * Fix broken URL. (#3546) * Fix grammar (#3545) * Update oneAPI-C/A badge yml links. (#3564) * Check return values from HDF5 API calls. (#3556) * Adds link to h5fuse.sh in testpar for autotools (#3557) * Make the h5fuse.sh utility available to parallel subfiling tests so h5fuse testing is not skipped. * Some minor formatting and text changes (#3563) * Fix typos and grammar in t_pread. (#3565) * Fix typo (givin->given) in test/testframe.c. (#3567) * Fix ifx unused variable hdferr warning. (#3568) * Correct comments about H5Z_FILTER_NONE (#3572) * Update release script. (#3577) * fixed function declaration (#3579) * Fixed GH-3554 (#3584) Removed the extra condition * Remove h5dwalk.1 man page. (#3589) * Removed the use of -commons linking option on Darwin (#3581) Removed the use of -commons linking option on Darwin as COMMON and EQUIVALENCE is no long used * Fix docs for H5Pset_dxpl_mpio_collective_opt() (#3594) * Fix typo: arange->arrange in src/H5Cmpio.c. (#3597) * Fix docs for H5Acreate2 and H5Acreate_by_name (#3598) * Use HDoff_t with lseek consistently (#3600) lseek on Windows uses __int64 for both the offset and return type instead of off_t like most POSIX systems. This changes ensures we use HDoff_t (which is typdef'd correctly on Windows) w/ lseek. * Replaces HDgetenv with getenv (#3599) * Develop tools move (#3580) Reorganizes the tools files to support the VOL tests * Clean up Subfiling VFD header doxygen formatting (#3601) * Remove `sh` to run bash script. (#3590) * Correct path name of ddl file to be changed (#3607) * Fix potential uninitialized variable (#3602) Moves a union initialization up a bit so it's performed before code that can jump to the cleanup target, where file descriptors could be checked without being initialized. This could only happen in test code and only in an out-of-memory situation. Fixes Coverity 1542254 * Remove unnecessary assignment in test generator (#3603) Fixes what looks like a copy/paste/modify error in the format convert test file generator, where an array element is assigned one value and them immediately overwritten by another value. Fixes Coverity issue 1542285 * Remove useless define TRUE/FALSE statements. (#3604) * Fix typo behaviour and dependes. (#3605) * Fix typos (#3609) * Fixed unused variable in H5CS.c (#3552) (#3612) * Fixed #3552 * Fix grammar (#3614) * Cleanup unused statements (#3553) (#3617) Removed unnecessary assert statements and noise comments. * Fix Intel oneAPI icc warning (#3619) * Fix several spelling/grammar issues (#3621) * Add HPC CDash to README.md (#3623) * Disable static + thread-safe on Windows w/ CMake (#3622) The thread-safety feature on Windows requires a hook in DllMain() and thus is only available when HDF5 is built as a shared library. This was previously a warning, but has now been elevated to a fatal error that cannot be overridden with ALLOW_UNSUPPORTED. Fixes GitHub #3613 * Remove unused member from H5D_shared_t struct. (#3628) * Remove old EXTERNALPROJECT_ADD in favor of FETCH_CONTENT (#3624) * Fix grammar (#3635) * Disambiguate error output messages. (#3634) * Disambiguate error output messages. * Address @brtnfld review. * Fail CMake on Windows when sub-filing VFD is enabled (#3636) * Improve consistency in past tense usage (#3638) * Split out test logic to separate file (#3639) * Drop MPI-2 support (#3643) * Switch IEEE flags for NAG Fortran (#3644) Default is -ieee=stop, which causes problems when the H5T module performs floating-point type introspection. The new mode is -ieee=full * Remove 1.10.11 info from README.md (#3646) * Fixes GH#1027 compilation error (#3654) * Remove 1.10 badge (#3650) * Use real URLs and updated names for plugins (#3651) * synchronize TGZ naming convention/usage * Update parallel compression feature to support multi-dataset I/O (#3591) * Add more tests for selection I/O. (#3528) * Adjust 1.14 files after merging ---------
1863 lines
69 KiB
C
1863 lines
69 KiB
C
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Copyright by The HDF Group. *
|
|
* All rights reserved. *
|
|
* *
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
* terms governing use, modification, and redistribution, is contained in *
|
|
* the COPYING file, which can be found at the root of the source code *
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
|
* If you do not have access to either file, you may request a copy from *
|
|
* help@hdfgroup.org. *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
/***********************************************************
|
|
*
|
|
* Test program: trefer_deprec
|
|
*
|
|
* Test the Reference functionality
|
|
*
|
|
*************************************************************/
|
|
|
|
#include "testhdf5.h"
|
|
|
|
#define FILE1 "trefer1.h5"
|
|
#define FILE2 "trefer2.h5"
|
|
#define FILE3 "trefer3.h5"
|
|
|
|
/* 1-D dataset with fixed dimensions */
|
|
#define SPACE1_RANK 1
|
|
#define SPACE1_DIM1 4
|
|
|
|
/* 2-D dataset with fixed dimensions */
|
|
#define SPACE2_RANK 2
|
|
#define SPACE2_DIM1 10
|
|
#define SPACE2_DIM2 10
|
|
|
|
/* Larger 1-D dataset with fixed dimensions */
|
|
#define SPACE3_RANK 1
|
|
#define SPACE3_DIM1 100
|
|
|
|
/* Element selection information */
|
|
#define POINT1_NPOINTS 10
|
|
|
|
/* Compound datatype */
|
|
typedef struct s1_t {
|
|
unsigned int a;
|
|
unsigned int b;
|
|
float c;
|
|
} s1_t;
|
|
|
|
#define GROUPNAME "/group"
|
|
#define GROUPNAME2 "group2"
|
|
#define GROUPNAME3 "group3"
|
|
#define DSETNAME "/dset"
|
|
#define DSETNAME2 "dset2"
|
|
#define NAME_SIZE 16
|
|
|
|
/****************************************************************
|
|
**
|
|
** test_reference_params(): Test basic H5R (reference) parameters
|
|
** for correct processing
|
|
**
|
|
****************************************************************/
|
|
static void
|
|
test_reference_params(void)
|
|
{
|
|
hid_t fid1; /* HDF5 File IDs */
|
|
hid_t dataset, /* Dataset ID */
|
|
dset2; /* Dereferenced dataset ID */
|
|
hid_t group; /* Group ID */
|
|
hid_t sid1; /* Dataspace ID */
|
|
hid_t tid1; /* Datatype ID */
|
|
hid_t dapl_id; /* Dataset access property list */
|
|
hsize_t dims1[] = {SPACE1_DIM1};
|
|
hobj_ref_t *wbuf, /* buffer to write to disk */
|
|
*rbuf, /* buffer read from disk */
|
|
*tbuf; /* temp. buffer read from disk */
|
|
unsigned *tu32; /* Temporary pointer to uint32 data */
|
|
int i; /* counting variables */
|
|
const char *write_comment = "Foo!"; /* Comments for group */
|
|
hid_t ret_id; /* Generic hid_t return value */
|
|
ssize_t name_size; /* Size of reference name */
|
|
herr_t ret; /* Generic return value */
|
|
|
|
/* Output message about test being performed */
|
|
MESSAGE(5, ("Testing Reference Parameters\n"));
|
|
|
|
/* Allocate write & read buffers */
|
|
wbuf = (hobj_ref_t *)malloc(MAX(sizeof(unsigned), sizeof(hobj_ref_t)) * SPACE1_DIM1);
|
|
CHECK_PTR(wbuf, "malloc");
|
|
rbuf = (hobj_ref_t *)malloc(MAX(sizeof(unsigned), sizeof(hobj_ref_t)) * SPACE1_DIM1);
|
|
CHECK_PTR(rbuf, "malloc");
|
|
tbuf = (hobj_ref_t *)malloc(MAX(sizeof(unsigned), sizeof(hobj_ref_t)) * SPACE1_DIM1);
|
|
CHECK_PTR(tbuf, "malloc");
|
|
|
|
/* Create file */
|
|
fid1 = H5Fcreate(FILE1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(fid1, FAIL, "H5Fcreate");
|
|
|
|
/* Create dataspace for datasets */
|
|
sid1 = H5Screate_simple(SPACE1_RANK, dims1, NULL);
|
|
CHECK(sid1, FAIL, "H5Screate_simple");
|
|
|
|
/* Create dataset access property list */
|
|
dapl_id = H5Pcreate(H5P_DATASET_ACCESS);
|
|
CHECK(dapl_id, FAIL, "H5Pcreate");
|
|
|
|
/* Create a group */
|
|
group = H5Gcreate2(fid1, "Group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(group, FAIL, "H5Gcreate2");
|
|
|
|
/* Set group's comment */
|
|
ret = H5Oset_comment(group, write_comment);
|
|
CHECK(ret, FAIL, "H5Oset_comment");
|
|
|
|
/* Create a dataset (inside Group1) */
|
|
dataset = H5Dcreate2(group, "Dataset1", H5T_NATIVE_UINT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
for (tu32 = (unsigned *)wbuf, i = 0; i < SPACE1_DIM1; i++)
|
|
*tu32++ = (unsigned)i * 3;
|
|
|
|
/* Write selection to disk */
|
|
ret = H5Dwrite(dataset, H5T_NATIVE_UINT, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Create another dataset (inside Group1) */
|
|
dataset = H5Dcreate2(group, "Dataset2", H5T_NATIVE_UCHAR, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Create a datatype to refer to */
|
|
tid1 = H5Tcreate(H5T_COMPOUND, sizeof(s1_t));
|
|
CHECK(tid1, FAIL, "H5Tcreate");
|
|
|
|
/* Insert fields */
|
|
ret = H5Tinsert(tid1, "a", HOFFSET(s1_t, a), H5T_NATIVE_INT);
|
|
CHECK(ret, FAIL, "H5Tinsert");
|
|
|
|
ret = H5Tinsert(tid1, "b", HOFFSET(s1_t, b), H5T_NATIVE_INT);
|
|
CHECK(ret, FAIL, "H5Tinsert");
|
|
|
|
ret = H5Tinsert(tid1, "c", HOFFSET(s1_t, c), H5T_NATIVE_FLOAT);
|
|
CHECK(ret, FAIL, "H5Tinsert");
|
|
|
|
/* Save datatype for later */
|
|
ret = H5Tcommit2(group, "Datatype1", tid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Tcommit2");
|
|
|
|
/* Close datatype */
|
|
ret = H5Tclose(tid1);
|
|
CHECK(ret, FAIL, "H5Tclose");
|
|
|
|
/* Close group */
|
|
ret = H5Gclose(group);
|
|
CHECK(ret, FAIL, "H5Gclose");
|
|
|
|
/* Create a dataset */
|
|
dataset = H5Dcreate2(fid1, "Dataset3", H5T_STD_REF_OBJ, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Dcreate2");
|
|
|
|
/* Test parameters to H5Rcreate */
|
|
ret = H5Rcreate(NULL, fid1, "/Group1/Dataset1", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
VERIFY(ret, FAIL, "H5Rcreate ref");
|
|
ret = H5Rcreate(&wbuf[0], (hid_t)H5I_INVALID_HID, "/Group1/Dataset1", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
VERIFY(ret, FAIL, "H5Rcreate loc_id");
|
|
ret = H5Rcreate(&wbuf[0], fid1, NULL, H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
VERIFY(ret, FAIL, "H5Rcreate name");
|
|
ret = H5Rcreate(&wbuf[0], fid1, "", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
VERIFY(ret, FAIL, "H5Rcreate null name");
|
|
ret = H5Rcreate(&wbuf[0], fid1, "/Group1/Dataset1", H5R_MAXTYPE, (hid_t)H5I_INVALID_HID);
|
|
VERIFY(ret, FAIL, "H5Rcreate type");
|
|
ret = H5Rcreate(&wbuf[0], fid1, "/Group1/Dataset1", H5R_DATASET_REGION, (hid_t)H5I_INVALID_HID);
|
|
VERIFY(ret, FAIL, "H5Rcreate region space");
|
|
ret = H5Rcreate(&wbuf[0], fid1, "/Group1/Dataset1", H5R_MAXTYPE, (hid_t)0);
|
|
VERIFY(ret, FAIL, "H5Rcreate space");
|
|
|
|
/* Test parameters to H5Rdereference */
|
|
dset2 = H5Rdereference2((hid_t)H5I_INVALID_HID, H5P_DEFAULT, H5R_OBJECT, &rbuf[0]);
|
|
VERIFY(dset2, FAIL, "H5Rdereference2 loc_id");
|
|
dset2 = H5Rdereference2(dataset, (hid_t)H5I_INVALID_HID, H5R_OBJECT, &rbuf[0]);
|
|
VERIFY(dset2, FAIL, "H5Rdereference2 oapl_id");
|
|
dset2 = H5Rdereference2(dataset, dapl_id, H5R_OBJECT, NULL);
|
|
VERIFY(dset2, FAIL, "H5Rdereference2 ref");
|
|
dset2 = H5Rdereference2(dataset, dapl_id, H5R_MAXTYPE, &rbuf[0]);
|
|
VERIFY(dset2, FAIL, "H5Rdereference2 type");
|
|
|
|
/* Test parameters to H5Rget_obj_type2 */
|
|
ret = H5Rget_obj_type2((hid_t)H5I_INVALID_HID, H5R_OBJECT, &rbuf[0], NULL);
|
|
VERIFY(ret, FAIL, "H5Rget_obj_type2 loc_id");
|
|
ret = H5Rget_obj_type2(fid1, H5R_OBJECT, NULL, NULL);
|
|
VERIFY(ret, FAIL, "H5Rget_obj_type2 ref");
|
|
ret = H5Rget_obj_type2(fid1, H5R_MAXTYPE, &rbuf[0], NULL);
|
|
VERIFY(ret, FAIL, "H5Rget_obj_type2 type");
|
|
|
|
/* Test parameters to H5Rget_name */
|
|
name_size = H5Rget_name((hid_t)H5I_INVALID_HID, H5R_DATASET_REGION, &rbuf[0], NULL, 0);
|
|
VERIFY(name_size, FAIL, "H5Rget_name loc_id");
|
|
name_size = H5Rget_name(fid1, H5R_DATASET_REGION, NULL, NULL, 0);
|
|
VERIFY(name_size, FAIL, "H5Rget_name ref");
|
|
name_size = H5Rget_name(fid1, H5R_MAXTYPE, &rbuf[0], NULL, 0);
|
|
VERIFY(name_size, FAIL, "H5Rget_name type");
|
|
|
|
/* Test parameters to H5Rget_region */
|
|
ret_id = H5Rget_region((hid_t)H5I_INVALID_HID, H5R_OBJECT, &rbuf[0]);
|
|
VERIFY(ret_id, FAIL, "H5Rget_region loc_id");
|
|
ret_id = H5Rget_region(fid1, H5R_OBJECT, NULL);
|
|
VERIFY(ret_id, FAIL, "H5Rget_region ref");
|
|
ret_id = H5Rget_region(fid1, H5R_OBJECT, &rbuf[0]);
|
|
VERIFY(ret_id, FAIL, "H5Rget_region type");
|
|
|
|
/* Close disk dataspace */
|
|
ret = H5Sclose(sid1);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close dataset access property list */
|
|
ret = H5Pclose(dapl_id);
|
|
CHECK(ret, FAIL, "H5Pclose");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Free memory buffers */
|
|
free(wbuf);
|
|
free(rbuf);
|
|
free(tbuf);
|
|
} /* test_reference_obj() */
|
|
|
|
/****************************************************************
|
|
**
|
|
** test_reference_obj(): Test basic H5R (reference) object reference code.
|
|
** Tests references to various kinds of objects
|
|
**
|
|
****************************************************************/
|
|
static void
|
|
test_reference_obj(void)
|
|
{
|
|
hid_t fid1; /* HDF5 File IDs */
|
|
hid_t dataset, /* Dataset ID */
|
|
dset2; /* Dereferenced dataset ID */
|
|
hid_t group; /* Group ID */
|
|
hid_t sid1; /* Dataspace ID */
|
|
hid_t tid1; /* Datatype ID */
|
|
hsize_t dims1[] = {SPACE1_DIM1};
|
|
hid_t dapl_id; /* Dataset access property list */
|
|
hobj_ref_t *wbuf, /* buffer to write to disk */
|
|
*rbuf, /* buffer read from disk */
|
|
*tbuf; /* temp. buffer read from disk */
|
|
hobj_ref_t nvrbuf[3] = {0, 101, 1000000000}; /* buffer with non-valid refs */
|
|
unsigned *tu32; /* Temporary pointer to uint32 data */
|
|
int i, j; /* counting variables */
|
|
const char *write_comment = "Foo!"; /* Comments for group */
|
|
char read_comment[10];
|
|
H5O_type_t obj_type; /* Object type */
|
|
ssize_t size; /* Comment length */
|
|
herr_t ret; /* Generic return value */
|
|
|
|
/* Output message about test being performed */
|
|
MESSAGE(5, ("Testing Object Reference Functions\n"));
|
|
|
|
/* Allocate write & read buffers */
|
|
wbuf = (hobj_ref_t *)malloc(MAX(sizeof(unsigned), sizeof(hobj_ref_t)) * SPACE1_DIM1);
|
|
CHECK_PTR(wbuf, "malloc");
|
|
rbuf = (hobj_ref_t *)malloc(MAX(sizeof(unsigned), sizeof(hobj_ref_t)) * SPACE1_DIM1);
|
|
CHECK_PTR(rbuf, "malloc");
|
|
tbuf = (hobj_ref_t *)malloc(MAX(sizeof(unsigned), sizeof(hobj_ref_t)) * SPACE1_DIM1);
|
|
CHECK_PTR(tbuf, "malloc");
|
|
|
|
/* Create file */
|
|
fid1 = H5Fcreate(FILE1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(fid1, FAIL, "H5Fcreate");
|
|
|
|
/* Create dataspace for datasets */
|
|
sid1 = H5Screate_simple(SPACE1_RANK, dims1, NULL);
|
|
CHECK(sid1, FAIL, "H5Screate_simple");
|
|
|
|
/* Create dataset access property list */
|
|
dapl_id = H5Pcreate(H5P_DATASET_ACCESS);
|
|
CHECK(dapl_id, FAIL, "H5Pcreate");
|
|
|
|
/* Create a group */
|
|
group = H5Gcreate2(fid1, "Group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(group, FAIL, "H5Gcreate2");
|
|
|
|
/* Set group's comment */
|
|
ret = H5Oset_comment(group, write_comment);
|
|
CHECK(ret, FAIL, "H5Oset_comment");
|
|
|
|
/* Create a dataset (inside Group1) */
|
|
dataset = H5Dcreate2(group, "Dataset1", H5T_NATIVE_UINT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
for (tu32 = (unsigned *)wbuf, i = 0; i < SPACE1_DIM1; i++)
|
|
*tu32++ = (unsigned)i * 3;
|
|
|
|
/* Write selection to disk */
|
|
ret = H5Dwrite(dataset, H5T_NATIVE_UINT, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Create another dataset (inside Group1) */
|
|
dataset = H5Dcreate2(group, "Dataset2", H5T_NATIVE_UCHAR, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Create a datatype to refer to */
|
|
tid1 = H5Tcreate(H5T_COMPOUND, sizeof(s1_t));
|
|
CHECK(tid1, FAIL, "H5Tcreate");
|
|
|
|
/* Insert fields */
|
|
ret = H5Tinsert(tid1, "a", HOFFSET(s1_t, a), H5T_NATIVE_INT);
|
|
CHECK(ret, FAIL, "H5Tinsert");
|
|
|
|
ret = H5Tinsert(tid1, "b", HOFFSET(s1_t, b), H5T_NATIVE_INT);
|
|
CHECK(ret, FAIL, "H5Tinsert");
|
|
|
|
ret = H5Tinsert(tid1, "c", HOFFSET(s1_t, c), H5T_NATIVE_FLOAT);
|
|
CHECK(ret, FAIL, "H5Tinsert");
|
|
|
|
/* Save datatype for later */
|
|
ret = H5Tcommit2(group, "Datatype1", tid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Tcommit2");
|
|
|
|
/* Close datatype */
|
|
ret = H5Tclose(tid1);
|
|
CHECK(ret, FAIL, "H5Tclose");
|
|
|
|
/* Close group */
|
|
ret = H5Gclose(group);
|
|
CHECK(ret, FAIL, "H5Gclose");
|
|
|
|
/* Create a dataset */
|
|
dataset = H5Dcreate2(fid1, "Dataset3", H5T_STD_REF_OBJ, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
/* Create reference to dataset */
|
|
ret = H5Rcreate(&wbuf[0], fid1, "/Group1/Dataset1", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
ret = H5Rget_obj_type2(dataset, H5R_OBJECT, &wbuf[0], &obj_type);
|
|
CHECK(ret, FAIL, "H5Rget_obj_type2");
|
|
VERIFY(obj_type, H5O_TYPE_DATASET, "H5Rget_obj_type2");
|
|
|
|
/* Create reference to dataset */
|
|
ret = H5Rcreate(&wbuf[1], fid1, "/Group1/Dataset2", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
ret = H5Rget_obj_type2(dataset, H5R_OBJECT, &wbuf[1], &obj_type);
|
|
CHECK(ret, FAIL, "H5Rget_obj_type2");
|
|
VERIFY(obj_type, H5O_TYPE_DATASET, "H5Rget_obj_type2");
|
|
|
|
/* Create reference to group */
|
|
ret = H5Rcreate(&wbuf[2], fid1, "/Group1", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
ret = H5Rget_obj_type2(dataset, H5R_OBJECT, &wbuf[2], &obj_type);
|
|
CHECK(ret, FAIL, "H5Rget_obj_type2");
|
|
VERIFY(obj_type, H5O_TYPE_GROUP, "H5Rget_obj_type2");
|
|
|
|
/* Create reference to named datatype */
|
|
ret = H5Rcreate(&wbuf[3], fid1, "/Group1/Datatype1", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
ret = H5Rget_obj_type2(dataset, H5R_OBJECT, &wbuf[3], &obj_type);
|
|
CHECK(ret, FAIL, "H5Rget_obj_type2");
|
|
VERIFY(obj_type, H5O_TYPE_NAMED_DATATYPE, "H5Rget_obj_type2");
|
|
|
|
/* Write selection to disk */
|
|
ret = H5Dwrite(dataset, H5T_STD_REF_OBJ, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/* Close disk dataspace */
|
|
ret = H5Sclose(sid1);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Re-open the file */
|
|
fid1 = H5Fopen(FILE1, H5F_ACC_RDWR, H5P_DEFAULT);
|
|
CHECK(fid1, FAIL, "H5Fopen");
|
|
|
|
/* Open the dataset */
|
|
dataset = H5Dopen2(fid1, "/Dataset3", H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dopen2");
|
|
|
|
/* Read selection from disk */
|
|
ret = H5Dread(dataset, H5T_STD_REF_OBJ, H5S_ALL, H5S_ALL, H5P_DEFAULT, rbuf);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
/* Open dataset object */
|
|
dset2 = H5Rdereference2(dataset, dapl_id, H5R_OBJECT, &rbuf[0]);
|
|
CHECK(dset2, FAIL, "H5Rdereference2");
|
|
|
|
/* Check information in referenced dataset */
|
|
sid1 = H5Dget_space(dset2);
|
|
CHECK(sid1, FAIL, "H5Dget_space");
|
|
|
|
ret = (int)H5Sget_simple_extent_npoints(sid1);
|
|
VERIFY(ret, 4, "H5Sget_simple_extent_npoints");
|
|
|
|
/* Read from disk */
|
|
ret = H5Dread(dset2, H5T_NATIVE_UINT, H5S_ALL, H5S_ALL, H5P_DEFAULT, tbuf);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
for (tu32 = (unsigned *)tbuf, i = 0; i < SPACE1_DIM1; i++, tu32++)
|
|
VERIFY(*tu32, (uint32_t)(i * 3), "Data");
|
|
|
|
/* Close dereferenced Dataset */
|
|
ret = H5Dclose(dset2);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Open group object. GAPL isn't supported yet. But it's harmless to pass in */
|
|
group = H5Rdereference2(dataset, H5P_DEFAULT, H5R_OBJECT, &rbuf[2]);
|
|
CHECK(group, FAIL, "H5Rdereference2");
|
|
|
|
/* Get group's comment */
|
|
size = H5Oget_comment(group, read_comment, (size_t)10);
|
|
CHECK(size, FAIL, "H5Oget_comment");
|
|
|
|
/* Check for correct comment value */
|
|
if (strcmp(write_comment, read_comment) != 0)
|
|
TestErrPrintf("Error! Incorrect group comment, wanted: %s, got: %s\n", write_comment, read_comment);
|
|
|
|
/* Close group */
|
|
ret = H5Gclose(group);
|
|
CHECK(ret, FAIL, "H5Gclose");
|
|
|
|
/* Open datatype object. TAPL isn't supported yet. But it's harmless to pass in */
|
|
tid1 = H5Rdereference2(dataset, H5P_DEFAULT, H5R_OBJECT, &rbuf[3]);
|
|
CHECK(tid1, FAIL, "H5Rdereference2");
|
|
|
|
/* Verify correct datatype */
|
|
{
|
|
H5T_class_t tclass;
|
|
|
|
tclass = H5Tget_class(tid1);
|
|
VERIFY(tclass, H5T_COMPOUND, "H5Tget_class");
|
|
|
|
ret = H5Tget_nmembers(tid1);
|
|
VERIFY(ret, 3, "H5Tget_nmembers");
|
|
}
|
|
|
|
/* Attempting to retrieve type of object using non-valid refs */
|
|
for (j = 0; j < 3; j++) {
|
|
H5E_BEGIN_TRY
|
|
{
|
|
ret = H5Rget_obj_type2(dataset, H5R_OBJECT, &nvrbuf[j], &obj_type);
|
|
}
|
|
H5E_END_TRY
|
|
VERIFY(ret, FAIL, "H5Rget_obj_type2");
|
|
} /* end for */
|
|
|
|
/* Close datatype */
|
|
ret = H5Tclose(tid1);
|
|
CHECK(ret, FAIL, "H5Tclose");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close dataset access property list */
|
|
ret = H5Pclose(dapl_id);
|
|
CHECK(ret, FAIL, "H5Pclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Free memory buffers */
|
|
free(wbuf);
|
|
free(rbuf);
|
|
free(tbuf);
|
|
} /* test_reference_obj() */
|
|
|
|
/****************************************************************
|
|
**
|
|
** test_reference_region(): Test basic H5R (reference) object reference code.
|
|
** Tests references to various kinds of objects
|
|
**
|
|
** Note: The libver_low/libver_high parameters are added to create the file
|
|
** with the low and high bounds setting in fapl.
|
|
** Please see the RFC for "H5Sencode/H5Sdecode Format Change".
|
|
**
|
|
****************************************************************/
|
|
static void
|
|
test_reference_region(H5F_libver_t libver_low, H5F_libver_t libver_high)
|
|
{
|
|
hid_t fid1; /* HDF5 File IDs */
|
|
hid_t fapl = H5I_INVALID_HID; /* File access property list */
|
|
hid_t dset1, /* Dataset ID */
|
|
dset2; /* Dereferenced dataset ID */
|
|
hid_t sid1, /* Dataspace ID #1 */
|
|
sid2; /* Dataspace ID #2 */
|
|
hid_t dapl_id; /* Dataset access property list */
|
|
hsize_t dims1[] = {SPACE1_DIM1}, dims2[] = {SPACE2_DIM1, SPACE2_DIM2};
|
|
hsize_t start[SPACE2_RANK]; /* Starting location of hyperslab */
|
|
hsize_t stride[SPACE2_RANK]; /* Stride of hyperslab */
|
|
hsize_t count[SPACE2_RANK]; /* Element count of hyperslab */
|
|
hsize_t block[SPACE2_RANK]; /* Block size of hyperslab */
|
|
hsize_t coord1[POINT1_NPOINTS][SPACE2_RANK]; /* Coordinates for point selection */
|
|
hsize_t *coords; /* Coordinate buffer */
|
|
hsize_t low[SPACE2_RANK]; /* Selection bounds */
|
|
hsize_t high[SPACE2_RANK]; /* Selection bounds */
|
|
hdset_reg_ref_t *wbuf, /* buffer to write to disk */
|
|
*rbuf; /* buffer read from disk */
|
|
hdset_reg_ref_t nvrbuf[3] = {{{0}}, {{101}}, {{255}}}; /* buffer with non-valid refs */
|
|
uint8_t *dwbuf, /* Buffer for writing numeric data to disk */
|
|
*drbuf; /* Buffer for reading numeric data from disk */
|
|
uint8_t *tu8; /* Temporary pointer to uint8 data */
|
|
H5O_type_t obj_type; /* Type of object */
|
|
int i, j; /* counting variables */
|
|
hssize_t hssize_ret; /* hssize_t return value */
|
|
htri_t tri_ret; /* htri_t return value */
|
|
herr_t ret; /* Generic return value */
|
|
hdset_reg_ref_t undef_reg[1]; /* test for undefined reference */
|
|
hid_t dset_NA; /* Dataset id for undefined reference */
|
|
hid_t space_NA; /* Dataspace id for undefined reference */
|
|
hsize_t dims_NA[1] = {1}; /* Dims array for undefined reference */
|
|
hdset_reg_ref_t wdata_NA[1], /* Write buffer */
|
|
rdata_NA[1]; /* Read buffer */
|
|
|
|
/* Output message about test being performed */
|
|
MESSAGE(5, ("Testing Dataset Region Reference Functions\n"));
|
|
|
|
/* Allocate write & read buffers */
|
|
wbuf = (hdset_reg_ref_t *)calloc(sizeof(hdset_reg_ref_t), (size_t)SPACE1_DIM1);
|
|
rbuf = (hdset_reg_ref_t *)malloc(sizeof(hdset_reg_ref_t) * SPACE1_DIM1);
|
|
dwbuf = (uint8_t *)malloc(sizeof(uint8_t) * SPACE2_DIM1 * SPACE2_DIM2);
|
|
drbuf = (uint8_t *)calloc(sizeof(uint8_t), (size_t)(SPACE2_DIM1 * SPACE2_DIM2));
|
|
|
|
/* Create file access property list */
|
|
fapl = H5Pcreate(H5P_FILE_ACCESS);
|
|
CHECK(fapl, FAIL, "H5Pcreate");
|
|
|
|
/* Set the low/high version bounds in fapl */
|
|
ret = H5Pset_libver_bounds(fapl, libver_low, libver_high);
|
|
CHECK(ret, FAIL, "H5Pset_libver_bounds");
|
|
|
|
/* Create file with the fapl */
|
|
fid1 = H5Fcreate(FILE2, H5F_ACC_TRUNC, H5P_DEFAULT, fapl);
|
|
CHECK(fid1, FAIL, "H5Fcreate");
|
|
|
|
/* Create dataspace for datasets */
|
|
sid2 = H5Screate_simple(SPACE2_RANK, dims2, NULL);
|
|
CHECK(sid2, FAIL, "H5Screate_simple");
|
|
|
|
/* Create dataset access property list */
|
|
dapl_id = H5Pcreate(H5P_DATASET_ACCESS);
|
|
CHECK(dapl_id, FAIL, "H5Pcreate");
|
|
|
|
/* Create a dataset */
|
|
dset2 = H5Dcreate2(fid1, "Dataset2", H5T_STD_U8LE, sid2, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dset2, FAIL, "H5Dcreate2");
|
|
|
|
for (tu8 = dwbuf, i = 0; i < (SPACE2_DIM1 * SPACE2_DIM2); i++)
|
|
*tu8++ = (uint8_t)(i * 3);
|
|
|
|
/* Write selection to disk */
|
|
ret = H5Dwrite(dset2, H5T_STD_U8LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, dwbuf);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dset2);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Create dataspace for the reference dataset */
|
|
sid1 = H5Screate_simple(SPACE1_RANK, dims1, NULL);
|
|
CHECK(sid1, FAIL, "H5Screate_simple");
|
|
|
|
/* Create a dataset */
|
|
dset1 = H5Dcreate2(fid1, "Dataset1", H5T_STD_REF_DSETREG, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dset1, FAIL, "H5Dcreate2");
|
|
|
|
/* Create references */
|
|
|
|
/* Select 6x6 hyperslab for first reference */
|
|
start[0] = 2;
|
|
start[1] = 2;
|
|
stride[0] = 1;
|
|
stride[1] = 1;
|
|
count[0] = 1;
|
|
count[1] = 1;
|
|
block[0] = 6;
|
|
block[1] = 6;
|
|
ret = H5Sselect_hyperslab(sid2, H5S_SELECT_SET, start, stride, count, block);
|
|
CHECK(ret, FAIL, "H5Sselect_hyperslab");
|
|
|
|
ret = (int)H5Sget_select_npoints(sid2);
|
|
VERIFY(ret, 36, "H5Sget_select_npoints");
|
|
|
|
/* Store first dataset region */
|
|
ret = H5Rcreate(&wbuf[0], fid1, "/Dataset2", H5R_DATASET_REGION, sid2);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
ret = H5Rget_obj_type2(dset1, H5R_DATASET_REGION, &wbuf[0], &obj_type);
|
|
CHECK(ret, FAIL, "H5Rget_obj_type2");
|
|
VERIFY(obj_type, H5O_TYPE_DATASET, "H5Rget_obj_type2");
|
|
|
|
/* Select sequence of ten points for second reference */
|
|
coord1[0][0] = 6;
|
|
coord1[0][1] = 9;
|
|
coord1[1][0] = 2;
|
|
coord1[1][1] = 2;
|
|
coord1[2][0] = 8;
|
|
coord1[2][1] = 4;
|
|
coord1[3][0] = 1;
|
|
coord1[3][1] = 6;
|
|
coord1[4][0] = 2;
|
|
coord1[4][1] = 8;
|
|
coord1[5][0] = 3;
|
|
coord1[5][1] = 2;
|
|
coord1[6][0] = 0;
|
|
coord1[6][1] = 4;
|
|
coord1[7][0] = 9;
|
|
coord1[7][1] = 0;
|
|
coord1[8][0] = 7;
|
|
coord1[8][1] = 1;
|
|
coord1[9][0] = 3;
|
|
coord1[9][1] = 3;
|
|
ret = H5Sselect_elements(sid2, H5S_SELECT_SET, (size_t)POINT1_NPOINTS, (const hsize_t *)coord1);
|
|
CHECK(ret, FAIL, "H5Sselect_elements");
|
|
|
|
ret = (int)H5Sget_select_npoints(sid2);
|
|
VERIFY(ret, 10, "H5Sget_select_npoints");
|
|
|
|
/* Store second dataset region */
|
|
ret = H5Rcreate(&wbuf[1], fid1, "/Dataset2", H5R_DATASET_REGION, sid2);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
/* Select unlimited hyperslab for third reference */
|
|
start[0] = 1;
|
|
start[1] = 8;
|
|
stride[0] = 4;
|
|
stride[1] = 1;
|
|
count[0] = H5S_UNLIMITED;
|
|
count[1] = 1;
|
|
block[0] = 2;
|
|
block[1] = 2;
|
|
ret = H5Sselect_hyperslab(sid2, H5S_SELECT_SET, start, stride, count, block);
|
|
CHECK(ret, FAIL, "H5Sselect_hyperslab");
|
|
|
|
hssize_ret = H5Sget_select_npoints(sid2);
|
|
VERIFY(hssize_ret, (hssize_t)H5S_UNLIMITED, "H5Sget_select_npoints");
|
|
|
|
/* Store third dataset region */
|
|
H5E_BEGIN_TRY
|
|
{
|
|
ret = H5Rcreate(&wbuf[2], fid1, "/Dataset2", H5R_DATASET_REGION, sid2);
|
|
}
|
|
H5E_END_TRY
|
|
|
|
if (libver_high < H5F_LIBVER_V110)
|
|
VERIFY(ret, FAIL, "H5Rcreate");
|
|
else
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
ret = H5Rget_obj_type2(dset1, H5R_DATASET_REGION, &wbuf[0], &obj_type);
|
|
CHECK(ret, FAIL, "H5Rget_obj_type2");
|
|
VERIFY(obj_type, H5O_TYPE_DATASET, "H5Rget_obj_type2");
|
|
|
|
/* Write selection to disk */
|
|
ret = H5Dwrite(dset1, H5T_STD_REF_DSETREG, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/*
|
|
* Store a dataset region reference which will not get written to disk
|
|
*/
|
|
|
|
/* Create reference to an element in dset1 */
|
|
ret = H5Sselect_elements(sid2, H5S_SELECT_SET, (size_t)1, (const hsize_t *)coord1);
|
|
CHECK(ret, FAIL, "H5Sselect_elements");
|
|
ret = H5Rcreate(&wdata_NA[0], fid1, "/Dataset1", H5R_DATASET_REGION, sid2);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
/* Create the dataspace of the region references */
|
|
space_NA = H5Screate_simple(1, dims_NA, NULL);
|
|
CHECK(space_NA, FAIL, "H5Screate_simple");
|
|
|
|
/* Create the dataset and write the region references to it */
|
|
dset_NA = H5Dcreate2(fid1, "DS_NA", H5T_STD_REF_DSETREG, space_NA, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dset_NA, FAIL, "H5Dcreate");
|
|
|
|
/* Close and release resources for undefined region reference tests */
|
|
ret = H5Dclose(dset_NA);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
ret = H5Sclose(space_NA);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close disk dataspace */
|
|
ret = H5Sclose(sid1);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dset1);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close uint8 dataset dataspace */
|
|
ret = H5Sclose(sid2);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Re-open the file */
|
|
fid1 = H5Fopen(FILE2, H5F_ACC_RDWR, fapl);
|
|
CHECK(fid1, FAIL, "H5Fopen");
|
|
|
|
/*
|
|
* Start the test of an undefined reference
|
|
*/
|
|
|
|
/* Open the dataset of the undefined references */
|
|
dset_NA = H5Dopen2(fid1, "DS_NA", H5P_DEFAULT);
|
|
CHECK(dset_NA, FAIL, "H5Dopen2");
|
|
|
|
/* Read the data */
|
|
ret = H5Dread(dset_NA, H5T_STD_REF_DSETREG, H5S_ALL, H5S_ALL, H5P_DEFAULT, rdata_NA);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
/*
|
|
* Dereference an undefined reference (should fail)
|
|
*/
|
|
H5E_BEGIN_TRY
|
|
{
|
|
dset2 = H5Rdereference2(dset_NA, H5P_DEFAULT, H5R_DATASET_REGION, &rdata_NA[0]);
|
|
}
|
|
H5E_END_TRY
|
|
VERIFY(dset2, FAIL, "H5Rdereference2");
|
|
|
|
/* Close and release resources. */
|
|
ret = H5Dclose(dset_NA);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* This close should fail since H5Rdereference2 never created
|
|
* the id of the referenced object. */
|
|
H5E_BEGIN_TRY
|
|
{
|
|
ret = H5Dclose(dset2);
|
|
}
|
|
H5E_END_TRY
|
|
VERIFY(ret, FAIL, "H5Dclose");
|
|
|
|
/*
|
|
* End the test of an undefined reference
|
|
*/
|
|
|
|
/* Open the dataset */
|
|
dset1 = H5Dopen2(fid1, "/Dataset1", H5P_DEFAULT);
|
|
CHECK(dset1, FAIL, "H5Dopen2");
|
|
|
|
/* Read selection from disk */
|
|
ret = H5Dread(dset1, H5T_STD_REF_DSETREG, H5S_ALL, H5S_ALL, H5P_DEFAULT, rbuf);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
/* Try to read an unaddressed dataset */
|
|
memset(&undef_reg, 0, sizeof(undef_reg));
|
|
dset2 = H5Rdereference2(dset1, dapl_id, H5R_DATASET_REGION, undef_reg);
|
|
VERIFY(dset2, FAIL, "H5Rdereference2 haddr_undef");
|
|
|
|
/* Try to open objects */
|
|
dset2 = H5Rdereference2(dset1, dapl_id, H5R_DATASET_REGION, &rbuf[0]);
|
|
CHECK(dset2, FAIL, "H5Rdereference2");
|
|
|
|
/* Check what H5Rget_obj_type2 function returns */
|
|
ret = H5Rget_obj_type2(dset1, H5R_DATASET_REGION, &rbuf[0], &obj_type);
|
|
CHECK(ret, FAIL, "H5Rget_obj_type2");
|
|
VERIFY(obj_type, H5O_TYPE_DATASET, "H5Rget_obj_type2");
|
|
|
|
/* Check information in referenced dataset */
|
|
sid1 = H5Dget_space(dset2);
|
|
CHECK(sid1, FAIL, "H5Dget_space");
|
|
|
|
ret = (int)H5Sget_simple_extent_npoints(sid1);
|
|
VERIFY(ret, 100, "H5Sget_simple_extent_npoints");
|
|
|
|
/* Read from disk */
|
|
ret = H5Dread(dset2, H5T_STD_U8LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, drbuf);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
for (tu8 = (uint8_t *)drbuf, i = 0; i < (SPACE2_DIM1 * SPACE2_DIM2); i++, tu8++)
|
|
VERIFY(*tu8, (uint8_t)(i * 3), "Data");
|
|
|
|
/* Get the hyperslab selection */
|
|
sid2 = H5Rget_region(dset1, H5R_DATASET_REGION, &rbuf[0]);
|
|
CHECK(sid2, FAIL, "H5Rget_region");
|
|
|
|
/* Verify correct hyperslab selected */
|
|
ret = (int)H5Sget_select_npoints(sid2);
|
|
VERIFY(ret, 36, "H5Sget_select_npoints");
|
|
ret = (int)H5Sget_select_hyper_nblocks(sid2);
|
|
VERIFY(ret, 1, "H5Sget_select_hyper_nblocks");
|
|
coords = (hsize_t *)malloc((size_t)ret * SPACE2_RANK * sizeof(hsize_t) *
|
|
2); /* allocate space for the hyperslab blocks */
|
|
ret = H5Sget_select_hyper_blocklist(sid2, (hsize_t)0, (hsize_t)ret, coords);
|
|
CHECK(ret, FAIL, "H5Sget_select_hyper_blocklist");
|
|
VERIFY(coords[0], 2, "Hyperslab Coordinates");
|
|
VERIFY(coords[1], 2, "Hyperslab Coordinates");
|
|
VERIFY(coords[2], 7, "Hyperslab Coordinates");
|
|
VERIFY(coords[3], 7, "Hyperslab Coordinates");
|
|
free(coords);
|
|
ret = H5Sget_select_bounds(sid2, low, high);
|
|
CHECK(ret, FAIL, "H5Sget_select_bounds");
|
|
VERIFY(low[0], 2, "Selection Bounds");
|
|
VERIFY(low[1], 2, "Selection Bounds");
|
|
VERIFY(high[0], 7, "Selection Bounds");
|
|
VERIFY(high[1], 7, "Selection Bounds");
|
|
|
|
/* Close region space */
|
|
ret = H5Sclose(sid2);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Get the element selection */
|
|
sid2 = H5Rget_region(dset1, H5R_DATASET_REGION, &rbuf[1]);
|
|
CHECK(sid2, FAIL, "H5Rget_region");
|
|
|
|
/* Verify correct elements selected */
|
|
ret = (int)H5Sget_select_npoints(sid2);
|
|
VERIFY(ret, 10, "H5Sget_select_npoints");
|
|
ret = (int)H5Sget_select_elem_npoints(sid2);
|
|
VERIFY(ret, 10, "H5Sget_select_elem_npoints");
|
|
coords = (hsize_t *)malloc((size_t)ret * SPACE2_RANK *
|
|
sizeof(hsize_t)); /* allocate space for the element points */
|
|
ret = H5Sget_select_elem_pointlist(sid2, (hsize_t)0, (hsize_t)ret, coords);
|
|
CHECK(ret, FAIL, "H5Sget_select_elem_pointlist");
|
|
VERIFY(coords[0], coord1[0][0], "Element Coordinates");
|
|
VERIFY(coords[1], coord1[0][1], "Element Coordinates");
|
|
VERIFY(coords[2], coord1[1][0], "Element Coordinates");
|
|
VERIFY(coords[3], coord1[1][1], "Element Coordinates");
|
|
VERIFY(coords[4], coord1[2][0], "Element Coordinates");
|
|
VERIFY(coords[5], coord1[2][1], "Element Coordinates");
|
|
VERIFY(coords[6], coord1[3][0], "Element Coordinates");
|
|
VERIFY(coords[7], coord1[3][1], "Element Coordinates");
|
|
VERIFY(coords[8], coord1[4][0], "Element Coordinates");
|
|
VERIFY(coords[9], coord1[4][1], "Element Coordinates");
|
|
VERIFY(coords[10], coord1[5][0], "Element Coordinates");
|
|
VERIFY(coords[11], coord1[5][1], "Element Coordinates");
|
|
VERIFY(coords[12], coord1[6][0], "Element Coordinates");
|
|
VERIFY(coords[13], coord1[6][1], "Element Coordinates");
|
|
VERIFY(coords[14], coord1[7][0], "Element Coordinates");
|
|
VERIFY(coords[15], coord1[7][1], "Element Coordinates");
|
|
VERIFY(coords[16], coord1[8][0], "Element Coordinates");
|
|
VERIFY(coords[17], coord1[8][1], "Element Coordinates");
|
|
VERIFY(coords[18], coord1[9][0], "Element Coordinates");
|
|
VERIFY(coords[19], coord1[9][1], "Element Coordinates");
|
|
free(coords);
|
|
ret = H5Sget_select_bounds(sid2, low, high);
|
|
CHECK(ret, FAIL, "H5Sget_select_bounds");
|
|
VERIFY(low[0], 0, "Selection Bounds");
|
|
VERIFY(low[1], 0, "Selection Bounds");
|
|
VERIFY(high[0], 9, "Selection Bounds");
|
|
VERIFY(high[1], 9, "Selection Bounds");
|
|
|
|
/* Close region space */
|
|
ret = H5Sclose(sid2);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
if (libver_high >= H5F_LIBVER_V110) {
|
|
/* Get the unlimited selection */
|
|
sid2 = H5Rget_region(dset1, H5R_DATASET_REGION, &rbuf[2]);
|
|
CHECK(sid2, FAIL, "H5Rget_region");
|
|
|
|
/* Verify correct hyperslab selected */
|
|
hssize_ret = H5Sget_select_npoints(sid2);
|
|
VERIFY(hssize_ret, (hssize_t)H5S_UNLIMITED, "H5Sget_select_npoints");
|
|
tri_ret = H5Sis_regular_hyperslab(sid2);
|
|
CHECK(tri_ret, FAIL, "H5Sis_regular_hyperslab");
|
|
VERIFY(tri_ret, true, "H5Sis_regular_hyperslab Result");
|
|
ret = H5Sget_regular_hyperslab(sid2, start, stride, count, block);
|
|
CHECK(ret, FAIL, "H5Sget_regular_hyperslab");
|
|
VERIFY(start[0], (hsize_t)1, "Hyperslab Coordinates");
|
|
VERIFY(start[1], (hsize_t)8, "Hyperslab Coordinates");
|
|
VERIFY(stride[0], (hsize_t)4, "Hyperslab Coordinates");
|
|
VERIFY(stride[1], (hsize_t)1, "Hyperslab Coordinates");
|
|
VERIFY(count[0], H5S_UNLIMITED, "Hyperslab Coordinates");
|
|
VERIFY(count[1], (hsize_t)1, "Hyperslab Coordinates");
|
|
VERIFY(block[0], (hsize_t)2, "Hyperslab Coordinates");
|
|
VERIFY(block[1], (hsize_t)2, "Hyperslab Coordinates");
|
|
|
|
/* Close region space */
|
|
ret = H5Sclose(sid2);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
}
|
|
|
|
/* Close first space */
|
|
ret = H5Sclose(sid1);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close dereferenced Dataset */
|
|
ret = H5Dclose(dset2);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Attempting to retrieve type of object using non-valid refs */
|
|
for (j = 0; j < 3; j++) {
|
|
H5E_BEGIN_TRY
|
|
{
|
|
ret = H5Rget_obj_type2(dset1, H5R_DATASET_REGION, &nvrbuf[j], &obj_type);
|
|
}
|
|
H5E_END_TRY
|
|
VERIFY(ret, FAIL, "H5Rget_obj_type2");
|
|
} /* end for */
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dset1);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close dataset access property list */
|
|
ret = H5Pclose(dapl_id);
|
|
CHECK(ret, FAIL, "H5Pclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Free memory buffers */
|
|
free(wbuf);
|
|
free(rbuf);
|
|
free(dwbuf);
|
|
free(drbuf);
|
|
} /* test_reference_region() */
|
|
|
|
/****************************************************************
|
|
**
|
|
** test_reference_region_1D(): Test H5R (reference) object reference code.
|
|
** Tests 1-D references to various kinds of objects
|
|
**
|
|
** Note: The libver_low/libver_high parameters are added to create the file
|
|
** with the low and high bounds setting in fapl.
|
|
** Please see the RFC for "H5Sencode/H5Sdecode Format Change".
|
|
**
|
|
****************************************************************/
|
|
static void
|
|
test_reference_region_1D(H5F_libver_t libver_low, H5F_libver_t libver_high)
|
|
{
|
|
hid_t fid1; /* HDF5 File IDs */
|
|
hid_t fapl = H5I_INVALID_HID; /* File access property list */
|
|
hid_t dset1, /* Dataset ID */
|
|
dset3; /* Dereferenced dataset ID */
|
|
hid_t sid1, /* Dataspace ID #1 */
|
|
sid3; /* Dataspace ID #3 */
|
|
hid_t dapl_id; /* Dataset access property list */
|
|
hsize_t dims1[] = {SPACE1_DIM1}, dims3[] = {SPACE3_DIM1};
|
|
hsize_t start[SPACE3_RANK]; /* Starting location of hyperslab */
|
|
hsize_t stride[SPACE3_RANK]; /* Stride of hyperslab */
|
|
hsize_t count[SPACE3_RANK]; /* Element count of hyperslab */
|
|
hsize_t block[SPACE3_RANK]; /* Block size of hyperslab */
|
|
hsize_t coord1[POINT1_NPOINTS][SPACE3_RANK]; /* Coordinates for point selection */
|
|
hsize_t *coords; /* Coordinate buffer */
|
|
hsize_t low[SPACE3_RANK]; /* Selection bounds */
|
|
hsize_t high[SPACE3_RANK]; /* Selection bounds */
|
|
hdset_reg_ref_t *wbuf, /* buffer to write to disk */
|
|
*rbuf; /* buffer read from disk */
|
|
uint8_t *dwbuf, /* Buffer for writing numeric data to disk */
|
|
*drbuf; /* Buffer for reading numeric data from disk */
|
|
uint8_t *tu8; /* Temporary pointer to uint8 data */
|
|
H5O_type_t obj_type; /* Object type */
|
|
int i; /* counting variables */
|
|
herr_t ret; /* Generic return value */
|
|
|
|
/* Output message about test being performed */
|
|
MESSAGE(5, ("Testing 1-D Dataset Region Reference Functions\n"));
|
|
|
|
/* Allocate write & read buffers */
|
|
wbuf = (hdset_reg_ref_t *)calloc(sizeof(hdset_reg_ref_t), (size_t)SPACE1_DIM1);
|
|
rbuf = (hdset_reg_ref_t *)malloc(sizeof(hdset_reg_ref_t) * SPACE1_DIM1);
|
|
dwbuf = (uint8_t *)malloc(sizeof(uint8_t) * SPACE3_DIM1);
|
|
drbuf = (uint8_t *)calloc(sizeof(uint8_t), (size_t)SPACE3_DIM1);
|
|
|
|
/* Create the file access property list */
|
|
fapl = H5Pcreate(H5P_FILE_ACCESS);
|
|
CHECK(fapl, FAIL, "H5Pcreate");
|
|
|
|
/* Set the low/high version bounds in fapl */
|
|
ret = H5Pset_libver_bounds(fapl, libver_low, libver_high);
|
|
CHECK(ret, FAIL, "H5Pset_libver_bounds");
|
|
|
|
/* Create file with the fapl */
|
|
fid1 = H5Fcreate(FILE2, H5F_ACC_TRUNC, H5P_DEFAULT, fapl);
|
|
CHECK(fid1, FAIL, "H5Fcreate");
|
|
|
|
/* Create dataspace for datasets */
|
|
sid3 = H5Screate_simple(SPACE3_RANK, dims3, NULL);
|
|
CHECK(sid3, FAIL, "H5Screate_simple");
|
|
|
|
/* Create dataset access property list */
|
|
dapl_id = H5Pcreate(H5P_DATASET_ACCESS);
|
|
CHECK(dapl_id, FAIL, "H5Pcreate");
|
|
|
|
/* Create a dataset */
|
|
dset3 = H5Dcreate2(fid1, "Dataset2", H5T_STD_U8LE, sid3, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dset3, FAIL, "H5Dcreate2");
|
|
|
|
for (tu8 = dwbuf, i = 0; i < SPACE3_DIM1; i++)
|
|
*tu8++ = (uint8_t)(i * 3);
|
|
|
|
/* Write selection to disk */
|
|
ret = H5Dwrite(dset3, H5T_STD_U8LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, dwbuf);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dset3);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Create dataspace for the reference dataset */
|
|
sid1 = H5Screate_simple(SPACE1_RANK, dims1, NULL);
|
|
CHECK(sid1, FAIL, "H5Screate_simple");
|
|
|
|
/* Create a dataset */
|
|
dset1 = H5Dcreate2(fid1, "Dataset1", H5T_STD_REF_DSETREG, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Dcreate2");
|
|
|
|
/* Create references */
|
|
|
|
/* Select 15 2x1 hyperslabs for first reference */
|
|
start[0] = 2;
|
|
stride[0] = 5;
|
|
count[0] = 15;
|
|
block[0] = 2;
|
|
ret = H5Sselect_hyperslab(sid3, H5S_SELECT_SET, start, stride, count, block);
|
|
CHECK(ret, FAIL, "H5Sselect_hyperslab");
|
|
|
|
ret = (int)H5Sget_select_npoints(sid3);
|
|
VERIFY(ret, 30, "H5Sget_select_npoints");
|
|
|
|
/* Store first dataset region */
|
|
ret = H5Rcreate(&wbuf[0], fid1, "/Dataset2", H5R_DATASET_REGION, sid3);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
ret = H5Rget_obj_type2(dset1, H5R_DATASET_REGION, &wbuf[0], &obj_type);
|
|
CHECK(ret, FAIL, "H5Rget_obj_type2");
|
|
VERIFY(obj_type, H5O_TYPE_DATASET, "H5Rget_obj_type2");
|
|
|
|
/* Select sequence of ten points for second reference */
|
|
coord1[0][0] = 16;
|
|
coord1[1][0] = 22;
|
|
coord1[2][0] = 38;
|
|
coord1[3][0] = 41;
|
|
coord1[4][0] = 52;
|
|
coord1[5][0] = 63;
|
|
coord1[6][0] = 70;
|
|
coord1[7][0] = 89;
|
|
coord1[8][0] = 97;
|
|
coord1[9][0] = 03;
|
|
ret = H5Sselect_elements(sid3, H5S_SELECT_SET, (size_t)POINT1_NPOINTS, (const hsize_t *)coord1);
|
|
CHECK(ret, FAIL, "H5Sselect_elements");
|
|
|
|
ret = (int)H5Sget_select_npoints(sid3);
|
|
VERIFY(ret, 10, "H5Sget_select_npoints");
|
|
|
|
/* Store second dataset region */
|
|
ret = H5Rcreate(&wbuf[1], fid1, "/Dataset2", H5R_DATASET_REGION, sid3);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
/* Write selection to disk */
|
|
ret = H5Dwrite(dset1, H5T_STD_REF_DSETREG, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/* Close disk dataspace */
|
|
ret = H5Sclose(sid1);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dset1);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close uint8 dataset dataspace */
|
|
ret = H5Sclose(sid3);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Re-open the file */
|
|
fid1 = H5Fopen(FILE2, H5F_ACC_RDWR, fapl);
|
|
CHECK(fid1, FAIL, "H5Fopen");
|
|
|
|
/* Open the dataset */
|
|
dset1 = H5Dopen2(fid1, "/Dataset1", H5P_DEFAULT);
|
|
CHECK(dset1, FAIL, "H5Dopen2");
|
|
|
|
/* Read selection from disk */
|
|
ret = H5Dread(dset1, H5T_STD_REF_DSETREG, H5S_ALL, H5S_ALL, H5P_DEFAULT, rbuf);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
/* Try to open objects */
|
|
dset3 = H5Rdereference2(dset1, dapl_id, H5R_DATASET_REGION, &rbuf[0]);
|
|
CHECK(dset3, FAIL, "H5Rdereference2");
|
|
|
|
/* Check what H5Rget_obj_type2 function returns */
|
|
ret = H5Rget_obj_type2(dset1, H5R_DATASET_REGION, &rbuf[0], &obj_type);
|
|
CHECK(ret, FAIL, "H5Rget_obj_type2");
|
|
VERIFY(obj_type, H5O_TYPE_DATASET, "H5Rget_obj_type2");
|
|
|
|
/* Check information in referenced dataset */
|
|
sid1 = H5Dget_space(dset3);
|
|
CHECK(sid1, FAIL, "H5Dget_space");
|
|
|
|
ret = (int)H5Sget_simple_extent_npoints(sid1);
|
|
VERIFY(ret, 100, "H5Sget_simple_extent_npoints");
|
|
|
|
/* Read from disk */
|
|
ret = H5Dread(dset3, H5T_STD_U8LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, drbuf);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
for (tu8 = (uint8_t *)drbuf, i = 0; i < SPACE3_DIM1; i++, tu8++)
|
|
VERIFY(*tu8, (uint8_t)(i * 3), "Data");
|
|
|
|
/* Get the hyperslab selection */
|
|
sid3 = H5Rget_region(dset1, H5R_DATASET_REGION, &rbuf[0]);
|
|
CHECK(sid3, FAIL, "H5Rget_region");
|
|
|
|
/* Verify correct hyperslab selected */
|
|
ret = (int)H5Sget_select_npoints(sid3);
|
|
VERIFY(ret, 30, "H5Sget_select_npoints");
|
|
ret = (int)H5Sget_select_hyper_nblocks(sid3);
|
|
VERIFY(ret, 15, "H5Sget_select_hyper_nblocks");
|
|
coords = (hsize_t *)malloc((size_t)ret * SPACE3_RANK * sizeof(hsize_t) *
|
|
2); /* allocate space for the hyperslab blocks */
|
|
ret = H5Sget_select_hyper_blocklist(sid3, (hsize_t)0, (hsize_t)ret, coords);
|
|
CHECK(ret, FAIL, "H5Sget_select_hyper_blocklist");
|
|
VERIFY(coords[0], 2, "Hyperslab Coordinates");
|
|
VERIFY(coords[1], 3, "Hyperslab Coordinates");
|
|
VERIFY(coords[2], 7, "Hyperslab Coordinates");
|
|
VERIFY(coords[3], 8, "Hyperslab Coordinates");
|
|
VERIFY(coords[4], 12, "Hyperslab Coordinates");
|
|
VERIFY(coords[5], 13, "Hyperslab Coordinates");
|
|
VERIFY(coords[6], 17, "Hyperslab Coordinates");
|
|
VERIFY(coords[7], 18, "Hyperslab Coordinates");
|
|
VERIFY(coords[8], 22, "Hyperslab Coordinates");
|
|
VERIFY(coords[9], 23, "Hyperslab Coordinates");
|
|
VERIFY(coords[10], 27, "Hyperslab Coordinates");
|
|
VERIFY(coords[11], 28, "Hyperslab Coordinates");
|
|
VERIFY(coords[12], 32, "Hyperslab Coordinates");
|
|
VERIFY(coords[13], 33, "Hyperslab Coordinates");
|
|
VERIFY(coords[14], 37, "Hyperslab Coordinates");
|
|
VERIFY(coords[15], 38, "Hyperslab Coordinates");
|
|
VERIFY(coords[16], 42, "Hyperslab Coordinates");
|
|
VERIFY(coords[17], 43, "Hyperslab Coordinates");
|
|
VERIFY(coords[18], 47, "Hyperslab Coordinates");
|
|
VERIFY(coords[19], 48, "Hyperslab Coordinates");
|
|
VERIFY(coords[20], 52, "Hyperslab Coordinates");
|
|
VERIFY(coords[21], 53, "Hyperslab Coordinates");
|
|
VERIFY(coords[22], 57, "Hyperslab Coordinates");
|
|
VERIFY(coords[23], 58, "Hyperslab Coordinates");
|
|
VERIFY(coords[24], 62, "Hyperslab Coordinates");
|
|
VERIFY(coords[25], 63, "Hyperslab Coordinates");
|
|
VERIFY(coords[26], 67, "Hyperslab Coordinates");
|
|
VERIFY(coords[27], 68, "Hyperslab Coordinates");
|
|
VERIFY(coords[28], 72, "Hyperslab Coordinates");
|
|
VERIFY(coords[29], 73, "Hyperslab Coordinates");
|
|
free(coords);
|
|
ret = H5Sget_select_bounds(sid3, low, high);
|
|
CHECK(ret, FAIL, "H5Sget_select_bounds");
|
|
VERIFY(low[0], 2, "Selection Bounds");
|
|
VERIFY(high[0], 73, "Selection Bounds");
|
|
|
|
/* Close region space */
|
|
ret = H5Sclose(sid3);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Get the element selection */
|
|
sid3 = H5Rget_region(dset1, H5R_DATASET_REGION, &rbuf[1]);
|
|
CHECK(sid3, FAIL, "H5Rget_region");
|
|
|
|
/* Verify correct elements selected */
|
|
ret = (int)H5Sget_select_npoints(sid3);
|
|
VERIFY(ret, 10, "H5Sget_select_npoints");
|
|
ret = (int)H5Sget_select_elem_npoints(sid3);
|
|
VERIFY(ret, 10, "H5Sget_select_elem_npoints");
|
|
coords = (hsize_t *)malloc((size_t)ret * SPACE3_RANK *
|
|
sizeof(hsize_t)); /* allocate space for the element points */
|
|
ret = H5Sget_select_elem_pointlist(sid3, (hsize_t)0, (hsize_t)ret, coords);
|
|
CHECK(ret, FAIL, "H5Sget_select_elem_pointlist");
|
|
VERIFY(coords[0], coord1[0][0], "Element Coordinates");
|
|
VERIFY(coords[1], coord1[1][0], "Element Coordinates");
|
|
VERIFY(coords[2], coord1[2][0], "Element Coordinates");
|
|
VERIFY(coords[3], coord1[3][0], "Element Coordinates");
|
|
VERIFY(coords[4], coord1[4][0], "Element Coordinates");
|
|
VERIFY(coords[5], coord1[5][0], "Element Coordinates");
|
|
VERIFY(coords[6], coord1[6][0], "Element Coordinates");
|
|
VERIFY(coords[7], coord1[7][0], "Element Coordinates");
|
|
VERIFY(coords[8], coord1[8][0], "Element Coordinates");
|
|
VERIFY(coords[9], coord1[9][0], "Element Coordinates");
|
|
free(coords);
|
|
ret = H5Sget_select_bounds(sid3, low, high);
|
|
CHECK(ret, FAIL, "H5Sget_select_bounds");
|
|
VERIFY(low[0], 3, "Selection Bounds");
|
|
VERIFY(high[0], 97, "Selection Bounds");
|
|
|
|
/* Close region space */
|
|
ret = H5Sclose(sid3);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close first space */
|
|
ret = H5Sclose(sid1);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close dereferenced Dataset */
|
|
ret = H5Dclose(dset3);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dset1);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close dataset access property list */
|
|
ret = H5Pclose(dapl_id);
|
|
CHECK(ret, FAIL, "H5Pclose");
|
|
|
|
/* Close file access property list */
|
|
ret = H5Pclose(fapl);
|
|
CHECK(ret, FAIL, "H5Pclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Free memory buffers */
|
|
free(wbuf);
|
|
free(rbuf);
|
|
free(dwbuf);
|
|
free(drbuf);
|
|
} /* test_reference_region_1D() */
|
|
|
|
/****************************************************************
|
|
**
|
|
** test_reference_obj_deleted(): Test H5R (reference) object reference code.
|
|
** Tests for correct failures for deleted and non-existent objects
|
|
**
|
|
****************************************************************/
|
|
static void
|
|
test_reference_obj_deleted(void)
|
|
{
|
|
hid_t fid1; /* HDF5 File IDs */
|
|
hid_t dataset, /* Dataset ID */
|
|
dset2; /* Dereferenced dataset ID */
|
|
hid_t sid1; /* Dataspace ID */
|
|
hobj_ref_t oref; /* Object Reference to test */
|
|
H5O_type_t obj_type; /* Object type */
|
|
haddr_t addr = HADDR_UNDEF; /* test for undefined reference */
|
|
herr_t ret; /* Generic return value */
|
|
|
|
/* Create file */
|
|
fid1 = H5Fcreate(FILE3, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(fid1, FAIL, "H5Fcreate");
|
|
|
|
/* Create scalar dataspace for datasets */
|
|
sid1 = H5Screate_simple(0, NULL, NULL);
|
|
CHECK(sid1, FAIL, "H5Screate_simple");
|
|
|
|
/* Create a dataset to reference (deleted later) */
|
|
dataset = H5Dcreate2(fid1, "Dataset1", H5T_NATIVE_INT, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Create a dataset */
|
|
dataset = H5Dcreate2(fid1, "Dataset2", H5T_STD_REF_OBJ, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
/* Create reference to dataset */
|
|
ret = H5Rcreate(&oref, fid1, "/Dataset1", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
ret = H5Rget_obj_type2(dataset, H5R_OBJECT, &oref, &obj_type);
|
|
CHECK(ret, FAIL, "H5Rget_obj_type2");
|
|
VERIFY(obj_type, H5O_TYPE_DATASET, "H5Rget_obj_type2");
|
|
|
|
/* Write selection to disk */
|
|
ret = H5Dwrite(dataset, H5T_STD_REF_OBJ, H5S_ALL, H5S_ALL, H5P_DEFAULT, &oref);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Delete referenced dataset */
|
|
ret = H5Ldelete(fid1, "/Dataset1", H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Ldelete");
|
|
|
|
/* Close disk dataspace */
|
|
ret = H5Sclose(sid1);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Re-open the file */
|
|
fid1 = H5Fopen(FILE3, H5F_ACC_RDWR, H5P_DEFAULT);
|
|
CHECK(fid1, FAIL, "H5Fopen");
|
|
|
|
/* Open the dataset */
|
|
dataset = H5Dopen2(fid1, "/Dataset2", H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Dopen2");
|
|
|
|
/* Open undefined reference */
|
|
dset2 = H5Rdereference2(dataset, H5P_DEFAULT, H5R_OBJECT, &addr);
|
|
VERIFY(dset2, FAIL, "H5Rdereference2");
|
|
|
|
/* Read selection from disk */
|
|
memset(&oref, 0, sizeof(hobj_ref_t));
|
|
ret = H5Dread(dataset, H5T_STD_REF_OBJ, H5S_ALL, H5S_ALL, H5P_DEFAULT, &oref);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
/* Open deleted dataset object */
|
|
dset2 = H5Rdereference2(dataset, H5P_DEFAULT, H5R_OBJECT, &oref);
|
|
VERIFY(dset2, FAIL, "H5Rdereference2");
|
|
|
|
/* Open nonsense reference */
|
|
memset(&oref, 0, sizeof(hobj_ref_t));
|
|
dset2 = H5Rdereference2(dataset, H5P_DEFAULT, H5R_OBJECT, &oref);
|
|
VERIFY(dset2, FAIL, "H5Rdereference2");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
} /* test_reference_obj_deleted() */
|
|
|
|
/****************************************************************
|
|
**
|
|
** test_deref_iter_op(): Iterator callback for test_reference_group_iterate()
|
|
** test.
|
|
**
|
|
****************************************************************/
|
|
static herr_t
|
|
test_deref_iter_op(hid_t H5_ATTR_UNUSED group, const char *name, const H5L_info2_t H5_ATTR_UNUSED *info,
|
|
void *op_data)
|
|
{
|
|
int *count = (int *)op_data; /* Pointer to name counter */
|
|
herr_t ret_value;
|
|
|
|
/* Simple check for correct names */
|
|
if (*count == 0) {
|
|
if (strcmp(name, DSETNAME2) == 0)
|
|
ret_value = 0;
|
|
else
|
|
ret_value = -1;
|
|
} /* end if */
|
|
else if (*count == 1) {
|
|
if (strcmp(name, GROUPNAME2) == 0)
|
|
ret_value = 0;
|
|
else
|
|
ret_value = -1;
|
|
} /* end if */
|
|
else if (*count == 2) {
|
|
if (strcmp(name, GROUPNAME3) == 0)
|
|
ret_value = 0;
|
|
else
|
|
ret_value = -1;
|
|
} /* end if */
|
|
else
|
|
ret_value = -1;
|
|
|
|
(*count)++;
|
|
|
|
return (ret_value);
|
|
} /* end test_deref_iter_op() */
|
|
|
|
/****************************************************************
|
|
**
|
|
** test_reference_group(): Test H5R (reference) object reference code.
|
|
** Tests for correct behavior of various routines on dereferenced group
|
|
**
|
|
****************************************************************/
|
|
static void
|
|
test_reference_group(void)
|
|
{
|
|
hid_t fid = H5I_INVALID_HID; /* File ID */
|
|
hid_t gid = H5I_INVALID_HID, gid2 = H5I_INVALID_HID; /* Group IDs */
|
|
hid_t did; /* Dataset ID */
|
|
hid_t sid; /* Dataspace ID */
|
|
hobj_ref_t wref; /* Reference to write */
|
|
hobj_ref_t rref; /* Reference to read */
|
|
H5G_info_t ginfo; /* Group info struct */
|
|
char objname[NAME_SIZE]; /* Buffer to store name */
|
|
H5O_info2_t oinfo; /* Object info struct */
|
|
int count = 0; /* Count within iterated group */
|
|
ssize_t size; /* Name length */
|
|
herr_t ret;
|
|
|
|
/* Create file with a group and a dataset containing an object reference to the group */
|
|
fid = H5Fcreate(FILE1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(fid, FAIL, "H5Fcreate");
|
|
|
|
/* Create dataspace to use for dataset */
|
|
sid = H5Screate(H5S_SCALAR);
|
|
CHECK(sid, FAIL, "H5Screate");
|
|
|
|
/* Create group to refer to */
|
|
gid = H5Gcreate2(fid, GROUPNAME, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(gid, FAIL, "H5Gcreate2");
|
|
|
|
/* Create nested groups */
|
|
gid2 = H5Gcreate2(gid, GROUPNAME2, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(gid2, FAIL, "H5Gcreate2");
|
|
ret = H5Gclose(gid2);
|
|
CHECK(ret, FAIL, "H5Gclose");
|
|
|
|
gid2 = H5Gcreate2(gid, GROUPNAME3, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(gid2, FAIL, "H5Gcreate2");
|
|
ret = H5Gclose(gid2);
|
|
CHECK(ret, FAIL, "H5Gclose");
|
|
|
|
/* Create bottom dataset */
|
|
did = H5Dcreate2(gid, DSETNAME2, H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
assert(did > 0);
|
|
ret = H5Dclose(did);
|
|
assert(ret >= 0);
|
|
|
|
ret = H5Gclose(gid);
|
|
CHECK(ret, FAIL, "H5Gclose");
|
|
|
|
/* Create dataset */
|
|
did = H5Dcreate2(fid, DSETNAME, H5T_STD_REF_OBJ, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(did, FAIL, "H5Dcreate2");
|
|
|
|
/* Create reference to group */
|
|
ret = H5Rcreate(&wref, fid, GROUPNAME, H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
/* Write reference to disk */
|
|
ret = H5Dwrite(did, H5T_STD_REF_OBJ, H5S_ALL, H5S_ALL, H5P_DEFAULT, &wref);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/* Close objects */
|
|
ret = H5Dclose(did);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
ret = H5Sclose(sid);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
ret = H5Fclose(fid);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Re-open file */
|
|
fid = H5Fopen(FILE1, H5F_ACC_RDWR, H5P_DEFAULT);
|
|
CHECK(fid, FAIL, "H5Fopen");
|
|
|
|
/* Re-open dataset */
|
|
did = H5Dopen2(fid, DSETNAME, H5P_DEFAULT);
|
|
CHECK(did, FAIL, "H5Dopen2");
|
|
|
|
/* Read in the reference */
|
|
ret = H5Dread(did, H5T_STD_REF_OBJ, H5S_ALL, H5S_ALL, H5P_DEFAULT, &rref);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
/* Dereference to get the group */
|
|
gid = H5Rdereference2(did, H5P_DEFAULT, H5R_OBJECT, &rref);
|
|
CHECK(gid, FAIL, "H5Rdereference2");
|
|
|
|
/* Iterate through objects in dereferenced group */
|
|
ret = H5Literate2(gid, H5_INDEX_NAME, H5_ITER_INC, NULL, test_deref_iter_op, &count);
|
|
CHECK(ret, FAIL, "H5Literate");
|
|
|
|
/* Various queries on the group opened */
|
|
ret = H5Gget_info(gid, &ginfo);
|
|
CHECK(ret, FAIL, "H5Gget_info");
|
|
VERIFY(ginfo.nlinks, 3, "H5Gget_info");
|
|
|
|
size = H5Lget_name_by_idx(gid, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)0, objname, (size_t)NAME_SIZE,
|
|
H5P_DEFAULT);
|
|
CHECK(size, FAIL, "H5Lget_name_by_idx");
|
|
VERIFY_STR(objname, DSETNAME2, "H5Lget_name_by_idx");
|
|
|
|
ret = H5Oget_info_by_idx3(gid, ".", H5_INDEX_NAME, H5_ITER_INC, (hsize_t)0, &oinfo, H5O_INFO_BASIC,
|
|
H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Oget_info_by_idx3");
|
|
VERIFY(oinfo.type, H5O_TYPE_DATASET, "H5Oget_info_by_idx3");
|
|
|
|
/* Unlink one of the objects in the dereferenced group */
|
|
ret = H5Ldelete(gid, GROUPNAME2, H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Ldelete");
|
|
|
|
/* Delete dataset object in dereferenced group (with other dataset still open) */
|
|
ret = H5Ldelete(gid, DSETNAME2, H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Ldelete");
|
|
|
|
/* Close objects */
|
|
ret = H5Dclose(did);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
ret = H5Gclose(gid);
|
|
CHECK(ret, FAIL, "H5Gclose");
|
|
ret = H5Fclose(fid);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
} /* test_reference_group() */
|
|
|
|
#ifndef H5_NO_DEPRECATED_SYMBOLS
|
|
/****************************************************************
|
|
**
|
|
** test_reference_compat(): Test basic H5R (reference) object reference code.
|
|
** Tests deprecated API routines
|
|
**
|
|
****************************************************************/
|
|
static void
|
|
test_reference_compat(void)
|
|
{
|
|
hid_t fid1; /* HDF5 File IDs */
|
|
hid_t dataset, dset2; /* Dataset ID */
|
|
hid_t group, group2; /* Group ID */
|
|
hid_t sid1, /* Dataspace IDs */
|
|
sid2;
|
|
hid_t tid1, tid2; /* Datatype ID */
|
|
hsize_t dims1[] = {SPACE1_DIM1}, dims2[] = {SPACE2_DIM1, SPACE2_DIM2};
|
|
hsize_t start[SPACE2_RANK]; /* Starting location of hyperslab */
|
|
hsize_t stride[SPACE2_RANK]; /* Stride of hyperslab */
|
|
hsize_t count[SPACE2_RANK]; /* Element count of hyperslab */
|
|
hsize_t block[SPACE2_RANK]; /* Block size of hyperslab */
|
|
hsize_t coord1[POINT1_NPOINTS][SPACE2_RANK]; /* Coordinates for point selection */
|
|
hobj_ref_t *wbuf_obj, /* Buffer to write to disk */
|
|
*rbuf_obj; /* Buffer read from disk */
|
|
hdset_reg_ref_t *wbuf_reg, /* Buffer to write to disk */
|
|
*rbuf_reg; /* Buffer read from disk */
|
|
H5G_obj_t obj_type; /* Object type */
|
|
herr_t ret; /* Generic return value */
|
|
|
|
/* Output message about test being performed */
|
|
MESSAGE(5, ("Testing Deprecated Object Reference Functions\n"));
|
|
|
|
/* Allocate write & read buffers */
|
|
wbuf_obj = (hobj_ref_t *)calloc(sizeof(hobj_ref_t), SPACE1_DIM1);
|
|
rbuf_obj = (hobj_ref_t *)malloc(sizeof(hobj_ref_t) * SPACE1_DIM1);
|
|
wbuf_reg = (hdset_reg_ref_t *)calloc(sizeof(hdset_reg_ref_t), SPACE1_DIM1);
|
|
rbuf_reg = (hdset_reg_ref_t *)malloc(sizeof(hdset_reg_ref_t) * SPACE1_DIM1);
|
|
|
|
/* Create file */
|
|
fid1 = H5Fcreate(FILE1, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(fid1, FAIL, "H5Fcreate");
|
|
|
|
/* Create dataspace for datasets */
|
|
sid1 = H5Screate_simple(SPACE1_RANK, dims1, NULL);
|
|
CHECK(sid1, FAIL, "H5Screate_simple");
|
|
|
|
/* Create another dataspace for datasets */
|
|
sid2 = H5Screate_simple(SPACE2_RANK, dims2, NULL);
|
|
CHECK(sid2, FAIL, "H5Screate_simple");
|
|
|
|
/* Create a group */
|
|
group = H5Gcreate2(fid1, "Group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(group, FAIL, "H5Gcreate2");
|
|
|
|
/* Create a dataset (inside Group1) */
|
|
dataset = H5Dcreate2(group, "Dataset1", H5T_NATIVE_UINT, sid2, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Create another dataset (inside Group1) */
|
|
dataset = H5Dcreate2(group, "Dataset2", H5T_NATIVE_UCHAR, sid2, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Create a datatype to refer to */
|
|
tid1 = H5Tcreate(H5T_COMPOUND, sizeof(s1_t));
|
|
CHECK(tid1, FAIL, "H5Tcreate");
|
|
|
|
/* Insert fields */
|
|
ret = H5Tinsert(tid1, "a", HOFFSET(s1_t, a), H5T_NATIVE_INT);
|
|
CHECK(ret, FAIL, "H5Tinsert");
|
|
|
|
ret = H5Tinsert(tid1, "b", HOFFSET(s1_t, b), H5T_NATIVE_INT);
|
|
CHECK(ret, FAIL, "H5Tinsert");
|
|
|
|
ret = H5Tinsert(tid1, "c", HOFFSET(s1_t, c), H5T_NATIVE_FLOAT);
|
|
CHECK(ret, FAIL, "H5Tinsert");
|
|
|
|
/* Save datatype for later */
|
|
ret = H5Tcommit2(group, "Datatype1", tid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Tcommit2");
|
|
|
|
/* Close datatype */
|
|
ret = H5Tclose(tid1);
|
|
CHECK(ret, FAIL, "H5Tclose");
|
|
|
|
/* Close group */
|
|
ret = H5Gclose(group);
|
|
CHECK(ret, FAIL, "H5Gclose");
|
|
|
|
/* Create a dataset with object reference datatype */
|
|
dataset = H5Dcreate2(fid1, "Dataset3", H5T_STD_REF_OBJ, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
/* Create reference to dataset */
|
|
ret = H5Rcreate(&wbuf_obj[0], fid1, "/Group1/Dataset1", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
/* Create reference to dataset */
|
|
ret = H5Rcreate(&wbuf_obj[1], fid1, "/Group1/Dataset2", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
/* Create reference to group */
|
|
ret = H5Rcreate(&wbuf_obj[2], fid1, "/Group1", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
/* Create reference to named datatype */
|
|
ret = H5Rcreate(&wbuf_obj[3], fid1, "/Group1/Datatype1", H5R_OBJECT, (hid_t)H5I_INVALID_HID);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
/* Write references to disk */
|
|
ret = H5Dwrite(dataset, H5T_STD_REF_OBJ, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf_obj);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Create a dataset with region reference datatype */
|
|
dataset = H5Dcreate2(fid1, "Dataset4", H5T_STD_REF_DSETREG, sid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dcreate2");
|
|
|
|
/* Select 6x6 hyperslab for first reference */
|
|
start[0] = 2;
|
|
start[1] = 2;
|
|
stride[0] = 1;
|
|
stride[1] = 1;
|
|
count[0] = 1;
|
|
count[1] = 1;
|
|
block[0] = 6;
|
|
block[1] = 6;
|
|
ret = H5Sselect_hyperslab(sid2, H5S_SELECT_SET, start, stride, count, block);
|
|
CHECK(ret, FAIL, "H5Sselect_hyperslab");
|
|
|
|
/* Create first dataset region */
|
|
ret = H5Rcreate(&wbuf_reg[0], fid1, "/Group1/Dataset1", H5R_DATASET_REGION, sid2);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
/* Select sequence of ten points for second reference */
|
|
coord1[0][0] = 6;
|
|
coord1[0][1] = 9;
|
|
coord1[1][0] = 2;
|
|
coord1[1][1] = 2;
|
|
coord1[2][0] = 8;
|
|
coord1[2][1] = 4;
|
|
coord1[3][0] = 1;
|
|
coord1[3][1] = 6;
|
|
coord1[4][0] = 2;
|
|
coord1[4][1] = 8;
|
|
coord1[5][0] = 3;
|
|
coord1[5][1] = 2;
|
|
coord1[6][0] = 0;
|
|
coord1[6][1] = 4;
|
|
coord1[7][0] = 9;
|
|
coord1[7][1] = 0;
|
|
coord1[8][0] = 7;
|
|
coord1[8][1] = 1;
|
|
coord1[9][0] = 3;
|
|
coord1[9][1] = 3;
|
|
ret = H5Sselect_elements(sid2, H5S_SELECT_SET, (size_t)POINT1_NPOINTS, (const hsize_t *)coord1);
|
|
CHECK(ret, FAIL, "H5Sselect_elements");
|
|
|
|
/* Create second dataset region */
|
|
ret = H5Rcreate(&wbuf_reg[1], fid1, "/Group1/Dataset2", H5R_DATASET_REGION, sid2);
|
|
CHECK(ret, FAIL, "H5Rcreate");
|
|
|
|
/* Write selection to disk */
|
|
ret = H5Dwrite(dataset, H5T_STD_REF_DSETREG, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf_reg);
|
|
CHECK(ret, FAIL, "H5Dwrite");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close disk dataspaces */
|
|
ret = H5Sclose(sid1);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
ret = H5Sclose(sid2);
|
|
CHECK(ret, FAIL, "H5Sclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Re-open the file */
|
|
fid1 = H5Fopen(FILE1, H5F_ACC_RDWR, H5P_DEFAULT);
|
|
CHECK(fid1, FAIL, "H5Fopen");
|
|
|
|
/* Open the object reference dataset */
|
|
dataset = H5Dopen2(fid1, "/Dataset3", H5P_DEFAULT);
|
|
CHECK(dataset, FAIL, "H5Dopen2");
|
|
|
|
/* Read selection from disk */
|
|
ret = H5Dread(dataset, H5T_STD_REF_OBJ, H5S_ALL, H5S_ALL, H5P_DEFAULT, rbuf_obj);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
/* Verify type of objects pointed at */
|
|
obj_type = H5Rget_obj_type1(dataset, H5R_OBJECT, &rbuf_obj[0]);
|
|
CHECK(obj_type, H5G_UNKNOWN, "H5Rget_obj_type1");
|
|
VERIFY(obj_type, H5G_DATASET, "H5Rget_obj_type1");
|
|
|
|
obj_type = H5Rget_obj_type1(dataset, H5R_OBJECT, &rbuf_obj[1]);
|
|
CHECK(obj_type, H5G_UNKNOWN, "H5Rget_obj_type1");
|
|
VERIFY(obj_type, H5G_DATASET, "H5Rget_obj_type1");
|
|
|
|
obj_type = H5Rget_obj_type1(dataset, H5R_OBJECT, &rbuf_obj[2]);
|
|
CHECK(obj_type, H5G_UNKNOWN, "H5Rget_obj_type1");
|
|
VERIFY(obj_type, H5G_GROUP, "H5Rget_obj_type1");
|
|
|
|
obj_type = H5Rget_obj_type1(dataset, H5R_OBJECT, &rbuf_obj[3]);
|
|
CHECK(obj_type, H5G_UNKNOWN, "H5Rget_obj_type1");
|
|
VERIFY(obj_type, H5G_TYPE, "H5Rget_obj_type1");
|
|
|
|
/* Make sure the referenced objects can be opened */
|
|
dset2 = H5Rdereference1(dataset, H5R_OBJECT, &rbuf_obj[0]);
|
|
CHECK(dset2, FAIL, "H5Rdereference1");
|
|
|
|
ret = H5Dclose(dset2);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
dset2 = H5Rdereference1(dataset, H5R_OBJECT, &rbuf_obj[1]);
|
|
CHECK(dset2, FAIL, "H5Rdereference1");
|
|
|
|
ret = H5Dclose(dset2);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
group2 = H5Rdereference1(dataset, H5R_OBJECT, &rbuf_obj[2]);
|
|
CHECK(group2, FAIL, "H5Rdereference1");
|
|
|
|
ret = H5Gclose(group2);
|
|
CHECK(ret, FAIL, "H5Gclose");
|
|
|
|
tid2 = H5Rdereference1(dataset, H5R_OBJECT, &rbuf_obj[3]);
|
|
CHECK(tid2, FAIL, "H5Rdereference1");
|
|
|
|
ret = H5Tclose(tid2);
|
|
CHECK(ret, FAIL, "H5Tclose");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Open the dataset region reference dataset */
|
|
dataset = H5Dopen2(fid1, "/Dataset4", H5P_DEFAULT);
|
|
CHECK(ret, FAIL, "H5Dopen2");
|
|
|
|
/* Read selection from disk */
|
|
ret = H5Dread(dataset, H5T_STD_REF_DSETREG, H5S_ALL, H5S_ALL, H5P_DEFAULT, rbuf_reg);
|
|
CHECK(ret, FAIL, "H5Dread");
|
|
|
|
/* Verify type of objects pointed at */
|
|
obj_type = H5Rget_obj_type1(dataset, H5R_DATASET_REGION, &rbuf_reg[0]);
|
|
CHECK(obj_type, H5G_UNKNOWN, "H5Rget_obj_type1");
|
|
VERIFY(obj_type, H5G_DATASET, "H5Rget_obj_type1");
|
|
|
|
obj_type = H5Rget_obj_type1(dataset, H5R_DATASET_REGION, &rbuf_reg[1]);
|
|
CHECK(obj_type, H5G_UNKNOWN, "H5Rget_obj_type1");
|
|
VERIFY(obj_type, H5G_DATASET, "H5Rget_obj_type1");
|
|
|
|
obj_type = H5Rget_obj_type1(dataset, H5R_DATASET_REGION, &rbuf_reg[2]);
|
|
VERIFY(obj_type, H5G_UNKNOWN, "H5Rget_obj_type1");
|
|
|
|
obj_type = H5Rget_obj_type1(dataset, H5R_DATASET_REGION, &rbuf_reg[3]);
|
|
VERIFY(obj_type, H5G_UNKNOWN, "H5Rget_obj_type1");
|
|
|
|
/* Make sure the referenced objects can be opened */
|
|
dset2 = H5Rdereference1(dataset, H5R_DATASET_REGION, &rbuf_reg[0]);
|
|
CHECK(dset2, FAIL, "H5Rdereference1");
|
|
|
|
ret = H5Dclose(dset2);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
dset2 = H5Rdereference1(dataset, H5R_DATASET_REGION, &rbuf_reg[1]);
|
|
CHECK(dset2, FAIL, "H5Rdereference1");
|
|
|
|
ret = H5Dclose(dset2);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close Dataset */
|
|
ret = H5Dclose(dataset);
|
|
CHECK(ret, FAIL, "H5Dclose");
|
|
|
|
/* Close file */
|
|
ret = H5Fclose(fid1);
|
|
CHECK(ret, FAIL, "H5Fclose");
|
|
|
|
/* Free memory buffers */
|
|
free(wbuf_obj);
|
|
free(rbuf_obj);
|
|
free(wbuf_reg);
|
|
free(rbuf_reg);
|
|
} /* test_reference_compat() */
|
|
#endif /* H5_NO_DEPRECATED_SYMBOLS */
|
|
|
|
/****************************************************************
|
|
**
|
|
** test_reference_deprec(): Main H5R reference testing routine.
|
|
**
|
|
****************************************************************/
|
|
void
|
|
test_reference_deprec(void)
|
|
{
|
|
H5F_libver_t low, high; /* Low and high bounds */
|
|
|
|
/* Output message about test being performed */
|
|
MESSAGE(5, ("Testing Deprecated References\n"));
|
|
|
|
test_reference_params(); /* Test for correct parameter checking */
|
|
test_reference_obj(); /* Test basic H5R object reference code */
|
|
|
|
/* Loop through all the combinations of low/high version bounds */
|
|
for (low = H5F_LIBVER_EARLIEST; low < H5F_LIBVER_NBOUNDS; low++) {
|
|
for (high = H5F_LIBVER_EARLIEST; high < H5F_LIBVER_NBOUNDS; high++) {
|
|
|
|
/* Invalid combinations, just continue */
|
|
if (high == H5F_LIBVER_EARLIEST || high < low)
|
|
continue;
|
|
|
|
test_reference_region(low, high); /* Test basic H5R dataset region reference code */
|
|
test_reference_region_1D(low, high); /* Test H5R dataset region reference code for 1-D datasets */
|
|
|
|
} /* end high bound */
|
|
} /* end low bound */
|
|
|
|
test_reference_obj_deleted(); /* Test H5R object reference code for deleted objects */
|
|
test_reference_group(); /* Test operations on dereferenced groups */
|
|
#ifndef H5_NO_DEPRECATED_SYMBOLS
|
|
test_reference_compat(); /* Test operations with old API routines */
|
|
#endif /* H5_NO_DEPRECATED_SYMBOLS */
|
|
|
|
} /* test_reference() */
|
|
|
|
/*-------------------------------------------------------------------------
|
|
* Function: cleanup_reference
|
|
*
|
|
* Purpose: Cleanup temporary test files
|
|
*
|
|
* Return: none
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
void
|
|
cleanup_reference_deprec(void)
|
|
{
|
|
HDremove(FILE1);
|
|
HDremove(FILE2);
|
|
HDremove(FILE3);
|
|
}
|