"Perl Idioms Explained" explained
This is the first post in a series of posts that aim to explain the workings and
reasoning behind common perl idioms. Each post will be relatively short but
hopefully informative enough to sufficiently illuminate each idiom.
Perl Idioms Explained - $|++
use strict;
use warnings;
$|++;
use Some::Module 'process_stuff';
print '.' while process_stuff();
It is not entirely uncommon to see this rather mysterious combination of
characters following the usual pragma declarations -
$|++. The most
perfunctory glance will reveal that the post-increment operator is used, and a
further look will show that said operator is working on the
$|.
Browsing through
man perlvar we see that
$| is defined like so
autoflush HANDLE EXPR
$OUTPUT_AUTOFLUSH
$|
If set to nonzero, forces a flush right away and after every write or print
on the currently selected output channel. Default is 0 (regardless of
whether the channel is really buffered by the system or not; "$|" tells you
only whether you've asked Perl explicitly to flush after each write).
STDOUT will typically be line buffered if output is to the terminal and
block buffered otherwise. Setting this variable is useful primarily when
you are outputting to a pipe or socket, such as when you are running a Perl
program under rsh and want to see the output as it's happening. This has no
effect on input buffering. See the getc entry in the perlfunc manpage for
that. (Mnemonic: when you want your pipes to be piping hot.)
So the the post-increment on the $| sets it to 1 (sidenote - its
value, magically, can only ever be 0 or 1) which will turn off buffering
for STDOUT. The implications for turning off buffering are
far reaching so if you'd like to know more about it then see Dominus'
cracking Suffering from Buffering.
For a simple demonstration of this idiom in action and the effects of output buffering
try running the following piece of code
print "printing dots with buffering\n";
select undef, undef, undef, 0.25 or print '.'
for 1 .. 10;
print "\nflush forced\n";
$|++;
print "printing dots without buffering\n";
select undef, undef, undef, 0.25 or print '.'
for 1 .. 10;
print "\nflush forced\n";
When that is run you should notice that
with buffering the dots aren't
displayed until the flush is forced with a
\n, whereas
without
buffering the dots were displayed immediately as the output wasn't being held in
an output buffer.
Summary
The $|++ idiom will turn buffering off for when we want to see
our output, and we want to see it now!
_________
broquaint
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
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.