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 in Perl?
|
2
|
|||||
|
|
|
There is no equivalent to C header files in Perl. To declare and define global constants, you can use the define pragma. I have no experience with this module although the interface seems sensible. On the other hand, you can write a module where you define constants and import them into your module using
You can then use this module as follows:
If you are OK with using fully qualified variable names (e.g. Also, make sure variables you export are not modifiable elsewhere (see the caution in Of course, you could also define constants using constant.pm. It is faster to use such constants, but they are awkward if you need to interpolate them in a string. |
||||||||||||||||||
|
|
|
This sounds like configuration settings, which would be better put in a config file that you parse with one of the various CPAN modules, for instance Config::Any. Configuration is data, which IMO shouldn't be in your code. |
||
|
|
|
|
We usually do this with a module name Constants. Something like:
Then, to use it:
If you didn't want to reference the package all the time, you could use Exporter and bring in all the symbols you want. |
||||||||||||||||||
|
|
|
One way would be to write them as a perl module, that you can subsequently include with "require" or "use". You'd write your file like this -- give it a .pm extension (e.g., myFabulousPackage.pm)
Then in your perl script, this would include the file and then reference $otherSetting:
This is just a very simple view of what you can do with a package/module, but for what you need, this might be the simplest way to implement it. Similarly, you can put sub's in the package as well, and reference them in a similar way. |
||||||||||||||
|
