2003-02-17 23:54:15 +08:00
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
|
* Copyright by The HDF Group. *
|
2003-02-17 23:54:15 +08:00
|
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
|
* All rights reserved. *
|
|
|
|
|
* *
|
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
2017-04-18 03:32:16 +08:00
|
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
|
|
|
|
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
|
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
|
* help@hdfgroup.org. *
|
2003-02-17 23:54:15 +08:00
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
|
|
/* Programmer: Robb Matzke <matzke@llnl.gov>
|
1998-11-25 22:58:22 +08:00
|
|
|
|
* Tuesday, November 24, 1998
|
|
|
|
|
*/
|
2001-04-04 02:09:16 +08:00
|
|
|
|
#include "h5test.h"
|
2018-09-21 01:40:51 +08:00
|
|
|
|
|
|
|
|
|
#include "H5CXprivate.h" /* API Contexts */
|
|
|
|
|
#include "H5Iprivate.h" /* Identifiers */
|
2018-10-10 23:10:15 +08:00
|
|
|
|
#include "H5VLprivate.h" /* Virtual Object Layer */
|
2010-03-18 20:23:04 +08:00
|
|
|
|
|
2003-02-17 23:54:15 +08:00
|
|
|
|
/*
|
|
|
|
|
* This file needs to access private datatypes from the H5O package.
|
2007-05-02 05:00:52 +08:00
|
|
|
|
* This file also needs to access the object header testing code.
|
2003-02-17 23:54:15 +08:00
|
|
|
|
*/
|
2018-09-21 01:40:51 +08:00
|
|
|
|
#define H5O_FRIEND /* suppress error about including H5Opkg */
|
2007-05-02 05:00:52 +08:00
|
|
|
|
#define H5O_TESTING
|
2003-02-17 23:54:15 +08:00
|
|
|
|
#include "H5Opkg.h"
|
1998-11-25 22:58:22 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This file needs to access private datatypes from the H5G package.
|
|
|
|
|
*/
|
2018-09-21 01:40:51 +08:00
|
|
|
|
#define H5G_FRIEND /* suppress error about including H5Gpkg */
|
2001-04-04 02:09:16 +08:00
|
|
|
|
#include "H5Gpkg.h"
|
1998-11-25 22:58:22 +08:00
|
|
|
|
|
|
|
|
|
const char *FILENAME[] = {
|
|
|
|
|
"ohdr",
|
2018-12-19 03:42:03 +08:00
|
|
|
|
"ohdr_min_a",
|
|
|
|
|
"ohdr_min_b",
|
1998-11-25 22:58:22 +08:00
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
2018-12-19 03:42:03 +08:00
|
|
|
|
/* used for object header size comparison */
|
|
|
|
|
#define EQ 1
|
|
|
|
|
#define LT 2
|
|
|
|
|
#define GT 3
|
|
|
|
|
|
2003-01-22 04:20:13 +08:00
|
|
|
|
/* The tbogus.h5 is generated from gen_bogus.c in HDF5 'test' directory.
|
|
|
|
|
* To get this data file, define H5O_ENABLE_BOGUS in src/H5Oprivate, rebuild
|
2007-05-02 05:00:52 +08:00
|
|
|
|
* the library and simply compile gen_bogus.c with that HDF5 library and run it.
|
|
|
|
|
*/
|
2020-01-04 12:16:38 +08:00
|
|
|
|
#define FILE_BOGUS "tbogus.h5"
|
|
|
|
|
#define TESTFILE_LEN 256
|
2003-01-22 04:20:13 +08:00
|
|
|
|
|
2016-12-18 18:19:26 +08:00
|
|
|
|
/* */
|
|
|
|
|
#define FILE_OHDR_SWMR "ohdr_swmr.h5"
|
|
|
|
|
#define DSET_NAME "COMPACT_DSET"
|
|
|
|
|
#define OBJ_VERSION_LATEST 2
|
|
|
|
|
|
2009-02-05 23:29:27 +08:00
|
|
|
|
/*
|
|
|
|
|
* Verify that messages are moved forward into a "continuation message":
|
2018-03-16 22:03:08 +08:00
|
|
|
|
* Create an object header with several continuation chunks
|
|
|
|
|
* Remove a message in the last chunk
|
|
|
|
|
* The remaining message(s) in the last chunk should be moved forward into the continuation message
|
|
|
|
|
* The process will repeat when the continuation message is big enough to hold all the
|
|
|
|
|
* messages in the last chunk.
|
|
|
|
|
* Result: the number of chunks should be reduced
|
2009-02-05 23:29:27 +08:00
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_cont(char *filename, hid_t fapl)
|
|
|
|
|
{
|
2018-03-16 22:03:08 +08:00
|
|
|
|
hid_t file=-1;
|
|
|
|
|
H5F_t *f = NULL;
|
2010-01-30 12:29:13 +08:00
|
|
|
|
H5O_hdr_info_t hdr_info;
|
2018-03-16 22:03:08 +08:00
|
|
|
|
H5O_loc_t oh_locA, oh_locB;
|
|
|
|
|
time_t time_new;
|
|
|
|
|
const char *short_name = "T";
|
|
|
|
|
const char *long_name = "This is the message";
|
|
|
|
|
size_t nchunks;
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
|
|
|
|
TESTING("object header continuation block");
|
|
|
|
|
|
2010-10-21 21:08:44 +08:00
|
|
|
|
HDmemset(&oh_locA, 0, sizeof(oh_locA));
|
|
|
|
|
HDmemset(&oh_locB, 0, sizeof(oh_locB));
|
|
|
|
|
|
2009-02-05 23:29:27 +08:00
|
|
|
|
/* Create the file to operate on */
|
2016-03-24 08:38:03 +08:00
|
|
|
|
if((file = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
2018-10-10 23:10:15 +08:00
|
|
|
|
if(NULL == (f = (H5F_t *)H5VL_object(file)))
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2010-06-16 04:00:22 +08:00
|
|
|
|
if (H5AC_ignore_tags(f) < 0) {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
H5_FAILED();
|
|
|
|
|
H5Eprint2(H5E_DEFAULT, stdout);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_create(f, (size_t)H5O_MIN_SIZE, (size_t)0, H5P_GROUP_CREATE_DEFAULT, &oh_locA/*out*/) < 0)
|
2009-02-05 23:29:27 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_create(f, (size_t)H5O_MIN_SIZE, (size_t)0, H5P_GROUP_CREATE_DEFAULT, &oh_locB/*out*/) < 0)
|
2009-02-05 23:29:27 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
time_new = 11111111;
|
|
|
|
|
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_locA, H5O_NAME_ID, 0, 0, &long_name) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_locB, H5O_MTIME_ID, 0, 0, &time_new) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_locB, H5O_MTIME_ID, 0, 0, &time_new) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_locB, H5O_MTIME_ID, 0, 0, &time_new) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_locA, H5O_MTIME_NEW_ID, 0, 0, &time_new) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_locB, H5O_MTIME_ID, 0, 0, &time_new) < 0)
|
[svn-r18618] Description:
Add new internal object header routines to query the header chunk that
a message is in, and to lock/unlock a message into a chunk (so it doesn't get
moved into another chunk during allocation/free events).
Also, move dataspace message to beginning of object header messages
added to a dataset's object header, so it can be locked into chunk #0 (when
performing SWMR operations).
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-04-23 05:59:31 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_locA, H5O_NAME_ID, 0, 0, &short_name) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(1 != H5O_link(&oh_locA, 1))
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(1 != H5O_link(&oh_locB, 1))
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_flush(f) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-09-21 01:40:51 +08:00
|
|
|
|
if(H5O__expunge_chunks_test(&oh_locA) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_get_hdr_info(&oh_locA, &hdr_info) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
[svn-r17553] Description:
Bring general fixes/improvements from file_free_space branch back to
trunk.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.8 (amazon) in debug mode
Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-09-30 04:08:01 +08:00
|
|
|
|
nchunks = hdr_info.nchunks;
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
|
|
|
|
/* remove the 1st H5O_NAME_ID message */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_remove(&oh_locA, H5O_NAME_ID, 0, FALSE) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_get_hdr_info(&oh_locA, &hdr_info) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
[svn-r17553] Description:
Bring general fixes/improvements from file_free_space branch back to
trunk.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.8 (amazon) in debug mode
Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-09-30 04:08:01 +08:00
|
|
|
|
if(hdr_info.nchunks >= nchunks)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
TEST_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
2016-11-26 23:47:32 +08:00
|
|
|
|
if(H5O_close(&oh_locA, NULL) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-11-26 23:47:32 +08:00
|
|
|
|
if(H5O_close(&oh_locB, NULL) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
if(H5Fclose(file) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
2016-03-24 08:38:03 +08:00
|
|
|
|
return SUCCEED;
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
2016-11-26 23:47:32 +08:00
|
|
|
|
H5O_close(&oh_locA, NULL);
|
|
|
|
|
H5O_close(&oh_locB, NULL);
|
[svn-r18618] Description:
Add new internal object header routines to query the header chunk that
a message is in, and to lock/unlock a message into a chunk (so it doesn't get
moved into another chunk during allocation/free events).
Also, move dataspace message to beginning of object header messages
added to a dataset's object header, so it can be locked into chunk #0 (when
performing SWMR operations).
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-04-23 05:59:31 +08:00
|
|
|
|
H5Fclose(file);
|
2009-02-05 23:29:27 +08:00
|
|
|
|
} H5E_END_TRY;
|
[svn-r18618] Description:
Add new internal object header routines to query the header chunk that
a message is in, and to lock/unlock a message into a chunk (so it doesn't get
moved into another chunk during allocation/free events).
Also, move dataspace message to beginning of object header messages
added to a dataset's object header, so it can be locked into chunk #0 (when
performing SWMR operations).
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-04-23 05:59:31 +08:00
|
|
|
|
|
2016-03-24 08:38:03 +08:00
|
|
|
|
return FAIL;
|
|
|
|
|
} /* end test_cont() */
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
/*
|
|
|
|
|
* Verify that object headers are held in the cache until they are linked
|
|
|
|
|
* to a location in the graph, or assigned an ID. This is done by
|
|
|
|
|
* creating an object header, then forcing it out of the cache by creating
|
|
|
|
|
* local heaps until the object header is evicted from the cache, then
|
|
|
|
|
* modifying the object header. The refcount on the object header is
|
|
|
|
|
* checked as verifying that the object header has remained in the cache.
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_ohdr_cache(char *filename, hid_t fapl)
|
|
|
|
|
{
|
2018-03-16 22:03:08 +08:00
|
|
|
|
hid_t file = -1; /* File ID */
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
hid_t my_fapl; /* FAPL ID */
|
|
|
|
|
H5AC_cache_config_t mdc_config; /* Metadata cache configuration info */
|
2018-03-16 22:03:08 +08:00
|
|
|
|
H5F_t *f = NULL; /* File handle */
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
H5HL_t *lheap, *lheap2, *lheap3; /* Pointer to local heaps */
|
|
|
|
|
haddr_t lheap_addr, lheap_addr2, lheap_addr3; /* Local heap addresses */
|
2018-03-16 22:03:08 +08:00
|
|
|
|
H5O_loc_t oh_loc; /* Object header location */
|
|
|
|
|
time_t time_new; /* Time value for modification time message */
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
unsigned rc; /* Refcount for object */
|
|
|
|
|
|
|
|
|
|
TESTING("object header creation in cache");
|
|
|
|
|
|
|
|
|
|
/* Make a copy of the FAPL */
|
|
|
|
|
if((my_fapl = H5Pcopy(fapl)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Tweak down the size of the metadata cache to only 64K */
|
|
|
|
|
mdc_config.version = H5AC__CURR_CACHE_CONFIG_VERSION;
|
|
|
|
|
if(H5Pget_mdc_config(my_fapl, &mdc_config) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
mdc_config.set_initial_size = TRUE;
|
|
|
|
|
mdc_config.initial_size = 32 * 1024;
|
|
|
|
|
mdc_config.max_size = 64 * 1024;
|
|
|
|
|
mdc_config.min_size = 8 * 1024;
|
|
|
|
|
if(H5Pset_mdc_config(my_fapl, &mdc_config) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Create the file to operate on */
|
|
|
|
|
if((file = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, my_fapl)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
if(H5Pclose(my_fapl) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-10-10 23:10:15 +08:00
|
|
|
|
if(NULL == (f = (H5F_t *)H5VL_object(file)))
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
if(H5AC_ignore_tags(f) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Create object (local heap) that occupies most of cache */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5HL_create(f, (31 * 1024), &lheap_addr) < 0)
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Protect local heap (which actually pins it in the cache) */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(NULL == (lheap = H5HL_protect(f, lheap_addr, H5AC__READ_ONLY_FLAG)))
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Create an object header */
|
|
|
|
|
HDmemset(&oh_loc, 0, sizeof(oh_loc));
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_create(f, (size_t)2048, (size_t)1, H5P_GROUP_CREATE_DEFAULT, &oh_loc/*out*/) < 0)
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Query object header information */
|
|
|
|
|
rc = 0;
|
2018-09-21 01:40:51 +08:00
|
|
|
|
if(H5O__get_rc_test(&oh_loc, &rc) < 0)
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
if(0 != rc)
|
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
|
|
|
|
/* Create object (local heap) that occupies most of cache */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5HL_create(f, (31 * 1024), &lheap_addr2) < 0)
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Protect local heap (which actually pins it in the cache) */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(NULL == (lheap2 = H5HL_protect(f, lheap_addr2, H5AC__READ_ONLY_FLAG)))
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Unprotect local heap (which actually unpins it from the cache) */
|
|
|
|
|
if(H5HL_unprotect(lheap2) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Create object header message in new object header */
|
|
|
|
|
time_new = 11111111;
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_loc, H5O_MTIME_NEW_ID, 0, 0, &time_new) < 0)
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Create object (local heap) that occupies most of cache */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5HL_create(f, (31 * 1024), &lheap_addr3) < 0)
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Protect local heap (which actually pins it in the cache) */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(NULL == (lheap3 = H5HL_protect(f, lheap_addr3, H5AC__READ_ONLY_FLAG)))
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Unprotect local heap (which actually unpins it from the cache) */
|
|
|
|
|
if(H5HL_unprotect(lheap3) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Query object header information */
|
|
|
|
|
/* (Note that this is somewhat of a weak test, since it doesn't actually
|
|
|
|
|
* verify that the object header was evicted from the cache, but it's
|
|
|
|
|
* very difficult to verify when an entry is evicted from the cache in
|
|
|
|
|
* a non-invasive way -QAK)
|
|
|
|
|
*/
|
|
|
|
|
rc = 0;
|
2018-09-21 01:40:51 +08:00
|
|
|
|
if(H5O__get_rc_test(&oh_loc, &rc) < 0)
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
if(0 != rc)
|
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
|
|
|
|
/* Decrement reference count o object header */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_dec_rc_by_loc(&oh_loc) < 0)
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Close object header created */
|
2016-11-26 23:47:32 +08:00
|
|
|
|
if(H5O_close(&oh_loc, NULL) < 0)
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Unprotect local heap (which actually unpins it from the cache) */
|
|
|
|
|
if(H5HL_unprotect(lheap) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
if(H5Fclose(file) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
2016-03-24 08:38:03 +08:00
|
|
|
|
return SUCCEED;
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Fclose(file);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
|
2016-03-24 08:38:03 +08:00
|
|
|
|
return FAIL;
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
} /* test_ohdr_cache() */
|
|
|
|
|
|
2016-12-18 18:19:26 +08:00
|
|
|
|
/*
|
|
|
|
|
* To exercise the coding for the re-read of the object header for SWMR access.
|
|
|
|
|
* When the object header is read in H5O_load() of H5Ocache.c, the library initially reads
|
|
|
|
|
* H5O_SPEC_READ_SIZE (512, currently) bytes for decoding, then reads the
|
|
|
|
|
* remaining bytes later if the object header is greater than H5O_SPEC_READ_SIZE
|
|
|
|
|
* bytes. For SWMR access, the read should be done all at one time.
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_ohdr_swmr(hbool_t new_format)
|
|
|
|
|
{
|
2018-10-10 23:10:15 +08:00
|
|
|
|
hid_t fid = -1; /* File ID */
|
|
|
|
|
hid_t fapl = -1; /* File access property list */
|
|
|
|
|
hid_t did = -1; /* Dataset ID */
|
|
|
|
|
hid_t sid = -1; /* Dataspace ID */
|
|
|
|
|
hid_t plist = -1; /* Dataset creation property list */
|
|
|
|
|
size_t compact_size = 1024; /* The size of compact dataset */
|
|
|
|
|
int *wbuf = NULL; /* Buffer for writing */
|
|
|
|
|
hsize_t dims[1]; /* Dimension sizes */
|
|
|
|
|
size_t u; /* Iterator */
|
|
|
|
|
int n; /* Data variable */
|
|
|
|
|
H5O_info_t obj_info; /* Information for the object */
|
2016-12-18 18:19:26 +08:00
|
|
|
|
|
|
|
|
|
if(new_format) {
|
|
|
|
|
TESTING("exercise the coding for the re-read of the object header for SWMR access: latest-format");
|
|
|
|
|
} else {
|
|
|
|
|
TESTING("exercise the coding for the re-read of the object header for SWMR access: non-latest-format");
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* File access property list */
|
|
|
|
|
if((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Create the file with/without latest format: ensure version 2 object header for SWMR */
|
|
|
|
|
if(new_format) {
|
|
|
|
|
/* Set to use latest library format */
|
|
|
|
|
if(H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
if((fid = H5Fcreate(FILE_OHDR_SWMR, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0)
|
|
|
|
|
TEST_ERROR
|
|
|
|
|
} /* end if */
|
|
|
|
|
else {
|
|
|
|
|
if((fid = H5Fcreate(FILE_OHDR_SWMR, H5F_ACC_TRUNC|H5F_ACC_SWMR_WRITE, H5P_DEFAULT, fapl)) < 0)
|
|
|
|
|
TEST_ERROR
|
|
|
|
|
} /* end else */
|
|
|
|
|
|
|
|
|
|
/* Initialize data */
|
|
|
|
|
wbuf = (int *)HDcalloc(compact_size, sizeof(int));
|
|
|
|
|
n = 0;
|
|
|
|
|
for(u = 0; u < compact_size; u++)
|
|
|
|
|
wbuf[u] = n++;
|
|
|
|
|
|
|
|
|
|
/* Create a small data space for compact dataset */
|
|
|
|
|
dims[0] = (hsize_t)compact_size;
|
|
|
|
|
if((sid = H5Screate_simple(1, dims, NULL)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 22:03:08 +08:00
|
|
|
|
|
2016-12-18 18:19:26 +08:00
|
|
|
|
/* Create property list for compact dataset creation */
|
|
|
|
|
if((plist = H5Pcreate(H5P_DATASET_CREATE)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Set the layout for the compact dataset */
|
|
|
|
|
if(H5Pset_layout(plist, H5D_COMPACT) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Create a compact dataset */
|
|
|
|
|
if((did = H5Dcreate2(fid, DSET_NAME, H5T_NATIVE_INT, sid, H5P_DEFAULT, plist, H5P_DEFAULT)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Write to the compact dataset */
|
|
|
|
|
if(H5Dwrite(did, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Close the dataset */
|
|
|
|
|
if(H5Dclose(did) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Close the file */
|
|
|
|
|
if(H5Fclose(fid) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Open the file for SWMR write with/without latest format */
|
|
|
|
|
if((fid = H5Fopen(FILE_OHDR_SWMR, H5F_ACC_RDWR|H5F_ACC_SWMR_WRITE, fapl)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Open the compact dataset */
|
|
|
|
|
if((did = H5Dopen2(fid, DSET_NAME, H5P_DEFAULT)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Get the object information */
|
2018-04-25 04:10:13 +08:00
|
|
|
|
if(H5Oget_info2(did, &obj_info, H5O_INFO_HDR) < 0)
|
2016-12-18 18:19:26 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
2017-09-24 00:17:47 +08:00
|
|
|
|
if(new_format)
|
|
|
|
|
if(obj_info.hdr.version != OBJ_VERSION_LATEST)
|
|
|
|
|
FAIL_STACK_ERROR
|
2016-12-18 18:19:26 +08:00
|
|
|
|
|
|
|
|
|
/* The size of object header should be greater than the speculative read size of H5O_SPEC_READ_SIZE */
|
|
|
|
|
/* This will exercise the coding for the re-read of the object header for SWMR access */
|
|
|
|
|
if(obj_info.hdr.space.total < H5O_SPEC_READ_SIZE)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
/* Close the dataset */
|
|
|
|
|
if(H5Dclose(did) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Close the file */
|
|
|
|
|
if(H5Fclose(fid) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Close the dataspace */
|
|
|
|
|
if(H5Sclose(sid) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Close the dataset creation property list */
|
|
|
|
|
if(H5Pclose(plist) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Close the file access property list */
|
|
|
|
|
if(H5Pclose(fapl) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Remove the test file */
|
|
|
|
|
if(HDremove(FILE_OHDR_SWMR) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
/* Free the buffer */
|
|
|
|
|
HDfree(wbuf);
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
|
|
|
|
return SUCCEED;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Fclose(fid);
|
|
|
|
|
H5Dclose(did);
|
|
|
|
|
H5Sclose(sid);
|
|
|
|
|
H5Pclose(plist);
|
|
|
|
|
H5Pclose(fapl);
|
|
|
|
|
HDremove(FILE_OHDR_SWMR);
|
|
|
|
|
HDfree(wbuf);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
|
|
|
|
|
return FAIL;
|
|
|
|
|
} /* test_ohdr_swmr() */
|
|
|
|
|
|
2016-02-25 05:30:35 +08:00
|
|
|
|
/*
|
|
|
|
|
* To test objects with unknown messages in a file with:
|
2018-03-16 22:03:08 +08:00
|
|
|
|
* a) H5O_BOGUS_VALID_ID:
|
|
|
|
|
* --the bogus_id is within the range of H5O_msg_class_g[]
|
|
|
|
|
* b) H5O_BOGUS_INVALID_ID:
|
|
|
|
|
* --the bogus_id is outside the range of H5O_msg_class_g[]
|
2016-02-25 05:30:35 +08:00
|
|
|
|
*
|
|
|
|
|
* The test file is FILE_BOGUS: "tbogus.h5" generated with gen_bogus.c
|
|
|
|
|
* --objects that have unknown header messages with H5O_BOGUS_VALID_ID in "/"
|
|
|
|
|
* --objects that have unknown header messages with H5O_BOGUS_INVALID_ID in "/group"
|
|
|
|
|
*
|
|
|
|
|
* The test also uses the test file FILENAME[0] (ohdr.h5): the parameter "filename"
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_unknown(unsigned bogus_id, char *filename, hid_t fapl)
|
|
|
|
|
{
|
2018-03-16 22:03:08 +08:00
|
|
|
|
hid_t fid = -1; /* file ID */
|
|
|
|
|
hid_t gid = -1; /* group ID */
|
|
|
|
|
hid_t did = -1; /* Dataset ID */
|
2016-02-25 05:30:35 +08:00
|
|
|
|
hid_t sid = -1; /* Dataspace ID */
|
|
|
|
|
hid_t aid = -1; /* Attribute ID */
|
2018-03-16 22:03:08 +08:00
|
|
|
|
hid_t loc = -1; /* location: file or group ID */
|
|
|
|
|
hid_t fid_bogus = -1; /* bogus file ID */
|
|
|
|
|
hid_t gid_bogus = -1; /* bogus group ID */
|
|
|
|
|
hid_t loc_bogus = -1; /* location: bogus file or group ID */
|
2020-01-04 12:16:38 +08:00
|
|
|
|
char testfile[TESTFILE_LEN];
|
2016-04-21 04:53:47 +08:00
|
|
|
|
|
|
|
|
|
/* create a different name for a local copy of the data file to be
|
|
|
|
|
opened with rd/wr file permissions in case build and test are
|
|
|
|
|
done in the source directory. */
|
2020-01-04 12:16:38 +08:00
|
|
|
|
HDstrncpy(testfile, FILE_BOGUS, TESTFILE_LEN);
|
|
|
|
|
testfile[TESTFILE_LEN - 1]='\0';
|
2016-04-21 04:53:47 +08:00
|
|
|
|
HDstrncat(testfile, ".copy", 5);
|
|
|
|
|
|
|
|
|
|
/* Make a copy of the data file from svn. */
|
|
|
|
|
if(h5_make_local_copy(FILE_BOGUS, testfile) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
TESTING("object with unknown header message and no flags set");
|
|
|
|
|
|
|
|
|
|
/* Open filename */
|
|
|
|
|
if((fid = H5Fopen(filename, H5F_ACC_RDWR, fapl)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Open FILE_BOGUS */
|
2018-10-25 12:52:47 +08:00
|
|
|
|
if((fid_bogus = H5Fopen(testfile, H5F_ACC_RDONLY, fapl)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Set up location ID depending on bogus_id */
|
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID) {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
/* Open "group" in FILE_BOGUS */
|
2018-03-16 22:03:08 +08:00
|
|
|
|
if((gid_bogus = H5Gopen2(fid_bogus, "group", H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
loc_bogus = gid_bogus;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
2016-03-24 08:38:03 +08:00
|
|
|
|
/* Create "group" in filename */
|
|
|
|
|
if((gid = H5Gcreate2(fid, "group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
loc = gid;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
} else { /* H5O_BOGUS_VALID_ID */
|
2016-03-24 08:38:03 +08:00
|
|
|
|
loc_bogus = fid_bogus;
|
|
|
|
|
loc = fid;
|
|
|
|
|
} /* end else */
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Open the dataset with the unknown header message, but no extra flags */
|
|
|
|
|
if((did = H5Dopen2(loc_bogus, "Dataset1", H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
if(H5Dclose(did) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
2019-01-08 05:20:11 +08:00
|
|
|
|
TESTING("object with unknown header message & 'shareable' flag set");
|
|
|
|
|
|
|
|
|
|
/* Open the dataset with the unknown header message, adn "shareable" flag */
|
|
|
|
|
if((did = H5Dopen2(loc_bogus, "Dataset5", H5P_DEFAULT)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
if(H5Dclose(did) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
2016-02-25 05:30:35 +08:00
|
|
|
|
TESTING("object in r/o file with unknown header message & 'fail if unknown and open for write' flag set");
|
|
|
|
|
|
|
|
|
|
/* Open the dataset with the unknown header message, and "fail if unknown and open for write" flag */
|
|
|
|
|
if((did = H5Dopen2(loc_bogus, "Dataset2", H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
if(H5Dclose(did) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
|
|
|
|
TESTING("object in r/o file with unknown header message & 'fail if unknown always' flag set");
|
|
|
|
|
|
|
|
|
|
/* Attempt to open the dataset with the unknown header message, and "fail if unknown always" flag */
|
|
|
|
|
H5E_BEGIN_TRY {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
did = H5Dopen2(loc_bogus, "Dataset3", H5P_DEFAULT);
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(did >= 0) {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
H5Dclose(did);
|
|
|
|
|
TEST_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
|
|
|
|
TESTING("object with unknown header message & 'mark if unknown' flag set");
|
|
|
|
|
|
|
|
|
|
/* Copy object with "mark if unknown" flag on message into file (FILENAME[0]) that can be modified */
|
|
|
|
|
if(H5Ocopy(loc_bogus, "Dataset4", loc, "Dataset4", H5P_DEFAULT, H5P_DEFAULT) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Closing: filename */
|
2016-03-24 08:38:03 +08:00
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID)
|
|
|
|
|
if(H5Gclose(gid) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
if(H5Fclose(fid) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Re-open filename, with read-only permissions */
|
|
|
|
|
if((fid = H5Fopen(filename, H5F_ACC_RDONLY, fapl)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Set up location ID depending on bogus_id */
|
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID) {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
/* Open "group" in filename */
|
2018-03-16 22:03:08 +08:00
|
|
|
|
if((gid = H5Gopen2(fid, "group", H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
loc = gid;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} else
|
2016-03-24 08:38:03 +08:00
|
|
|
|
loc = fid;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Open the dataset with the "mark if unknown" message */
|
|
|
|
|
if((did = H5Dopen2(loc, "Dataset4", H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Check that the "unknown" message was _NOT_ marked */
|
2018-09-21 01:40:51 +08:00
|
|
|
|
if(H5O__check_msg_marked_test(did, FALSE) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Close the dataset */
|
|
|
|
|
if(H5Dclose(did) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Close "group" in filename depending on bogus_id */
|
2016-03-24 08:38:03 +08:00
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID)
|
|
|
|
|
if(H5Gclose(gid) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Close filename (to flush change to object header) */
|
|
|
|
|
if(H5Fclose(fid) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Re-open filename */
|
|
|
|
|
if((fid = H5Fopen(filename, H5F_ACC_RDWR, fapl)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Set up location ID depending on bogus_id */
|
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID) {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
/* Open "group" in filename */
|
2018-03-16 22:03:08 +08:00
|
|
|
|
if((gid = H5Gopen2(fid, "group", H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
loc = gid;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} else
|
2016-03-24 08:38:03 +08:00
|
|
|
|
loc = fid;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Open the dataset with the "mark if unknown" message */
|
|
|
|
|
if((did = H5Dopen2(loc, "Dataset4", H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Create data space */
|
|
|
|
|
if((sid = H5Screate(H5S_SCALAR)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Create an attribute, to get the object header into write access */
|
|
|
|
|
if((aid = H5Acreate2(did, "Attr", H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Close dataspace */
|
|
|
|
|
if(H5Sclose(sid) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Close attribute */
|
|
|
|
|
if(H5Aclose(aid) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Close the dataset */
|
|
|
|
|
if(H5Dclose(did) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Close "group" in filename depending on bogus_id */
|
2016-03-24 08:38:03 +08:00
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID)
|
|
|
|
|
if(H5Gclose(gid) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Close filename (to flush change to object header) */
|
|
|
|
|
if(H5Fclose(fid) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Re-open filename */
|
|
|
|
|
if((fid = H5Fopen(filename, H5F_ACC_RDONLY, fapl)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Set up location ID depending on bogus_id */
|
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID) {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
/* Open "group" in filename */
|
2018-03-16 22:03:08 +08:00
|
|
|
|
if((gid = H5Gopen2(fid, "group", H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
loc = gid;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} else
|
2016-03-24 08:38:03 +08:00
|
|
|
|
loc = fid;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Re-open the dataset with the "mark if unknown" message */
|
|
|
|
|
if((did = H5Dopen2(loc, "Dataset4", H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Check that the "unknown" message was marked */
|
2018-09-21 01:40:51 +08:00
|
|
|
|
if(H5O__check_msg_marked_test(did, TRUE) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Close the dataset */
|
|
|
|
|
if(H5Dclose(did) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
2018-03-16 22:03:08 +08:00
|
|
|
|
/* Closing: filename */
|
2016-03-24 08:38:03 +08:00
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID)
|
|
|
|
|
if(H5Gclose(gid) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
if(H5Fclose(fid) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
|
|
|
|
/* Closing: FILE_BOGUS */
|
2016-03-24 08:38:03 +08:00
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID)
|
|
|
|
|
if(H5Gclose(gid_bogus) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
if(H5Fclose(fid_bogus) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
TESTING("object in r/w file with unknown header message & 'fail if unknown and open for write' flag set");
|
|
|
|
|
|
|
|
|
|
/* Open FILE_BOGUS with RW intent this time */
|
|
|
|
|
if((fid_bogus = H5Fopen(testfile, H5F_ACC_RDWR, H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Set up location ID */
|
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID) {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
/* Open "group" in FILE_BOGUS */
|
2018-03-16 22:03:08 +08:00
|
|
|
|
if((gid_bogus = H5Gopen2(fid_bogus, "group", H5P_DEFAULT)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
loc_bogus = gid_bogus;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} else
|
2016-03-24 08:38:03 +08:00
|
|
|
|
loc_bogus = fid_bogus;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
/* Attempt to open the dataset with the unknown header message, and "fail if unknown and open for write" flag */
|
|
|
|
|
H5E_BEGIN_TRY {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
did = H5Dopen2(loc_bogus, "Dataset2", H5P_DEFAULT);
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(did >= 0) {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
H5Dclose(did);
|
|
|
|
|
TEST_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
|
|
|
|
TESTING("object in r/w file with unknown header message & 'fail if unknown always' flag set");
|
|
|
|
|
|
|
|
|
|
/* Attempt to open the dataset with the unknown header message, and "fail if unknown always" flag */
|
|
|
|
|
H5E_BEGIN_TRY {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
did = H5Dopen2(loc_bogus, "Dataset3", H5P_DEFAULT);
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(did >= 0) {
|
2016-03-24 08:38:03 +08:00
|
|
|
|
H5Dclose(did);
|
2016-02-25 05:30:35 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Closing: FILE_BOGUS */
|
2016-03-24 08:38:03 +08:00
|
|
|
|
if(bogus_id == H5O_BOGUS_INVALID_ID)
|
|
|
|
|
if(H5Gclose(gid_bogus) < 0)
|
2018-03-16 22:03:08 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
if(H5Fclose(fid_bogus) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
2016-03-24 08:38:03 +08:00
|
|
|
|
return SUCCEED;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Fclose(fid);
|
2016-03-24 08:38:03 +08:00
|
|
|
|
H5Gclose(gid);
|
2016-02-25 05:30:35 +08:00
|
|
|
|
H5Fclose(fid_bogus);
|
2016-03-24 08:38:03 +08:00
|
|
|
|
H5Gclose(gid_bogus);
|
|
|
|
|
H5Dclose(did);
|
|
|
|
|
H5Sclose(sid);
|
|
|
|
|
H5Aclose(aid);
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
|
2016-03-24 08:38:03 +08:00
|
|
|
|
return FAIL;
|
2016-02-25 05:30:35 +08:00
|
|
|
|
} /* test_unknown() */
|
|
|
|
|
|
2018-12-19 03:42:03 +08:00
|
|
|
|
/*
|
|
|
|
|
* Count the number of attributes attached to an object.
|
|
|
|
|
* Returns negative in event of error.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
count_attributes(hid_t dset_id)
|
|
|
|
|
{
|
|
|
|
|
H5O_info_t info;
|
|
|
|
|
|
2020-01-04 12:16:38 +08:00
|
|
|
|
if(H5Oget_info2(dset_id, &info, H5O_INFO_NUM_ATTRS) < 0)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
return -1;
|
|
|
|
|
else
|
|
|
|
|
return (int)info.num_attrs; /* should never exceed int bounds */
|
|
|
|
|
} /* count_attributes */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Get the total space used by the object header.
|
|
|
|
|
* Used by oh_compare()
|
|
|
|
|
* On success, stores size in `size_out` pointer.
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
_oh_getsize(hid_t did, hsize_t *size_out)
|
|
|
|
|
{
|
|
|
|
|
H5O_info_t info;
|
|
|
|
|
if(FAIL == H5Oget_info2(did, &info, H5O_INFO_HDR))
|
|
|
|
|
return FAIL;
|
|
|
|
|
*size_out = info.hdr.space.total;
|
|
|
|
|
return SUCCEED;
|
|
|
|
|
} /* _oh_getsize */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Compare the TOTAL space used by datasets' object headers.
|
|
|
|
|
* Returns negative value if an error occurred,
|
|
|
|
|
* else positive #defined indicator value EQ, LT, GT.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
oh_compare(hid_t did1, hid_t did2)
|
|
|
|
|
{
|
|
|
|
|
hsize_t space1 = 0;
|
|
|
|
|
hsize_t space2 = 0;
|
|
|
|
|
|
|
|
|
|
if(FAIL == _oh_getsize(did1, &space1))
|
|
|
|
|
return -1;
|
|
|
|
|
if(FAIL == _oh_getsize(did2, &space2))
|
|
|
|
|
return -2;
|
|
|
|
|
|
|
|
|
|
if(space1 < space2)
|
|
|
|
|
return LT;
|
|
|
|
|
else if(space1 > space2)
|
|
|
|
|
return GT;
|
|
|
|
|
else
|
|
|
|
|
return EQ;
|
|
|
|
|
} /* oh_compare() */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Demonstrate attribute addition to datasets.
|
|
|
|
|
* Conduct additions side-by-side with a standard datataset and one with
|
|
|
|
|
* minimized dataset object headers.
|
|
|
|
|
*/
|
2019-06-29 17:38:14 +08:00
|
|
|
|
#define ATTR_NAME_MAX 64
|
2019-06-19 08:28:37 +08:00
|
|
|
|
#define ATTR_SHORT "first"
|
|
|
|
|
#define ATTR_LONG "second"
|
|
|
|
|
#define N_ATTRS 64
|
2018-12-19 03:42:03 +08:00
|
|
|
|
static herr_t
|
2018-12-27 04:35:22 +08:00
|
|
|
|
test_minimized_dset_ohdr_attribute_addition(hid_t fapl_id)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
{
|
2019-06-19 08:28:37 +08:00
|
|
|
|
hsize_t dims[1] = {0}; /* dataspace extent */
|
|
|
|
|
char filename[512] = "";
|
|
|
|
|
char attr_name[ATTR_NAME_MAX] = "";
|
|
|
|
|
hid_t fid = H5I_INVALID_HID;
|
|
|
|
|
hid_t dcpl_id = H5I_INVALID_HID;
|
|
|
|
|
hid_t sid = H5I_INVALID_HID;
|
|
|
|
|
hid_t did = H5I_INVALID_HID;
|
|
|
|
|
hid_t aid = H5I_INVALID_HID;
|
|
|
|
|
char *in_buf = NULL;
|
|
|
|
|
char *out_buf = NULL;
|
|
|
|
|
size_t buf_size = 0;
|
|
|
|
|
int out_val = 0;
|
|
|
|
|
int in_val = 0;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
TESTING("adding attributes to datasets created with H5Pset_dset_no_attrs_hint()")
|
|
|
|
|
|
|
|
|
|
/* Create the test file */
|
|
|
|
|
if(NULL == h5_fixname(FILENAME[1], fapl_id, filename, sizeof(filename)))
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if((fid = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl_id)) == H5I_INVALID_HID)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Set the 'no attrs' hint on the dcpl */
|
|
|
|
|
if((dcpl_id = H5Pcreate(H5P_DATASET_CREATE)) == H5I_INVALID_HID)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if(H5Pset_dset_no_attrs_hint(dcpl_id, TRUE) < 0)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* The dataset doesn't need to contain data */
|
|
|
|
|
dims[0] = 0;
|
|
|
|
|
if((sid = H5Screate_simple(1, dims, NULL)) == H5I_INVALID_HID)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Create the dataset */
|
|
|
|
|
if((did = H5Dcreate2(fid, "H5Pset_dset_no_attrs_hint", H5T_NATIVE_INT, sid, H5P_DEFAULT, dcpl_id, H5P_DEFAULT)) == H5I_INVALID_HID)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Close */
|
|
|
|
|
if(H5Pclose(dcpl_id) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if(H5Sclose(sid) < 0)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/**********************************************
|
|
|
|
|
* ADD A (STRING) ATTRIBUTE AND MANIPULATE IT *
|
|
|
|
|
**********************************************/
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
buf_size = HDstrlen(ATTR_LONG) + 1;
|
|
|
|
|
if(NULL == (in_buf = (char *)HDcalloc(buf_size, sizeof(char))))
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if(NULL == (out_buf = (char *)HDcalloc(buf_size, sizeof(char))))
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Create a string attribute on the dataset
|
|
|
|
|
*
|
|
|
|
|
* It has to be long enough to hold the longest string we're going to write
|
|
|
|
|
* to it.
|
2018-12-19 03:42:03 +08:00
|
|
|
|
*/
|
2019-06-19 08:28:37 +08:00
|
|
|
|
dims[0] = buf_size;
|
|
|
|
|
if((sid = H5Screate_simple(1, dims, NULL)) == H5I_INVALID_HID)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if((aid = H5Acreate2(did, "string_attr", H5T_NATIVE_CHAR, sid, H5P_DEFAULT, H5P_DEFAULT)) == H5I_INVALID_HID)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Write attribute data */
|
|
|
|
|
HDstrcpy(in_buf, ATTR_SHORT);
|
|
|
|
|
if(H5Awrite(aid, H5T_NATIVE_CHAR, in_buf) < 0)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Make sure the count is correct */
|
|
|
|
|
if(count_attributes(did) != 1)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Read the data back and verify */
|
|
|
|
|
if(H5Aread(aid, H5T_NATIVE_CHAR, out_buf) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if(HDstrcmp(in_buf, out_buf))
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* modify the string attribute */
|
|
|
|
|
HDmemset(in_buf, 0, buf_size);
|
|
|
|
|
HDstrcpy(in_buf, ATTR_LONG);
|
|
|
|
|
if(H5Awrite(aid, H5T_NATIVE_CHAR, in_buf) < 0)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
if(count_attributes(did) != 1)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Read the data back and verify */
|
|
|
|
|
if(H5Aread(aid, H5T_NATIVE_CHAR, out_buf) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if(HDstrcmp(in_buf, out_buf))
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Close */
|
|
|
|
|
if(H5Sclose(sid) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if(H5Aclose(aid) < 0)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/***************************************
|
|
|
|
|
* ADD A BUNCH OF (INTEGER) ATTRIBUTES *
|
|
|
|
|
***************************************/
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
if((sid = H5Screate(H5S_SCALAR)) == H5I_INVALID_HID)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Loop over a reasonable number of attributes */
|
|
|
|
|
for(i = 0; i < N_ATTRS; i++) {
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Set the attribute's name */
|
|
|
|
|
if(HDsnprintf(attr_name, ATTR_NAME_MAX, "int_attr_%d", i) < 0)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Create an integer attribute on the dataset */
|
|
|
|
|
if((aid = H5Acreate2(did, attr_name, H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT)) == H5I_INVALID_HID)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Write attribute data */
|
|
|
|
|
in_val = i;
|
|
|
|
|
if(H5Awrite(aid, H5T_NATIVE_INT, &in_val) < 0)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Make sure the count is correct (already has one attribute) */
|
|
|
|
|
if(count_attributes(did) != i + 2)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Read the data back and verify */
|
|
|
|
|
if(H5Aread(aid, H5T_NATIVE_INT, &out_val) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if(in_val != out_val)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Close */
|
|
|
|
|
if(H5Aclose(aid) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
}
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Close */
|
|
|
|
|
if(H5Sclose(sid) < 0)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Close the remaining IDs */
|
|
|
|
|
if(H5Dclose(did) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if(H5Fclose(fid) < 0)
|
|
|
|
|
TEST_ERROR;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Free memory */
|
|
|
|
|
HDfree(in_buf);
|
|
|
|
|
HDfree(out_buf);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
PASSED();
|
2018-12-19 03:42:03 +08:00
|
|
|
|
return SUCCEED;
|
|
|
|
|
|
|
|
|
|
error :
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
(void)H5Pclose(dcpl_id);
|
2019-06-19 08:28:37 +08:00
|
|
|
|
(void)H5Sclose(sid);
|
|
|
|
|
(void)H5Dclose(did);
|
|
|
|
|
(void)H5Aclose(aid);
|
|
|
|
|
(void)H5Fclose(fid);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
} H5E_END_TRY;
|
2019-06-19 08:28:37 +08:00
|
|
|
|
|
|
|
|
|
HDfree(in_buf);
|
|
|
|
|
HDfree(out_buf);
|
|
|
|
|
|
2018-12-19 03:42:03 +08:00
|
|
|
|
return FAIL;
|
2018-12-27 04:35:22 +08:00
|
|
|
|
} /* test_minimized_dset_ohdr_attribute_addition */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Compare header sizes against when headers have been minimized.
|
2018-12-20 04:57:38 +08:00
|
|
|
|
* Repeats tests with headers "compact" and normal.
|
2018-12-19 03:42:03 +08:00
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
2018-12-27 04:35:22 +08:00
|
|
|
|
test_minimized_dset_ohdr_size_comparisons(hid_t fapl_id)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
{
|
2018-12-20 04:57:38 +08:00
|
|
|
|
hsize_t array_10[1] = {10}; /* dataspace extents */
|
|
|
|
|
unsigned compact = 0;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
/* IDs that are file-agnostic */
|
|
|
|
|
hid_t dspace_id = -1;
|
|
|
|
|
hid_t int_type_id = -1;
|
|
|
|
|
hid_t dcpl_minimize = -1;
|
|
|
|
|
hid_t dcpl_dontmin = -1;
|
2018-12-20 04:57:38 +08:00
|
|
|
|
hid_t dcpl_default = -1;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
/* IDs for non-minimized file open */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
hid_t file_f_id = -1; /* lower 'f' for standard file setting */
|
|
|
|
|
hid_t dset_f_x_id = -1; /* 'x' for default */
|
|
|
|
|
hid_t dset_f_N_id = -1; /* 'N' for explcit non-minimized dset */
|
2018-12-27 04:35:22 +08:00
|
|
|
|
hid_t dset_f_Y_id = -1; /* 'Y' for minimized dset */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
/* IDs for minimized file open */
|
|
|
|
|
hid_t file_F_id = -1; /* upper 'F' for minimized file setting */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
hid_t dset_F_x_id = -1; /* 'x' for default */
|
|
|
|
|
hid_t dset_F_N_id = -1; /* 'N' for explcit non-minimized dset */
|
2018-12-27 04:35:22 +08:00
|
|
|
|
hid_t dset_F_Y_id = -1; /* 'Y' for minimized dset */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
char filename_a[512] = "";
|
|
|
|
|
char filename_b[512] = "";
|
|
|
|
|
|
|
|
|
|
herr_t ret;
|
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
/* dataset suffixes:
|
|
|
|
|
* | default | minimize | don't minimize (dcpl-set)
|
|
|
|
|
* ---------------+---------+----------+---------------
|
|
|
|
|
* file-default | f_x | f_Y | f_N
|
|
|
|
|
* ---------------+---------+----------+---------------
|
|
|
|
|
* file-minimized | F_x | F_Y | F_N
|
|
|
|
|
*/
|
|
|
|
|
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
/*********
|
|
|
|
|
* SETUP *
|
|
|
|
|
*********/
|
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
/* Set filenames (not in a test, can't use TEST_ERROR) */
|
2019-01-06 13:06:45 +08:00
|
|
|
|
if(h5_fixname(FILENAME[1], fapl_id, filename_a, sizeof(filename_a)) == NULL)
|
2019-06-19 08:28:37 +08:00
|
|
|
|
return FAIL;
|
2019-01-06 13:06:45 +08:00
|
|
|
|
if(h5_fixname(FILENAME[2], fapl_id, filename_b, sizeof(filename_b)) == NULL)
|
2019-06-19 08:28:37 +08:00
|
|
|
|
return FAIL;
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
for (compact = 0; compact < 2; compact++) { /* 0 or 1 */
|
2019-06-19 08:28:37 +08:00
|
|
|
|
|
|
|
|
|
if(compact)
|
|
|
|
|
TESTING("minimized dset object headers size comparisons (compact)")
|
|
|
|
|
else
|
|
|
|
|
TESTING("minimized dset object headers size comparisons")
|
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
dcpl_default = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_default < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dcpl_minimize = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_minimize < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_dset_no_attrs_hint(dcpl_minimize, TRUE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
dcpl_dontmin = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_dontmin < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_dset_no_attrs_hint(dcpl_dontmin, FALSE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(compact) {
|
|
|
|
|
ret = H5Pset_layout(dcpl_default, H5D_COMPACT);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_layout(dcpl_minimize, H5D_COMPACT);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_layout(dcpl_dontmin, H5D_COMPACT);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
2019-06-19 08:28:37 +08:00
|
|
|
|
}
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
dspace_id = H5Screate_simple(1, array_10, NULL);
|
|
|
|
|
if(dspace_id < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
int_type_id = H5Tcopy(H5T_NATIVE_INT);
|
|
|
|
|
if(int_type_id < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
file_f_id = H5Fcreate(filename_a, H5F_ACC_TRUNC, H5P_DEFAULT, fapl_id);
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(file_f_id < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_f_x_id = H5Dcreate2(file_f_id, "default", int_type_id, dspace_id, H5P_DEFAULT, dcpl_default, H5P_DEFAULT);
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(dset_f_x_id < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_f_N_id = H5Dcreate2(file_f_id, "dsetNOT", int_type_id, dspace_id, H5P_DEFAULT, dcpl_dontmin, H5P_DEFAULT);
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(dset_f_N_id < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_f_Y_id = H5Dcreate2(file_f_id, "dsetMIN", int_type_id, dspace_id, H5P_DEFAULT, dcpl_minimize, H5P_DEFAULT);
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(dset_f_x_id < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
file_F_id = H5Fcreate(filename_b, H5F_ACC_TRUNC, H5P_DEFAULT, fapl_id);
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(file_F_id < 0) TEST_ERROR
|
|
|
|
|
ret = H5Fset_dset_no_attrs_hint(file_F_id, TRUE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_F_x_id = H5Dcreate2(file_F_id, "default", int_type_id, dspace_id, H5P_DEFAULT, dcpl_default, H5P_DEFAULT);
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(dset_F_x_id < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_F_N_id = H5Dcreate2(file_F_id, "dsetNOT", int_type_id, dspace_id, H5P_DEFAULT, dcpl_dontmin, H5P_DEFAULT);
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(dset_F_N_id < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_F_Y_id = H5Dcreate2(file_F_id, "dsetMIN", int_type_id, dspace_id, H5P_DEFAULT, dcpl_minimize, H5P_DEFAULT);
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(dset_F_Y_id < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
/*********
|
|
|
|
|
* TESTS *
|
|
|
|
|
*********/
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(oh_compare(dset_f_x_id, dset_f_x_id) != EQ) TEST_ERROR /* identity */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(oh_compare(dset_f_x_id, dset_f_N_id) != EQ) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_f_x_id, dset_f_Y_id) != GT) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_f_N_id, dset_f_Y_id) != GT) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(oh_compare(dset_F_x_id, dset_F_N_id) != EQ) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_F_x_id, dset_F_Y_id) != EQ) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_F_N_id, dset_F_Y_id) != EQ) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(oh_compare(dset_F_x_id, dset_f_Y_id) != EQ) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_F_x_id, dset_f_x_id) != LT) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
/************
|
|
|
|
|
* TEARDOWN *
|
|
|
|
|
************/
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(H5Sclose(dspace_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Tclose(int_type_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_default) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_minimize) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_dontmin) < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(H5Fclose(file_f_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_f_x_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_f_N_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_f_Y_id) < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
if(H5Fclose(file_F_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_F_x_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_F_N_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_F_Y_id) < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2019-06-19 08:28:37 +08:00
|
|
|
|
PASSED()
|
|
|
|
|
|
2018-12-20 04:57:38 +08:00
|
|
|
|
} /* compact and non-compact */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
return SUCCEED;
|
|
|
|
|
|
|
|
|
|
error :
|
|
|
|
|
H5E_BEGIN_TRY {
|
2018-12-20 04:57:38 +08:00
|
|
|
|
(void)H5Pclose(dcpl_default);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
(void)H5Pclose(dcpl_minimize);
|
|
|
|
|
(void)H5Pclose(dcpl_dontmin);
|
|
|
|
|
(void)H5Sclose(dspace_id);
|
|
|
|
|
(void)H5Tclose(int_type_id);
|
|
|
|
|
|
|
|
|
|
(void)H5Fclose(file_f_id);
|
|
|
|
|
(void)H5Dclose(dset_f_x_id);
|
|
|
|
|
(void)H5Dclose(dset_f_N_id);
|
|
|
|
|
(void)H5Dclose(dset_f_Y_id);
|
|
|
|
|
|
|
|
|
|
(void)H5Fclose(file_F_id);
|
|
|
|
|
(void)H5Dclose(dset_F_x_id);
|
|
|
|
|
(void)H5Dclose(dset_F_N_id);
|
|
|
|
|
(void)H5Dclose(dset_F_Y_id);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return FAIL;
|
2018-12-27 04:35:22 +08:00
|
|
|
|
} /* test_minimized_dset_ohdr_size_comparisons */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test minimized dataset object header with filter/pipeline message
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
2018-12-27 04:35:22 +08:00
|
|
|
|
test_minimized_dset_ohdr_with_filter(hid_t fapl_id)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
{
|
|
|
|
|
char filename[512] = "";
|
|
|
|
|
const hsize_t extents[1] = {1024}; /* extents of dataspace */
|
|
|
|
|
const unsigned filter_values[] = {0}; /* TBD */
|
|
|
|
|
const hsize_t chunk_dim[] = {32}; /* needed for filter */
|
|
|
|
|
const int ndims = 1;
|
|
|
|
|
hid_t dspace_id = -1;
|
|
|
|
|
hid_t dtype_id = -1;
|
|
|
|
|
hid_t dcpl_xZ_id = -1;
|
|
|
|
|
hid_t dcpl_mx_id = -1;
|
|
|
|
|
hid_t dcpl_mZ_id = -1;
|
|
|
|
|
hid_t dset_xx_id = -1;
|
|
|
|
|
hid_t dset_xZ_id = -1;
|
|
|
|
|
hid_t dset_mx_id = -1;
|
|
|
|
|
hid_t dset_mZ_id = -1;
|
|
|
|
|
hid_t file_id = -1;
|
|
|
|
|
herr_t ret;
|
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
/* dcpl suffixes:
|
|
|
|
|
* | default | minimize
|
|
|
|
|
* ----------+---------+---------
|
|
|
|
|
* no filter | xx | mx
|
|
|
|
|
* ----------+---------+---------
|
|
|
|
|
* filter | xZ | mZ
|
|
|
|
|
*/
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
TESTING("minimized dset object headers with filter message");
|
|
|
|
|
|
|
|
|
|
/*********
|
|
|
|
|
* SETUP *
|
|
|
|
|
*********/
|
|
|
|
|
|
2019-01-06 13:06:45 +08:00
|
|
|
|
if(h5_fixname(FILENAME[1], fapl_id, filename, sizeof(filename)) == NULL)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dcpl_mx_id = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_mx_id < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_dset_no_attrs_hint(dcpl_mx_id, TRUE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dcpl_xZ_id = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_xZ_id < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_chunk(dcpl_xZ_id, ndims, chunk_dim);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_filter(dcpl_xZ_id, H5Z_FILTER_DEFLATE, H5Z_FLAG_OPTIONAL, 0, filter_values);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
dcpl_mZ_id = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_mZ_id < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_dset_no_attrs_hint(dcpl_mZ_id, TRUE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_chunk(dcpl_mZ_id, ndims, chunk_dim);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_filter( dcpl_mZ_id, H5Z_FILTER_DEFLATE, H5Z_FLAG_OPTIONAL, 0, filter_values);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dspace_id = H5Screate_simple(1, extents, extents);
|
|
|
|
|
if(dspace_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dtype_id = H5Tcopy(H5T_NATIVE_INT);
|
|
|
|
|
if(dtype_id < 0) TEST_ERROR
|
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
file_id = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl_id);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(file_id < 0) TEST_ERROR
|
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_xx_id = H5Dcreate2(file_id, "xx", dtype_id, dspace_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_xx_id < 0) TEST_ERROR
|
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_mx_id = H5Dcreate2(file_id, "Mx", dtype_id, dspace_id, H5P_DEFAULT, dcpl_mx_id, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_mx_id < 0) TEST_ERROR
|
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_xZ_id = H5Dcreate2(file_id, "xZ", dtype_id, dspace_id, H5P_DEFAULT, dcpl_xZ_id, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_xZ_id < 0) TEST_ERROR
|
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_mZ_id = H5Dcreate2(file_id, "MZ", dtype_id, dspace_id, H5P_DEFAULT, dcpl_mZ_id, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_mZ_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
/*********
|
|
|
|
|
* TESTS *
|
|
|
|
|
*********/
|
|
|
|
|
|
|
|
|
|
if(oh_compare(dset_mx_id, dset_xx_id) != LT) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_mx_id, dset_xZ_id) != LT) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_mZ_id, dset_mx_id) != GT) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_mZ_id, dset_xZ_id) != LT) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
/************
|
|
|
|
|
* TEARDOWN *
|
|
|
|
|
************/
|
|
|
|
|
|
|
|
|
|
if(H5Sclose(dspace_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Tclose(dtype_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_xZ_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_mx_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_mZ_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_xx_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_xZ_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_mx_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_mZ_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Fclose(file_id) < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
PASSED()
|
|
|
|
|
return SUCCEED;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
(void)H5Sclose(dspace_id);
|
|
|
|
|
(void)H5Tclose(dtype_id);
|
|
|
|
|
(void)H5Pclose(dcpl_xZ_id);
|
|
|
|
|
(void)H5Pclose(dcpl_mx_id);
|
|
|
|
|
(void)H5Pclose(dcpl_mZ_id);
|
|
|
|
|
(void)H5Dclose(dset_xx_id);
|
|
|
|
|
(void)H5Dclose(dset_xZ_id);
|
|
|
|
|
(void)H5Dclose(dset_mx_id);
|
|
|
|
|
(void)H5Dclose(dset_mZ_id);
|
|
|
|
|
(void)H5Fclose(file_id);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return FAIL;
|
2018-12-27 04:35:22 +08:00
|
|
|
|
} /* test_minimized_dset_ohdr_with_filter */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test minimized dataset object header and recording modification times.
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
2018-12-27 04:35:22 +08:00
|
|
|
|
test_minimized_dset_ohdr_modification_times(hid_t _fapl_id)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
{
|
|
|
|
|
/* test-local structure for parameterized testing
|
|
|
|
|
*/
|
|
|
|
|
struct testcase {
|
|
|
|
|
unsigned oh_version;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
char filename[512] = "";
|
|
|
|
|
const hsize_t extents[1] = {128}; /* extents of dataspace */
|
|
|
|
|
hid_t dspace_id = -1;
|
|
|
|
|
hid_t dtype_id = -1;
|
|
|
|
|
hid_t dcpl_xT_id = -1; /* Track modtime */
|
|
|
|
|
hid_t dcpl_mx_id = -1; /* minimized */
|
|
|
|
|
hid_t dcpl_mT_id = -1; /* minimized, Track */
|
|
|
|
|
hid_t dcpl_mN_id = -1; /* minimized, do Not track */
|
|
|
|
|
hid_t dset_xx_id = -1;
|
|
|
|
|
hid_t dset_xT_id = -1;
|
|
|
|
|
hid_t dset_mx_id = -1;
|
|
|
|
|
hid_t dset_mT_id = -1;
|
|
|
|
|
hid_t dset_mN_id = -1;
|
|
|
|
|
hid_t file_id = -1;
|
|
|
|
|
hid_t fapl_id = -1;
|
|
|
|
|
herr_t ret;
|
|
|
|
|
|
|
|
|
|
unsigned i = 0; /* for testcase loop */
|
|
|
|
|
unsigned n_cases = 2; /* must match `cases` array size below */
|
|
|
|
|
struct testcase cases[2] = {
|
|
|
|
|
{ 1, }, /* version 1 object header */
|
|
|
|
|
{ 2, }, /* version 2 object header */
|
|
|
|
|
};
|
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
/* dcpl suffixes:
|
|
|
|
|
* | default | minimize
|
|
|
|
|
* ------------+---------+---------
|
|
|
|
|
* default | xx | mx
|
|
|
|
|
* ------------+---------+---------
|
|
|
|
|
* don't track | xN | mN
|
|
|
|
|
* ------------+---------+---------
|
|
|
|
|
* track | xT | mT
|
|
|
|
|
*/
|
|
|
|
|
|
2018-12-19 03:42:03 +08:00
|
|
|
|
TESTING("minimized dset object headers with modification times");
|
|
|
|
|
|
|
|
|
|
/*********
|
|
|
|
|
* SETUP *
|
|
|
|
|
*********/
|
|
|
|
|
|
2019-01-06 13:06:45 +08:00
|
|
|
|
if(h5_fixname(FILENAME[1], _fapl_id, filename, sizeof(filename)) == NULL)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dcpl_mx_id = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_mx_id < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_dset_no_attrs_hint(dcpl_mx_id, TRUE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dcpl_xT_id = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_xT_id < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_obj_track_times(dcpl_xT_id, TRUE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dcpl_mT_id = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_mT_id < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_dset_no_attrs_hint(dcpl_mT_id, TRUE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_obj_track_times(dcpl_mT_id, TRUE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dcpl_mN_id = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_mN_id < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_dset_no_attrs_hint(dcpl_mN_id, TRUE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
ret = H5Pset_obj_track_times(dcpl_mN_id, FALSE);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dspace_id = H5Screate_simple(1, extents, extents);
|
|
|
|
|
if(dspace_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dtype_id = H5Tcopy(H5T_NATIVE_INT);
|
|
|
|
|
if(dtype_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < n_cases; i++) {
|
|
|
|
|
|
|
|
|
|
/* -------------- *
|
|
|
|
|
* per-case setup *
|
|
|
|
|
* -------------- */
|
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
fapl_id = H5Pcopy(_fapl_id);
|
|
|
|
|
if(fapl_id < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
if(cases[i].oh_version > 1) {
|
|
|
|
|
ret = H5Pset_libver_bounds(fapl_id, H5F_LIBVER_V18, H5F_LIBVER_V110);
|
|
|
|
|
if(ret < 0) TEST_ERROR
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
file_id = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl_id);
|
|
|
|
|
if(file_id < 0) TEST_ERROR
|
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_xx_id = H5Dcreate2( file_id, "xx", dtype_id, dspace_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_xx_id < 0) TEST_ERROR
|
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_mx_id = H5Dcreate2(file_id, "mx", dtype_id, dspace_id, H5P_DEFAULT, dcpl_mx_id, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_mx_id < 0) TEST_ERROR
|
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_xT_id = H5Dcreate2(file_id, "xT", dtype_id, dspace_id, H5P_DEFAULT, dcpl_xT_id, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_xT_id < 0) TEST_ERROR
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_mT_id = H5Dcreate2(file_id, "mT", dtype_id, dspace_id, H5P_DEFAULT, dcpl_mT_id, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_mT_id < 0) TEST_ERROR
|
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_mN_id = H5Dcreate2(file_id, "mN", dtype_id, dspace_id, H5P_DEFAULT, dcpl_mN_id, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_mN_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
/* ----- *
|
|
|
|
|
* TESTS *
|
|
|
|
|
* ----- */
|
|
|
|
|
|
|
|
|
|
/* sanity check */
|
|
|
|
|
if(oh_compare(dset_mx_id, dset_xx_id) != LT) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_mx_id, dset_xT_id) != LT) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
if(oh_compare(dset_xx_id, dset_xT_id) != EQ) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_mx_id, dset_mT_id) != EQ) TEST_ERROR
|
|
|
|
|
if(oh_compare(dset_mN_id, dset_mT_id) != LT) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
if(oh_compare(dset_mT_id, dset_xT_id) != LT) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
/* ----------------- *
|
|
|
|
|
* per-case teardown *
|
|
|
|
|
* ----------------- */
|
|
|
|
|
|
|
|
|
|
if(H5Dclose(dset_xx_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_xT_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_mx_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_mT_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_mN_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Fclose(file_id) < 0) TEST_ERROR
|
2018-12-27 04:35:22 +08:00
|
|
|
|
if(H5Pclose(fapl_id) < 0) TEST_ERROR
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
} /* for each version tested */
|
|
|
|
|
|
|
|
|
|
/************
|
|
|
|
|
* TEARDOWN *
|
|
|
|
|
************/
|
|
|
|
|
|
|
|
|
|
if(H5Sclose(dspace_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Tclose(dtype_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_xT_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_mx_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_mT_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_mN_id) < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
PASSED()
|
|
|
|
|
return SUCCEED;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
(void)H5Sclose(dspace_id);
|
|
|
|
|
(void)H5Tclose(dtype_id);
|
|
|
|
|
(void)H5Pclose(dcpl_xT_id);
|
|
|
|
|
(void)H5Pclose(dcpl_mx_id);
|
|
|
|
|
(void)H5Pclose(dcpl_mT_id);
|
|
|
|
|
(void)H5Pclose(dcpl_mN_id);
|
|
|
|
|
(void)H5Dclose(dset_xx_id);
|
|
|
|
|
(void)H5Dclose(dset_xT_id);
|
|
|
|
|
(void)H5Dclose(dset_mx_id);
|
|
|
|
|
(void)H5Dclose(dset_mT_id);
|
|
|
|
|
(void)H5Dclose(dset_mN_id);
|
|
|
|
|
(void)H5Fclose(file_id);
|
|
|
|
|
(void)H5Pclose(fapl_id);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return FAIL;
|
2018-12-27 04:35:22 +08:00
|
|
|
|
} /* test_minimized_dset_ohdr_modification_times */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test minimized dataset object header with a fill value set.
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
2018-12-27 04:35:22 +08:00
|
|
|
|
test_minimized_dset_ohdr_fillvalue_backwards_compatability(hid_t _fapl_id)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
{
|
|
|
|
|
char filename[512] = "";
|
|
|
|
|
const hsize_t extents[1] = {64}; /* extents of dataspace */
|
|
|
|
|
const int fill[1] = {343}; /* fill value of dataset */
|
|
|
|
|
hid_t file_id = -1;
|
|
|
|
|
hid_t dtype_id = -1;
|
|
|
|
|
hid_t dspace_id = -1;
|
|
|
|
|
hid_t dcpl_id = -1;
|
|
|
|
|
hid_t fapl_id = -1;
|
|
|
|
|
hid_t dset_0_id = -1;
|
|
|
|
|
hid_t dset_1_id = -1;
|
|
|
|
|
herr_t ret;
|
|
|
|
|
|
|
|
|
|
/*********
|
|
|
|
|
* SETUP *
|
|
|
|
|
*********/
|
|
|
|
|
|
|
|
|
|
TESTING("minimized dset object headers with fill values and different libver support");
|
|
|
|
|
|
2019-01-06 13:06:45 +08:00
|
|
|
|
fapl_id = H5Pcopy(_fapl_id);
|
|
|
|
|
if(fapl_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
if(h5_fixname(FILENAME[1], fapl_id, filename, sizeof(filename)) == NULL)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dspace_id = H5Screate_simple(1, extents, extents);
|
|
|
|
|
if(dspace_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dtype_id = H5Tcopy(H5T_NATIVE_INT);
|
|
|
|
|
if(dtype_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
dcpl_id = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
if(dcpl_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
ret = H5Pset_dset_no_attrs_hint(dcpl_id, TRUE);
|
|
|
|
|
if(ret == FAIL) TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
ret = H5Pset_fill_value(dcpl_id, dtype_id, fill);
|
|
|
|
|
if(ret == FAIL) TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
ret = H5Pset_libver_bounds(fapl_id, H5F_LIBVER_EARLIEST, H5F_LIBVER_LATEST);
|
|
|
|
|
if(ret == FAIL) TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
file_id = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl_id);
|
|
|
|
|
if(file_id < 0) TEST_ERROR
|
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_0_id = H5Dcreate2(file_id, "fullrange", dtype_id, dspace_id, H5P_DEFAULT, dcpl_id, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_0_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
/* Close file and re-open with different libver bounds.
|
|
|
|
|
* Dataset "fullrange" must also be closed for expected reopen behavior.
|
|
|
|
|
*/
|
|
|
|
|
if(H5Fclose(file_id) < 0) TEST_ERROR;
|
|
|
|
|
if(H5Dclose(dset_0_id) < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
ret = H5Pset_libver_bounds(fapl_id, H5F_LIBVER_V18, H5F_LIBVER_LATEST);
|
|
|
|
|
if(ret == FAIL) TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
file_id = H5Fopen(filename, H5F_ACC_RDWR, fapl_id);
|
|
|
|
|
if(file_id < 0) TEST_ERROR
|
|
|
|
|
|
2019-01-04 04:44:57 +08:00
|
|
|
|
dset_1_id = H5Dcreate2(file_id, "upperrange", dtype_id, dspace_id, H5P_DEFAULT, dcpl_id, H5P_DEFAULT);
|
2018-12-19 03:42:03 +08:00
|
|
|
|
if(dset_1_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
/* re-open "fullrange" dataset
|
|
|
|
|
*/
|
|
|
|
|
dset_0_id = H5Dopen2(file_id, "fullrange", H5P_DEFAULT);
|
|
|
|
|
if(dset_0_id < 0) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
/*********
|
|
|
|
|
* TESTS *
|
|
|
|
|
*********/
|
|
|
|
|
|
|
|
|
|
/* dset not supporting pre-1.08 should be smaller? */
|
|
|
|
|
if(oh_compare(dset_1_id, dset_0_id) != LT) TEST_ERROR
|
|
|
|
|
|
|
|
|
|
/************
|
|
|
|
|
* TEARDOWN *
|
|
|
|
|
************/
|
|
|
|
|
|
|
|
|
|
if(H5Sclose(dspace_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Tclose(dtype_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(dcpl_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Pclose(fapl_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_0_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Dclose(dset_1_id) < 0) TEST_ERROR
|
|
|
|
|
if(H5Fclose(file_id) < 0) TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
PASSED()
|
|
|
|
|
return SUCCEED;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
(void)H5Sclose(dspace_id);
|
|
|
|
|
(void)H5Tclose(dtype_id);
|
|
|
|
|
(void)H5Pclose(dcpl_id);
|
|
|
|
|
(void)H5Pclose(fapl_id);
|
|
|
|
|
(void)H5Dclose(dset_0_id);
|
|
|
|
|
(void)H5Dclose(dset_1_id);
|
|
|
|
|
(void)H5Fclose(file_id);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return FAIL;
|
2018-12-27 04:35:22 +08:00
|
|
|
|
} /* test_minimized_dset_ohdr_fillvalue_backwards_compatability */
|
2018-12-19 03:42:03 +08:00
|
|
|
|
|
2018-09-21 01:40:51 +08:00
|
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
|
/*-------------------------------------------------------------------------
|
2018-03-16 22:03:08 +08:00
|
|
|
|
* Function: main
|
1998-11-25 22:58:22 +08:00
|
|
|
|
*
|
[svn-r18618] Description:
Add new internal object header routines to query the header chunk that
a message is in, and to lock/unlock a message into a chunk (so it doesn't get
moved into another chunk during allocation/free events).
Also, move dataspace message to beginning of object header messages
added to a dataset's object header, so it can be locked into chunk #0 (when
performing SWMR operations).
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-04-23 05:59:31 +08:00
|
|
|
|
* Purpose: Exercise private object header behavior and routines
|
1998-11-25 22:58:22 +08:00
|
|
|
|
*
|
2018-02-14 23:40:39 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: 1
|
1998-11-25 22:58:22 +08:00
|
|
|
|
*
|
2018-09-21 01:40:51 +08:00
|
|
|
|
* Programmer: Robb Matzke
|
1998-11-25 22:58:22 +08:00
|
|
|
|
* Tuesday, November 24, 1998
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
main(void)
|
|
|
|
|
{
|
2018-02-14 01:05:08 +08:00
|
|
|
|
hid_t fapl = -1;
|
|
|
|
|
hid_t file = -1;
|
|
|
|
|
H5F_t *f = NULL;
|
2019-01-06 13:06:45 +08:00
|
|
|
|
const char *env_h5_drvr; /* File driver value from environment */
|
|
|
|
|
hbool_t single_file_vfd; /* Whether VFD used stores data in a single file */
|
2018-02-14 01:05:08 +08:00
|
|
|
|
char filename[1024];
|
|
|
|
|
H5O_hdr_info_t hdr_info; /* Object info */
|
|
|
|
|
H5O_loc_t oh_loc; /* Object header locations */
|
|
|
|
|
H5F_libver_t low, high; /* File format bounds */
|
|
|
|
|
time_t time_new, ro;
|
|
|
|
|
int i; /* Local index variable */
|
2018-03-19 11:51:19 +08:00
|
|
|
|
hbool_t api_ctx_pushed = FALSE; /* Whether API context pushed */
|
2018-02-14 01:05:08 +08:00
|
|
|
|
herr_t ret; /* Generic return value */
|
2008-09-16 23:52:51 +08:00
|
|
|
|
|
2019-01-06 13:06:45 +08:00
|
|
|
|
/* Get the VFD to use */
|
|
|
|
|
env_h5_drvr = HDgetenv("HDF5_DRIVER");
|
|
|
|
|
if(env_h5_drvr == NULL)
|
|
|
|
|
env_h5_drvr = "nomatch";
|
|
|
|
|
|
|
|
|
|
/* Check for VFD which stores data in multiple files */
|
|
|
|
|
single_file_vfd = (hbool_t)(HDstrcmp(env_h5_drvr, "split") && HDstrcmp(env_h5_drvr, "multi") && HDstrcmp(env_h5_drvr, "family"));
|
|
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
|
/* Reset library */
|
|
|
|
|
h5_reset();
|
|
|
|
|
fapl = h5_fileaccess();
|
|
|
|
|
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
|
2007-05-25 02:36:53 +08:00
|
|
|
|
|
2018-03-19 11:51:19 +08:00
|
|
|
|
/* Push API context */
|
|
|
|
|
if(H5CX_push() < 0) FAIL_STACK_ERROR
|
|
|
|
|
api_ctx_pushed = TRUE;
|
|
|
|
|
|
2018-02-14 01:05:08 +08:00
|
|
|
|
/* Loop through all the combinations of low/high library format bounds */
|
2019-12-04 16:49:52 +08:00
|
|
|
|
for(low = H5F_LIBVER_EARLIEST; low < H5F_LIBVER_NBOUNDS; low++) {
|
|
|
|
|
for(high = H5F_LIBVER_EARLIEST; high < H5F_LIBVER_NBOUNDS; high++) {
|
2019-07-03 12:43:45 +08:00
|
|
|
|
const char *low_string; /* Message for library version low bound */
|
|
|
|
|
const char *high_string; /* Message for library version high bound */
|
2019-04-05 05:29:37 +08:00
|
|
|
|
char msg[80]; /* Message for file format version */
|
2007-05-25 02:36:53 +08:00
|
|
|
|
|
2018-02-14 01:05:08 +08:00
|
|
|
|
/* Set version bounds before opening the file */
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
ret = H5Pset_libver_bounds(fapl, low, high);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
|
|
|
|
|
if (ret < 0) /* Invalid low/high combinations */
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Display info about testing */
|
2019-04-05 05:29:37 +08:00
|
|
|
|
low_string = h5_get_version_string(low);
|
|
|
|
|
high_string = h5_get_version_string(high);
|
2019-08-06 05:57:27 +08:00
|
|
|
|
HDsprintf(msg, "Using file format version: (%s, %s)", low_string,
|
2018-03-16 22:03:08 +08:00
|
|
|
|
high_string);
|
2018-02-14 01:05:08 +08:00
|
|
|
|
HDputs(msg);
|
2007-05-25 02:36:53 +08:00
|
|
|
|
|
2016-03-24 08:38:03 +08:00
|
|
|
|
/* test on object continuation block */
|
|
|
|
|
if(test_cont(filename, fapl) < 0)
|
|
|
|
|
TEST_ERROR
|
2009-02-05 23:29:27 +08:00
|
|
|
|
|
2007-05-25 02:36:53 +08:00
|
|
|
|
/* Create the file to operate on */
|
[svn-r18618] Description:
Add new internal object header routines to query the header chunk that
a message is in, and to lock/unlock a message into a chunk (so it doesn't get
moved into another chunk during allocation/free events).
Also, move dataspace message to beginning of object header messages
added to a dataset's object header, so it can be locked into chunk #0 (when
performing SWMR operations).
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-04-23 05:59:31 +08:00
|
|
|
|
if((file = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0)
|
2016-03-24 08:38:03 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-10-10 23:10:15 +08:00
|
|
|
|
if(NULL == (f = (H5F_t *)H5VL_object(file)))
|
[svn-r18618] Description:
Add new internal object header routines to query the header chunk that
a message is in, and to lock/unlock a message into a chunk (so it doesn't get
moved into another chunk during allocation/free events).
Also, move dataspace message to beginning of object header messages
added to a dataset's object header, so it can be locked into chunk #0 (when
performing SWMR operations).
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-04-23 05:59:31 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2016-03-24 08:38:03 +08:00
|
|
|
|
if(H5AC_ignore_tags(f) < 0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
H5Eprint2(H5E_DEFAULT, stdout);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
2007-05-25 02:36:53 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test object header creation
|
|
|
|
|
* (using default group creation property list only because it's convenient)
|
|
|
|
|
*/
|
|
|
|
|
TESTING("object header creation");
|
|
|
|
|
HDmemset(&oh_loc, 0, sizeof(oh_loc));
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_create(f, (size_t)64, (size_t)0, H5P_GROUP_CREATE_DEFAULT, &oh_loc/*out*/) < 0)
|
2007-05-02 05:00:52 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2007-05-25 02:36:53 +08:00
|
|
|
|
PASSED();
|
|
|
|
|
|
|
|
|
|
/* create a new message */
|
|
|
|
|
TESTING("message creation");
|
|
|
|
|
time_new = 11111111;
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_loc, H5O_MTIME_NEW_ID, 0, 0, &time_new) < 0)
|
2007-05-02 05:00:52 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(1 != H5O_link(&oh_loc, 1))
|
[svn-r19587] Description:
Address issue with object headers being created getting evicted from
the metadata cache cache before they are completely initialized. This is
done by pinning the object header in the cache until it is completely
initialized and attached to a group.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.4 (amazon) in debug mode
Mac OS X/32 10.6.4 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Mac OS X/32 10.6.4 (amazon) w/parallel, in debug mode
2010-10-13 23:42:01 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_flush(f) < 0)
|
[svn-r17411] Description:
Make H5AC_flush just flush the cache and make H5AC_dest perform the
proper parallel synchronization before destroying the cache. Also, further
discriminate between 'closing' and 'non-closing' actions in H5F_flush.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.8 (amazon) in debug mode
Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-08-24 08:50:39 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_expunge_entry(f, H5AC_OHDR, oh_loc.addr, H5AC__NO_FLAGS_SET) < 0)
|
2007-05-02 05:00:52 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(NULL == H5O_msg_read(&oh_loc, H5O_MTIME_NEW_ID, &ro))
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
if(ro != time_new)
|
|
|
|
|
TEST_ERROR
|
|
|
|
|
PASSED();
|
2007-05-02 05:00:52 +08:00
|
|
|
|
|
2007-05-25 02:36:53 +08:00
|
|
|
|
/*
|
|
|
|
|
* Test modification of an existing message.
|
|
|
|
|
*/
|
|
|
|
|
TESTING("message modification");
|
|
|
|
|
time_new = 33333333;
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_write(&oh_loc, H5O_MTIME_NEW_ID, 0, 0, &time_new) < 0)
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_flush(f) < 0)
|
[svn-r17411] Description:
Make H5AC_flush just flush the cache and make H5AC_dest perform the
proper parallel synchronization before destroying the cache. Also, further
discriminate between 'closing' and 'non-closing' actions in H5F_flush.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.8 (amazon) in debug mode
Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-08-24 08:50:39 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_expunge_entry(f, H5AC_OHDR, oh_loc.addr, H5AC__NO_FLAGS_SET) < 0)
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(NULL == H5O_msg_read(&oh_loc, H5O_MTIME_NEW_ID, &ro))
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
if(ro != time_new)
|
2007-05-02 05:00:52 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
2007-05-25 02:36:53 +08:00
|
|
|
|
/* Make certain that chunk #0 in the object header can be encoded with a 1-byte size */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_get_hdr_info(&oh_loc, &hdr_info) < 0)
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
[svn-r17553] Description:
Bring general fixes/improvements from file_free_space branch back to
trunk.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.8 (amazon) in debug mode
Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-09-30 04:08:01 +08:00
|
|
|
|
if(hdr_info.space.total >=256)
|
2007-05-02 05:00:52 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
2007-05-25 02:36:53 +08:00
|
|
|
|
/*
|
|
|
|
|
* Test creation of a bunch of messages one after another to see
|
|
|
|
|
* what happens when the object header overflows in core.
|
|
|
|
|
* (Use 'old' MTIME message here, because it is large enough to be
|
|
|
|
|
* replaced with a continuation message (the new one is too small)
|
|
|
|
|
* and the library doesn't understand how to migrate more than one
|
|
|
|
|
* message from an object header currently - QAK - 10/8/03)
|
|
|
|
|
*/
|
|
|
|
|
TESTING("object header overflow in memory");
|
|
|
|
|
for(i = 0; i < 40; i++) {
|
[svn-r15240] Purpose: Fix ohdr Windows timezone bug
Description:
On Windows, certain users were having trouble with the "ohdr" test, which does some processing on object header messages. The errors were hard to reproduce on our machines, and we eventually determined that the errors were timezone-specific.
The bug is triggered on Windows when processing timestamps very near the "Epoch" (midnight on 1/1/1970)-- the mktime() function does some automatic adjustment on the time to correct for timezones. In the USA, the correction adds a few hours; in Europe, it subtracts, thus giving us times pre-Epoch.
This only affects Windows because the Windows mktime() function cannot handle times before 1970-- other systems seemingly can.
The fix is to simply create timestamps only as early as 01/02/1970. This way, any timezone adjustment will still be post-Epoch.
This bug only affects the ohdr test, and shouldn't be a problem in the library. The earliest timestamps that will actually be read will be around the time HDF5 was created (~1996-7, per Quincey).
Tested:
VS2005 on WinXP
h5committest (kagiso, linew, smirom)
2008-06-20 02:46:24 +08:00
|
|
|
|
time_new = (i + 1) * 1000 + 1000000;
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_loc, H5O_MTIME_ID, 0, 0, &time_new) < 0)
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
} /* end for */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_flush(f) < 0)
|
[svn-r17411] Description:
Make H5AC_flush just flush the cache and make H5AC_dest perform the
proper parallel synchronization before destroying the cache. Also, further
discriminate between 'closing' and 'non-closing' actions in H5F_flush.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.8 (amazon) in debug mode
Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-08-24 08:50:39 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_expunge_entry(f, H5AC_OHDR, oh_loc.addr, H5AC__NO_FLAGS_SET) < 0)
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2007-05-02 05:00:52 +08:00
|
|
|
|
|
2007-05-25 02:36:53 +08:00
|
|
|
|
/* Make certain that chunk #0 in the object header will be encoded with a 2-byte size */
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_get_hdr_info(&oh_loc, &hdr_info) < 0)
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
[svn-r17553] Description:
Bring general fixes/improvements from file_free_space branch back to
trunk.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.8 (amazon) in debug mode
Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-09-30 04:08:01 +08:00
|
|
|
|
if(hdr_info.space.total < 256)
|
2007-05-02 05:00:52 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
2007-05-25 02:36:53 +08:00
|
|
|
|
/* Close & re-open file & object header */
|
|
|
|
|
/* (makes certain that an object header in the new format that transitions
|
|
|
|
|
* between 1-byte chunk #0 size encoding and 2-byte chunk #0 size encoding
|
|
|
|
|
* works correctly - QAK)
|
|
|
|
|
*/
|
2007-06-16 03:11:59 +08:00
|
|
|
|
TESTING("close & re-open object header");
|
2016-11-26 23:47:32 +08:00
|
|
|
|
if(H5O_close(&oh_loc, NULL) < 0)
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
if(H5Fclose(file) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
if((file = H5Fopen(filename, H5F_ACC_RDWR, fapl)) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
2018-10-10 23:10:15 +08:00
|
|
|
|
if(NULL == (f = (H5F_t *)H5VL_object(file)))
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2010-06-16 04:00:22 +08:00
|
|
|
|
if (H5AC_ignore_tags(f) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
|
oh_loc.file = f;
|
|
|
|
|
if(H5O_open(&oh_loc) < 0)
|
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
PASSED();
|
2007-05-02 05:00:52 +08:00
|
|
|
|
|
2007-05-25 02:36:53 +08:00
|
|
|
|
/*
|
|
|
|
|
* Test creation of a bunch of messages one after another to see
|
|
|
|
|
* what happens when the object header overflows on disk.
|
|
|
|
|
*/
|
|
|
|
|
TESTING("object header overflow on disk");
|
|
|
|
|
for(i = 0; i < 10; i++) {
|
|
|
|
|
time_new = (i + 1) * 1000 + 10;
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_loc, H5O_MTIME_NEW_ID, 0, 0, &time_new) < 0)
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_flush(f) < 0)
|
[svn-r17411] Description:
Make H5AC_flush just flush the cache and make H5AC_dest perform the
proper parallel synchronization before destroying the cache. Also, further
discriminate between 'closing' and 'non-closing' actions in H5F_flush.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.8 (amazon) in debug mode
Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-08-24 08:50:39 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_expunge_entry(f, H5AC_OHDR, oh_loc.addr, H5AC__NO_FLAGS_SET) < 0)
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
} /* end for */
|
|
|
|
|
PASSED();
|
2007-05-02 05:00:52 +08:00
|
|
|
|
|
2007-05-25 02:36:53 +08:00
|
|
|
|
/*
|
|
|
|
|
* Delete all time messages.
|
|
|
|
|
*/
|
|
|
|
|
TESTING("message deletion");
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_remove(&oh_loc, H5O_MTIME_NEW_ID, H5O_ALL, TRUE) < 0)
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_remove(&oh_loc, H5O_MTIME_ID, H5O_ALL, TRUE) < 0)
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_read(&oh_loc, H5O_MTIME_NEW_ID, &ro))
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_read(&oh_loc, H5O_MTIME_ID, &ro))
|
2007-05-25 02:36:53 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
PASSED();
|
2007-05-02 05:00:52 +08:00
|
|
|
|
|
2007-05-25 02:36:53 +08:00
|
|
|
|
|
2007-07-06 04:01:42 +08:00
|
|
|
|
/*
|
|
|
|
|
* Constant message handling.
|
|
|
|
|
* (can't write to them, but should be able to remove them)
|
|
|
|
|
*/
|
|
|
|
|
TESTING("constant message handling");
|
|
|
|
|
time_new = 22222222;
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_create(&oh_loc, H5O_MTIME_NEW_ID, H5O_MSG_FLAG_CONSTANT, 0, &time_new) < 0)
|
2007-07-06 04:01:42 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_flush(f) < 0)
|
[svn-r17411] Description:
Make H5AC_flush just flush the cache and make H5AC_dest perform the
proper parallel synchronization before destroying the cache. Also, further
discriminate between 'closing' and 'non-closing' actions in H5F_flush.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.8 (amazon) in debug mode
Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2009-08-24 08:50:39 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5AC_expunge_entry(f, H5AC_OHDR, oh_loc.addr, H5AC__NO_FLAGS_SET) < 0)
|
2007-07-06 04:01:42 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(NULL == H5O_msg_read(&oh_loc, H5O_MTIME_NEW_ID, &ro))
|
2007-07-06 04:01:42 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
if(ro != time_new)
|
|
|
|
|
TEST_ERROR
|
|
|
|
|
time_new = 33333333;
|
|
|
|
|
H5E_BEGIN_TRY {
|
2018-03-16 05:54:30 +08:00
|
|
|
|
ret = H5O_msg_write(&oh_loc, H5O_MTIME_NEW_ID, 0, 0, &time_new);
|
2007-07-06 04:01:42 +08:00
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(ret >= 0)
|
|
|
|
|
TEST_ERROR
|
2018-03-16 05:54:30 +08:00
|
|
|
|
if(H5O_msg_remove(&oh_loc, H5O_MTIME_NEW_ID, H5O_ALL, TRUE) < 0)
|
2007-07-06 04:01:42 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
|
|
|
|
PASSED();
|
|
|
|
|
|
|
|
|
|
|
2007-05-25 02:36:53 +08:00
|
|
|
|
/* release resources */
|
|
|
|
|
TESTING("object header closing");
|
2016-11-26 23:47:32 +08:00
|
|
|
|
if(H5O_close(&oh_loc, NULL) < 0)
|
2007-05-02 05:00:52 +08:00
|
|
|
|
FAIL_STACK_ERROR
|
2007-05-25 02:36:53 +08:00
|
|
|
|
PASSED();
|
2007-05-02 05:00:52 +08:00
|
|
|
|
|
2016-02-25 05:30:35 +08:00
|
|
|
|
/* Close the file we created */
|
|
|
|
|
if(H5Fclose(file) < 0)
|
|
|
|
|
TEST_ERROR
|
2007-05-02 05:00:52 +08:00
|
|
|
|
|
2015-06-27 13:51:04 +08:00
|
|
|
|
/* Test reading datasets with undefined object header messages
|
|
|
|
|
* and the various "fail/mark if unknown" object header message flags
|
|
|
|
|
*/
|
2016-03-24 08:38:03 +08:00
|
|
|
|
HDputs("Accessing objects with unknown header messages: H5O_BOGUS_VALID_ID");
|
2019-01-06 13:06:45 +08:00
|
|
|
|
if(single_file_vfd) {
|
|
|
|
|
if(test_unknown(H5O_BOGUS_VALID_ID, filename, fapl) < 0)
|
|
|
|
|
TEST_ERROR
|
|
|
|
|
} /* end if */
|
|
|
|
|
else {
|
|
|
|
|
SKIPPED();
|
|
|
|
|
HDputs(" Unknown header message test not supported with the current VFD.");
|
|
|
|
|
} /* end else */
|
2016-02-25 05:30:35 +08:00
|
|
|
|
HDputs("Accessing objects with unknown header messages: H5O_BOGUS_INVALID_ID");
|
2019-01-06 13:06:45 +08:00
|
|
|
|
if(single_file_vfd) {
|
|
|
|
|
if(test_unknown(H5O_BOGUS_INVALID_ID, filename, fapl) < 0)
|
|
|
|
|
TEST_ERROR
|
|
|
|
|
} /* end if */
|
|
|
|
|
else {
|
|
|
|
|
SKIPPED();
|
|
|
|
|
HDputs(" Unknown header message test not supported with the current VFD.");
|
|
|
|
|
} /* end else */
|
2016-03-24 08:38:03 +08:00
|
|
|
|
|
|
|
|
|
/* Test object header creation metadata cache issues */
|
|
|
|
|
if(test_ohdr_cache(filename, fapl) < 0)
|
|
|
|
|
TEST_ERROR
|
2018-02-14 01:05:08 +08:00
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
if(test_minimized_dset_ohdr_attribute_addition(fapl) < 0)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
if(test_minimized_dset_ohdr_size_comparisons(fapl) < 0)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
if(test_minimized_dset_ohdr_with_filter(fapl) < 0)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
if(test_minimized_dset_ohdr_modification_times(fapl) < 0)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
2018-12-27 04:35:22 +08:00
|
|
|
|
if(test_minimized_dset_ohdr_fillvalue_backwards_compatability(fapl) < 0)
|
2018-12-19 03:42:03 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
2018-02-14 01:05:08 +08:00
|
|
|
|
} /* high */
|
|
|
|
|
} /* low */
|
2003-01-22 04:20:13 +08:00
|
|
|
|
|
2011-04-16 06:05:23 +08:00
|
|
|
|
/* Verify symbol table messages are cached */
|
|
|
|
|
if(h5_verify_cached_stabs(FILENAME, fapl) < 0) TEST_ERROR
|
|
|
|
|
|
2016-12-18 18:19:26 +08:00
|
|
|
|
/* A test to exercise the re-read of the object header for SWMR access */
|
|
|
|
|
if(test_ohdr_swmr(TRUE) < 0) TEST_ERROR
|
|
|
|
|
if(test_ohdr_swmr(FALSE) < 0) TEST_ERROR
|
|
|
|
|
|
2018-03-19 11:51:19 +08:00
|
|
|
|
/* Pop API context */
|
|
|
|
|
if(api_ctx_pushed && H5CX_pop() < 0) FAIL_STACK_ERROR
|
|
|
|
|
api_ctx_pushed = FALSE;
|
|
|
|
|
|
2016-03-24 08:38:03 +08:00
|
|
|
|
HDputs("All object header tests passed.");
|
2000-09-10 08:08:27 +08:00
|
|
|
|
h5_cleanup(FILENAME, fapl);
|
2015-12-17 14:31:27 +08:00
|
|
|
|
return 0;
|
2007-05-02 05:00:52 +08:00
|
|
|
|
|
|
|
|
|
error:
|
2019-08-06 05:57:27 +08:00
|
|
|
|
HDputs("*** TESTS FAILED ***");
|
2007-05-02 05:00:52 +08:00
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Fclose(file);
|
|
|
|
|
} H5E_END_TRY;
|
[svn-r18618] Description:
Add new internal object header routines to query the header chunk that
a message is in, and to lock/unlock a message into a chunk (so it doesn't get
moved into another chunk during allocation/free events).
Also, move dataspace message to beginning of object header messages
added to a dataset's object header, so it can be locked into chunk #0 (when
performing SWMR operations).
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-04-23 05:59:31 +08:00
|
|
|
|
|
2018-03-19 11:51:19 +08:00
|
|
|
|
if(api_ctx_pushed) H5CX_pop();
|
|
|
|
|
|
2015-12-17 14:31:27 +08:00
|
|
|
|
return 1;
|
2007-05-02 05:00:52 +08:00
|
|
|
|
} /* end main() */
|
1998-11-25 22:58:22 +08:00
|
|
|
|
|