Unix and Linux Discussions Tagged with dynamic |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
14 |
21,534 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
1,648 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
7,022 |
Shell Programming and Scripting |
|
|
|
5 |
5,980 |
Shell Programming and Scripting |
|
|
|
3 |
5,066 |
Shell Programming and Scripting |
|
|
|
5 |
2,522 |
Shell Programming and Scripting |
|
|
|
2 |
2,557 |
Solaris |
|
|
|
1 |
2,069 |
Shell Programming and Scripting |
|
|
|
2 |
8,771 |
HP-UX |
|
|
|
2 |
7,784 |
Web Development |
|
|
|
1 |
3,860 |
Homework & Coursework Questions |
|
|
|
3 |
3,466 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
7,052 |
Shell Programming and Scripting |
|
|
|
9 |
3,736 |
Shell Programming and Scripting |
|
|
|
5 |
7,291 |
Shell Programming and Scripting |
|
|
|
1 |
6,935 |
Shell Programming and Scripting |
|
|
|
0 |
1,346 |
Software Releases - RSS News |
|
|
|
1 |
4,584 |
Red Hat |
|
|
|
0 |
1,087 |
Software Releases - RSS News |
|
|
|
10 |
4,292 |
Shell Programming and Scripting |
|
|
|
0 |
2,794 |
Shell Programming and Scripting |
|
|
|
3 |
4,586 |
Shell Programming and Scripting |
|
|
|
5 |
3,600 |
Programming |
|
|
|
0 |
1,813 |
Oracle Updates (RSS) |
|
|
|
0 |
3,070 |
Complex Event Processing RSS News |
|
|
|
0 |
1,095 |
Software Releases - RSS News |
|
|
|
4 |
13,093 |
UNIX for Dummies Questions & Answers |
|
|
|
11 |
11,907 |
Programming |
|
|
|
0 |
958 |
Software Releases - RSS News |
|
|
|
1 |
8,119 |
Cybersecurity |
|
|
|
0 |
1,106 |
Software Releases - RSS News |
|
|
|
3 |
2,851 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
9,033 |
Shell Programming and Scripting |
|
|
|
1 |
8,561 |
HP-UX |
|
|
|
0 |
1,231 |
Software Releases - RSS News |
|
|
|
0 |
2,586 |
Oracle Updates (RSS) |
|
|
|
0 |
4,721 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,713 |
Software Releases - RSS News |
|
|
|
0 |
1,256 |
Software Releases - RSS News |
|
|
|
0 |
1,392 |
Software Releases - RSS News |
dynamic(3) User Contributed Perl Documentation dynamic(3)
NAME
PerlIO::via::dynamic - dynamic PerlIO layers
SYNOPSIS
open $fh, $fname;
$p = PerlIO::via::dynamic->new
(translate =>
sub { $_[1] =~ s/$Filename[:ws-./\]*$/$Filename: $fname$/e},
untranslate =>
sub { $_[1] =~ s/$Filename[:ws-./\]*$/$Filename$/});
$p->via ($fh);
binmode $fh, $p->via; # deprecated
DESCRIPTION
"PerlIO::via::dynamic" is used for creating dynamic 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 "$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.
OPTIONS
translate
A function that translate buffer upon write.
untranslate
A function that translate buffer upon read.
use_read
Use "READ" instead of "FILL" for the layer. Useful when caller expect exact amount of data from read, and the "untranslate" function
might return different length.
By default "PerlIO::via::dynamic" creates line-based layer to make "translate" implementation easier.
AUTHORS
Chia-liang Kao <clkao@clkao.org>
COPYRIGHT
Copyright 2004 by Chia-liang Kao <clkao@clkao.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See <http://www.perl.com/perl/misc/Artistic.html>
perl v5.18.2 2012-11-03 dynamic(3)