From a2ae6f8415ed0a8a617cec4c96ce06ccd043b190 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Tue, 20 Nov 2001 22:31:47 +0000 Subject: [PATCH] Give a simple example of writing PerlIO::Via handlers in Perl. p4raw-id: //depot/perl@13144 --- ext/PerlIO/Via/Via.pm | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/ext/PerlIO/Via/Via.pm b/ext/PerlIO/Via/Via.pm index 2c73289..38336f4 100644 --- a/ext/PerlIO/Via/Via.pm +++ b/ext/PerlIO/Via/Via.pm @@ -119,6 +119,58 @@ value of FILL or READ. =back +=head2 Example - a Hexadecimal Handle + +Given the following module, Hex.pm: + + package Hex; + + sub PUSHED + { + my ($class,$mode) = @_; + # When writing we buffer the data + my $write = ''; + return bless \$write,$class; + } + + sub FILL + { + my ($obj,$fh) = @_; + my $line = <$fh>; + return (defined $line) ? pack("H*", $line) : undef; + return undef; + } + + sub WRITE + { + my ($obj,$buf,$fh) = @_; + $$obj .= unpack("H*", $buf); + return length($buf); + } + + sub FLUSH + { + my ($obj,$fh) = @_; + print $fh $$obj or return -1; + $$obj = ''; + return 0; + } + + 1; + +the following code opens up an output handle that will convert any +output to hexadecimal dump of the output bytes: for example "A" will +be converted to "41" (on ASCII-based machines, on EBCDIC platforms +the "A" will become "c1") + + use Hex; + open(my $fh, ">:Via(Hex)", "foo.hex"); + +and the following code will read the hexdump in and convert it +on the fly back into bytes: + + open(my $fh, "<:Via(Hex)", "foo.hex"); + =cut -- 2.7.4