11 $ {$package . "::OVERLOAD"}{dummy}++; # Register with magic by touching.
12 *{$package . "::()"} = \&nil; # Make it findable via fetchmethod.
14 if ($_ eq 'fallback') {
18 if (not ref $sub and $sub !~ /::/) {
19 $ {$package . "::(" . $_} = $sub;
22 #print STDERR "Setting `$ {'package'}::\cO$_' to \\&`$sub'.\n";
23 *{$package . "::(" . $_} = \&{ $sub };
26 ${$package . "::()"} = $fb; # Make it findable too (fallback only).
30 $package = (caller())[0];
31 # *{$package . "::OVERLOAD"} = \&OVERLOAD;
33 $package->overload::OVERLOAD(@_);
37 $package = (caller())[0];
38 ${$package . "::OVERLOAD"}{dummy}++; # Upgrade the table
41 if ($_ eq 'fallback') {
42 undef $ {$package . "::()"};
44 delete $ {$package . "::"}{"(" . $_};
51 $package = ref $package if ref $package;
57 return undef unless $globref;
58 my $sub = \&{*$globref};
59 return $sub if $sub ne \&nil;
60 return shift->can($ {*$globref});
63 sub OverloadedStringify {
65 $package = ref $package if ref $package;
67 ov_method mycan($package, '(""'), $package
68 or ov_method mycan($package, '(0+'), $package
69 or ov_method mycan($package, '(bool'), $package
70 or ov_method mycan($package, '(nomethod'), $package;
79 $package = Scalar::Util::blessed($package);
80 return undef if !defined $package;
82 #my $meth = $package->can('(' . shift);
83 ov_method mycan($package, '(' . shift), $package;
84 #return $meth if $meth ne \&nil;
89 my $package = ref $_[0];
90 return "$_[0]" unless $package;
95 my $class = Scalar::Util::blessed($_[0]);
96 my $class_prefix = defined($class) ? "$class=" : "";
97 my $type = Scalar::Util::reftype($_[0]);
98 my $addr = Scalar::Util::refaddr($_[0]);
99 return sprintf("$class_prefix$type(0x%x)", $addr);
104 sub mycan { # Real can would leave stubs.
105 my ($package, $meth) = @_;
111 my $mro = mro::get_linear_isa($package);
112 foreach my $p (@$mro) {
113 my $fqmeth = $p . q{::} . $meth;
114 return \*{$fqmeth} if defined &{$fqmeth};
121 'integer' => 0x1000, # HINT_NEW_INTEGER
122 'float' => 0x2000, # HINT_NEW_FLOAT
123 'binary' => 0x4000, # HINT_NEW_BINARY
124 'q' => 0x8000, # HINT_NEW_STRING
125 'qr' => 0x10000, # HINT_NEW_RE
128 %ops = ( with_assign => "+ - * / % ** << >> x .",
129 assign => "+= -= *= /= %= **= <<= >>= x= .=",
130 num_comparison => "< <= > >= == !=",
131 '3way_comparison'=> "<=> cmp",
132 str_comparison => "lt le gt ge eq ne",
133 binary => '& &= | |= ^ ^=',
136 func => "atan2 cos sin exp abs log sqrt int",
137 conversion => 'bool "" 0+',
139 dereferencing => '${} @{} %{} &{} *{}',
140 special => 'nomethod fallback =');
142 use warnings::register;
144 # Arguments: what, sub
147 warnings::warnif ("Odd number of arguments for overload::constant");
150 elsif (!exists $constants {$_ [0]}) {
151 warnings::warnif ("`$_[0]' is not an overloadable type");
153 elsif (!ref $_ [1] || "$_[1]" !~ /CODE\(0x[\da-f]+\)$/) {
154 # Can't use C<ref $_[1] eq "CODE"> above as code references can be
155 # blessed, and C<ref> would return the package the ref is blessed into.
156 if (warnings::enabled) {
157 $_ [1] = "undef" unless defined $_ [1];
158 warnings::warn ("`$_[1]' is not a code reference");
163 $^H |= $constants{$_[0]};
169 sub remove_constant {
170 # Arguments: what, sub
173 $^H &= ~ $constants{$_[0]};
184 overload - Package for overloading Perl operations
197 $a = new SomeThing 57;
200 if (overload::Overloaded $b) {...}
202 $strval = overload::StrVal $b;
206 =head2 Declaration of overloaded functions
208 The compilation directive
215 declares function Number::add() for addition, and method muas() in
216 the "class" C<Number> (or one of its base classes)
217 for the assignment form C<*=> of multiplication.
219 Arguments of this directive come in (key, value) pairs. Legal values
220 are values legal inside a C<&{ ... }> call, so the name of a
221 subroutine, a reference to a subroutine, or an anonymous subroutine
222 will all work. Note that values specified as strings are
223 interpreted as methods, not subroutines. Legal keys are listed below.
225 The subroutine C<add> will be called to execute C<$a+$b> if $a
226 is a reference to an object blessed into the package C<Number>, or if $a is
227 not an object from a package with defined mathemagic addition, but $b is a
228 reference to a C<Number>. It can also be called in other situations, like
229 C<$a+=7>, or C<$a++>. See L<MAGIC AUTOGENERATION>. (Mathemagical
230 methods refer to methods triggered by an overloaded mathematical
233 Since overloading respects inheritance via the @ISA hierarchy, the
234 above declaration would also trigger overloading of C<+> and C<*=> in
235 all the packages which inherit from C<Number>.
237 =head2 Calling Conventions for Binary Operations
239 The functions specified in the C<use overload ...> directive are called
240 with three (in one particular case with four, see L<Last Resort>)
241 arguments. If the corresponding operation is binary, then the first
242 two arguments are the two arguments of the operation. However, due to
243 general object calling conventions, the first argument should always be
244 an object in the package, so in the situation of C<7+$a>, the
245 order of the arguments is interchanged. It probably does not matter
246 when implementing the addition method, but whether the arguments
247 are reversed is vital to the subtraction method. The method can
248 query this information by examining the third argument, which can take
249 three different values:
255 the order of arguments is as in the current operation.
259 the arguments are reversed.
263 the current operation is an assignment variant (as in
264 C<$a+=7>), but the usual function is called instead. This additional
265 information can be used to generate some optimizations. Compare
266 L<Calling Conventions for Mutators>.
270 =head2 Calling Conventions for Unary Operations
272 Unary operation are considered binary operations with the second
273 argument being C<undef>. Thus the functions that overloads C<{"++"}>
274 is called with arguments C<($a,undef,'')> when $a++ is executed.
276 =head2 Calling Conventions for Mutators
278 Two types of mutators have different calling conventions:
282 =item C<++> and C<-->
284 The routines which implement these operators are expected to actually
285 I<mutate> their arguments. So, assuming that $obj is a reference to a
288 sub incr { my $n = $ {$_[0]}; ++$n; $_[0] = bless \$n}
290 is an appropriate implementation of overloaded C<++>. Note that
292 sub incr { ++$ {$_[0]} ; shift }
294 is OK if used with preincrement and with postincrement. (In the case
295 of postincrement a copying will be performed, see L<Copy Constructor>.)
297 =item C<x=> and other assignment versions
299 There is nothing special about these methods. They may change the
300 value of their arguments, and may leave it as is. The result is going
301 to be assigned to the value in the left-hand-side if different from
304 This allows for the same method to be used as overloaded C<+=> and
305 C<+>. Note that this is I<allowed>, but not recommended, since by the
306 semantic of L<"Fallback"> Perl will call the method for C<+> anyway,
307 if C<+=> is not overloaded.
311 B<Warning.> Due to the presence of assignment versions of operations,
312 routines which may be called in assignment context may create
313 self-referential structures. Currently Perl will not free self-referential
314 structures until cycles are C<explicitly> broken. You may get problems
315 when traversing your structures too.
319 use overload '+' => sub { bless [ \$_[0], \$_[1] ] };
321 is asking for trouble, since for code C<$obj += $foo> the subroutine
322 is called as C<$obj = add($obj, $foo, undef)>, or C<$obj = [\$obj,
323 \$foo]>. If using such a subroutine is an important optimization, one
324 can overload C<+=> explicitly by a non-"optimized" version, or switch
325 to non-optimized version if C<not defined $_[2]> (see
326 L<Calling Conventions for Binary Operations>).
328 Even if no I<explicit> assignment-variants of operators are present in
329 the script, they may be generated by the optimizer. Say, C<",$obj,"> or
330 C<',' . $obj . ','> may be both optimized to
332 my $tmp = ',' . $obj; $tmp .= ',';
334 =head2 Overloadable Operations
336 The following symbols can be specified in C<use overload> directive:
340 =item * I<Arithmetic operations>
342 "+", "+=", "-", "-=", "*", "*=", "/", "/=", "%", "%=",
343 "**", "**=", "<<", "<<=", ">>", ">>=", "x", "x=", ".", ".=",
345 For these operations a substituted non-assignment variant can be called if
346 the assignment variant is not available. Methods for operations C<+>,
347 C<->, C<+=>, and C<-=> can be called to automatically generate
348 increment and decrement methods. The operation C<-> can be used to
349 autogenerate missing methods for unary minus or C<abs>.
351 See L<"MAGIC AUTOGENERATION">, L<"Calling Conventions for Mutators"> and
352 L<"Calling Conventions for Binary Operations">) for details of these
355 =item * I<Comparison operations>
357 "<", "<=", ">", ">=", "==", "!=", "<=>",
358 "lt", "le", "gt", "ge", "eq", "ne", "cmp",
360 If the corresponding "spaceship" variant is available, it can be
361 used to substitute for the missing operation. During C<sort>ing
362 arrays, C<cmp> is used to compare values subject to C<use overload>.
364 =item * I<Bit operations>
366 "&", "&=", "^", "^=", "|", "|=", "neg", "!", "~",
368 C<neg> stands for unary minus. If the method for C<neg> is not
369 specified, it can be autogenerated using the method for
370 subtraction. If the method for C<!> is not specified, it can be
371 autogenerated using the methods for C<bool>, or C<"">, or C<0+>.
373 The same remarks in L<"Arithmetic operations"> about
374 assignment-variants and autogeneration apply for
375 bit operations C<"&">, C<"^">, and C<"|"> as well.
377 =item * I<Increment and decrement>
381 If undefined, addition and subtraction methods can be
382 used instead. These operations are called both in prefix and
385 =item * I<Transcendental functions>
387 "atan2", "cos", "sin", "exp", "abs", "log", "sqrt", "int"
389 If C<abs> is unavailable, it can be autogenerated using methods
390 for "E<lt>" or "E<lt>=E<gt>" combined with either unary minus or subtraction.
392 Note that traditionally the Perl function L<int> rounds to 0, thus for
393 floating-point-like types one should follow the same semantic. If
394 C<int> is unavailable, it can be autogenerated using the overloading of
397 =item * I<Boolean, string and numeric conversion>
401 If one or two of these operations are not overloaded, the remaining ones can
402 be used instead. C<bool> is used in the flow control operators
403 (like C<while>) and for the ternary C<?:> operation. These functions can
404 return any arbitrary Perl value. If the corresponding operation for this value
405 is overloaded too, that operation will be called again with this value.
407 As a special case if the overload returns the object itself then it will
408 be used directly. An overloaded conversion returning the object is
409 probably a bug, because you're likely to get something that looks like
410 C<YourPackage=HASH(0x8172b34)>.
416 If not overloaded, the argument will be converted to a filehandle or
417 glob (which may require a stringification). The same overloading
418 happens both for the I<read-filehandle> syntax C<E<lt>$varE<gt>> and
419 I<globbing> syntax C<E<lt>${var}E<gt>>.
421 B<BUGS> Even in list context, the iterator is currently called only
422 once and with scalar context.
424 =item * I<Dereferencing>
426 '${}', '@{}', '%{}', '&{}', '*{}'.
428 If not overloaded, the argument will be dereferenced I<as is>, thus
429 should be of correct type. These functions should return a reference
430 of correct type, or another object with overloaded dereferencing.
432 As a special case if the overload returns the object itself then it
433 will be used directly (provided it is the correct type).
435 The dereference operators must be specified explicitly they will not be passed to
440 "nomethod", "fallback", "=", "~~",
442 see L<SPECIAL SYMBOLS FOR C<use overload>>.
446 See L<"Fallback"> for an explanation of when a missing method can be
449 A computer-readable form of the above table is available in the hash
450 %overload::ops, with values being space-separated lists of names:
452 with_assign => '+ - * / % ** << >> x .',
453 assign => '+= -= *= /= %= **= <<= >>= x= .=',
454 num_comparison => '< <= > >= == !=',
455 '3way_comparison'=> '<=> cmp',
456 str_comparison => 'lt le gt ge eq ne',
457 binary => '& &= | |= ^ ^=',
460 func => 'atan2 cos sin exp abs log sqrt',
461 conversion => 'bool "" 0+',
463 dereferencing => '${} @{} %{} &{} *{}',
464 special => 'nomethod fallback ='
466 =head2 Inheritance and overloading
468 Inheritance interacts with overloading in two ways.
472 =item Strings as values of C<use overload> directive
476 use overload key => value;
478 is a string, it is interpreted as a method name.
480 =item Overloading of an operation is inherited by derived classes
482 Any class derived from an overloaded class is also overloaded. The
483 set of overloaded methods is the union of overloaded methods of all
484 the ancestors. If some method is overloaded in several ancestor, then
485 which description will be used is decided by the usual inheritance
488 If C<A> inherits from C<B> and C<C> (in this order), C<B> overloads
489 C<+> with C<\&D::plus_sub>, and C<C> overloads C<+> by C<"plus_meth">,
490 then the subroutine C<D::plus_sub> will be called to implement
491 operation C<+> for an object in package C<A>.
495 Note that since the value of the C<fallback> key is not a subroutine,
496 its inheritance is not governed by the above rules. In the current
497 implementation, the value of C<fallback> in the first overloaded
498 ancestor is used, but this is accidental and subject to change.
500 =head1 SPECIAL SYMBOLS FOR C<use overload>
502 Three keys are recognized by Perl that are not covered by the above
507 C<"nomethod"> should be followed by a reference to a function of four
508 parameters. If defined, it is called when the overloading mechanism
509 cannot find a method for some operation. The first three arguments of
510 this function coincide with the arguments for the corresponding method if
511 it were found, the fourth argument is the symbol
512 corresponding to the missing method. If several methods are tried,
513 the last one is used. Say, C<1-$a> can be equivalent to
515 &nomethodMethod($a,1,1,"-")
517 if the pair C<"nomethod" =E<gt> "nomethodMethod"> was specified in the
518 C<use overload> directive.
520 The C<"nomethod"> mechanism is I<not> used for the dereference operators
521 ( ${} @{} %{} &{} *{} ).
524 If some operation cannot be resolved, and there is no function
525 assigned to C<"nomethod">, then an exception will be raised via die()--
526 unless C<"fallback"> was specified as a key in C<use overload> directive.
531 The key C<"fallback"> governs what to do if a method for a particular
532 operation is not found. Three different cases are possible depending on
533 the value of C<"fallback">:
540 substituted method (see L<MAGIC AUTOGENERATION>). If this fails, it
541 then tries to calls C<"nomethod"> value; if missing, an exception
546 The same as for the C<undef> value, but no exception is raised. Instead,
547 it silently reverts to what it would have done were there no C<use overload>
550 =item * defined, but FALSE
552 No autogeneration is tried. Perl tries to call
553 C<"nomethod"> value, and if this is missing, raises an exception.
557 B<Note.> C<"fallback"> inheritance via @ISA is not carved in stone
558 yet, see L<"Inheritance and overloading">.
562 The key C<"~~"> allows you to override the smart matching used by
563 the switch construct. See L<feature>.
565 =head2 Copy Constructor
567 The value for C<"="> is a reference to a function with three
568 arguments, i.e., it looks like the other values in C<use
569 overload>. However, it does not overload the Perl assignment
570 operator. This would go against Camel hair.
572 This operation is called in the situations when a mutator is applied
573 to a reference that shares its object with some other reference, such
579 To make this change $a and not change $b, a copy of C<$$a> is made,
580 and $a is assigned a reference to this new object. This operation is
581 done during execution of the C<++$a>, and not during the assignment,
582 (so before the increment C<$$a> coincides with C<$$b>). This is only
583 done if C<++> is expressed via a method for C<'++'> or C<'+='> (or
584 C<nomethod>). Note that if this operation is expressed via C<'+'>
585 a nonmutator, i.e., as in
590 then C<$a> does not reference a new copy of C<$$a>, since $$a does not
591 appear as lvalue when the above code is executed.
593 If the copy constructor is required during the execution of some mutator,
594 but a method for C<'='> was not specified, it can be autogenerated as a
595 string copy if the object is a plain scalar or a simple assignment if it
602 The actually executed code for
605 Something else which does not modify $a or $b....
611 Something else which does not modify $a or $b....
612 $a = $a->clone(undef,"");
615 if $b was mathemagical, and C<'++'> was overloaded with C<\&incr>,
616 C<'='> was overloaded with C<\&clone>.
620 Same behaviour is triggered by C<$b = $a++>, which is consider a synonym for
623 =head1 MAGIC AUTOGENERATION
625 If a method for an operation is not found, and the value for C<"fallback"> is
626 TRUE or undefined, Perl tries to autogenerate a substitute method for
627 the missing operation based on the defined operations. Autogenerated method
628 substitutions are possible for the following operations:
632 =item I<Assignment forms of arithmetic operations>
634 C<$a+=$b> can use the method for C<"+"> if the method for C<"+=">
637 =item I<Conversion operations>
639 String, numeric, and boolean conversion are calculated in terms of one
640 another if not all of them are defined.
642 =item I<Increment and decrement>
644 The C<++$a> operation can be expressed in terms of C<$a+=1> or C<$a+1>,
645 and C<$a--> in terms of C<$a-=1> and C<$a-1>.
649 can be expressed in terms of C<$aE<lt>0> and C<-$a> (or C<0-$a>).
653 can be expressed in terms of subtraction.
657 C<!> and C<not> can be expressed in terms of boolean conversion, or
658 string or numerical conversion.
660 =item I<Concatenation>
662 can be expressed in terms of string conversion.
664 =item I<Comparison operations>
666 can be expressed in terms of its "spaceship" counterpart: either
667 C<E<lt>=E<gt>> or C<cmp>:
669 <, >, <=, >=, ==, != in terms of <=>
670 lt, gt, le, ge, eq, ne in terms of cmp
674 <> in terms of builtin operations
676 =item I<Dereferencing>
678 ${} @{} %{} &{} *{} in terms of builtin operations
680 =item I<Copy operator>
682 can be expressed in terms of an assignment to the dereferenced value, if this
683 value is a scalar and not a reference, or simply a reference assignment
688 =head1 Minimal set of overloaded operations
690 Since some operations can be automatically generated from others, there is
691 a minimal set of operations that need to be overloaded in order to have
692 the complete set of overloaded operations at one's disposal.
693 Of course, the autogenerated operations may not do exactly what the user
694 expects. See L<MAGIC AUTOGENERATION> above. The minimal set is:
699 atan2 cos sin exp log sqrt int
701 Additionally, you need to define at least one of string, boolean or
702 numeric conversions because any one can be used to emulate the others.
703 The string conversion can also be used to emulate concatenation.
705 =head1 Losing overloading
707 The restriction for the comparison operation is that even if, for example,
708 `C<cmp>' should return a blessed reference, the autogenerated `C<lt>'
709 function will produce only a standard logical value based on the
710 numerical value of the result of `C<cmp>'. In particular, a working
711 numeric conversion is needed in this case (possibly expressed in terms of
714 Similarly, C<.=> and C<x=> operators lose their mathemagical properties
715 if the string conversion substitution is applied.
717 When you chop() a mathemagical object it is promoted to a string and its
718 mathemagical properties are lost. The same can happen with other
721 =head1 Run-time Overloading
723 Since all C<use> directives are executed at compile-time, the only way to
724 change overloading during run-time is to
726 eval 'use overload "+" => \&addmethod';
730 eval 'no overload "+", "--", "<="';
732 though the use of these constructs during run-time is questionable.
734 =head1 Public functions
736 Package C<overload.pm> provides the following public functions:
740 =item overload::StrVal(arg)
742 Gives string value of C<arg> as in absence of stringify overloading. If you
743 are using this to get the address of a reference (useful for checking if two
744 references point to the same thing) then you may be better off using
745 C<Scalar::Util::refaddr()>, which is faster.
747 =item overload::Overloaded(arg)
749 Returns true if C<arg> is subject to overloading of some operations.
751 =item overload::Method(obj,op)
753 Returns C<undef> or a reference to the method that implements C<op>.
757 =head1 Overloading constants
759 For some applications, the Perl parser mangles constants too much.
760 It is possible to hook into this process via C<overload::constant()>
761 and C<overload::remove_constant()> functions.
763 These functions take a hash as an argument. The recognized keys of this hash
770 to overload integer constants,
774 to overload floating point constants,
778 to overload octal and hexadecimal constants,
782 to overload C<q>-quoted strings, constant pieces of C<qq>- and C<qx>-quoted
783 strings and here-documents,
787 to overload constant pieces of regular expressions.
791 The corresponding values are references to functions which take three arguments:
792 the first one is the I<initial> string form of the constant, the second one
793 is how Perl interprets this constant, the third one is how the constant is used.
794 Note that the initial string form does not
795 contain string delimiters, and has backslashes in backslash-delimiter
796 combinations stripped (thus the value of delimiter is not relevant for
797 processing of this string). The return value of this function is how this
798 constant is going to be interpreted by Perl. The third argument is undefined
799 unless for overloaded C<q>- and C<qr>- constants, it is C<q> in single-quote
800 context (comes from strings, regular expressions, and single-quote HERE
801 documents), it is C<tr> for arguments of C<tr>/C<y> operators,
802 it is C<s> for right-hand side of C<s>-operator, and it is C<qq> otherwise.
804 Since an expression C<"ab$cd,,"> is just a shortcut for C<'ab' . $cd . ',,'>,
805 it is expected that overloaded constant strings are equipped with reasonable
806 overloaded catenation operator, otherwise absurd results will result.
807 Similarly, negative numbers are considered as negations of positive constants.
809 Note that it is probably meaningless to call the functions overload::constant()
810 and overload::remove_constant() from anywhere but import() and unimport() methods.
811 From these methods they may be called as
816 die "unknown import: @_" unless @_ == 1 and $_[0] eq ':constant';
817 overload::constant integer => sub {Math::BigInt->new(shift)};
820 =head1 IMPLEMENTATION
822 What follows is subject to change RSN.
824 The table of methods for all operations is cached in magic for the
825 symbol table hash for the package. The cache is invalidated during
826 processing of C<use overload>, C<no overload>, new function
827 definitions, and changes in @ISA. However, this invalidation remains
828 unprocessed until the next C<bless>ing into the package. Hence if you
829 want to change overloading structure dynamically, you'll need an
830 additional (fake) C<bless>ing to update the table.
832 (Every SVish thing has a magic queue, and magic is an entry in that
833 queue. This is how a single variable may participate in multiple
834 forms of magic simultaneously. For instance, environment variables
835 regularly have two forms at once: their %ENV magic and their taint
836 magic. However, the magic which implements overloading is applied to
837 the stashes, which are rarely used directly, thus should not slow down
840 If an object belongs to a package using overload, it carries a special
841 flag. Thus the only speed penalty during arithmetic operations without
842 overloading is the checking of this flag.
844 In fact, if C<use overload> is not present, there is almost no overhead
845 for overloadable operations, so most programs should not suffer
846 measurable performance penalties. A considerable effort was made to
847 minimize the overhead when overload is used in some package, but the
848 arguments in question do not belong to packages using overload. When
849 in doubt, test your speed with C<use overload> and without it. So far
850 there have been no reports of substantial speed degradation if Perl is
851 compiled with optimization turned on.
853 There is no size penalty for data if overload is not used. The only
854 size penalty if overload is used in some package is that I<all> the
855 packages acquire a magic during the next C<bless>ing into the
856 package. This magic is three-words-long for packages without
857 overloading, and carries the cache table if the package is overloaded.
859 Copying (C<$a=$b>) is shallow; however, a one-level-deep copying is
860 carried out before any operation that can imply an assignment to the
861 object $a (or $b) refers to, like C<$a++>. You can override this
862 behavior by defining your own copy constructor (see L<"Copy Constructor">).
864 It is expected that arguments to methods that are not explicitly supposed
865 to be changed are constant (but this is not enforced).
867 =head1 Metaphor clash
869 One may wonder why the semantic of overloaded C<=> is so counter intuitive.
870 If it I<looks> counter intuitive to you, you are subject to a metaphor
873 Here is a Perl object metaphor:
875 I< object is a reference to blessed data>
877 and an arithmetic metaphor:
879 I< object is a thing by itself>.
881 The I<main> problem of overloading C<=> is the fact that these metaphors
882 imply different actions on the assignment C<$a = $b> if $a and $b are
883 objects. Perl-think implies that $a becomes a reference to whatever
884 $b was referencing. Arithmetic-think implies that the value of "object"
885 $a is changed to become the value of the object $b, preserving the fact
886 that $a and $b are separate entities.
888 The difference is not relevant in the absence of mutators. After
889 a Perl-way assignment an operation which mutates the data referenced by $a
890 would change the data referenced by $b too. Effectively, after
891 C<$a = $b> values of $a and $b become I<indistinguishable>.
893 On the other hand, anyone who has used algebraic notation knows the
894 expressive power of the arithmetic metaphor. Overloading works hard
895 to enable this metaphor while preserving the Perlian way as far as
896 possible. Since it is not possible to freely mix two contradicting
897 metaphors, overloading allows the arithmetic way to write things I<as
898 far as all the mutators are called via overloaded access only>. The
899 way it is done is described in L<Copy Constructor>.
901 If some mutator methods are directly applied to the overloaded values,
902 one may need to I<explicitly unlink> other values which references the
907 $b = $a; # $b is "linked" to $a
909 $a = $a->clone; # Unlink $b from $a
912 Note that overloaded access makes this transparent:
915 $b = $a; # $b is "linked" to $a
916 $a += 4; # would unlink $b automagically
918 However, it would not make
921 $a = 4; # Now $a is a plain 4, not 'Data'
923 preserve "objectness" of $a. But Perl I<has> a way to make assignments
924 to an object do whatever you want. It is just not the overload, but
925 tie()ing interface (see L<perlfunc/tie>). Adding a FETCH() method
926 which returns the object itself, and STORE() method which changes the
927 value of the object, one can reproduce the arithmetic metaphor in its
928 completeness, at least for variables which were tie()d from the start.
930 (Note that a workaround for a bug may be needed, see L<"BUGS">.)
934 Please add examples to what follows!
936 =head2 Two-face scalars
938 Put this in F<two_face.pm> in your Perl library directory:
940 package two_face; # Scalars with separate string and
942 sub new { my $p = shift; bless [@_], $p }
943 use overload '""' => \&str, '0+' => \&num, fallback => 1;
950 my $seven = new two_face ("vii", 7);
951 printf "seven=$seven, seven=%d, eight=%d\n", $seven, $seven+1;
952 print "seven contains `i'\n" if $seven =~ /i/;
954 (The second line creates a scalar which has both a string value, and a
955 numeric value.) This prints:
957 seven=vii, seven=7, eight=8
960 =head2 Two-face references
962 Suppose you want to create an object which is accessible as both an
963 array reference and a hash reference.
966 use overload '%{}' => \&gethash, '@{}' => sub { $ {shift()} };
974 tie %h, ref $self, $self;
978 sub TIEHASH { my $p = shift; bless \ shift, $p }
981 $fields{$_} = $i++ foreach qw{zero one two three};
983 my $self = ${shift()};
984 my $key = $fields{shift()};
985 defined $key or die "Out of band access";
986 $$self->[$key] = shift;
989 my $self = ${shift()};
990 my $key = $fields{shift()};
991 defined $key or die "Out of band access";
995 Now one can access an object using both the array and hash syntax:
997 my $bar = new two_refs 3,4,5,6;
999 $bar->{two} == 11 or die 'bad hash fetch';
1001 Note several important features of this example. First of all, the
1002 I<actual> type of $bar is a scalar reference, and we do not overload
1003 the scalar dereference. Thus we can get the I<actual> non-overloaded
1004 contents of $bar by just using C<$$bar> (what we do in functions which
1005 overload dereference). Similarly, the object returned by the
1006 TIEHASH() method is a scalar reference.
1008 Second, we create a new tied hash each time the hash syntax is used.
1009 This allows us not to worry about a possibility of a reference loop,
1010 which would lead to a memory leak.
1012 Both these problems can be cured. Say, if we want to overload hash
1013 dereference on a reference to an object which is I<implemented> as a
1014 hash itself, the only problem one has to circumvent is how to access
1015 this I<actual> hash (as opposed to the I<virtual> hash exhibited by the
1016 overloaded dereference operator). Here is one possible fetching routine:
1019 my ($self, $key) = (shift, shift);
1020 my $class = ref $self;
1021 bless $self, 'overload::dummy'; # Disable overloading of %{}
1022 my $out = $self->{$key};
1023 bless $self, $class; # Restore overloading
1027 To remove creation of the tied hash on each access, one may an extra
1028 level of indirection which allows a non-circular structure of references:
1031 use overload '%{}' => sub { ${shift()}->[1] },
1032 '@{}' => sub { ${shift()}->[0] };
1038 bless \ [$a, \%h], $p;
1043 tie %h, ref $self, $self;
1047 sub TIEHASH { my $p = shift; bless \ shift, $p }
1050 $fields{$_} = $i++ foreach qw{zero one two three};
1053 my $key = $fields{shift()};
1054 defined $key or die "Out of band access";
1059 my $key = $fields{shift()};
1060 defined $key or die "Out of band access";
1064 Now if $baz is overloaded like this, then C<$baz> is a reference to a
1065 reference to the intermediate array, which keeps a reference to an
1066 actual array, and the access hash. The tie()ing object for the access
1067 hash is a reference to a reference to the actual array, so
1073 There are no loops of references.
1077 Both "objects" which are blessed into the class C<two_refs1> are
1078 references to a reference to an array, thus references to a I<scalar>.
1079 Thus the accessor expression C<$$foo-E<gt>[$ind]> involves no
1080 overloaded operations.
1084 =head2 Symbolic calculator
1086 Put this in F<symbolic.pm> in your Perl library directory:
1088 package symbolic; # Primitive symbolic calculator
1089 use overload nomethod => \&wrap;
1091 sub new { shift; bless ['n', @_] }
1093 my ($obj, $other, $inv, $meth) = @_;
1094 ($obj, $other) = ($other, $obj) if $inv;
1095 bless [$meth, $obj, $other];
1098 This module is very unusual as overloaded modules go: it does not
1099 provide any usual overloaded operators, instead it provides the L<Last
1100 Resort> operator C<nomethod>. In this example the corresponding
1101 subroutine returns an object which encapsulates operations done over
1102 the objects: C<new symbolic 3> contains C<['n', 3]>, C<2 + new
1103 symbolic 3> contains C<['+', 2, ['n', 3]]>.
1105 Here is an example of the script which "calculates" the side of
1106 circumscribed octagon using the above package:
1109 my $iter = 1; # 2**($iter+2) = 8
1110 my $side = new symbolic 1;
1114 $side = (sqrt(1 + $side**2) - 1)/$side;
1118 The value of $side is
1120 ['/', ['-', ['sqrt', ['+', 1, ['**', ['n', 1], 2]],
1121 undef], 1], ['n', 1]]
1123 Note that while we obtained this value using a nice little script,
1124 there is no simple way to I<use> this value. In fact this value may
1125 be inspected in debugger (see L<perldebug>), but only if
1126 C<bareStringify> B<O>ption is set, and not via C<p> command.
1128 If one attempts to print this value, then the overloaded operator
1129 C<""> will be called, which will call C<nomethod> operator. The
1130 result of this operator will be stringified again, but this result is
1131 again of type C<symbolic>, which will lead to an infinite loop.
1133 Add a pretty-printer method to the module F<symbolic.pm>:
1136 my ($meth, $a, $b) = @{+shift};
1137 $a = 'u' unless defined $a;
1138 $b = 'u' unless defined $b;
1139 $a = $a->pretty if ref $a;
1140 $b = $b->pretty if ref $b;
1144 Now one can finish the script by
1146 print "side = ", $side->pretty, "\n";
1148 The method C<pretty> is doing object-to-string conversion, so it
1149 is natural to overload the operator C<""> using this method. However,
1150 inside such a method it is not necessary to pretty-print the
1151 I<components> $a and $b of an object. In the above subroutine
1152 C<"[$meth $a $b]"> is a catenation of some strings and components $a
1153 and $b. If these components use overloading, the catenation operator
1154 will look for an overloaded operator C<.>; if not present, it will
1155 look for an overloaded operator C<"">. Thus it is enough to use
1157 use overload nomethod => \&wrap, '""' => \&str;
1159 my ($meth, $a, $b) = @{+shift};
1160 $a = 'u' unless defined $a;
1161 $b = 'u' unless defined $b;
1165 Now one can change the last line of the script to
1167 print "side = $side\n";
1171 side = [/ [- [sqrt [+ 1 [** [n 1 u] 2]] u] 1] [n 1 u]]
1173 and one can inspect the value in debugger using all the possible
1176 Something is still amiss: consider the loop variable $cnt of the
1177 script. It was a number, not an object. We cannot make this value of
1178 type C<symbolic>, since then the loop will not terminate.
1180 Indeed, to terminate the cycle, the $cnt should become false.
1181 However, the operator C<bool> for checking falsity is overloaded (this
1182 time via overloaded C<"">), and returns a long string, thus any object
1183 of type C<symbolic> is true. To overcome this, we need a way to
1184 compare an object to 0. In fact, it is easier to write a numeric
1187 Here is the text of F<symbolic.pm> with such a routine added (and
1188 slightly modified str()):
1190 package symbolic; # Primitive symbolic calculator
1192 nomethod => \&wrap, '""' => \&str, '0+' => \#
1194 sub new { shift; bless ['n', @_] }
1196 my ($obj, $other, $inv, $meth) = @_;
1197 ($obj, $other) = ($other, $obj) if $inv;
1198 bless [$meth, $obj, $other];
1201 my ($meth, $a, $b) = @{+shift};
1202 $a = 'u' unless defined $a;
1209 my %subr = ( n => sub {$_[0]},
1210 sqrt => sub {sqrt $_[0]},
1211 '-' => sub {shift() - shift()},
1212 '+' => sub {shift() + shift()},
1213 '/' => sub {shift() / shift()},
1214 '*' => sub {shift() * shift()},
1215 '**' => sub {shift() ** shift()},
1218 my ($meth, $a, $b) = @{+shift};
1219 my $subr = $subr{$meth}
1220 or die "Do not know how to ($meth) in symbolic";
1221 $a = $a->num if ref $a eq __PACKAGE__;
1222 $b = $b->num if ref $b eq __PACKAGE__;
1226 All the work of numeric conversion is done in %subr and num(). Of
1227 course, %subr is not complete, it contains only operators used in the
1228 example below. Here is the extra-credit question: why do we need an
1229 explicit recursion in num()? (Answer is at the end of this section.)
1231 Use this module like this:
1234 my $iter = new symbolic 2; # 16-gon
1235 my $side = new symbolic 1;
1239 $cnt = $cnt - 1; # Mutator `--' not implemented
1240 $side = (sqrt(1 + $side**2) - 1)/$side;
1242 printf "%s=%f\n", $side, $side;
1243 printf "pi=%f\n", $side*(2**($iter+2));
1245 It prints (without so many line breaks)
1247 [/ [- [sqrt [+ 1 [** [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1]
1249 [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]]]=0.198912
1252 The above module is very primitive. It does not implement
1253 mutator methods (C<++>, C<-=> and so on), does not do deep copying
1254 (not required without mutators!), and implements only those arithmetic
1255 operations which are used in the example.
1257 To implement most arithmetic operations is easy; one should just use
1258 the tables of operations, and change the code which fills %subr to
1260 my %subr = ( 'n' => sub {$_[0]} );
1261 foreach my $op (split " ", $overload::ops{with_assign}) {
1262 $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
1264 my @bins = qw(binary 3way_comparison num_comparison str_comparison);
1265 foreach my $op (split " ", "@overload::ops{ @bins }") {
1266 $subr{$op} = eval "sub {shift() $op shift()}";
1268 foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
1269 print "defining `$op'\n";
1270 $subr{$op} = eval "sub {$op shift()}";
1273 Due to L<Calling Conventions for Mutators>, we do not need anything
1274 special to make C<+=> and friends work, except filling C<+=> entry of
1275 %subr, and defining a copy constructor (needed since Perl has no
1276 way to know that the implementation of C<'+='> does not mutate
1277 the argument, compare L<Copy Constructor>).
1279 To implement a copy constructor, add C<< '=' => \&cpy >> to C<use overload>
1280 line, and code (this code assumes that mutators change things one level
1281 deep only, so recursive copying is not needed):
1285 bless [@$self], ref $self;
1288 To make C<++> and C<--> work, we need to implement actual mutators,
1289 either directly, or in C<nomethod>. We continue to do things inside
1290 C<nomethod>, thus add
1292 if ($meth eq '++' or $meth eq '--') {
1293 @$obj = ($meth, (bless [@$obj]), 1); # Avoid circular reference
1297 after the first line of wrap(). This is not a most effective
1298 implementation, one may consider
1300 sub inc { $_[0] = bless ['++', shift, 1]; }
1304 As a final remark, note that one can fill %subr by
1306 my %subr = ( 'n' => sub {$_[0]} );
1307 foreach my $op (split " ", $overload::ops{with_assign}) {
1308 $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
1310 my @bins = qw(binary 3way_comparison num_comparison str_comparison);
1311 foreach my $op (split " ", "@overload::ops{ @bins }") {
1312 $subr{$op} = eval "sub {shift() $op shift()}";
1314 foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
1315 $subr{$op} = eval "sub {$op shift()}";
1317 $subr{'++'} = $subr{'+'};
1318 $subr{'--'} = $subr{'-'};
1320 This finishes implementation of a primitive symbolic calculator in
1321 50 lines of Perl code. Since the numeric values of subexpressions
1322 are not cached, the calculator is very slow.
1324 Here is the answer for the exercise: In the case of str(), we need no
1325 explicit recursion since the overloaded C<.>-operator will fall back
1326 to an existing overloaded operator C<"">. Overloaded arithmetic
1327 operators I<do not> fall back to numeric conversion if C<fallback> is
1328 not explicitly requested. Thus without an explicit recursion num()
1329 would convert C<['+', $a, $b]> to C<$a + $b>, which would just rebuild
1330 the argument of num().
1332 If you wonder why defaults for conversion are different for str() and
1333 num(), note how easy it was to write the symbolic calculator. This
1334 simplicity is due to an appropriate choice of defaults. One extra
1335 note: due to the explicit recursion num() is more fragile than sym():
1336 we need to explicitly check for the type of $a and $b. If components
1337 $a and $b happen to be of some related type, this may lead to problems.
1339 =head2 I<Really> symbolic calculator
1341 One may wonder why we call the above calculator symbolic. The reason
1342 is that the actual calculation of the value of expression is postponed
1343 until the value is I<used>.
1345 To see it in action, add a method
1350 @$obj->[0,1] = ('=', shift);
1353 to the package C<symbolic>. After this change one can do
1355 my $a = new symbolic 3;
1356 my $b = new symbolic 4;
1357 my $c = sqrt($a**2 + $b**2);
1359 and the numeric value of $c becomes 5. However, after calling
1361 $a->STORE(12); $b->STORE(5);
1363 the numeric value of $c becomes 13. There is no doubt now that the module
1364 symbolic provides a I<symbolic> calculator indeed.
1366 To hide the rough edges under the hood, provide a tie()d interface to the
1367 package C<symbolic> (compare with L<Metaphor clash>). Add methods
1369 sub TIESCALAR { my $pack = shift; $pack->new(@_) }
1371 sub nop { } # Around a bug
1373 (the bug is described in L<"BUGS">). One can use this new interface as
1375 tie $a, 'symbolic', 3;
1376 tie $b, 'symbolic', 4;
1377 $a->nop; $b->nop; # Around a bug
1379 my $c = sqrt($a**2 + $b**2);
1381 Now numeric value of $c is 5. After C<$a = 12; $b = 5> the numeric value
1382 of $c becomes 13. To insulate the user of the module add a method
1384 sub vars { my $p = shift; tie($_, $p), $_->nop foreach @_; }
1389 symbolic->vars($a, $b);
1390 my $c = sqrt($a**2 + $b**2);
1393 printf "c5 %s=%f\n", $c, $c;
1396 printf "c13 %s=%f\n", $c, $c;
1398 shows that the numeric value of $c follows changes to the values of $a
1403 Ilya Zakharevich E<lt>F<ilya@math.mps.ohio-state.edu>E<gt>.
1407 When Perl is run with the B<-Do> switch or its equivalent, overloading
1408 induces diagnostic messages.
1410 Using the C<m> command of Perl debugger (see L<perldebug>) one can
1411 deduce which operations are overloaded (and which ancestor triggers
1412 this overloading). Say, if C<eq> is overloaded, then the method C<(eq>
1413 is shown by debugger. The method C<()> corresponds to the C<fallback>
1414 key (in fact a presence of this method shows that this package has
1415 overloading enabled, and it is what is used by the C<Overloaded>
1416 function of module C<overload>).
1418 The module might issue the following warnings:
1422 =item Odd number of arguments for overload::constant
1424 (W) The call to overload::constant contained an odd number of arguments.
1425 The arguments should come in pairs.
1427 =item `%s' is not an overloadable type
1429 (W) You tried to overload a constant type the overload package is unaware of.
1431 =item `%s' is not a code reference
1433 (W) The second (fourth, sixth, ...) argument of overload::constant needs
1434 to be a code reference. Either an anonymous subroutine, or a reference
1441 Because it is used for overloading, the per-package hash %OVERLOAD now
1442 has a special meaning in Perl. The symbol table is filled with names
1443 looking like line-noise.
1445 For the purpose of inheritance every overloaded package behaves as if
1446 C<fallback> is present (possibly undefined). This may create
1447 interesting effects if some package is not overloaded, but inherits
1448 from two overloaded packages.
1450 Relation between overloading and tie()ing is broken. Overloading is
1451 triggered or not basing on the I<previous> class of tie()d value.
1453 This happens because the presence of overloading is checked too early,
1454 before any tie()d access is attempted. If the FETCH()ed class of the
1455 tie()d value does not change, a simple workaround is to access the value
1456 immediately after tie()ing, so that after this call the I<previous> class
1457 coincides with the current one.
1459 B<Needed:> a way to fix this without a speed penalty.
1461 Barewords are not covered by overloaded string constants.
1463 This document is confusing. There are grammos and misleading language
1464 used in places. It would seem a total rewrite is needed.