5 $overload::hint_bits = 0x20000; # HINT_LOCALIZE_HH
13 $ {$package . "::OVERLOAD"}{dummy}++; # Register with magic by touching.
14 *{$package . "::()"} = \&nil; # Make it findable via fetchmethod.
16 if ($_ eq 'fallback') {
20 if (not ref $sub and $sub !~ /::/) {
21 $ {$package . "::(" . $_} = $sub;
24 #print STDERR "Setting `$ {'package'}::\cO$_' to \\&`$sub'.\n";
25 *{$package . "::(" . $_} = \&{ $sub };
28 ${$package . "::()"} = $fb; # Make it findable too (fallback only).
32 $package = (caller())[0];
33 # *{$package . "::OVERLOAD"} = \&OVERLOAD;
35 $package->overload::OVERLOAD(@_);
39 $package = (caller())[0];
40 ${$package . "::OVERLOAD"}{dummy}++; # Upgrade the table
43 if ($_ eq 'fallback') {
44 undef $ {$package . "::()"};
46 delete $ {$package . "::"}{"(" . $_};
53 $package = ref $package if ref $package;
59 return undef unless $globref;
60 my $sub = \&{*$globref};
61 return $sub if $sub ne \&nil;
62 return shift->can($ {*$globref});
65 sub OverloadedStringify {
67 $package = ref $package if ref $package;
69 ov_method mycan($package, '(""'), $package
70 or ov_method mycan($package, '(0+'), $package
71 or ov_method mycan($package, '(bool'), $package
72 or ov_method mycan($package, '(nomethod'), $package;
77 $package = ref $package if ref $package;
78 #my $meth = $package->can('(' . shift);
79 ov_method mycan($package, '(' . shift), $package;
80 #return $meth if $meth ne \&nil;
85 my $package = ref $_[0];
86 return "$_[0]" unless $package;
89 my $class = Scalar::Util::blessed($_[0]);
90 my $class_prefix = defined($class) ? "$class=" : "";
91 my $type = Scalar::Util::reftype($_[0]);
92 my $addr = Scalar::Util::refaddr($_[0]);
93 return sprintf("$class_prefix$type(0x%x)", $addr);
97 (ref $_[0] && OverloadedStringify($_[0]) or ref($_[0]) eq 'Regexp') ?
102 sub mycan { # Real can would leave stubs.
103 my ($package, $meth) = @_;
104 return \*{$package . "::$meth"} if defined &{$package . "::$meth"};
106 foreach $p (@{$package . "::ISA"}) {
107 my $out = mycan($p, $meth);
114 'integer' => 0x1000, # HINT_NEW_INTEGER
115 'float' => 0x2000, # HINT_NEW_FLOAT
116 'binary' => 0x4000, # HINT_NEW_BINARY
117 'q' => 0x8000, # HINT_NEW_STRING
118 'qr' => 0x10000, # HINT_NEW_RE
121 %ops = ( with_assign => "+ - * / % ** << >> x .",
122 assign => "+= -= *= /= %= **= <<= >>= x= .=",
123 num_comparison => "< <= > >= == !=",
124 '3way_comparison'=> "<=> cmp",
125 str_comparison => "lt le gt ge eq ne",
129 func => "atan2 cos sin exp abs log sqrt int",
130 conversion => 'bool "" 0+',
132 dereferencing => '${} @{} %{} &{} *{}',
133 special => 'nomethod fallback =');
135 use warnings::register;
137 # Arguments: what, sub
140 warnings::warnif ("Odd number of arguments for overload::constant");
143 elsif (!exists $constants {$_ [0]}) {
144 warnings::warnif ("`$_[0]' is not an overloadable type");
146 elsif (!ref $_ [1] || "$_[1]" !~ /CODE\(0x[\da-f]+\)$/) {
147 # Can't use C<ref $_[1] eq "CODE"> above as code references can be
148 # blessed, and C<ref> would return the package the ref is blessed into.
149 if (warnings::enabled) {
150 $_ [1] = "undef" unless defined $_ [1];
151 warnings::warn ("`$_[1]' is not a code reference");
156 $^H |= $constants{$_[0]} | $overload::hint_bits;
162 sub remove_constant {
163 # Arguments: what, sub
166 $^H &= ~ $constants{$_[0]};
177 overload - Package for overloading perl operations
190 $a = new SomeThing 57;
193 if (overload::Overloaded $b) {...}
195 $strval = overload::StrVal $b;
199 =head2 Declaration of overloaded functions
201 The compilation directive
208 declares function Number::add() for addition, and method muas() in
209 the "class" C<Number> (or one of its base classes)
210 for the assignment form C<*=> of multiplication.
212 Arguments of this directive come in (key, value) pairs. Legal values
213 are values legal inside a C<&{ ... }> call, so the name of a
214 subroutine, a reference to a subroutine, or an anonymous subroutine
215 will all work. Note that values specified as strings are
216 interpreted as methods, not subroutines. Legal keys are listed below.
218 The subroutine C<add> will be called to execute C<$a+$b> if $a
219 is a reference to an object blessed into the package C<Number>, or if $a is
220 not an object from a package with defined mathemagic addition, but $b is a
221 reference to a C<Number>. It can also be called in other situations, like
222 C<$a+=7>, or C<$a++>. See L<MAGIC AUTOGENERATION>. (Mathemagical
223 methods refer to methods triggered by an overloaded mathematical
226 Since overloading respects inheritance via the @ISA hierarchy, the
227 above declaration would also trigger overloading of C<+> and C<*=> in
228 all the packages which inherit from C<Number>.
230 =head2 Calling Conventions for Binary Operations
232 The functions specified in the C<use overload ...> directive are called
233 with three (in one particular case with four, see L<Last Resort>)
234 arguments. If the corresponding operation is binary, then the first
235 two arguments are the two arguments of the operation. However, due to
236 general object calling conventions, the first argument should always be
237 an object in the package, so in the situation of C<7+$a>, the
238 order of the arguments is interchanged. It probably does not matter
239 when implementing the addition method, but whether the arguments
240 are reversed is vital to the subtraction method. The method can
241 query this information by examining the third argument, which can take
242 three different values:
248 the order of arguments is as in the current operation.
252 the arguments are reversed.
256 the current operation is an assignment variant (as in
257 C<$a+=7>), but the usual function is called instead. This additional
258 information can be used to generate some optimizations. Compare
259 L<Calling Conventions for Mutators>.
263 =head2 Calling Conventions for Unary Operations
265 Unary operation are considered binary operations with the second
266 argument being C<undef>. Thus the functions that overloads C<{"++"}>
267 is called with arguments C<($a,undef,'')> when $a++ is executed.
269 =head2 Calling Conventions for Mutators
271 Two types of mutators have different calling conventions:
275 =item C<++> and C<-->
277 The routines which implement these operators are expected to actually
278 I<mutate> their arguments. So, assuming that $obj is a reference to a
281 sub incr { my $n = $ {$_[0]}; ++$n; $_[0] = bless \$n}
283 is an appropriate implementation of overloaded C<++>. Note that
285 sub incr { ++$ {$_[0]} ; shift }
287 is OK if used with preincrement and with postincrement. (In the case
288 of postincrement a copying will be performed, see L<Copy Constructor>.)
290 =item C<x=> and other assignment versions
292 There is nothing special about these methods. They may change the
293 value of their arguments, and may leave it as is. The result is going
294 to be assigned to the value in the left-hand-side if different from
297 This allows for the same method to be used as overloaded C<+=> and
298 C<+>. Note that this is I<allowed>, but not recommended, since by the
299 semantic of L<"Fallback"> Perl will call the method for C<+> anyway,
300 if C<+=> is not overloaded.
304 B<Warning.> Due to the presence of assignment versions of operations,
305 routines which may be called in assignment context may create
306 self-referential structures. Currently Perl will not free self-referential
307 structures until cycles are C<explicitly> broken. You may get problems
308 when traversing your structures too.
312 use overload '+' => sub { bless [ \$_[0], \$_[1] ] };
314 is asking for trouble, since for code C<$obj += $foo> the subroutine
315 is called as C<$obj = add($obj, $foo, undef)>, or C<$obj = [\$obj,
316 \$foo]>. If using such a subroutine is an important optimization, one
317 can overload C<+=> explicitly by a non-"optimized" version, or switch
318 to non-optimized version if C<not defined $_[2]> (see
319 L<Calling Conventions for Binary Operations>).
321 Even if no I<explicit> assignment-variants of operators are present in
322 the script, they may be generated by the optimizer. Say, C<",$obj,"> or
323 C<',' . $obj . ','> may be both optimized to
325 my $tmp = ',' . $obj; $tmp .= ',';
327 =head2 Overloadable Operations
329 The following symbols can be specified in C<use overload> directive:
333 =item * I<Arithmetic operations>
335 "+", "+=", "-", "-=", "*", "*=", "/", "/=", "%", "%=",
336 "**", "**=", "<<", "<<=", ">>", ">>=", "x", "x=", ".", ".=",
338 For these operations a substituted non-assignment variant can be called if
339 the assignment variant is not available. Methods for operations C<+>,
340 C<->, C<+=>, and C<-=> can be called to automatically generate
341 increment and decrement methods. The operation C<-> can be used to
342 autogenerate missing methods for unary minus or C<abs>.
344 See L<"MAGIC AUTOGENERATION">, L<"Calling Conventions for Mutators"> and
345 L<"Calling Conventions for Binary Operations">) for details of these
348 =item * I<Comparison operations>
350 "<", "<=", ">", ">=", "==", "!=", "<=>",
351 "lt", "le", "gt", "ge", "eq", "ne", "cmp",
353 If the corresponding "spaceship" variant is available, it can be
354 used to substitute for the missing operation. During C<sort>ing
355 arrays, C<cmp> is used to compare values subject to C<use overload>.
357 =item * I<Bit operations>
359 "&", "^", "|", "neg", "!", "~",
361 C<neg> stands for unary minus. If the method for C<neg> is not
362 specified, it can be autogenerated using the method for
363 subtraction. If the method for C<!> is not specified, it can be
364 autogenerated using the methods for C<bool>, or C<"">, or C<0+>.
366 =item * I<Increment and decrement>
370 If undefined, addition and subtraction methods can be
371 used instead. These operations are called both in prefix and
374 =item * I<Transcendental functions>
376 "atan2", "cos", "sin", "exp", "abs", "log", "sqrt", "int"
378 If C<abs> is unavailable, it can be autogenerated using methods
379 for "E<lt>" or "E<lt>=E<gt>" combined with either unary minus or subtraction.
381 Note that traditionally the Perl function L<int> rounds to 0, thus for
382 floating-point-like types one should follow the same semantic. If
383 C<int> is unavailable, it can be autogenerated using the overloading of
386 =item * I<Boolean, string and numeric conversion>
390 If one or two of these operations are not overloaded, the remaining ones can
391 be used instead. C<bool> is used in the flow control operators
392 (like C<while>) and for the ternary C<?:> operation. These functions can
393 return any arbitrary Perl value. If the corresponding operation for this value
394 is overloaded too, that operation will be called again with this value.
396 As a special case if the overload returns the object itself then it will
397 be used directly. An overloaded conversion returning the object is
398 probably a bug, because you're likely to get something that looks like
399 C<YourPackage=HASH(0x8172b34)>.
405 If not overloaded, the argument will be converted to a filehandle or
406 glob (which may require a stringification). The same overloading
407 happens both for the I<read-filehandle> syntax C<E<lt>$varE<gt>> and
408 I<globbing> syntax C<E<lt>${var}E<gt>>.
410 B<BUGS> Even in list context, the iterator is currently called only
411 once and with scalar context.
413 =item * I<Dereferencing>
415 '${}', '@{}', '%{}', '&{}', '*{}'.
417 If not overloaded, the argument will be dereferenced I<as is>, thus
418 should be of correct type. These functions should return a reference
419 of correct type, or another object with overloaded dereferencing.
421 As a special case if the overload returns the object itself then it
422 will be used directly (provided it is the correct type).
424 The dereference operators must be specified explicitly they will not be passed to
429 "nomethod", "fallback", "=",
431 see L<SPECIAL SYMBOLS FOR C<use overload>>.
435 See L<"Fallback"> for an explanation of when a missing method can be
438 A computer-readable form of the above table is available in the hash
439 %overload::ops, with values being space-separated lists of names:
441 with_assign => '+ - * / % ** << >> x .',
442 assign => '+= -= *= /= %= **= <<= >>= x= .=',
443 num_comparison => '< <= > >= == !=',
444 '3way_comparison'=> '<=> cmp',
445 str_comparison => 'lt le gt ge eq ne',
449 func => 'atan2 cos sin exp abs log sqrt',
450 conversion => 'bool "" 0+',
452 dereferencing => '${} @{} %{} &{} *{}',
453 special => 'nomethod fallback ='
455 =head2 Inheritance and overloading
457 Inheritance interacts with overloading in two ways.
461 =item Strings as values of C<use overload> directive
465 use overload key => value;
467 is a string, it is interpreted as a method name.
469 =item Overloading of an operation is inherited by derived classes
471 Any class derived from an overloaded class is also overloaded. The
472 set of overloaded methods is the union of overloaded methods of all
473 the ancestors. If some method is overloaded in several ancestor, then
474 which description will be used is decided by the usual inheritance
477 If C<A> inherits from C<B> and C<C> (in this order), C<B> overloads
478 C<+> with C<\&D::plus_sub>, and C<C> overloads C<+> by C<"plus_meth">,
479 then the subroutine C<D::plus_sub> will be called to implement
480 operation C<+> for an object in package C<A>.
484 Note that since the value of the C<fallback> key is not a subroutine,
485 its inheritance is not governed by the above rules. In the current
486 implementation, the value of C<fallback> in the first overloaded
487 ancestor is used, but this is accidental and subject to change.
489 =head1 SPECIAL SYMBOLS FOR C<use overload>
491 Three keys are recognized by Perl that are not covered by the above
496 C<"nomethod"> should be followed by a reference to a function of four
497 parameters. If defined, it is called when the overloading mechanism
498 cannot find a method for some operation. The first three arguments of
499 this function coincide with the arguments for the corresponding method if
500 it were found, the fourth argument is the symbol
501 corresponding to the missing method. If several methods are tried,
502 the last one is used. Say, C<1-$a> can be equivalent to
504 &nomethodMethod($a,1,1,"-")
506 if the pair C<"nomethod" =E<gt> "nomethodMethod"> was specified in the
507 C<use overload> directive.
509 The C<"nomethod"> mechanism is I<not> used for the dereference operators
510 ( ${} @{} %{} &{} *{} ).
513 If some operation cannot be resolved, and there is no function
514 assigned to C<"nomethod">, then an exception will be raised via die()--
515 unless C<"fallback"> was specified as a key in C<use overload> directive.
520 The key C<"fallback"> governs what to do if a method for a particular
521 operation is not found. Three different cases are possible depending on
522 the value of C<"fallback">:
529 substituted method (see L<MAGIC AUTOGENERATION>). If this fails, it
530 then tries to calls C<"nomethod"> value; if missing, an exception
535 The same as for the C<undef> value, but no exception is raised. Instead,
536 it silently reverts to what it would have done were there no C<use overload>
539 =item * defined, but FALSE
541 No autogeneration is tried. Perl tries to call
542 C<"nomethod"> value, and if this is missing, raises an exception.
546 B<Note.> C<"fallback"> inheritance via @ISA is not carved in stone
547 yet, see L<"Inheritance and overloading">.
549 =head2 Copy Constructor
551 The value for C<"="> is a reference to a function with three
552 arguments, i.e., it looks like the other values in C<use
553 overload>. However, it does not overload the Perl assignment
554 operator. This would go against Camel hair.
556 This operation is called in the situations when a mutator is applied
557 to a reference that shares its object with some other reference, such
563 To make this change $a and not change $b, a copy of C<$$a> is made,
564 and $a is assigned a reference to this new object. This operation is
565 done during execution of the C<++$a>, and not during the assignment,
566 (so before the increment C<$$a> coincides with C<$$b>). This is only
567 done if C<++> is expressed via a method for C<'++'> or C<'+='> (or
568 C<nomethod>). Note that if this operation is expressed via C<'+'>
569 a nonmutator, i.e., as in
574 then C<$a> does not reference a new copy of C<$$a>, since $$a does not
575 appear as lvalue when the above code is executed.
577 If the copy constructor is required during the execution of some mutator,
578 but a method for C<'='> was not specified, it can be autogenerated as a
579 string copy if the object is a plain scalar.
585 The actually executed code for
588 Something else which does not modify $a or $b....
594 Something else which does not modify $a or $b....
595 $a = $a->clone(undef,"");
598 if $b was mathemagical, and C<'++'> was overloaded with C<\&incr>,
599 C<'='> was overloaded with C<\&clone>.
603 Same behaviour is triggered by C<$b = $a++>, which is consider a synonym for
606 =head1 MAGIC AUTOGENERATION
608 If a method for an operation is not found, and the value for C<"fallback"> is
609 TRUE or undefined, Perl tries to autogenerate a substitute method for
610 the missing operation based on the defined operations. Autogenerated method
611 substitutions are possible for the following operations:
615 =item I<Assignment forms of arithmetic operations>
617 C<$a+=$b> can use the method for C<"+"> if the method for C<"+=">
620 =item I<Conversion operations>
622 String, numeric, and boolean conversion are calculated in terms of one
623 another if not all of them are defined.
625 =item I<Increment and decrement>
627 The C<++$a> operation can be expressed in terms of C<$a+=1> or C<$a+1>,
628 and C<$a--> in terms of C<$a-=1> and C<$a-1>.
632 can be expressed in terms of C<$aE<lt>0> and C<-$a> (or C<0-$a>).
636 can be expressed in terms of subtraction.
640 C<!> and C<not> can be expressed in terms of boolean conversion, or
641 string or numerical conversion.
643 =item I<Concatenation>
645 can be expressed in terms of string conversion.
647 =item I<Comparison operations>
649 can be expressed in terms of its "spaceship" counterpart: either
650 C<E<lt>=E<gt>> or C<cmp>:
652 <, >, <=, >=, ==, != in terms of <=>
653 lt, gt, le, ge, eq, ne in terms of cmp
657 <> in terms of builtin operations
659 =item I<Dereferencing>
661 ${} @{} %{} &{} *{} in terms of builtin operations
663 =item I<Copy operator>
665 can be expressed in terms of an assignment to the dereferenced value, if this
666 value is a scalar and not a reference.
670 =head1 Losing overloading
672 The restriction for the comparison operation is that even if, for example,
673 `C<cmp>' should return a blessed reference, the autogenerated `C<lt>'
674 function will produce only a standard logical value based on the
675 numerical value of the result of `C<cmp>'. In particular, a working
676 numeric conversion is needed in this case (possibly expressed in terms of
679 Similarly, C<.=> and C<x=> operators lose their mathemagical properties
680 if the string conversion substitution is applied.
682 When you chop() a mathemagical object it is promoted to a string and its
683 mathemagical properties are lost. The same can happen with other
686 =head1 Run-time Overloading
688 Since all C<use> directives are executed at compile-time, the only way to
689 change overloading during run-time is to
691 eval 'use overload "+" => \&addmethod';
695 eval 'no overload "+", "--", "<="';
697 though the use of these constructs during run-time is questionable.
699 =head1 Public functions
701 Package C<overload.pm> provides the following public functions:
705 =item overload::StrVal(arg)
707 Gives string value of C<arg> as in absence of stringify overloading. If you
708 are using this to get the address of a reference (useful for checking if two
709 references point to the same thing) then you may be better off using
710 C<Scalar::Util::refaddr()>, which is faster.
712 =item overload::Overloaded(arg)
714 Returns true if C<arg> is subject to overloading of some operations.
716 =item overload::Method(obj,op)
718 Returns C<undef> or a reference to the method that implements C<op>.
722 =head1 Overloading constants
724 For some application Perl parser mangles constants too much. It is possible
725 to hook into this process via overload::constant() and overload::remove_constant()
728 These functions take a hash as an argument. The recognized keys of this hash
735 to overload integer constants,
739 to overload floating point constants,
743 to overload octal and hexadecimal constants,
747 to overload C<q>-quoted strings, constant pieces of C<qq>- and C<qx>-quoted
748 strings and here-documents,
752 to overload constant pieces of regular expressions.
756 The corresponding values are references to functions which take three arguments:
757 the first one is the I<initial> string form of the constant, the second one
758 is how Perl interprets this constant, the third one is how the constant is used.
759 Note that the initial string form does not
760 contain string delimiters, and has backslashes in backslash-delimiter
761 combinations stripped (thus the value of delimiter is not relevant for
762 processing of this string). The return value of this function is how this
763 constant is going to be interpreted by Perl. The third argument is undefined
764 unless for overloaded C<q>- and C<qr>- constants, it is C<q> in single-quote
765 context (comes from strings, regular expressions, and single-quote HERE
766 documents), it is C<tr> for arguments of C<tr>/C<y> operators,
767 it is C<s> for right-hand side of C<s>-operator, and it is C<qq> otherwise.
769 Since an expression C<"ab$cd,,"> is just a shortcut for C<'ab' . $cd . ',,'>,
770 it is expected that overloaded constant strings are equipped with reasonable
771 overloaded catenation operator, otherwise absurd results will result.
772 Similarly, negative numbers are considered as negations of positive constants.
774 Note that it is probably meaningless to call the functions overload::constant()
775 and overload::remove_constant() from anywhere but import() and unimport() methods.
776 From these methods they may be called as
781 die "unknown import: @_" unless @_ == 1 and $_[0] eq ':constant';
782 overload::constant integer => sub {Math::BigInt->new(shift)};
785 B<BUGS> Currently overloaded-ness of constants does not propagate
788 =head1 IMPLEMENTATION
790 What follows is subject to change RSN.
792 The table of methods for all operations is cached in magic for the
793 symbol table hash for the package. The cache is invalidated during
794 processing of C<use overload>, C<no overload>, new function
795 definitions, and changes in @ISA. However, this invalidation remains
796 unprocessed until the next C<bless>ing into the package. Hence if you
797 want to change overloading structure dynamically, you'll need an
798 additional (fake) C<bless>ing to update the table.
800 (Every SVish thing has a magic queue, and magic is an entry in that
801 queue. This is how a single variable may participate in multiple
802 forms of magic simultaneously. For instance, environment variables
803 regularly have two forms at once: their %ENV magic and their taint
804 magic. However, the magic which implements overloading is applied to
805 the stashes, which are rarely used directly, thus should not slow down
808 If an object belongs to a package using overload, it carries a special
809 flag. Thus the only speed penalty during arithmetic operations without
810 overloading is the checking of this flag.
812 In fact, if C<use overload> is not present, there is almost no overhead
813 for overloadable operations, so most programs should not suffer
814 measurable performance penalties. A considerable effort was made to
815 minimize the overhead when overload is used in some package, but the
816 arguments in question do not belong to packages using overload. When
817 in doubt, test your speed with C<use overload> and without it. So far
818 there have been no reports of substantial speed degradation if Perl is
819 compiled with optimization turned on.
821 There is no size penalty for data if overload is not used. The only
822 size penalty if overload is used in some package is that I<all> the
823 packages acquire a magic during the next C<bless>ing into the
824 package. This magic is three-words-long for packages without
825 overloading, and carries the cache table if the package is overloaded.
827 Copying (C<$a=$b>) is shallow; however, a one-level-deep copying is
828 carried out before any operation that can imply an assignment to the
829 object $a (or $b) refers to, like C<$a++>. You can override this
830 behavior by defining your own copy constructor (see L<"Copy Constructor">).
832 It is expected that arguments to methods that are not explicitly supposed
833 to be changed are constant (but this is not enforced).
835 =head1 Metaphor clash
837 One may wonder why the semantic of overloaded C<=> is so counter intuitive.
838 If it I<looks> counter intuitive to you, you are subject to a metaphor
841 Here is a Perl object metaphor:
843 I< object is a reference to blessed data>
845 and an arithmetic metaphor:
847 I< object is a thing by itself>.
849 The I<main> problem of overloading C<=> is the fact that these metaphors
850 imply different actions on the assignment C<$a = $b> if $a and $b are
851 objects. Perl-think implies that $a becomes a reference to whatever
852 $b was referencing. Arithmetic-think implies that the value of "object"
853 $a is changed to become the value of the object $b, preserving the fact
854 that $a and $b are separate entities.
856 The difference is not relevant in the absence of mutators. After
857 a Perl-way assignment an operation which mutates the data referenced by $a
858 would change the data referenced by $b too. Effectively, after
859 C<$a = $b> values of $a and $b become I<indistinguishable>.
861 On the other hand, anyone who has used algebraic notation knows the
862 expressive power of the arithmetic metaphor. Overloading works hard
863 to enable this metaphor while preserving the Perlian way as far as
864 possible. Since it is not possible to freely mix two contradicting
865 metaphors, overloading allows the arithmetic way to write things I<as
866 far as all the mutators are called via overloaded access only>. The
867 way it is done is described in L<Copy Constructor>.
869 If some mutator methods are directly applied to the overloaded values,
870 one may need to I<explicitly unlink> other values which references the
875 $b = $a; # $b is "linked" to $a
877 $a = $a->clone; # Unlink $b from $a
880 Note that overloaded access makes this transparent:
883 $b = $a; # $b is "linked" to $a
884 $a += 4; # would unlink $b automagically
886 However, it would not make
889 $a = 4; # Now $a is a plain 4, not 'Data'
891 preserve "objectness" of $a. But Perl I<has> a way to make assignments
892 to an object do whatever you want. It is just not the overload, but
893 tie()ing interface (see L<perlfunc/tie>). Adding a FETCH() method
894 which returns the object itself, and STORE() method which changes the
895 value of the object, one can reproduce the arithmetic metaphor in its
896 completeness, at least for variables which were tie()d from the start.
898 (Note that a workaround for a bug may be needed, see L<"BUGS">.)
902 Please add examples to what follows!
904 =head2 Two-face scalars
906 Put this in F<two_face.pm> in your Perl library directory:
908 package two_face; # Scalars with separate string and
910 sub new { my $p = shift; bless [@_], $p }
911 use overload '""' => \&str, '0+' => \&num, fallback => 1;
918 my $seven = new two_face ("vii", 7);
919 printf "seven=$seven, seven=%d, eight=%d\n", $seven, $seven+1;
920 print "seven contains `i'\n" if $seven =~ /i/;
922 (The second line creates a scalar which has both a string value, and a
923 numeric value.) This prints:
925 seven=vii, seven=7, eight=8
928 =head2 Two-face references
930 Suppose you want to create an object which is accessible as both an
931 array reference and a hash reference.
934 use overload '%{}' => \&gethash, '@{}' => sub { $ {shift()} };
942 tie %h, ref $self, $self;
946 sub TIEHASH { my $p = shift; bless \ shift, $p }
949 $fields{$_} = $i++ foreach qw{zero one two three};
951 my $self = ${shift()};
952 my $key = $fields{shift()};
953 defined $key or die "Out of band access";
954 $$self->[$key] = shift;
957 my $self = ${shift()};
958 my $key = $fields{shift()};
959 defined $key or die "Out of band access";
963 Now one can access an object using both the array and hash syntax:
965 my $bar = new two_refs 3,4,5,6;
967 $bar->{two} == 11 or die 'bad hash fetch';
969 Note several important features of this example. First of all, the
970 I<actual> type of $bar is a scalar reference, and we do not overload
971 the scalar dereference. Thus we can get the I<actual> non-overloaded
972 contents of $bar by just using C<$$bar> (what we do in functions which
973 overload dereference). Similarly, the object returned by the
974 TIEHASH() method is a scalar reference.
976 Second, we create a new tied hash each time the hash syntax is used.
977 This allows us not to worry about a possibility of a reference loop,
978 which would lead to a memory leak.
980 Both these problems can be cured. Say, if we want to overload hash
981 dereference on a reference to an object which is I<implemented> as a
982 hash itself, the only problem one has to circumvent is how to access
983 this I<actual> hash (as opposed to the I<virtual> hash exhibited by the
984 overloaded dereference operator). Here is one possible fetching routine:
987 my ($self, $key) = (shift, shift);
988 my $class = ref $self;
989 bless $self, 'overload::dummy'; # Disable overloading of %{}
990 my $out = $self->{$key};
991 bless $self, $class; # Restore overloading
995 To remove creation of the tied hash on each access, one may an extra
996 level of indirection which allows a non-circular structure of references:
999 use overload '%{}' => sub { ${shift()}->[1] },
1000 '@{}' => sub { ${shift()}->[0] };
1006 bless \ [$a, \%h], $p;
1011 tie %h, ref $self, $self;
1015 sub TIEHASH { my $p = shift; bless \ shift, $p }
1018 $fields{$_} = $i++ foreach qw{zero one two three};
1021 my $key = $fields{shift()};
1022 defined $key or die "Out of band access";
1027 my $key = $fields{shift()};
1028 defined $key or die "Out of band access";
1032 Now if $baz is overloaded like this, then C<$baz> is a reference to a
1033 reference to the intermediate array, which keeps a reference to an
1034 actual array, and the access hash. The tie()ing object for the access
1035 hash is a reference to a reference to the actual array, so
1041 There are no loops of references.
1045 Both "objects" which are blessed into the class C<two_refs1> are
1046 references to a reference to an array, thus references to a I<scalar>.
1047 Thus the accessor expression C<$$foo-E<gt>[$ind]> involves no
1048 overloaded operations.
1052 =head2 Symbolic calculator
1054 Put this in F<symbolic.pm> in your Perl library directory:
1056 package symbolic; # Primitive symbolic calculator
1057 use overload nomethod => \&wrap;
1059 sub new { shift; bless ['n', @_] }
1061 my ($obj, $other, $inv, $meth) = @_;
1062 ($obj, $other) = ($other, $obj) if $inv;
1063 bless [$meth, $obj, $other];
1066 This module is very unusual as overloaded modules go: it does not
1067 provide any usual overloaded operators, instead it provides the L<Last
1068 Resort> operator C<nomethod>. In this example the corresponding
1069 subroutine returns an object which encapsulates operations done over
1070 the objects: C<new symbolic 3> contains C<['n', 3]>, C<2 + new
1071 symbolic 3> contains C<['+', 2, ['n', 3]]>.
1073 Here is an example of the script which "calculates" the side of
1074 circumscribed octagon using the above package:
1077 my $iter = 1; # 2**($iter+2) = 8
1078 my $side = new symbolic 1;
1082 $side = (sqrt(1 + $side**2) - 1)/$side;
1086 The value of $side is
1088 ['/', ['-', ['sqrt', ['+', 1, ['**', ['n', 1], 2]],
1089 undef], 1], ['n', 1]]
1091 Note that while we obtained this value using a nice little script,
1092 there is no simple way to I<use> this value. In fact this value may
1093 be inspected in debugger (see L<perldebug>), but ony if
1094 C<bareStringify> B<O>ption is set, and not via C<p> command.
1096 If one attempts to print this value, then the overloaded operator
1097 C<""> will be called, which will call C<nomethod> operator. The
1098 result of this operator will be stringified again, but this result is
1099 again of type C<symbolic>, which will lead to an infinite loop.
1101 Add a pretty-printer method to the module F<symbolic.pm>:
1104 my ($meth, $a, $b) = @{+shift};
1105 $a = 'u' unless defined $a;
1106 $b = 'u' unless defined $b;
1107 $a = $a->pretty if ref $a;
1108 $b = $b->pretty if ref $b;
1112 Now one can finish the script by
1114 print "side = ", $side->pretty, "\n";
1116 The method C<pretty> is doing object-to-string conversion, so it
1117 is natural to overload the operator C<""> using this method. However,
1118 inside such a method it is not necessary to pretty-print the
1119 I<components> $a and $b of an object. In the above subroutine
1120 C<"[$meth $a $b]"> is a catenation of some strings and components $a
1121 and $b. If these components use overloading, the catenation operator
1122 will look for an overloaded operator C<.>; if not present, it will
1123 look for an overloaded operator C<"">. Thus it is enough to use
1125 use overload nomethod => \&wrap, '""' => \&str;
1127 my ($meth, $a, $b) = @{+shift};
1128 $a = 'u' unless defined $a;
1129 $b = 'u' unless defined $b;
1133 Now one can change the last line of the script to
1135 print "side = $side\n";
1139 side = [/ [- [sqrt [+ 1 [** [n 1 u] 2]] u] 1] [n 1 u]]
1141 and one can inspect the value in debugger using all the possible
1144 Something is still amiss: consider the loop variable $cnt of the
1145 script. It was a number, not an object. We cannot make this value of
1146 type C<symbolic>, since then the loop will not terminate.
1148 Indeed, to terminate the cycle, the $cnt should become false.
1149 However, the operator C<bool> for checking falsity is overloaded (this
1150 time via overloaded C<"">), and returns a long string, thus any object
1151 of type C<symbolic> is true. To overcome this, we need a way to
1152 compare an object to 0. In fact, it is easier to write a numeric
1155 Here is the text of F<symbolic.pm> with such a routine added (and
1156 slightly modified str()):
1158 package symbolic; # Primitive symbolic calculator
1160 nomethod => \&wrap, '""' => \&str, '0+' => \#
1162 sub new { shift; bless ['n', @_] }
1164 my ($obj, $other, $inv, $meth) = @_;
1165 ($obj, $other) = ($other, $obj) if $inv;
1166 bless [$meth, $obj, $other];
1169 my ($meth, $a, $b) = @{+shift};
1170 $a = 'u' unless defined $a;
1177 my %subr = ( n => sub {$_[0]},
1178 sqrt => sub {sqrt $_[0]},
1179 '-' => sub {shift() - shift()},
1180 '+' => sub {shift() + shift()},
1181 '/' => sub {shift() / shift()},
1182 '*' => sub {shift() * shift()},
1183 '**' => sub {shift() ** shift()},
1186 my ($meth, $a, $b) = @{+shift};
1187 my $subr = $subr{$meth}
1188 or die "Do not know how to ($meth) in symbolic";
1189 $a = $a->num if ref $a eq __PACKAGE__;
1190 $b = $b->num if ref $b eq __PACKAGE__;
1194 All the work of numeric conversion is done in %subr and num(). Of
1195 course, %subr is not complete, it contains only operators used in the
1196 example below. Here is the extra-credit question: why do we need an
1197 explicit recursion in num()? (Answer is at the end of this section.)
1199 Use this module like this:
1202 my $iter = new symbolic 2; # 16-gon
1203 my $side = new symbolic 1;
1207 $cnt = $cnt - 1; # Mutator `--' not implemented
1208 $side = (sqrt(1 + $side**2) - 1)/$side;
1210 printf "%s=%f\n", $side, $side;
1211 printf "pi=%f\n", $side*(2**($iter+2));
1213 It prints (without so many line breaks)
1215 [/ [- [sqrt [+ 1 [** [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1]
1217 [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]]]=0.198912
1220 The above module is very primitive. It does not implement
1221 mutator methods (C<++>, C<-=> and so on), does not do deep copying
1222 (not required without mutators!), and implements only those arithmetic
1223 operations which are used in the example.
1225 To implement most arithmetic operations is easy; one should just use
1226 the tables of operations, and change the code which fills %subr to
1228 my %subr = ( 'n' => sub {$_[0]} );
1229 foreach my $op (split " ", $overload::ops{with_assign}) {
1230 $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
1232 my @bins = qw(binary 3way_comparison num_comparison str_comparison);
1233 foreach my $op (split " ", "@overload::ops{ @bins }") {
1234 $subr{$op} = eval "sub {shift() $op shift()}";
1236 foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
1237 print "defining `$op'\n";
1238 $subr{$op} = eval "sub {$op shift()}";
1241 Due to L<Calling Conventions for Mutators>, we do not need anything
1242 special to make C<+=> and friends work, except filling C<+=> entry of
1243 %subr, and defining a copy constructor (needed since Perl has no
1244 way to know that the implementation of C<'+='> does not mutate
1245 the argument, compare L<Copy Constructor>).
1247 To implement a copy constructor, add C<< '=' => \&cpy >> to C<use overload>
1248 line, and code (this code assumes that mutators change things one level
1249 deep only, so recursive copying is not needed):
1253 bless [@$self], ref $self;
1256 To make C<++> and C<--> work, we need to implement actual mutators,
1257 either directly, or in C<nomethod>. We continue to do things inside
1258 C<nomethod>, thus add
1260 if ($meth eq '++' or $meth eq '--') {
1261 @$obj = ($meth, (bless [@$obj]), 1); # Avoid circular reference
1265 after the first line of wrap(). This is not a most effective
1266 implementation, one may consider
1268 sub inc { $_[0] = bless ['++', shift, 1]; }
1272 As a final remark, note that one can fill %subr by
1274 my %subr = ( 'n' => sub {$_[0]} );
1275 foreach my $op (split " ", $overload::ops{with_assign}) {
1276 $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
1278 my @bins = qw(binary 3way_comparison num_comparison str_comparison);
1279 foreach my $op (split " ", "@overload::ops{ @bins }") {
1280 $subr{$op} = eval "sub {shift() $op shift()}";
1282 foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
1283 $subr{$op} = eval "sub {$op shift()}";
1285 $subr{'++'} = $subr{'+'};
1286 $subr{'--'} = $subr{'-'};
1288 This finishes implementation of a primitive symbolic calculator in
1289 50 lines of Perl code. Since the numeric values of subexpressions
1290 are not cached, the calculator is very slow.
1292 Here is the answer for the exercise: In the case of str(), we need no
1293 explicit recursion since the overloaded C<.>-operator will fall back
1294 to an existing overloaded operator C<"">. Overloaded arithmetic
1295 operators I<do not> fall back to numeric conversion if C<fallback> is
1296 not explicitly requested. Thus without an explicit recursion num()
1297 would convert C<['+', $a, $b]> to C<$a + $b>, which would just rebuild
1298 the argument of num().
1300 If you wonder why defaults for conversion are different for str() and
1301 num(), note how easy it was to write the symbolic calculator. This
1302 simplicity is due to an appropriate choice of defaults. One extra
1303 note: due to the explicit recursion num() is more fragile than sym():
1304 we need to explicitly check for the type of $a and $b. If components
1305 $a and $b happen to be of some related type, this may lead to problems.
1307 =head2 I<Really> symbolic calculator
1309 One may wonder why we call the above calculator symbolic. The reason
1310 is that the actual calculation of the value of expression is postponed
1311 until the value is I<used>.
1313 To see it in action, add a method
1318 @$obj->[0,1] = ('=', shift);
1321 to the package C<symbolic>. After this change one can do
1323 my $a = new symbolic 3;
1324 my $b = new symbolic 4;
1325 my $c = sqrt($a**2 + $b**2);
1327 and the numeric value of $c becomes 5. However, after calling
1329 $a->STORE(12); $b->STORE(5);
1331 the numeric value of $c becomes 13. There is no doubt now that the module
1332 symbolic provides a I<symbolic> calculator indeed.
1334 To hide the rough edges under the hood, provide a tie()d interface to the
1335 package C<symbolic> (compare with L<Metaphor clash>). Add methods
1337 sub TIESCALAR { my $pack = shift; $pack->new(@_) }
1339 sub nop { } # Around a bug
1341 (the bug is described in L<"BUGS">). One can use this new interface as
1343 tie $a, 'symbolic', 3;
1344 tie $b, 'symbolic', 4;
1345 $a->nop; $b->nop; # Around a bug
1347 my $c = sqrt($a**2 + $b**2);
1349 Now numeric value of $c is 5. After C<$a = 12; $b = 5> the numeric value
1350 of $c becomes 13. To insulate the user of the module add a method
1352 sub vars { my $p = shift; tie($_, $p), $_->nop foreach @_; }
1357 symbolic->vars($a, $b);
1358 my $c = sqrt($a**2 + $b**2);
1361 printf "c5 %s=%f\n", $c, $c;
1364 printf "c13 %s=%f\n", $c, $c;
1366 shows that the numeric value of $c follows changes to the values of $a
1371 Ilya Zakharevich E<lt>F<ilya@math.mps.ohio-state.edu>E<gt>.
1375 When Perl is run with the B<-Do> switch or its equivalent, overloading
1376 induces diagnostic messages.
1378 Using the C<m> command of Perl debugger (see L<perldebug>) one can
1379 deduce which operations are overloaded (and which ancestor triggers
1380 this overloading). Say, if C<eq> is overloaded, then the method C<(eq>
1381 is shown by debugger. The method C<()> corresponds to the C<fallback>
1382 key (in fact a presence of this method shows that this package has
1383 overloading enabled, and it is what is used by the C<Overloaded>
1384 function of module C<overload>).
1386 The module might issue the following warnings:
1390 =item Odd number of arguments for overload::constant
1392 (W) The call to overload::constant contained an odd number of arguments.
1393 The arguments should come in pairs.
1395 =item `%s' is not an overloadable type
1397 (W) You tried to overload a constant type the overload package is unaware of.
1399 =item `%s' is not a code reference
1401 (W) The second (fourth, sixth, ...) argument of overload::constant needs
1402 to be a code reference. Either an anonymous subroutine, or a reference
1409 Because it is used for overloading, the per-package hash %OVERLOAD now
1410 has a special meaning in Perl. The symbol table is filled with names
1411 looking like line-noise.
1413 For the purpose of inheritance every overloaded package behaves as if
1414 C<fallback> is present (possibly undefined). This may create
1415 interesting effects if some package is not overloaded, but inherits
1416 from two overloaded packages.
1418 Relation between overloading and tie()ing is broken. Overloading is
1419 triggered or not basing on the I<previous> class of tie()d value.
1421 This happens because the presence of overloading is checked too early,
1422 before any tie()d access is attempted. If the FETCH()ed class of the
1423 tie()d value does not change, a simple workaround is to access the value
1424 immediately after tie()ing, so that after this call the I<previous> class
1425 coincides with the current one.
1427 B<Needed:> a way to fix this without a speed penalty.
1429 Barewords are not covered by overloaded string constants.
1431 This document is confusing. There are grammos and misleading language
1432 used in places. It would seem a total rewrite is needed.