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 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
|
use strict;
use warnings;
pp_addpm({At => 'Top'}, <<'EOD');
=head1 NAME
PDL::IO::HDF::SD - PDL interface to the HDF4 SD library.
=head1 SYNOPSIS
use PDL;
use PDL::IO::HDF::SD;
#
# Creating and writing an HDF file
#
# Create an HDF file:
my $hdf = PDL::IO::HDF::SD->new("-test.hdf");
# Define some data
my $data = sequence(short, 500, 5);
# Put data in file as 'myData' dataset with the names
# of dimensions ('dim1' and 'dim2')
$hdf->SDput("myData", $data , ['dim1','dim2']);
# Put some local attributes in 'myData'
#
# Set the fill value to 0
my $res = $hdf->SDsetfillvalue("myData", 0);
# Set the valid range from 0 to 2000
$res = $hdf->SDsetrange("myData", [0, 2000]);
# Set the default calibration for 'myData' (scale factor = 1, other = 0)
$res = $hdf->SDsetcal("myData");
# Set a global text attribute
$res = $hdf->SDsettextattr('This is a global text test!!', "myGText" );
# Set a local text attribute for 'myData'
$res = $hdf->SDsettextattr('This is a local text testl!!', "myLText", "myData" );
# Set a global value attribute (you can put all values you want)
$res = $hdf->SDsetvalueattr( PDL::short( 20 ), "myGValue");
# Set a local value attribute (you can put all values you want)
$res = $hdf->SDsetvalueattr( PDL::long( [20, 15, 36] ), "myLValues", "myData" );
# Close the file
$hdf->close();
#
# Reading from an HDF file:
#
# Open an HDF file in read only mode:
my $hdf = PDL::IO::HDF::SD->new("test.hdf");
# Get a list of all datasets:
my @dataset_list = $hdf->SDgetvariablename();
# Get a list of the names of all global attributes:
my @globattr_list = $hdf->SDgetattributenames();
# Get a list of the names of all local attributes for a dataset:
my @locattr_list = $hdf->SDgetattributenames("myData");
# Get the value of local attribute for a dataset:
my $value = $hdf->SDgetattribut("myLText","myData");
# Get a PDL var of the entire dataset 'myData':
my $data = $hdf->SDget("myData");
# Apply the scale factor of 'myData'
$data *= $hdf->SDgetscalefactor("myData");
# Get the fill value and fill the PDL var in with BAD:
$data->inplace->setvaltobad( $hdf->SDgetfillvalue("myData") );
# Get the valid range of a dataset:
my @range = $hdf->SDgetrange("myData");
#Now you can do what you want with your data
$hdf->close();
=head1 DESCRIPTION
This library provides functions to read, write, and manipulate
HDF4 files with HDF's SD interface.
For more information on HDF4, see http://hdf.ncsa.uiuc.edu/
There have been a lot of changes starting with version 2.0, and these may affect
your code. PLEASE see the 'Changes' file for a detailed description of what
has been changed. If your code used to work with the circa 2002 version of this
module, and does not work anymore, reading the 'Changes' is your best bet.
In the documentation, the terms dataset and SDS (Scientific Data Set) are used
interchangeably.
=cut
use strict;
use warnings;
EOD
pp_addhdr(<<'EOH');
#include <hdf.h>
#include <mfhdf.h>
#include <string.h>
#include <stdlib.h>
#define PDLchar pdl
#define PDLuchar pdl
#define PDLshort pdl
#define PDLint pdl
#define PDLlong pdl
#define PDLfloat pdl
#define PDLdouble pdl
#define PDLvoid pdl
#define uchar unsigned char
#define COMP_CODE_NONE 0
#define COMP_CODE_RLE 1
#define COMP_CODE_SKPHUFF 3
#define COMP_CODE_DEFLATE 4
EOH
use FindBin;
use lib "$FindBin::Bin/..";
use buildfunc;
#-------------------------------------------------------------------------
# Create low level interface from HDF SD header file.
#-------------------------------------------------------------------------
create_low_level (<<'EODEF');
#
# SDS Interface
#
int SDstart(const char *filename, int access_mode);
int SDfileinfo(int sd_id, int *ndatasets, int *global_attr);
int SDattrinfo(int s_id, int attr_index, char *attr_name, int *number_type, int *count);
#int SDreadattr(int s_id, int attr_index, void *data);
int SDreadattr(int s_id, int attr_index, PDLvoid *data);
int SDgetinfo(int sds_id, char *sds_name, int *rank, int *dimsizes, int *number_type, int *nattrs);
int SDselect(int sd_id, int index);
int SDgetdimid(int sds_id, int dim_number);
int SDdiminfo(int dim_id, char *name, int *count, int *number_type, int *nattrs);
int SDnametoindex(int sd_id, const char *sds_name);
#int SDreaddata(int sds_id, int *start, int *stride, int *edge, void *buffer);
int SDreaddata(int sds_id, int *start, int *stride, int *edge, PDLvoid *buffer);
#int SDsetfillvalue(int sds_id, const void *fill_val);
int SDsetfillvalue(int sds_id, const PDLvoid *fill_val);
#int SDsetrange(int sds_id, const void *max, const void *min);
int SDsetrange(int sds_id, const PDLvoid *max, const PDLvoid *min);
#int SDwritedata(int sds_id, const int *start, const int *stride, const int *edge, const void *data);
int SDwritedata(int sds_id, const int *start, const int *stride, const int *edge, const PDLvoid *data);
int SDsetexternalfile(int sds_id, const char *filename, int offset);
int SDsetdimstrs(int dim_id, const char *label, const char *unit, const char *format);
int SDsetdimscale(int dim_id, int count, int number_type, const void *data);
int SDsetdimname(int dim_id, const char *dim_name);
int SDsetdatastrs(int sds_id, const char *label, const char *unit, const char *format, const char *coordsys);
int SDsetcal(int sds_id, double cal, double cal_err, double offset, double offset_err, int number_type);
#int SDsetcal(int sds_id, float cal, float cal_err, float offset, float offset_err, int number_type);
int SDsetattr(int s_id, const char *attr_name, int num_type, int count, const void *values);
int SDreftoindex(int sd_id, int sds_ref);
int SDiscoordvar(int sds_id);
int SDidtoref(int sds_id);
int SDgetdimstrs(int dim_id, char *label, char *unit, char *format, int len);
int SDgetdimscale(int dim_id, void *data);
int SDgetdatastrs(int sds_id, char *label, char *unit, char *format, char *coordsys, int len);
#ORIG:
#int SDgetcal(int sds_id, double cal, double cal_err, double offset, double offset_err, double number_type);
#int SDgetcal(int sds_id, float cal, float cal_err, float offset, float offset_err, int number_type);
#int SDgetcal(int sds_id, double *cal, double *cal_err, float64 *offset, float64 *offset_err, int *number_type);
int SDendaccess(int sds_id);
int SDend(int sd_id);
int SDcreate(int sd_id, const char *name, int number_type, int rank, const int *dimsizes);
int SDwritechunk(int sds_id, const int* origin, const PDLvoid *data);
int SDsetchunkcache(int sds_id, int maxcache, int flag);
EODEF
pp_addxs('',<<'ENDXS');
void
_HEprint(int level)
CODE:
HEprint(stderr, level);
int
_SDgetcal(sds_id, cal, cal_err, offset, offset_err, number_type)
int sds_id
double cal
double cal_err
double offset
double offset_err
int* number_type
CODE:
RETVAL = SDgetcal(sds_id, &cal, &cal_err, &offset, &offset_err, number_type);
OUTPUT:
RETVAL
void
UnpackSBigEndianPDL(size, buff, p)
int size
unsigned char * buff
PDLint * p
CODE:
int i, INTtmp;
unsigned char bch1, bch2;
int * data;
data = p->data;
for(i=0; i<size; i++)
{
bch1 = buff[i*2];
bch2 = buff[i*2+1];
INTtmp = (bch1 << 8) + bch2;
if( INTtmp >= 32768 )
{ INTtmp -= 65536; }
data[i] = INTtmp;
}
OUTPUT:
p
int
_SDsetcompress(sd_id, ldef);
int sd_id
int ldef
CODE:
comp_info c_info;
c_info.deflate.level = ldef;
RETVAL = SDsetcompress(sd_id, COMP_CODE_DEFLATE, &c_info) + 1;
OUTPUT:
RETVAL
int
_SDsetchunk(sds_id, rank, chunk_lengths);
int sds_id
int rank
int* chunk_lengths
CODE:
HDF_CHUNK_DEF c_def;
int i;
int32 status = FAIL;
for(i = 0; i < rank; i++)
{
/* fprintf(stderr, "_SDsetchunk(): chunk_lengths[%d] = %d\n", i , chunk_lengths[i]); */
c_def.chunk_lengths[i] = chunk_lengths[i];
c_def.comp.chunk_lengths[i] = chunk_lengths[i];
}
c_def.comp.comp_type = COMP_CODE_DEFLATE;
c_def.comp.cinfo.deflate.level = 6;
status = SDsetchunk(sds_id, c_def, (HDF_CHUNK | HDF_COMP) );
if( status == FAIL )
{
fprintf(stderr, "_SDsetchunk(): return status = %d\n", status);
HEprint(stderr, 0);
}
RETVAL = status;
OUTPUT:
RETVAL
int
_SDinitchunk(sds_id, type, rank, chunk_lengths);
int sds_id
int type
int rank
int* chunk_lengths
CODE:
void* data = NULL;
int* origin = NULL;
int i;
size_t size;
int status;
origin = malloc( sizeof( int ) * rank );
for( i = 0; i < rank; i++ )
origin[i] = 0;
/* Just use the largest datatype here: */
size = DFKNTsize(type) * chunk_lengths[0];
if( rank > 1 )
{
for( i = 1; i < rank; i++ )
size *= chunk_lengths[i];
}
data = malloc( size );
status = SDwritechunk(sds_id, origin, data);
if( status == FAIL )
{
fprintf(stderr, "_SDinitchunk(): return status = %d\n", status);
HEprint(stderr, 0);
}
free( data );
free( origin );
RETVAL = status;
OUTPUT:
RETVAL
int
Hishdf(filename);
char* filename
CODE:
RETVAL = Hishdf(filename);
OUTPUT:
RETVAL
int
_SDgetunlimiteddim(sds_id, dim);
int sds_id
int dim
CODE:
char sds_name[250];
int rank;
int dimsizes[32];
int num_type;
int nattrs;
RETVAL = SDgetinfo(sds_id, sds_name, &rank, dimsizes, &num_type, &nattrs) + 1;
if(RETVAL==1){RETVAL = dimsizes[dim];}
OUTPUT:
RETVAL
int
_SDsetattr_text(s_id, name, text, size);
int s_id
char * name
char * text
int size
CODE:
RETVAL = SDsetattr(s_id, name, 4, size, text);
OUTPUT:
RETVAL
int
_SDsetattr_values(s_id, name, values, size, type);
int s_id
char * name
pdl * values
int size
int type
CODE:
RETVAL = SDsetattr(s_id, name, type, size, values->data);
OUTPUT:
RETVAL
ENDXS
pp_addpm(<<'EOPM');
use PDL::Primitive;
use PDL::Basic;
use PDL::IO::HDF;
require POSIX;
sub _pkg_name
{ return "PDL::IO::HDF::SD::" . shift() . "()"; }
# Convert a byte to a char:
sub Byte2Char
{
my ($strB) = @_;
my $strC;
for(my $i=0; $i<$strB->nelem; $i++)
{
$strC .= chr( $strB->at($i) );
}
return($strC);
} # End of Byte2Char()...
=head1 CLASS METHODS
=head2 new
=for ref
Open or create a new HDF object.
=for usage
Arguments:
1 : The name of the file.
if you want to write to it, prepend the name with the '+' character : "+name.hdf"
if you want to create it, prepend the name with the '-' character : "-name.hdf"
otherwise the file will be open in read only mode
Returns the hdf object (die on error)
=for example
my $hdf = PDL::IO::HDF::SD->new("file.hdf");
=cut
sub new
{
# General:
my $type = shift;
my $filename = shift;
my $sub = _pkg_name( 'new' );
my $debug = 0;
my $self = {};
if (substr($filename, 0, 1) eq '+')
{ # open for writing
$filename = substr ($filename, 1); # chop off +
$self->{ACCESS_MODE} = PDL::IO::HDF->DFACC_WRITE + PDL::IO::HDF->DFACC_READ;
}
if (substr($filename, 0, 1) eq '-')
{ # Create new file
$filename = substr ($filename, 1); # chop off -
print "$sub: Creating HDF File $filename\n"
if $debug;
$self->{ACCESS_MODE} = PDL::IO::HDF->DFACC_CREATE;
$self->{SDID} = PDL::IO::HDF::SD::_SDstart( $filename, $self->{ACCESS_MODE} );
my $res = PDL::IO::HDF::SD::_SDend( $self->{SDID} );
die "$sub: _ERR::Create\n"
if( ($self->{SDID} == PDL::IO::HDF->FAIL ) || ( $res == PDL::IO::HDF->FAIL ));
$self->{ACCESS_MODE} = PDL::IO::HDF->DFACC_WRITE + PDL::IO::HDF->DFACC_READ;
}
unless( defined( $self->{ACCESS_MODE} ) )
{ # Default to Read-only access:
$self->{ACCESS_MODE} = PDL::IO::HDF->DFACC_READ;
}
$self->{FILE_NAME} = $filename;
# SD interface:
print "$sub: Loading HDF File $self->{FILE_NAME}\n"
if $debug;
$self->{SDID} = PDL::IO::HDF::SD::_SDstart( $self->{FILE_NAME}, $self->{ACCESS_MODE} );
die "$sub: _ERR::SDstart\n"
if( $self->{SDID} == PDL::IO::HDF->FAIL );
my $num_datasets = -999;
my $num_global_attrs = -999;
my $res = _SDfileinfo( $self->{SDID}, $num_datasets, $num_global_attrs );
die "$sub: ** sdFileInfo **\n"
if($res == PDL::IO::HDF->FAIL);
foreach my $i ( 0 .. $num_global_attrs-1 )
{
print "$sub: Loading Global Attribute #$i\n"
if $debug;
my $attrname = " "x(PDL::IO::HDF->MAX_NC_NAME+1);
my $type = 0;
my $count = 0;
$res = _SDattrinfo( $self->{SDID}, $i, $attrname, $type, $count );
die "$sub: ** sdAttrInfo **\n"
if($res == PDL::IO::HDF->FAIL);
print "$sub: \$attrname = \'$attrname\'\n"
if $debug;
$self->{GLOBATTR}->{$attrname} = zeroes( $PDL::IO::HDF::SDinvtypeTMAP2->{$type}, $count );
$res = _SDreadattr( $self->{SDID}, $i, $self->{GLOBATTR}->{$attrname} );
die "$sub: ** sdReadAttr **\n"
if($res == PDL::IO::HDF->FAIL);
if( $type == PDL::IO::HDF->DFNT_CHAR )
{
$self->{GLOBATTR}->{$attrname} = Byte2Char( $self->{GLOBATTR}->{$attrname} );
}
}
my @dataname;
foreach my $i ( 0 .. $num_datasets-1 )
{
print "$sub: Loading SDS #$i\n"
if $debug;
my $sds_id = _SDselect( $self->{SDID}, $i );
die "$sub: ** sdSelect **\n"
if($sds_id == PDL::IO::HDF->FAIL);
my $name = " "x(PDL::IO::HDF->MAX_NC_NAME+1);
my $rank = 0;
my $dimsize = " "x( (4 * PDL::IO::HDF->MAX_VAR_DIMS) + 1 );
my $numtype = 0;
my $num_attrs = 0;
$res = _SDgetinfo($sds_id, $name, $rank, $dimsize, $numtype, $num_attrs);
die "$sub: ** sdGetInfo **\n"
if($res == PDL::IO::HDF->FAIL);
print "$sub: \$name = \'$name\'\n"
if $debug;
print "$sub: \$dimsize = \'$dimsize\'\n"
if $debug;
$self->{DATASET}->{$name}->{TYPE} = $numtype;
$self->{DATASET}->{$name}->{RANK} = $rank;
$self->{DATASET}->{$name}->{SDSID} = $sds_id;
# Load up information on the dimensions (named, unlimited, etc...):
#
foreach my $j ( 0 .. $self->{DATASET}->{$name}->{RANK}-1 )
{
print "$sub: Loading SDS($i) Dimension #$j\n"
if $debug;
my $dim_id = _SDgetdimid( $sds_id, $j );
die "$sub: ** sdGetDimId **\n"
if($dim_id == PDL::IO::HDF->FAIL);
my $dimname = " "x(PDL::IO::HDF->MAX_NC_NAME+1);
my $size = 0;
my $num_type = 0;
my $num_dim_attrs = 0;
$res = _SDdiminfo( $dim_id, $dimname, $size, $num_type, $num_dim_attrs );
die "$sub: ** sdDimInfo **\n"
if($res == PDL::IO::HDF->FAIL);
print "$sub: \$dimname = \'$dimname\'\n"
if $debug;
$self->{DATASET}->{$name}->{DIMS}->{$j}->{DIMID} = $dim_id;
$self->{DATASET}->{$name}->{DIMS}->{$j}->{SIZE} = $size;
$self->{DATASET}->{$name}->{DIMS}->{$j}->{NAME} = $dimname;
# The size comes back as 0 if it has the HDF unlimited dimension thing going on:
# So, lets figure out what the size is currently at:
unless ( $size )
{
$self->{DATASET}->{$name}->{DIMS}->{$j}->{REAL_SIZE} = _SDgetunlimiteddim( $sds_id, $j);
}
}
# Load up info on the SDS's attributes:
#
foreach my $j ( 0 .. $num_attrs-1 )
{
print "$sub: Loading SDS($i) Attribute #$j\n"
if $debug;
my $attrname = " "x(PDL::IO::HDF->MAX_NC_NAME+1);
my $type = 0;
my $count = 0;
$res = _SDattrinfo( $sds_id, $j, $attrname, $type, $count);
die "$sub: ** sdAttrInfo **\n"
if($res == PDL::IO::HDF->FAIL);
print "$sub: \$attrname = \'$attrname\'\n"
if $debug;
$self->{DATASET}->{$name}->{ATTRS}->{$attrname} =
zeroes( $PDL::IO::HDF::SDinvtypeTMAP2->{$type}, $count );
$res = _SDreadattr( $sds_id, $j, $self->{DATASET}->{$name}->{ATTRS}->{$attrname} );
die "$sub: ** sdReadAttr **\n"
if($res == PDL::IO::HDF->FAIL);
# FIXME: This should be a constant
if( $type == PDL::IO::HDF->DFNT_CHAR )
{
$self->{DATASET}->{$name}->{ATTRS}->{$attrname} =
Byte2Char( $self->{DATASET}->{$name}->{ATTRS}->{$attrname} );
}
}
}
bless $self, $type;
# Now that we're blessed, run our own accessors:
# Default to using this (it's a good thing :)
$self->Chunking( 1 );
return $self;
} # End of new()...
=head2 Chunking
=for ref
Accessor for the chunking mode on this HDF file.
'Chunking' is an internal compression and tiling the HDF library can
perform on an SDS.
This variable only affects they way SDput() works, and is ON by default.
The code modifications enabled by this flag automatically partition the
dataset to chunks of at least 100x100 values in size. The logic on this
is pretty fancy, and would take a while to doc out here. If you
_really_ have to know how it auto-partitions the data, then look at
the code.
Someday over the rainbow, I'll add some features for better control of the
chunking parameters, if the need arises. For now, it's just stupid easy
to use.
=for usage
Arguments:
1 (optional): new value for the chunking flag.
=for example
# See if chunking is currently on for this file:
my $chunkvar = $hdf->Chunking();
# Turn the chunking off:
my $newvar = $hdf->Chunking( 0 );
# Turn the chunking back on:
my $newvar = $hdf->Chunking( 1 );
=cut
# See the changelog for more docs on this feature:
sub Chunking
{
my $self = shift;
my $var = shift;
if( defined( $var ) )
{
$self->{CHUNKING} = $var ? 1 : 0;
}
return $self->{CHUNKING};
} # End of Chunking()...
=head2 SDgetvariablenames
=for ref
get the list of datasets.
=for usage
No arguments
Returns the list of dataset or undef on error.
=for example
my @DataList = $hdfobj->SDgetvariablenames();
=cut
sub SDgetvariablenames
{
my($self) = @_;
return sort keys %{$self->{DATASET}};
} # End of SDgetvariablenames()...
sub SDgetvariablename
{
my $self = shift;
return $self->SDgetvariablenames( @_ );
} # End of SDgetvariablename()...
=head2 SDgetattributenames
=for ref
Get a list of the names of the global or SDS attributes.
=for usage
Arguments:
1 (optional) : The name of the SD dataset from which you want to get
the attributes. This arg is optional, and without it, it will
return the list of global attribute names.
Returns a list of names or undef on error.
=for example
# For global attributes :
my @attrList = $hdf->SDgetattributenames();
# For SDS attributes :
my @attrList = $hdf->SDgetattributenames("dataset_name");
=cut
sub SDgetattributenames
{
my($self, $name) = @_;
if( defined( $name ) )
{
return( undef )
unless defined( $self->{DATASET}->{$name} );
return sort keys %{ $self->{DATASET}->{$name}->{ATTRS} };
}
else
{
return sort keys %{ $self->{GLOBATTR} };
}
} # End of SDgetattributenames()...
# Wrapper (this is now defunct):
sub SDgetattributname
{
my $self = shift;
return $self->SDgetattributenames( @_ );
} # End of SDgetattributname()...
=head2 SDgetattribute
=for ref
Get a global or SDS attribute value.
=for usage
Arguments:
1 : The name of the attribute.
2 (optional): The name of the SDS from which you want to get the attribute
value. Without this arg, it returns the global attribute value of that name.
Returns an attribute value or undef on error.
=for example
# for global attributs :
my $attr = $hdf->SDgetattribute("attr_name");
# for local attributs :
my $attr = $hdf->SDgetattribute("attr_name", "dataset_name");
=cut
sub SDgetattribute
{
my($self, $name, $dataset) = @_;
if( defined($dataset) )
{ # It's an SDS attribute:
return( undef )
unless defined( $self->{DATASET}->{$dataset} );
return $self->{DATASET}->{$dataset}->{ATTRS}->{$name};
}
else
{ # Global attribute:
return( undef )
unless defined( $self->{GLOBATTR}->{$name} );
return $self->{GLOBATTR}->{$name};
}
} # End of SDgetattribute()...
# Wrapper (this is now defunct):
sub SDgetattribut
{
my $self = shift;
return $self->SDgetattribute( @_ );
} # End of SDgetattribut()...
=head2 SDgetfillvalue
=for ref
Get the fill value of an SDS.
=for usage
Arguments:
1 : The name of the SDS from which you want to get the fill value.
Returns the fill value or undef on error.
=for example
my $fillvalue = $hdf->SDgetfillvalue("dataset_name");
=cut
sub SDgetfillvalue
{
my($self, $name) = @_;
return( undef )
unless defined( $self->{DATASET}->{$name} );
return ($self->{DATASET}->{$name}->{ATTRS}->{_FillValue})->at(0);
} # End of SDgetfillvalue()...
=head2 SDgetrange
=for ref
Get the valid range of an SDS.
=for usage
Arguments:
1 : the name of the SDS from which you want to get the valid range.
Returns a list of two elements [min, max] or undef on error.
=for example
my @range = $hdf->SDgetrange("dataset_name");
=cut
sub SDgetrange
{
my($self, $name) = @_;
return( undef )
unless defined( $self->{DATASET}->{$name} );
return $self->{DATASET}->{$name}->{ATTRS}->{valid_range};
} # End of SDgetrange()...
=head2 SDgetscalefactor
=for ref
Get the scale factor of an SDS.
=for usage
Arguments:
1 : The name of the SDS from which you want to get the scale factor.
Returns the scale factor or undef on error.
=for example
my $scale = $hdf->SDgetscalefactor("dataset_name");
=cut
sub SDgetscalefactor
{
my($self, $name) = @_;
return( undef )
unless defined( $self->{DATASET}->{$name} );
return ($self->{DATASET}->{$name}->{ATTRS}->{scale_factor})->at(0);
} # End of SDgetscalefactor()...
=head2 SDgetdimsize
=for ref
Get the dimensions of a dataset.
=for usage
Arguments:
1 : The name of the SDS from which you want to get the dimensions.
Returns an array of n dimensions with their sizes or undef on error.
=for example
my @dim = $hdf->SDgetdimsize("dataset_name");
=cut
sub SDgetdimsize
{
my ($self, $name) = @_;
return( undef )
unless defined( $self->{DATASET}->{$name} );
my @dims;
foreach( sort keys %{ $self->{DATASET}->{$name}->{DIMS} } )
{
push @dims, $self->{DATASET}->{$name}->{DIMS}->{$_}->{SIZE};
}
return( @dims );
} # End of SDgetdimsize()...
=head2 SDgetunlimiteddimsize
=for ref
Get the actual dimensions of an SDS with 'unlimited' dimensions.
=for usage
Arguments:
1 : The name of the SDS from which you want to the dimensions.
Returns an array of n dimensions with the dim sizes or undef on error.
=for example
my @dims = $hdf->SDgetunlimiteddimsize("dataset_name");
=cut
sub SDgetunlimiteddimsize
{
my ($self, $name) = @_;
return( undef )
unless defined( $self->{DATASET}->{$name} );
my @dim;
foreach( sort keys %{$self->{DATASET}{$name}{DIMS}} )
{
if( $self->{DATASET}->{$name}->{DIMS}->{$_}->{SIZE} == 0 )
{
$dim[ $_ ] =
$self->{DATASET}->{$name}->{DIMS}->{$_}->{REAL_SIZE};
}
else
{
$dim[ $_ ] =
$self->{DATASET}->{$name}->{DIMS}->{$_}->{SIZE};
}
}
return(@dim);
} # End of SDgetunlimiteddimsize()...
# Wrapper (this is now defunct):
sub SDgetdimsizeunlimit
{
my $self = shift;
return $self->SDgetunlimiteddimsize( @_ );
} # End of SDgetdimsizeunlimit()...
=head2 SDgetdimnames
=for ref
Get the names of the dimensions of a dataset.
=for usage
Arguments:
1 : the name of a dataset you want to get the dimensions'names .
Returns an array of n dimensions with their names or an empty list if error.
=for example
my @dim_names = $hdf->SDgetdimnames("dataset_name");
=cut
sub SDgetdimnames
{
my ($self, $name) = @_;
return( undef )
unless defined( $self->{DATASET}->{$name} );
my @dims=();
foreach( sort keys %{ $self->{DATASET}->{$name}->{DIMS} } )
{
push @dims,$self->{DATASET}->{$name}->{DIMS}->{$_}->{NAME};
}
return(@dims);
} # End of SDgetdimnames()...
sub SDgetdimname
{
my $self = shift;
return $self->SDgetdimnames( @_ );
} # End of SDgetdimname();
=head2 SDgetcal
=for ref
Get the calibration factor from an SDS.
=for usage
Arguments:
1 : The name of the SDS
Returns (scale factor, scale factor error, offset, offset error, data type), or undef on error.
=for example
my ($cal, $cal_err, $off, $off_err, $d_type) = $hdf->SDgetcal("dataset_name");
=cut
sub SDgetcal
{
my ($self, $name ) = @_;
my ($cal, $cal_err, $off, $off_err, $type);
return( undef )
unless defined( $self->{DATASET}->{$name} );
return( undef )
unless defined( $self->{DATASET}->{$name}->{ATTRS}->{scale_factor} );
$cal = $self->{DATASET}->{$name}->{ATTRS}->{scale_factor};
$cal_err = $self->{DATASET}->{$name}->{ATTRS}->{scale_factor_err};
$off = $self->{DATASET}->{$name}->{ATTRS}->{add_offset};
$off_err = $self->{DATASET}->{$name}->{ATTRS}->{add_offset_err};
$type = $self->{DATASET}->{$name}->{ATTRS}->{calibrated_nt};
return( $cal, $cal_err, $off, $off_err, $type );
} # End of SDgetcal()...
=head2 SDget
=for ref
Get a the data from and SDS, or just a slice of that SDS.
=for usage
Arguments:
1 : The name of the SDS you want to get.
2 (optional): The start array ref of the slice.
3 (optional): The size array ref of the slice (HDF calls this the 'edge').
4 (optional): The stride array ref of the slice.
Returns a PDL of data if ok, PDL::null on error.
If the slice arguments are not given, this function will read the entire
SDS from the file.
The type of the returned PDL variable is the PDL equivalent of what was
stored in the HDF file.
=for example
# Get the entire SDS:
my $pdldata = $hdf->SDget("dataset_name");
# get a slice of the dataset
my $start = [10,50,10]; # the start position of the slice is [10, 50, 10]
my $edge = [20,20,20]; # read 20 values on each dimension from @start
my $stride = [1, 1, 1]; # Don't skip values
my $pdldata = $hdf->SDget( "dataset_name", $start, $edge, $stride );
=cut
sub SDget
{
my($self, $name, $start, $end, $stride) = @_;
my $sub = _pkg_name( 'SDget' );
return null
unless defined( $self->{DATASET}->{$name} );
unless( defined( $end ) )
{ # \@end was not passed in, so we need to set everything else to defaults:
($start, $end) = [];
my @dimnames=$self->SDgetdimnames($name);
for my $dim (0 .. $#dimnames)
{
my $use_size = $self->{DATASET}->{$name}->{DIMS}->{$dim}->{SIZE}
|| $self->{DATASET}->{$name}->{DIMS}->{$dim}->{REAL_SIZE};
$$end[ $dim ] = $use_size;
$$start[ $dim ] = 0;
$$stride[ $dim ] = 1;
}
}
my $c_start = pack ("L*", @$start);
my $c_end = pack ("L*", @$end);
my $c_stride = pack ("L*", @$stride);
#print STDERR "$sub: start:[".join(',',@$start)
# ."]=>$c_start end:[".join(',',@$end)
# ."]=>$c_end stride:[".join(',',@$stride)."]=>$c_stride\n";
my $buff = zeroes( $PDL::IO::HDF::SDinvtypeTMAP2->{$self->{DATASET}->{$name}->{TYPE}}, reverse @$end );
my $res = _SDreaddata( $self->{DATASET}->{$name}->{SDSID}, $c_start, $c_stride, $c_end, $buff );
if($res == PDL::IO::HDF->FAIL)
{
$buff = null;
print "$sub: Error returned from _SDreaddata()!\n";
}
return $buff;
} # End of SDget()...
=head2 SDsetfillvalue
=for ref
Set the fill value for an SDS.
=for usage
Arguments:
1 : The name of the SDS.
2 : The fill value.
Returns true on success, undef on error.
=for example
my $res = $hdf->SDsetfillvalue("dataset_name",$fillvalue);
=cut
sub SDsetfillvalue
{
my ($self, $name, $value) = @_;
return( undef )
unless defined( $self->{DATASET}->{$name} );
$value = &{$PDL::IO::HDF::SDinvtypeTMAP->{$self->{DATASET}->{$name}->{TYPE}}}($value);
$self->{DATASET}->{$name}->{ATTRS}->{_FillValue} = $value;
return( _SDsetfillvalue($self->{DATASET}->{$name}->{SDSID}, $value) + 1 );
} # End of SDsetfillvalue()...
=head2 SDsetrange
=for ref
Set the valid range of an SDS.
=for usage
Arguments:
1 : The name of the SDS
2 : an anonymous array of two elements : [min, max].
Returns true on success, undef on error.
=for example
my $res = $hdf->SDsetrange("dataset_name", [$min, $max]);
=cut
sub SDsetrange
{
my ($self, $name, $range) = @_;
return undef
unless defined( $self->{DATASET}->{$name} );
my $min = &{$PDL::IO::HDF::SDinvtypeTMAP->{$self->{DATASET}->{$name}->{TYPE}}}($$range[0]);
my $max = &{$PDL::IO::HDF::SDinvtypeTMAP->{$self->{DATASET}->{$name}->{TYPE}}}($$range[1]);
$range = &{$PDL::IO::HDF::SDinvtypeTMAP->{$self->{DATASET}->{$name}->{TYPE}}}($range);
$self->{DATASET}->{$name}->{ATTRS}->{valid_range} = $range;
return( _SDsetrange($self->{DATASET}->{$name}->{SDSID}, $max, $min) + 1 );
} # End of SDsetrange()...
=head2 SDsetcal
=for ref
Set the HDF calibration for an SDS.
In HDF lingo, this means to define:
scale factor
scale factor error
offset
offset error
=for usage
Arguments:
1 : The name of the SDS.
2 (optional): the scale factor (default is 1)
3 (optional): the scale factor error (default is 0)
4 (optional): the offset (default is 0)
5 (optional): the offset error (default is 0)
Returns true on success, undef on error.
NOTE: This is not required to make a valid HDF SDS, but is there if you want to use it.
=for example
# Create the dataset:
my $res = $hdf->SDsetcal("dataset_name");
# To just set the scale factor:
$res = $hdf->SDsetcal("dataset_name", $scalefactor);
# To set all calibration parameters:
$res = $hdf->SDsetcal("dataset_name", $scalefactor, $scale_err, $offset, $off_err);
=cut
sub SDsetcal
{
my $self = shift;
my $name = shift;
return( undef )
unless defined( $self->{DATASET}->{$name} );
$self->{DATASET}->{$name}->{ATTRS}->{scale_factor} = shift || 1;
$self->{DATASET}->{$name}->{ATTRS}->{scale_factor_err} = shift || 0;
$self->{DATASET}->{$name}->{ATTRS}->{add_offset} = shift || 0;
$self->{DATASET}->{$name}->{ATTRS}->{add_offset_err} = shift || 0;
# PDL_Double is the default type:
$self->{DATASET}->{$name}->{ATTRS}->{calibrated_nt} = shift || 6;
return(
_SDsetcal(
$self->{DATASET}->{$name}->{SDSID},
$self->{DATASET}->{$name}->{ATTRS}->{scale_factor},
$self->{DATASET}->{$name}->{ATTRS}->{scale_factor_err},
$self->{DATASET}->{$name}->{ATTRS}->{add_offset},
$self->{DATASET}->{$name}->{ATTRS}->{add_offset_err},
$self->{DATASET}->{$name}->{ATTRS}->{calibrated_nt}
) + 1);
} # End of SDsetcal()...
=head2 SDsetcompress
=for ref
Set the internal compression on an SDS.
=for usage
Arguments:
1 : The name of the SDS.
2 (optional): The gzip compression level ( 1 - 9 ). If not
specified, then 6 is used.
Returns true on success, undef on failure.
WARNING: This is a fairly buggy feature with many version of the HDF library.
Please just use the 'Chunking' features instead, as they work far better, and
are more reliable.
=for example
my $res = $hdf->SDsetfillvalue("dataset_name",$deflate_value);
=cut
sub SDsetcompress
{
my ($self, $name) = @_;
return( undef )
unless defined( $self->{DATASET}->{$name} );
# NOTE: Behavior change from the old version:
# it used to set to 6 if the passed value was greater than 8
# it now sets it to 9 if it's greater than 9.
my $deflate = shift || 6;
$deflate = 9
if( $deflate > 9 );
return( 1 + _SDsetcompress( $self->{DATASET}->{$name}->{SDSID}, $deflate ) );
} # End of SDsetcompress()...
=head2 SDsettextattr
=for ref
Add a text HDF attribute, either globally, or to an SDS.
=for usage
Arguments:
1 : The text you want to add.
2 : The name of the attribute
3 (optional): The name of the SDS.
Returns true on success, undef on failure.
=for example
# Set a global text attribute:
my $res = $hdf->SDsettextattr("my_text", "attribut_name");
# Set a local text attribute for 'dataset_name':
$res = $hdf->SDsettextattr("my_text", "attribut_name", "dataset_name");
=cut
sub SDsettextattr
{
my ($self, $text, $name, $dataset) = @_;
if( defined($dataset) )
{
return( undef )
unless defined( $self->{DATASET}->{$dataset} );
$self->{DATASET}->{$dataset}->{ATTRS}->{$name} = $text;
return( _SDsetattr_text( $self->{DATASET}->{$dataset}->{SDSID}, $name, $text, length($text) ) + 1 );
}
# Implied else it's a global attribute:
$self->{GLOBATTR}->{$name} = $text;
return( _SDsetattr_text( $self->{SDID}, $name, $text, length($text) ) + 1);
} # End of SDsettextattr()...
=head2 SDsetvalueattr
=for ref
Add a non-text HDF attribute, either globally, or to an SDS.
=for usage
Arguments:
1 : A pdl of value(s) you want to store.
2 : The name of the attribute.
3 (optional): the name of the SDS.
Returns true on success, undef on failure.
=for example
my $attr = sequence( long, 4 );
# Set a global attribute:
my $res = $hdf->SDsetvalueattr($attribute, "attribute_name");
# Set a local attribute for 'dataset_name':
$res = $hdf->SDsetvalueattr($attribute, "attribute_name", "dataset_name");
=cut
sub SDsetvalueattr
{
my ($self, $values, $name, $dataset) = @_;
if( defined($dataset) )
{
return( undef )
unless defined( $self->{DATASET}->{$dataset} );
$self->{DATASET}->{$dataset}->{ATTRS}->{$name} = $values;
return( _SDsetattr_values(
$self->{DATASET}->{$dataset}->{SDSID}, $name, $values,
$values->nelem(), $PDL::IO::HDF::SDtypeTMAP->{$values->get_datatype()} ) + 1);
}
# Implied else it's a global attribute:
$self->{GLOBATTR}->{$name} = $values;
return( _SDsetattr_values(
$self->{SDID}, $name, $values,
$values->nelem(), $PDL::IO::HDF::SDtypeTMAP->{$values->get_datatype()} ) + 1);
} # End of SDsetvalueattr()...
=head2 SDsetdimname
=for ref
Set or rename the dimensions of an SDS.
=for usage
Arguments:
1 : The name of the SDS.
2 : An anonymous array with the dimensions names. For dimensions you want
to leave alone, leave 'undef' placeholders.
Returns true on success, undef on failure.
=for example
# Rename all dimensions
my $res = $hdf->SDsetdimname("dataset_name", ['dim1','dim2','dim3']);
# Rename some dimensions
$res = $hdf->SDsetdimname("dataset_name", ['dim1', undef ,'dim3']);
=cut
# FIXME: There are several problems with this:
# - The return code is an aggregate, and not necessarily accurate
# - It bails on the first error without trying the rest. If that is still
# desired, then it should run the check first, and if it's ok, then actually
# make the HDF library call.
sub SDsetdimname
{
my ($self, $name, $dimname) = @_;
return undef
unless defined( $self->{DATASET}->{$name} );
my $res = 0;
foreach( sort keys %{$self->{DATASET}->{$name}->{DIMS}} )
{
return( undef )
unless defined( $$dimname[ $_ ] );
$res = _SDsetdimname(
$self->{DATASET}->{$name}->{DIMS}->{$_}->{DIMID},
$$dimname[ $_ ] ) + 1;
}
return( $res );
} # End of SDsetdimname()...
=head2 SDput
=for ref
Write to a SDS in an HDF file or create and write to it if it doesn't exist.
=for usage
Arguments:
1 : The name of the SDS.
2 : A pdl of data.
3 (optional): An anonymous array of the dim names (only for creation)
4 (optional): An anonymous array of the start of the slice to store
(only for putting a slice)
Returns true on success, undef on failure.
The datatype of the SDS in the HDF file will match the PDL equivalent as
much as possible.
=for example
my $data = sequence( float, 10, 20, 30 ); #any value you want
# Simple case: create a new dataset with a $data pdl
my $result = $hdf->SDput("dataset_name", $data);
# Above, but also naming the dims:
$res = $hdf->SDput("dataset_name", $data, ['dim1','dim2','dim3']);
# Just putting a slice in there:
my $start = [x,y,z];
$res = $hdf->SDput("dataset_name", $data->slice("..."), undef, $start);
=cut
sub SDput
{
my($self, $name, $data, $dimname_p, $from) = @_;
my $sub = _pkg_name( 'SDput' );
my $rank = $data->getndims();
my $dimsize = pack ("L*", reverse $data->dims);
# If this dataset doesn't already exist, then create it:
#
unless ( defined( $self->{DATASET}->{$name} ) )
{
my $hdf_type = $PDL::IO::HDF::SDtypeTMAP->{$data->get_datatype()};
my $res = _SDcreate( $self->{SDID}, $name, $hdf_type, $rank, $dimsize );
return( undef )
if ($res == PDL::IO::HDF->FAIL);
$self->{DATASET}->{$name}->{SDSID} = $res;
$self->{DATASET}->{$name}->{TYPE} = $hdf_type;
$self->{DATASET}->{$name}->{RANK} = $rank;
if( $self->Chunking() )
{
# Setup chunking on this dataset:
my @chunk_lens;
my $min_chunk_size = 100;
my $num_chunks = 10;
my $total_chunks = 1;
foreach my $dimsize ( $data->dims() )
{
my $chunk_size = ($dimsize + 9) / $num_chunks;
my $num_chunks_this_dim = $num_chunks;
if( $chunk_size < $min_chunk_size )
{
$chunk_size = $min_chunk_size;
# Re-calc the num_chunks_per_dim:
$num_chunks_this_dim = POSIX::ceil( $dimsize / $chunk_size );
}
push(@chunk_lens, $chunk_size);
$total_chunks *= $num_chunks_this_dim;
}
my $chunk_lengths = pack("L*", reverse @chunk_lens);
$res = _SDsetchunk( $self->{DATASET}->{$name}->{SDSID}, $rank, $chunk_lengths );
return( undef )
if ($res == PDL::IO::HDF->FAIL);
$res = _SDsetchunkcache( $self->{DATASET}->{$name}->{SDSID}, $total_chunks, 0);
return( undef )
if ($res == PDL::IO::HDF->FAIL);
} # End of chunking section...
} # End of dataset creation...
my $start = [];
my $stride = [];
if( defined( $from ) )
{
$start = $from;
foreach($data->dims)
{ push(@$stride, 1); }
}
else
{ # $from was not defined, so assume we're doing all of it:
foreach($data->dims)
{
push(@$start, 0);
push(@$stride, 1);
}
}
$start = pack ("L*", @$start);
$stride = pack ("L*", @$stride);
$data->make_physical();
my $res = _SDwritedata( $self->{DATASET}->{$name}->{SDSID}, $start, $stride, $dimsize, $data );
return( undef )
if ($res == PDL::IO::HDF->FAIL);
foreach my $j ( 0 .. $rank-1 )
{
# Probably not a good way to bail:
my $dim_id = _SDgetdimid( $self->{DATASET}->{$name}->{SDSID}, $j );
return( undef )
if( $dim_id == PDL::IO::HDF->FAIL);
if( defined( @$dimname_p[$j] ) )
{
$res = _SDsetdimname( $dim_id, @$dimname_p[$j] );
return( undef )
if( $res == PDL::IO::HDF->FAIL );
}
my $dimname = " "x(PDL::IO::HDF->MAX_NC_NAME);
my $size = 0;
my $num_dim_attrs = 0;
$res = _SDdiminfo( $dim_id, $dimname, $size, my $numtype=0, $num_dim_attrs);
return( undef )
if ($res == PDL::IO::HDF->FAIL);
$self->{DATASET}->{$name}->{DIMS}->{$j}->{NAME} = $dimname;
$self->{DATASET}->{$name}->{DIMS}->{$j}->{SIZE} = $size;
$self->{DATASET}->{$name}->{DIMS}->{$j}->{DIMID} = $dim_id;
}
return( 1 );
} # End of SDput()...
=head2 close
=for ref
Close an HDF file.
=for usage
No arguments.
=for example
my $result = $hdf->close();
=cut
# NOTE: This may not be enough, since there may be opened datasets as well! SDendaccess()!
sub close
{
my $self = shift;
my $sdid = $self->{SDID};
$self = undef;
return( _SDend( $sdid ) + 1);
} # End of close()...
sub DESTROY
{
my $self = shift;
$self->close;
} # End of DESTROY()...
EOPM
#
# Add the tail of the documentation to the module:
#
pp_addpm(<<'EOD');
=head1 CURRENT AUTHOR & MAINTAINER
Judd Taylor, Orbital Systems, Ltd.
judd dot t at orbitalsystems dot com
=head1 PREVIOUS AUTHORS
Patrick Leilde patrick.leilde@ifremer.fr
contribs of Olivier Archer olivier.archer@ifremer.fr
=head1 SEE ALSO
perl(1), PDL(1), PDL::IO::HDF(1).
=cut
EOD
pp_done();
|