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 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565
|
C * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
C Copyright by The HDF Group. *
C Copyright by the Board of Trustees of the University of Illinois. *
C All rights reserved. *
C *
C This file is part of HDF. The full HDF copyright notice, including *
C terms governing use, modification, and redistribution, is contained in *
C the COPYING file, which can be found at the root of the source code *
C distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
C If you do not have access to either file, you may request a copy from *
C help@hdfgroup.org. *
C * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
C
C
subroutine mgrf (num_err)
C
C Test Program:
C Tests the multi-file GR interface.
C Input file: none
C Output file: tmgrf.hdf
C
C
implicit none
include 'fortest.inc'
integer num_err
C
C ---chunking and compression errors ----------
integer err_grchunk, err_grwrchunk, err_grcompress
C ---------------------------------------------
C
character*20 myname
parameter (myname = 'mgrf')
c integer mgwrlut, mgrdlut
c integer mgsattr
integer mgrclut, mgwclut
integer mgscatt, mgsnatt, mggcatt, mggnatt
integer mgwcimg, mgrcimg
integer il
character*80 TESTFILE
character*80 IMAGE1, IMAGE2, IMAGEC, IMAGEC_2
character*80 ATNAME1, ATNAME_N, ATNAME_C
character*80 ATNAME2, ATNAME2_N, ATNAME2_C
character*1 CR
character buf(3, 2, 2), buf1(2, 3, 2), buf2(2, 2, 3)
character in(3,2,2), in1(2, 3, 2), in2(2, 2, 3)
integer outbuf(4), outbuf1(4), outbuf2(4)
integer inbuf(4), inbuf1(4), inbuf2(4)
equivalence (outbuf, buf), (outbuf1, buf1), (outbuf2,buf2)
equivalence (inbuf, in), (inbuf1, in1), (inbuf2,in2)
character pal(3,256), in_pal(3,256), in_pal2(256,3)
integer file_id, gr_id, ri_id, pal_id, index, index2
integer n_datasets, n_attrs, ref
integer n_comp, nt
integer dims(2), start(2), stride(2)
integer*4 attr(5), attr2(5), attr2_n(5)
character attr_c(6), attr2_c(6)
character cbuf(2,3,4), icbuf(2,3,4)
integer i, j, k, ret, number_failed
integer n_pal
DATA attr_c/'A','T','T','R','_','C'/
DATA cbuf/'A','B','C','D','E','F','G','H','I','J','K','L',
+ 'M','N','O','P','Q','R','S','T','U','V','W','X'/
call ptestban('Testing', myname)
num_err = 0
TESTFILE = 'tmgrf.hdf'
IMAGE1 = 'Image #1'
IMAGEC = 'Image_c #1'
ATNAME1 = 'Attr. #1'
ATNAME_N = 'Numeric Attr. #1'
ATNAME_C = 'Character Attr. #1'
CR = char(10)
number_failed = 0
C Initialize the arrays
C Initialize the image arrays
do 150 i=1, 2
do 2 j=1, 2
buf(1, j, i) = char(i+j)
buf(2, j, i) = char(i+j)
buf(3, j, i) = char(i+j)
buf1(j, 1, i) = char(i-j)
buf1(j, 2, i) = char(i-j)
buf1(j, 3, i) = char(i-j)
buf2(j, i, 1) = char(2*i - j)
buf2(j, i, 2) = char(2*i - j)
buf2(j, i, 3) = char(2*i - j)
2 continue
150 continue
do 157 i=1,2
do 156 j=1,3
do 155 k=1,4
icbuf(i,j,k) = ' '
155 continue
156 continue
157 continue
C Initialize the palette array
do 160 i=1, 256
do 3 j=1, 3
pal(j,i)=char(i+j)
3 continue
160 continue
C Initialize the attribute
do 170 i=1, 5
attr(i)=i*21
170 continue
C Open the file
file_id=hopen(TESTFILE, DFACC_ALL, 0)
call VRFY(file_id,'hopen',number_failed)
gr_id=mgstart(file_id)
call VRFY(gr_id,'mgstart',number_failed)
C Create an image
call MESSAGE(5,'Creating an image')
dims(1)=2
dims(2)=2
ri_id = mgcreat(gr_id,IMAGE1,3,DFNT_UINT8,MFGR_INTERLACE_PIXEL,
* dims)
call VRFY(ri_id,'mgcreat',number_failed)
start(1)=0
start(2)=0
stride(1)=1
stride(2)=1
call MESSAGE(5,'Writing image data')
ret = mgwrimg(ri_id,start,stride,dims,outbuf)
call VRFY(ret,'mgwrimg',number_failed)
C Store a palette with the image
call MESSAGE(5,'Writing palette data')
pal_id = mggltid(ri_id, 0)
call VRFY(pal_id,'mggltid',number_failed)
ret = mgwclut(pal_id,3,DFNT_UINT8,MFGR_INTERLACE_PIXEL,256,pal)
call VRFY(ret,'mgwclut',number_failed)
C Store an attribute with the image
call MESSAGE(5,'Writing numeric attribute data')
ret = mgsnatt(ri_id,ATNAME1,DFNT_INT32,5,attr)
call VRFY(ret,'mgsnatt',number_failed)
C Store a numeric attribute with the image
call MESSAGE(5,'Writing numeric attribute data')
ret = mgsnatt(ri_id,ATNAME_N,DFNT_INT32,5,attr)
call VRFY(ret,'mgsnatt',number_failed)
C Store a character attribute with the image
call MESSAGE(5,'Writing numeric attribute data')
ret = mgscatt(ri_id,ATNAME_C,DFNT_CHAR8,6,attr_c)
call VRFY(ret,'mgscatt',number_failed)
C End access to the image
ret = mgendac(ri_id)
call VRFY(ret,'mgendac',number_failed)
C Create a character type image
call MESSAGE(5,'Creating a character type image')
dims(1)=2
dims(2)=2
ri_id = mgcreat(gr_id,IMAGEC,3,DFNT_CHAR8,MFGR_INTERLACE_PIXEL,
* dims)
call VRFY(ri_id,'mgcreat',number_failed)
start(1)=0
start(2)=0
stride(1)=1
stride(2)=1
call MESSAGE(5,'Writing character image data')
ret = mgwcimg(ri_id,start,stride,dims,cbuf)
call VRFY(ret,'mgwcimg',number_failed)
ret = mgendac(ri_id)
call VRFY(ret,'mgendac',number_failed)
C End access to the GR interface
ret = mgend(gr_id)
call VRFY(ret,'mgend',number_failed)
C Close the file
ret = hclose(file_id)
call VRFY(ret,'hclose',number_failed)
C Re-open the file
file_id=hopen(TESTFILE, DFACC_ALL, 0)
call VRFY(file_id,'hopen',number_failed)
gr_id=mgstart(file_id)
call VRFY(gr_id,'mgstart',number_failed)
C Get info about the file
call MESSAGE(5,'Getting GR file information')
ret = mgfinfo(gr_id,n_datasets,n_attrs)
call VRFY(ret,'mgfinfo',number_failed)
C Select an image
call MESSAGE(5,'Selecting an image')
index = mgn2ndx(gr_id, IMAGE1)
call VRFY(index,'mgn2ndx',number_failed)
ri_id = mgselct(gr_id,index)
call VRFY(ri_id,'mgselct',number_failed)
n_pal = mggnluts(ri_id)
call VRFY(ri_id,'mggnluts',number_failed)
if(n_pal .ne. 1) then
print *, 'Wrong number of palettes returned for IMAGE1'
endif
C Get info about the image
call MESSAGE(5,'Getting image information')
ret = mggiinf(ri_id,IMAGE2,n_comp,nt,il,dims,n_attrs)
call VRFY(ret,'mggiinf',number_failed)
ref = mgid2rf(ri_id)
call VRFY(ref,'mgid2rf',number_failed)
index2 = mgr2idx(gr_id,ref)
call VRFY(index2,'mgr2idx',number_failed)
C Check image reading
start(1)=0
start(2)=0
stride(1)=1
stride(2)=1
call MESSAGE(5,'Reading image data')
ret = mgrdimg(ri_id,start,stride,dims,inbuf)
call VRFY(ret,'mgrdimg',number_failed)
ret = mgrimil(ri_id,MFGR_INTERLACE_LINE)
call VRFY(ret,'mgrimil',number_failed)
ret = mgrdimg(ri_id,start,stride,dims,inbuf1)
call VRFY(ret,'mgrdimg',number_failed)
ret = mgrimil(ri_id,MFGR_INTERLACE_COMPONENT)
call VRFY(ret,'mgrimil',number_failed)
ret = mgrdimg(ri_id,start,stride,dims,inbuf2)
call VRFY(ret,'mgrdimg',number_failed)
C Check palette reading
pal_id = mggltid(ri_id, 0)
call VRFY(pal_id,'mggltid',number_failed)
call MESSAGE(5,'Reading palette data')
ret = mgglinf(pal_id,n_comp,nt,il,i)
call VRFY(ret,'mgglinf',number_failed)
ret = mgrclut(pal_id,in_pal)
call VRFY(ret,'mgrclut',number_failed)
ret = mgrltil(pal_id,MFGR_INTERLACE_COMPONENT)
call VRFY(ret,'mgrltil',number_failed)
ret = mgrclut(pal_id,in_pal2)
call VRFY(ret,'mgrclut',number_failed)
C Check attribute reading
index = mgfndat(ri_id,ATNAME1)
call VRFY(index,'mgfndat',number_failed)
call MESSAGE(5,'Reading attribute data')
ret = mgatinf(ri_id,index,ATNAME2,nt,i)
call VRFY(ret,'mgatinf',number_failed)
ret = mggattr(ri_id,index,attr2)
call VRFY(ret,'mggattr',number_failed)
C Check numeric attr
index = mgfndat(ri_id, ATNAME_N)
call VRFY(index,'mgfndat',number_failed)
call MESSAGE(5,'Reading attribute data')
ret = mgatinf(ri_id,index,ATNAME2_N,nt,i)
call VRFY(ret,'mgatinf',number_failed)
ret = mggnatt(ri_id,index,attr2_n)
call VRFY(ret,'mggnatt',number_failed)
C Check character attr
index = mgfndat(ri_id, ATNAME_C)
call VRFY(index,'mgfndat',number_failed)
call MESSAGE(5,'Reading attribute data')
ret = mgatinf(ri_id,index,ATNAME2_C,nt,i)
call VRFY(ret,'mgatinf',number_failed)
ret = mggcatt(ri_id,index,attr2_c)
call VRFY(ret,'mggcatt',number_failed)
C End access to the image
ret = mgendac(ri_id)
call VRFY(ret,'mgendac',number_failed)
C Select a character image
call MESSAGE(5,'Selecting a char type image')
index = mgn2ndx(gr_id, IMAGEC)
call VRFY(index,'mgn2ndx',number_failed)
ri_id = mgselct(gr_id,index)
call VRFY(ri_id,'mgselct',number_failed)
n_pal = mggnluts(ri_id)
call VRFY(ri_id,'mggnluts',number_failed)
if(n_pal .ne. 0) then
print *,'Wrong number of palettes returned for IMAGEC'
endif
C Get info about the image
call MESSAGE(5,'Getting image information')
ret = mggiinf(ri_id,IMAGEC_2,n_comp,nt,il,dims,n_attrs)
call VRFY(ret,'mggiinf',number_failed)
ref = mgid2rf(ri_id)
call VRFY(ref,'mgid2rf',number_failed)
index2 = mgr2idx(gr_id,ref)
call VRFY(index2,'mgr2idx',number_failed)
C Check image reading
start(1)=0
start(2)=0
stride(1)=1
stride(2)=1
call MESSAGE(5,'Reading image data')
call VRFY(ret,'mgrdimg',number_failed)
ret = mgrimil(ri_id,MFGR_INTERLACE_LINE)
call VRFY(ret,'mgrimil',number_failed)
ret = mgrcimg(ri_id,start,stride,dims,icbuf)
call VRFY(ret,'mgrcimg',number_failed)
ret = mgrimil(ri_id,MFGR_INTERLACE_COMPONENT)
call VRFY(ret,'mgrimil',number_failed)
C End access to the image
ret = mgendac(ri_id)
call VRFY(ret,'mgendac',number_failed)
C End access to the GR interface
ret = mgend(gr_id)
call VRFY(ret,'mgend',number_failed)
C Close the file
ret = hclose(file_id)
call VRFY(ret,'hclose',number_failed)
C
C GR chunking and compression tests. Added by EIP 1/13/98
C
C ----Chunking test
C creates the following files:
C GRchunked1.hdf
err_grchunk = 0
call test_grchunk(err_grchunk)
if (err_grchunk .ne. 0) then
number_failed = number_failed + 1
print *, '*******mgrf: test_grchunk failed********'
endif
C ----Chunking write/read test
C creates the following files:
C GRchunked2.hdf
err_grwrchunk = 0
call test_grwrchunk(err_grwrchunk)
if (err_grwrchunk .ne. 0) then
number_failed = number_failed + 1
print *, '*******mgrf: test_grwrchunk failed********'
endif
C ----Compression test
C
C creates the following files:
C GRcompressed.hdf
err_grcompress = 0
call test_grcompress(err_grcompress)
if (err_grcompress .ne. 0) then
number_failed = number_failed + 1
print *, '*******mgrf: test_grcompress failed*******'
endif
C
if (number_failed .eq. 0) then
if (Verbosity .gt. 6) then
print *, CR, CR
print *, '****** ALL TESTS SUCCESSFUL ******'
endif
else
print *, '****** ', number_failed, ' TESTS FAILED ******'
endif
return
end
CD
CD----All lines started with CD should be deleted after GR bug that prevents
CD----writing multiple images to the file is fixed.
CD
subroutine test_grchunk( err_grchunk )
implicit none
integer N_COMP_TYPES, N_COMP_ARG, NCOMP
integer MFGR_INTERLACE_PIXEL
parameter(N_COMP_TYPES = 4, N_COMP_ARG =1)
parameter(NCOMP = 2, MFGR_INTERLACE_PIXEL = 0)
integer ri_id(N_COMP_TYPES),
. gr_id,
. file_id
integer dims(2), start(2), edges(2), stride(2)
integer err_grchunk
integer i, j, status, il, k, i_comp, index
integer flags, maxcache, nc_out
character*14 file
character*12 name(N_COMP_TYPES)
integer n_images, n_file_attrs
C
C---GR interface functions
C
integer mgstart, mgcreat, mgwrimg, mgsnatt,
. mgrdimg, mgfinfo, mgn2ndx, mgselct, mgendac, mgend
C
C---GR chunking functions
C
integer mggichnk,
. mgscchnk,
. mgschnk
C
integer hopen, hclose
integer DFACC_CREATE,
. DFACC_READ,
. DFACC_WRITE
integer DFNT_INT32
integer X_LENGTH, Y_LENGTH
integer X_CH_LENGTH, Y_CH_LENGTH
parameter (DFACC_CREATE = 4,
. DFACC_READ = 1,
. DFACC_WRITE = 2)
parameter (DFNT_INT32 = 24)
parameter (X_LENGTH = 9,
. Y_LENGTH = 4,
. X_CH_LENGTH = 3,
. Y_CH_LENGTH = 2)
C
C---Compression types and parameters arrays
C
integer comp_type(N_COMP_TYPES), comp_type_out(N_COMP_TYPES)
integer comp_prm(N_COMP_ARG)
C
C---Compression parameters
C
integer COMP_CODE_NONE,
. COMP_CODE_RLE,
. COMP_CODE_SKPHUFF,
. COMP_CODE_DEFLATE,
. SKPHUFF_SKP_SIZE,
. DEFLATE_LEVEL
parameter(COMP_CODE_NONE = 0,
. COMP_CODE_RLE = 1,
. COMP_CODE_SKPHUFF = 3,
. COMP_CODE_DEFLATE = 4)
parameter (DEFLATE_LEVEL = 1,
. SKPHUFF_SKP_SIZE = 2)
C
C---Data
C
integer*4 image_data(NCOMP, X_LENGTH, Y_LENGTH)
integer*4 image_data_out(NCOMP,X_LENGTH,Y_LENGTH)
C
C---Default pixel value
C
integer*4 pixel_value(2)
C
C---Chunking dimension arrays
C
integer ch_dims(2), ch_dims_out(2)
C
C----We will write four images using different compression methods to
C one file.
C
file = 'GRchunked1.hdf'
C
C No compression
C
name(1) = 'Nocomp_data'
comp_type(1) = COMP_CODE_NONE
comp_type_out(1) = 0
C
C RLE compression
C
name(2) = 'Rlcomp_data'
comp_type(2) = COMP_CODE_RLE
comp_type_out(2) = 1
C
C Adaptive Huffman compression
C
name(3) = 'Hucomp_data'
comp_type(3) = COMP_CODE_SKPHUFF
comp_type_out(3) = 1
C
C GZIP compression
C
name(4) = 'Gzcomp_data'
comp_type(4) = COMP_CODE_DEFLATE
comp_type_out(4) = 1
C
C Data initialization
C
do 30 j = 1, Y_LENGTH
do 20 i = 1, X_LENGTH
do 10 k = 1, NCOMP
image_data(k, i, j) = i + j - 1
10 continue
20 continue
30 continue
C
C Initialize compression argument array
C
do 35 i = 1, N_COMP_ARG
comp_prm(i) = 0
35 continue
C
C---Define chunk dimensions
C
ch_dims(1) = X_CH_LENGTH
ch_dims(2) = Y_CH_LENGTH
C
C Main loop through different compression types
C
C
C Create and a file and initiate GR interface.
C
file_id = hopen(file, DFACC_CREATE, 0)
if(file_id .le. 0) then
print *, 'hopen failed to create a file'
err_grchunk = err_grchunk +1
goto 2223
endif
gr_id = mgstart(file_id)
if(gr_id .le. 0) then
print *, 'mgstart failed to initialise GR interface'
err_grchunk = err_grchunk +1
goto 2222
endif
do 1000 i_comp=1, N_COMP_TYPES
C
C Define the number of components and dimensions of the image.
il = MFGR_INTERLACE_PIXEL
dims(1) = X_LENGTH
dims(2) = Y_LENGTH
C Create the data set.
ri_id(i_comp) = mgcreat(gr_id, name(i_comp), NCOMP,
. DFNT_INT32, il, dims)
if(ri_id(i_comp) .le. 0) then
print *, 'mgcreat failed to create ', i_comp, 'GR dataset'
err_grchunk = err_grchunk +1
goto 1000
endif
C
C---Set pixel value
C
pixel_value(1) = 0
pixel_value(2) = 0
C
C---Fill the image array with the default pixel value
C
status = mgsnatt(ri_id(i_comp), 'FillValue', DFNT_INT32,
. ncomp, pixel_value)
if(status .ne. 0) then
print *, 'mgsnatt failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
C
C---Define chunked GR
C
if (i_comp. eq. 3) comp_prm(1) = SKPHUFF_SKP_SIZE
if (i_comp. eq. 4) comp_prm(1) = DEFLATE_LEVEL
status = mgschnk (ri_id(i_comp), ch_dims,
. comp_type(i_comp),comp_prm)
if(status .ne. 0) then
print *, 'mgschnk failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
C
C---Set chunk cache to hold maximum of 3 chunks
C
maxcache = 3
flags = 0
status = mgscchnk (ri_id(i_comp), maxcache, flags)
if(status .ne. 3) then
print *, 'mgscchnk failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
C
C Define the location, pattern, and size of the data set
C that will be written to.
start(1) = 0
start(2) = 0
edges(1) = X_LENGTH
edges(2) = Y_LENGTH
stride(1) = 1
stride(2) = 1
C Write the stored data to the image array.
status = mgwrimg(ri_id(i_comp), start, stride, edges, image_data)
if(status .ne. 0) then
print *, 'mgwrimg failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
C
C Terminate access to the array.
C
status = mgendac(ri_id(i_comp))
if(status .ne. 0) then
print *, 'mgendac failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
1000 continue
C
C Terminate access to the GR interface.
C
status = mgend(gr_id)
if(status .ne. 0) then
print *, 'mgend failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
C
C Close the file.
C
status = hclose(file_id)
if(status .ne. 0) then
print *, 'hclose failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
C
C Open the file.
C
file_id = hopen(file, DFACC_READ, 0)
if(file_id .eq. -1) then
print *, 'hopen failed to access the file'
err_grchunk = err_grchunk +1
goto 2223
endif
C
C Initiate the GR interface and select first data set.
C
gr_id = mgstart(file_id)
if(gr_id .eq. -1) then
print *, 'mgstart failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
goto 2222
endif
C
C Check that file contains 4 GR datasets and has 0 file attributes.
C
status = mgfinfo(gr_id, n_images, n_file_attrs)
if(status .ne. 0) then
print *, 'mgfinfo failed '
err_grchunk = err_grchunk +1
goto 2222
endif
if(n_images .ne. 4) then
print *, 'Wrong number of images returned '
err_grchunk = err_grchunk +1
goto 2222
endif
if(n_file_attrs .ne. 0) then
print *, 'Wrong number of file attributes returned '
err_grchunk = err_grchunk +1
endif
do 2000 i_comp=1, n_images
C ri_id(i_comp) = mgselct(gr_id(i_comp), index)
C
C Find an index using image's name.
C
index = mgn2ndx(gr_id, name(i_comp))
if(index .lt. 0 .or. index .gt. 3) then
print *, 'Wrong index range '
err_grchunk = err_grchunk +1
goto 2222
endif
ri_id(i_comp) = mgselct(gr_id, index)
if(ri_id(i_comp) .eq. -1) then
print *, 'mgselct failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
goto 1999
endif
C
C Read the stored data to the image array.
C
status = mgrdimg(ri_id(i_comp), start, stride, edges,
. image_data_out)
if(status .ne. 0) then
print *, 'mgrdimg failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
C
C--- Compare the data we read with the original data
C
do 60 j = 1, Y_LENGTH
do 50 i = 1, X_LENGTH
do 40 k = 1, ncomp
if(image_data(k, i, j).ne.image_data_out(k,i,j)) then
print *, 'data is wrong'
err_grchunk = err_grchunk +1
endif
40 continue
50 continue
60 continue
C
C Check chunking info
C
status = mggichnk(ri_id(i_comp), ch_dims_out,
. nc_out)
if(status .ne. 0) then
print *, 'mggichnk failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
if (comp_type_out(i_comp) .ne. nc_out) then
print *, 'mggichnk returns wrong compression type for',
. i_comp, '-th data set'
err_grchunk = err_grchunk + 1
endif
if ( (ch_dims(1) .ne. ch_dims_out(1)) .or.
. (ch_dims(2) .ne. ch_dims_out(2))) then
print *, 'mggichnk returns wrong chunk dimensions for',
. i_comp, '-th data set'
err_grchunk = err_grchunk + 1
endif
C
C Terminate access to the array.
C
status = mgendac(ri_id(i_comp))
if(status .ne. 0) then
print *, 'mgendac failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
1999 continue
C
2000 continue
C
C Terminate access to the GR interface.
C
status = mgend(gr_id)
if(status .ne. 0) then
print *, 'mgend failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
2222 continue
C
C Close the file.
C
status = hclose(file_id)
if(status .ne. 0) then
print *, 'hclose failed for', i_comp, '-th data set'
err_grchunk = err_grchunk +1
endif
2223 continue
return
end
C
C GR compression test
C
subroutine test_grcompress( err_grcompress )
implicit none
integer N_COMP_TYPES, N_COMP_ARG, NCOMP
C parameter(N_COMP_TYPES = 4, N_COMP_ARG =1)
parameter(N_COMP_TYPES = 5, N_COMP_ARG = 2)
integer MFGR_INTERLACE_PIXEL
parameter(NCOMP = 3, MFGR_INTERLACE_PIXEL = 0)
integer ri_id(N_COMP_TYPES),
. gr_id,
. file_id
integer dims(2), start(2), edges(2), stride(2)
integer i, j, k, status, il, i_comp, index
integer err_grcompress
C character*12 file(N_COMP_TYPES)
character*16 file
character*12 name(N_COMP_TYPES)
C
C---GR interface functions
C
integer mgstart, mgcreat, mgwrimg, mgn2ndx,
. mgsnatt,
. mgrdimg, mgselct, mgendac, mgend
C
C---GR compression function
C
integer mgscompress, mggcompress
C
integer hopen, hclose
integer DFACC_CREATE,
. DFACC_READ,
. DFACC_WRITE
integer DFNT_INT32
integer X_LENGTH, Y_LENGTH
integer X_CH_LENGTH, Y_CH_LENGTH
parameter (DFACC_CREATE = 4,
. DFACC_READ = 1,
. DFACC_WRITE = 2)
parameter (DFNT_INT32 = 24)
parameter (X_LENGTH = 9,
. Y_LENGTH = 4,
. X_CH_LENGTH = 3,
. Y_CH_LENGTH = 2)
C
C---Compression types and parameters arrays
C
integer comp_type(N_COMP_TYPES), comp_type_out
integer comp_prm(N_COMP_ARG), comp_prm_out(N_COMP_ARG)
C
C---Compression parameters
C
integer COMP_CODE_NONE,
. COMP_CODE_RLE,
. COMP_CODE_SKPHUFF,
. COMP_CODE_DEFLATE,
. SKPHUFF_SKP_SIZE,
. DEFLATE_LEVEL,
. COMP_CODE_JPEG,
. JPEG_QUALITY,
. JPEG_COMPATIBILITY
parameter(COMP_CODE_NONE = 0,
. COMP_CODE_RLE = 1,
. COMP_CODE_SKPHUFF = 3,
. COMP_CODE_DEFLATE = 4,
. COMP_CODE_JPEG = 7)
parameter (DEFLATE_LEVEL = 6,
. SKPHUFF_SKP_SIZE = 2)
parameter (JPEG_QUALITY = 100,
. JPEG_COMPATIBILITY = 1)
C
C---Data
C
integer*4 image_data(NCOMP, X_LENGTH, Y_LENGTH)
integer*4 image_data_out(NCOMP,X_LENGTH,Y_LENGTH)
C
C---Default pixel value
C
integer*4 pixel_value(NCOMP)
C
C---We will write/read to four different files corresponding to the
C different compression types.
file = 'GRcompressed.hdf'
C
C No compression
C
name(1) = 'Nocomp_data'
comp_type(1) = COMP_CODE_NONE
C
C RLE compression
C
name(2) = 'Rlcomp_data'
comp_type(2) = COMP_CODE_RLE
C
C Adaptive Huffman compression
C
name(3) = 'Hucomp_data'
comp_type(3) = COMP_CODE_SKPHUFF
C
C GZIP compression
C
name(4) = 'Gzcomp_data'
comp_type(4) = COMP_CODE_DEFLATE
C
C JPEG compression
C
name(5) = 'Jpcomp_data'
comp_type(5) = COMP_CODE_JPEG
C
C Data initialization
C
do 30 j = 1, Y_LENGTH
do 20 i = 1, X_LENGTH
do 10 k = 1, NCOMP
image_data(k, i, j) = i + j - 1
10 continue
20 continue
30 continue
C
C Initialize compression argument array
C
do 35 i = 1, N_COMP_ARG
comp_prm(i) = 0
35 continue
C
C---Set pixel value
C
do 305 i = 1, NCOMP
pixel_value(i) = 0
305 continue
C
C Main loop through different compression types
C
C
C Create and open the file.
C
file_id = hopen(file, DFACC_CREATE, 0)
if(file_id .eq. -1) then
print *, 'hopen failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
C
C Initiate the GR interface.
C
C gr_id(i_comp) = mgstart(file_id(i_comp))
C if(gr_id(i_comp) .eq. -1) then
gr_id = mgstart(file_id)
if(gr_id .eq. -1) then
print *, 'mgstart failed for', i_comp, '-th dataset'
err_grcompress = err_grcompress +1
endif
do 1000 i_comp=1, N_COMP_TYPES
C Define the number of components and dimensions of the image.
il = MFGR_INTERLACE_PIXEL
dims(1) = X_LENGTH
dims(2) = Y_LENGTH
C Create the data set.
ri_id(i_comp) = mgcreat(gr_id, name(i_comp), NCOMP,
. DFNT_INT32, il, dims)
if(ri_id(i_comp) .eq. -1) then
print *, 'mgcreat failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
C
C---Fill the image array with the default pixel value
C
status = mgsnatt(ri_id(i_comp), 'FillValue', DFNT_INT32,
. ncomp, pixel_value)
if(status .ne. 0) then
print *, 'mgsnatt failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
C
C---Set compression
C
if (i_comp. eq. 3) comp_prm(1) = SKPHUFF_SKP_SIZE
if (i_comp. eq. 4) comp_prm(1) = DEFLATE_LEVEL
if (i_comp. eq. 5) then
comp_prm(1) = JPEG_QUALITY
comp_prm(2) = JPEG_COMPATIBILITY
endif
status = mgscompress (ri_id(i_comp),
. comp_type(i_comp),comp_prm)
if(status .ne. 0) then
print *, 'mgscompress failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
C
C Define the location, pattern, and size of the data set
C that will be written to.
start(1) = 0
start(2) = 0
edges(1) = X_LENGTH
edges(2) = Y_LENGTH
stride(1) = 1
stride(2) = 1
C Write the stored data to the image array.
status = mgwrimg(ri_id(i_comp), start, stride, edges, image_data)
if(status .ne. 0) then
print *, 'mgwrimg failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
C
C Terminate access to the array.
C
status = mgendac(ri_id(i_comp))
if(status .ne. 0) then
print *, 'mgendac failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
1000 continue
C
C Terminate access to the GR interface.
C
status = mgend(gr_id)
if(status .ne. 0) then
print *, 'mgend failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
C
C Close the file.
C
status = hclose(file_id)
if(status .ne. 0) then
print *, 'hclose failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
C
C Open the file.
C
file_id = hopen(file, DFACC_READ, 0)
if(file_id .eq. -1) then
print *, 'hopen failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
C
C Initiate the GR interface and select first data set.
C
gr_id = mgstart(file_id)
if(gr_id .eq. -1) then
print *, 'mgstart failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
do 2000 i_comp=1, N_COMP_TYPES
index = mgn2ndx(gr_id, name(i_comp))
if(index .eq. -1 ) then
print *, 'mgn2ndx failed for', name(i_comp), ' data set'
err_grcompress = err_grcompress +1
endif
ri_id(i_comp) = mgselct(gr_id, index)
if(ri_id(i_comp) .eq. -1) then
print *, 'mgselct failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
goto 1999
endif
C
C Find out type of compression used and compression parameters.
C
status = mggcompress(ri_id(i_comp), comp_type_out, comp_prm_out)
if (status .eq. -1) then
print *, 'mggcompress failed for', i, ' -th dataset'
err_grcompress = err_grcompress + 1
endif
if (name(i_comp) .eq. 'Nocomp_data') then
if (comp_type_out .ne. COMP_CODE_NONE) then
print *, 'wrong compression type for Nocomp_data dataset'
err_grcompress = err_grcompress + 1
endif
endif
if (name(i_comp) .eq. 'Rlcomp_data') then
if (comp_type_out .ne. COMP_CODE_RLE) then
print *, 'wrong compression type for Rlcomp_data dataset'
err_grcompress = err_grcompress + 1
endif
endif
if (name(i_comp) .eq. 'Hucomp_data') then
if (comp_type_out .ne. COMP_CODE_SKPHUFF) then
print *, 'wrong compression type for Hucomp_data dataset'
err_grcompress = err_grcompress + 1
endif
if (comp_prm_out(1). ne. skphuff_skp_size) then
print *, 'wrong compression parameter for Hucomp_data dataset'
err_grcompress = err_grcompress + 1
endif
endif
if (name(i_comp) .eq. 'Gzcomp_data') then
if (comp_type_out .ne. COMP_CODE_DEFLATE) then
print *, 'wrong compression type for Gzcomp_data dataset'
endif
if (comp_prm_out(1). ne. deflate_level) then
print *, 'wrong compression parameter for Gzcomp_data dataset'
err_grcompress = err_grcompress + 1
endif
endif
if (name(i_comp) .eq. 'Jpcomp_data') then
if (comp_type_out .ne. COMP_CODE_JPEG) then
print *, 'wrong compression type for Jpcomp_data dataset'
err_grcompress = err_grcompress + 1
endif
goto 1111
endif
C
C Read the stored data to the image array.
C
start(1) = 0
start(2) = 0
edges(1) = X_LENGTH
edges(2) = Y_LENGTH
stride(1) = 1
stride(2) = 1
status = mgrdimg(ri_id(i_comp), start, stride, edges,
. image_data_out)
if(status .ne. 0) then
print *, 'mgrdimg failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
C
C--- Compare the data we read with the original data
C
do 60 j = 1, Y_LENGTH
do 50 i = 1, X_LENGTH
do 40 k = 1, ncomp
if(image_data(k, i, j).ne.image_data_out(k,i,j)) then
print *, 'data is wrong'
err_grcompress = err_grcompress +1
endif
40 continue
50 continue
60 continue
1111 continue
C
C Terminate access to the array.
C
status = mgendac(ri_id(i_comp))
if(status .ne. 0) then
print *, 'mgendac failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
1999 continue
2000 continue
C
C Terminate access to the GR interface.
C
status = mgend(gr_id)
if(status .ne. 0) then
print *, 'mgend failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
C
C Close the file.
C
status = hclose(file_id)
if(status .ne. 0) then
print *, 'hclose failed for', i_comp, '-th data set'
err_grcompress = err_grcompress +1
endif
return
end
subroutine test_grwrchunk( err_grwrchunk )
C
C---This subroutine tests GR write/read functions
C
implicit none
integer N_COMP_TYPES, N_COMP_ARG, NCOMP
integer MFGR_INTERLACE_PIXEL
parameter(N_COMP_TYPES = 4, N_COMP_ARG =1)
parameter(NCOMP = 3, MFGR_INTERLACE_PIXEL = 0)
integer ri_id(N_COMP_TYPES),
. gr_id,
. file_id
integer dims(2), start(2), edges(2), stride(2)
integer err_grwrchunk
integer i, j, status, il, k, i_comp, index
C character*13 file(N_COMP_TYPES)
character*14 file
character*12 name(N_COMP_TYPES)
C
C---GR interface functions
C
integer mgstart, mgcreat, mgsnatt,
. mgrdimg, mgn2ndx, mgselct, mgendac, mgend, mgfinfo,
. mggcompress
C
C---GR chunking functions
C
integer mgwchnk,
. mgrchnk,
. mgschnk
C
integer hopen, hclose
integer DFACC_CREATE,
. DFACC_READ,
. DFACC_WRITE
integer DFNT_INT32
integer X_LENGTH, Y_LENGTH
integer X_CH_LENGTH, Y_CH_LENGTH
parameter (DFACC_CREATE = 4,
. DFACC_READ = 1,
. DFACC_WRITE = 2)
parameter (DFNT_INT32 = 24)
parameter (X_LENGTH = 6,
. Y_LENGTH = 10,
. X_CH_LENGTH = 3,
. Y_CH_LENGTH = 2)
C
C---Compression types and parameters arrays
C
integer comp_type(N_COMP_TYPES), comp_type_out(N_COMP_TYPES)
integer comp_typegr
integer comp_prm(N_COMP_ARG)
integer comp_prm_out(N_COMP_ARG)
C
C---Compression parameters
C
integer COMP_CODE_NONE,
. COMP_CODE_RLE,
. COMP_CODE_SKPHUFF,
. COMP_CODE_DEFLATE,
. SKPHUFF_SKP_SIZE,
. DEFLATE_LEVEL
parameter(COMP_CODE_NONE = 0,
. COMP_CODE_RLE = 1,
. COMP_CODE_SKPHUFF = 3,
. COMP_CODE_DEFLATE = 4)
parameter (DEFLATE_LEVEL = 6,
. SKPHUFF_SKP_SIZE = 3)
C
C---Data
C
integer*4 chunk11(NCOMP* X_CH_LENGTH*Y_CH_LENGTH)
integer*4 chunk21(NCOMP* X_CH_LENGTH*Y_CH_LENGTH)
integer*4 chunk52(NCOMP* X_CH_LENGTH*Y_CH_LENGTH)
integer*4 chunk52_out(NCOMP* X_CH_LENGTH*Y_CH_LENGTH)
integer*4 data_org(NCOMP* X_LENGTH*Y_LENGTH)
integer*4 image_data_out(NCOMP,X_LENGTH,Y_LENGTH)
integer*4 data_arr(NCOMP,X_LENGTH,Y_LENGTH)
integer n_images, n_file_attrs
equivalence (data_org(1), data_arr(1,1,1))
C
C---Default pixel value
C
integer*4 pixel_value(3)
C
C---Chunking dimension arrays
C
integer ch_dims(2)
C
C---We will write/read to four different files corresponding to the
C different compression types.
C
C We will try to write to one file GRchunked2.hdf
file = 'GRchunked2.hdf'
C No compression
C
name(1) = 'Nocomp_data'
comp_type(1) = COMP_CODE_NONE
comp_type_out(1) = 0
C
C RLE compression
C
name(2) = 'Rlcomp_data'
comp_type(2) = COMP_CODE_RLE
comp_type_out(2) = 1
C
C Adaptive Huffman compression
C
name(3) = 'Hucomp_data'
comp_type(3) = COMP_CODE_SKPHUFF
comp_type_out(3) = 1
C
C GZIP compression
C
name(4) = 'Gzcomp_data'
comp_type(4) = COMP_CODE_DEFLATE
comp_type_out(4) = 1
C
C Data initialization
C
data chunk11 / 110, 111, 112, 120, 121, 122,
. 130, 131, 132, 140, 141, 142,
. 150, 151, 152, 160, 161, 162/
data chunk21 / 210, 211, 212, 220, 221, 222,
. 230, 231, 232, 240, 241, 242,
. 250, 251, 252, 260, 261, 262/
data chunk52 / 1010, 1011, 1012, 1020, 1021, 1022,
. 1030, 1031, 1032, 1040, 1041, 1042,
. 1050, 1051, 1052, 1060, 1061, 1062/
data data_org /
. 110, 111, 112, 120, 121, 122, 210, 211, 212, 220, 221, 222,
. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
. 0, 0, 0, 0, 0, 0, 130, 131, 132, 140, 141, 142,
. 230, 231, 232, 240, 241, 242, 0, 0, 0, 0, 0, 0,
. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
. 150, 151, 152, 160, 161, 162, 250, 251, 252, 260, 261, 262,
. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
. 0, 0, 0, 0, 0, 0, 1010, 1011, 1012, 1020, 1021, 1022,
. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
. 1030, 1031, 1032, 1040, 1041, 1042, 0, 0, 0, 0, 0, 0,
. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
. 0, 0, 0, 0, 0, 0, 1050, 1051, 1052, 1060, 1061, 1062/
C
C Initialize compression argument array
C
do 35 i = 1, N_COMP_ARG
comp_prm(i) = 0
35 continue
C
C---Define chunk dimensions
C
ch_dims(1) = Y_CH_LENGTH
ch_dims(2) = X_CH_LENGTH
C
C Main loop through different compression types
C
C
C Create and open the file.
C
C
C Initiate the GR interface.
C
file_id = hopen(file, DFACC_CREATE, 0)
gr_id = mgstart(file_id)
do 1000 i_comp=1, N_COMP_TYPES
C Define the number of components and dimensions of the image.
il = MFGR_INTERLACE_PIXEL
dims(1) = X_LENGTH
dims(2) = Y_LENGTH
C Create the data set.
ri_id(i_comp) = mgcreat(gr_id, name(i_comp), NCOMP,
. DFNT_INT32, il, dims)
C
C---Set pixel value
C
pixel_value(1) = 0
pixel_value(2) = 0
pixel_value(3) = 0
C
C---Fill the image array with the default pixel value
C
status = mgsnatt(ri_id(i_comp), 'FillValue', DFNT_INT32,
. ncomp, pixel_value)
if(status .ne. 0) then
print *, 'mgsnatt failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
C
C---Define chunked GR
C
if (i_comp. eq. 3) comp_prm(1) = SKPHUFF_SKP_SIZE
if (i_comp. eq. 4) comp_prm(1) = DEFLATE_LEVEL
status = mgschnk (ri_id(i_comp), ch_dims,
. comp_type(i_comp),comp_prm)
if(status .ne. 0) then
print *, 'mgschnk failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
C
C Define the location of the first chunk
C that will be written to.
start(1) = 1
start(2) = 1
C Write the stored data to the image array.
status = mgwchnk(ri_id(i_comp), start, chunk11)
if(status .ne. 0) then
print *, 'mgwchnk failed for', i_comp,
. '-th data set, first chunk'
err_grwrchunk = err_grwrchunk +1
endif
C
C Define the location of the first chunk
C that will be written to.
start(1) = 2
start(2) = 1
C Write the stored data to the image array.
status = mgwchnk(ri_id(i_comp), start, chunk21)
if(status .ne. 0) then
print *, 'mgwchnk failed for', i_comp,
. '-th data set, second chunk'
err_grwrchunk = err_grwrchunk +1
endif
C
C Define the location of the first chunk
C that will be written to.
start(1) = 5
start(2) = 2
C Write the stored data to the image array.
status = mgwchnk(ri_id(i_comp), start, chunk52)
if(status .ne. 0) then
print *, 'mgwchnk failed for', i_comp,
. '-th data set, third chunk'
err_grwrchunk = err_grwrchunk +1
endif
C
C Terminate access to the array.
C
status = mgendac(ri_id(i_comp))
if(status .ne. 0) then
print *, 'mgendac failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
1000 continue
C
C Terminate access to the GR interface.
C
C status = mgend(gr_id(i_comp))
status = mgend(gr_id)
if(status .ne. 0) then
print *, 'mgend failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
C
C Close the file.
C
status = hclose(file_id)
if(status .ne. 0) then
print *, 'hclose failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
file_id = hopen(file, DFACC_READ, 0)
if(file_id .eq. -1) then
print *, 'hopen failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
C
C Initiate the GR interface and select first data set.
C
gr_id = mgstart(file_id)
if(gr_id .eq. -1) then
print *, 'mgstart failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
C
C Find number of images in the file ( should be 4)
C
status = mgfinfo(gr_id, n_images, n_file_attrs)
if(status .ne. 0) then
print *, 'mgfinfo failed '
err_grwrchunk = err_grwrchunk +1
goto 2222
endif
if(n_images .ne. 4) then
print *, 'Wrong number of images returned '
err_grwrchunk = err_grwrchunk +1
goto 2222
endif
if(n_file_attrs .ne. 0) then
print *, 'Wrong number of file attributes returned '
err_grwrchunk = err_grwrchunk +1
endif
do 2000 i_comp=1, n_images
C
C Find an index using image's name.
C
index = mgn2ndx(gr_id, name(i_comp))
if(index .lt. 0 .or. index .gt. 3) then
print *, 'Wrong index range '
err_grwrchunk = err_grwrchunk +1
goto 2222
endif
ri_id(i_comp) = mgselct(gr_id, index)
if( ri_id(i_comp) .eq. -1) then
print *, 'mgselct failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
goto 2000
endif
status = mggcompress(ri_id(i_comp), comp_typegr, comp_prm_out)
if (status .eq. -1) then
print *, 'mggcompress failed for', i, ' -th dataset'
err_grwrchunk = err_grwrchunk +1
endif
if (name(i_comp) .eq. 'Nocomp_data') then
if (comp_typegr .ne. COMP_CODE_NONE) then
print *, 'wrong compression type for Nocomp_data dataset'
err_grwrchunk = err_grwrchunk +1
endif
endif
if (name(i_comp) .eq. 'Rlcomp_data') then
if (comp_typegr .ne. COMP_CODE_RLE) then
print *, 'wrong compression type for Rlcomp_data dataset'
err_grwrchunk = err_grwrchunk +1
endif
endif
if (name(i_comp) .eq. 'Hucomp_data') then
if (comp_typegr .ne. COMP_CODE_SKPHUFF) then
print *, 'wrong compression type for Hucomp_data dataset'
err_grwrchunk = err_grwrchunk +1
endif
if (comp_prm_out(1). ne. skphuff_skp_size) then
print *, 'wrong compression parameter for Hucomp_data dataset'
err_grwrchunk = err_grwrchunk +1
endif
endif
if (name(i_comp) .eq. 'Gzcomp_data') then
if (comp_typegr .ne. COMP_CODE_DEFLATE) then
print *, 'wrong compression type for Gzcomp_data dataset'
endif
if (comp_prm_out(1). ne. deflate_level) then
print *, 'wrong compression parameter for Gzcomp_data dataset'
err_grwrchunk = err_grwrchunk +1
endif
endif
C
C Read the stored data to the image array.
C
start(1) = 0
start(2) = 0
edges(1) = X_LENGTH
edges(2) = Y_LENGTH
stride(1) = 1
stride(2) = 1
status = mgrdimg(ri_id(i_comp), start, stride, edges,
. image_data_out)
if(status .ne. 0) then
print *, 'mgrdimg failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
C
C--- Compare the data we read with the original data
C
do 60 j = 1, Y_LENGTH
do 50 i = 1, X_LENGTH
do 40 k = 1, ncomp
if(data_arr(k, i, j).ne.image_data_out(k,i,j)) then
print *, 'data is wrong'
err_grwrchunk = err_grwrchunk +1
endif
40 continue
50 continue
60 continue
C
C--- Read the third chunk back and compare it with original data.
C
start(1) = 5
start(2) = 2
status = mgrchnk(ri_id(i_comp), start, chunk52_out)
if(status .ne. 0) then
print *, 'mgrchnk failed for', i_comp,
. '-th data set, third chunk'
err_grwrchunk = err_grwrchunk +1
endif
do 401 j = 1, NCOMP*X_CH_LENGTH*Y_CH_LENGTH
if(chunk52(j).ne.chunk52_out(j)) then
print *, 'read chunk''s data is wrong'
err_grwrchunk = err_grwrchunk +1
endif
401 continue
C
C Terminate access to the array.
C
status = mgendac(ri_id(i_comp))
if(status .ne. 0) then
print *, 'mgendac failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
1999 continue
2000 continue
2222 continue
C
C Terminate access to the GR interface.
C
status = mgend(gr_id)
if(status .ne. 0) then
print *, 'mgend failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
C
C Close the file.
C
status = hclose(file_id)
if(status .ne. 0) then
print *, 'hclose failed for', i_comp, '-th data set'
err_grwrchunk = err_grwrchunk +1
endif
return
end
|