Hi there,
I'm trying to develop a package DATASTORE used like this
$D = new DATASTORE 'dir', 'filename';
while($_ = $D->getline) {
[...]
}
The added benefit of using DATASTORE (in case you're wondering) is that it does some work towards automatically locating the data files I want based on some local config. I'd like the $D variable to inherit all the methods from IO::File.
package DATASTORE;
use parent 'IO::File';
sub new {
my ($class, @args) = @_;
my $filename;
[...]
$self = $class->SUPER::new($filename, 'r');
return $self if defined $self;
}
That seems to work for me. Now what I'm not sure about is how you'd adapt the code so that depending on the extension, it uses IO::File OR IO::Uncompress::Gunzip (if the extension is GZ).
Would this be something that's easy to do?
Joss
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.