NAME
Slackware::Slackget::SpecialFiles::PACKAGES - An interface for the special file PACKAGES.TXT
VERSION
Version 1.0.0
SYNOPSIS
This class contain all methods for the treatment of the PACKAGES.TXT file
use Slackware::Slackget::SpecialFiles::PACKAGES;
my $pack = Slackware::Slackget::SpecialFiles::PACKAGES->new('PACKAGES.TXT','slackware');
...
WARNINGS
All classes from the Slackware::Slackget::SpecialFiles:: namespace need the followings methods :
- a contructor new()
- a method compil()
- a method get_result(), which one can be an alias on another method of the class.
Moreover, the get_result() methode need to return a hashref. Keys of this hashref are the filenames.
Classes from ths namespace represent an abstraction of the special file they can manage so informations stored in the returned hashref must have a direct link with this special file.
CONSTRUCTOR
new
Take a file, a Slackware::Slackget::Config object and an id name :
my $pack = Slackware::Slackget::SpecialFiles::PACKAGES->new('PACKAGES.TXT',$config,'slackware');
FUNCTIONS
compile
Take no argument, and compile the informations contains in the PACKAGES.TXT file into the internal data structure of slack-get.
$pack->compile ;
create_entities
This method take the whole file PACKAGES.TXT and split it into entity (one package or meta informations)
get_meta
This method parse the 10 first lines of the PACKAGES.TXT and extract globals informations. It define the 'starting-position' object tag (this information is only for coders).
$pack->get_meta();
get_result
Not yet implemented.
get_package
Return informations relative to a packages as a hashref.
my $hashref = $list->get_package($package_name) ;
get_date
return a Slackware::Slackget::Date object, which is the date of the PACKAGES.TXT
my $date = $pack->get_date ;
to_XML (deprecated)
Same as to_xml(), provided for backward compatibility.
to_xml
return the package as an XML encoded string.
$xml = $package->to_xml();
AUTHOR
DUPUIS Arnaud, <a.dupuis@infinityperl.org>
BUGS
Please report any bugs or feature requests to bug-Slackware-Slackget@rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Slackware-Slackget. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Slackware::Slackget
You can also look for information at:
Infinity Perl website
slack-get specific website
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
Thanks to Bertrand Dupuis (yes my brother) for his contribution to the documentation.
COPYRIGHT & LICENSE
Copyright 2005 DUPUIS Arnaud, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.