1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* All rights reserved. *
* *
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://www.hdfgroup.org/licenses. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* Purpose: This test file contains routines used to test flushing and
* refreshing individual objects' metadata from the cache.
*
* Note: This file should NOT be run manually. Instead, invoke it
* via its associated test script, testflushrefresh.sh
*
*/
#define H5FD_FRIEND /*suppress error about including H5FDpkg */
#define H5FD_TESTING
/* ======== */
/* Includes */
/* ======== */
#include "testhdf5.h"
#include "H5FDpkg.h" /* File Drivers */
/* ======= */
/* Defines */
/* ======= */
/* Name of Test File */
#define FILENAME "flushrefresh.h5"
/* Names of Signal Files */
#define SIGNAL_TO_SCRIPT "flushrefresh_VERIFICATION_START"
#define SIGNAL_BETWEEN_PROCESSES_1 "flushrefresh_VERIFICATION_CHECKPOINT1"
#define SIGNAL_BETWEEN_PROCESSES_2 "flushrefresh_VERIFICATION_CHECKPOINT2"
#define SIGNAL_FROM_SCRIPT "flushrefresh_VERIFICATION_DONE"
/* Paths to Various Objects in the Testfile */
#define RG "/"
#define D1 "/Dataset1"
#define D2 "/Group1/Dataset2"
#define D3 "/Group3/Dataset3"
#define G1 "/Group1"
#define G2 "/Group1/Group2"
#define G3 "/Group3"
#define T1 "/CommittedDatatype1"
#define T2 "/Group1/Group2/CommittedDatatype2"
#define T3 "/Group3/CommittedDatatype3"
/* Flushed States */
#define FLUSHED "FLUSHED"
#define NOT_FLUSHED "NOT_FLUSHED"
/* Error Handling */
/* For errors occurring in the main process, use the standard TEST_ERROR macro.
For errors occurring in the spawned process (from the test script), use
the PROCESS_ERROR macro, which will send a signal to the main process so the
main process can propagate errors correctly. */
static FILE *errorfile;
#define ERRFILE "flushrefresh_ERROR"
#define PROCESS_ERROR \
do { \
errorfile = fopen(ERRFILE, "w+"); \
fprintf(errorfile, "Error occurred in flushrefresh.\n"); \
fflush(errorfile); \
fclose(errorfile); \
TEST_ERROR; \
} while (0)
#define CLEANUP_FILES \
do { \
HDremove(ERRFILE); \
HDremove(FILENAME); \
HDremove(SIGNAL_TO_SCRIPT); \
HDremove(SIGNAL_BETWEEN_PROCESSES_1); \
HDremove(SIGNAL_BETWEEN_PROCESSES_2); \
HDremove(SIGNAL_FROM_SCRIPT); \
} while (0)
/* ===================== */
/* Function Declarations */
/* ===================== */
/* Main */
int main(int argc, char *argv[]);
/* Flush Test Framework */
herr_t test_flush(void);
herr_t flush_verification(const char *obj_pathname, const char *expected);
herr_t run_flush_verification_process(const char *obj_pathname, const char *expected);
/* Refresh Test Framework */
herr_t test_refresh(void);
herr_t refresh_verification(const char *obj_pathname);
herr_t start_refresh_verification_process(const char *obj_pathname);
herr_t end_refresh_verification_process(void);
/* Other Helper Functions */
herr_t check_for_errors(void);
herr_t end_verification(void);
/* ========= */
/* Functions */
/* ========= */
/*-------------------------------------------------------------------------
* Function: main
*
* Purpose: This function coordinates the test of flush/refresh
* functionality verification. It accepts either one, two or
* no command line parameters. The main test routine runs
* with no command line parameters specified, while verification
* routines run with one or two command line parameters.
*
* Note: This program should not be run manually, as the
* test is controlled by the testflushrefresh.sh script. Running
* the flushrefresh program manually will result in failure, as
* it will time out waiting for a signal from the test script
* which will never come.
*
* Return: EXIT_SUCCESS/EXIT_FAILURE
*
*-------------------------------------------------------------------------
*/
int
main(int argc, char *argv[])
{
/* Variables */
const char *driver_name = NULL;
/* Initialize library */
if (H5open() < 0)
TEST_ERROR;
/* Parse command line options */
if (argc == 1) {
/* No arguments supplied. Run main test routines if
* using sec2 or stdio driver, otherwise don't run
* anything. */
/* Determine driver being used */
driver_name = h5_get_test_driver_name();
if (driver_name == NULL || H5FD__supports_swmr_test(driver_name)) {
if (test_flush() != SUCCEED)
TEST_ERROR;
if (test_refresh() != SUCCEED)
TEST_ERROR;
} /* end if */
else {
fprintf(stdout, "Skipping all flush/refresh tests (only run with SWMR-enabled file drivers).\n");
/* Test script is expecting some signals, so send them out to end it. */
if (end_verification() < 0)
TEST_ERROR;
if (end_verification() < 0)
TEST_ERROR;
} /* end else */
}
else if (argc == 3) {
/* Two arguments supplied. Pass them to flush verification routine. */
if (flush_verification(argv[1], argv[2]) != 0)
PROCESS_ERROR;
}
else if (argc == 2) {
/* One argument supplied. Pass it to refresh verification routine. */
if (refresh_verification(argv[1]) != 0)
PROCESS_ERROR;
}
else {
/* Illegal number of arguments supplied. Error. */
fprintf(stderr, "Error. %d is an Invalid number of arguments to main().\n", argc);
PROCESS_ERROR;
} /* end if */
return EXIT_SUCCESS;
error:
/* Return */
return EXIT_FAILURE;
} /* main */
/*-------------------------------------------------------------------------
* Function: test_flush
*
* Purpose: This function tests flushing individual objects' metadata
* from the metadata cache.
*
* Return: 0 on Success, 1 on Failure
*
*-------------------------------------------------------------------------
*/
herr_t
test_flush(void)
{
/**************************************************************************
*
* Test Description:
*
* This test will build an HDF5 file with several objects in a varying
* hierarchical layout. It will then attempt to flush the objects
* in the file one by one, individually, using the four H5*flush
* routines (D,G,T, and O). After each call to either create or flush an
* object, a series of verifications will occur on each object in the file.
*
* Each verification consists of spawning off a new process and determining
* if the object can be opened and its information retrieved in said
* alternate process. It reports the results, which are compared to an
* expected value (either that the object can be found on disk, or that it
* cannot).
*
* Note that to spawn a verification, this program sends a signal (by creating
* a file on disk) to the test script controlling it, indicating how to
* run the verification.
*
* Implementation is funky, but basically, an example:
*
* Step 1. Dataset is created.
* Step 2. Verify that dataset can't be opened by separate process, as
* it should not have been flushed to disk yet.
* Step 3. Group is created.
* Step 4. Verify that group can't be opened by separate process.
* Step 5. H5Gflush is called on the group.
* Step 6. Verify that group CAN be opened, but dataset still has
* yet to hit disk, and CANNOT be opened. Success! Only the group
* was flushed.
*
**************************************************************************/
/**************************************************************************
* Generated Test File will look like this:
*
* GROUP "/"
* DATASET "Dataset1"
* GROUP "Group1" {
* DATASET "Dataset2"
* GROUP "Group2" {
* DATATYPE "CommittedDatatype3"
* }
* }
* GROUP "Group3" {
* DATASET "Dataset3"
* DATATYPE "CommittedDatatype2"
* }
* DATATYPE "CommittedDatatype1"
**************************************************************************/
/* Variables */
hid_t fid, gid, gid2, gid3, sid, tid1, tid2, tid3, did, did2, did3, rid, fapl, status = 0;
hsize_t dims[2] = {3, 5};
/* Testing Message */
fprintf(stdout, "Testing individual object flush behavior:\n");
/* Cleanup any old error or signal files */
CLEANUP_FILES;
/* ================ */
/* CREATE TEST FILE */
/* ================ */
/* Create file, open root group - have to use latest file format for SWMR */
if ((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
TEST_ERROR;
if (H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0)
TEST_ERROR;
if ((fid = H5Fcreate(FILENAME, H5F_ACC_TRUNC | H5F_ACC_SWMR_WRITE, H5P_DEFAULT, fapl)) < 0)
TEST_ERROR;
if ((rid = H5Gopen2(fid, "/", H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create data space and types */
if ((sid = H5Screate_simple(2, dims, dims)) < 0)
TEST_ERROR;
if ((tid1 = H5Tcopy(H5T_NATIVE_INT)) < 0)
TEST_ERROR;
if ((tid2 = H5Tcopy(H5T_NATIVE_CHAR)) < 0)
TEST_ERROR;
if ((tid3 = H5Tcopy(H5T_NATIVE_LONG)) < 0)
TEST_ERROR;
/* Create Group1 */
if ((gid = H5Gcreate2(fid, "Group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create Group2 */
if ((gid2 = H5Gcreate2(gid, "Group2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create Group3 */
if ((gid3 = H5Gcreate2(fid, "Group3", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create Dataset1 */
if ((did = H5Dcreate2(fid, "Dataset1", tid1, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create Dataset2 */
if ((did2 = H5Dcreate2(gid, "Dataset2", tid3, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create Dataset3 */
if ((did3 = H5Dcreate2(gid3, "Dataset3", tid2, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create CommittedDatatype1 */
if ((status = H5Tcommit2(fid, "CommittedDatatype1", tid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create CommittedDatatype2 */
if ((status = H5Tcommit2(gid2, "CommittedDatatype2", tid2, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create CommittedDatatype3 */
if ((status = H5Tcommit2(gid3, "CommittedDatatype3", tid3, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* ============ */
/* FLUSH GROUPS */
/* ============ */
/* Test */
TESTING("to ensure H5Gflush correctly flushes single groups");
/* First, let's verify that nothing is currently flushed. */
if (run_flush_verification_process(RG, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, NOT_FLUSHED) != 0)
TEST_ERROR;
/* Then, flush the root group and verify it's the only thing on disk */
if ((status = H5Gflush(rid)) < 0)
TEST_ERROR;
if (run_flush_verification_process(RG, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, NOT_FLUSHED) != 0)
TEST_ERROR;
/* Flush Group1 and Verify it is recently flushed, and nothing
* else has changed. */
if ((status = H5Gflush(gid)) < 0)
TEST_ERROR;
if (run_flush_verification_process(RG, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, NOT_FLUSHED) != 0)
TEST_ERROR;
/* Flush Group2 and Verify it is recently flushed, and nothing
* else has changed. */
if ((status = H5Gflush(gid2)) < 0)
TEST_ERROR;
if (run_flush_verification_process(RG, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, NOT_FLUSHED) != 0)
TEST_ERROR;
PASSED();
/* ============== */
/* FLUSH DATASETS */
/* ============== */
/* Test */
TESTING("to ensure H5Dflush correctly flushes single datasets");
/* Flush Dataset1 and verify it's the only thing that hits disk. */
if ((status = H5Dflush(did)) < 0)
TEST_ERROR;
if (run_flush_verification_process(RG, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, NOT_FLUSHED) != 0)
TEST_ERROR;
/* Flush Dataset2 and verify it's the only thing that hits disk. */
if ((status = H5Dflush(did2)) < 0)
TEST_ERROR;
if (run_flush_verification_process(RG, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, NOT_FLUSHED) != 0)
TEST_ERROR;
PASSED();
/* =============== */
/* FLUSH DATATYPES */
/* =============== */
/* Test */
TESTING("to ensure H5Tflush correctly flushes single datatypes");
/* Flush Datatype 1 and verify it's the only thing that hits disk. */
if ((status = H5Tflush(tid1)) < 0)
TEST_ERROR;
if (run_flush_verification_process(RG, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, NOT_FLUSHED) != 0)
TEST_ERROR;
/* Flush Datatype 2 and verify it's the only thing that hits disk. */
if ((status = H5Tflush(tid2)) < 0)
TEST_ERROR;
if (run_flush_verification_process(RG, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, NOT_FLUSHED) != 0)
TEST_ERROR;
PASSED();
/* ============= */
/* FLUSH OBJECTS */
/* ============= */
/* Test */
TESTING("to ensure H5Oflush correctly flushes single objects");
/* Flush Group3 and verify it's the only thing that hits disk. */
if ((status = H5Oflush(gid3)) < 0)
TEST_ERROR;
if (run_flush_verification_process(RG, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, NOT_FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, NOT_FLUSHED) != 0)
TEST_ERROR;
/* Flush Dataset3 and verify it's the only thing that hits disk. */
if ((status = H5Oflush(did3)) < 0)
TEST_ERROR;
if (run_flush_verification_process(RG, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, NOT_FLUSHED) != 0)
TEST_ERROR;
/* Flush CommittedDatatype3 and verify it's the only thing that hits disk. */
if ((status = H5Oflush(tid3)) < 0)
TEST_ERROR;
if (run_flush_verification_process(RG, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(G3, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(D3, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T1, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T2, FLUSHED) != 0)
TEST_ERROR;
if (run_flush_verification_process(T3, FLUSHED) != 0)
TEST_ERROR;
PASSED();
/* ================== */
/* Cleanup and Return */
/* ================== */
if (H5Pclose(fapl) < 0)
TEST_ERROR;
if (H5Gclose(gid) < 0)
TEST_ERROR;
if (H5Gclose(gid2) < 0)
TEST_ERROR;
if (H5Dclose(did) < 0)
TEST_ERROR;
if (H5Dclose(did2) < 0)
TEST_ERROR;
if (H5Gclose(rid) < 0)
TEST_ERROR;
if (H5Fclose(fid) < 0)
TEST_ERROR;
/* Delete test file */
HDremove(FILENAME);
if (end_verification() < 0)
TEST_ERROR;
return SUCCEED;
error:
return FAIL;
} /* end test_flush */
/*-------------------------------------------------------------------------
* Function: test_refresh
*
* Purpose: This function tests refresh (evict/reload) of individual
* objects' metadata from the metadata cache.
*
* Return: 0 on Success, 1 on Failure
*
*-------------------------------------------------------------------------
*/
herr_t
test_refresh(void)
{
/**************************************************************************
*
* Test Description:
*
* This test will build an HDF5 file with several objects in a varying
* hierarchical layout. It will then flush the entire file to disk. Then,
* an attribute will be added to each object in the file.
*
* One by one, this process will flush each object to disk, individually.
* It will also be coordinating with another process, which will open
* the object before it is flushed by this process, and then refresh the
* object after it's been flushed, comparing the before and after object
* information to ensure that they are as expected. (i.e., most notably,
* that an attribute has been added, and is only visible after a
* successful call to a H5*refresh function).
*
* As with the flush case, the implementation is a bit tricky as it's
* dealing with signals going back and forth between the two processes
* to ensure the timing is correct, but basically, an example:
*
* Step 1. Dataset is created.
* Step 2. Dataset is flushed.
* Step 3. Attribute on Dataset is created.
* Step 4. Another process opens the dataset and verifies that it does
* not see an attribute (as the attribute hasn't been flushed yet).
* Step 5. This process flushes the dataset again (with Attribute attached).
* Step 6. The other process calls H5Drefresh, which should evict/reload
* the object's metadata, and thus pick up the attribute that's
* attached to it. Most other before/after object information is
* compared for sanity as well.
* Step 7. Rinse and Repeat for each object in the file.
*
**************************************************************************/
/**************************************************************************
* Generated Test File will look like this:
*
* GROUP "/"
* DATASET "Dataset1"
* GROUP "Group1" {
* DATASET "Dataset2"
* GROUP "Group2" {
* DATATYPE "CommittedDatatype3"
* }
* }
* GROUP "Group3" {
* DATASET "Dataset3"
* DATATYPE "CommittedDatatype2"
* }
* DATATYPE "CommittedDatatype1"
**************************************************************************/
/* Variables */
hid_t aid, fid, sid, tid1, did, dcpl, fapl = 0;
hid_t gid, gid2, gid3, tid2, tid3, did2, did3;
herr_t status = 0;
hsize_t dims[2] = {50, 50};
hsize_t cdims[2] = {1, 1};
int fillval = 2;
/* Testing Message */
fprintf(stdout, "Testing individual object refresh behavior:\n");
/* Cleanup any old error or signal files */
CLEANUP_FILES;
/* ================ */
/* CREATE TEST FILE */
/* ================ */
/* Create File */
if ((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0)
TEST_ERROR;
if (H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0)
TEST_ERROR;
if ((fid = H5Fcreate(FILENAME, H5F_ACC_TRUNC | H5F_ACC_SWMR_WRITE, H5P_DEFAULT, fapl)) < 0)
TEST_ERROR;
/* Create data space and types */
if ((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0)
TEST_ERROR;
if (H5Pset_chunk(dcpl, 2, cdims) < 0)
TEST_ERROR;
if (H5Pset_fill_value(dcpl, H5T_NATIVE_INT, &fillval) < 0)
TEST_ERROR;
if ((sid = H5Screate_simple(2, dims, dims)) < 0)
TEST_ERROR;
if ((tid1 = H5Tcopy(H5T_NATIVE_INT)) < 0)
TEST_ERROR;
if ((tid2 = H5Tcopy(H5T_NATIVE_CHAR)) < 0)
TEST_ERROR;
if ((tid3 = H5Tcopy(H5T_NATIVE_LONG)) < 0)
TEST_ERROR;
/* Create Group1 */
if ((gid = H5Gcreate2(fid, "Group1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create Group2 */
if ((gid2 = H5Gcreate2(gid, "Group2", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create Group3 */
if ((gid3 = H5Gcreate2(fid, "Group3", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create Dataset1 */
if ((did = H5Dcreate2(fid, "Dataset1", tid1, sid, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create Dataset2 */
if ((did2 = H5Dcreate2(gid, "Dataset2", tid3, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create Dataset3 */
if ((did3 = H5Dcreate2(gid3, "Dataset3", tid2, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create CommittedDatatype1 */
if ((status = H5Tcommit2(fid, "CommittedDatatype1", tid1, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create CommittedDatatype2 */
if ((status = H5Tcommit2(gid2, "CommittedDatatype2", tid2, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Create CommittedDatatype3 */
if ((status = H5Tcommit2(gid3, "CommittedDatatype3", tid3, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
/* Flush File to Disk */
if (H5Fflush(fid, H5F_SCOPE_GLOBAL) < 0)
TEST_ERROR;
/* ================ */
/* Refresh Datasets */
/* ================ */
TESTING("to ensure that H5Drefresh correctly refreshes single datasets");
/* Create an attribute on each object before flush. */
/* Verify First Dataset can be refreshed with H5Drefresh */
if (start_refresh_verification_process(D1) != 0)
TEST_ERROR;
if ((aid = H5Acreate2(did, "Attribute", tid1, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Aclose(aid) < 0)
TEST_ERROR;
if (H5Oflush(did) < 0)
TEST_ERROR;
if (end_refresh_verification_process() != 0)
TEST_ERROR;
/* Verify Second Dataset can be refreshed with H5Drefresh */
if (start_refresh_verification_process(D2) != 0)
TEST_ERROR;
if ((aid = H5Acreate2(did2, "Attribute", tid1, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Aclose(aid) < 0)
TEST_ERROR;
if (H5Oflush(did2) < 0)
TEST_ERROR;
if (end_refresh_verification_process() != 0)
TEST_ERROR;
PASSED();
/* ============== */
/* Refresh Groups */
/* ============== */
TESTING("to ensure that H5Grefresh correctly refreshes single groups");
/* Verify First Group can be refreshed with H5Grefresh */
if (start_refresh_verification_process(G1) != 0)
TEST_ERROR;
if ((aid = H5Acreate2(gid, "Attribute", tid1, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Aclose(aid) < 0)
TEST_ERROR;
if (H5Oflush(gid) < 0)
TEST_ERROR;
if (end_refresh_verification_process() != 0)
TEST_ERROR;
/* Verify Second Group can be refreshed with H5Grefresh */
if (start_refresh_verification_process(G2) != 0)
TEST_ERROR;
if ((aid = H5Acreate2(gid2, "Attribute", tid1, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Aclose(aid) < 0)
TEST_ERROR;
if (H5Oflush(gid2) < 0)
TEST_ERROR;
if (end_refresh_verification_process() != 0)
TEST_ERROR;
PASSED();
/* ================= */
/* Refresh Datatypes */
/* ================= */
TESTING("to ensure that H5Trefresh correctly refreshes single datatypes");
/* Verify First Committed Datatype can be refreshed with H5Trefresh */
if (start_refresh_verification_process(T1) != 0)
TEST_ERROR;
if ((aid = H5Acreate2(tid1, "Attribute", tid1, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Aclose(aid) < 0)
TEST_ERROR;
if (H5Oflush(tid1) < 0)
TEST_ERROR;
if (end_refresh_verification_process() != 0)
TEST_ERROR;
/* Verify Second Committed Datatype can be refreshed with H5Trefresh */
if (start_refresh_verification_process(T2) != 0)
TEST_ERROR;
if ((aid = H5Acreate2(tid2, "Attribute", tid1, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Aclose(aid) < 0)
TEST_ERROR;
if (H5Oflush(tid2) < 0)
TEST_ERROR;
if (end_refresh_verification_process() != 0)
TEST_ERROR;
PASSED();
/* =============== */
/* Refresh Objects */
/* =============== */
TESTING("to ensure that H5Orefresh correctly refreshes single objects");
/* Verify Third Dataset can be refreshed with H5Orefresh */
if (start_refresh_verification_process(D3) != 0)
TEST_ERROR;
if ((aid = H5Acreate2(did3, "Attribute", tid1, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Aclose(aid) < 0)
TEST_ERROR;
if (H5Oflush(did3) < 0)
TEST_ERROR;
if (end_refresh_verification_process() != 0)
TEST_ERROR;
/* Verify Third Group can be refreshed with H5Orefresh */
if (start_refresh_verification_process(G3) != 0)
TEST_ERROR;
if ((aid = H5Acreate2(gid3, "Attribute", tid1, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Aclose(aid) < 0)
TEST_ERROR;
if (H5Oflush(gid3) < 0)
TEST_ERROR;
if (end_refresh_verification_process() != 0)
TEST_ERROR;
/* Verify Third Committed Datatype can be refreshed with H5Orefresh */
if (start_refresh_verification_process(T3) != 0)
TEST_ERROR;
if ((aid = H5Acreate2(tid3, "Attribute", tid1, sid, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if (H5Aclose(aid) < 0)
TEST_ERROR;
if (H5Oflush(tid3) < 0)
TEST_ERROR;
if (end_refresh_verification_process() != 0)
TEST_ERROR;
PASSED();
/* ================== */
/* Cleanup and Return */
/* ================== */
/* Close Stuff */
if (H5Pclose(fapl) < 0)
TEST_ERROR;
if (H5Pclose(dcpl) < 0)
TEST_ERROR;
if (H5Tclose(tid1) < 0)
TEST_ERROR;
if (H5Tclose(tid2) < 0)
TEST_ERROR;
if (H5Tclose(tid3) < 0)
TEST_ERROR;
if (H5Dclose(did) < 0)
TEST_ERROR;
if (H5Dclose(did2) < 0)
TEST_ERROR;
if (H5Dclose(did3) < 0)
TEST_ERROR;
if (H5Gclose(gid) < 0)
TEST_ERROR;
if (H5Gclose(gid2) < 0)
TEST_ERROR;
if (H5Gclose(gid3) < 0)
TEST_ERROR;
if (H5Sclose(sid) < 0)
TEST_ERROR;
if (H5Fclose(fid) < 0)
TEST_ERROR;
/* Delete Test File */
HDremove(FILENAME);
if (end_verification() < 0)
TEST_ERROR;
return SUCCEED;
error:
/* Return */
return FAIL;
} /* test_refresh() */
/*-------------------------------------------------------------------------
* Function: run_flush_verification_process
*
* Purpose: This function is used to communicate with the test script
* in order to spawn off a process to verify that a flush
* of an individual object was successful.
*
* Return: 0 on Success, 1 on Failure
*
*-------------------------------------------------------------------------
*/
herr_t
run_flush_verification_process(const char *obj_pathname, const char *expected)
{
HDremove(SIGNAL_FROM_SCRIPT);
/* Send Signal to SCRIPT indicating that it should kick off a verification process. */
h5_send_message(SIGNAL_TO_SCRIPT, obj_pathname, expected);
/* Wait for Signal from SCRIPT indicating that verification process has completed. */
if (h5_wait_message(SIGNAL_FROM_SCRIPT) < 0)
TEST_ERROR;
/* Check to see if any errors occurred */
if (check_for_errors() < 0)
TEST_ERROR;
/* Return */
return SUCCEED;
error:
return FAIL;
} /* run_flush_verification_process */
/*-------------------------------------------------------------------------
* Function: flush_verification
*
* Purpose: This function tries to open target object in the test file.
* It compares the success of the open function to the expected
* value, and succeeds if they are equal and fails if they differ.
*
* Note that full path to the object must be provided as the
* obj_pathname argument.
*
* Return: 0 on Success, 1 on Failure
*
*-------------------------------------------------------------------------
*/
herr_t
flush_verification(const char *obj_pathname, const char *expected)
{
/* Variables */
hid_t oid = H5I_INVALID_HID, fid = H5I_INVALID_HID;
herr_t status = 0;
H5O_info2_t oinfo;
/* Try to open the testfile and then obj_pathname within the file */
H5E_BEGIN_TRY
{
fid = H5Fopen(FILENAME, H5F_ACC_SWMR_READ, H5P_DEFAULT);
oid = H5Oopen(fid, obj_pathname, H5P_DEFAULT);
status = H5Oget_info3(oid, &oinfo, H5O_INFO_BASIC);
}
H5E_END_TRY
/* Compare to expected result */
if (strcmp(expected, FLUSHED) == 0) {
if ((oid < 0) || (status < 0)) {
fprintf(stderr, "Error! %s should be on disk, but was NOT!\n", obj_pathname);
PROCESS_ERROR;
} /* end if */
}
else if (strcmp(expected, NOT_FLUSHED) == 0) {
if ((oid > 0) || (status > 0)) {
fprintf(stderr, "Error! %s not expected to be flushed, but it was found on disk!\n",
obj_pathname);
PROCESS_ERROR;
} /* end if */
}
else {
fprintf(stderr, "Error! Bad verification parameters. %s is an invalid expected outcome.\n", expected);
PROCESS_ERROR;
} /* end if */
/* Cleanup */
H5E_BEGIN_TRY
{
H5Oclose(oid);
H5Fclose(fid);
}
H5E_END_TRY
return SUCCEED;
error:
return FAIL;
} /* flush_verification */
/*-------------------------------------------------------------------------
* Function: start_refresh_verification_process
*
* Purpose: This function is used to communicate with the test script
* in order to spawn off a process which will test the
* H5*refresh routine.
*
* Return: 0 on Success, 1 on Failure
*
*-------------------------------------------------------------------------
*/
herr_t
start_refresh_verification_process(const char *obj_pathname)
{
HDremove(SIGNAL_BETWEEN_PROCESSES_1);
/* Send Signal to SCRIPT indicating that it should kick off a refresh
verification process */
h5_send_message(SIGNAL_TO_SCRIPT, obj_pathname, NULL);
/* Wait for Signal from VERIFICATION PROCESS indicating that it's opened the
target object and ready for MAIN PROCESS to modify it */
if (h5_wait_message(SIGNAL_BETWEEN_PROCESSES_1) < 0)
TEST_ERROR;
/* Check to see if any errors occurred */
if (check_for_errors() < 0)
TEST_ERROR;
/* Return */
return SUCCEED;
error:
return FAIL;
} /* start_refresh_verification_process */
/*-------------------------------------------------------------------------
* Function: end_refresh_verification_process
*
* Purpose: This function is used to communicate with the verification
* process spawned by the start_refresh_verification_process
* function. It gives it the go-ahead to call H5*refresh
* on an object and conclude the refresh verification.
*
* Return: 0 on Success, 1 on Failure
*
*-------------------------------------------------------------------------
*/
herr_t
end_refresh_verification_process(void)
{
HDremove(SIGNAL_FROM_SCRIPT);
/* Send Signal to REFRESH VERIFICATION PROCESS indicating that the object
has been modified and it should now attempt to refresh its metadata,
and verify the results. */
h5_send_message(SIGNAL_BETWEEN_PROCESSES_2, NULL, NULL);
/* Wait for Signal from SCRIPT indicating that the refresh verification
process has completed. */
if (h5_wait_message(SIGNAL_FROM_SCRIPT) < 0)
TEST_ERROR;
/* Check to see if any errors occurred */
if (check_for_errors() < 0)
TEST_ERROR;
/* Return */
return SUCCEED;
error:
return FAIL;
} /* end_refresh_verification_process */
/*-------------------------------------------------------------------------
* Function: refresh_verification
*
* Purpose: This function opens the specified object, and checks to see
* that is does not have any attributes on it. It then sends
* a signal to the main process, which will flush the object
* (putting an attribute on the object on disk). This function
* will then refresh the object, and verify that it has picked
* up the new metadata reflective of the added attribute.
*
* Return: 0 on Success, 1 on Failure
*
*-------------------------------------------------------------------------
*/
herr_t
refresh_verification(const char *obj_pathname)
{
/* Variables */
hid_t oid, fid, status = 0;
H5O_info2_t flushed_oinfo;
H5O_info2_t refreshed_oinfo;
H5O_native_info_t flushed_ninfo;
H5O_native_info_t refreshed_ninfo;
int tries = 800, sleep_tries = 400;
int token_cmp;
bool ok = false;
HDremove(SIGNAL_BETWEEN_PROCESSES_2);
/* Open Object */
if ((fid = H5Fopen(FILENAME, H5F_ACC_SWMR_READ, H5P_DEFAULT)) < 0)
PROCESS_ERROR;
if ((oid = H5Oopen(fid, obj_pathname, H5P_DEFAULT)) < 0)
PROCESS_ERROR;
/* Get Object info */
if ((status = H5Oget_info3(oid, &flushed_oinfo, H5O_INFO_BASIC | H5O_INFO_NUM_ATTRS)) < 0)
PROCESS_ERROR;
if ((status = H5Oget_native_info(oid, &flushed_ninfo, H5O_NATIVE_INFO_HDR)) < 0)
PROCESS_ERROR;
/* Make sure there are no attributes on the object. This is just a sanity
check to ensure we didn't erroneously flush the attribute before
starting the verification. */
if (flushed_oinfo.num_attrs != 0)
PROCESS_ERROR;
/* Send Signal to MAIN PROCESS indicating that it can go ahead and modify the
object. */
h5_send_message(SIGNAL_BETWEEN_PROCESSES_1, obj_pathname, NULL);
/* Wait for Signal from MAIN PROCESS indicating that it's modified the
object and we can run verification now. */
if (h5_wait_message(SIGNAL_BETWEEN_PROCESSES_2) < 0)
PROCESS_ERROR;
/* Get object info again. This will NOT reflect what's on disk, only what's
in the cache. Thus, all values will be unchanged from above, despite
newer information being on disk. */
if ((status = H5Oget_info3(oid, &refreshed_oinfo, H5O_INFO_BASIC | H5O_INFO_NUM_ATTRS)) < 0)
PROCESS_ERROR;
if ((status = H5Oget_native_info(oid, &refreshed_ninfo, H5O_NATIVE_INFO_HDR)) < 0)
PROCESS_ERROR;
/* Verify that before doing a refresh, getting the object info returns stale
information. (i.e., unchanged from above, despite new info on disk). */
if (H5Otoken_cmp(oid, &flushed_oinfo.token, &refreshed_oinfo.token, &token_cmp) < 0)
PROCESS_ERROR;
if (token_cmp)
PROCESS_ERROR;
if (flushed_oinfo.type != refreshed_oinfo.type)
PROCESS_ERROR;
if (flushed_oinfo.num_attrs != refreshed_oinfo.num_attrs)
PROCESS_ERROR;
if (flushed_ninfo.hdr.version != refreshed_ninfo.hdr.version)
PROCESS_ERROR;
if (flushed_ninfo.hdr.flags != refreshed_ninfo.hdr.flags)
PROCESS_ERROR;
if (flushed_ninfo.hdr.nmesgs != refreshed_ninfo.hdr.nmesgs)
PROCESS_ERROR;
if (flushed_ninfo.hdr.nchunks != refreshed_ninfo.hdr.nchunks)
PROCESS_ERROR;
if (flushed_ninfo.hdr.space.total != refreshed_ninfo.hdr.space.total)
PROCESS_ERROR;
/* Refresh object */
/* The H5*refresh function called depends on which object we are trying
* to refresh. (MIKE: add desired refresh call as parameter so adding new
* test cases is easy). */
do {
if ((strcmp(obj_pathname, D1) == 0) || (strcmp(obj_pathname, D2) == 0)) {
if (H5Drefresh(oid) < 0)
PROCESS_ERROR;
} /* end if */
else if ((strcmp(obj_pathname, G1) == 0) || (strcmp(obj_pathname, G2) == 0)) {
if (H5Grefresh(oid) < 0)
PROCESS_ERROR;
} /* end if */
else if ((strcmp(obj_pathname, T1) == 0) || (strcmp(obj_pathname, T2) == 0)) {
if (H5Trefresh(oid) < 0)
PROCESS_ERROR;
} /* end if */
else if ((strcmp(obj_pathname, D3) == 0) || (strcmp(obj_pathname, G3) == 0) ||
(strcmp(obj_pathname, T3) == 0)) {
if (H5Orefresh(oid) < 0)
PROCESS_ERROR;
} /* end if */
else {
fprintf(stdout, "Error. %s is an unrecognized object.\n", obj_pathname);
PROCESS_ERROR;
} /* end else */
/* Get object info. This should now accurately reflect the refreshed object on disk. */
if ((status = H5Oget_info3(oid, &refreshed_oinfo, H5O_INFO_BASIC | H5O_INFO_NUM_ATTRS)) < 0)
PROCESS_ERROR;
if ((status = H5Oget_native_info(oid, &refreshed_ninfo, H5O_NATIVE_INFO_HDR)) < 0)
PROCESS_ERROR;
if (H5Otoken_cmp(oid, &flushed_oinfo.token, &refreshed_oinfo.token, &token_cmp) < 0)
PROCESS_ERROR;
/* Confirm following (first 4) attributes are the same: */
/* Confirm following (last 4) attributes are different */
if ((!token_cmp) && (flushed_oinfo.type == refreshed_oinfo.type) &&
(flushed_oinfo.num_attrs != refreshed_oinfo.num_attrs) &&
(flushed_ninfo.hdr.version == refreshed_ninfo.hdr.version) &&
(flushed_ninfo.hdr.flags == refreshed_ninfo.hdr.flags) &&
(flushed_ninfo.hdr.nmesgs != refreshed_ninfo.hdr.nmesgs) &&
(flushed_ninfo.hdr.nchunks != refreshed_ninfo.hdr.nchunks) &&
(flushed_ninfo.hdr.space.total != refreshed_ninfo.hdr.space.total)) {
ok = true;
break;
}
if (tries == sleep_tries)
HDsleep(1);
} while (--tries);
if (!ok) {
printf("FLUSHED: num_attrs=%d, nmesgs=%d, nchunks=%d, total=%d\n", (int)flushed_oinfo.num_attrs,
(int)flushed_ninfo.hdr.nmesgs, (int)flushed_ninfo.hdr.nchunks,
(int)flushed_ninfo.hdr.space.total);
printf("REFRESHED: num_attrs=%d, nmesgs=%d, nchunks=%d, total=%d\n", (int)refreshed_oinfo.num_attrs,
(int)refreshed_ninfo.hdr.nmesgs, (int)refreshed_ninfo.hdr.nchunks,
(int)refreshed_ninfo.hdr.space.total);
PROCESS_ERROR;
}
/* Close objects */
if (H5Oclose(oid) < 0)
PROCESS_ERROR;
if (H5Fclose(fid) < 0)
PROCESS_ERROR;
/* Return */
return SUCCEED;
error:
return FAIL;
} /* refresh_verification */
/*-------------------------------------------------------------------------
* Function: check_for_errors()
*
* Purpose: This function checks the status of external verification
* processes to see if they've succeeded. It checks for the
* existence of flushrefresh_ERROR file. If present, that indicates
* an external verification process has failed, and this function
* thus fails as well. If not present, then nothing else has
* failed, and this function succeeds.
*
* Return: 0 on Success, 1 on Failure
*
*-------------------------------------------------------------------------
*/
herr_t
check_for_errors(void)
{
FILE *file;
if ((file = fopen(ERRFILE, "r"))) {
fclose(file);
HDremove(ERRFILE);
return FAIL;
} /* end if */
return SUCCEED;
} /* check_for_errors */
/*-------------------------------------------------------------------------
* Function: end_verification
*
* Purpose: Tells test script that verification routines are completed and
* that the test can wrap up.
*
* Return: void
*
*-------------------------------------------------------------------------
*/
herr_t
end_verification(void)
{
HDremove(SIGNAL_FROM_SCRIPT);
/* Send Signal to SCRIPT to indicate that we're done with verification. */
h5_send_message(SIGNAL_TO_SCRIPT, "VERIFICATION_DONE", "VERIFICATION_DONE");
/* Wait for Signal from SCRIPT indicating that we can continue. */
if (h5_wait_message(SIGNAL_FROM_SCRIPT) < 0)
TEST_ERROR;
return SUCCEED;
error:
return FAIL;
} /* end_verification */
|