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
|
package Grid::GPT::PackageFilelist;
$VERSION = 1.00;
use strict;
use vars qw( $AUTOLOAD @ISA @EXPORT ); # Keep 'use strict' happy
use Carp;
require Exporter;
require AutoLoader;
require Grid::GPT::GPTObject;
@ISA = qw(Exporter AutoLoader Grid::GPT::GPTObject);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
@EXPORT = qw(
);
#
# include standard modules
#
require Grid::GPT::PackageFile;
require Grid::GPT::PackageFilelist::flat1;
require Grid::GPT::PackageFilelist::xml1;
require Grid::GPT::PackageFilelist::List;
require Grid::GPT::PackageFilelist::FileIO;
#
# data internal to the class
#
my $_count = 0;
#
# Class methods
#
sub get_count
{
$_count;
}
sub _incr_count { ++$_count }
sub _decr_count { --$_count }
### new( $caller, %args )
#
# Object Constructor
#
sub new
{
my $caller = shift;
my $caller_is_obj = ref($caller);
my $class = $caller_is_obj || $caller;
#
# bless $self and up the ref count
#
my $self = bless {}, $class;
if ( scalar(@_) == 0 )
{
$self->_incr_count();
return $self;
}
#
# handle arguments
#
my %args = (convert => 0, @_);
my ( $context,
$contextData,
$masterFilelist,
$convert,
$pkgname,
$flavor,
$pkgtype,
$pkgnode,
) = (
$args{'context'},
$args{'contextData'},
$args{'masterFilelist'},
$args{'convert'},
$args{'pkgname'},
$args{'flavor'},
$args{'pkgtype'},
$args{'pkgnode'},
);
my $noAbsentError = $args{'noAbsentError'};
$self->{'noAbsentError'} = $noAbsentError;
#
# verify we have all of our needed arguments
#
if (!defined($context))
{
die("ERROR: read context is required but undefined");
}
if (!defined($contextData))
{
die("ERROR: read data is required but undefined");
}
$self->{'context'} = $context;
$self->{'contextData'} = $contextData;
if ( defined($pkgnode) )
{
$self->setPkgInfo( pkgnode => $pkgnode );
}
$self->parseContextData( );
#
# store convert flag in object
#
if ($convert)
{
$self->set( convert => 1 );
}
else
{
$self->set( convert => 0 );
}
#
# create our main filelist packageList object
#
my $packageList = new Grid::GPT::PackageFilelist::List(
pkginfo => $self->getPkgInfo(),
masterFilelist => $masterFilelist,
relativePath => $self->{'relativePath'},
);
if (!defined($packageList))
{
die("ERROR: could not create list object for PackageFilelist");
}
$self->{'packageList'} = $packageList;
#
# increment our object count
#
$self->_incr_count();
return $self;
}
sub DESTROY
{
$_[0]->_decr_count();
}
sub AUTOLOAD
{
}
END { }
#
# Standard methods
#
sub setMasterFilelist
{
my $self = shift;
my(%args) = @_;
my $masterFilelist = $args{'mf'};
$self->{'packageList'}->setMasterFilelist( mf => $args{'mf'} );
}
sub addToMasterFilelist
{
my $self = shift;
my $packageList = $self->{'packageList'};
if (defined($packageList))
{
$packageList->addToMasterFilelist();
}
}
sub getPkgInfo
{
my $self = shift;
my(%args) = @_;
return $self->{'pkginfo'};
}
sub setPkgInfo
{
my $self = shift;
my(%args) = @_;
if ( defined($self->{'pkginfo'}) )
{
return $self->{'pkginfo'};
}
if ( defined($args{'pkgnode'}) )
{
$self->{'pkginfo'} = $args{'pkgnode'};
return $self->{'pkginfo'};
}
return undef;
}
sub parseContextData
{
my $self = shift;
my(%args) = @_;
my $ctx = $self->{'context'};
my $data = $self->{'contextData'};
my $pd = {};
$self->{'parsedContextData'} = $pd;
if ($ctx eq "srcdir")
{
$pd->{'dir'} = $data->{'dir'};
$self->{'relativePath'} = $pd->{'dir'};
$self->isSourceFilelist(1);
}
elsif ($ctx eq "srctar")
{
$pd->{'tar'} = $data->{'tar'};
$self->{'relativePath'} = "(null)";
$self->isSourceFilelist(1);
}
elsif ($ctx eq "installdir")
{
$pd->{'dir'} = $data->{'dir'};
$self->{'relativePath'} = $pd->{'dir'};
$self->isSourceFilelist(0);
}
elsif ($ctx eq "installtar")
{
$pd->{'tar'} = $data->{'tar'};
$self->{'relativePath'} = "(null)";
$self->isSourceFilelist(0);
}
else
{
die("ERROR: unknown context type '$ctx'");
}
return 1;
}
sub conversionRequested
{
my($self, %args) = @_;
if ( $self->get("convert") )
{
return 1;
}
else
{
return 0;
}
}
sub open
{
my $self = shift;
my(%args) = @_;
#
# we use a hash for its key collision handling properties
#
my $filelistTypes = {};
my $saveFilelistTypes = {};
$self->{'saveFilelistTypes'} = $saveFilelistTypes;
my $xml1 = $self->getXml1( );
my $flat1 = $self->getFlat1( );
$filelistTypes->{$xml1->getType()} = $xml1;
$filelistTypes->{$flat1->getType()} = $flat1;
#
# store our triaged objects in the $typeCodes hash
#
my $typeCodes = {};
$typeCodes->{'absent'} = {};
$typeCodes->{'success'} = {};
$typeCodes->{'error'} = {};
#
# for each of the filelist types, we'll attempt to open them. based on the return code
# given by the type, it is triaged into one of three major groups.
#
my $retval;
for my $t (values %$filelistTypes)
{
$retval = $t->open();
if ($retval eq 0)
{
#
# filelist of this type didn't exist
#
$typeCodes->{'absent'}->{$t->getType()} = $t;
}
elsif ($retval eq -1)
{
#
# some error occurred when opening the filelist
#
$typeCodes->{'error'}->{$t->getType()} = $t;
}
elsif ($retval eq 1)
{
#
# success!
#
$typeCodes->{'success'}->{$t->getType()} = $t;
}
}
#
# we've completed (attempting to) open all of our filelist types. let's review and
# act accordingly.
#
if ( !$self->{'noAbsentError'} and ( scalar(keys %{$typeCodes->{'success'}}) eq 0 ) )
{
#
# could not find at least one suitable filelist type
#
return 0;
}
#
# add the successful filelist types to our internal list
#
if ( scalar(keys %{$typeCodes->{'success'}}) > 0 )
{
for my $t (values %{$typeCodes->{'success'}})
{
$saveFilelistTypes->{$t->getType()} = $t;
}
}
#
# if conversion is needed then we add the absent filelist types to our internal list
#
if ( ( scalar(keys %{$typeCodes->{'absent'}}) > 0 ) and $self->conversionRequested() )
{
for my $t (values %{$typeCodes->{'absent'}})
{
$saveFilelistTypes->{$t->getType()} = $t;
}
}
$self->addPackageMetadataFiles( );
# #
# # consider checkpointing the filelist types at this point
# #
#
# $self->save();
return 1;
}
### addPackageMetadataFiles( )
#
# add the package metadata files to our filelist
#
sub addPackageMetadataFiles
{
my $self = shift;
my(%args) = @_;
if ( $self->isSourceFilelist() )
{
return 0;
}
if ( scalar(keys %{$self->{'saveFilelistTypes'}}) > 0 )
{
for my $t (values %{$self->{'saveFilelistTypes'}})
{
$t->addMetadataFiles();
}
}
#
# make sure we add our own filelist when we build our filelist entries
#
$self->{'packageList'}->addMetadataFile( file => $self->getMetadataPath() );
$self->{'packageList'}->triageMetadataFiles();
return 1;
}
sub getMetadataPath
{
my $self = shift;
my(%args) = @_;
if (!defined($self->getPkgInfo()))
{
return undef;
}
my $str = "share/globus/packages/"
. $self->getPkgInfo()->pkgname()
. "/pkg_data_"
. $self->getPkgInfo()->flavor()
. "_"
. $self->getPkgInfo()->pkgtype()
. ".gpt";
return $str;
}
sub getXml1
{
my $self = shift;
my(%args) = @_;
my $relativePath = $self->getRelativePath();
#
# return ref to xml1 if it's already created
#
my $xml1 = $self->{'xml1'};
if (defined($xml1))
{
return $xml1;
}
#
# create xml1
#
$xml1 = new Grid::GPT::PackageFilelist::xml1(
installdir => $self->{'installdir'},
pkginfo => $self->getPkgInfo(),
packageList => $self->{'packageList'},
relativePath => $relativePath,
isSourceFilelist => $self->isSourceFilelist(),
);
if (!defined($xml1))
{
die("ERROR: filelist object is undefined");
return undef;
}
#
# get xml1's filelist names
#
my $baseName = $xml1->getFilelist( type => "read" );
#
# create the file accessor factory
#
my $fileio = new Grid::GPT::PackageFilelist::FileIO();
#
# build the file accessor object for reads and writes
# pass the objects into the main filelist type object
#
my $readAc = $self->fetchAccessor( fileio => $fileio, baseName => $baseName );
if ( !defined($readAc) )
{
die("ERROR: file accessor for filelist is undefined");
}
$xml1->setAc( read => $readAc, write => $readAc );
$self->{'xml1'} = $xml1;
return $xml1;
}
sub getRelativePath
{
my $self = shift;
my(%args) = @_;
return $self->{'relativePath'};
}
sub fetchAccessor
{
my $self = shift;
my(%args) = @_;
my $ctx = $self->{'context'};
my $pd = $self->{'parsedContextData'};
my $fileio = $args{'fileio'};
my $file = $args{'baseName'};
my($path, $tar);
$fileio->reset();
if ($ctx eq "srcdir")
{
$path = $pd->{'dir'} . "/" . $file;
$fileio->setAc( type => "file", typeData => { path => $path } );
}
elsif ($ctx eq "srctar")
{
$path = $file;
$tar = $pd->{'tar'};
$fileio->setAc( type => "tar", typeData => { path => $path, tar => $tar } );
}
elsif ($ctx eq "installdir")
{
$path = $pd->{'dir'} . "/" . $file;
$fileio->setAc( type => "file", typeData => { path => $path } );
}
elsif ($ctx eq "installtar")
{
$path = $file;
$tar = $pd->{'tar'};
$fileio->setAc( type => "tar", typeData => { path => $path, tar => $tar } );
}
else
{
die("ERROR: unknown context type '$ctx'");
}
my $ac = $fileio->getAccessor();
return $ac;
}
sub getFlat1
{
my $self = shift;
my(%args) = @_;
my $relativePath = $self->getRelativePath();
#
# return ref to flat1 if it's already created
#
my $flat1 = $self->{'flat1'};
if (defined($flat1))
{
return $flat1;
}
#
# create flat1
#
$flat1 = new Grid::GPT::PackageFilelist::flat1(
installdir => $self->{'installdir'},
pkginfo => $self->getPkgInfo(),
packageList => $self->{'packageList'},
relativePath => $relativePath,
isSourceFilelist => $self->isSourceFilelist(),
);
if (!defined($flat1))
{
die("ERROR: filelist object is undefined");
return undef;
}
#
# get flat1's filelist name
#
my $baseName = $flat1->getFilelist( type => "read" );
#
# create the file accessor factory
#
my $fileio = new Grid::GPT::PackageFilelist::FileIO();
#
# build the file accessor object for reads and writes
# pass the objects into the main filelist type object
#
my $readAc = $self->fetchAccessor( fileio => $fileio, baseName => $baseName );
if ( !defined($readAc) )
{
die("ERROR: file accessor for filelist is undefined");
}
$flat1->setAc( read => $readAc, write => $readAc );
$self->{'flat1'} = $flat1;
return $flat1;
}
sub save
{
my $self = shift;
my $list;
if ( scalar(keys %{$self->{'saveFilelistTypes'}}) > 0 )
{
$self->sort();
$list = $self->{'packageList'}->getFilelist();
for my $t (values %{$self->{'saveFilelistTypes'}})
{
$t->setFilelist( list => $list );
$t->save();
}
}
}
sub stamp
{
my($self, %args) = @_;
my $type = $args{'type'};
return $self->{'packageList'}->stamp( type => $type );
}
sub sort
{
my($self, %args) = @_;
return $self->{'packageList'}->sort( );
}
sub addFilePath
{
my($self, %args) = @_;
my($path) = ($args{'path'});
return $self->{'packageList'}->addFilePath( path => $path );
}
sub removeFilePath
{
my($self, %args) = @_;
my($path) = ($args{'path'});
return $self->{'packageList'}->removeFilePath( path => $path );
}
sub isEmpty
{
my $self = shift;
my(%args) = @_;
return $self->{'packageList'}->isEmpty();
}
sub getFilelistFiles
{
my $self = shift;
my(%args) = @_;
return $self->{'packageList'}->getFilelistFiles();
}
sub getFilelistObjects
{
my $self = shift;
my(%args) = @_;
return $self->{'packageList'}->getFilelistObjects();
}
sub copyFilelist
{
my $self = shift;
my($src) = @_;
my $list = $src->getFilelistObjects();
$self->{'packageList'}->setFilelist( list => $list );
$self->addPackageMetadataFiles( );
$self->sort();
}
sub addFilelist
{
my $self = shift;
my($src) = @_;
my $list = $src->getFilelistObjects();
$self->{'packageList'}->addFilelist( list => $list );
$self->sort();
}
sub isSourceFilelist
{
my $self = shift;
my($val) = @_;
if (defined($val))
{
if ($val)
{
$self->{'isSourceFilelist'} = 1;
}
else
{
$self->{'isSourceFilelist'} = 0;
}
}
if ($self->{'isSourceFilelist'})
{
return 1;
}
else
{
return 0;
}
}
1; # Ensure that the module can be successfully use'd
__END__
=head1 NAME
Grid::GPT::PackageFilelist - Perl extension for reading packaging filelists
=head1 SYNOPSIS
use Grid::GPT::PackageFilelist;
my $fileset = new Grid::GPT::PackageFilelist(
context => $context,
contextData => $contextData,
pkgnode => $object,
masterFilelist => $me->masterFilelist,
convert => $convert,
);
#
# Standard filelist open and save.
#
$filelist->open();
$filelist->save();
#
# Copy the logical filelist data from $src to $dest.
#
$dest->copyFilelist( $src );
=head1 DESCRIPTION
I<Grid::GPT::PackageFilelist> is used to open and save filelists of
different formats. As part of its functioning, it applies general rules
to how each of the filelist types are used. None of these filelist types
should be used directly. Only the PackageFilelist object should use the
methods on these internal objects.
=head1 Contexts
This module recognizes four different contexts in which filelists exist. It
applies different rules to each of these contexts, and policies for if/when
saving should happen.
=head2 srcdir
This represents the context where a source package resides within a certain
directory on disk.
=head2 Context Data
The data required for this context is the directory in which the package
resides.
$contextData = { dir => $dir };
=head2 srctar
This represents the context where a source package resides within a tar
object.
=head2 Context Data
The data required for this context is the tar object.
$contextData = { tar => $tar };
=head2 installdir
The most common context is 'installdir', given that this context is used to
read in filelists from installed packages within a GLOBUS_LOCATION on disk.
=head2 Context Data
The data required for this context is the directory in which the installation
resides.
$contextData = { dir => $dir };
=head2 installtar
This represents the context where an entire installation resides within a tar
object. In this context we are typically called from the PkgDist module.
=head2 Context Data
The data required for this context is the tar object.
$contextData = { tar => $tar };
=head1 AUTHOR
Chase Phillips <cphillip@ncsa.uiuc.edu>
=head1 SEE ALSO
perl(1) Grid::GPT::PackageFilelist::flat1(1) Grid::GPT::PackageFilelist::xml1(1) Grid::GPT::PackageFile(1) Grid::GPT::GPTFilelist(1)
=cut
|