How can I hook into Perl's print? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T10:29:25Z http://stackoverflow.com/feeds/question/387702 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/387702/how-can-i-hook-into-perls-print 11 How can I hook into Perl's print? Robert P 2008-12-22T23:06:07Z 2009-01-13T16:51:40Z <p>Here's a scenario. You have a large amount of legacy scripts, all using a common library. Said scripts use the 'print' statement for diagnostic output. No changes are allowed to the scripts - they range far and wide, have their approvals, and have long since left the fruitful valleys of oversight and control.</p> <p>Now a new need has arrived: logging must now be added to the library. This must be done automatically and transparently, without users of the standard library needing to change their scripts. Common library methods can simply have logging calls added to them; that's the easy part. The hard part lies in the fact that diagnostic output from these scripts were always displayed using the 'print' statement. This diagnostic output must be stored, but just as importantly, processed. </p> <p>As an example of this processing, the library should only record the printed lines that contain the words 'warning', 'error', 'notice', or 'attention'. The below Extremely Trivial and Contrived Example Code (tm) would record some of said output:</p> <pre><code>sub CheckPrintOutput { my @output = @_; # args passed to print eventually find their way here. foreach my $value (@output) { Log-&gt;log($value) if $value =~ /warning|error|notice|attention/i; } } </code></pre> <p>(I'd like to avoid such issues as 'what should actually be logged', 'print shouldn't be used for diagnostics', 'perl sucks', or 'this example has the flaws x y and z'...this is greatly simplified for brevity and clarity. )</p> <p>The basic problem comes down to capturing and processing data passed to print (or any perl builtin, along those lines of reasoning). Is it possible? Is there any way to do it cleanly? Are there any logging modules that have hooks to let you do it? Or is it something that should be avoided like the plague, and I should give up on ever capturing and processing the printed output?</p> <p>Additional: This must run cross-platform - windows and *nix alike. The process of running the scripts must remain the same, as must the output from the script.</p> <p>Additional additional: An interesting suggestion made in the comments of codelogic's answer:</p> <blockquote> <p>You can subclass <a href="http://perldoc.perl.org/IO/Handle.html" rel="nofollow">http://perldoc.perl.org/IO/Handle.html</a> and create your own file handle which will do the logging work. – Kamil Kisiel</p> </blockquote> <p>This might do it, with two caveats:</p> <p>1) I'd need a way to export this functionality to anyone who uses the common library. It would have to apply automatically to STDOUT and probably STDERR too.</p> <p>2) <a href="http://perldoc.perl.org/IO/Handle.html" rel="nofollow">the IO::Handle</a> documentation says that you can't subclass it, and my attempts so far have been fruitless. Is there anything special needed to make sublclassing IO::Handle work? The standard 'use base 'IO::Handle' and then overriding the new/print methods seem to do nothing.</p> <p>Final edit: Looks like IO::Handle is a dead end, but Tie::Handle may do it. Thanks for all the suggestions; they're all really good. I'm going to give the Tie::Handle route a try. If it causes problems I'll be back!</p> <p>Addendum: Note that after working with this a bit, I found that Tie::Handle will work, if you don't do anything tricky. If you use any of the features of IO::Handle with your tied STDOUT or STDERR, it's basically a crapshoot to get them working reliably - I could not find a way to get the autoflush method of IO::Handle to work on my tied handle. If I enabled autoflush before I tied the handle it would work. If that works for you, the Tie::Handle route may be acceptable.</p> http://stackoverflow.com/questions/387702/how-can-i-hook-into-perls-print/387767#387767 7 Answer by codelogic for How can I hook into Perl's print? codelogic 2008-12-22T23:29:46Z 2008-12-22T23:50:37Z <p>You can use Perl's <a href="http://perldoc.perl.org/functions/select.html" rel="nofollow">select</a> to redirect STDOUT.</p> <pre><code>open my $fh, "&gt;log.txt"; print "test1\n"; my $current_fh = select $fh; print "test2\n"; select $current_fh; print "test3\n"; </code></pre> <p>The file handle could be anything, even a pipe to another process that post processes your log messages.</p> <p><a href="http://search.cpan.org/~gfuji/PerlIO-Util-0.60/lib/PerlIO/tee.pm" rel="nofollow">PerlIO::tee</a> in the <a href="http://search.cpan.org/~gfuji/PerlIO-Util-0.60/" rel="nofollow">PerlIO::Util</a> module seems to allows you to 'tee' the output of a file handle to multiple destinations (e.g. log processor and STDOUT).</p> http://stackoverflow.com/questions/387702/how-can-i-hook-into-perls-print/387786#387786 0 Answer by Greg Hewgill for How can I hook into Perl's print? Greg Hewgill 2008-12-22T23:37:51Z 2008-12-22T23:37:51Z <p>You could run the script from a wrapper script that captures the original script's stdout and writes the output somewhere sensible.</p> http://stackoverflow.com/questions/387702/how-can-i-hook-into-perls-print/387962#387962 6 Answer by ysth for How can I hook into Perl's print? ysth 2008-12-23T01:57:32Z 2008-12-23T01:57:32Z <p>Lots of choices. Use select() to change the filehandle that print defaults to. Or tie STDOUT. Or reopen it. Or apply an IO layer to it.</p> http://stackoverflow.com/questions/387702/how-can-i-hook-into-perls-print/388211#388211 15 Answer by Axeman for How can I hook into Perl's print? Axeman 2008-12-23T04:57:59Z 2008-12-23T05:07:44Z <p>There are a number of built-ins that you can override (see <a href="http://perldoc.perl.org/perlsub.html#Overriding-Built-in-Functions" rel="nofollow">perlsub</a>). However, <code>print</code> is one of the built-ins that doesn't work this way. The difficulties of overriding <code>print</code> is detailed at this <a href="http://www.perlmonks.org/?node=!Overriding%20Builtin%20print" rel="nofollow">perlmonk's thread</a>.</p> <p>However, you <em>can</em> </p> <ol> <li>Create a package</li> <li>Tie a handle</li> <li>Select this handle. </li> </ol> <p>Now, a couple of people have given the basic framework, but it works out kind of like this:</p> <pre><code>package IO::Override; use base qw&lt;Tie::Handle&gt;; use Symbol qw&lt;geniosym&gt;; sub TIEHANDLE { return bless geniosym, __PACKAGE__ } sub PRINT { shift; # You can do pretty much anything you want here. # And it's printing to what was STDOUT at the start. # print $OLD_STDOUT join( '', 'NOTICE: ', @_ ); } tie *PRINTOUT, 'IO::Override'; our $OLD_STDOUT = select( *PRINTOUT ); </code></pre> <p>You can override <code>printf</code> in the same manner:</p> <pre><code>sub PRINTF { shift; # You can do pretty much anything you want here. # And it's printing to what was STDOUT at the start. # my $format = shift; print $OLD_STDOUT join( '', 'NOTICE: ', sprintf( $format, @_ )); } </code></pre> <p>See <a href="http://search.cpan.org/perldoc?Tie::Handle" rel="nofollow">Tie::Handle</a> for what all you can override of STDOUT's behavior.</p>