Tagged Questions
The perl-module tag has no wiki summary.
32
votes
1answer
14k views
How is Perl's @INC constructed? (aka What are all the ways of affecting where Perl modules are searched for?)
What are all the ways of affecting where Perl modules are searched for?
or, How is Perl's @INC constructed?
As we know, Perl uses @INC array containing directory names to determine where to search ...
17
votes
11answers
1k views
Which framework should I use to write modules?
What's the best framework for writing modules -- ExtUtils::MakeMaker (h2xs) or Module::Build?
14
votes
3answers
2k views
What's the best way to discover all subroutines a Perl module has?
What's the best way to programatically discover all of the subroutines a perl module has? This could be a module, a class (no @EXPORT), or anything in-between.
Edit: All of the methods below look ...
13
votes
7answers
884 views
What does 1; mean in Perl?
I have come across a few Perl Modules that for example look similar to the following code:
package MyPackage;
use strict;
use warnings;
use constant PERL510 => ( $] >= 5.0100 );
require ...
11
votes
1answer
258 views
Is there any Perl module that can keep me from adding `or die` to anything that can fail?
I'm writing code that runs all sorts of external commands as well as various filesystem commands that can fail.
Is there any module that can save me the trouble of adding or die to anything that can ...
11
votes
8answers
6k views
How do I make private functions in a Perl module?
I am working on a little Perl module and for some reason I had the test driver script that was using my new module call one of the functions that I thought would be private, and it was successful. I ...
10
votes
4answers
1k views
How do I get CGI.pm to output HTML5 instead of XHTML 1.0?
I'm having some trouble getting CGI.pm to output to HTML5 instead of XHTML 1.0 or HTML 4.01. When I try "HTML5" or "HTML 5" as the -dtd argument in start_html() I get a document in HTML 4. I've also ...
8
votes
2answers
141 views
Perl XS and Inline::C
What's the difference between using XS and the Inline::C module? This was mentioned by someone in this question and has made me curious.
8
votes
4answers
272 views
How should I organize many Perl modules?
Consider that I have 100 Perl modules in 12 directories. But, looking into the main Perl script, it looks like 100 use p1 ; use p2 ; etc. What is the to best way to solve this issue?
7
votes
6answers
225 views
Is there a way to replace an if-elsif-else in Perl with something better?
I want to build a bunch of Perl subrotines that all have the same template if elsif elsif else that takes a decision based on a factor variable. Here's an example of subroutine template:
sub get_age{
...
7
votes
2answers
143 views
How does this call to a subroutine in a Perl module work?
I recently saw some Perl code that confused me. I took out all of the extra parts to see how it was working, but I still don't understand why it works.
Basically, I created this dummy "module" ...
7
votes
6answers
313 views
OOP question: Calling a subroutine?
I have been thrust into taking over some code but I may be out of my element in figuring this one out. If someone could give me a hint I'd appreciate it. I'm enjoying learning this code but every now ...
7
votes
3answers
2k views
How to add header, footer with images using PDF::API2::Lite?
Is it possible to add header(with text and one image) and footer (with page number) with images. I wrote below code to create a PDF document which shows png images.
If this can be done easily with ...
7
votes
2answers
505 views
How can I install a CPAN module that is in the latest perl, without installing the new perl?
I'd like to install a Perl module (in this case, FindBin), but since it is included in the perl5.10.1 distribution, cpan wants to install perl5.10 for me. Is there any way of installing just the ...
7
votes
4answers
678 views
Should a Perl constructor return an undef or a “invalid” object?
Question:
What is considered to be "Best practice" - and why - of handling errors in a constructor?.
"Best Practice" can be a quote from Schwartz, or 50% of CPAN modules use it, etc...; but I'm ...
7
votes
18answers
2k views
Useful Perl modules
What is the most important module you pull off of CPAN to add to a stock Perl install?
One module only per response, please.
Please explain why you think the module is best-of-breed
6
votes
2answers
83 views
Perl Module usage
I am trying to create my own Perl module in /usr/local/lib/perl
I have the environmental variable PERL5LIB set:
$ env | grep PERL
PERL5LIB=/usr/local/lib/perl
If I create a module: ...
6
votes
3answers
129 views
Perl multi-dimensional table with headers
I'm trying to implement a multi-dimensional table with headers.
Here's an example for 2D:
< dimension1 >
/\ 'column0' 'column1'
dimension0 'row0' ...
6
votes
1answer
109 views
How long has a module been in Perl core?
The module I'm actually interested in is Sys::Hostname, but as a more general question, how can I tell how long a particular module has been a core module? I'm curious about this with regards to the ...
6
votes
1answer
105 views
What does the `X` suffix mean in namespaces?
There are Perl module names like Moose and MooseX or DBI and DBIx or Catalyst and CatalystX or Mojo and MojoX or PPI and PPIx, etc.
What does the X suffix mean there?
6
votes
3answers
150 views
Stopping Perl XS modules from silently falling back to pure-perl
It seems some (many?) modules on CPAN are partly implemented in C using XS, and can fall back to a pure-perl implementation if necessary. While this is smart, it can obviously hurt performance, and I ...
6
votes
4answers
148 views
Is it proper to get and especially set Perl module's global variables directly?
I was wondering what the best practice in Perl is regarding getting - or, more importantly, setting - a global variable of some module by directly accessing $Module::varName in case the module didn't ...
6
votes
6answers
430 views
How do I install a module and its dependencies in ActivePerl on Windows?
I want to send emails using gmail's smtp servers and perl. I am trying to install Email::Send::Gmail, but it is not clear to me what are the steps to install it. It seems that it depends on other ...
6
votes
4answers
2k views
In Perl, how do I put multiple packages in a single .pm file?
I'm pretty sure that I read somewhere that it's possible, but there are a few gotchas that you need to be aware of. Unfortunately, I can't find the tutorial or page that described what you need to do. ...
5
votes
1answer
53 views
Include constant in pod
Is it possible to include the contents of a constant in the POD for a module. Example:
use constant DEFAULT_URL => "http://www.example.com";
...
=item B<setUrl>
Change the URL to query. ...
5
votes
1answer
124 views
Where to install gpsbabel so it works with GPS::Babel perl module?
I'm sad that I have to ask a question this simple but where should gpsbabel be installed in order to work with the GPS::Babel perl module? I can't seem to figure out the appropriate path and am hoping ...
5
votes
9answers
391 views
Perl 5 - Iterator
I have implemented a simple iterator in perl. I normally work with C#, and use iterators and functional programming quite frequently. So I thought it would be simple to get some basics working in ...
5
votes
2answers
53 views
Different architectures in the same or different directory trees?
At $work, we maintain a set of Perl modules at a central location for easy inclusion via PERL5LIB. As there is a re-installation ahead and we need to provide the modules for both 32 and 64 bit ...
5
votes
3answers
206 views
Perl Programming and Distribution
I'm very new to Perl programming. I've just finished reading the Llama book. Up until now I have scripted in Bash, but I'm wanting to try out Perl and it's benefits over Bash scripting.
I'm creating ...
5
votes
4answers
227 views
Is there a better way to pass by reference in Perl?
I am doing pass-by-reference like this:
use strict;
use warnings;
sub repl {
local *line = \$_[0]; our $line;
$line = "new value";
}
sub doRepl {
my ($replFunc) = @_;
my $foo = "old ...
5
votes
4answers
117 views
Need good resources that guide through the process of creating Perl Modules/Packages
I work as an ETL developer and I have been meaning to create a Perl module where I can put a lot of the subroutines. I would also like, if it is possible, to have the module handle all the logging ...
5
votes
4answers
318 views
What's a good way to refactor a monster Perl module into submodules?
I have a Perl module for a project. I have maybe a dozen programs hanging off it and a lot of it is garbage. I hadn't spent much close personal time with DBI before, so that part is fixable, but the ...
5
votes
7answers
6k views
How can I check if a Perl module is installed on my system from the command line?
I tried to check if XML::Simple is installed in my system or not.
perl -e 'while (<@INC>) { while (<$_/*.pm>) { print "$_\n"; } }'
The above one-liner was used for listing all modules ...
5
votes
8answers
2k views
How can I update Perl on Windows without losing modules?
At work I'm using Perl 5.8.0 on Windows.
When I first put Perl on, I went to CPAN, downloaded all the sources, made a few changes (in the .MAK file? to support threads, or things like that), and did ...
4
votes
1answer
73 views
What does perl do when two versions of a module are installed?
I don't have root access on a remote box I'm working with, so I'm using a combination of cpanm and local::lib as described here to install CPAN modules to my local directory on the box. Using cpanm, I ...
4
votes
3answers
121 views
strawberry perl: no File::Tail.pm. CPAN failed to install the module
I'm using strawberry perl to tail a file using use File::Tail.
I got the error message of the following:
Can't locate File/Tail.pm in @INC (@INC contains: c:\strawberry\perl\lib ...
4
votes
2answers
128 views
Perl module loading - Safeguarding against: perhaps you forgot to load “Bla”?
When you run perl -e "Bla->new", you get this well-known error:
Can't locate object method "new" via package "Bla"
(perhaps you forgot to load "Bla"?)
Happened in a Perl server process the other ...
4
votes
2answers
104 views
Is there a way to enable/disable Smart::Comments via a command line switch in my Perl program?
I'd like to enable/disable the comments within my Perl program that make use of the module Smart::Comments. I've toyed with the idea of doing this by providing a --verbose switch as part of my list of ...
4
votes
1answer
135 views
Perl Cygwin fun. Module is loaded, but not being found by the program
Okay a few rules:
No, I cannot install Strawberry Perl on this system. I have to use Cygwin.
This is Perl 5.8.7. I cannot update it.
This is not my system. This is a customer's system, and I cannot ...
4
votes
2answers
79 views
Creating Packages With Perl
I seem to be having a lot of trouble with making my first, simple Package (actually it is my first package period). I am doing everything I should be doing (I think) and it still isn't working. Here ...
4
votes
2answers
48 views
perlmod question
In the example in perlmod/Perl Modules there is a BEGIN block. I looked at some modules but none of these had a BEGIN block. Should I use such a BEGIN block when writing a module or is it dispensable?
...
4
votes
1answer
85 views
LWP is same as libwww-perl?
Sorry for my naive question.
I am using strawberry perl. Use cpan tool to install LWP, failed. Then use PPM tool. Can't find LWP in ppm, but libwww-perl. Are they the same with different name?
4
votes
1answer
288 views
How do I parse E-Mail contents
How to parse the Email into sections like, header, body, attachment, and sender and receiver?
I would like to use Perl or Perl Moose?
4
votes
2answers
186 views
Can I dynamically get a list of functions or function names from any Perl module?
I would like to dynamically get a list of either function names (as strings) or function references from any arbitrary Perl module available on my system. This would include modules that may or may ...
4
votes
1answer
138 views
Scalar::Util vs. ref function
What's the difference between the built in ref($object) and Scalar::Util blessed($object)? Is one preferred over the other?
use strict;
use warnings;
use Scalar::Util qw(blessed isvstring);
my ...
4
votes
3answers
356 views
How can I set a default value for a Perl variable?
I am completely new to Perl. I needed to use an external module HTTP::BrowserDetect. I was testing some code and tried to get the name of the OS from os_string method. So, I simply initialized the ...
4
votes
1answer
60 views
Perl application installation
I have written a small perl application for deployment on a few servers. It consists of some scripts, some modules and some data files. It will be used by multiple users. I'd like to keep all these ...
4
votes
1answer
225 views
How can I hook into Perl's use/require so I can throw an exception?
If a file is already loaded, is there anyway to hook into the use/require so I can throw an exception? In my upcoming nextgen::blacklist, I'm trying to die if certain modules are used. I'm using the ...
4
votes
4answers
218 views
Old .pl modules versus new .pm modules
I'm a beginner in Perl and I'm trying to build in my head the best ways of structuring a Perl program. I'm proficient in Python and I'm used to the python from foo import bar way of importing ...
4
votes
1answer
70 views
Is there a perl module that can start a process and return the three main I/O handles to that process?
In perl, I often need to run a child process, send some input to it, and then read its output. There are a number of modules to do this, but they all seem to require you to pass in pre-existing ...