2016-11-04 14:27:10 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
* Copyright by The HDF Group. *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
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:04 +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-11-04 14:27:10 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
/* Purpose: Tests the metadata cache logging framework */
|
|
|
|
|
|
|
|
#include "h5test.h"
|
|
|
|
|
|
|
|
#define LOG_LOCATION "cache_logging.out"
|
2021-04-17 02:47:32 +08:00
|
|
|
|
2023-06-19 13:13:38 +08:00
|
|
|
static const char *FILENAME[] = {"cache_logging", NULL};
|
2016-11-04 14:27:10 +08:00
|
|
|
|
|
|
|
#define N_GROUPS 100
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: test_logging_api
|
|
|
|
*
|
|
|
|
* Purpose: Tests the API calls that affect mdc logging
|
|
|
|
*
|
|
|
|
* Return: Success: 0
|
|
|
|
* Failure: -1
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
static herr_t
|
|
|
|
test_logging_api(void)
|
|
|
|
{
|
2023-09-09 07:06:23 +08:00
|
|
|
hid_t fapl = H5I_INVALID_HID;
|
2023-09-06 04:11:52 +08:00
|
|
|
bool is_enabled;
|
|
|
|
bool is_enabled_out;
|
|
|
|
bool start_on_access;
|
|
|
|
bool start_on_access_out;
|
|
|
|
char *location = NULL;
|
|
|
|
size_t size;
|
|
|
|
|
2023-09-09 07:06:23 +08:00
|
|
|
hid_t fid = H5I_INVALID_HID;
|
|
|
|
hid_t gid = H5I_INVALID_HID;
|
2023-09-06 04:11:52 +08:00
|
|
|
bool is_currently_logging;
|
|
|
|
char group_name[12];
|
|
|
|
char filename[1024];
|
|
|
|
int i;
|
2016-11-04 14:27:10 +08:00
|
|
|
|
|
|
|
TESTING("metadata cache log api calls");
|
|
|
|
|
|
|
|
fapl = h5_fileaccess();
|
2021-04-17 02:47:32 +08:00
|
|
|
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
|
2016-11-04 14:27:10 +08:00
|
|
|
|
|
|
|
/* Set up metadata cache logging */
|
2023-09-06 04:11:52 +08:00
|
|
|
is_enabled = true;
|
|
|
|
start_on_access = false;
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Pset_mdc_log_options(fapl, is_enabled, LOG_LOCATION, start_on_access) < 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
|
|
|
|
2021-04-29 22:33:43 +08:00
|
|
|
/* Ensure that setting the property twice doesn't cause problems
|
|
|
|
* (addresses a previous bug).
|
|
|
|
*/
|
|
|
|
if (H5Pset_mdc_log_options(fapl, is_enabled, LOG_LOCATION, start_on_access) < 0)
|
|
|
|
TEST_ERROR;
|
|
|
|
|
2016-11-04 14:27:10 +08:00
|
|
|
/* Check to make sure that the property list getter returns the correct
|
|
|
|
* location string buffer size;
|
|
|
|
*/
|
2023-09-06 04:11:52 +08:00
|
|
|
is_enabled_out = false;
|
|
|
|
start_on_access_out = true;
|
2020-09-30 22:27:10 +08:00
|
|
|
location = NULL;
|
|
|
|
size = 999;
|
|
|
|
if (H5Pget_mdc_log_options(fapl, &is_enabled_out, location, &size, &start_on_access_out) < 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
2023-09-16 06:13:18 +08:00
|
|
|
if (size != strlen(LOG_LOCATION) + 1)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
/* Check to make sure that the property list getter works */
|
2023-06-29 06:48:12 +08:00
|
|
|
if (NULL == (location = (char *)calloc(size, sizeof(char))))
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Pget_mdc_log_options(fapl, &is_enabled_out, location, &size, &start_on_access_out) < 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((is_enabled != is_enabled_out) || (start_on_access != start_on_access_out) ||
|
2023-09-16 06:13:18 +08:00
|
|
|
strcmp(LOG_LOCATION, location) != 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
/* Create a file */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((fid = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
/* Check to see if the logging flags were set correctly */
|
2023-09-06 04:11:52 +08:00
|
|
|
is_enabled = false;
|
|
|
|
is_currently_logging = true;
|
|
|
|
if ((H5Fget_mdc_logging_status(fid, &is_enabled, &is_currently_logging) < 0) || (is_enabled != true) ||
|
|
|
|
(is_currently_logging != false))
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
/* Turn on logging and check flags */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Fstart_mdc_logging(fid) < 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
2023-09-06 04:11:52 +08:00
|
|
|
is_enabled = false;
|
|
|
|
is_currently_logging = false;
|
|
|
|
if ((H5Fget_mdc_logging_status(fid, &is_enabled, &is_currently_logging) < 0) || (is_enabled != true) ||
|
|
|
|
(is_currently_logging != true))
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
/* Perform some manipulations */
|
2020-09-30 22:27:10 +08:00
|
|
|
for (i = 0; i < N_GROUPS; i++) {
|
2023-06-30 03:33:46 +08:00
|
|
|
memset(group_name, 0, sizeof(group_name));
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(group_name, sizeof(group_name), "%d", i);
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((gid = H5Gcreate2(fid, group_name, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Gclose(gid) < 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Turn off logging and check flags */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Fstop_mdc_logging(fid) < 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
2023-09-06 04:11:52 +08:00
|
|
|
is_enabled = false;
|
|
|
|
is_currently_logging = true;
|
|
|
|
if ((H5Fget_mdc_logging_status(fid, &is_enabled, &is_currently_logging) < 0) || (is_enabled != true) ||
|
|
|
|
(is_currently_logging != false))
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
/* Clean up */
|
2023-06-29 06:48:12 +08:00
|
|
|
free(location);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Fclose(fid) < 0)
|
2016-11-04 14:27:10 +08:00
|
|
|
TEST_ERROR;
|
|
|
|
|
2021-04-17 02:47:32 +08:00
|
|
|
HDremove(LOG_LOCATION);
|
|
|
|
h5_clean_files(FILENAME, fapl);
|
|
|
|
|
2016-11-04 14:27:10 +08:00
|
|
|
PASSED();
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
2021-04-17 02:47:32 +08:00
|
|
|
H5E_BEGIN_TRY
|
|
|
|
{
|
|
|
|
H5Pclose(fapl);
|
|
|
|
}
|
|
|
|
H5E_END_TRY
|
|
|
|
|
2016-11-04 14:27:10 +08:00
|
|
|
return 1;
|
2020-09-30 22:27:10 +08:00
|
|
|
} /* test_logging_api() */
|
2016-11-04 14:27:10 +08:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: main
|
|
|
|
*
|
|
|
|
* Purpose: Test basic cache logging operations
|
|
|
|
*
|
|
|
|
* Return: Success: zero
|
|
|
|
* Failure: non-zero
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
int nerrors = 0;
|
|
|
|
|
|
|
|
/* Reset library */
|
|
|
|
h5_reset();
|
|
|
|
|
2023-06-28 23:31:32 +08:00
|
|
|
printf("Testing basic metadata cache logging functionality.\n");
|
2016-11-04 14:27:10 +08:00
|
|
|
|
|
|
|
nerrors += test_logging_api();
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (nerrors) {
|
2023-06-28 23:31:32 +08:00
|
|
|
printf("***** %d Metadata cache logging TEST%s FAILED! *****\n", nerrors, nerrors > 1 ? "S" : "");
|
2023-06-29 23:18:01 +08:00
|
|
|
exit(EXIT_FAILURE);
|
2016-11-04 14:27:10 +08:00
|
|
|
}
|
|
|
|
|
2023-06-28 23:31:32 +08:00
|
|
|
printf("All Metadata Cache Logging tests passed.\n");
|
2018-09-21 01:40:51 +08:00
|
|
|
|
2023-06-29 23:18:01 +08:00
|
|
|
exit(EXIT_SUCCESS);
|
2016-11-04 14:27:10 +08:00
|
|
|
}
|