Data::Package::File - Data::Package base class for data stored in a local file
The Data::Package::File base class provides a series of additional methods that ease the development of the Data::Package manpage classes that source their data from files on the local filesystem.
Data::Package::File extends the interface of the Data::Package manpage with a few additional methods.
my $to_load = My::Data:Class->file;
The file method can be defined by a the Data::Package::File manpage subclass,
and should return an absolute path for a file reable by the current user,
in the form of a simple scalar string.
At load-time, this value will be checked for correctness, and if the value returned is invalid, loading of the file will fail.
package My::Dist::DataSubclass; sub dist_file { return ( 'My-Dist', 'data.txt' ); }
The dist_file method is one of two that provide integration with
the File::ShareDir manpage. Instead of defining a file method, you can
instead define dist_file.
If dist_file exists, and any values are returned, those values
will be passed through to the File::ShareDir::dist_file function,
with the resulting value converted to an absolute path (if needed)
and used to provide the appropriate object to the caller.
Should return a list with two values, the name of the distribution the package is in, and the file path within the package's share directory.
package My::DataClass; # Get a file from this module sub module_file { return 'data.txt'; } # Get a file for another (loaded) module sub module_file { return ( 'My::RelatedClass', 'data.txt' ); }
The dist_file method is one of two that provide integration with
the File::ShareDir manpage. Instead of defining a file method, you can
instead define module_file.
If module_file exists, and any values are returned, those values
will be passed through to the File::ShareDir::module_file function,
with the resulting value converted to an absolute path (if needed)
and used to provide the appropriate object to the caller.
Should return a list with two values, the module to get the shared files for, and the the file path within the module's share directory.
If module_file returns a single value, the name of the class will
be automatically prepended as the module name.
Bugs should always be submitted via the CPAN bug tracker.
http://rt.cpan.org/NoAuth/ReportBug.html
For other issues, contact the maintainer
Adam Kennedy <adamk@cpan.org>
Copyright 2007 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.