constant.pm 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. package constant;
  2. use 5.008;
  3. use strict;
  4. use warnings::register;
  5. our $VERSION = '1.33';
  6. our %declared;
  7. #=======================================================================
  8. # Some names are evil choices.
  9. my %keywords = map +($_, 1), qw{ BEGIN INIT CHECK END DESTROY AUTOLOAD };
  10. $keywords{UNITCHECK}++ if $] > 5.009;
  11. my %forced_into_main = map +($_, 1),
  12. qw{ STDIN STDOUT STDERR ARGV ARGVOUT ENV INC SIG };
  13. my %forbidden = (%keywords, %forced_into_main);
  14. my $normal_constant_name = qr/^_?[^\W_0-9]\w*\z/;
  15. my $tolerable = qr/^[A-Za-z_]\w*\z/;
  16. my $boolean = qr/^[01]?\z/;
  17. BEGIN {
  18. # We'd like to do use constant _CAN_PCS => $] > 5.009002
  19. # but that's a bit tricky before we load the constant module :-)
  20. # By doing this, we save several run time checks for *every* call
  21. # to import.
  22. my $const = $] > 5.009002;
  23. my $downgrade = $] < 5.015004; # && $] >= 5.008
  24. my $constarray = exists &_make_const;
  25. if ($const) {
  26. Internals::SvREADONLY($const, 1);
  27. Internals::SvREADONLY($downgrade, 1);
  28. $constant::{_CAN_PCS} = \$const;
  29. $constant::{_DOWNGRADE} = \$downgrade;
  30. $constant::{_CAN_PCS_FOR_ARRAY} = \$constarray;
  31. }
  32. else {
  33. no strict 'refs';
  34. *{"_CAN_PCS"} = sub () {$const};
  35. *{"_DOWNGRADE"} = sub () { $downgrade };
  36. *{"_CAN_PCS_FOR_ARRAY"} = sub () { $constarray };
  37. }
  38. }
  39. #=======================================================================
  40. # import() - import symbols into user's namespace
  41. #
  42. # What we actually do is define a function in the caller's namespace
  43. # which returns the value. The function we create will normally
  44. # be inlined as a constant, thereby avoiding further sub calling
  45. # overhead.
  46. #=======================================================================
  47. sub import {
  48. my $class = shift;
  49. return unless @_; # Ignore 'use constant;'
  50. my $constants;
  51. my $multiple = ref $_[0];
  52. my $caller = caller;
  53. my $flush_mro;
  54. my $symtab;
  55. if (_CAN_PCS) {
  56. no strict 'refs';
  57. $symtab = \%{$caller . '::'};
  58. };
  59. if ( $multiple ) {
  60. if (ref $_[0] ne 'HASH') {
  61. require Carp;
  62. Carp::croak("Invalid reference type '".ref(shift)."' not 'HASH'");
  63. }
  64. $constants = shift;
  65. } else {
  66. unless (defined $_[0]) {
  67. require Carp;
  68. Carp::croak("Can't use undef as constant name");
  69. }
  70. $constants->{+shift} = undef;
  71. }
  72. foreach my $name ( keys %$constants ) {
  73. my $pkg;
  74. my $symtab = $symtab;
  75. my $orig_name = $name;
  76. if ($name =~ s/(.*)(?:::|')(?=.)//s) {
  77. $pkg = $1;
  78. if (_CAN_PCS && $pkg ne $caller) {
  79. no strict 'refs';
  80. $symtab = \%{$pkg . '::'};
  81. }
  82. }
  83. else {
  84. $pkg = $caller;
  85. }
  86. # Normal constant name
  87. if ($name =~ $normal_constant_name and !$forbidden{$name}) {
  88. # Everything is okay
  89. # Name forced into main, but we're not in main. Fatal.
  90. } elsif ($forced_into_main{$name} and $pkg ne 'main') {
  91. require Carp;
  92. Carp::croak("Constant name '$name' is forced into main::");
  93. # Starts with double underscore. Fatal.
  94. } elsif ($name =~ /^__/) {
  95. require Carp;
  96. Carp::croak("Constant name '$name' begins with '__'");
  97. # Maybe the name is tolerable
  98. } elsif ($name =~ $tolerable) {
  99. # Then we'll warn only if you've asked for warnings
  100. if (warnings::enabled()) {
  101. if ($keywords{$name}) {
  102. warnings::warn("Constant name '$name' is a Perl keyword");
  103. } elsif ($forced_into_main{$name}) {
  104. warnings::warn("Constant name '$name' is " .
  105. "forced into package main::");
  106. }
  107. }
  108. # Looks like a boolean
  109. # use constant FRED == fred;
  110. } elsif ($name =~ $boolean) {
  111. require Carp;
  112. if (@_) {
  113. Carp::croak("Constant name '$name' is invalid");
  114. } else {
  115. Carp::croak("Constant name looks like boolean value");
  116. }
  117. } else {
  118. # Must have bad characters
  119. require Carp;
  120. Carp::croak("Constant name '$name' has invalid characters");
  121. }
  122. {
  123. no strict 'refs';
  124. my $full_name = "${pkg}::$name";
  125. $declared{$full_name}++;
  126. if ($multiple || @_ == 1) {
  127. my $scalar = $multiple ? $constants->{$orig_name} : $_[0];
  128. if (_DOWNGRADE) { # for 5.8 to 5.14
  129. # Work around perl bug #31991: Sub names (actually glob
  130. # names in general) ignore the UTF8 flag. So we have to
  131. # turn it off to get the "right" symbol table entry.
  132. utf8::is_utf8 $name and utf8::encode $name;
  133. }
  134. # The constant serves to optimise this entire block out on
  135. # 5.8 and earlier.
  136. if (_CAN_PCS) {
  137. # Use a reference as a proxy for a constant subroutine.
  138. # If this is not a glob yet, it saves space. If it is
  139. # a glob, we must still create it this way to get the
  140. # right internal flags set, as constants are distinct
  141. # from subroutines created with sub(){...}.
  142. # The check in Perl_ck_rvconst knows that inlinable
  143. # constants from cv_const_sv are read only. So we have to:
  144. Internals::SvREADONLY($scalar, 1);
  145. if (!exists $symtab->{$name}) {
  146. $symtab->{$name} = \$scalar;
  147. ++$flush_mro->{$pkg};
  148. }
  149. else {
  150. local $constant::{_dummy} = \$scalar;
  151. *$full_name = \&{"_dummy"};
  152. }
  153. } else {
  154. *$full_name = sub () { $scalar };
  155. }
  156. } elsif (@_) {
  157. my @list = @_;
  158. if (_CAN_PCS_FOR_ARRAY) {
  159. _make_const($list[$_]) for 0..$#list;
  160. _make_const(@list);
  161. if (!exists $symtab->{$name}) {
  162. $symtab->{$name} = \@list;
  163. $flush_mro->{$pkg}++;
  164. }
  165. else {
  166. local $constant::{_dummy} = \@list;
  167. *$full_name = \&{"_dummy"};
  168. }
  169. }
  170. else { *$full_name = sub () { @list }; }
  171. } else {
  172. *$full_name = sub () { };
  173. }
  174. }
  175. }
  176. # Flush the cache exactly once if we make any direct symbol table changes.
  177. if (_CAN_PCS && $flush_mro) {
  178. mro::method_changed_in($_) for keys %$flush_mro;
  179. }
  180. }
  181. 1;
  182. __END__
  183. =head1 NAME
  184. constant - Perl pragma to declare constants
  185. =head1 SYNOPSIS
  186. use constant PI => 4 * atan2(1, 1);
  187. use constant DEBUG => 0;
  188. print "Pi equals ", PI, "...\n" if DEBUG;
  189. use constant {
  190. SEC => 0,
  191. MIN => 1,
  192. HOUR => 2,
  193. MDAY => 3,
  194. MON => 4,
  195. YEAR => 5,
  196. WDAY => 6,
  197. YDAY => 7,
  198. ISDST => 8,
  199. };
  200. use constant WEEKDAYS => qw(
  201. Sunday Monday Tuesday Wednesday Thursday Friday Saturday
  202. );
  203. print "Today is ", (WEEKDAYS)[ (localtime)[WDAY] ], ".\n";
  204. =head1 DESCRIPTION
  205. This pragma allows you to declare constants at compile-time.
  206. When you declare a constant such as C<PI> using the method shown
  207. above, each machine your script runs upon can have as many digits
  208. of accuracy as it can use. Also, your program will be easier to
  209. read, more likely to be maintained (and maintained correctly), and
  210. far less likely to send a space probe to the wrong planet because
  211. nobody noticed the one equation in which you wrote C<3.14195>.
  212. When a constant is used in an expression, Perl replaces it with its
  213. value at compile time, and may then optimize the expression further.
  214. In particular, any code in an C<if (CONSTANT)> block will be optimized
  215. away if the constant is false.
  216. =head1 NOTES
  217. As with all C<use> directives, defining a constant happens at
  218. compile time. Thus, it's probably not correct to put a constant
  219. declaration inside of a conditional statement (like C<if ($foo)
  220. { use constant ... }>).
  221. Constants defined using this module cannot be interpolated into
  222. strings like variables. However, concatenation works just fine:
  223. print "Pi equals PI...\n"; # WRONG: does not expand "PI"
  224. print "Pi equals ".PI."...\n"; # right
  225. Even though a reference may be declared as a constant, the reference may
  226. point to data which may be changed, as this code shows.
  227. use constant ARRAY => [ 1,2,3,4 ];
  228. print ARRAY->[1];
  229. ARRAY->[1] = " be changed";
  230. print ARRAY->[1];
  231. Constants belong to the package they are defined in. To refer to a
  232. constant defined in another package, specify the full package name, as
  233. in C<Some::Package::CONSTANT>. Constants may be exported by modules,
  234. and may also be called as either class or instance methods, that is,
  235. as C<< Some::Package->CONSTANT >> or as C<< $obj->CONSTANT >> where
  236. C<$obj> is an instance of C<Some::Package>. Subclasses may define
  237. their own constants to override those in their base class.
  238. As of version 1.32 of this module, constants can be defined in packages
  239. other than the caller, by including the package name in the name of the
  240. constant:
  241. use constant "OtherPackage::FWIBBLE" => 7865;
  242. constant->import("Other::FWOBBLE",$value); # dynamically at run time
  243. The use of all caps for constant names is merely a convention,
  244. although it is recommended in order to make constants stand out
  245. and to help avoid collisions with other barewords, keywords, and
  246. subroutine names. Constant names must begin with a letter or
  247. underscore. Names beginning with a double underscore are reserved. Some
  248. poor choices for names will generate warnings, if warnings are enabled at
  249. compile time.
  250. =head2 List constants
  251. Constants may be lists of more (or less) than one value. A constant
  252. with no values evaluates to C<undef> in scalar context. Note that
  253. constants with more than one value do I<not> return their last value in
  254. scalar context as one might expect. They currently return the number
  255. of values, but B<this may change in the future>. Do not use constants
  256. with multiple values in scalar context.
  257. B<NOTE:> This implies that the expression defining the value of a
  258. constant is evaluated in list context. This may produce surprises:
  259. use constant TIMESTAMP => localtime; # WRONG!
  260. use constant TIMESTAMP => scalar localtime; # right
  261. The first line above defines C<TIMESTAMP> as a 9-element list, as
  262. returned by C<localtime()> in list context. To set it to the string
  263. returned by C<localtime()> in scalar context, an explicit C<scalar>
  264. keyword is required.
  265. List constants are lists, not arrays. To index or slice them, they
  266. must be placed in parentheses.
  267. my @workdays = WEEKDAYS[1 .. 5]; # WRONG!
  268. my @workdays = (WEEKDAYS)[1 .. 5]; # right
  269. =head2 Defining multiple constants at once
  270. Instead of writing multiple C<use constant> statements, you may define
  271. multiple constants in a single statement by giving, instead of the
  272. constant name, a reference to a hash where the keys are the names of
  273. the constants to be defined. Obviously, all constants defined using
  274. this method must have a single value.
  275. use constant {
  276. FOO => "A single value",
  277. BAR => "This", "won't", "work!", # Error!
  278. };
  279. This is a fundamental limitation of the way hashes are constructed in
  280. Perl. The error messages produced when this happens will often be
  281. quite cryptic -- in the worst case there may be none at all, and
  282. you'll only later find that something is broken.
  283. When defining multiple constants, you cannot use the values of other
  284. constants defined in the same declaration. This is because the
  285. calling package doesn't know about any constant within that group
  286. until I<after> the C<use> statement is finished.
  287. use constant {
  288. BITMASK => 0xAFBAEBA8,
  289. NEGMASK => ~BITMASK, # Error!
  290. };
  291. =head2 Magic constants
  292. Magical values and references can be made into constants at compile
  293. time, allowing for way cool stuff like this. (These error numbers
  294. aren't totally portable, alas.)
  295. use constant E2BIG => ($! = 7);
  296. print E2BIG, "\n"; # something like "Arg list too long"
  297. print 0+E2BIG, "\n"; # "7"
  298. You can't produce a tied constant by giving a tied scalar as the
  299. value. References to tied variables, however, can be used as
  300. constants without any problems.
  301. =head1 TECHNICAL NOTES
  302. In the current implementation, scalar constants are actually
  303. inlinable subroutines. As of version 5.004 of Perl, the appropriate
  304. scalar constant is inserted directly in place of some subroutine
  305. calls, thereby saving the overhead of a subroutine call. See
  306. L<perlsub/"Constant Functions"> for details about how and when this
  307. happens.
  308. In the rare case in which you need to discover at run time whether a
  309. particular constant has been declared via this module, you may use
  310. this function to examine the hash C<%constant::declared>. If the given
  311. constant name does not include a package name, the current package is
  312. used.
  313. sub declared ($) {
  314. use constant 1.01; # don't omit this!
  315. my $name = shift;
  316. $name =~ s/^::/main::/;
  317. my $pkg = caller;
  318. my $full_name = $name =~ /::/ ? $name : "${pkg}::$name";
  319. $constant::declared{$full_name};
  320. }
  321. =head1 CAVEATS
  322. List constants are not inlined unless you are using Perl v5.20 or higher.
  323. In v5.20 or higher, they are still not read-only, but that may change in
  324. future versions.
  325. It is not possible to have a subroutine or a keyword with the same
  326. name as a constant in the same package. This is probably a Good Thing.
  327. A constant with a name in the list C<STDIN STDOUT STDERR ARGV ARGVOUT
  328. ENV INC SIG> is not allowed anywhere but in package C<main::>, for
  329. technical reasons.
  330. Unlike constants in some languages, these cannot be overridden
  331. on the command line or via environment variables.
  332. You can get into trouble if you use constants in a context which
  333. automatically quotes barewords (as is true for any subroutine call).
  334. For example, you can't say C<$hash{CONSTANT}> because C<CONSTANT> will
  335. be interpreted as a string. Use C<$hash{CONSTANT()}> or
  336. C<$hash{+CONSTANT}> to prevent the bareword quoting mechanism from
  337. kicking in. Similarly, since the C<< => >> operator quotes a bareword
  338. immediately to its left, you have to say C<< CONSTANT() => 'value' >>
  339. (or simply use a comma in place of the big arrow) instead of
  340. C<< CONSTANT => 'value' >>.
  341. =head1 SEE ALSO
  342. L<Readonly> - Facility for creating read-only scalars, arrays, hashes.
  343. L<Attribute::Constant> - Make read-only variables via attribute
  344. L<Scalar::Readonly> - Perl extension to the C<SvREADONLY> scalar flag
  345. L<Hash::Util> - A selection of general-utility hash subroutines (mostly
  346. to lock/unlock keys and values)
  347. =head1 BUGS
  348. Please report any bugs or feature requests via the perlbug(1) utility.
  349. =head1 AUTHORS
  350. Tom Phoenix, E<lt>F<rootbeer@redcat.com>E<gt>, with help from
  351. many other folks.
  352. Multiple constant declarations at once added by Casey West,
  353. E<lt>F<casey@geeknest.com>E<gt>.
  354. Documentation mostly rewritten by Ilmari Karonen,
  355. E<lt>F<perl@itz.pp.sci.fi>E<gt>.
  356. This program is maintained by the Perl 5 Porters.
  357. The CPAN distribution is maintained by SE<eacute>bastien Aperghis-Tramoni
  358. E<lt>F<sebastien@aperghis.net>E<gt>.
  359. =head1 COPYRIGHT & LICENSE
  360. Copyright (C) 1997, 1999 Tom Phoenix
  361. This module is free software; you can redistribute it or modify it
  362. under the same terms as Perl itself.
  363. =cut