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
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF 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://support.hdfgroup.org/ftp/HDF/releases/. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include <stdlib.h>
#include <string.h>
#include "hdf.h"
#include "mfhdf.h"
#include "hrepack.h"
#include "hrepack_utils.h"
#include "hrepack_parse.h"
#include "hrepack_opttable.h"
#include "hrepack_sds.h"
#include "hrepack_gr.h"
#include "hrepack_vs.h"
#include "hrepack_an.h"
#include "hrepack_vg.h"
#include "hrepack_dim.h"
int list_vg(int32 infile_id, int32 outfile_id, int32 sd_id, int32 sd_out, int32 gr_id, int32 gr_out,
list_table_t *list_tbl, dim_table_t *td1, dim_table_t *td2, options_t *options);
int list_gr(int32 infile_id, int32 outfile_id, int32 gr_id, int32 gr_out, list_table_t *list_tbl,
options_t *options);
int list_sds(int32 infile_id, int32 outfile_id, int32 sd_id, int32 sd_out, list_table_t *list_tbl,
dim_table_t *td1, dim_table_t *td2, options_t *options);
int list_vs(int32 infile_id, int32 outfile_id, list_table_t *list_tbl, options_t *options);
int list_glb(int32 infile_id, int32 outfile_id, int32 sd_id, int32 sd_out, int32 gr_id, int32 gr_out,
list_table_t *list_tbl, options_t *options);
int list_pal(const char *infname, const char *outfname, list_table_t *list_tbl, options_t *options);
int list_an(int32 infile_id, int32 outfile_id, options_t *options);
/*-------------------------------------------------------------------------
* Function: list
*
* Purpose: locate all HDF objects in the file and compress them using options
*
* Return: SUCCEED, FAIL
*
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
*
* Date: July 10, 2003
*
* Modifications: September 9, 2007
* Check for duplicate Vgroup insertions
*
* Description:
*
* A main loop is used to locate all the objects in the file. The algorithm used is:
* 1) Obtain the number of lone vgroups in the HDF file, i.e., vgroups that are at
* the top of the grouping hierarchy, in a file.
* 2) Do a loop for each one of these groups. In each iteration a table is updated
* with the tag/reference pair of an object.
* 2.1) Obtain the pairs of tag/references for the group
* 2.2) Switch between the tag of the current object. Four cases are possible:
* 1) Object is a group: recursively repeat the process (obtain the pairs of
* tag/references for this group and do another tag switch).
* If the Vgroup has not been visited
* Add the object to the table and continue recursion
* else
* Open it, create the insertion into its parent and exit the recursion.
* 2) Object is a dataset: Add the object to the table.
* 3) Object is an image: Add the object to the table.
* 4) Object is a vdata: Add the object to the table.
* 3) Read all the HDF interfaces (SDS, GR and VS), checking for objects that are
* already in the table (meaning they belong to a previous inspected group,
* and should not be added). These objects belong to a root group.
* 4) Read all global attributes and annotations.
*
* Modification: January 15, 2015 - JIRA issue HDFFR-1428
* The output file contains a vgroup of class RIG0.0 even though the input
* file does not contain any GR elements, such as raster images or GR file
* attribute. That is because GRstart is called on the output file
* regardless of whether there are any GR items in the input file. Hrepack
* will be reviewed and revised for correctness and efficiency (JIRA issue
* HDFFR-1395.) However, in this release, 4.2.11, an immediate solution is
* applied to eliminate the unnecessary RIG0.0 vgroup. The input file is
* checked for GR elements, before any GR activity is invoked on the
* output file. -BMR
*
*-------------------------------------------------------------------------
*/
int
list_main(const char *infname, const char *outfname, options_t *options)
{
list_table_t *list_tbl = NULL; /* list of objects */
dim_table_t *td1 = NULL; /* dimensions */
dim_table_t *td2 = NULL; /* dimensions */
int32 sd_id = FAIL, /* SD interface identifier */
sd_out = FAIL, /* SD interface identifier */
gr_id = FAIL, /* GR interface identifier */
gr_out = FAIL, /* GR interface identifier */
infile_id = FAIL, outfile_id = FAIL, n_rimages, /* number of raster images in the file */
n_file_attrs; /* number of file attributes */
intn has_GRelems = 0; /* set to 1 when there are GR images or */
/* attributes in the file (HDFFR-1428) */
int i;
const char *err;
/*-------------------------------------------------------------------------
* initialize tables
*-------------------------------------------------------------------------
*/
list_table_init(&list_tbl);
dim_table_init(&td1);
dim_table_init(&td2);
/*-------------------------------------------------------------------------
* open the input file for read and initialize interfaces
*-------------------------------------------------------------------------
*/
if ((infile_id = Hopen(infname, DFACC_READ, (int16)0)) == FAIL) {
printf("Cannot open file <%s>\n", infname);
goto out;
}
if ((sd_id = SDstart(infname, DFACC_READ)) == FAIL) {
printf("Could not start SD for <%s>\n", infname);
goto out;
}
if ((gr_id = GRstart(infile_id)) == FAIL) {
printf("Could not start GR for <%s>\n", infname);
goto out;
}
/*-------------------------------------------------------------------------
* set flag to indicate whether the input file contains any GR elements
*-------------------------------------------------------------------------
*/
if (GRfileinfo(gr_id, &n_rimages, &n_file_attrs) == FAIL) {
printf("Could not get info for GR\n");
goto out;
}
if (n_rimages > 0 || n_file_attrs > 0)
has_GRelems = 1;
/*-------------------------------------------------------------------------
* create the output file and initialize interfaces
*-------------------------------------------------------------------------
*/
if (options->trip == 1) {
if ((outfile_id = Hopen(outfname, DFACC_CREATE, (int16)0)) == FAIL) {
printf("Cannot create file <%s>\n", outfname);
goto out;
}
if ((sd_out = SDstart(outfname, DFACC_WRITE)) == FAIL) {
printf("Could not start GR for <%s>\n", outfname);
goto out;
}
if (has_GRelems)
if ((gr_out = GRstart(outfile_id)) == FAIL) {
printf("Could not start GR for <%s>\n", outfname);
goto out;
}
} /* options->trip==1 */
if (options->verbose && options->trip == 0)
printf("Building list of objects in %s...\n", infname);
/*-------------------------------------------------------------------------
* iterate thru HDF interfaces
*-------------------------------------------------------------------------
*/
if (options->verbose) {
printf("-----------------------------------------------\n");
printf(" Chunk Filter(compression) Name\n");
printf("-----------------------------------------------\n");
}
if (list_vg(infile_id, outfile_id, sd_id, sd_out, gr_id, gr_out, list_tbl, td1, td2, options) < 0)
goto out;
/* Only process GR interface if there is any GR elements in the file */
/* Design note: consider using the same approach for the SD API during the
improvement of hrepack, HDFFR-1395 */
if (has_GRelems)
if (list_gr(infile_id, outfile_id, gr_id, gr_out, list_tbl, options) < 0)
goto out;
if (list_sds(infile_id, outfile_id, sd_id, sd_out, list_tbl, td1, td2, options) < 0)
goto out;
if (list_vs(infile_id, outfile_id, list_tbl, options) < 0)
goto out;
if (list_glb(infile_id, outfile_id, sd_id, sd_out, gr_id, gr_out, list_tbl, options) < 0)
goto out;
if (list_pal(infname, outfname, list_tbl, options) < 0)
goto out;
if (list_an(infile_id, outfile_id, options) < 0)
goto out;
if (options->trip == 1) {
match_dim(sd_id, sd_out, td1, td2, options);
}
/*-------------------------------------------------------------------------
* check for objects in the file table:
* 1) the input object names are present in the file
* 2) they are valid objects (SDS or GR)
* check only if selected objects are given (all==0)
*-------------------------------------------------------------------------
*/
if (options->trip == 0) {
if (options->verbose)
printf("Searching for objects to modify...\n");
for (i = 0; i < options->op_tbl->nelems; i++) {
char *obj_name = options->op_tbl->objs[i].objpath;
if (options->verbose)
printf(PFORMAT1, "", "", obj_name);
/* the input object names are present in the file and are valid */
err = list_table_check(list_tbl, obj_name);
if (err != NULL) {
printf("\nError: <%s> %s in file <%s>. Exiting...\n", obj_name, err, infname);
goto out;
}
if (options->verbose)
printf("...Found\n");
}
}
/*-------------------------------------------------------------------------
* close interfaces
*-------------------------------------------------------------------------
*/
if (GRend(gr_id) == FAIL)
printf("Failed to close GR interface <%s>\n", infname);
if (SDend(sd_id) == FAIL)
printf("Failed to close file <%s>\n", infname);
if (Hclose(infile_id) == FAIL)
printf("Failed to close file <%s>\n", infname);
if (options->trip == 1) {
if (has_GRelems)
if (GRend(gr_out) == FAIL)
printf("Failed to close GR interface <%s>\n", outfname);
if (SDend(sd_out) == FAIL)
printf("Failed to close file <%s>\n", outfname);
if (Hclose(outfile_id) == FAIL)
printf("Failed to close file <%s>\n", outfname);
}
/*-------------------------------------------------------------------------
* free tables
*-------------------------------------------------------------------------
*/
list_table_free(list_tbl);
dim_table_free(td1);
dim_table_free(td2);
return SUCCEED;
out:
if (list_tbl != NULL)
list_table_free(list_tbl);
if (td1 != NULL)
dim_table_free(td1);
if (td2 != NULL)
dim_table_free(td2);
if (gr_id != FAIL) {
if (GRend(gr_id) == FAIL)
printf("Failed to close GR interface <%s>\n", infname);
}
if (gr_out != FAIL) {
if (GRend(gr_out) == FAIL)
printf("Failed to close GR interface <%s>\n", outfname);
}
if (sd_id != FAIL) {
if (SDend(sd_id) == FAIL)
printf("Failed to close SD interface for <%s>\n", infname);
}
if (sd_out != FAIL) {
if (SDend(sd_out) == FAIL)
printf("Failed to close SD interface for <%s>\n", outfname);
}
if (infile_id != FAIL) {
if (Hclose(infile_id) == FAIL)
printf("Failed to close file <%s>\n", infname);
}
if (outfile_id != FAIL) {
if (Hclose(outfile_id) == FAIL)
printf("Failed to close file <%s>\n", outfname);
}
return FAIL;
}
/*-------------------------------------------------------------------------
* Function: list_vg
*
* Purpose: locate all objects in the file under a group hierarchy
*
* Return: SUCCEED, FAIL
*
*-------------------------------------------------------------------------
*/
int
list_vg(int32 infile_id, int32 outfile_id, int32 sd_id, int32 sd_out, int32 gr_id, int32 gr_out,
list_table_t *list_tbl, dim_table_t *td1, dim_table_t *td2, options_t *options)
{
int32 vg_id; /* vgroup identifier */
int32 nlones = 0; /* number of lone vgroups */
int32 ntagrefs; /* number of tag/ref pairs in a vgroup */
int32 *ref_array = NULL; /* buffer to hold the ref numbers of lone vgroups */
int32 *tags = NULL; /* buffer to hold the tag numbers of vgroups */
int32 *refs = NULL; /* buffer to hold the ref numbers of vgroups */
int32 vgroup_id_out = 0; /* vgroup identifier */
int32 tag_vg;
int32 ref_vg;
char *vg_name = NULL;
char *vg_class = NULL;
int32 i;
/*-------------------------------------------------------------------------
* initialize the V interface
*-------------------------------------------------------------------------
*/
if (Vstart(infile_id) == FAIL) {
return FAIL;
}
if (options->trip == 1) {
if (Vstart(outfile_id) == FAIL) {
return FAIL;
}
}
/*-------------------------------------------------------------------------
* get and print the names and class names of all the lone vgroups.
* first, call Vlone with nlones set to 0 to get the number of
* lone vgroups in the file, but not to get their reference numbers.
*-------------------------------------------------------------------------
*/
nlones = Vlone(infile_id, NULL, nlones);
if (nlones > 0) {
/*
* use the nlones returned to allocate sufficient space for the
* buffer ref_array to hold the reference numbers of all lone vgroups,
*/
ref_array = (int32 *)malloc(sizeof(int32) * nlones);
/*
* and call Vlone again to retrieve the reference numbers into
* the buffer ref_array.
*/
nlones = Vlone(infile_id, ref_array, nlones);
/*
* iterate tru each lone vgroup.
*/
for (i = 0; i < nlones; i++) {
int32 ref = ref_array[i];
uint16 name_len;
/*
* attach to the current vgroup then get its
* name and class. note: the current vgroup must be detached before
* moving to the next.
*/
if ((vg_id = Vattach(infile_id, ref, "r")) == FAIL) {
printf("Error: Could not attach group with ref <%d>\n", ref);
goto out;
}
/* Get vgroup's name */
if (Vgetnamelen(vg_id, &name_len) == FAIL) {
printf("Error: Could not get name length for group with ref <%d>\n", ref);
goto out;
}
free(vg_name);
vg_name = (char *)malloc(sizeof(char) * (name_len + 1));
if (Vgetname(vg_id, vg_name) == FAIL) {
printf("Could not get name for group\n");
goto out;
}
/* Get vgroup's class name */
if (Vgetclassnamelen(vg_id, &name_len) == FAIL) {
printf("Error: Could not get name length for group with ref <%d>\n", ref);
goto out;
}
free(vg_class);
vg_class = (char *)malloc(sizeof(char) * (name_len + 1));
if (Vgetclass(vg_id, vg_class) == FAIL) {
printf("Could not get class for group\n");
goto out;
}
/* ignore reserved HDF groups/vdatas */
if (is_reserved(vg_class)) {
if (Vdetach(vg_id) == FAIL) {
printf("Could not detach group\n");
goto out;
}
continue;
}
if (strcmp(vg_name, GR_NAME) == 0) {
if (Vdetach(vg_id) == FAIL) {
printf("Could not detach group\n");
goto out;
}
continue;
}
/* get ref, tag */
if ((ref_vg = VQueryref(vg_id)) == FAIL) {
printf("Failed to get ref for <%s>\n", vg_name);
goto out;
}
if ((tag_vg = VQuerytag(vg_id)) == FAIL) {
printf("Failed to get tag for <%s>\n", vg_name);
goto out;
}
/*-------------------------------------------------------------------------
* add object to table
*-------------------------------------------------------------------------
*/
list_table_add(list_tbl, tag_vg, ref_vg, vg_name);
if (options->verbose)
printf(PFORMAT, "", "", "", vg_name);
if (options->trip == 1) {
/*
* create the group in the output file. the vgroup reference number is set
* to -1 for creating and the access mode is "w" for writing
*/
vgroup_id_out = Vattach(outfile_id, -1, "w");
if (Vsetname(vgroup_id_out, vg_name) == FAIL) {
printf("Error: Could not create group <%s>\n", vg_name);
goto out;
}
if (Vsetclass(vgroup_id_out, vg_class) == FAIL) {
printf("Error: Could not create group <%s>\n", vg_name);
goto out;
}
if (copy_vgroup_attrs(vg_id, vgroup_id_out, vg_name, options) < 0)
goto out;
if (copy_vg_an(infile_id, outfile_id, vg_id, vgroup_id_out, vg_name, options) < 0)
goto out;
}
/* insert objects for this group */
ntagrefs = Vntagrefs(vg_id);
if (ntagrefs > 0) {
tags = (int32 *)malloc(sizeof(int32) * ntagrefs);
refs = (int32 *)malloc(sizeof(int32) * ntagrefs);
if (Vgettagrefs(vg_id, tags, refs, ntagrefs) < 0)
goto out;
if (vgroup_insert(infile_id, outfile_id, sd_id, sd_out, gr_id, gr_out, vgroup_id_out, vg_name,
tags, refs, ntagrefs, list_tbl, td1, td2, options) < 0) {
goto out;
}
free(tags);
tags = NULL;
free(refs);
refs = NULL;
}
if (Vdetach(vg_id) == FAIL) {
printf("Error: Could not detach group <%s>\n", vg_name);
goto out;
}
if (options->trip == 1) {
if (Vdetach(vgroup_id_out) == FAIL) {
printf("Error: Could not detach group <%s>\n", vg_name);
goto out;
}
}
free(vg_class);
vg_class = NULL;
free(vg_name);
vg_name = NULL;
} /* for nlones */
/* free the space allocated */
free(ref_array);
} /* if nlones */
/*-------------------------------------------------------------------------
* terminate access to the V interface
*-------------------------------------------------------------------------
*/
if (Vend(infile_id) == FAIL) {
printf("Error: Could not end infile group interface\n");
return FAIL;
}
if (options->trip == 1) {
if (Vend(outfile_id) == FAIL) {
printf("Error: Could not end outfile group interface\n");
return FAIL;
}
}
free(vg_class);
free(vg_name);
return SUCCEED;
out:
Vend(infile_id);
if (options->trip == 1)
Vend(outfile_id);
/* free the space allocated */
free(vg_class);
free(vg_name);
free(ref_array);
free(tags);
free(refs);
return FAIL;
}
/*-------------------------------------------------------------------------
* Function: vgroup_insert
*
* Purpose: recursive function to locate objects in vgroups
*
* Return: SUCCEED, FAIL
*
*-------------------------------------------------------------------------
*/
int
vgroup_insert(int32 infile_id, int32 outfile_id, int32 sd_id, /* SD interface identifier */
int32 sd_out, /* SD interface identifier */
int32 gr_id, /* GR interface identifier */
int32 gr_out, /* GR interface identifier */
int32 vgroup_id_out_par, /* output parent group ID */
char *path_name, /* absolute path for input group name */
int32 *in_tags, /* tag list for parent group */
int32 *in_refs, /* ref list for parent group */
int npairs, /* number tag/ref pairs for parent group */
list_table_t *list_tbl, dim_table_t *td1, dim_table_t *td2, options_t *options)
{
int32 vg_id; /* vgroup identifier for opened group in input */
int32 ntagrefs; /* number of tag/ref pairs in a vgroup */
int32 *tags = NULL; /* buffer to hold the tag numbers of vgroups */
int32 *refs = NULL; /* buffer to hold the ref numbers of vgroups */
int32 vgroup_id_out = -1; /* vgroup identifier for the created group in output */
char *vg_name = NULL;
char *vg_class = NULL;
char *path = NULL;
uint16 name_len;
int visited;
int32 tag;
int32 ref;
int i;
for (i = 0; i < npairs; i++) {
tag = in_tags[i];
ref = in_refs[i];
switch (tag) {
/*-------------------------------------------------------------------------
* DFTAG_VG
*-------------------------------------------------------------------------
*/
case DFTAG_VG:
visited = list_table_search(list_tbl, DFTAG_VG, ref);
/*-------------------------------------------------------------------------
* open input
*-------------------------------------------------------------------------
*/
vg_id = Vattach(infile_id, ref, "r");
/* Get vgroup's name */
if (Vgetnamelen(vg_id, &name_len) == FAIL) {
printf("Error: Could not get name length for group with ref <%d>\n", ref);
goto out;
}
free(vg_name);
vg_name = (char *)malloc(sizeof(char) * (name_len + 1));
if (Vgetname(vg_id, vg_name) == FAIL) {
printf("Could not get name for group\n");
goto out;
}
/* Get vgroup's class name */
if (Vgetclassnamelen(vg_id, &name_len) == FAIL) {
printf("Error: Could not get name length for group with ref <%d>\n", ref);
goto out;
}
free(vg_class);
vg_class = (char *)malloc(sizeof(char) * (name_len + 1));
if (Vgetclass(vg_id, vg_class) == FAIL) {
printf("Could not get class for group\n");
goto out;
}
/* ignore reserved HDF groups/vdatas */
if (is_reserved(vg_class)) {
if (Vdetach(vg_id) == FAIL) {
printf("Could not detach group\n");
goto out;
}
continue;
}
if (strcmp(vg_name, GR_NAME) == 0) {
if (Vdetach(vg_id) == FAIL) {
printf("Could not detach group\n");
goto out;
}
continue;
}
/*-------------------------------------------------------------------------
* create the group in output or create the link
*-------------------------------------------------------------------------
*/
if (options->trip == 1) {
if (visited < 0) {
/*
* create the group in the output file. the vgroup reference number
* is set to -1 for creating and the access mode is "w" for writing
*/
vgroup_id_out = Vattach(outfile_id, -1, "w");
if (Vsetname(vgroup_id_out, vg_name) == FAIL) {
printf("Error: Could not create group <%s>\n", vg_name);
goto out;
}
if (Vsetclass(vgroup_id_out, vg_class) == FAIL) {
printf("Error: Could not create group <%s>\n", vg_name);
goto out;
}
if (copy_vgroup_attrs(vg_id, vgroup_id_out, path, options) < 0)
goto out;
if (copy_vg_an(infile_id, outfile_id, vg_id, vgroup_id_out, path, options) < 0)
goto out;
}
else {
/* open previously visited group */
vgroup_id_out = Vattach(outfile_id, ref, "r");
}
/* insert the created (or opened) vgroup into its parent */
if (Vinsert(vgroup_id_out_par, vgroup_id_out) == FAIL) {
printf("Could not insert group <%s>\n", vg_name);
goto out;
}
} /* create the group in output or create the link */
/*-------------------------------------------------------------------------
* if group not visited, add to table and check for more tag/ref pairs
*-------------------------------------------------------------------------
*/
/* check if already visited */
if (visited < 0) {
/* initialize path */
path = get_path(path_name, vg_name);
/* add object to table */
list_table_add(list_tbl, tag, ref, path);
if (options->verbose)
printf(PFORMAT, "", "", "", path);
if (options->trip == 0) {
/*we must go to other groups always */
}
/* insert objects for this group */
ntagrefs = Vntagrefs(vg_id);
if (ntagrefs > 0) {
tags = (int32 *)malloc(sizeof(int32) * ntagrefs);
refs = (int32 *)malloc(sizeof(int32) * ntagrefs);
if (Vgettagrefs(vg_id, tags, refs, ntagrefs) < 0)
goto out;
/* recurse */
if (vgroup_insert(infile_id, outfile_id, sd_id, sd_out, gr_id, gr_out, vgroup_id_out,
path, tags, refs, ntagrefs, list_tbl, td1, td2, options) < 0) {
goto out;
}
free(tags);
tags = NULL;
free(refs);
refs = NULL;
} /* ntagrefs > 0 */
free(path);
path = NULL;
} /* check if already visited */
if (Vdetach(vg_id) == FAIL) {
printf("Error: Could not detach group <%s>\n", vg_name);
goto out;
}
if (options->trip == 1) {
if (Vdetach(vgroup_id_out) == FAIL) {
printf("Error: Could not detach group <%s>\n", vg_name);
goto out;
}
}
break;
/*-------------------------------------------------------------------------
* SDS
*-------------------------------------------------------------------------
*/
case DFTAG_SD: /* Scientific Data */
case DFTAG_SDG: /* Scientific Data Group */
case DFTAG_NDG: /* Numeric Data Group */
/* copy dataset */
if (copy_sds(sd_id, sd_out, tag, ref, vgroup_id_out_par, path_name, options, list_tbl, td1,
td2, infile_id, outfile_id) < 0) {
goto out;
}
break;
/*-------------------------------------------------------------------------
* Image
*-------------------------------------------------------------------------
*/
case DFTAG_RI: /* Raster Image */
case DFTAG_CI: /* Compressed Image */
case DFTAG_RIG: /* Raster Image Group */
case DFTAG_RI8: /* Raster-8 image */
case DFTAG_CI8: /* RLE compressed 8-bit image */
case DFTAG_II8: /* IMCOMP compressed 8-bit image */
/* copy GR */
if (copy_gr(infile_id, outfile_id, gr_id, gr_out, tag, ref, vgroup_id_out_par, path_name,
options, list_tbl) < 0) {
goto out;
}
break;
/*-------------------------------------------------------------------------
* Vdata
*-------------------------------------------------------------------------
*/
case DFTAG_VH: /* Vdata Header */
if (copy_vs(infile_id, outfile_id, tag, ref, vgroup_id_out_par, path_name, options, list_tbl,
0) < 0) {
goto out;
}
break;
} /* switch */
free(vg_name);
vg_name = NULL;
} /* i */
free(vg_class);
free(vg_name);
return SUCCEED;
out:
free(vg_class);
free(vg_name);
free(tags);
free(refs);
free(path);
return FAIL;
}
/*-------------------------------------------------------------------------
* Function: list_gr
*
* Purpose: get top level GR image list
*
* Return: SUCCEED, FAIL
*
*-------------------------------------------------------------------------
*/
int
list_gr(int32 infile_id, int32 outfile_id, int32 gr_id, /* GR interface identifier */
int32 gr_out, /* GR interface identifier */
list_table_t *list_tbl, options_t *options)
{
int32 ri_id, /* raster image identifier */
n_rimages, /* number of raster images in the file */
n_file_attrs, /* number of file attributes */
ri_index, /* index of a image */
gr_ref, /* reference number of the GR image */
dim_sizes[2], /* dimensions of an image */
n_comps, /* number of components an image contains */
interlace_mode, /* interlace mode of an image */
data_type, /* number type of an image */
n_attrs; /* number of attributes belong to an image */
char name[H4_MAX_GR_NAME]; /* name of an image */
/* determine the contents of the file */
if (GRfileinfo(gr_id, &n_rimages, &n_file_attrs) == FAIL) {
printf("Could not get info for GR\n");
return FAIL;
}
for (ri_index = 0; ri_index < n_rimages; ri_index++) {
ri_id = GRselect(gr_id, ri_index);
if (GRgetiminfo(ri_id, name, &n_comps, &data_type, &interlace_mode, dim_sizes, &n_attrs) == FAIL) {
printf("Could not get GR info\n");
goto out;
}
gr_ref = GRidtoref(ri_id);
/* check if already inserted in Vgroup; search all image tags */
if (list_table_search(list_tbl, DFTAG_RI, gr_ref) >= 0 ||
list_table_search(list_tbl, DFTAG_CI, gr_ref) >= 0 ||
list_table_search(list_tbl, DFTAG_RIG, gr_ref) >= 0 ||
list_table_search(list_tbl, DFTAG_RI8, gr_ref) >= 0 ||
list_table_search(list_tbl, DFTAG_CI8, gr_ref) >= 0 ||
list_table_search(list_tbl, DFTAG_II8, gr_ref) >= 0) {
if (GRendaccess(ri_id) == FAIL) {
printf("Could not close GR\n");
return FAIL;
}
continue;
}
/* copy GR */
if (copy_gr(infile_id, outfile_id, gr_id, gr_out, DFTAG_RI, gr_ref, 0, NULL, options, list_tbl) < 0)
goto out;
/* terminate access to the current raster image */
if (GRendaccess(ri_id) == FAIL) {
printf("Could not end GR\n");
return FAIL;
}
}
return SUCCEED;
out:
GRendaccess(ri_id);
return FAIL;
}
/*-------------------------------------------------------------------------
* Function: list_sds
*
* Purpose: get top level SDS
*
* Return: SUCCEED, FAIL
*
*-------------------------------------------------------------------------
*/
int
list_sds(int32 infile_id, int32 outfile_id, int32 sd_id, int32 sd_out, list_table_t *list_tbl,
dim_table_t *td1, dim_table_t *td2, options_t *options)
{
int32 sds_id, /* dataset identifier */
n_datasets, /* number of datasets in the file */
n_file_attrs, /* number of file attributes */
index, /* index of a dataset */
sds_ref, /* reference number */
dim_sizes[H4_MAX_VAR_DIMS], /* dimensions of an image */
data_type, /* number type */
rank, /* rank */
n_attrs; /* number of attributes */
char name[H4_MAX_GR_NAME]; /* name of dataset */
/* determine the number of data sets in the file and the number of file attributes */
if (SDfileinfo(sd_id, &n_datasets, &n_file_attrs) == FAIL) {
printf("Could not get SDS info\n");
return FAIL;
}
for (index = 0; index < n_datasets; index++) {
sds_id = SDselect(sd_id, index);
SDgetinfo(sds_id, name, &rank, dim_sizes, &data_type, &n_attrs);
sds_ref = SDidtoref(sds_id);
/* check if already inserted in Vgroup; search all SDS tags */
if (list_table_search(list_tbl, DFTAG_SD, sds_ref) >= 0 ||
list_table_search(list_tbl, DFTAG_SDG, sds_ref) >= 0 ||
list_table_search(list_tbl, DFTAG_NDG, sds_ref) >= 0) {
SDendaccess(sds_id);
continue;
}
/* copy SDS */
if (copy_sds(sd_id, sd_out, TAG_GRP_DSET, sds_ref, 0, NULL, options, list_tbl, td1, td2, infile_id,
outfile_id) < 0)
goto out;
/* terminate access to the current dataset */
SDendaccess(sds_id);
}
return SUCCEED;
out:
SDendaccess(sds_id);
return FAIL;
}
/*-------------------------------------------------------------------------
* Function: list_vs
*
* Purpose: get top level VS
*
* Return: SUCCEED, FAIL
*
*-------------------------------------------------------------------------
*/
int
list_vs(int32 infile_id, int32 outfile_id, list_table_t *list_tbl, options_t *options)
{
int32 nlones = 0, /* number of lone vdatas */
*ref_array = NULL, /* buffer to hold the ref numbers of lone vdatas */
ref; /* temporary ref number */
int i;
/*-------------------------------------------------------------------------
* initialize the V interface
*-------------------------------------------------------------------------
*/
if (Vstart(infile_id) == FAIL) {
return FAIL;
}
if (options->trip == 1) {
if (Vstart(outfile_id) == FAIL) {
return FAIL;
}
}
/*-------------------------------------------------------------------------
* get the names and class names of all the lone vdatas
* first, call Vlone with nlones set to 0 to get the number of lone vdatas
* in the file
*
*-------------------------------------------------------------------------
*/
nlones = VSlone(infile_id, NULL, nlones);
if (nlones > 0) {
/*
* use the nlones returned to allocate sufficient space for the
* buffer ref_array to hold the reference numbers of all lone vgroups,
*/
ref_array = (int32 *)malloc(sizeof(int32) * nlones);
/*
* and call VSlone again to retrieve the reference numbers into
* the buffer ref_array.
*/
nlones = VSlone(infile_id, ref_array, nlones);
/*
* iterate tru each lone vdata.
*/
for (i = 0; i < nlones; i++) {
/*
* attach to the current vdata then get its
* name and class. note: the current vdata must be detached before
* moving to the next.
*/
ref = ref_array[i];
/* check if already inserted in Vgroup, search with VS tag */
if (list_table_search(list_tbl, DFTAG_VH, ref) >= 0) {
continue;
}
/* copy VS */
if (copy_vs(infile_id, outfile_id, DFTAG_VH, ref, 0, NULL, options, list_tbl, 1) < 0) {
goto out;
}
} /* for */
/* free the space allocated */
free(ref_array);
ref_array = NULL;
} /* if */
/*-------------------------------------------------------------------------
* terminate access to the V interface
*-------------------------------------------------------------------------
*/
if (Vend(infile_id) == FAIL) {
printf("Error: Could not end Vdata interface\n");
return FAIL;
}
if (options->trip == 1) {
if (Vend(outfile_id) == FAIL) {
printf("Error: Could not end Vdata interface\n");
return FAIL;
}
}
return SUCCEED;
out:
Vend(infile_id);
if (options->trip == 1)
Vend(outfile_id);
/* free the space allocated */
free(ref_array);
return FAIL;
}
/*-------------------------------------------------------------------------
* Function: list_glb
*
* Purpose: list/copy global SDS attributes, global GR attributes
*
* Return: SUCCEED, FAIL
*
*-------------------------------------------------------------------------
*/
int
list_glb(int32 infile_id, int32 outfile_id, int32 sd_id, int32 sd_out, int32 gr_id, int32 gr_out,
list_table_t *list_tbl, options_t *options)
{
int32 n_datasets, /* number of datasets in the file */
n_file_attrs; /* number of file attributes */
(void)infile_id;
(void)outfile_id;
(void)list_tbl;
if (options->trip == 0) {
return SUCCEED;
}
/*-------------------------------------------------------------------------
* copy SDS global attributes
*-------------------------------------------------------------------------
*/
/* determine the number of data sets in the file and the number of file attributes */
if (SDfileinfo(sd_id, &n_datasets, &n_file_attrs) == FAIL) {
printf("Could not get SDS info\n");
return FAIL;
}
if (copy_sds_attrs(sd_id, sd_out, n_file_attrs, options) < 0)
return FAIL;
/*-------------------------------------------------------------------------
* copy GR global attributes
*-------------------------------------------------------------------------
*/
/* determine the number of data sets in the file and the number of file attributes */
if (GRfileinfo(gr_id, &n_datasets, &n_file_attrs) == FAIL) {
printf("Could not get GR info\n");
return FAIL;
}
if (copy_gr_attrs(gr_id, gr_out, n_file_attrs, options) < 0)
return FAIL;
return SUCCEED;
}
/*-------------------------------------------------------------------------
* Function: list_an
*
* Purpose: list/copy AN FILE objects
*
* Return: SUCCEED, FAIL
*
*-------------------------------------------------------------------------
*/
int
list_an(int32 infile_id, int32 outfile_id, options_t *options)
{
int32 an_id, /* AN interface identifier */
ann_id, /* an annotation identifier */
ann_length, /* length of the text in an annotation */
an_out, /* AN interface identifier */
file_label_id, /* file label identifier */
file_desc_id, /* file description identifier */
n_file_labels, n_file_descs, n_data_labels, n_data_descs;
char *ann_buf = NULL; /* buffer to hold the read annotation */
int i; /* position of an annotation in all of the same type*/
if (options->trip == 0) {
return SUCCEED;
}
/* Initialize the AN interface */
an_id = ANstart(infile_id);
an_out = ANstart(outfile_id);
/*
* Get the annotation information, e.g., the numbers of file labels, file
* descriptions, data labels, and data descriptions.
*/
if (ANfileinfo(an_id, &n_file_labels, &n_file_descs, &n_data_labels, &n_data_descs) == FAIL) {
printf("Could not get AN info\n");
goto out;
}
/*-------------------------------------------------------------------------
* AN_FILE_LABEL
*-------------------------------------------------------------------------
*/
for (i = 0; i < n_file_labels; i++) {
/* Get the identifier of the current data label */
ann_id = ANselect(an_id, i, AN_FILE_LABEL);
/* Get the length of the data label */
ann_length = ANannlen(ann_id);
/* Allocate space for the buffer to hold the data label text */
ann_buf = malloc((ann_length + 1) * sizeof(char));
/*
* Read and display the file label. Note that the size of the buffer,
* i.e., the third parameter, is 1 character more than the length of
* the data label; that is for the null character. It is not the case
* when a description is retrieved because the description does not
* necessarily end with a null character.
*
*/
if (ANreadann(ann_id, ann_buf, ann_length + 1) == FAIL) {
printf("Could not read AN\n");
goto out;
}
/* Create the file label */
file_label_id = ANcreatef(an_out, AN_FILE_LABEL);
/* Write the annotations */
if (ANwriteann(file_label_id, ann_buf, ann_length) == FAIL) {
printf("Failed to write file label %d\n", i);
goto out;
}
/* Terminate access to the current data label */
if (ANendaccess(ann_id) == FAIL || ANendaccess(file_label_id) == FAIL) {
printf("Could not end AN\n");
goto out;
}
/* Free the space allocated for the annotation buffer */
free(ann_buf);
}
/*-------------------------------------------------------------------------
* AN_FILE_DESC
*-------------------------------------------------------------------------
*/
for (i = 0; i < n_file_descs; i++) {
/* Get the identifier of the current data label */
ann_id = ANselect(an_id, i, AN_FILE_DESC);
/* Get the length of the data label */
ann_length = ANannlen(ann_id);
/* Allocate space for the buffer to hold the data label text */
ann_buf = malloc((ann_length + 1) * sizeof(char));
if (ANreadann(ann_id, ann_buf, ann_length + 1) == FAIL) {
printf("Could not read AN\n");
goto out;
}
/* Create the label */
file_desc_id = ANcreatef(an_out, AN_FILE_DESC);
/* Write the annotations */
if (ANwriteann(file_desc_id, ann_buf, ann_length) == FAIL) {
printf("Failed to write file description %d\n", i);
goto out;
}
/* Terminate access to the current data label */
if (ANendaccess(ann_id) == FAIL || ANendaccess(file_desc_id) == FAIL) {
printf("Could not read AN\n");
goto out;
}
/* Free the space allocated for the annotation buffer */
free(ann_buf);
ann_buf = NULL;
}
/* Terminate access to the AN interface */
if (ANend(an_id) == FAIL || ANend(an_out) == FAIL) {
printf("Could not end AN\n");
goto out;
}
return SUCCEED;
out:
if (ANend(an_id) == FAIL || ANend(an_out) == FAIL) {
printf("Could not end AN\n");
}
free(ann_buf);
return FAIL;
}
/*-------------------------------------------------------------------------
* Function: list_pal
*
* Purpose: list/copy lone palettes
*
* Return: SUCCEED, FAIL
*
*-------------------------------------------------------------------------
*/
int
list_pal(const char *infname, const char *outfname, list_table_t *list_tbl, options_t *options)
{
uint8 palette_data[256 * 3];
intn nPals, j;
uint16 ref;
if (options->trip == 0) {
return SUCCEED;
}
DFPrestart();
if ((nPals = DFPnpals(infname)) == FAIL) {
printf("Failed to get palettes in <%s>\n", infname);
return FAIL;
}
for (j = 0; j < nPals; j++) {
if (DFPgetpal(infname, (void *)palette_data) == FAIL) {
printf("Failed to read palette <%d> in <%s>\n", j, infname);
return FAIL;
}
ref = DFPlastref();
/* check if already inserted in image */
if (list_table_search(list_tbl, DFTAG_IP8, ref) >= 0) {
continue;
}
if (DFPaddpal(outfname, palette_data) == FAIL) {
printf("Failed to write palette in <%s>\n", outfname);
return FAIL;
}
}
return SUCCEED;
}
|