Tagged Questions

13
votes
6answers
9k views

How do I use constants from a Perl module?

If I define a constant in a Perl module, how do I use that constant in my main program? (Or how do I call that constant in the main program?)
9
votes
4answers
436 views

Using Constants in Perl

I am trying to define constants in Perl using the constant pragma: use constant { FOO => "bar", BAR => "foo" }; I'm running into a bit of trouble, and hoping there's a standard way of ...
9
votes
9answers
3k views

Is there any way to use a “constant” as hash key in Perl?

Is there any way to use a constant as a hash key? For example: use constant X => 1; my %x = (X => 'X'); The above code will create a hash with "X" as key and not 1 as key. Whereas, I want ...
7
votes
2answers
194 views

Why is `exists` modifying my constant?

The exists function can unexpectedly autovivify entries in hashes. What surprises me is that this behavior carries over to constants as well: use strict; use warnings; use Data::Dump 'dump'; use ...
7
votes
4answers
2k views

How can I define constants in a separate file in Perl?

I have a bunch of Perl files which take in some filename constants. I would like to define these in a separate file - something like a header file in C. What's the best/most standard way of doing this ...
6
votes
5answers
226 views

How can I reduce duplication in constants?

I have this Perl script with many defined constants of configuration files. For example: use constant { LOG_DIR => "/var/log/", LOG_FILENAME ...
5
votes
7answers
324 views

Does Perl have something similar to PHP's constant()?

I have done some digging through perldoc and the O'Reilly books but haven't found any way to do this. Am I relegated to using something like Readonly? UPDATE: I have nothing against Readonly. I ...
5
votes
5answers
2k views

How can I import constants into multiple modules in Perl?

I'm writing an app in Perl with several modules. I want to write some global constants that will be visible from everywhere, like this: #Constants.pm $h0 = 0; $scale = 20; And then use them without ...
4
votes
4answers
76 views

How can loop through perl constant

I want to do the same as below my @nucleotides = ('A', 'C', 'G', 'T'); foreach (@nucleotides) { print $_; } but using use constant NUCLEOTIDES => ['A', 'C', 'G', 'T']; How can I do that ...
4
votes
5answers
126 views

Why doesn't a subclass inherit its parent's constants?

So I was going about my Moosey business and I thought hey might be nice to use a constant in these places where I'm using numbers, to make it clear what these numbers mean or in case they change later ...
4
votes
4answers
278 views

Perl : constant & require

I have a config file (config.pl) with my constants : #!/usr/bin/perl use strict; use warnings; use Net::Domain qw(hostname hostfqdn hostdomain domainname); use constant URL => ...
4
votes
3answers
320 views

Hash Constants in Perl

I have a situation where I have an application and it maps to a directory I need to process in a zipfile. The mapping is quite simple: CWA => "Financial", PIP => "", IFA => "IFA", VDX => ...
4
votes
2answers
207 views

How does O=Deparse work, and does Perl have and fold constant arrays?

I'm wondering, does -MO=Deparse show you all of the Perl optimizations, and why doesn't this get folded in Perl 5.10? $ perl -MO=Deparse -e'[qw/foo bar baz/]->[0]' ['foo', 'bar', 'baz']->[0]; ...
4
votes
3answers
431 views

How do I access a constant in Perl whose name is contained in a variable?

I have a set of constants declared in Perl: use constant C1 => 111; use constant C2 => 222; .. use constant C9 => 999; my $which_constant = "C2"; How do I construct a Perl ...
3
votes
3answers
82 views

Perl: Is Single Evaluation on Constants Guaranteed?

Third Perl question from me in two days. Some will say I'm not researching hard enough, although I will say I'm helping keep the section active :P Either way, I'm pondering out loud in hope for an ...
3
votes
4answers
2k views

How can I create a nested hash as a constant in Perl?

I want to do, in Perl, the equivalent of the following Ruby code: class Foo MY_CONST = { 'foo' => 'bar', 'baz' => { 'innerbar' => 'bleh' }, } def some_method a = ...
3
votes
6answers
918 views

Why does Perl complain when I use a hash reference with constant.pm?

I have perl, v5.6.1 built for MSWin32-x86-multi-thread Binary build 638 provided by ActiveState. I am working on a Perl script where I have declared constants that are used later for comparison ...
2
votes
3answers
91 views

“Recursive” constants in perl

Is there some conviented way to use one constant when defining another constant in perl? The following obviously does not work use constant { MAIN_DIR => "/path/to/some/dir", PROP_DIR ...
2
votes
2answers
168 views

How can I pass a constant to a Perl subroutine?

I have got as follows: use constant ABC => ('one', 'two', 'three'); and I want to pass this constant to variations_with_repetition(\@data, $k) subroutine as @data. How should I do that?
1
vote
3answers
49 views

Defining constants for a number of scripts and modules in perl

I am facing the following problem: I am working on a perl project consisting of a number of modules and scripts. The project must run on two different machines. Throughout the project i call external ...
1
vote
2answers
221 views

How can I define constants in a Template Tookit template in a Catalyst app?

I want to use a constant in my TT template. In HTML::Mason (my previous templating engine of choice) I could do: <%once> use MyApp::Constants qw(CONSTANT); </%once> How can I do this in ...
1
vote
3answers
529 views

Can I use a Perl constant in the glob operator?

I'm parsing XML files with something like: while (<files/*.xml>) { ... } I want to use a constant to 'files', say use constant FILES_PATH => 'files'; while (<FILES_PATH/*.xml>) { ...
0
votes
1answer
72 views

How do you print exported module constants in Perl?

I want to define some constants in one package and then use them in another package, but I don't seem to be doing this right! At first shot I was getting Bareword "FAVORITE_COLOR" not allowed ...
0
votes
1answer
179 views

Config::Simple and constant assignation in perl

I am using the Config::Simple module and the constant pragma. I am parsing a configuration file and setting the values as constant. the test configuration file (test.ini) contains: ...
0
votes
1answer
150 views

perl constant definition in a dedicated package

I would like to set up a dedicated package for all common declarations to main perl program and other packages as well, without repeating these declarations in every headers. I get it wrong for sure ...