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
|
package PDL::IO::HDF5::Group;
use Carp;
use strict;
=head1 NAME
PDL::IO::HDF5::Group - PDL::IO::HDF5 Helper Object representing HDF5 groups.
=head1 DESCRIPTION
This is a helper-object used by PDL::IO::HDF5 to interface with HDF5 format's group objects.
Information on the HDF5 Format can be found
at the HDF Group's web site at http://www.hdfgroup.org .
=head1 SYNOPSIS
See L<PDL::IO::HDF5>
=head1 MEMBER DATA
=over 1
=item ID
ID number given to the group by the HDF5 library
=item name
Name of the group. (Absolute to the root group '/'. e.g. /maingroup/subgroup)
=item parent
Ref to parent object (file or group) that owns this group.
=item fileObj
Ref to the L<PDL::IO::HDF5> object that owns this object.
=back
=head1 METHODS
####---------------------------------------------------------
=head2 new
=for ref
PDL::IO::HDF5::Group Constructor - creates new object
B<Usage:>
=for usage
This object will usually be created using the calling format detailed in the L<SYNOPSIS>. The
following syntax is used by the L<PDL::IO::HDF5> object to build the object.
$a = new PDL::IO::HDF5:Group( name => $name, parent => $parent,
fileObj => $fileObj );
Args:
$name Name of the group (relative to the parent)
$parent Parent Object that owns this group
$fileObj PDL::HDF (Top Level) object that owns this group.
=cut
sub new{
my $type = shift;
my %parms = @_;
my $self = {};
my @DataMembers = qw( name parent fileObj);
my %DataMembers;
@DataMembers{ @DataMembers } = @DataMembers; # hash for quick lookup
# check for proper supplied names:
my $varName;
foreach $varName(keys %parms){
unless( defined($DataMembers{$varName})){
carp("Error Calling ".__PACKAGE__." Constuctor\n \'$varName\' not a valid data member\n");
return undef;
}
$self->{$varName} = $parms{$varName};
}
my $parent = $self->{parent};
my $parentID = $parent->IDget;
my $parentName = $parent->nameGet;
my $groupName = $self->{name};
my $groupID;
# Adjust groupname to be absolute:
if( $parentName ne '/') { # Parent is not the root group
$self->{name} = "$parentName/$groupName";
}
else{ # Parent is root group
$self->{name} = "$parentName$groupName";
}
# Turn Error Reporting off for the following, so H5 lib doesn't complain
# if the group isn't found.
PDL::IO::HDF5::H5errorOff();
my $rc = PDL::IO::HDF5::H5Gget_objinfo($parentID, $groupName,1,0);
PDL::IO::HDF5::H5errorOn();
# See if the group exists:
if( $rc >= 0){
#Group Exists open it:
$groupID = PDL::IO::HDF5::H5Gopen($parentID, $groupName);
}
else{ # group didn't exist, create it:
$groupID = PDL::IO::HDF5::H5Gcreate($parentID, $groupName, 0);
# Clear-out the attribute index, it is no longer valid with the updates
# we just made.
$self->{fileObj}->clearAttrIndex;
}
# Try Opening the Group First (Assume it already exists)
if($groupID < 0 ){
carp "Error Calling ".__PACKAGE__." Constuctor: Can't open or create group '$groupName'\n";
return undef;
}
$self->{ID} = $groupID;
bless $self, $type;
return $self;
}
=head2 DESTROY
=for ref
PDL::IO::HDF5 Destructor - Closes the HDF5::Group Object.
B<Usage:>
=for usage
No Usage. Automatically called
=cut
sub DESTROY {
my $self = shift;
#print "In Group Destroy\n";
if( PDL::IO::HDF5::H5Gclose($self->{ID}) < 0){
warn("Error closing HDF5 Group '".$self->{name}."' in file '".$self->{parentName}."'\n");
}
}
=head2 attrSet
=for ref
Set the value of an attribute(s)
Supports null-terminated strings, integers and floating point scalar and 1D array attributes.
B<Usage:>
=for usage
$group->attrSet( 'attr1' => 'attr1Value',
'attr2' => 'attr2 value',
'attr3' => $pdl,
.
.
.
);
Returns undef on failure, 1 on success.
=cut
sub attrSet {
my $self = shift;
# Attribute setting for groups is exactly like datasets
# Call datasets directly (This breaks OO inheritance, but is
# better than duplicating code from the dataset object here
return $self->PDL::IO::HDF5::Dataset::attrSet(@_);
}
=head2 attrGet
=for ref
Get the value of an attribute(s)
Supports null-terminated strings, integer and floating point scalar and 1D array attributes.
B<Usage:>
=for usage
my @attrs = $group->attrGet( 'attr1', 'attr2');
=cut
sub attrGet {
my $self = shift;
# Attribute reading for groups is exactly like datasets
# Call datasets directly (This breaks OO inheritance, but is
# better than duplicating code from the dataset object here
return $self->PDL::IO::HDF5::Dataset::attrGet(@_);
}
=head2 attrDel
=for ref
Delete attribute(s)
B<Usage:>
=for usage
$group->attrDel( 'attr1',
'attr2',
.
.
.
);
Returns undef on failure, 1 on success.
=cut
sub attrDel {
my $self = shift;
my @attrs = @_; # get atribute names
my $groupID = $self->{ID};
my $attr;
my $rc; #Return code returned by H5Adelete
foreach $attr( @attrs ){
# Note: We don't consider errors here as cause for aborting, we just
# complain using carp
if( PDL::IO::HDF5::H5Adelete($groupID, $attr) < 0){
carp "Error in ".__PACKAGE__." attrDel; Error Deleting attribute '$attr'\n";
}
}
# Clear-out the attribute index, it is no longer valid with the updates
# we just made.
$self->{fileObj}->clearAttrIndex;
return 1;
}
=head2 attrs
=for ref
Get a list of all attribute names in a group
B<Usage:>
=for usage
@attrs = $group->attrs;
=cut
sub attrs {
my $self = shift;
my $groupID = $self->{ID};
my $defaultMaxSize = 256; # default max size of a attribute name
my $noAttr = PDL::IO::HDF5::H5Aget_num_attrs($groupID); # get the number of attributes
my $attrIndex = 0; # attribute Index
my @attrNames = ();
my $attributeID;
my $attrNameSize; # size of the attribute name
my $attrName; # attribute name
# Go thru each attribute and get the name
for( $attrIndex = 0; $attrIndex < $noAttr; $attrIndex++){
$attributeID = PDL::IO::HDF5::H5Aopen_idx($groupID, $attrIndex );
if( $attributeID < 0){
carp "Error in ".__PACKAGE__." attrs; Error Opening attribute number $attrIndex\n";
next;
}
#init attrname to 256 length string (Maybe this not necessary with
# the typemap)
$attrName = ' ' x 256;
# Get the name
$attrNameSize = PDL::IO::HDF5::H5Aget_name($attributeID, 256, $attrName );
# If the name is greater than 256, try again with the proper size:
if( $attrNameSize > 256 ){
$attrName = ' ' x $attrNameSize;
$attrNameSize = PDL::IO::HDF5::H5Aget_name($attributeID, $attrNameSize, $attrName );
}
push @attrNames, $attrName;
# Close the attr:
PDL::IO::HDF5::H5Aclose($attributeID);
}
return @attrNames;
}
=head2 dataset
=for ref
Open an existing or create a new dataset in a group.
B<Usage:>
=for usage
$dataset = $group->dataset('newdataset');
Returns undef on failure, 1 on success.
=cut
sub dataset {
my $self = shift;
my $name = $_[0];
my $groupID = $self->{ID}; # get the group name of the current group
my $dataset = PDL::IO::HDF5::Dataset->new( name=> $name, parent => $self,
fileObj => $self->{fileObj} );
}
=head2 datasets
=for ref
Get a list of all dataset names in a group. (Relative to the current group)
B<Usage:>
=for usage
@datasets = $group->datasets;
=cut
sub datasets {
my $self = shift;
my $groupID = $self->{ID};
my @totalDatasets = PDL::IO::HDF5::H5GgetDatasetNames($groupID,".");
return @totalDatasets;
}
=head2 group
=for ref
Open an existing or create a new group in an existing group.
B<Usage:>
=for usage
$newgroup = $oldgroup->group("newgroup");
Returns undef on failure, 1 on success.
=cut
sub group {
my $self = shift;
my $name = $_[0]; # get the group name
my $group = new PDL::IO::HDF5::Group( name=> $name, parent => $self,
fileObj => $self->{fileObj} );
return $group;
}
=head2 groups
=for ref
Get a list of all group names in a group. (Relative to the current group)
B<Usage:>
=for usage
@groupNames = $group->groups;
=cut
sub groups {
my $self = shift;
my $groupID = $self->{ID};
my @totalgroups = PDL::IO::HDF5::H5GgetGroupNames($groupID,'.');
return @totalgroups;
}
=head2 _buildAttrIndex
=for ref
Internal Recursive Method to build the attribute index hash
for the object
For the purposes of indexing groups by their attributes, the attributes are
applied hierarchial. i.e. any attributes of the higher level groups are assumed to be
apply for the lower level groups.
B<Usage:>
=for usage
$group->_buildAttrIndex($index, $currentAttrs);
Input/Output:
$index: Total Index hash ref
$currentAttrs: Hash refs of the attributes valid
for the current group.
=cut
sub _buildAttrIndex{
my ($self, $index, $currentAttrs) = @_;
# Take care of any attributes in the current group
my @attrs = $self->attrs;
my @attrValues = $self->attrGet(@attrs);
# Get the group name
my $groupName = $self->nameGet;
my %indexElement; # element of the index for this group
%indexElement = %$currentAttrs; # Initialize index element
# with attributes valid at the
# group above
# Add (or overwrite) attributes for this group
# i.e. local group attributes take precedence over
# higher-level attributes
@indexElement{@attrs} = @attrValues;
$index->{$groupName} = \%indexElement;
# Now Do any subgroups:
my @subGroups = $self->groups;
my $subGroup;
foreach $subGroup(@subGroups){
$self->group($subGroup)->_buildAttrIndex($index,\%indexElement);
}
}
=head2 IDget
=for ref
Returns the HDF5 library ID for this object
B<Usage:>
=for usage
my $ID = $groupObj->IDget;
=cut
sub IDget{
my $self = shift;
return $self->{ID};
}
=head2 nameGet
=for ref
Returns the HDF5 Group Name for this object. (Relative to the root group)
B<Usage:>
=for usage
my $name = $groupObj->nameGet;
=cut
sub nameGet{
my $self = shift;
return $self->{name};
}
####---------------------------------------------------------
=head2 reference
=for ref
Creates a reference to a region of a dataset.
B<Usage:>
=for usage
$groupObj->reference($referenceName,$datasetObj,@regionStart,@regionCount);
Create a reference named $referenceName within the group $groupObj to a subroutine of
the dataset $datasetObj. The region to be referenced is defined by the @regionStart
and @regionCount arrays.
=cut
sub reference{
my $self = shift;
my $datasetObj = shift;
my $referenceName = shift;
my @regionStart = shift;
my @regionCount = shift;
# Get the dataset ID.
my $dataSubsetID = $datasetObj->IDget;
# Get the dataspace of the dataset.
my $dataSubsetSpaceID = PDL::IO::HDF5::H5Dget_space($dataSubsetID);
if( $dataSubsetSpaceID <= 0 ){
carp("Can't get dataspacein ".__PACKAGE__.":reference\n");
return undef;
}
# Select a hyperslab from this dataspace.
my $Ndims = $#regionStart+1;
my $start = new PDL @regionStart;
my $length = new PDL @regionCount;
my $start2 = PDL::IO::HDF5::packList(reverse($start->list));
my $length2 = PDL::IO::HDF5::packList(reverse($length->list));
my $stride = PDL::Core::ones($Ndims);
my $stride2 = PDL::IO::HDF5::packList(reverse($stride->list));
my $block = PDL::Core::ones($Ndims);
my $block2 = PDL::IO::HDF5::packList(reverse($block->list));
my $rc = PDL::IO::HDF5::H5Sselect_hyperslab($dataSubsetSpaceID,0,$start2,$stride2,$length2,$block2);
if ( $rc < 0 ) {
carp("Error slicing data space in ".__PACKAGE__.":reference\n");
carp("Can't close DataSpace in ".__PACKAGE__.":reference\n") if( PDL::IO::HDF5::H5Sclose($dataSubsetSpaceID) < 0);
return undef;
}
# Create a dataspace for the reference dataset.
my $dataspaceID = PDL::IO::HDF5::H5Screate_simple(0,0,0);
if( $dataspaceID < 0 ){
carp("Can't Open Dataspace in ".__PACKAGE__.":reference\n");
return undef;
}
# Create the reference dataset.
my $dataSetID = PDL::IO::HDF5::H5Dcreate($self->{ID},$referenceName,
PDL::IO::HDF5::H5T_STD_REF_DSETREG(),
$dataspaceID,
PDL::IO::HDF5::H5P_DEFAULT());
if( $dataSetID < 0){
carp("Can't Create Dataset in ".__PACKAGE__.":reference\n");
return undef;
}
# Create the reference.
my $howBig = PDL::IO::HDF5::H5Tget_size(PDL::IO::HDF5::H5T_STD_REF_DSETREG());
my $datasetReference = ' ' x $howBig;
if ( PDL::IO::HDF5::H5Rcreate($datasetReference,$datasetObj->{parent}->{ID},$datasetObj->{name},PDL::IO::HDF5::H5R_DATASET_REGION(),$dataSubsetSpaceID) < 0 ) {
carp("Can't Create Reference Dataset in ".__PACKAGE__.":reference\n");
return undef;
}
# Write the reference dataset.
if( PDL::IO::HDF5::H5Dwrite($dataSetID,PDL::IO::HDF5::H5T_STD_REF_DSETREG(),PDL::IO::HDF5::H5S_ALL(),PDL::IO::HDF5::H5S_ALL(),PDL::IO::HDF5::H5P_DEFAULT(),$datasetReference) < 0 ){
carp("Error Writing to dataset in ".__PACKAGE__.":reference\n");
return undef;
}
# Close the dataset dataspace.
PDL::IO::HDF5::H5Sclose($dataspaceID);
PDL::IO::HDF5::H5Sclose($dataSubsetSpaceID);
PDL::IO::HDF5::H5Dclose($dataSetID);
return 1;
}
####---------------------------------------------------------
=head2 unlink
=for ref
Unlink an object from a group.
B<Usage:>
=for usage
$groupObj->unlink($objectName);
Unlink the named object from the group.
=cut
sub unlink{
my $self = shift;
my $objectName = shift;
# Get the dataset ID.
my $groupID = $self->{ID};
# Do the unlink.
if ( PDL::IO::HDF5::H5Ldelete($groupID,$objectName,PDL::IO::HDF5::H5P_DEFAULT()) < 0 ) {
carp("Can't unlink object in ".__PACKAGE__.":unlink\n");
return undef;
}
return 1;
}
1;
|