User pjf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T17:43:07Zhttp://stackoverflow.com/feeds/user/19422http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/161872/hidden-features-of-perl/162239#16223921Answer by pjf for Hidden features of Perl?pjf2008-10-02T13:23:29Z2009-08-23T21:41:30Z<p>One of my favourite features in Perl is using the boolean <code>||</code> operator to select between a set of choices.</p>
<pre><code> $x = $a || $b;
# $x = $a, if $a is true.
# $x = $b, otherwise
</code></pre>
<p>This means one can write:</p>
<pre><code> $x = $a || $b || $c || 0;
</code></pre>
<p>to take the first true value from <code>$a</code>, <code>$b</code>, and <code>$c</code>, or a default of <code>0</code> otherwise.</p>
<p>In Perl 5.10, there's also the <code>//</code> operator, which returns the left hand side if it's defined, and the right hand side otherwise. The following selects the first <em>defined</em> value from <code>$a</code>, <code>$b</code>, <code>$c</code>, or <code>0</code> otherwise:</p>
<pre><code> $x = $a // $b // $c // 0;
</code></pre>
<p>These can also be used with their short-hand forms, which are very useful for providing defaults:</p>
<pre><code> $x ||= 0; # If $x was false, it now has a value of 0.
$x //= 0; # If $x was undefined, it now has a value of zero.
</code></pre>
<p>Cheerio,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/1036832/is-there-is-a-way-to-change-a-windows-folder-icon-using-a-perl-script/1037194#10371947Answer by pjf for Is there is a way to change a Windows folder icon using a Perl script?pjf2009-06-24T08:56:25Z2009-06-24T08:56:25Z<p>You sure can do it with Perl. Windows controls directory icons by use of a hidden system<code>Dekstop.ini</code> file in each folder. The contents looks something like this:</p>
<pre><code> [.ShellClassInfo]
IconFile=%SystemRoot%\system32\SHELL32.dll
IconIndex=41
</code></pre>
<p>On Windows XP (and I assume on other systems), icon 41 is a tree. Windows requires this file be explicitly set as a <em>system</em> file for it to work, this means we'll need to dig down into <code>Win32API::File</code> to create it:</p>
<pre><code> #!/usr/bin/perl
use strict;
use warnings;
use Win32API::File qw(createFile WriteFile fileLastError CloseHandle);
my $file = createFile(
'Desktop.ini',
{
Access => 'w', # Write access
Attributes => 'hs', # Hidden system file
Create => 'tc', # Truncate/create
}
) or die "Can't create Desktop.ini - " . fileLastError();
WriteFile(
$file,
"[.ShellClassInfo]\r\n" .
"IconFile=%SystemRoot%\\system32\\SHELL32.dll\r\n" .
"IconIndex=41\r\n",
0, [], []
) or die "Can't write Desktop.ini - " . fileLastError();
CloseHandle($file) or die "Can't close Desktop.ini - " . fileLastError();
</code></pre>
<p>If you run the code above, it should set the icon for the current directory to a tree. You may need to refresh your directory listing before explorer picks up the change.</p>
<p>Now that we have a way to change icons, we can now just walk through a whole drive and change every folder that matches our pattern. We can do this pretty easily with <code>File::Find</code>, or one of its alternatives (eg, <code>File::Find::Rule</code>, or <code>File::Next</code>):</p>
<pre><code> #!/usr/bin/perl
use strict;
use warnings;
use File::Find qw(find);
use Win32API::File qw(createFile WriteFile fileLastError CloseHandle);
my $topdir = $ARGV[0] or die "Usage: $0 path\n";
find( \&changeIcon, $topdir);
sub changeIcon {
return if not /documents$/i; # Skip non-documents folders
return if not -d; # Skip non-directories.
my $file = createFile(
"$_\\Desktop.ini",
{
Access => 'w', # Write access
Attributes => 'hs', # Hidden system file
Create => 'tc', # Truncate/create
}
) or die "Can't create Desktop.ini - " . fileLastError();
WriteFile(
$file,
"[.ShellClassInfo]\r\n" .
"IconFile=%SystemRoot%\\system32\\SHELL32.dll\r\n" .
"IconIndex=41\r\n",
0, [], []
) or die "Can't write Desktop.ini - " . fileLastError();
CloseHandle($file) or die "Can't close Desktop.ini - " . fileLastError();
}
</code></pre>
<p>Unfortunately, I've just discovered that the icon <em>only</em> gets changed if the directory currently has, or once had, an icon... There's clearly an attribute that's being set on the directory itself that causes Windows to look for a <code>Desktop.ini</code> file, but I can't for the life of me figure out what it is. As such, the above solution is incomplete; we also need to find and fix the attributes on the directory where we're adding the icon.</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/115425/how-do-i-get-a-list-of-installed-cpan-modules/118855#11885511Answer by pjf for How do I get a list of installed CPAN modules?pjf2008-09-23T02:58:02Z2009-06-03T16:18:35Z<p>This is answered in the Perl FAQ, the answer which can be quickly found with <code>perldoc -q installed</code>. In short, it comes down to using <code>ExtUtils::Installed</code> or using <code>File::Find</code>, variants of both of which have been covered previously in this thread.</p>
<p>You can also find the FAQ entry <a href="http://perldoc.perl.org/perlfaq3.html#How-do-I-find-which-modules-are-installed-on-my-system%3f" rel="nofollow">"How do I find which modules are installed on my system?"</a> in perlfaq3. You can see a list of all FAQ answers by looking in <a href="http://perldoc.perl.org/perlfaq.html" rel="nofollow">perlfaq</a></p>
http://stackoverflow.com/questions/844625/where-in-the-documentation-does-it-say-that-while-tests-readdir-for-definedness/845509#8455094Answer by pjf for Where in the documentation does it say that while tests readdir for definedness?pjf2009-05-10T15:14:53Z2009-05-10T15:14:53Z<p>You're quite right about it being undocumented. I've looked rather hard, and I can't find any reference to it being special either. It <em>is</em> special, as you've discovered, and as demonstrated by:</p>
<pre><code>$ perl -MO=Deparse \
-E'opendir(my $dir, "."); while($_ = readdir($dir)) { say; }'
BEGIN {
$^H{'feature_say'} = q(1);
$^H{'feature_state'} = q(1);
$^H{'feature_switch'} = q(1);
}
opendir my $dir, '.';
while (defined($_ = readdir $dir)) {
say $_;
}
-e syntax OK
</code></pre>
<p>Looking through the source, <code>Perl_newWHILEOP</code> in <code>op.c</code> specifically has tests for <code>readdir</code>, <code>glob</code>, <code>readline</code> and <code>each</code>... Hmm, let's do some digging, and see when <code>readdir</code> was added.</p>
<p>A bit of digging with <code>git</code> reveals that it's been that way since at least 1998, with Gurusamy Sarathy making the relevant change in commit <code>55d729e4</code>. While I haven't gone digging to see which releases that's gone into, I'd wager it would be at least 5.6.0 and above. I can't find any mention of it in the deltas.</p>
<p>It <em>might</em> be mentioned in the third edition camel book, but I haven't checked to find out.</p>
<p>I think that a patch here (or even just a note to p5p) would certainly be appreciated.</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/649039/is-there-a-perl-tutorial-for-verilog-engineers/649808#6498087Answer by pjf for Is there a Perl tutorial for Verilog engineers?pjf2009-03-16T10:01:56Z2009-03-16T10:01:56Z<p>I'm afraid I don't know anything about Verilog either, although I note there is a <a href="http://search.cpan.org/dist/Verilog-Perl" rel="nofollow">Verilog Distribution</a> on the CPAN, and it contains a lot of modules that may be relevant to your work. Doing a search on <a href="http://search.cpan.org/" rel="nofollow">search.cpan.org</a> may also provide some benefit.</p>
<p>In any case, you'll need to learn how to walk before you can run. It's excellent to have a goal when learning a new language, but the modules won't help you unless you first understand Perl's syntax and semantics.</p>
<p>If you're looking for a good book to learn from, then the already mentioned <em>Learning Perl</em> (by Stackoverflow Regular brian d foy) is excellent; grab the latest edition you can find. If you want to start learning <em>right now</em>, then I'd recommend downloading <a href="http://perltraining.com.au/" rel="nofollow">Perl Training Australia</a>'s <a href="http://perltraining.com.au/notes.html" rel="nofollow">Programming Perl course manual</a>. Both resources contain many in-depth examples, links to further information, and exercises you can try to cement your knowledge.</p>
<p>There's also a list of <a href="http://www.perlfoundation.org/perl5/index.cgi?recommended%5Fonline%5Ftutorials" rel="nofollow">recommended online tutorials</a> on the <a href="http://www.perlfoundation.org/perl5/" rel="nofollow">Perl 5 wiki</a>.</p>
<p>Disclosure: I'm co-author of Perl Training Australia's course manuals, and I admire brian d foy as one of the heroes of the Perl community. I'm also an occasional contributor to the Perl 5 wiki.</p>
<p>All the best,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/641442/what-are-some-elegant-features-or-uses-of-perl/649170#64917017Answer by pjf for What are some elegant features or uses of Perl?pjf2009-03-16T03:34:14Z2009-03-16T09:34:55Z<p>My favourite pieces of elegant Perl code aren't necessarily elegant at all. They're <em>meta-elegant</em>, and allow you to get rid of all those bad habits that many Perl developers have slipped into. It would take me hours or days to show them all in the detail they deserve, but as a short list they include:</p>
<ul>
<li><a href="http://search.cpan.org/perldoc?autobox" rel="nofollow">autobox</a>, which turns Perl's primitives into first-class objects.</li>
<li><a href="http://search.cpan.org/perldoc?autodie" rel="nofollow">autodie</a>, which causes built-ins to throw exceptions on failure (removing most needs for the <code>or die...</code> construct). See also my <a href="http://pjf.id.au/blog/index.rss?tag=autodie" rel="nofollow">autodie blog</a> and <a href="http://pjf.id.au/blog/?position=540" rel="nofollow">video</a>).</li>
<li><a href="http://moose.perl.org/" rel="nofollow">Moose</a>, which provide an elegant, extensible, and <em>correct</em> way of writing classes in Perl.</li>
<li><a href="http://search.cpan.org/perldoc?MooseX::Declare" rel="nofollow">MooseX::Declare</a>, which provides syntaxic aweseomeness when using Moose.</li>
<li><a href="http://perlcritic.com/" rel="nofollow">Perl::Critic</a>, your personal, automatic, extensible and knowledgeable code reviewer. See also <a href="http://perltraining.com.au/tips/2009-02-05.html" rel="nofollow">this Perl-tip</a>.</li>
<li><a href="http://search.cpan.org/perldoc?Devel::NYTProf" rel="nofollow">Devel::NYTProf</a>, which provides me the most detailed and usable profiling information I've seen in <em>any</em> programming language. See also <a href="http://blog.timbunce.org/2008/07/15/nytprof-v2-a-major-advance-in-perl-profilers/" rel="nofollow">Tim Bunce's Blog</a>.</li>
<li><a href="http://search.cpan.org/perldoc?PAR" rel="nofollow">PAR</a>, the Perl Archiver, for bundling distributions and even turning whole programs into stand-alone executable files. See also this <a href="http://perltraining.com.au/tips/2008-05-23.html" rel="nofollow">Perl-tip</a>.</li>
<li>Perl 5.10, which provides some stunning <a href="http://perltraining.com.au/tips/2008-02-08.html" rel="nofollow">regexp improvements</a>, <a href="http://perltraining.com.au/tips/2008-04-18.html" rel="nofollow">smart-match</a>, the <a href="http://perltraining.com.au/tips/2008-03-12.html" rel="nofollow">switch statement</a>, <a href="http://perltraining.com.au/tips/2008-03-03.html" rel="nofollow">defined-or, and state variables</a>.</li>
<li><a href="http://padre.perlide.org/" rel="nofollow">Padre</a>, the only Perl editor that integrates the best bits of the above, is cross-platform, and is completely free and open source.</li>
</ul>
<p>If you're too lazy to follow links, I recently did a <a href="http://linux.conf.au/programme/schedule/view%5Ftalk/175" rel="nofollow">talk at Linux.conf.au</a> about most of the above. If you missed it, there's a <a href="http://mirror.linux.org.au/pub/linux.conf.au/2009/Friday/175.ogg" rel="nofollow">video of it on-line</a> (ogg theora). If you're too lazy to watch videos, I'm doing a greatly expanded version of the talk as a tutorial at OSCON this year (entitled <em>doing Perl right</em>).</p>
<p>All the best,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/571654/what-modules-are-distributed-with-perl/572566#5725666Answer by pjf for What modules are distributed with Perl?pjf2009-02-21T07:00:50Z2009-02-21T07:00:50Z<p><a href="http://search.cpan.org/perldoc?Module::CoreList" rel="nofollow">Module::CoreList</a> has already been mentioned. It comes with a <a href="http://search.cpan.org/perldoc?corelist" rel="nofollow">command-line interface</a> to make things easy. It's great if you have it installed already, or have a program that needs to figure out what may not come with a particular version of Perl.</p>
<p>If you want to know what modules come with your particular version of perl, you can run <code>perldoc perlmodlib</code> on the command line for a complete list. For older or newer versions of Perl, you can just go to <a href="http://search.cpan.org/dist/perl/" rel="nofollow">Perl's page on the CPAN</a> and select the version you want (eg, 5.6.2) from the drop-down, and then navigate to the <code>perlmodlib</code> page in the documentation. (typing <code>perlmodlib</code> into your browser's text search will help).</p>
<p>If you're thinking of <em>not</em> using a module because it's not core on an older version of Perl, then you may wish to consider using <a href="http://search.cpan.org/perldoc?PAR" rel="nofollow">PAR, the Perl Archiver</a>, to bundle your extra dependencies, or even Perl itself! Perl Training Australia also has a <a href="http://perltraining.com.au/tips/2008-05-23.html" rel="nofollow">Perl Tip on using PAR</a> which covers the basics on getting started with PAR.</p>
<p>All the very best,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/557382/how-can-i-write-a-subroutine-for-dbi-updates-with-varying-number-of-arguments/558881#5588813Answer by pjf for How can I write a subroutine for DBI updates with varying number of arguments?pjf2009-02-17T21:53:22Z2009-02-18T00:09:44Z<p>If I understand the question correctly, it sounds like you're after <a href="http://search.cpan.org/perldoc?SQL::Abstract" rel="nofollow">SQL::Abstract</a>. First, we create an <code>SQL::Abstract</code> object:</p>
<pre><code>use SQL::Abstract;
my $sql = SQL::Abstract->new;
</code></pre>
<p>Now, as an example, we'll use it to insert some data into a table:</p>
<pre><code>my %record = (
FirstName => 'Buffy',
LastName => 'Summers',
Address => '1630 Revello Drive',
City => 'Sunnydale',
State => 'California',
Occupation => 'Student',
Health => 'Alive',
);
my ($stmt, @bind) = $sql->insert(’staff’,\%record);
</code></pre>
<p>This results in:</p>
<pre><code>$stmt = "INSERT INTO staff
(FirstName, LastName, Address, City,
State, Occupation, Health)
VALUES (?, ?, ?, ?, ?, ?, ?)";
@bind = ('Buffy','Summers','1630 Revello Drive',
'Sunnydale',’California','Student','Alive');
</code></pre>
<p>The nice thing about this is we can pass it directly to DBI:</p>
<pre><code> $dbh->do($stmt, undef, @bind);
</code></pre>
<p>Of course, you want to be updating records, not just inserting them. Luckily, this is also quite easy:</p>
<pre><code>my $table = 'People';
my %new_fields = (
Occupation => 'Slayer',
Health => 'Dead',
);
my %where = (
FirstName => 'Buffy',
LastName => 'Summers',
);
my ($stmt, @bind) = $sql->update($table, \%new_fields, \%where);
$dbh->do($stmt, undef, @bind);
</code></pre>
<p>This produces:</p>
<pre><code>$stmt = 'UPDATE People SET Health = ?, Occupation = ?
WHERE ( FirstName = ? AND LastName = ? )';
@bind = ('Dead', 'Slayer', 'Buffy', 'Summers');
</code></pre>
<p>If you're after more information about <code>SQL::Abstract</code>, I recommend you look at its <a href="http://search.cpan.org/perldoc?SQL::Abstract" rel="nofollow">CPAN page</a>. There's also a chapter in <a href="http://perltraining.com.au/" rel="nofollow">Perl Training Australia</a>'s <em>Database Programming with Perl</em> manual, which are freely available from our <a href="http://perltraining.com.au/notes.html" rel="nofollow">course notes page</a>.</p>
<p>All the best,</p>
<p><em>Paul</em></p>
<p>Disclaimer: I'm managing director of Perl Training Australia, and therefore think that our course notes are pretty good.</p>
http://stackoverflow.com/questions/518992/how-can-you-check-peek-stdin-for-piped-data-in-perl-without-using-select/519239#5192397Answer by pjf for How can you check (peek) STDIN for piped data in Perl? (Without using select)pjf2009-02-06T05:43:44Z2009-02-06T05:43:44Z<p>Perl comes with the <code>-t</code> file-test operator, which tells you if a particular filehandle is open to a TTY. So, you should be able to do this:</p>
<pre><code>if ( -t STDIN and not @ARGV ) {
# We're talking to a terminal, but have no command line arguments.
# Complain loudly.
}
else {
# We're either reading from a file or pipe, or we have arguments in
# @ARGV to process.
}
</code></pre>
<p>A quick test reveals this working fine on Windows with Perl 5.10.0, and Linux with Perl 5.8.8, so it should be portable across the most common Perl environments.</p>
<p>As others have mentioned, <code>select</code> would not be a reliable choice as there may be times when you're reading from a process, but that process hasn't started writing yet.</p>
<p>All the best,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/446685/how-can-i-deploy-a-perl-python-ruby-script-without-installing-an-interpreter/449470#4494705Answer by pjf for How can I deploy a Perl/Python/Ruby script without installing an interpreter?pjf2009-01-16T03:58:59Z2009-01-16T03:58:59Z<p>Using <a href="http://search.cpan.org/perldoc?PAR" rel="nofollow">PAR, the Perl Aachiver</a> has already been mentioned in other answers, and is an excellent solution. There's a short tutorial on <a href="http://perltraining.com.au/tips/2008-05-23.html" rel="nofollow">building executables using PAR</a> that was published as a <a href="http://perltraining.com.au/tips/" rel="nofollow">Perl Tip</a> last year.</p>
<p>In most cases, if you have <a href="http://search.cpan.org/perldoc?PAR::Packer" rel="nofollow">PAR::Packer</a> already installed on your build system, you can create a stand-alone executable with no external dependencies or requirements with:</p>
<pre><code>pp -o example.exe example.pl
</code></pre>
<p>In most cases PAR will do all the hard work of determining your module dependencies for you, but if it gets anything wrong there are additional command line options you can use to ensure they get included. See the <a href="http://search.cpan.org/perldoc?pp" rel="nofollow">pp documentation</a> for more details.</p>
<p>All the best,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/448657/whats-the-difference-between-an-object-and-a-class-in-perl/449447#44944713Answer by pjf for What's the difference between an object and a class in Perl?pjf2009-01-16T03:50:15Z2009-01-16T03:50:15Z<p>There are lots of "a class is a blueprint, an object is something built from that blueprint", but since you've asked for a specific example using Moose and Perl, I thought I'd provide one.</p>
<p>In this following example, we're going have a class named 'Hacker'. The class (like a blueprint) describes what hackers are (their attributes) and what they can do (their methods):</p>
<pre><code>package Hacker; # Perl 5 spells 'class' as 'package'
use Moose; # Also enables strict and warnings;
# Attributes in Moose are declared with 'has'. So a hacker
# 'has' a given_name, a surname, a login name (which they can't change)
# and a list of languages they know.
has 'given_name' => (is => 'rw', isa => 'Str');
has 'surname' => (is => 'rw', isa => 'Str');
has 'login' => (is => 'ro', isa => 'Str');
has 'languages' => (is => 'rw', isa => 'ArrayRef[Str]');
# Methods are what a hacker can *do*, and are declared in basic Moose
# with subroutine declarations.
# As a simple method, hackers can return their full name when asked.
sub full_name {
my ($self) = @_; # $self is my specific hacker.
# Attributes in Moose are automatically given 'accessor' methods, so
# it's easy to query what they are for a specific ($self) hacker.
return join(" ", $self->given_name, $self->surname);
}
# Hackers can also say hello.
sub say_hello {
my ($self) = @_;
print "Hello, my name is ", $self->full_name, "\n";
return;
}
# Hackers can say which languages they like best.
sub praise_languages {
my ($self) = @_;
my $languages = $self->languages;
print "I enjoy programming in: @$languages\n";
return;
}
1; # Perl likes files to end in a true value for historical reasons.
</code></pre>
<p>Now that we've got our Hacker <em>class</em>, we can start making Hacker <em>objects</em>:</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use autodie;
use Hacker; # Assuming the above is in Hacker.pm
# $pjf is a Hacker object
my $pjf = Hacker->new(
given_name => "Paul",
surname => "Fenwick",
login => "pjf",
languages => [ qw( Perl C JavaScript) ],
);
# So is $jarich
my $jarich = Hacker->new(
given_name => "Jacinta",
surname => "Richardson",
login => "jarich",
languages => [ qw( Perl C Haskell ) ],
);
# $pjf can introduce themselves.
$pjf->say_hello;
$pjf->praise_languages;
print "\n----\n\n";
# So can $jarich
$jarich->say_hello;
$jarich->praise_languages;
</code></pre>
<p>This results in the following output:</p>
<pre><code>Hello, my name is Paul Fenwick
I enjoy programming in: Perl C JavaScript
----
Hello, my name is Jacinta Richardson
I enjoy programming in: Perl C Haskell
</code></pre>
<p>If I want I can have as many Hacker objects as I like, but there's still only one Hacker class that describes how all of these work.</p>
<p>All the best,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/447810/how-do-i-check-the-exit-code-in-testmore/449396#4493960Answer by pjf for How do I check the exit code in Test::More?pjf2009-01-16T03:19:01Z2009-01-16T03:19:01Z<p>If you're calling your test program from Perl, then the hard (and traditional) way involves doing dark and horrid bit-shifts to <code>$?</code>. You can read about that in the <a href="http://perldoc.perl.org/functions/system.html" rel="nofollow">system function documentation</a> if you really want to see how to do it.</p>
<p>The <em>nice</em> way involves using a module which gives you a <code>system</code> style function that processes return values for you:</p>
<pre><code>use IPC::System::Simple qw(systemx EXIT_ANY);
my $exit_value = systemx( EXIT_ANY, 'mytest.t' );
</code></pre>
<p>The <code>EXIT_ANY</code> symbol allows your script to return any exit value, which we can then capture. If you just want to make sure that your scripts are passing (ie, returning a zero exit status), and halt as soon as any fail, that's <a href="http://search.cpan.org/perldoc?IPC::System::Simple" rel="nofollow">IPC::System::Simple</a>'s default behaviour:</p>
<pre><code>use IPC::System::Simple qw(systemx);
systemx( 'mytest.t' ); # Run this command successfully or die.
</code></pre>
<p>In all the above examples, you can ask for a replacement <code>system</code> command rather than <code>systemx</code> if you're happy for the possibility of the shell getting involved. See the <a href="http://search.cpan.org/perldoc?IPC::System::Simple" rel="nofollow">IPC::System::Simple</a> documentation for more details.</p>
<p>There are other modules that may allow you to easily run a command and capture its exit value. TIMTOWTDI.</p>
<p>Having said that, all the good harnesses should check return values for you, so it's only if you're writing our own testing testers that you should need to look at this yourself.</p>
<p>All the best,</p>
<p><em>Paul</em></p>
<p>Disclosure: I wrote IPC::System::Simple, and so may have some positive bias toward it.</p>
http://stackoverflow.com/questions/422837/is-there-an-andand-for-perl/422905#4229059Answer by pjf for Is there an andand for Perl?pjf2009-01-08T01:32:06Z2009-01-08T01:32:06Z<p>You can use Perl's <code>eval</code> statement to catch exceptions, including those from trying to call methods on an undefined argument:</p>
<pre><code>eval {
say $shop->ShopperDueDate->day_name();
};
</code></pre>
<p>Since <code>eval</code> returns the last statement evaluated, or <code>undef</code> on failure, you can record the day name in a variable like so:</p>
<pre><code>my $day_name = eval { $shop->ShopperDueDate->day_name(); };
</code></pre>
<p>If you actually wish to inspect the exception, you can look in the special variable <code>$@</code>. This will usually be a simple string for Perl's built-in exceptions, but may be a full exception object if the exception originates from <a href="http://search.cpan.org/perldoc?autodie" rel="nofollow">autodie</a> or other code that uses object exceptions.</p>
<pre><code>eval {
say $shop->ShopperDueDate->day_name();
};
if ($@) {
say "The error was: $@";
}
</code></pre>
<p>It's also possible to string together a sequence of commands using an <code>eval</code> block. The following will only check to see if it's a weekend provided that we haven't had any exceptions thrown when looking up <code>$day_name</code>.</p>
<pre><code>eval {
my $day_name = $shop->ShopperDueDate->day_name();
if ($day_name ~~ [ 'Saturday', 'Sunday' ] ) {
say "I like weekends";
}
};
</code></pre>
<p>You can think of <code>eval</code> as being the same as <code>try</code> from other languages; indeed, if you're using the <a href="http://search.cpan.org/perldoc?Error" rel="nofollow">Error</a> module from the CPAN then you can even spell it <code>try</code>. It's also worth noting that the block form of eval (which I've been demonstrating above) doesn't come with performance penalties, and is compiled along with the rest of your code. The string form of <code>eval</code> (which I have not shown) is a different beast entirely, and should be used sparingly, if at all.</p>
<p><code>eval</code> is technically considered to be a statement in Perl, and hence is one of the few places where you'll see a semi-colon at the end of a block. It's easy to forget these if you don't use <code>eval</code> regularly.</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/415297/is-there-a-difference-between-perls-shift-versus-assignment-from-for-subrouti/415592#41559212Answer by pjf for Is there a difference between Perl's shift versus assignment from @_ for subroutine parameters?pjf2009-01-06T05:50:39Z2009-01-06T15:44:45Z<p>At least on my systems, it seems to depend upon the version of Perl and architecture:</p>
<pre><code>#!/usr/bin/perl -w
use strict;
use warnings;
use autodie;
use Benchmark qw( cmpthese );
print "Using Perl $] under $^O\n\n";
cmpthese(
-1,
{
shifted => 'call( \&shifted )',
list_copy => 'call( \&list_copy )',
}
);
sub call {
$_[0]->(1..6); # Call our sub with six dummy args.
}
sub shifted {
my $foo = shift;
my $bar = shift;
my $baz = shift;
my $qux = shift;
my $quux = shift;
my $corge = shift;
return;
}
sub list_copy {
my ($foo, $bar, $baz, $qux, $quux, $corge) = @_;
return;
}
</code></pre>
<p>Results:</p>
<pre><code>Using Perl 5.008008 under cygwin
Rate shifted list_copy
shifted 492062/s -- -10%
list_copy 547589/s 11% --
Using Perl 5.010000 under MSWin32
Rate list_copy shifted
list_copy 416767/s -- -5%
shifted 436906/s 5% --
Using Perl 5.008008 under MSWin32
Rate shifted list_copy
shifted 456435/s -- -19%
list_copy 563106/s 23% --
Using Perl 5.008008 under linux
Rate shifted list_copy
shifted 330830/s -- -17%
list_copy 398222/s 20% --
</code></pre>
<p>So it looks like list_copy is usually 20% faster than shifting, except under Perl 5.10, where shifting is actually slightly faster!</p>
<p>Note that these were quickly derived results. Actual speed differences will be <em>bigger</em> than what's listed here, since Benchmark also counts the time taken to call and return the subroutines, which will have a moderating effect on the results. I haven't done any investigation to see if Perl is doing any special sort of optimisation. Your mileage may vary.</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/415476/how-can-i-profile-perl-regexes/415572#41557212Answer by pjf for How can I profile Perl regexes?pjf2009-01-06T05:37:38Z2009-01-06T06:41:46Z<p>Perl comes with the <a href="http://search.cpan.org/perldoc?Benchmark" rel="nofollow">Benchmark</a> module, which can take a number of code samples, and answer the question of "which one is faster?". I've got a <a href="http://perltraining.com.au/tips/" rel="nofollow">Perl Tip</a> on <a href="http://perltraining.com.au/tips/2007-07-04.html" rel="nofollow">Benchmarking Basics</a>, and while that doesn't use regexps per se, it does give a quick and useful introduction to the topic, along with further references.</p>
<p>brian d foy also has an <em>excellent</em> chapter on benchmarking in his <a href="http://www252.pair.com/comdog/mastering_perl/" rel="nofollow">Mastering Perl</a> book. He's been kind enough to put the <a href="http://www.pair.com/~comdog/mastering_perl/Chapters/06.benchmarking.html" rel="nofollow">chapter on-line as a draft</a>, which is well worth the read. I really can't recommend it enough.</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/410359/how-can-i-learn-to-write-well-structured-programs-in-perl/410538#41053820Answer by pjf for How can I learn to write well-structured programs in Perl?pjf2009-01-04T06:04:27Z2009-01-04T06:04:27Z<p>Firstly, regardless of what sort of Perl programming you're doing, you'll probably find <a href="http://search.cpan.org/perldoc?Perl::Critic" rel="nofollow">Perl::Critic</a> to be invaluable. The command-line tool is by far the most convenient for getting feedback on your code, but you there is also a <a href="http://perlcritic.com/" rel="nofollow">web interface</a> where you can upload your Perl code and receive instant, automated feedback. Note that Perl::Critic isn't going to teach you good <em>structure</em>, but it will help improve your <em>style</em> in general, and steer you away from some common mistakes.</p>
<p>To go with Perl::Critic, I'd recommend getting a copy of <a href="http://oreilly.com/catalog/9780596001735/" rel="nofollow">Perl Best Practices</a> (PBP). It contains a lot of detailed information upon which Perl::Critic was based. Even if you disagree with particular guidelines in the book, it makes you <em>think</em> about how you code, and that's very, very valuable. You don't have to shell out money for a book, but the two compliment each other very nicely, and there are lengthy discussions you'll find in PBP that you won't get from Perl::Critic.</p>
<p>If you've already worked with other OO languages and OO design, the you'll probably find <a href="http://moose.perl.org/" rel="nofollow">Moose</a> to be a comfortable transition. Moose is very stable, very well supported, and has a huge and active community (especially via IRC). Moose supersedes almost all the existing OO Perl advice out there, including my own. Object Oriented design is common for a reason; it makes sense for a lot of projects, and there's no reason <em>not</em> to use it in Perl.</p>
<p>Personally, I found a massive improvement in my own program structure when I moved to a test-driven development model. Under such a model, breaking a problem down into small, easily tested units is essential. Start with <a href="http://search.cpan.org/perldoc?Test::Tutorial" rel="nofollow">Test::Tutorial</a> if you're new to testing in Perl and then look at some other <a href="http://qa.perl.org/" rel="nofollow">testing resources</a> or <a href="http://books.perl.org/book/236" rel="nofollow">books</a> if you want to learn more. Use a tool like <a href="http://search.cpan.org/perldoc?Devel::Cover" rel="nofollow">Devel::Cover</a> or <a href="http://search.cpan.org/perldoc?Devel::NYTProf" rel="nofollow">Devel::NYTProf</a> to see what your test cases are hitting and what they're not. Having code that's hard to test is often a sign of poor structure.</p>
<p>Having said all this, the best teacher by far is to get involved with an existing Perl project with experienced contributors. See how they do things, and when you make contributions, think about their advice. If you want a real application with awesome cool value that seems to have sucked up the very best and brightest of the Perl community, then I'd recommend getting involved with <a href="http://padre.perlide.org/" rel="nofollow">Padre, the Perl editor</a>.</p>
<p>If (for whatever reason) you can't get involved with another project, then consider posting code samples to communities such as Stack Overflow, or <a href="http://perlmonks.org/" rel="nofollow">PerlMonks</a>. Better still, if you can make your code open source, then do so, and solicit feedback. All programming languages are better learnt with others who are already familiar with them, and Perl is no exception here.</p>
<p>May you do Good Magic with Perl,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/402763/how-can-i-read-a-custom-defined-pattern-from-a-file-in-perl/402951#4029514Answer by pjf for How can I read a custom defined pattern from a file in Perl?pjf2008-12-31T13:18:58Z2008-12-31T13:18:58Z<p>If you're using Perl 5.10, you can do something very similar to what you have now but with a much nicer layout by using the given/when structure:</p>
<pre><code>use 5.010;
while (<ERR_LOG>) {
chomp;
given ($_) {
when ( m{^<parameter>: (.*)}x ) { push @parameter, $1 }
when ( m{^<result>: (.*)}x ) { push @result, $1 }
when ( m{^<stderr>: (.*)}x ) { push @stderr, $1 }
default { $stderr[-1] .= "\n$_" }
}
}
</code></pre>
<p>It's worth noting that for the default case here, rather than keeping a separate $err_msg variable, I'm simply pushing onto <code>@stderr</code> when I see a <code>stderr</code> tag, and appending to the last item of the <code>@stderr</code> array if I see a continuation line. I'm adding a newline when I see continuation lines, since I assume you want them preserved.</p>
<p>Despite the above code looking quite elegant, I'm not <em>really</em> all that fond of keeping three separate arrays, since it will presumably cause you headaches if things get out of sync, and because if you want to add more fields in the future you'll end up with lots and lots of variables floating around that you'll need to keep track of. I'd suggest storing each record inside a hash, and then keeping an array of records:</p>
<pre><code>use 5.010;
my @records;
my $prev_key;
while (<ERR_LOG>) {
chomp;
given ($_) {
when ( m{^<parameter> }x ) { push(@records, {}); continue; }
when ( m{^<(\w+)>: (.*)}x ) { $records[-1]{$1} = $2; $prev_key = $1; }
default { $records[-1]{$prev_key} .= "\n$_"; }
}
}
</code></pre>
<p>Here we're pushing a new record onto the array when we see a field, adding an entry to our hash whenever we see a key/value pair, and appending to the last field we added to if we see a continuation line. The end result of <code>@records</code> looks like this:</p>
<pre><code>(
{
parameter => 'test_one_count',
result => 0,
stderr => qq{Expected "test_one_count=2" and the actual value is 0\ntest_one_count=0},
},
{
parameter => 'test_two_count',
result => 4,
stderr => qq{Expected "test_two_count=2" and the actual value is 4\ntest_two_count=4},
}
)
</code></pre>
<p>Now you can pass just a single data structure around which contains all of your records, and you can add more fields in the future (even multi-line ones) and they'll be correctly handled.</p>
<p>If you're not using Perl 5.10, then this may be a good excuse to upgrade. If not, you can translate the given/when structures into more traditional if/elsif/else structures, but they lose much of their beauty in the conversion.</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/364842/how-do-i-run-a-perl-script-from-within-a-perl-script/365212#3652126Answer by pjf for How do I run a Perl script from within a Perl script?pjf2008-12-13T13:21:28Z2008-12-13T13:27:46Z<p>The location of your current perl interpreter can be found in the special variable <code>$^X</code>. This is important if perl is not in your path, or if you have multiple perl versions available but which to make sure you're using the same one across the board.</p>
<p>When executing external commands, including other Perl programs, determining if they actually ran can be quite difficult. Inspecting <code>$?</code> can leave lasting mental scars, so I prefer to use <a href="http://search.cpan.org/perldoc?IPC::System::Simple" rel="nofollow">IPC::System::Simple</a> (available from the CPAN):</p>
<pre><code>use strict;
use warnings;
use IPC::System::Simple qw(system capture);
# Run a command, wait until it finishes, and make sure it works.
# Output from this program goes directly to STDOUT, and it can take input
# from your STDIN if required.
system($^X, "yourscript.pl", @ARGS);
# Run a command, wait until it finishes, and make sure it works.
# The output of this command is captured into $results.
my $results = capture($^X, "yourscript.pl", @ARGS);
</code></pre>
<p>In both of the above examples any arguments you wish to pass to your external program go into <code>@ARGS</code>. The shell is also avoided in both of the above examples, which gives you a small speed advantage, and avoids any unwanted interactions involving shell meta-characters. The above code also expects your second program to return a zero exit value to indicate success; if that's not the case, you can specify an additional first argument of allowable exit values:</p>
<pre><code> # Both of these commands allow an exit value of 0, 1 or 2 to be considered
# a successful execution of the command.
system( [0,1,2], $^X, "yourscript.pl", @ARGS );
# OR
capture( [0,1,2, $^X, "yourscript.pl", @ARGS );
</code></pre>
<p>If you have a long-running process and you want to process its data <em>while</em> it's being generated, then you're probably going to need a piped open, or one of the more heavyweight IPC modules from the CPAN.</p>
<p>Having said all that, any time you need to be calling another Perl program from Perl, you may wish to consider if using a module would be a better choice. Starting another program carries quite a few overheads, both in terms of start-up costs, and I/O costs for moving data between processes. It also significantly increases the difficulty of error handling. If you can turn your external program into a module, you may find it simplifies your overall design.</p>
<p>All the best,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/349094/is-mason-a-framework/351084#3510847Answer by pjf for Is Mason a framework?pjf2008-12-08T21:58:59Z2008-12-08T21:58:59Z<p>Mason is an 'M' short of being a MVC (Model-View-Controller) framework. It provides extensive rendering (View) features, which is why people think of Mason as being a templating language. However it also provides quite a few dispatch mechanisms (epsecially in the form of dhandlers), and control mechanisms (which fit naturally into autohandlers).</p>
<p>A few years ago I wrote an <a href="http://perltraining.com.au/talks/whirlwind/" rel="nofollow">on-line tutorial</a> (in Mason) to show off some of these features. It's optimised for full-screen display, and needs javascript enabled.</p>
<p>What Mason doesn't give you is a database abstraction layer, so you have to bring your own Model.</p>
<p>To the best of my knowledge amazon.com is written in Mason, along with <a href="http://masonhq.com/?MasonPoweredSites" rel="nofollow">many other sites</a>.</p>
<p>If you enjoy working with Mason, but you'd like to have a Model, more toys, and a pony, then you may consider looking at <a href="http://jifty.org/" rel="nofollow">Jifty</a> as a web application framework.</p>
http://stackoverflow.com/questions/318789/whats-the-best-way-to-open-and-read-a-file-in-perl/327489#3274894Answer by pjf for What's the best way to open and read a file in Perl?pjf2008-11-29T12:29:11Z2008-11-29T12:29:11Z<p>Having to write 'or die' everywhere drives me nuts. My preferred way to open a file looks like this:</p>
<pre><code>use autodie;
open(my $image_fh, '<', $filename);
</code></pre>
<p>While that's very little typing, there are a lot of important things to note which are going on:</p>
<ul>
<li><p>We're using the <a href="http://search.cpan.org/perldoc?autodie" rel="nofollow">autodie</a> pragma, which means that all of Perl's built-ins will throw an exception if something goes wrong. It eliminates the need for writing <code>or die ...</code> in your code, it produces friendly, human-readable error messages, and has lexical scope. It's available from the CPAN.</p></li>
<li><p>We're using the three-argument version of open. It means that even if we have a funny filename containing characters such as <code><</code>, <code>></code> or <code>|</code>, perl will still do the right thing. In my <em>Perl Security</em> tutorial at OSCON I showed a number of ways to get 2-argument open to misbehave. The notes for this tutorial are available for <a href="http://perltraining.com.au/notes.html" rel="nofollow">free download from Perl Training Australia</a>.</p></li>
<li><p>We're using a scalar filehandle. This means that we're not going to be coincidently closing someone else's filehandle of the same name, which can happen if we use package filehandles. It also means <code>strict</code> can spot typos, and that our filehandle will be cleaned up automatically if it goes out of scope.</p></li>
<li><p>We're using a <em>meaningful</em> filehandle, in this case it looks like we're going to write to an image.</p></li>
<li><p>The filehandle ends with <code>_fh</code>. If we see us using it like a regular scalar, then we know that it's probably a mistake.</p></li>
</ul>
<p>All the best,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/141641/what-constitutes-effective-perl-training-for-non-perl-developers/143608#1436089Answer by pjf for What constitutes effective Perl training for non-Perl developers?pjf2008-09-27T13:00:40Z2008-11-07T23:20:37Z<p>I own and manage <a href="http://perltraining.com.au/" rel="nofollow">Perl Training Australia</a>. I've been teaching Perl for about eight years, and computer science for over a decade. I'm have strong opinions on not only Perl, but also on teaching, and presenting in general. I've written hundreds of pages of text about Perl -- which I won't be repeating here -- so what I'm going to give you isn't advice on teaching Perl; it's meta-advice instead.</p>
<p>Firstly, if your time and budget allows, consider sending your staff member on a professional Perl training course. Dedicated courses have the advantage that they don't come with work interruptions, they don't come with workplace politics, and they <em>do</em> come with someone who's very familiar with the difficulties people have when learning Perl. Please make sure you have a trainer who knows their stuff and is an active member of the Perl community; it means they should be able to answer any question thrown at them, or direct the questioner to an appropriate reference where they can learn more. Yes, I run a Perl training business, so I'm heavily opinionated here.</p>
<p>If for whatever reason you can't go with a dedicated course, then get a book that's specifically designed to teach people how to program in Perl, and walk through that. It's easy to miss things, or to try and introduce things in the wrong order, or (heaven forbid) teach bad habits, and all of those can make your life difficult. Often the people writing books designed to teach Perl are the same people who have successful Perl training businesses. If you want to buy a book, I'd recommend the latest version of <em>Learning Perl</em>. If you want to download a book, I'd recommend grabbing the <em>Programming Perl</em> course notes from the <a href="http://perltraining.com.au/notes.html" rel="nofollow">Perl Training Australia website</a>.</p>
<p>Both of these books come with exercises, and this brings me to my last piece of meta-advice. Make sure anyone who is learning Perl <em>does the exercises</em>. It's very easy when learning any new skill to <em>think</em> you know what's going on, but discover that when putting things into practice it's harder than it looks. This is particularly the case with Perl, where programming concepts like "context" can apply, which are rare in other languages. Usually the exercises are specifically designed to teach a certain skill, or to highlight a certain pitfall; figuring these things out during learning is much easier than figuring them out on the eve of a project deadline.</p>
<p>All the very best,</p>
<p>Paul</p>
http://stackoverflow.com/questions/204467/is-there-a-perl-function-to-turn-a-string-into-a-regexp-to-use-that-string-as-pat/204943#2049431Answer by pjf for Is there a Perl function to turn a string into a regexp to use that string as pattern?pjf2008-10-15T14:31:25Z2008-10-15T14:31:25Z<blockquote>
<p>PS: in addition to the answer question
above, I welcome any feedback on Perl
usage in the above as I'm still
learning.</p>
</blockquote>
<p>The best advice I can give for Perl coding advice in general is to install <a href="http://search.cpan.org/perldoc?Perl::Critic" rel="nofollow">Perl::Critic</a> and use the <a href="http://search.cpan.org/perldoc?perlcritic" rel="nofollow">perlcritic</a> command on your code. If you can't do that, you can use the <a href="http://perlcritic.com/" rel="nofollow">on-line perl critic tool</a>. It will help if you have a copy of <a href="http://oreilly.com/catalog/9780596001735/" rel="nofollow">Perl Best Practices</a> handy, since <code>Perl::Critic</code> has already read the book and will give you references to page numbers, however even if you don't have the book around you can still find extended feedback in the <a href="http://search.cpan.org/dist/Perl-Critic/" rel="nofollow">Perl::Critic documentation</a> sections starting with <code>Perl::Critic::Policy::</code>.</p>
http://stackoverflow.com/questions/204316/why-shouldnt-i-use-universalisa/204899#2048994Answer by pjf for Why shouldn't I use UNIVERSAL::isa?pjf2008-10-15T14:21:39Z2008-10-15T14:21:39Z<p>Everyone else has told you <em>why</em> you don't want to use <code>UNIVERSAL::isa</code>, because it breaks when things overload <code>isa</code>. If they've gone to all the habit of overloading that very special method, you certainly want to respect it. Sure, you <em>could</em> do this by writing:</p>
<pre><code>if (eval { $foo->isa("thing") }) {
# Do thingish things
}
</code></pre>
<p>because <code>eval</code> guarantees to return false if it throws an exception, and the last value otherwise. But that looks <em>awful</em>, and you shouldn't need to write your code in funny ways because the language wants you to. What we really want is to write just:</p>
<pre><code>if ( $foo->isa("thing") ) {
# Do thingish things
}
</code></pre>
<p>To do that, we'd have to make sure that <code>$foo</code> is always an object. But <code>$foo</code> could be a string, a number, a reference, an undefined value, or all sorts of weird stuff. What a shame Perl can't make <em>everything</em> a first class object.</p>
<p>Oh, wait, it can...</p>
<pre><code>use autobox; # Everything is now a first class object.
use CGI; # Because I know you have it installed.
my $x = 5;
my $y = CGI->new;
print "\$x is a CGI object\n" if $x->isa('CGI'); # This isn't printed.
print "\$y is a CGI object\n" if $y->isa('CGI'); # This is!
</code></pre>
<p>You can grab <a href="http://search.cpan.org/perldoc?autobox" rel="nofollow">autobox</a> from the CPAN. You can also use it with lexical scope, so everything can be a first class object just for the files or blocks where you want to use <code>->isa()</code> without all the extra headaches. It also does a <em>lot</em> more than what I've covered in this simple example.</p>
http://stackoverflow.com/questions/131473/ewouldblock-equivalent-errno-under-windows-perl9EWOULDBLOCK equivalent errno under Windows Perlpjf2008-09-25T04:26:26Z2008-10-10T10:54:35Z
<p>G'day Stackoverflowers,</p>
<p>I'm the author of Perl's <a href="http://search.cpan.org/perldoc?autodie" rel="nofollow">autodie</a> pragma, which changes Perl's built-ins to throw exceptions on failure. It's similar to <a href="http://search.cpan.org/perldoc?Fatal" rel="nofollow">Fatal</a>, but with lexical scope, an extensible exception model, more intelligent return checking, and much, much nicer error messages. It will be replacing the <code>Fatal</code> module in future releases of Perl (provisionally 5.10.1+), but can currently be downloaded from the CPAN for Perl 5.8.0 and above.</p>
<p>The next release of <code>autodie</code> will add special handling for calls to <code>flock</code> with the <code>LOCK_NB</code> (non-blocking) option. While a failed <code>flock</code> call would normally result in an exception under <code>autodie</code>, a failed call to <code>flock</code> using <code>LOCK_NB</code> will merely return false if the returned errno (<code>$!</code>) is <code>EWOULDBLOCK</code>.</p>
<p>The reason for this is so people can continue to write code like:</p>
<pre><code>use Fcntl qw(:flock);
use autodie; # All perl built-ins now succeed or die.
open(my $fh, '<', 'some_file.txt');
my $lock = flock($fh, LOCK_EX | LOCK_NB); # Lock the file if we can.
if ($lock) {
# Opportuntistically do something with the locked file.
}
</code></pre>
<p>In the above code, a lock that fails because someone else has the file locked already (<code>EWOULDBLOCK</code>) is not considered to be a hard error, so autodying <code>flock</code> merely returns a false value. In the situation that we're working with a filesystem that doesn't support file-locks, or a network filesystem and the network just died, then autodying <code>flock</code> generates an appropriate exception when it sees that our errno is not <code>EWOULDBLOCK</code>.</p>
<p>This works just fine in my dev version on Unix-flavoured systems, but it fails horribly under Windows. It appears that while Perl under Windows supports the <code>LOCK_NB</code> option, it doesn't define <code>EWOULDBLOCK</code>. Instead, the errno returned is 33 ("Domain error") when blocking would occur.</p>
<p>Obviously I can hard-code this as a constant into <code>autodie</code>, but that's not what I want to do here, because it means that I'm screwed if the errno ever changes (or has changed). I would love to compare it to the Windows equivalent of <code>POSIX::EWOULDBLOCK</code>, but I can't for the life of me find where such a thing would be defined. If you can help, let me know.</p>
<p>Answers I specifically don't want:</p>
<ul>
<li>Suggestions to hard-code it as a constant (or worse still, leave a magic number floating about).</li>
<li>Not supporting <code>LOCK_NB</code> functionality at all under Windows.</li>
<li>Assuming that any failure from a <code>LOCK_NB</code> call to <code>flock</code> should return merely false.</li>
<li>Suggestions that I ask on p5p or <a href="http://perlmonks.org/" rel="nofollow">perlmonks</a>. I already know about them.</li>
<li>An explanation of how <code>flock</code>, or exceptions, or <code>Fatal</code> work. I already know. Intimately.</li>
</ul>
<p>Many thanks in advance,</p>
<p>Paul</p>
http://stackoverflow.com/questions/177122/how-can-i-speed-up-my-perl-program/177252#17725223Answer by pjf for How can I speed up my Perl program?pjf2008-10-07T04:43:17Z2008-10-07T04:43:17Z<p>Andy has already mentioned <a href="http://search.cpan.org/perldoc?Devel::NYTProf" rel="nofollow">Devel::NYTProf</a>. It's awesome. Really, really awesome. Use it.</p>
<p>If for some reason you can't use <code>Devel::NYTProf</code>, then you can fall back to good old <a href="http://search.cpan.org/perldoc?Devel::DProf" rel="nofollow">Devel::DProf</a>, which has come standard with Perl for a long time now. If you have <em>true</em> functions (in the mathematical sense) which take a long time to calculate (eg, Fibonacci numbers), then you may find <a href="http://search.cpan.org/perldoc?Memoize" rel="nofollow">Memoize</a> provides some speed improvement.</p>
<p>A lot of poor performance comes from inappropriate data structures and algorithms. A good course in computer science can help immensely here. If you have two ways of doing things, and would like to compare their performance, the <a href="http://search.cpan.org/perldoc?Benchmark" rel="nofollow">Benchmark</a> module can also prove useful.</p>
<p>The following <a href="http://perltraining.com.au/tips/" rel="nofollow">Perl Tips</a> may also prove useful here:</p>
<ul>
<li><a href="http://perltraining.com.au/tips/2004-12-17.html" rel="nofollow">Sorting with expensive comparisons</a></li>
<li><a href="http://perltraining.com.au/tips/2005-07-04.html" rel="nofollow">Profiling with Devel::DProf</a></li>
<li><a href="http://perltraining.com.au/tips/2007-03-13.html" rel="nofollow">Big-O notation and algorithmic complexity</a></li>
<li><a href="http://perltraining.com.au/tips/2007-06-18.html" rel="nofollow">Searching for items in a large list</a></li>
<li><a href="http://perltraining.com.au/tips/2007-07-04.html" rel="nofollow">Benchmarking basics</a></li>
<li><a href="http://perltraining.com.au/tips/2007-07-30.html" rel="nofollow">Memoizing</a></li>
</ul>
<p>Disclaimer: I wrote some of the resources above, so I may be biased towards them.</p>
http://stackoverflow.com/questions/171868/how-to-find-and-tail-the-oracle-alert-log/172936#1729363Answer by pjf for How to find and tail the Oracle alert logpjf2008-10-06T00:56:28Z2008-10-06T00:56:28Z<p>Once you've got the log open, I would consider using <a href="http://search.cpan.org/perldoc?File::Tail" rel="nofollow">File::Tail</a> or <a href="http://search.cpan.org/perldoc?File::Tail::App" rel="nofollow">File::Tail::App</a> to display it as it's being written, rather than sleeping and reading. <code>File::Tail::App</code> is particularly clever, because it will detect the file being rotated and switch, and will remember where you were up to between invocations of your program.</p>
<p>I'd also consider locking your cache file before using it. The race condition may not bother you, but having multiple people try to start your program at once could result in nasty fights over who gets to write to the cache file.</p>
<p>However both of these are nit-picks. My brief glance over your code doesn't reveal any glaring mistakes.</p>
http://stackoverflow.com/questions/172266/what-are-the-best-resources-to-start-learning-perl/172920#1729206Answer by pjf for What are the best resources to start learning Perl?pjf2008-10-06T00:40:31Z2008-10-06T00:40:31Z<p>If you're looking for on-line materials from which to learn, then the <a href="http://www.perlfoundation.org/perl5/" rel="nofollow">Perl 5 wiki</a> has a page on <a href="http://www.perlfoundation.org/perl5/index.cgi?recommended_online_tutorials" rel="nofollow">Recommended online tutorials</a> including those for beginners. I'd recommend you take a look at it.</p>
<p>More specifically, <a href="http://perltraining.com.au/" rel="nofollow">Perl Training Australia</a> has all of its <a href="http://perltraining.com.au/notes.html" rel="nofollow">course notes available for download</a> in PDF format. The <em>Programming Perl</em> manual is specifically designed for developers who want to learn Perl, and already have some experience with other languages. They're regularly updated, as they're the same books you get when you come on one of Perl Training Australia's courses.</p>
<p>I can also highly recommend <a href="http://oreilly.com/catalog/9780596520106/index.html" rel="nofollow">Learning Perl</a> and <a href="http://oreilly.com/catalog/9780596102067/" rel="nofollow">Intermediate Perl</a> as physical books. Not only are they kept up to date (the latest editions covers Perl 5.10), but they are also written by people who teach Perl for a living, and at least one of which is an active stackoverflow member. ;)</p>
<p><em>Disclaimer:</em> I'm one of the authors of Perl Training Australia's course manuals, and own half the company, so I naturally think our course notes rock..</p>
http://stackoverflow.com/questions/166653/perl-common-gotchas/169443#16944313Answer by pjf for Perl - Common gotchas?pjf2008-10-04T00:45:50Z2008-10-04T00:45:50Z<p>This is a meta-answer. A lot of nasty gotchas are caught by <a href="http://search.cpan.org/perldoc?Perl::Critic" rel="nofollow">Perl::Critic</a>, which you can install and run from the command line with the <a href="http://search.cpan.org/perldoc?perlcritic" rel="nofollow"><code>perlcritic</code></a> command, or (if you're happy to send your code across the Internet, and not be able to customise your options) via the <a href="http://perlcritic.com/" rel="nofollow">Perl::Critic website</a>.</p>
<p><code>Perl::Critic</code> also provides references to Damian Conways <em>Perl Best Practices</em> book, including page numbers. So if you're too lazy to read the whole book, <code>Perl::Critic</code> can still tell you the bits you <em>should</em> be reading.</p>
http://stackoverflow.com/questions/168530/where-are-some-good-resources-for-learning-the-new-features-of-perl-5-10/169426#16942612Answer by pjf for Where are some good resources for learning the new features of Perl 5.10?pjf2008-10-04T00:30:03Z2008-10-04T00:30:03Z<p>There's been a string of articles in <a href="http://perltraining.com.au/tips/" rel="nofollow">Perl Tips</a> about Perl 5.10:</p>
<ul>
<li><a href="http://perltraining.com.au/tips/2008-02-08.html" rel="nofollow">Regular Expressions in Perl 5.10</a></li>
<li><a href="http://perltraining.com.au/tips/2008-03-03.html" rel="nofollow">Perl 5.10: Defined-or and state</a></li>
<li><a href="http://perltraining.com.au/tips/2008-03-12.html" rel="nofollow">Switch (given and when)</a></li>
<li><a href="http://perltraining.com.au/tips/2008-03-25.html" rel="nofollow">Perl 5.10 and Hash::Util::FieldHash</a></li>
<li><a href="http://perltraining.com.au/tips/2008-04-18.html" rel="nofollow">Smart-match in Perl 5.10</a></li>
</ul>
<p>There are also my <em>What's new in Perl 5.10</em> slides on <a href="http://perltraining.com.au/tips/2008-04-18.html" rel="nofollow">Perl Training Australia's presentations page</a>, but since they were written before 5.10 was released, some things may have changed slightly. I believe that rjbs' <a href="http://www.slideshare.net/rjbs/perl-510-for-people-who-arent-totally-insane/" rel="nofollow">Perl 5.10 for people who aren't totally insane</a> now covers everything my slides used to.</p>
<p>All the best,</p>
<p><em>Paul</em></p>
<p><em>Mandatory bias disclosure: I wrote almost all of the resources mentioned in this post,</em></p>
http://stackoverflow.com/questions/165660/why-is-my-perl-regex-using-so-much-memory/165681#16568119Answer by pjf for Why is my Perl regex using so much memory?pjf2008-10-03T04:21:32Z2008-10-03T04:21:32Z<p>Just a quick sanity check, are you mentioning $&, $` or $' (sometimes called $MATCH, $PREMATCH and $POSTMATCH) anywhere in your code? If so, Perl will copy your entire string for <em>every</em> regular expression match, just in case you want to inspect those variables.</p>
<p>"In your code" in this case means indirectly, including using modules that reference these variables, or writing <code>use English</code> rather than <code>use English qw( -no_match_vars )</code>.</p>
<p>If you're not sure, you can use the <a href="http://search.cpan.org/perldoc?Devel::SawAmpersand" rel="nofollow">Devel::SawAmpersand</a> module to determine if they have been used, and <a href="http://search.cpan.org/perldoc?Devel::FindAmpersand" rel="nofollow">Devel::FindAmpersand</a> to figure out <em>where</em> they are used.</p>
<p>There may be other reasons for the increase in memory (which version of Perl are you using?), but the match variables will definitely blow your memory if they're used, and hence are a likely culprit.</p>
<p>Cheerio,</p>
<p><em>Paul</em></p>
http://stackoverflow.com/questions/1007391/using-perl-python-or-ruby-how-to-write-a-program-to-click-on-the-screen-at-s/1009497#1009497Comment by pjf on Using Perl, Python, or Ruby, how to write a program to "click" on the screen at scheduled time?pjf2009-06-18T06:51:11Z2009-06-18T06:51:11Z+1 for Win32::GuiTest. It's a great tool. I wrote a bot (App::SweeperBot, available as a compiled .exe from <a href="http://sweeperbot.org/" rel="nofollow">sweeperbot.org</a> ) that uses it to play minesweeper, so I no longer need to play it myself. ;)
Win32::GuiTest also provides facilities for screen capture, and the Win32::GUIRobot (which is built on top) provides dedicated routines for finding images on the screen.http://stackoverflow.com/questions/964426/why-doesnt-a-pipe-open-work-under-perls-taint-modeComment by pjf on Why doesn't a pipe open work under Perl's taint mode?pjf2009-06-08T13:39:42Z2009-06-08T13:39:42ZWhen saying that something "fails to work", it usually helps to describe how it fails in more details. For example, does it produce an error message, and if so, what is that message?http://stackoverflow.com/questions/914762/how-can-i-find-out-how-many-capturing-brackets-are-in-a-perl-regexp/915025#915025Comment by pjf on How can I find out how many capturing brackets are in a Perl regexp?pjf2009-05-30T02:31:35Z2009-05-30T02:31:35ZIf that matches fails, the empty list is always returned. If the match succeeds, the list will contain the single number '1' if there are no capturing parentheses.
Depending upon what you're doing, you may also find named captures useful. There's a Perl-tip on them at <a href="http://perltraining.com.au/tips/2008-02-08.html" rel="nofollow">perltraining.com.au/tips/2008-02-08.html</a>http://stackoverflow.com/questions/894802/unable-to-replace-the-word-in-a-given-folders-contents-by-sed-python-perl/894850#894850Comment by pjf on Unable to replace the word in a given folder's contents by Sed/Python/Perlpjf2009-05-22T03:26:29Z2009-05-22T03:26:29ZI'm with Alexandr here. I've never seen the Windows shell do wildcard expansion.http://stackoverflow.com/questions/835886/whats-the-shortest-perl-program-you-can-write-for-the-number-guessing-game/836447#836447Comment by pjf on What's the shortest Perl program you can write for the number guessing game?pjf2009-05-08T12:47:04Z2009-05-08T12:47:04ZYou can shave an extra character off your solution by 'use 5.010' rather than 'use 5.10.0'. ;)http://stackoverflow.com/questions/653022/how-can-i-login-to-an-ftp-site-and-remove-files-that-are-more-than-7-days-old/653052#653052Comment by pjf on How can I login to an FTP site and remove files that are more than 7 days old?pjf2009-03-17T08:30:26Z2009-03-17T08:30:26Z(edit) It does now.http://stackoverflow.com/questions/643625/where-can-i-find-the-best-documented-most-reliable-perl-examplesComment by pjf on Where can I find the best documented, most reliable Perl examples?pjf2009-03-16T04:05:48Z2009-03-16T04:05:48ZIf you think part of the core Perl documentation (which is almost anything you'd find on perldoc.perl.org) could be improved, then feel free to use the <code>perlbug</code> command (which comes with Perl) to report it. Fixing documentation is easy when we know what needs improvement.http://stackoverflow.com/questions/607014/should-i-learn-perl-or-python/607037#607037Comment by pjf on Should I learn perl or python?pjf2009-03-04T02:13:33Z2009-03-04T02:13:33ZMJD's Higher Order Perl is an excellent book on functional programming in Perl. You can buy it in dead-tree form, or even (legally!) download the PDF. More details at: <a href="http://hop.perl.plover.com/" rel="nofollow">hop.perl.plover.com</a>http://stackoverflow.com/questions/557382/how-can-i-write-a-subroutine-for-dbi-updates-with-varying-number-of-arguments/558881#558881Comment by pjf on How can I write a subroutine for DBI updates with varying number of arguments?pjf2009-02-18T00:09:59Z2009-02-18T00:09:59ZThanks for the syntax spot! This has now been corrected.http://stackoverflow.com/questions/422837/is-there-an-andand-for-perl/423406#423406Comment by pjf on Is there an andand for Perl?pjf2009-01-08T16:58:35Z2009-01-08T16:58:35ZIf desired, one can always use the autobox pragma to promote the undefined value to a first class object. Then you <i>can</i> call methods on it. ;)http://stackoverflow.com/questions/423797/how-can-i-find-the-exact-amount-of-physical-memory-on-windows-x86-32bit-using-perComment by pjf on How can I find the exact amount of physical memory on Windows x86-32bit using Perl or any other language?pjf2009-01-08T11:07:51Z2009-01-08T11:07:51ZYes. Often with memory hungry programs one wishes to use as much physical memory as possible (which improves performance), but without hitting swap (which absolutely kills it). Virtual memory is nice, but nicer to avoid for many algorithms.http://stackoverflow.com/questions/416377/how-can-i-compute-double-factorials-in-perl/416413#416413Comment by pjf on How can I compute double factorials in Perl?pjf2009-01-06T15:58:12Z2009-01-06T15:58:12ZScalar value @_[0] is better written as $_[0] in stackoverflow.com/questions/416377. Golfing is fun, but golfing with warnings turned on is even better. ;)http://stackoverflow.com/questions/411740/how-can-i-parse-dates-and-convert-time-zones-in-perl/411795#411795Comment by pjf on How can I parse dates and convert time zones in Perl?pjf2009-01-04T23:39:25Z2009-01-04T23:39:25ZEven when rolling one's own, one can <code>use POSIX qw(strftime)</code> on both Unix and Windows systems from at least Perl 5.6.0 onward. That allows the final "roll-your-own" to become the both shorter and more maintainable: <code>my $local_date = strftime "%Y%m%d %H:%M\n", localtime($time);</code>.http://stackoverflow.com/questions/401556/are-quotes-around-hash-keys-a-good-practice-in-perl/401576#401576Comment by pjf on Are quotes around hash keys a good practice in Perl?pjf2008-12-31T12:28:02Z2008-12-31T12:28:02ZNot using quotes has the added advantage that you'll never shoot yourself in the foot by accident when using double quotes and interpolating strings. <code>print "Hello $planet{"Earth"}\n"</code>; will cause you syntax errors, whereas <code>print "Hello $planet{Earth}\n";</code> will not.http://stackoverflow.com/questions/214059/how-can-i-write-a-wrapper-around-ngrep-that-highlights-matches/214782#214782Comment by pjf on How can I write a wrapper around ngrep that highlights matches?pjf2008-10-18T14:54:47Z2008-10-18T14:54:47ZNice answer!
It's worth noting this will treat $keyword as a Perl regexp, which is good if that's what you want. If we want to treat it as a literal string, then (\Q$keyword\E) in the match will do that, as will my $keyword = quotemeta(shift) or die ...