All right, here's a new version. This one has support for filtering
and unfiltering filehandles by calling functions on them, as
opposed to the object going out of scope method.
Usage below.
package Filter::Handle;
use strict;
sub import {
my $class = shift;
return if !@_;
my $caller = caller;
if ($_[0] eq "subs") {
no strict 'refs';
for my $sub (qw/Filter UnFilter/) {
*{"${caller}::$sub"} = \&{"${class}::$sub"};
}
}
}
sub Filter {
my $fh = $_[0];
tie *{ $fh }, __PACKAGE__, @_;
}
sub UnFilter {
my $fh = shift;
{ local $^W = 0; untie *{ $fh } }
}
sub TIEHANDLE {
my $class = shift;
my $fh = shift or die "Need a filehandle.";
my $output = shift || sub {
my($file, $line) = (caller(1))[1,2];
sprintf "%s:%d - %s\n", $file, $line, "@_"
};
bless { fh => $fh, output => $output }, $class;
}
sub new {
Filter(@_[1..$#_]);
bless { fh => $_[1] }, $_[0]
}
sub DESTROY {
my $self = shift;
UnFilter($self->{fh});
}
sub PRINT {
my $self = shift;
my $fh = *{ $self->{fh} }; ## thanks, chromatic :)
print $fh $self->{output}->(@_);
}
sub PRINTF {
my $self = shift;
my $fmt = shift;
@_ = ($self, sprintf $fmt, @_);
goto &PRINT; ## thanks, tilly :)
}
1;
Usage is either what we had before:
my $f = Filter::Handle->new(\*STDOUT,
sub { "Foo: @_\n" });
print "Bar";
Or the new
use Filter::Handle qw/subs/;
Filter \*STDOUT, sub { "Foo: @_\n" };
print "Bar";
UnFilter \*STDOUT;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|