2016-10-27 23:06:00 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
* Copyright by The HDF Group. *
|
|
|
|
* 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 *
|
2021-02-17 22:52:36 +08:00
|
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
2017-04-18 03:32:16 +08:00
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2016-10-27 23:06:00 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Purpose: This program tests family files after being repartitioned
|
|
|
|
* by h5repart. It simply tries to reopen the files with
|
|
|
|
* correct family driver and member size.
|
|
|
|
*/
|
|
|
|
#include "hdf5.h"
|
2017-07-20 04:26:34 +08:00
|
|
|
#include "H5private.h"
|
2016-10-27 23:06:00 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define KB 1024
|
|
|
|
#define FAMILY_H5REPART_SIZE1 20000
|
|
|
|
#define FAMILY_H5REPART_SIZE2 (5 * KB)
|
|
|
|
|
|
|
|
const char *FILENAME[] = {"fst_family%05d.h5", "scd_family%05d.h5", "family_to_single.h5",
|
|
|
|
"family_to_sec2.h5", NULL};
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
herr_t test_family_h5repart_opens(void);
|
2018-11-15 05:37:31 +08:00
|
|
|
herr_t test_single_h5repart_opens(void);
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: test_family_h5repart_opens
|
|
|
|
*
|
|
|
|
* Purpose: Tries to reopen family files.
|
|
|
|
*
|
2017-07-20 04:26:34 +08:00
|
|
|
* Return: SUCCEED/FAIL
|
2016-10-27 23:06:00 +08:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
herr_t
|
|
|
|
test_family_h5repart_opens(void)
|
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
hid_t fid = H5I_INVALID_HID;
|
|
|
|
hid_t fapl_id = H5I_INVALID_HID;
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
/* open 1st file(single member file) with correct family size(20000 byte) */
|
2017-07-20 04:26:34 +08:00
|
|
|
if ((fapl_id = H5Pcreate(H5P_FILE_ACCESS)) < 0)
|
2016-10-27 23:06:00 +08:00
|
|
|
goto error;
|
|
|
|
|
2017-07-20 04:26:34 +08:00
|
|
|
if (H5Pset_fapl_family(fapl_id, (hsize_t)FAMILY_H5REPART_SIZE1, H5P_DEFAULT) < 0)
|
2016-10-27 23:06:00 +08:00
|
|
|
goto error;
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((fid = H5Fopen(FILENAME[0], H5F_ACC_RDWR, fapl_id)) < 0)
|
2016-10-27 23:06:00 +08:00
|
|
|
goto error;
|
|
|
|
|
2017-07-20 04:26:34 +08:00
|
|
|
if (H5Fclose(fid) < 0)
|
2016-10-27 23:06:00 +08:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
/* open 2nd file(multiple member files) with correct family size(5KB) */
|
2017-07-20 04:26:34 +08:00
|
|
|
if (H5Pset_fapl_family(fapl_id, (hsize_t)FAMILY_H5REPART_SIZE2, H5P_DEFAULT) < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if ((fid = H5Fopen(FILENAME[1], H5F_ACC_RDWR, fapl_id)) < 0)
|
2016-10-27 23:06:00 +08:00
|
|
|
goto error;
|
|
|
|
|
2017-07-20 04:26:34 +08:00
|
|
|
if (H5Pclose(fapl_id) < 0)
|
2016-10-27 23:06:00 +08:00
|
|
|
goto error;
|
|
|
|
|
2017-07-20 04:26:34 +08:00
|
|
|
if (H5Fclose(fid) < 0)
|
2016-10-27 23:06:00 +08:00
|
|
|
goto error;
|
|
|
|
|
2017-07-20 04:26:34 +08:00
|
|
|
return SUCCEED;
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
error:
|
2020-09-30 22:27:10 +08:00
|
|
|
H5E_BEGIN_TRY
|
|
|
|
{
|
2017-07-20 04:26:34 +08:00
|
|
|
H5Pclose(fapl_id);
|
|
|
|
H5Fclose(fid);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
H5E_END_TRY;
|
2017-07-20 04:26:34 +08:00
|
|
|
|
|
|
|
return FAIL;
|
|
|
|
|
|
|
|
} /* end test_family_h5repart_opens() */
|
|
|
|
|
2016-10-27 23:06:00 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2018-11-15 05:37:31 +08:00
|
|
|
* Function: test_single_h5repart_opens
|
2016-10-27 23:06:00 +08:00
|
|
|
*
|
2018-11-15 05:37:31 +08:00
|
|
|
* Purpose: Tries to reopen a single file.
|
2016-10-27 23:06:00 +08:00
|
|
|
*
|
2017-07-20 04:26:34 +08:00
|
|
|
* Return: SUCCEED/FAIL
|
2016-10-27 23:06:00 +08:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
herr_t
|
2018-11-15 05:37:31 +08:00
|
|
|
test_single_h5repart_opens(void)
|
2016-10-27 23:06:00 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
hid_t fid = H5I_INVALID_HID;
|
2016-10-27 23:06:00 +08:00
|
|
|
|
2018-11-15 05:37:31 +08:00
|
|
|
/* open the single file */
|
2017-07-20 04:26:34 +08:00
|
|
|
if ((fid = H5Fopen(FILENAME[2], H5F_ACC_RDWR, H5P_DEFAULT)) < 0)
|
2016-10-27 23:06:00 +08:00
|
|
|
goto error;
|
2018-11-15 05:37:31 +08:00
|
|
|
if (H5Fclose(fid) < 0)
|
|
|
|
goto error;
|
2016-10-27 23:06:00 +08:00
|
|
|
|
2018-11-15 05:37:31 +08:00
|
|
|
/* open the single file (created using the old argument) */
|
|
|
|
if ((fid = H5Fopen(FILENAME[3], H5F_ACC_RDWR, H5P_DEFAULT)) < 0)
|
|
|
|
goto error;
|
2017-07-20 04:26:34 +08:00
|
|
|
if (H5Fclose(fid) < 0)
|
2016-10-27 23:06:00 +08:00
|
|
|
goto error;
|
|
|
|
|
2017-07-20 04:26:34 +08:00
|
|
|
return SUCCEED;
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
error:
|
2021-03-17 23:25:39 +08:00
|
|
|
H5E_BEGIN_TRY
|
|
|
|
{
|
|
|
|
H5Fclose(fid);
|
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
H5E_END_TRY;
|
2017-07-20 04:26:34 +08:00
|
|
|
|
|
|
|
return FAIL;
|
|
|
|
|
2018-11-15 05:37:31 +08:00
|
|
|
} /* end test_single_h5repart_opens() */
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: main
|
|
|
|
*
|
|
|
|
* Purpose: Tests h5repart-ed family files
|
|
|
|
*
|
2017-07-20 04:26:34 +08:00
|
|
|
* Return: EXIT_SUCCESS/EXIT_FAILURE
|
2016-10-27 23:06:00 +08:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
int nerrors = 0;
|
2016-10-27 23:06:00 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
nerrors += test_family_h5repart_opens() < 0 ? 1 : 0;
|
|
|
|
nerrors += test_single_h5repart_opens() < 0 ? 1 : 0;
|
2016-10-27 23:06:00 +08:00
|
|
|
|
2017-07-20 04:26:34 +08:00
|
|
|
if (nerrors)
|
|
|
|
goto error;
|
2016-10-27 23:06:00 +08:00
|
|
|
|
2017-07-20 04:26:34 +08:00
|
|
|
HDexit(EXIT_SUCCESS);
|
2016-10-27 23:06:00 +08:00
|
|
|
|
|
|
|
error:
|
|
|
|
nerrors = MAX(1, nerrors);
|
2020-09-30 22:27:10 +08:00
|
|
|
HDprintf("***** %d FAMILY FILE TEST%s FAILED! *****\n", nerrors, 1 == nerrors ? "" : "S");
|
2017-07-20 04:26:34 +08:00
|
|
|
HDexit(EXIT_FAILURE);
|
|
|
|
} /* end main() */
|