Util.pm 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. # Copyright (c) 1997-2007 Graham Barr <gbarr@pobox.com>. All rights reserved.
  2. # This program is free software; you can redistribute it and/or
  3. # modify it under the same terms as Perl itself.
  4. #
  5. # Maintained since 2013 by Paul Evans <leonerd@leonerd.org.uk>
  6. package Scalar::Util;
  7. use strict;
  8. require Exporter;
  9. require List::Util; # List::Util loads the XS
  10. our @ISA = qw(Exporter);
  11. our @EXPORT_OK = qw(
  12. blessed refaddr reftype weaken unweaken isweak
  13. dualvar isdual isvstring looks_like_number openhandle readonly set_prototype
  14. tainted
  15. );
  16. our $VERSION = "1.41";
  17. $VERSION = eval $VERSION;
  18. our @EXPORT_FAIL;
  19. unless (defined &weaken) {
  20. push @EXPORT_FAIL, qw(weaken);
  21. }
  22. unless (defined &isweak) {
  23. push @EXPORT_FAIL, qw(isweak isvstring);
  24. }
  25. unless (defined &isvstring) {
  26. push @EXPORT_FAIL, qw(isvstring);
  27. }
  28. sub export_fail {
  29. if (grep { /^(?:weaken|isweak)$/ } @_ ) {
  30. require Carp;
  31. Carp::croak("Weak references are not implemented in the version of perl");
  32. }
  33. if (grep { /^isvstring$/ } @_ ) {
  34. require Carp;
  35. Carp::croak("Vstrings are not implemented in the version of perl");
  36. }
  37. @_;
  38. }
  39. # set_prototype has been moved to Sub::Util with a different interface
  40. sub set_prototype(&$)
  41. {
  42. my ( $code, $proto ) = @_;
  43. return Sub::Util::set_prototype( $proto, $code );
  44. }
  45. 1;
  46. __END__
  47. =head1 NAME
  48. Scalar::Util - A selection of general-utility scalar subroutines
  49. =head1 SYNOPSIS
  50. use Scalar::Util qw(blessed dualvar isdual readonly refaddr reftype
  51. tainted weaken isweak isvstring looks_like_number
  52. set_prototype);
  53. # and other useful utils appearing below
  54. =head1 DESCRIPTION
  55. C<Scalar::Util> contains a selection of subroutines that people have expressed
  56. would be nice to have in the perl core, but the usage would not really be high
  57. enough to warrant the use of a keyword, and the size so small such that being
  58. individual extensions would be wasteful.
  59. By default C<Scalar::Util> does not export any subroutines.
  60. =cut
  61. =head1 FUNCTIONS FOR REFERENCES
  62. The following functions all perform some useful activity on reference values.
  63. =head2 blessed
  64. my $pkg = blessed( $ref );
  65. If C<$ref> is a blessed reference the name of the package that it is blessed
  66. into is returned. Otherwise C<undef> is returned.
  67. $scalar = "foo";
  68. $class = blessed $scalar; # undef
  69. $ref = [];
  70. $class = blessed $ref; # undef
  71. $obj = bless [], "Foo";
  72. $class = blessed $obj; # "Foo"
  73. Take care when using this function simply as a truth test (such as in
  74. C<if(blessed $ref)...>) because the package name C<"0"> is defined yet false.
  75. =head2 refaddr
  76. my $addr = refaddr( $ref );
  77. If C<$ref> is reference the internal memory address of the referenced value is
  78. returned as a plain integer. Otherwise C<undef> is returned.
  79. $addr = refaddr "string"; # undef
  80. $addr = refaddr \$var; # eg 12345678
  81. $addr = refaddr []; # eg 23456784
  82. $obj = bless {}, "Foo";
  83. $addr = refaddr $obj; # eg 88123488
  84. =head2 reftype
  85. my $type = reftype( $ref );
  86. If C<$ref> is a reference the basic Perl type of the variable referenced is
  87. returned as a plain string (such as C<ARRAY> or C<HASH>). Otherwise C<undef>
  88. is returned.
  89. $type = reftype "string"; # undef
  90. $type = reftype \$var; # SCALAR
  91. $type = reftype []; # ARRAY
  92. $obj = bless {}, "Foo";
  93. $type = reftype $obj; # HASH
  94. =head2 weaken
  95. weaken( $ref );
  96. The lvalue C<$ref> will be turned into a weak reference. This means that it
  97. will not hold a reference count on the object it references. Also when the
  98. reference count on that object reaches zero, the reference will be set to
  99. undef. This function mutates the lvalue passed as its argument and returns no
  100. value.
  101. This is useful for keeping copies of references, but you don't want to prevent
  102. the object being DESTROY-ed at its usual time.
  103. {
  104. my $var;
  105. $ref = \$var;
  106. weaken($ref); # Make $ref a weak reference
  107. }
  108. # $ref is now undef
  109. Note that if you take a copy of a scalar with a weakened reference, the copy
  110. will be a strong reference.
  111. my $var;
  112. my $foo = \$var;
  113. weaken($foo); # Make $foo a weak reference
  114. my $bar = $foo; # $bar is now a strong reference
  115. This may be less obvious in other situations, such as C<grep()>, for instance
  116. when grepping through a list of weakened references to objects that may have
  117. been destroyed already:
  118. @object = grep { defined } @object;
  119. This will indeed remove all references to destroyed objects, but the remaining
  120. references to objects will be strong, causing the remaining objects to never be
  121. destroyed because there is now always a strong reference to them in the @object
  122. array.
  123. =head2 unweaken
  124. unweaken( $ref );
  125. I<Since version 1.36.>
  126. The lvalue C<REF> will be turned from a weak reference back into a normal
  127. (strong) reference again. This function mutates the lvalue passed as its
  128. argument and returns no value. This undoes the action performed by
  129. L</weaken>.
  130. This function is slightly neater and more convenient than the
  131. otherwise-equivalent code
  132. my $tmp = $REF;
  133. undef $REF;
  134. $REF = $tmp;
  135. (because in particular, simply assigning a weak reference back to itself does
  136. not work to unweaken it; C<$REF = $REF> does not work).
  137. =head2 isweak
  138. my $weak = isweak( $ref );
  139. Returns true if C<$ref> is a weak reference.
  140. $ref = \$foo;
  141. $weak = isweak($ref); # false
  142. weaken($ref);
  143. $weak = isweak($ref); # true
  144. B<NOTE>: Copying a weak reference creates a normal, strong, reference.
  145. $copy = $ref;
  146. $weak = isweak($copy); # false
  147. =head1 OTHER FUNCTIONS
  148. =head2 dualvar
  149. my $var = dualvar( $num, $string );
  150. Returns a scalar that has the value C<$num> in a numeric context and the value
  151. C<$string> in a string context.
  152. $foo = dualvar 10, "Hello";
  153. $num = $foo + 2; # 12
  154. $str = $foo . " world"; # Hello world
  155. =head2 isdual
  156. my $dual = isdual( $var );
  157. I<Since version 1.26.>
  158. If C<$var> is a scalar that has both numeric and string values, the result is
  159. true.
  160. $foo = dualvar 86, "Nix";
  161. $dual = isdual($foo); # true
  162. Note that a scalar can be made to have both string and numeric content through
  163. numeric operations:
  164. $foo = "10";
  165. $dual = isdual($foo); # false
  166. $bar = $foo + 0;
  167. $dual = isdual($foo); # true
  168. Note that although C<$!> appears to be dual-valued variable, it is actually
  169. implemented using a tied scalar:
  170. $! = 1;
  171. print("$!\n"); # "Operation not permitted"
  172. $dual = isdual($!); # false
  173. You can capture its numeric and string content using:
  174. $err = dualvar $!, $!;
  175. $dual = isdual($err); # true
  176. =head2 isvstring
  177. my $vstring = isvstring( $var );
  178. If C<$var> is a scalar which was coded as a vstring the result is true.
  179. $vs = v49.46.48;
  180. $fmt = isvstring($vs) ? "%vd" : "%s"; #true
  181. printf($fmt,$vs);
  182. =head2 looks_like_number
  183. my $isnum = looks_like_number( $var );
  184. Returns true if perl thinks C<$var> is a number. See
  185. L<perlapi/looks_like_number>.
  186. =head2 openhandle
  187. my $fh = openhandle( $fh );
  188. Returns C<$fh> itself if C<$fh> may be used as a filehandle and is open, or is
  189. is a tied handle. Otherwise C<undef> is returned.
  190. $fh = openhandle(*STDIN); # \*STDIN
  191. $fh = openhandle(\*STDIN); # \*STDIN
  192. $fh = openhandle(*NOTOPEN); # undef
  193. $fh = openhandle("scalar"); # undef
  194. =head2 readonly
  195. my $ro = readonly( $var );
  196. Returns true if C<$var> is readonly.
  197. sub foo { readonly($_[0]) }
  198. $readonly = foo($bar); # false
  199. $readonly = foo(0); # true
  200. =head2 set_prototype
  201. my $code = set_prototype( $code, $prototype );
  202. Sets the prototype of the function given by the C<$code> reference, or deletes
  203. it if C<$prototype> is C<undef>. Returns the C<$code> reference itself.
  204. set_prototype \&foo, '$$';
  205. =head2 tainted
  206. my $t = tainted( $var );
  207. Return true if C<$var> is tainted.
  208. $taint = tainted("constant"); # false
  209. $taint = tainted($ENV{PWD}); # true if running under -T
  210. =head1 DIAGNOSTICS
  211. Module use may give one of the following errors during import.
  212. =over
  213. =item Weak references are not implemented in the version of perl
  214. The version of perl that you are using does not implement weak references, to
  215. use L</isweak> or L</weaken> you will need to use a newer release of perl.
  216. =item Vstrings are not implemented in the version of perl
  217. The version of perl that you are using does not implement Vstrings, to use
  218. L</isvstring> you will need to use a newer release of perl.
  219. =item C<NAME> is only available with the XS version of Scalar::Util
  220. C<Scalar::Util> contains both perl and C implementations of many of its
  221. functions so that those without access to a C compiler may still use it.
  222. However some of the functions are only available when a C compiler was
  223. available to compile the XS version of the extension.
  224. At present that list is: weaken, isweak, dualvar, isvstring, set_prototype
  225. =back
  226. =head1 KNOWN BUGS
  227. There is a bug in perl5.6.0 with UV's that are >= 1<<31. This will
  228. show up as tests 8 and 9 of dualvar.t failing
  229. =head1 SEE ALSO
  230. L<List::Util>
  231. =head1 COPYRIGHT
  232. Copyright (c) 1997-2007 Graham Barr <gbarr@pobox.com>. All rights reserved.
  233. This program is free software; you can redistribute it and/or modify it
  234. under the same terms as Perl itself.
  235. Additionally L</weaken> and L</isweak> which are
  236. Copyright (c) 1999 Tuomas J. Lukka <lukka@iki.fi>. All rights reserved.
  237. This program is free software; you can redistribute it and/or modify it
  238. under the same terms as perl itself.
  239. Copyright (C) 2004, 2008 Matthijs van Duin. All rights reserved.
  240. Copyright (C) 2014 cPanel Inc. All rights reserved.
  241. This program is free software; you can redistribute it and/or modify
  242. it under the same terms as Perl itself.
  243. =cut