Counter Strike : Global Offensive Source Code
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.

1455 lines
46 KiB

  1. package overload;
  2. our $VERSION = '1.04';
  3. $overload::hint_bits = 0x20000; # HINT_LOCALIZE_HH
  4. sub nil {}
  5. sub OVERLOAD {
  6. $package = shift;
  7. my %arg = @_;
  8. my ($sub, $fb);
  9. $ {$package . "::OVERLOAD"}{dummy}++; # Register with magic by touching.
  10. *{$package . "::()"} = \&nil; # Make it findable via fetchmethod.
  11. for (keys %arg) {
  12. if ($_ eq 'fallback') {
  13. $fb = $arg{$_};
  14. } else {
  15. $sub = $arg{$_};
  16. if (not ref $sub and $sub !~ /::/) {
  17. $ {$package . "::(" . $_} = $sub;
  18. $sub = \&nil;
  19. }
  20. #print STDERR "Setting `$ {'package'}::\cO$_' to \\&`$sub'.\n";
  21. *{$package . "::(" . $_} = \&{ $sub };
  22. }
  23. }
  24. ${$package . "::()"} = $fb; # Make it findable too (fallback only).
  25. }
  26. sub import {
  27. $package = (caller())[0];
  28. # *{$package . "::OVERLOAD"} = \&OVERLOAD;
  29. shift;
  30. $package->overload::OVERLOAD(@_);
  31. }
  32. sub unimport {
  33. $package = (caller())[0];
  34. ${$package . "::OVERLOAD"}{dummy}++; # Upgrade the table
  35. shift;
  36. for (@_) {
  37. if ($_ eq 'fallback') {
  38. undef $ {$package . "::()"};
  39. } else {
  40. delete $ {$package . "::"}{"(" . $_};
  41. }
  42. }
  43. }
  44. sub Overloaded {
  45. my $package = shift;
  46. $package = ref $package if ref $package;
  47. $package->can('()');
  48. }
  49. sub ov_method {
  50. my $globref = shift;
  51. return undef unless $globref;
  52. my $sub = \&{*$globref};
  53. return $sub if $sub ne \&nil;
  54. return shift->can($ {*$globref});
  55. }
  56. sub OverloadedStringify {
  57. my $package = shift;
  58. $package = ref $package if ref $package;
  59. #$package->can('(""')
  60. ov_method mycan($package, '(""'), $package
  61. or ov_method mycan($package, '(0+'), $package
  62. or ov_method mycan($package, '(bool'), $package
  63. or ov_method mycan($package, '(nomethod'), $package;
  64. }
  65. sub Method {
  66. my $package = shift;
  67. $package = ref $package if ref $package;
  68. #my $meth = $package->can('(' . shift);
  69. ov_method mycan($package, '(' . shift), $package;
  70. #return $meth if $meth ne \&nil;
  71. #return $ {*{$meth}};
  72. }
  73. sub AddrRef {
  74. my $package = ref $_[0];
  75. return "$_[0]" unless $package;
  76. require Scalar::Util;
  77. my $class = Scalar::Util::blessed($_[0]);
  78. my $class_prefix = defined($class) ? "$class=" : "";
  79. my $type = Scalar::Util::reftype($_[0]);
  80. my $addr = Scalar::Util::refaddr($_[0]);
  81. return sprintf("$class_prefix$type(0x%x)", $addr);
  82. }
  83. *StrVal = *AddrRef;
  84. sub mycan { # Real can would leave stubs.
  85. my ($package, $meth) = @_;
  86. return \*{$package . "::$meth"} if defined &{$package . "::$meth"};
  87. my $p;
  88. foreach $p (@{$package . "::ISA"}) {
  89. my $out = mycan($p, $meth);
  90. return $out if $out;
  91. }
  92. return undef;
  93. }
  94. %constants = (
  95. 'integer' => 0x1000, # HINT_NEW_INTEGER
  96. 'float' => 0x2000, # HINT_NEW_FLOAT
  97. 'binary' => 0x4000, # HINT_NEW_BINARY
  98. 'q' => 0x8000, # HINT_NEW_STRING
  99. 'qr' => 0x10000, # HINT_NEW_RE
  100. );
  101. %ops = ( with_assign => "+ - * / % ** << >> x .",
  102. assign => "+= -= *= /= %= **= <<= >>= x= .=",
  103. num_comparison => "< <= > >= == !=",
  104. '3way_comparison'=> "<=> cmp",
  105. str_comparison => "lt le gt ge eq ne",
  106. binary => '& &= | |= ^ ^=',
  107. unary => "neg ! ~",
  108. mutators => '++ --',
  109. func => "atan2 cos sin exp abs log sqrt int",
  110. conversion => 'bool "" 0+',
  111. iterators => '<>',
  112. dereferencing => '${} @{} %{} &{} *{}',
  113. special => 'nomethod fallback =');
  114. use warnings::register;
  115. sub constant {
  116. # Arguments: what, sub
  117. while (@_) {
  118. if (@_ == 1) {
  119. warnings::warnif ("Odd number of arguments for overload::constant");
  120. last;
  121. }
  122. elsif (!exists $constants {$_ [0]}) {
  123. warnings::warnif ("`$_[0]' is not an overloadable type");
  124. }
  125. elsif (!ref $_ [1] || "$_[1]" !~ /CODE\(0x[\da-f]+\)$/) {
  126. # Can't use C<ref $_[1] eq "CODE"> above as code references can be
  127. # blessed, and C<ref> would return the package the ref is blessed into.
  128. if (warnings::enabled) {
  129. $_ [1] = "undef" unless defined $_ [1];
  130. warnings::warn ("`$_[1]' is not a code reference");
  131. }
  132. }
  133. else {
  134. $^H{$_[0]} = $_[1];
  135. $^H |= $constants{$_[0]} | $overload::hint_bits;
  136. }
  137. shift, shift;
  138. }
  139. }
  140. sub remove_constant {
  141. # Arguments: what, sub
  142. while (@_) {
  143. delete $^H{$_[0]};
  144. $^H &= ~ $constants{$_[0]};
  145. shift, shift;
  146. }
  147. }
  148. 1;
  149. __END__
  150. =head1 NAME
  151. overload - Package for overloading Perl operations
  152. =head1 SYNOPSIS
  153. package SomeThing;
  154. use overload
  155. '+' => \&myadd,
  156. '-' => \&mysub;
  157. # etc
  158. ...
  159. package main;
  160. $a = new SomeThing 57;
  161. $b=5+$a;
  162. ...
  163. if (overload::Overloaded $b) {...}
  164. ...
  165. $strval = overload::StrVal $b;
  166. =head1 DESCRIPTION
  167. =head2 Declaration of overloaded functions
  168. The compilation directive
  169. package Number;
  170. use overload
  171. "+" => \&add,
  172. "*=" => "muas";
  173. declares function Number::add() for addition, and method muas() in
  174. the "class" C<Number> (or one of its base classes)
  175. for the assignment form C<*=> of multiplication.
  176. Arguments of this directive come in (key, value) pairs. Legal values
  177. are values legal inside a C<&{ ... }> call, so the name of a
  178. subroutine, a reference to a subroutine, or an anonymous subroutine
  179. will all work. Note that values specified as strings are
  180. interpreted as methods, not subroutines. Legal keys are listed below.
  181. The subroutine C<add> will be called to execute C<$a+$b> if $a
  182. is a reference to an object blessed into the package C<Number>, or if $a is
  183. not an object from a package with defined mathemagic addition, but $b is a
  184. reference to a C<Number>. It can also be called in other situations, like
  185. C<$a+=7>, or C<$a++>. See L<MAGIC AUTOGENERATION>. (Mathemagical
  186. methods refer to methods triggered by an overloaded mathematical
  187. operator.)
  188. Since overloading respects inheritance via the @ISA hierarchy, the
  189. above declaration would also trigger overloading of C<+> and C<*=> in
  190. all the packages which inherit from C<Number>.
  191. =head2 Calling Conventions for Binary Operations
  192. The functions specified in the C<use overload ...> directive are called
  193. with three (in one particular case with four, see L<Last Resort>)
  194. arguments. If the corresponding operation is binary, then the first
  195. two arguments are the two arguments of the operation. However, due to
  196. general object calling conventions, the first argument should always be
  197. an object in the package, so in the situation of C<7+$a>, the
  198. order of the arguments is interchanged. It probably does not matter
  199. when implementing the addition method, but whether the arguments
  200. are reversed is vital to the subtraction method. The method can
  201. query this information by examining the third argument, which can take
  202. three different values:
  203. =over 7
  204. =item FALSE
  205. the order of arguments is as in the current operation.
  206. =item TRUE
  207. the arguments are reversed.
  208. =item C<undef>
  209. the current operation is an assignment variant (as in
  210. C<$a+=7>), but the usual function is called instead. This additional
  211. information can be used to generate some optimizations. Compare
  212. L<Calling Conventions for Mutators>.
  213. =back
  214. =head2 Calling Conventions for Unary Operations
  215. Unary operation are considered binary operations with the second
  216. argument being C<undef>. Thus the functions that overloads C<{"++"}>
  217. is called with arguments C<($a,undef,'')> when $a++ is executed.
  218. =head2 Calling Conventions for Mutators
  219. Two types of mutators have different calling conventions:
  220. =over
  221. =item C<++> and C<-->
  222. The routines which implement these operators are expected to actually
  223. I<mutate> their arguments. So, assuming that $obj is a reference to a
  224. number,
  225. sub incr { my $n = $ {$_[0]}; ++$n; $_[0] = bless \$n}
  226. is an appropriate implementation of overloaded C<++>. Note that
  227. sub incr { ++$ {$_[0]} ; shift }
  228. is OK if used with preincrement and with postincrement. (In the case
  229. of postincrement a copying will be performed, see L<Copy Constructor>.)
  230. =item C<x=> and other assignment versions
  231. There is nothing special about these methods. They may change the
  232. value of their arguments, and may leave it as is. The result is going
  233. to be assigned to the value in the left-hand-side if different from
  234. this value.
  235. This allows for the same method to be used as overloaded C<+=> and
  236. C<+>. Note that this is I<allowed>, but not recommended, since by the
  237. semantic of L<"Fallback"> Perl will call the method for C<+> anyway,
  238. if C<+=> is not overloaded.
  239. =back
  240. B<Warning.> Due to the presence of assignment versions of operations,
  241. routines which may be called in assignment context may create
  242. self-referential structures. Currently Perl will not free self-referential
  243. structures until cycles are C<explicitly> broken. You may get problems
  244. when traversing your structures too.
  245. Say,
  246. use overload '+' => sub { bless [ \$_[0], \$_[1] ] };
  247. is asking for trouble, since for code C<$obj += $foo> the subroutine
  248. is called as C<$obj = add($obj, $foo, undef)>, or C<$obj = [\$obj,
  249. \$foo]>. If using such a subroutine is an important optimization, one
  250. can overload C<+=> explicitly by a non-"optimized" version, or switch
  251. to non-optimized version if C<not defined $_[2]> (see
  252. L<Calling Conventions for Binary Operations>).
  253. Even if no I<explicit> assignment-variants of operators are present in
  254. the script, they may be generated by the optimizer. Say, C<",$obj,"> or
  255. C<',' . $obj . ','> may be both optimized to
  256. my $tmp = ',' . $obj; $tmp .= ',';
  257. =head2 Overloadable Operations
  258. The following symbols can be specified in C<use overload> directive:
  259. =over 5
  260. =item * I<Arithmetic operations>
  261. "+", "+=", "-", "-=", "*", "*=", "/", "/=", "%", "%=",
  262. "**", "**=", "<<", "<<=", ">>", ">>=", "x", "x=", ".", ".=",
  263. For these operations a substituted non-assignment variant can be called if
  264. the assignment variant is not available. Methods for operations C<+>,
  265. C<->, C<+=>, and C<-=> can be called to automatically generate
  266. increment and decrement methods. The operation C<-> can be used to
  267. autogenerate missing methods for unary minus or C<abs>.
  268. See L<"MAGIC AUTOGENERATION">, L<"Calling Conventions for Mutators"> and
  269. L<"Calling Conventions for Binary Operations">) for details of these
  270. substitutions.
  271. =item * I<Comparison operations>
  272. "<", "<=", ">", ">=", "==", "!=", "<=>",
  273. "lt", "le", "gt", "ge", "eq", "ne", "cmp",
  274. If the corresponding "spaceship" variant is available, it can be
  275. used to substitute for the missing operation. During C<sort>ing
  276. arrays, C<cmp> is used to compare values subject to C<use overload>.
  277. =item * I<Bit operations>
  278. "&", "&=", "^", "^=", "|", "|=", "neg", "!", "~",
  279. C<neg> stands for unary minus. If the method for C<neg> is not
  280. specified, it can be autogenerated using the method for
  281. subtraction. If the method for C<!> is not specified, it can be
  282. autogenerated using the methods for C<bool>, or C<"">, or C<0+>.
  283. The same remarks in L<"Arithmetic operations"> about
  284. assignment-variants and autogeneration apply for
  285. bit operations C<"&">, C<"^">, and C<"|"> as well.
  286. =item * I<Increment and decrement>
  287. "++", "--",
  288. If undefined, addition and subtraction methods can be
  289. used instead. These operations are called both in prefix and
  290. postfix form.
  291. =item * I<Transcendental functions>
  292. "atan2", "cos", "sin", "exp", "abs", "log", "sqrt", "int"
  293. If C<abs> is unavailable, it can be autogenerated using methods
  294. for "E<lt>" or "E<lt>=E<gt>" combined with either unary minus or subtraction.
  295. Note that traditionally the Perl function L<int> rounds to 0, thus for
  296. floating-point-like types one should follow the same semantic. If
  297. C<int> is unavailable, it can be autogenerated using the overloading of
  298. C<0+>.
  299. =item * I<Boolean, string and numeric conversion>
  300. 'bool', '""', '0+',
  301. If one or two of these operations are not overloaded, the remaining ones can
  302. be used instead. C<bool> is used in the flow control operators
  303. (like C<while>) and for the ternary C<?:> operation. These functions can
  304. return any arbitrary Perl value. If the corresponding operation for this value
  305. is overloaded too, that operation will be called again with this value.
  306. As a special case if the overload returns the object itself then it will
  307. be used directly. An overloaded conversion returning the object is
  308. probably a bug, because you're likely to get something that looks like
  309. C<YourPackage=HASH(0x8172b34)>.
  310. =item * I<Iteration>
  311. "<>"
  312. If not overloaded, the argument will be converted to a filehandle or
  313. glob (which may require a stringification). The same overloading
  314. happens both for the I<read-filehandle> syntax C<E<lt>$varE<gt>> and
  315. I<globbing> syntax C<E<lt>${var}E<gt>>.
  316. B<BUGS> Even in list context, the iterator is currently called only
  317. once and with scalar context.
  318. =item * I<Dereferencing>
  319. '${}', '@{}', '%{}', '&{}', '*{}'.
  320. If not overloaded, the argument will be dereferenced I<as is>, thus
  321. should be of correct type. These functions should return a reference
  322. of correct type, or another object with overloaded dereferencing.
  323. As a special case if the overload returns the object itself then it
  324. will be used directly (provided it is the correct type).
  325. The dereference operators must be specified explicitly they will not be passed to
  326. "nomethod".
  327. =item * I<Special>
  328. "nomethod", "fallback", "=",
  329. see L<SPECIAL SYMBOLS FOR C<use overload>>.
  330. =back
  331. See L<"Fallback"> for an explanation of when a missing method can be
  332. autogenerated.
  333. A computer-readable form of the above table is available in the hash
  334. %overload::ops, with values being space-separated lists of names:
  335. with_assign => '+ - * / % ** << >> x .',
  336. assign => '+= -= *= /= %= **= <<= >>= x= .=',
  337. num_comparison => '< <= > >= == !=',
  338. '3way_comparison'=> '<=> cmp',
  339. str_comparison => 'lt le gt ge eq ne',
  340. binary => '& &= | |= ^ ^=',
  341. unary => 'neg ! ~',
  342. mutators => '++ --',
  343. func => 'atan2 cos sin exp abs log sqrt',
  344. conversion => 'bool "" 0+',
  345. iterators => '<>',
  346. dereferencing => '${} @{} %{} &{} *{}',
  347. special => 'nomethod fallback ='
  348. =head2 Inheritance and overloading
  349. Inheritance interacts with overloading in two ways.
  350. =over
  351. =item Strings as values of C<use overload> directive
  352. If C<value> in
  353. use overload key => value;
  354. is a string, it is interpreted as a method name.
  355. =item Overloading of an operation is inherited by derived classes
  356. Any class derived from an overloaded class is also overloaded. The
  357. set of overloaded methods is the union of overloaded methods of all
  358. the ancestors. If some method is overloaded in several ancestor, then
  359. which description will be used is decided by the usual inheritance
  360. rules:
  361. If C<A> inherits from C<B> and C<C> (in this order), C<B> overloads
  362. C<+> with C<\&D::plus_sub>, and C<C> overloads C<+> by C<"plus_meth">,
  363. then the subroutine C<D::plus_sub> will be called to implement
  364. operation C<+> for an object in package C<A>.
  365. =back
  366. Note that since the value of the C<fallback> key is not a subroutine,
  367. its inheritance is not governed by the above rules. In the current
  368. implementation, the value of C<fallback> in the first overloaded
  369. ancestor is used, but this is accidental and subject to change.
  370. =head1 SPECIAL SYMBOLS FOR C<use overload>
  371. Three keys are recognized by Perl that are not covered by the above
  372. description.
  373. =head2 Last Resort
  374. C<"nomethod"> should be followed by a reference to a function of four
  375. parameters. If defined, it is called when the overloading mechanism
  376. cannot find a method for some operation. The first three arguments of
  377. this function coincide with the arguments for the corresponding method if
  378. it were found, the fourth argument is the symbol
  379. corresponding to the missing method. If several methods are tried,
  380. the last one is used. Say, C<1-$a> can be equivalent to
  381. &nomethodMethod($a,1,1,"-")
  382. if the pair C<"nomethod" =E<gt> "nomethodMethod"> was specified in the
  383. C<use overload> directive.
  384. The C<"nomethod"> mechanism is I<not> used for the dereference operators
  385. ( ${} @{} %{} &{} *{} ).
  386. If some operation cannot be resolved, and there is no function
  387. assigned to C<"nomethod">, then an exception will be raised via die()--
  388. unless C<"fallback"> was specified as a key in C<use overload> directive.
  389. =head2 Fallback
  390. The key C<"fallback"> governs what to do if a method for a particular
  391. operation is not found. Three different cases are possible depending on
  392. the value of C<"fallback">:
  393. =over 16
  394. =item * C<undef>
  395. Perl tries to use a
  396. substituted method (see L<MAGIC AUTOGENERATION>). If this fails, it
  397. then tries to calls C<"nomethod"> value; if missing, an exception
  398. will be raised.
  399. =item * TRUE
  400. The same as for the C<undef> value, but no exception is raised. Instead,
  401. it silently reverts to what it would have done were there no C<use overload>
  402. present.
  403. =item * defined, but FALSE
  404. No autogeneration is tried. Perl tries to call
  405. C<"nomethod"> value, and if this is missing, raises an exception.
  406. =back
  407. B<Note.> C<"fallback"> inheritance via @ISA is not carved in stone
  408. yet, see L<"Inheritance and overloading">.
  409. =head2 Copy Constructor
  410. The value for C<"="> is a reference to a function with three
  411. arguments, i.e., it looks like the other values in C<use
  412. overload>. However, it does not overload the Perl assignment
  413. operator. This would go against Camel hair.
  414. This operation is called in the situations when a mutator is applied
  415. to a reference that shares its object with some other reference, such
  416. as
  417. $a=$b;
  418. ++$a;
  419. To make this change $a and not change $b, a copy of C<$$a> is made,
  420. and $a is assigned a reference to this new object. This operation is
  421. done during execution of the C<++$a>, and not during the assignment,
  422. (so before the increment C<$$a> coincides with C<$$b>). This is only
  423. done if C<++> is expressed via a method for C<'++'> or C<'+='> (or
  424. C<nomethod>). Note that if this operation is expressed via C<'+'>
  425. a nonmutator, i.e., as in
  426. $a=$b;
  427. $a=$a+1;
  428. then C<$a> does not reference a new copy of C<$$a>, since $$a does not
  429. appear as lvalue when the above code is executed.
  430. If the copy constructor is required during the execution of some mutator,
  431. but a method for C<'='> was not specified, it can be autogenerated as a
  432. string copy if the object is a plain scalar.
  433. =over 5
  434. =item B<Example>
  435. The actually executed code for
  436. $a=$b;
  437. Something else which does not modify $a or $b....
  438. ++$a;
  439. may be
  440. $a=$b;
  441. Something else which does not modify $a or $b....
  442. $a = $a->clone(undef,"");
  443. $a->incr(undef,"");
  444. if $b was mathemagical, and C<'++'> was overloaded with C<\&incr>,
  445. C<'='> was overloaded with C<\&clone>.
  446. =back
  447. Same behaviour is triggered by C<$b = $a++>, which is consider a synonym for
  448. C<$b = $a; ++$a>.
  449. =head1 MAGIC AUTOGENERATION
  450. If a method for an operation is not found, and the value for C<"fallback"> is
  451. TRUE or undefined, Perl tries to autogenerate a substitute method for
  452. the missing operation based on the defined operations. Autogenerated method
  453. substitutions are possible for the following operations:
  454. =over 16
  455. =item I<Assignment forms of arithmetic operations>
  456. C<$a+=$b> can use the method for C<"+"> if the method for C<"+=">
  457. is not defined.
  458. =item I<Conversion operations>
  459. String, numeric, and boolean conversion are calculated in terms of one
  460. another if not all of them are defined.
  461. =item I<Increment and decrement>
  462. The C<++$a> operation can be expressed in terms of C<$a+=1> or C<$a+1>,
  463. and C<$a--> in terms of C<$a-=1> and C<$a-1>.
  464. =item C<abs($a)>
  465. can be expressed in terms of C<$aE<lt>0> and C<-$a> (or C<0-$a>).
  466. =item I<Unary minus>
  467. can be expressed in terms of subtraction.
  468. =item I<Negation>
  469. C<!> and C<not> can be expressed in terms of boolean conversion, or
  470. string or numerical conversion.
  471. =item I<Concatenation>
  472. can be expressed in terms of string conversion.
  473. =item I<Comparison operations>
  474. can be expressed in terms of its "spaceship" counterpart: either
  475. C<E<lt>=E<gt>> or C<cmp>:
  476. <, >, <=, >=, ==, != in terms of <=>
  477. lt, gt, le, ge, eq, ne in terms of cmp
  478. =item I<Iterator>
  479. <> in terms of builtin operations
  480. =item I<Dereferencing>
  481. ${} @{} %{} &{} *{} in terms of builtin operations
  482. =item I<Copy operator>
  483. can be expressed in terms of an assignment to the dereferenced value, if this
  484. value is a scalar and not a reference.
  485. =back
  486. =head1 Minimal set of overloaded operations
  487. Since some operations can be automatically generated from others, there is
  488. a minimal set of operations that need to be overloaded in order to have
  489. the complete set of overloaded operations at one's disposal.
  490. Of course, the autogenerated operations may not do exactly what the user
  491. expects. See L<MAGIC AUTOGENERATION> above. The minimal set is:
  492. + - * / % ** << >> x
  493. <=> cmp
  494. & | ^ ~
  495. atan2 cos sin exp log sqrt int
  496. Additionally, you need to define at least one of string, boolean or
  497. numeric conversions because any one can be used to emulate the others.
  498. The string conversion can also be used to emulate concatenation.
  499. =head1 Losing overloading
  500. The restriction for the comparison operation is that even if, for example,
  501. `C<cmp>' should return a blessed reference, the autogenerated `C<lt>'
  502. function will produce only a standard logical value based on the
  503. numerical value of the result of `C<cmp>'. In particular, a working
  504. numeric conversion is needed in this case (possibly expressed in terms of
  505. other conversions).
  506. Similarly, C<.=> and C<x=> operators lose their mathemagical properties
  507. if the string conversion substitution is applied.
  508. When you chop() a mathemagical object it is promoted to a string and its
  509. mathemagical properties are lost. The same can happen with other
  510. operations as well.
  511. =head1 Run-time Overloading
  512. Since all C<use> directives are executed at compile-time, the only way to
  513. change overloading during run-time is to
  514. eval 'use overload "+" => \&addmethod';
  515. You can also use
  516. eval 'no overload "+", "--", "<="';
  517. though the use of these constructs during run-time is questionable.
  518. =head1 Public functions
  519. Package C<overload.pm> provides the following public functions:
  520. =over 5
  521. =item overload::StrVal(arg)
  522. Gives string value of C<arg> as in absence of stringify overloading. If you
  523. are using this to get the address of a reference (useful for checking if two
  524. references point to the same thing) then you may be better off using
  525. C<Scalar::Util::refaddr()>, which is faster.
  526. =item overload::Overloaded(arg)
  527. Returns true if C<arg> is subject to overloading of some operations.
  528. =item overload::Method(obj,op)
  529. Returns C<undef> or a reference to the method that implements C<op>.
  530. =back
  531. =head1 Overloading constants
  532. For some applications, the Perl parser mangles constants too much.
  533. It is possible to hook into this process via C<overload::constant()>
  534. and C<overload::remove_constant()> functions.
  535. These functions take a hash as an argument. The recognized keys of this hash
  536. are:
  537. =over 8
  538. =item integer
  539. to overload integer constants,
  540. =item float
  541. to overload floating point constants,
  542. =item binary
  543. to overload octal and hexadecimal constants,
  544. =item q
  545. to overload C<q>-quoted strings, constant pieces of C<qq>- and C<qx>-quoted
  546. strings and here-documents,
  547. =item qr
  548. to overload constant pieces of regular expressions.
  549. =back
  550. The corresponding values are references to functions which take three arguments:
  551. the first one is the I<initial> string form of the constant, the second one
  552. is how Perl interprets this constant, the third one is how the constant is used.
  553. Note that the initial string form does not
  554. contain string delimiters, and has backslashes in backslash-delimiter
  555. combinations stripped (thus the value of delimiter is not relevant for
  556. processing of this string). The return value of this function is how this
  557. constant is going to be interpreted by Perl. The third argument is undefined
  558. unless for overloaded C<q>- and C<qr>- constants, it is C<q> in single-quote
  559. context (comes from strings, regular expressions, and single-quote HERE
  560. documents), it is C<tr> for arguments of C<tr>/C<y> operators,
  561. it is C<s> for right-hand side of C<s>-operator, and it is C<qq> otherwise.
  562. Since an expression C<"ab$cd,,"> is just a shortcut for C<'ab' . $cd . ',,'>,
  563. it is expected that overloaded constant strings are equipped with reasonable
  564. overloaded catenation operator, otherwise absurd results will result.
  565. Similarly, negative numbers are considered as negations of positive constants.
  566. Note that it is probably meaningless to call the functions overload::constant()
  567. and overload::remove_constant() from anywhere but import() and unimport() methods.
  568. From these methods they may be called as
  569. sub import {
  570. shift;
  571. return unless @_;
  572. die "unknown import: @_" unless @_ == 1 and $_[0] eq ':constant';
  573. overload::constant integer => sub {Math::BigInt->new(shift)};
  574. }
  575. B<BUGS> Currently overloaded-ness of constants does not propagate
  576. into C<eval '...'>.
  577. =head1 IMPLEMENTATION
  578. What follows is subject to change RSN.
  579. The table of methods for all operations is cached in magic for the
  580. symbol table hash for the package. The cache is invalidated during
  581. processing of C<use overload>, C<no overload>, new function
  582. definitions, and changes in @ISA. However, this invalidation remains
  583. unprocessed until the next C<bless>ing into the package. Hence if you
  584. want to change overloading structure dynamically, you'll need an
  585. additional (fake) C<bless>ing to update the table.
  586. (Every SVish thing has a magic queue, and magic is an entry in that
  587. queue. This is how a single variable may participate in multiple
  588. forms of magic simultaneously. For instance, environment variables
  589. regularly have two forms at once: their %ENV magic and their taint
  590. magic. However, the magic which implements overloading is applied to
  591. the stashes, which are rarely used directly, thus should not slow down
  592. Perl.)
  593. If an object belongs to a package using overload, it carries a special
  594. flag. Thus the only speed penalty during arithmetic operations without
  595. overloading is the checking of this flag.
  596. In fact, if C<use overload> is not present, there is almost no overhead
  597. for overloadable operations, so most programs should not suffer
  598. measurable performance penalties. A considerable effort was made to
  599. minimize the overhead when overload is used in some package, but the
  600. arguments in question do not belong to packages using overload. When
  601. in doubt, test your speed with C<use overload> and without it. So far
  602. there have been no reports of substantial speed degradation if Perl is
  603. compiled with optimization turned on.
  604. There is no size penalty for data if overload is not used. The only
  605. size penalty if overload is used in some package is that I<all> the
  606. packages acquire a magic during the next C<bless>ing into the
  607. package. This magic is three-words-long for packages without
  608. overloading, and carries the cache table if the package is overloaded.
  609. Copying (C<$a=$b>) is shallow; however, a one-level-deep copying is
  610. carried out before any operation that can imply an assignment to the
  611. object $a (or $b) refers to, like C<$a++>. You can override this
  612. behavior by defining your own copy constructor (see L<"Copy Constructor">).
  613. It is expected that arguments to methods that are not explicitly supposed
  614. to be changed are constant (but this is not enforced).
  615. =head1 Metaphor clash
  616. One may wonder why the semantic of overloaded C<=> is so counter intuitive.
  617. If it I<looks> counter intuitive to you, you are subject to a metaphor
  618. clash.
  619. Here is a Perl object metaphor:
  620. I< object is a reference to blessed data>
  621. and an arithmetic metaphor:
  622. I< object is a thing by itself>.
  623. The I<main> problem of overloading C<=> is the fact that these metaphors
  624. imply different actions on the assignment C<$a = $b> if $a and $b are
  625. objects. Perl-think implies that $a becomes a reference to whatever
  626. $b was referencing. Arithmetic-think implies that the value of "object"
  627. $a is changed to become the value of the object $b, preserving the fact
  628. that $a and $b are separate entities.
  629. The difference is not relevant in the absence of mutators. After
  630. a Perl-way assignment an operation which mutates the data referenced by $a
  631. would change the data referenced by $b too. Effectively, after
  632. C<$a = $b> values of $a and $b become I<indistinguishable>.
  633. On the other hand, anyone who has used algebraic notation knows the
  634. expressive power of the arithmetic metaphor. Overloading works hard
  635. to enable this metaphor while preserving the Perlian way as far as
  636. possible. Since it is not possible to freely mix two contradicting
  637. metaphors, overloading allows the arithmetic way to write things I<as
  638. far as all the mutators are called via overloaded access only>. The
  639. way it is done is described in L<Copy Constructor>.
  640. If some mutator methods are directly applied to the overloaded values,
  641. one may need to I<explicitly unlink> other values which references the
  642. same value:
  643. $a = new Data 23;
  644. ...
  645. $b = $a; # $b is "linked" to $a
  646. ...
  647. $a = $a->clone; # Unlink $b from $a
  648. $a->increment_by(4);
  649. Note that overloaded access makes this transparent:
  650. $a = new Data 23;
  651. $b = $a; # $b is "linked" to $a
  652. $a += 4; # would unlink $b automagically
  653. However, it would not make
  654. $a = new Data 23;
  655. $a = 4; # Now $a is a plain 4, not 'Data'
  656. preserve "objectness" of $a. But Perl I<has> a way to make assignments
  657. to an object do whatever you want. It is just not the overload, but
  658. tie()ing interface (see L<perlfunc/tie>). Adding a FETCH() method
  659. which returns the object itself, and STORE() method which changes the
  660. value of the object, one can reproduce the arithmetic metaphor in its
  661. completeness, at least for variables which were tie()d from the start.
  662. (Note that a workaround for a bug may be needed, see L<"BUGS">.)
  663. =head1 Cookbook
  664. Please add examples to what follows!
  665. =head2 Two-face scalars
  666. Put this in F<two_face.pm> in your Perl library directory:
  667. package two_face; # Scalars with separate string and
  668. # numeric values.
  669. sub new { my $p = shift; bless [@_], $p }
  670. use overload '""' => \&str, '0+' => \&num, fallback => 1;
  671. sub num {shift->[1]}
  672. sub str {shift->[0]}
  673. Use it as follows:
  674. require two_face;
  675. my $seven = new two_face ("vii", 7);
  676. printf "seven=$seven, seven=%d, eight=%d\n", $seven, $seven+1;
  677. print "seven contains `i'\n" if $seven =~ /i/;
  678. (The second line creates a scalar which has both a string value, and a
  679. numeric value.) This prints:
  680. seven=vii, seven=7, eight=8
  681. seven contains `i'
  682. =head2 Two-face references
  683. Suppose you want to create an object which is accessible as both an
  684. array reference and a hash reference, similar to the
  685. L<pseudo-hash|perlref/"Pseudo-hashes: Using an array as a hash">
  686. builtin Perl type. Let's make it better than a pseudo-hash by
  687. allowing index 0 to be treated as a normal element.
  688. package two_refs;
  689. use overload '%{}' => \&gethash, '@{}' => sub { $ {shift()} };
  690. sub new {
  691. my $p = shift;
  692. bless \ [@_], $p;
  693. }
  694. sub gethash {
  695. my %h;
  696. my $self = shift;
  697. tie %h, ref $self, $self;
  698. \%h;
  699. }
  700. sub TIEHASH { my $p = shift; bless \ shift, $p }
  701. my %fields;
  702. my $i = 0;
  703. $fields{$_} = $i++ foreach qw{zero one two three};
  704. sub STORE {
  705. my $self = ${shift()};
  706. my $key = $fields{shift()};
  707. defined $key or die "Out of band access";
  708. $$self->[$key] = shift;
  709. }
  710. sub FETCH {
  711. my $self = ${shift()};
  712. my $key = $fields{shift()};
  713. defined $key or die "Out of band access";
  714. $$self->[$key];
  715. }
  716. Now one can access an object using both the array and hash syntax:
  717. my $bar = new two_refs 3,4,5,6;
  718. $bar->[2] = 11;
  719. $bar->{two} == 11 or die 'bad hash fetch';
  720. Note several important features of this example. First of all, the
  721. I<actual> type of $bar is a scalar reference, and we do not overload
  722. the scalar dereference. Thus we can get the I<actual> non-overloaded
  723. contents of $bar by just using C<$$bar> (what we do in functions which
  724. overload dereference). Similarly, the object returned by the
  725. TIEHASH() method is a scalar reference.
  726. Second, we create a new tied hash each time the hash syntax is used.
  727. This allows us not to worry about a possibility of a reference loop,
  728. which would lead to a memory leak.
  729. Both these problems can be cured. Say, if we want to overload hash
  730. dereference on a reference to an object which is I<implemented> as a
  731. hash itself, the only problem one has to circumvent is how to access
  732. this I<actual> hash (as opposed to the I<virtual> hash exhibited by the
  733. overloaded dereference operator). Here is one possible fetching routine:
  734. sub access_hash {
  735. my ($self, $key) = (shift, shift);
  736. my $class = ref $self;
  737. bless $self, 'overload::dummy'; # Disable overloading of %{}
  738. my $out = $self->{$key};
  739. bless $self, $class; # Restore overloading
  740. $out;
  741. }
  742. To remove creation of the tied hash on each access, one may an extra
  743. level of indirection which allows a non-circular structure of references:
  744. package two_refs1;
  745. use overload '%{}' => sub { ${shift()}->[1] },
  746. '@{}' => sub { ${shift()}->[0] };
  747. sub new {
  748. my $p = shift;
  749. my $a = [@_];
  750. my %h;
  751. tie %h, $p, $a;
  752. bless \ [$a, \%h], $p;
  753. }
  754. sub gethash {
  755. my %h;
  756. my $self = shift;
  757. tie %h, ref $self, $self;
  758. \%h;
  759. }
  760. sub TIEHASH { my $p = shift; bless \ shift, $p }
  761. my %fields;
  762. my $i = 0;
  763. $fields{$_} = $i++ foreach qw{zero one two three};
  764. sub STORE {
  765. my $a = ${shift()};
  766. my $key = $fields{shift()};
  767. defined $key or die "Out of band access";
  768. $a->[$key] = shift;
  769. }
  770. sub FETCH {
  771. my $a = ${shift()};
  772. my $key = $fields{shift()};
  773. defined $key or die "Out of band access";
  774. $a->[$key];
  775. }
  776. Now if $baz is overloaded like this, then C<$baz> is a reference to a
  777. reference to the intermediate array, which keeps a reference to an
  778. actual array, and the access hash. The tie()ing object for the access
  779. hash is a reference to a reference to the actual array, so
  780. =over
  781. =item *
  782. There are no loops of references.
  783. =item *
  784. Both "objects" which are blessed into the class C<two_refs1> are
  785. references to a reference to an array, thus references to a I<scalar>.
  786. Thus the accessor expression C<$$foo-E<gt>[$ind]> involves no
  787. overloaded operations.
  788. =back
  789. =head2 Symbolic calculator
  790. Put this in F<symbolic.pm> in your Perl library directory:
  791. package symbolic; # Primitive symbolic calculator
  792. use overload nomethod => \&wrap;
  793. sub new { shift; bless ['n', @_] }
  794. sub wrap {
  795. my ($obj, $other, $inv, $meth) = @_;
  796. ($obj, $other) = ($other, $obj) if $inv;
  797. bless [$meth, $obj, $other];
  798. }
  799. This module is very unusual as overloaded modules go: it does not
  800. provide any usual overloaded operators, instead it provides the L<Last
  801. Resort> operator C<nomethod>. In this example the corresponding
  802. subroutine returns an object which encapsulates operations done over
  803. the objects: C<new symbolic 3> contains C<['n', 3]>, C<2 + new
  804. symbolic 3> contains C<['+', 2, ['n', 3]]>.
  805. Here is an example of the script which "calculates" the side of
  806. circumscribed octagon using the above package:
  807. require symbolic;
  808. my $iter = 1; # 2**($iter+2) = 8
  809. my $side = new symbolic 1;
  810. my $cnt = $iter;
  811. while ($cnt--) {
  812. $side = (sqrt(1 + $side**2) - 1)/$side;
  813. }
  814. print "OK\n";
  815. The value of $side is
  816. ['/', ['-', ['sqrt', ['+', 1, ['**', ['n', 1], 2]],
  817. undef], 1], ['n', 1]]
  818. Note that while we obtained this value using a nice little script,
  819. there is no simple way to I<use> this value. In fact this value may
  820. be inspected in debugger (see L<perldebug>), but only if
  821. C<bareStringify> B<O>ption is set, and not via C<p> command.
  822. If one attempts to print this value, then the overloaded operator
  823. C<""> will be called, which will call C<nomethod> operator. The
  824. result of this operator will be stringified again, but this result is
  825. again of type C<symbolic>, which will lead to an infinite loop.
  826. Add a pretty-printer method to the module F<symbolic.pm>:
  827. sub pretty {
  828. my ($meth, $a, $b) = @{+shift};
  829. $a = 'u' unless defined $a;
  830. $b = 'u' unless defined $b;
  831. $a = $a->pretty if ref $a;
  832. $b = $b->pretty if ref $b;
  833. "[$meth $a $b]";
  834. }
  835. Now one can finish the script by
  836. print "side = ", $side->pretty, "\n";
  837. The method C<pretty> is doing object-to-string conversion, so it
  838. is natural to overload the operator C<""> using this method. However,
  839. inside such a method it is not necessary to pretty-print the
  840. I<components> $a and $b of an object. In the above subroutine
  841. C<"[$meth $a $b]"> is a catenation of some strings and components $a
  842. and $b. If these components use overloading, the catenation operator
  843. will look for an overloaded operator C<.>; if not present, it will
  844. look for an overloaded operator C<"">. Thus it is enough to use
  845. use overload nomethod => \&wrap, '""' => \&str;
  846. sub str {
  847. my ($meth, $a, $b) = @{+shift};
  848. $a = 'u' unless defined $a;
  849. $b = 'u' unless defined $b;
  850. "[$meth $a $b]";
  851. }
  852. Now one can change the last line of the script to
  853. print "side = $side\n";
  854. which outputs
  855. side = [/ [- [sqrt [+ 1 [** [n 1 u] 2]] u] 1] [n 1 u]]
  856. and one can inspect the value in debugger using all the possible
  857. methods.
  858. Something is still amiss: consider the loop variable $cnt of the
  859. script. It was a number, not an object. We cannot make this value of
  860. type C<symbolic>, since then the loop will not terminate.
  861. Indeed, to terminate the cycle, the $cnt should become false.
  862. However, the operator C<bool> for checking falsity is overloaded (this
  863. time via overloaded C<"">), and returns a long string, thus any object
  864. of type C<symbolic> is true. To overcome this, we need a way to
  865. compare an object to 0. In fact, it is easier to write a numeric
  866. conversion routine.
  867. Here is the text of F<symbolic.pm> with such a routine added (and
  868. slightly modified str()):
  869. package symbolic; # Primitive symbolic calculator
  870. use overload
  871. nomethod => \&wrap, '""' => \&str, '0+' => \&num;
  872. sub new { shift; bless ['n', @_] }
  873. sub wrap {
  874. my ($obj, $other, $inv, $meth) = @_;
  875. ($obj, $other) = ($other, $obj) if $inv;
  876. bless [$meth, $obj, $other];
  877. }
  878. sub str {
  879. my ($meth, $a, $b) = @{+shift};
  880. $a = 'u' unless defined $a;
  881. if (defined $b) {
  882. "[$meth $a $b]";
  883. } else {
  884. "[$meth $a]";
  885. }
  886. }
  887. my %subr = ( n => sub {$_[0]},
  888. sqrt => sub {sqrt $_[0]},
  889. '-' => sub {shift() - shift()},
  890. '+' => sub {shift() + shift()},
  891. '/' => sub {shift() / shift()},
  892. '*' => sub {shift() * shift()},
  893. '**' => sub {shift() ** shift()},
  894. );
  895. sub num {
  896. my ($meth, $a, $b) = @{+shift};
  897. my $subr = $subr{$meth}
  898. or die "Do not know how to ($meth) in symbolic";
  899. $a = $a->num if ref $a eq __PACKAGE__;
  900. $b = $b->num if ref $b eq __PACKAGE__;
  901. $subr->($a,$b);
  902. }
  903. All the work of numeric conversion is done in %subr and num(). Of
  904. course, %subr is not complete, it contains only operators used in the
  905. example below. Here is the extra-credit question: why do we need an
  906. explicit recursion in num()? (Answer is at the end of this section.)
  907. Use this module like this:
  908. require symbolic;
  909. my $iter = new symbolic 2; # 16-gon
  910. my $side = new symbolic 1;
  911. my $cnt = $iter;
  912. while ($cnt) {
  913. $cnt = $cnt - 1; # Mutator `--' not implemented
  914. $side = (sqrt(1 + $side**2) - 1)/$side;
  915. }
  916. printf "%s=%f\n", $side, $side;
  917. printf "pi=%f\n", $side*(2**($iter+2));
  918. It prints (without so many line breaks)
  919. [/ [- [sqrt [+ 1 [** [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1]
  920. [n 1]] 2]]] 1]
  921. [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]]]=0.198912
  922. pi=3.182598
  923. The above module is very primitive. It does not implement
  924. mutator methods (C<++>, C<-=> and so on), does not do deep copying
  925. (not required without mutators!), and implements only those arithmetic
  926. operations which are used in the example.
  927. To implement most arithmetic operations is easy; one should just use
  928. the tables of operations, and change the code which fills %subr to
  929. my %subr = ( 'n' => sub {$_[0]} );
  930. foreach my $op (split " ", $overload::ops{with_assign}) {
  931. $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
  932. }
  933. my @bins = qw(binary 3way_comparison num_comparison str_comparison);
  934. foreach my $op (split " ", "@overload::ops{ @bins }") {
  935. $subr{$op} = eval "sub {shift() $op shift()}";
  936. }
  937. foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
  938. print "defining `$op'\n";
  939. $subr{$op} = eval "sub {$op shift()}";
  940. }
  941. Due to L<Calling Conventions for Mutators>, we do not need anything
  942. special to make C<+=> and friends work, except filling C<+=> entry of
  943. %subr, and defining a copy constructor (needed since Perl has no
  944. way to know that the implementation of C<'+='> does not mutate
  945. the argument, compare L<Copy Constructor>).
  946. To implement a copy constructor, add C<< '=' => \&cpy >> to C<use overload>
  947. line, and code (this code assumes that mutators change things one level
  948. deep only, so recursive copying is not needed):
  949. sub cpy {
  950. my $self = shift;
  951. bless [@$self], ref $self;
  952. }
  953. To make C<++> and C<--> work, we need to implement actual mutators,
  954. either directly, or in C<nomethod>. We continue to do things inside
  955. C<nomethod>, thus add
  956. if ($meth eq '++' or $meth eq '--') {
  957. @$obj = ($meth, (bless [@$obj]), 1); # Avoid circular reference
  958. return $obj;
  959. }
  960. after the first line of wrap(). This is not a most effective
  961. implementation, one may consider
  962. sub inc { $_[0] = bless ['++', shift, 1]; }
  963. instead.
  964. As a final remark, note that one can fill %subr by
  965. my %subr = ( 'n' => sub {$_[0]} );
  966. foreach my $op (split " ", $overload::ops{with_assign}) {
  967. $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
  968. }
  969. my @bins = qw(binary 3way_comparison num_comparison str_comparison);
  970. foreach my $op (split " ", "@overload::ops{ @bins }") {
  971. $subr{$op} = eval "sub {shift() $op shift()}";
  972. }
  973. foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
  974. $subr{$op} = eval "sub {$op shift()}";
  975. }
  976. $subr{'++'} = $subr{'+'};
  977. $subr{'--'} = $subr{'-'};
  978. This finishes implementation of a primitive symbolic calculator in
  979. 50 lines of Perl code. Since the numeric values of subexpressions
  980. are not cached, the calculator is very slow.
  981. Here is the answer for the exercise: In the case of str(), we need no
  982. explicit recursion since the overloaded C<.>-operator will fall back
  983. to an existing overloaded operator C<"">. Overloaded arithmetic
  984. operators I<do not> fall back to numeric conversion if C<fallback> is
  985. not explicitly requested. Thus without an explicit recursion num()
  986. would convert C<['+', $a, $b]> to C<$a + $b>, which would just rebuild
  987. the argument of num().
  988. If you wonder why defaults for conversion are different for str() and
  989. num(), note how easy it was to write the symbolic calculator. This
  990. simplicity is due to an appropriate choice of defaults. One extra
  991. note: due to the explicit recursion num() is more fragile than sym():
  992. we need to explicitly check for the type of $a and $b. If components
  993. $a and $b happen to be of some related type, this may lead to problems.
  994. =head2 I<Really> symbolic calculator
  995. One may wonder why we call the above calculator symbolic. The reason
  996. is that the actual calculation of the value of expression is postponed
  997. until the value is I<used>.
  998. To see it in action, add a method
  999. sub STORE {
  1000. my $obj = shift;
  1001. $#$obj = 1;
  1002. @$obj->[0,1] = ('=', shift);
  1003. }
  1004. to the package C<symbolic>. After this change one can do
  1005. my $a = new symbolic 3;
  1006. my $b = new symbolic 4;
  1007. my $c = sqrt($a**2 + $b**2);
  1008. and the numeric value of $c becomes 5. However, after calling
  1009. $a->STORE(12); $b->STORE(5);
  1010. the numeric value of $c becomes 13. There is no doubt now that the module
  1011. symbolic provides a I<symbolic> calculator indeed.
  1012. To hide the rough edges under the hood, provide a tie()d interface to the
  1013. package C<symbolic> (compare with L<Metaphor clash>). Add methods
  1014. sub TIESCALAR { my $pack = shift; $pack->new(@_) }
  1015. sub FETCH { shift }
  1016. sub nop { } # Around a bug
  1017. (the bug is described in L<"BUGS">). One can use this new interface as
  1018. tie $a, 'symbolic', 3;
  1019. tie $b, 'symbolic', 4;
  1020. $a->nop; $b->nop; # Around a bug
  1021. my $c = sqrt($a**2 + $b**2);
  1022. Now numeric value of $c is 5. After C<$a = 12; $b = 5> the numeric value
  1023. of $c becomes 13. To insulate the user of the module add a method
  1024. sub vars { my $p = shift; tie($_, $p), $_->nop foreach @_; }
  1025. Now
  1026. my ($a, $b);
  1027. symbolic->vars($a, $b);
  1028. my $c = sqrt($a**2 + $b**2);
  1029. $a = 3; $b = 4;
  1030. printf "c5 %s=%f\n", $c, $c;
  1031. $a = 12; $b = 5;
  1032. printf "c13 %s=%f\n", $c, $c;
  1033. shows that the numeric value of $c follows changes to the values of $a
  1034. and $b.
  1035. =head1 AUTHOR
  1036. Ilya Zakharevich E<lt>F<[email protected]>E<gt>.
  1037. =head1 DIAGNOSTICS
  1038. When Perl is run with the B<-Do> switch or its equivalent, overloading
  1039. induces diagnostic messages.
  1040. Using the C<m> command of Perl debugger (see L<perldebug>) one can
  1041. deduce which operations are overloaded (and which ancestor triggers
  1042. this overloading). Say, if C<eq> is overloaded, then the method C<(eq>
  1043. is shown by debugger. The method C<()> corresponds to the C<fallback>
  1044. key (in fact a presence of this method shows that this package has
  1045. overloading enabled, and it is what is used by the C<Overloaded>
  1046. function of module C<overload>).
  1047. The module might issue the following warnings:
  1048. =over 4
  1049. =item Odd number of arguments for overload::constant
  1050. (W) The call to overload::constant contained an odd number of arguments.
  1051. The arguments should come in pairs.
  1052. =item `%s' is not an overloadable type
  1053. (W) You tried to overload a constant type the overload package is unaware of.
  1054. =item `%s' is not a code reference
  1055. (W) The second (fourth, sixth, ...) argument of overload::constant needs
  1056. to be a code reference. Either an anonymous subroutine, or a reference
  1057. to a subroutine.
  1058. =back
  1059. =head1 BUGS
  1060. Because it is used for overloading, the per-package hash %OVERLOAD now
  1061. has a special meaning in Perl. The symbol table is filled with names
  1062. looking like line-noise.
  1063. For the purpose of inheritance every overloaded package behaves as if
  1064. C<fallback> is present (possibly undefined). This may create
  1065. interesting effects if some package is not overloaded, but inherits
  1066. from two overloaded packages.
  1067. Relation between overloading and tie()ing is broken. Overloading is
  1068. triggered or not basing on the I<previous> class of tie()d value.
  1069. This happens because the presence of overloading is checked too early,
  1070. before any tie()d access is attempted. If the FETCH()ed class of the
  1071. tie()d value does not change, a simple workaround is to access the value
  1072. immediately after tie()ing, so that after this call the I<previous> class
  1073. coincides with the current one.
  1074. B<Needed:> a way to fix this without a speed penalty.
  1075. Barewords are not covered by overloaded string constants.
  1076. This document is confusing. There are grammos and misleading language
  1077. used in places. It would seem a total rewrite is needed.
  1078. =cut