/usr/share/perl5/PerlIO/via/dynamic.pm is in libperlio-via-dynamic-perl 0.14-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | package PerlIO::via::dynamic;
use strict;
our $VERSION = '0.14';
=head1 NAME
PerlIO::via::dynamic - dynamic PerlIO layers
=head1 SYNOPSIS
open $fh, $fname;
$p = PerlIO::via::dynamic->new
(translate =>
sub { $_[1] =~ s/\$Filename[:\w\s\-\.\/\\]*\$/\$Filename: $fname\$/e},
untranslate =>
sub { $_[1] =~ s/\$Filename[:\w\s\-\.\/\\]*\$/\$Filename\$/});
$p->via ($fh);
binmode $fh, $p->via; # deprecated
=head1 DESCRIPTION
C<PerlIO::via::dynamic> is used for creating dynamic L<PerlIO>
layers. It is useful when the behavior or the layer depends on
variables. You should not use this module as via layer directly (ie
:via(dynamic)).
Use the constructor to create new layers, with two arguments:
translate and untranslate. Then use C<$p->via ($fh)> to wrap the
handle. Once <$fh> is destroyed, the temporary namespace for the IO
layer will be removed.
Note that PerlIO::via::dynamic uses the scalar fields to reference to
the object representing the dynamic namespace.
=head1 OPTIONS
=over
=item translate
A function that translate buffer upon I<write>.
=item untranslate
A function that translate buffer upon I<read>.
=item use_read
Use C<READ> instead of C<FILL> for the layer. Useful when caller
expect exact amount of data from read, and the C<untranslate> function
might return different length.
By default C<PerlIO::via::dynamic> creates line-based layer to make
C<translate> implementation easier.
=back
=cut
use Symbol qw(delete_package gensym);
use Scalar::Util qw(weaken);
use IO::Handle;
sub PUSHED {
die "this should not be via directly"
if $_[0] eq __PACKAGE__;
my $p = bless gensym(), $_[0];
if ($] == 5.010000 && ref($_[-1]) eq 'GLOB') {
# This is to workaround a core bug in perl 5.10.0, see
# http://rt.perl.org/rt3/Public/Bug/Display.html?id=54934
require Internals;
Internals::SetRefCount($_[-1], Internals::GetRefCount($_[-1])+1);
}
no strict 'refs';
# make sure the blessed glob is destroyed
# earlier than the object representing the namespace.
${*$p} = ${"$_[0]::EGO"};
return $p;
}
sub translate {
}
sub untranslate {
}
sub _FILL {
my $line = readline( $_[1] );
$_[0]->untranslate ($line) if defined $line;
$line;
}
sub READ {
my $ret = read $_[3], $_[1], $_[2];
return $ret unless $ret > 0;
$_[0]->untranslate ($_[1]);
return length ($_[1]);
}
sub WRITE {
my $buf = $_[1];
$_[0]->translate($buf);
$_[2]->autoflush (1);
(print {$_[2]} $buf) ? length ($buf) : -1;
}
sub SEEK {
seek ($_[3], $_[1], $_[2]);
}
sub new {
my ($class, %arg) = @_;
my $self = {};
my $package = 'PerlIO::via::dynamic'.substr("$self", 7, -1);
eval qq|
package $package;
our \@ISA = qw($class);
1;
| or die $@;
no strict 'refs';
for (qw/translate untranslate/) {
*{"$package\::$_"} = delete $arg{$_}
if exists $arg{$_}
}
%$self = %arg;
unless ($self->{use_read}) {
*{"$package\::FILL"} = *PerlIO::via::dynamic::_FILL;
}
bless $self, $package;
${"$package\::EGO"} = $self;
weaken ${"$package\::EGO"};
return $self;
}
sub via {
my ($self, $fh) = @_;
my $via = ':via('.ref ($_[0]).')';
unless ($fh) {
# 0.01 compatibility
$self->{nogc} = 1;
return $via;
}
binmode ($fh, $via) or die $!;
if (defined *$fh{SCALAR}) {
if (defined *$fh{ARRAY}) {
warn "handle $fh cannot hold references, namespace won't be cleaned";
$self->{nogc} = 1;
}
else {
${*$fh}[0] = $self;
}
}
else {
${*$fh} = $self;
}
}
sub DESTROY {
my ($self) = @_;
return unless UNIVERSAL::isa ($self, 'HASH');
return if $self->{nogc};
no strict 'refs';
my $ref = ref($self);
my ($leaf) = ($ref =~ /([^:]+)$/);
$leaf .= '::';
for my $sym (keys %{$ref.'::'}) {
undef ${$ref.'::'}{$sym}
if $sym;
}
delete $PerlIO::via::{$leaf};
}
=head1 AUTHORS
Chia-liang Kao E<lt>clkao@clkao.orgE<gt>
=head1 COPYRIGHT
Copyright 2004 by Chia-liang Kao E<lt>clkao@clkao.orgE<gt>.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See L<http://www.perl.com/perl/misc/Artistic.html>
=cut
1;
|