Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

186 lines
6.1 KiB

  1. package constant;
  2. $VERSION = '1.00';
  3. =head1 NAME
  4. constant - Perl pragma to declare constants
  5. =head1 SYNOPSIS
  6. use constant BUFFER_SIZE => 4096;
  7. use constant ONE_YEAR => 365.2425 * 24 * 60 * 60;
  8. use constant PI => 4 * atan2 1, 1;
  9. use constant DEBUGGING => 0;
  10. use constant ORACLE => '[email protected]';
  11. use constant USERNAME => scalar getpwuid($<);
  12. use constant USERINFO => getpwuid($<);
  13. sub deg2rad { PI * $_[0] / 180 }
  14. print "This line does nothing" unless DEBUGGING;
  15. # references can be declared constant
  16. use constant CHASH => { foo => 42 };
  17. use constant CARRAY => [ 1,2,3,4 ];
  18. use constant CPSEUDOHASH => [ { foo => 1}, 42 ];
  19. use constant CCODE => sub { "bite $_[0]\n" };
  20. print CHASH->{foo};
  21. print CARRAY->[$i];
  22. print CPSEUDOHASH->{foo};
  23. print CCODE->("me");
  24. print CHASH->[10]; # compile-time error
  25. =head1 DESCRIPTION
  26. This will declare a symbol to be a constant with the given scalar
  27. or list value.
  28. When you declare a constant such as C<PI> using the method shown
  29. above, each machine your script runs upon can have as many digits
  30. of accuracy as it can use. Also, your program will be easier to
  31. read, more likely to be maintained (and maintained correctly), and
  32. far less likely to send a space probe to the wrong planet because
  33. nobody noticed the one equation in which you wrote C<3.14195>.
  34. =head1 NOTES
  35. The value or values are evaluated in a list context. You may override
  36. this with C<scalar> as shown above.
  37. These constants do not directly interpolate into double-quotish
  38. strings, although you may do so indirectly. (See L<perlref> for
  39. details about how this works.)
  40. print "The value of PI is @{[ PI ]}.\n";
  41. List constants are returned as lists, not as arrays.
  42. $homedir = USERINFO[7]; # WRONG
  43. $homedir = (USERINFO)[7]; # Right
  44. The use of all caps for constant names is merely a convention,
  45. although it is recommended in order to make constants stand out
  46. and to help avoid collisions with other barewords, keywords, and
  47. subroutine names. Constant names must begin with a letter.
  48. Constant symbols are package scoped (rather than block scoped, as
  49. C<use strict> is). That is, you can refer to a constant from package
  50. Other as C<Other::CONST>.
  51. As with all C<use> directives, defining a constant happens at
  52. compile time. Thus, it's probably not correct to put a constant
  53. declaration inside of a conditional statement (like C<if ($foo)
  54. { use constant ... }>).
  55. Omitting the value for a symbol gives it the value of C<undef> in
  56. a scalar context or the empty list, C<()>, in a list context. This
  57. isn't so nice as it may sound, though, because in this case you
  58. must either quote the symbol name, or use a big arrow, (C<=E<gt>>),
  59. with nothing to point to. It is probably best to declare these
  60. explicitly.
  61. use constant UNICORNS => ();
  62. use constant LOGFILE => undef;
  63. The result from evaluating a list constant in a scalar context is
  64. not documented, and is B<not> guaranteed to be any particular value
  65. in the future. In particular, you should not rely upon it being
  66. the number of elements in the list, especially since it is not
  67. B<necessarily> that value in the current implementation.
  68. Magical values, tied values, and references can be made into
  69. constants at compile time, allowing for way cool stuff like this.
  70. (These error numbers aren't totally portable, alas.)
  71. use constant E2BIG => ($! = 7);
  72. print E2BIG, "\n"; # something like "Arg list too long"
  73. print 0+E2BIG, "\n"; # "7"
  74. Errors in dereferencing constant references are trapped at compile-time.
  75. =head1 TECHNICAL NOTE
  76. In the current implementation, scalar constants are actually
  77. inlinable subroutines. As of version 5.004 of Perl, the appropriate
  78. scalar constant is inserted directly in place of some subroutine
  79. calls, thereby saving the overhead of a subroutine call. See
  80. L<perlsub/"Constant Functions"> for details about how and when this
  81. happens.
  82. =head1 BUGS
  83. In the current version of Perl, list constants are not inlined
  84. and some symbols may be redefined without generating a warning.
  85. It is not possible to have a subroutine or keyword with the same
  86. name as a constant. This is probably a Good Thing.
  87. Unlike constants in some languages, these cannot be overridden
  88. on the command line or via environment variables.
  89. You can get into trouble if you use constants in a context which
  90. automatically quotes barewords (as is true for any subroutine call).
  91. For example, you can't say C<$hash{CONSTANT}> because C<CONSTANT> will
  92. be interpreted as a string. Use C<$hash{CONSTANT()}> or
  93. C<$hash{+CONSTANT}> to prevent the bareword quoting mechanism from
  94. kicking in. Similarly, since the C<=E<gt>> operator quotes a bareword
  95. immediately to its left you have to say C<CONSTANT() =E<gt> 'value'>
  96. instead of C<CONSTANT =E<gt> 'value'>.
  97. =head1 AUTHOR
  98. Tom Phoenix, E<lt>F<[email protected]>E<gt>, with help from
  99. many other folks.
  100. =head1 COPYRIGHT
  101. Copyright (C) 1997, Tom Phoenix
  102. This module is free software; you can redistribute it or modify it
  103. under the same terms as Perl itself.
  104. =cut
  105. use strict;
  106. use Carp;
  107. use vars qw($VERSION);
  108. #=======================================================================
  109. # Some of this stuff didn't work in version 5.003, alas.
  110. require 5.003_96;
  111. #=======================================================================
  112. # import() - import symbols into user's namespace
  113. #
  114. # What we actually do is define a function in the caller's namespace
  115. # which returns the value. The function we create will normally
  116. # be inlined as a constant, thereby avoiding further sub calling
  117. # overhead.
  118. #=======================================================================
  119. sub import {
  120. my $class = shift;
  121. my $name = shift or return; # Ignore 'use constant;'
  122. croak qq{Can't define "$name" as constant} .
  123. qq{ (name contains invalid characters or is empty)}
  124. unless $name =~ /^[^\W_0-9]\w*$/;
  125. my $pkg = caller;
  126. {
  127. no strict 'refs';
  128. if (@_ == 1) {
  129. my $scalar = $_[0];
  130. *{"${pkg}::$name"} = sub () { $scalar };
  131. } elsif (@_) {
  132. my @list = @_;
  133. *{"${pkg}::$name"} = sub () { @list };
  134. } else {
  135. *{"${pkg}::$name"} = sub () { };
  136. }
  137. }
  138. }
  139. 1;