Tweak corelist.pl's heuristics to cope with the renamed directoriess in ext/
[p5sagit/p5-mst-13.2.git] / lib / overload.pm
CommitLineData
4633a7c4 1package overload;
2
1e9bd118 3our $VERSION = '1.07';
b75c8c73 4
a6006777 5sub nil {}
6
4633a7c4 7sub OVERLOAD {
8 $package = shift;
9 my %arg = @_;
a6006777 10 my ($sub, $fb);
11 $ {$package . "::OVERLOAD"}{dummy}++; # Register with magic by touching.
12 *{$package . "::()"} = \&nil; # Make it findable via fetchmethod.
4633a7c4 13 for (keys %arg) {
a6006777 14 if ($_ eq 'fallback') {
15 $fb = $arg{$_};
16 } else {
17 $sub = $arg{$_};
18 if (not ref $sub and $sub !~ /::/) {
44a8e56a 19 $ {$package . "::(" . $_} = $sub;
20 $sub = \&nil;
a6006777 21 }
22 #print STDERR "Setting `$ {'package'}::\cO$_' to \\&`$sub'.\n";
23 *{$package . "::(" . $_} = \&{ $sub };
24 }
4633a7c4 25 }
a6006777 26 ${$package . "::()"} = $fb; # Make it findable too (fallback only).
4633a7c4 27}
28
29sub import {
30 $package = (caller())[0];
31 # *{$package . "::OVERLOAD"} = \&OVERLOAD;
32 shift;
33 $package->overload::OVERLOAD(@_);
34}
35
36sub unimport {
37 $package = (caller())[0];
a6006777 38 ${$package . "::OVERLOAD"}{dummy}++; # Upgrade the table
4633a7c4 39 shift;
40 for (@_) {
a6006777 41 if ($_ eq 'fallback') {
42 undef $ {$package . "::()"};
43 } else {
44 delete $ {$package . "::"}{"(" . $_};
45 }
4633a7c4 46 }
47}
48
49sub Overloaded {
a6006777 50 my $package = shift;
51 $package = ref $package if ref $package;
52 $package->can('()');
4633a7c4 53}
54
44a8e56a 55sub ov_method {
56 my $globref = shift;
57 return undef unless $globref;
58 my $sub = \&{*$globref};
59 return $sub if $sub ne \&nil;
60 return shift->can($ {*$globref});
61}
62
4633a7c4 63sub OverloadedStringify {
a6006777 64 my $package = shift;
65 $package = ref $package if ref $package;
44a8e56a 66 #$package->can('(""')
ee239bfe 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;
4633a7c4 71}
72
73sub Method {
a6006777 74 my $package = shift;
05a4b9b1 75 if(ref $package) {
4de05ceb 76 local $@;
77 local $!;
78 require Scalar::Util;
05a4b9b1 79 $package = Scalar::Util::blessed($package);
80 return undef if !defined $package;
81 }
44a8e56a 82 #my $meth = $package->can('(' . shift);
83 ov_method mycan($package, '(' . shift), $package;
84 #return $meth if $meth ne \&nil;
85 #return $ {*{$meth}};
4633a7c4 86}
87
88sub AddrRef {
a6006777 89 my $package = ref $_[0];
90 return "$_[0]" unless $package;
b3c0ec7c 91
4de05ceb 92 local $@;
93 local $!;
94 require Scalar::Util;
295812e0 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);
4633a7c4 100}
101
1b1d102f 102*StrVal = *AddrRef;
4633a7c4 103
44a8e56a 104sub mycan { # Real can would leave stubs.
105 my ($package, $meth) = @_;
e1a479c5 106
1e9bd118 107 local $@;
108 local $!;
109 require mro;
110
e1a479c5 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};
44a8e56a 115 }
e1a479c5 116
44a8e56a 117 return undef;
118}
119
b3ac6de7 120%constants = (
9cfe5470 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
b3ac6de7 126 );
127
ee239bfe 128%ops = ( with_assign => "+ - * / % ** << >> x .",
129 assign => "+= -= *= /= %= **= <<= >>= x= .=",
2877bd81 130 num_comparison => "< <= > >= == !=",
ee239bfe 131 '3way_comparison'=> "<=> cmp",
2877bd81 132 str_comparison => "lt le gt ge eq ne",
6dd85743 133 binary => '& &= | |= ^ ^=',
ee239bfe 134 unary => "neg ! ~",
135 mutators => '++ --',
f216259d 136 func => "atan2 cos sin exp abs log sqrt int",
ee239bfe 137 conversion => 'bool "" 0+',
f5284f61 138 iterators => '<>',
e2210791 139 filetest => "-X",
f5284f61 140 dereferencing => '${} @{} %{} &{} *{}',
ee239bfe 141 special => 'nomethod fallback =');
142
6b82e2f5 143use warnings::register;
b3ac6de7 144sub constant {
145 # Arguments: what, sub
146 while (@_) {
6b82e2f5 147 if (@_ == 1) {
4498a751 148 warnings::warnif ("Odd number of arguments for overload::constant");
6b82e2f5 149 last;
150 }
151 elsif (!exists $constants {$_ [0]}) {
4498a751 152 warnings::warnif ("`$_[0]' is not an overloadable type");
6b82e2f5 153 }
1e70e886 154 elsif (!ref $_ [1] || "$_[1]" !~ /(^|=)CODE\(0x[0-9a-f]+\)$/) {
6b82e2f5 155 # Can't use C<ref $_[1] eq "CODE"> above as code references can be
156 # blessed, and C<ref> would return the package the ref is blessed into.
157 if (warnings::enabled) {
6b82e2f5 158 $_ [1] = "undef" unless defined $_ [1];
4498a751 159 warnings::warn ("`$_[1]' is not a code reference");
6b82e2f5 160 }
161 }
162 else {
163 $^H{$_[0]} = $_[1];
f22a2069 164 $^H |= $constants{$_[0]};
6b82e2f5 165 }
b3ac6de7 166 shift, shift;
167 }
168}
169
170sub remove_constant {
171 # Arguments: what, sub
172 while (@_) {
173 delete $^H{$_[0]};
174 $^H &= ~ $constants{$_[0]};
175 shift, shift;
176 }
177}
178
4633a7c4 1791;
180
181__END__
182
b267980d 183=head1 NAME
4633a7c4 184
7adf7a02 185overload - Package for overloading Perl operations
4633a7c4 186
187=head1 SYNOPSIS
188
189 package SomeThing;
190
b267980d 191 use overload
4633a7c4 192 '+' => \&myadd,
193 '-' => \&mysub;
194 # etc
195 ...
196
197 package main;
2b393bf4 198 $a = SomeThing->new( 57 );
4633a7c4 199 $b=5+$a;
200 ...
201 if (overload::Overloaded $b) {...}
202 ...
203 $strval = overload::StrVal $b;
204
4633a7c4 205=head1 DESCRIPTION
206
caf82a01 207This pragma allows overloading of Perl's operators for a class.
208To overload built-in functions, see L<perlsub/Overriding Built-in Functions> instead.
209
4633a7c4 210=head2 Declaration of overloaded functions
211
212The compilation directive
213
214 package Number;
215 use overload
b267980d 216 "+" => \&add,
4633a7c4 217 "*=" => "muas";
218
219declares function Number::add() for addition, and method muas() in
220the "class" C<Number> (or one of its base classes)
b267980d 221for the assignment form C<*=> of multiplication.
4633a7c4 222
223Arguments of this directive come in (key, value) pairs. Legal values
e7ea3e70 224are values legal inside a C<&{ ... }> call, so the name of a
225subroutine, a reference to a subroutine, or an anonymous subroutine
226will all work. Note that values specified as strings are
227interpreted as methods, not subroutines. Legal keys are listed below.
4633a7c4 228
229The subroutine C<add> will be called to execute C<$a+$b> if $a
230is a reference to an object blessed into the package C<Number>, or if $a is
231not an object from a package with defined mathemagic addition, but $b is a
232reference to a C<Number>. It can also be called in other situations, like
233C<$a+=7>, or C<$a++>. See L<MAGIC AUTOGENERATION>. (Mathemagical
234methods refer to methods triggered by an overloaded mathematical
235operator.)
236
774d564b 237Since overloading respects inheritance via the @ISA hierarchy, the
238above declaration would also trigger overloading of C<+> and C<*=> in
239all the packages which inherit from C<Number>.
e7ea3e70 240
4633a7c4 241=head2 Calling Conventions for Binary Operations
242
243The functions specified in the C<use overload ...> directive are called
244with three (in one particular case with four, see L<Last Resort>)
245arguments. If the corresponding operation is binary, then the first
246two arguments are the two arguments of the operation. However, due to
247general object calling conventions, the first argument should always be
248an object in the package, so in the situation of C<7+$a>, the
249order of the arguments is interchanged. It probably does not matter
250when implementing the addition method, but whether the arguments
251are reversed is vital to the subtraction method. The method can
252query this information by examining the third argument, which can take
253three different values:
254
255=over 7
256
257=item FALSE
258
259the order of arguments is as in the current operation.
260
261=item TRUE
262
263the arguments are reversed.
264
265=item C<undef>
266
267the current operation is an assignment variant (as in
268C<$a+=7>), but the usual function is called instead. This additional
ee239bfe 269information can be used to generate some optimizations. Compare
270L<Calling Conventions for Mutators>.
4633a7c4 271
272=back
273
274=head2 Calling Conventions for Unary Operations
275
276Unary operation are considered binary operations with the second
277argument being C<undef>. Thus the functions that overloads C<{"++"}>
278is called with arguments C<($a,undef,'')> when $a++ is executed.
279
ee239bfe 280=head2 Calling Conventions for Mutators
281
282Two types of mutators have different calling conventions:
283
88c28ceb 284=over
ee239bfe 285
286=item C<++> and C<-->
287
288The routines which implement these operators are expected to actually
289I<mutate> their arguments. So, assuming that $obj is a reference to a
290number,
291
292 sub incr { my $n = $ {$_[0]}; ++$n; $_[0] = bless \$n}
293
294is an appropriate implementation of overloaded C<++>. Note that
295
296 sub incr { ++$ {$_[0]} ; shift }
297
298is OK if used with preincrement and with postincrement. (In the case
299of postincrement a copying will be performed, see L<Copy Constructor>.)
300
301=item C<x=> and other assignment versions
302
303There is nothing special about these methods. They may change the
304value of their arguments, and may leave it as is. The result is going
305to be assigned to the value in the left-hand-side if different from
306this value.
307
f610777f 308This allows for the same method to be used as overloaded C<+=> and
ee239bfe 309C<+>. Note that this is I<allowed>, but not recommended, since by the
310semantic of L<"Fallback"> Perl will call the method for C<+> anyway,
311if C<+=> is not overloaded.
312
313=back
314
d1be9408 315B<Warning.> Due to the presence of assignment versions of operations,
b267980d 316routines which may be called in assignment context may create
317self-referential structures. Currently Perl will not free self-referential
ee239bfe 318structures until cycles are C<explicitly> broken. You may get problems
319when traversing your structures too.
320
b267980d 321Say,
ee239bfe 322
323 use overload '+' => sub { bless [ \$_[0], \$_[1] ] };
324
325is asking for trouble, since for code C<$obj += $foo> the subroutine
b267980d 326is called as C<$obj = add($obj, $foo, undef)>, or C<$obj = [\$obj,
ee239bfe 327\$foo]>. If using such a subroutine is an important optimization, one
328can overload C<+=> explicitly by a non-"optimized" version, or switch
b267980d 329to non-optimized version if C<not defined $_[2]> (see
ee239bfe 330L<Calling Conventions for Binary Operations>).
331
332Even if no I<explicit> assignment-variants of operators are present in
333the script, they may be generated by the optimizer. Say, C<",$obj,"> or
334C<',' . $obj . ','> may be both optimized to
335
336 my $tmp = ',' . $obj; $tmp .= ',';
337
4633a7c4 338=head2 Overloadable Operations
339
ee239bfe 340The following symbols can be specified in C<use overload> directive:
4633a7c4 341
342=over 5
343
344=item * I<Arithmetic operations>
345
346 "+", "+=", "-", "-=", "*", "*=", "/", "/=", "%", "%=",
347 "**", "**=", "<<", "<<=", ">>", ">>=", "x", "x=", ".", ".=",
348
349For these operations a substituted non-assignment variant can be called if
fa8a6580 350the assignment variant is not available. Methods for operations C<+>,
351C<->, C<+=>, and C<-=> can be called to automatically generate
352increment and decrement methods. The operation C<-> can be used to
4633a7c4 353autogenerate missing methods for unary minus or C<abs>.
354
ee239bfe 355See L<"MAGIC AUTOGENERATION">, L<"Calling Conventions for Mutators"> and
356L<"Calling Conventions for Binary Operations">) for details of these
357substitutions.
358
4633a7c4 359=item * I<Comparison operations>
360
361 "<", "<=", ">", ">=", "==", "!=", "<=>",
362 "lt", "le", "gt", "ge", "eq", "ne", "cmp",
363
364If the corresponding "spaceship" variant is available, it can be
365used to substitute for the missing operation. During C<sort>ing
366arrays, C<cmp> is used to compare values subject to C<use overload>.
367
368=item * I<Bit operations>
369
6dd85743 370 "&", "&=", "^", "^=", "|", "|=", "neg", "!", "~",
4633a7c4 371
fa8a6580 372C<neg> stands for unary minus. If the method for C<neg> is not
3bc6ec80 373specified, it can be autogenerated using the method for
fa8a6580 374subtraction. If the method for C<!> is not specified, it can be
375autogenerated using the methods for C<bool>, or C<"">, or C<0+>.
4633a7c4 376
6dd85743 377The same remarks in L<"Arithmetic operations"> about
378assignment-variants and autogeneration apply for
379bit operations C<"&">, C<"^">, and C<"|"> as well.
380
4633a7c4 381=item * I<Increment and decrement>
382
383 "++", "--",
384
385If undefined, addition and subtraction methods can be
386used instead. These operations are called both in prefix and
387postfix form.
388
389=item * I<Transcendental functions>
390
f216259d 391 "atan2", "cos", "sin", "exp", "abs", "log", "sqrt", "int"
4633a7c4 392
393If C<abs> is unavailable, it can be autogenerated using methods
1fef88e7 394for "E<lt>" or "E<lt>=E<gt>" combined with either unary minus or subtraction.
4633a7c4 395
f216259d 396Note that traditionally the Perl function L<int> rounds to 0, thus for
397floating-point-like types one should follow the same semantic. If
398C<int> is unavailable, it can be autogenerated using the overloading of
399C<0+>.
400
4633a7c4 401=item * I<Boolean, string and numeric conversion>
402
fa8a6580 403 'bool', '""', '0+',
4633a7c4 404
f5284f61 405If one or two of these operations are not overloaded, the remaining ones can
4633a7c4 406be used instead. C<bool> is used in the flow control operators
fa8a6580 407(like C<while>) and for the ternary C<?:> operation. These functions can
4633a7c4 408return any arbitrary Perl value. If the corresponding operation for this value
409is overloaded too, that operation will be called again with this value.
410
1554e226 411As a special case if the overload returns the object itself then it will
412be used directly. An overloaded conversion returning the object is
413probably a bug, because you're likely to get something that looks like
414C<YourPackage=HASH(0x8172b34)>.
415
f5284f61 416=item * I<Iteration>
417
418 "<>"
419
420If not overloaded, the argument will be converted to a filehandle or
421glob (which may require a stringification). The same overloading
422happens both for the I<read-filehandle> syntax C<E<lt>$varE<gt>> and
423I<globbing> syntax C<E<lt>${var}E<gt>>.
424
54f8c773 425B<BUGS> Even in list context, the iterator is currently called only
426once and with scalar context.
427
e2210791 428=item * I<File tests>
429
430 "-X"
431
432This overload is used for all the filetest operators (C<-f>, C<-x> and
433so on: see L<perlfunc/-X> for the full list). Even though these are
434unary operators, the method will be called with a second argument which
435is a single letter indicating which test was performed. Note that the
436overload key is the literal string C<"-X">: you can't provide separate
437overloads for the different tests.
438
439Calling an overloaded filetest operator does not affect the stat value
440associated with the special filehandle C<_>. It still refers to the
441result of the last C<stat>, C<lstat> or unoverloaded filetest.
442
443If not overloaded, these operators will fall back to the default
444behaviour even without C<< fallback => 1 >>. This means that if the
445object is a blessed glob or blessed IO ref it will be treated as a
446filehandle, otherwise string overloading will be invoked and the result
447treated as a filename.
448
449This overload was introduced in perl 5.12.
450
f5284f61 451=item * I<Dereferencing>
452
453 '${}', '@{}', '%{}', '&{}', '*{}'.
454
455If not overloaded, the argument will be dereferenced I<as is>, thus
456should be of correct type. These functions should return a reference
457of correct type, or another object with overloaded dereferencing.
458
b267980d 459As a special case if the overload returns the object itself then it
460will be used directly (provided it is the correct type).
461
462The dereference operators must be specified explicitly they will not be passed to
463"nomethod".
464
4633a7c4 465=item * I<Special>
466
0d863452 467 "nomethod", "fallback", "=", "~~",
4633a7c4 468
469see L<SPECIAL SYMBOLS FOR C<use overload>>.
470
471=back
472
ee239bfe 473See L<"Fallback"> for an explanation of when a missing method can be
474autogenerated.
475
476A computer-readable form of the above table is available in the hash
477%overload::ops, with values being space-separated lists of names:
478
479 with_assign => '+ - * / % ** << >> x .',
480 assign => '+= -= *= /= %= **= <<= >>= x= .=',
2877bd81 481 num_comparison => '< <= > >= == !=',
ee239bfe 482 '3way_comparison'=> '<=> cmp',
2877bd81 483 str_comparison => 'lt le gt ge eq ne',
6dd85743 484 binary => '& &= | |= ^ ^=',
ee239bfe 485 unary => 'neg ! ~',
486 mutators => '++ --',
487 func => 'atan2 cos sin exp abs log sqrt',
488 conversion => 'bool "" 0+',
f5284f61 489 iterators => '<>',
e2210791 490 filetest => '-X',
f5284f61 491 dereferencing => '${} @{} %{} &{} *{}',
ee239bfe 492 special => 'nomethod fallback ='
4633a7c4 493
e7ea3e70 494=head2 Inheritance and overloading
495
774d564b 496Inheritance interacts with overloading in two ways.
e7ea3e70 497
88c28ceb 498=over
e7ea3e70 499
500=item Strings as values of C<use overload> directive
501
774d564b 502If C<value> in
e7ea3e70 503
504 use overload key => value;
505
774d564b 506is a string, it is interpreted as a method name.
e7ea3e70 507
508=item Overloading of an operation is inherited by derived classes
509
774d564b 510Any class derived from an overloaded class is also overloaded. The
511set of overloaded methods is the union of overloaded methods of all
512the ancestors. If some method is overloaded in several ancestor, then
e7ea3e70 513which description will be used is decided by the usual inheritance
774d564b 514rules:
e7ea3e70 515
774d564b 516If C<A> inherits from C<B> and C<C> (in this order), C<B> overloads
517C<+> with C<\&D::plus_sub>, and C<C> overloads C<+> by C<"plus_meth">,
518then the subroutine C<D::plus_sub> will be called to implement
519operation C<+> for an object in package C<A>.
e7ea3e70 520
521=back
522
774d564b 523Note that since the value of the C<fallback> key is not a subroutine,
524its inheritance is not governed by the above rules. In the current
525implementation, the value of C<fallback> in the first overloaded
526ancestor is used, but this is accidental and subject to change.
e7ea3e70 527
4633a7c4 528=head1 SPECIAL SYMBOLS FOR C<use overload>
529
530Three keys are recognized by Perl that are not covered by the above
531description.
532
774d564b 533=head2 Last Resort
4633a7c4 534
535C<"nomethod"> should be followed by a reference to a function of four
536parameters. If defined, it is called when the overloading mechanism
537cannot find a method for some operation. The first three arguments of
538this function coincide with the arguments for the corresponding method if
539it were found, the fourth argument is the symbol
540corresponding to the missing method. If several methods are tried,
541the last one is used. Say, C<1-$a> can be equivalent to
542
543 &nomethodMethod($a,1,1,"-")
544
545if the pair C<"nomethod" =E<gt> "nomethodMethod"> was specified in the
546C<use overload> directive.
547
b267980d 548The C<"nomethod"> mechanism is I<not> used for the dereference operators
549( ${} @{} %{} &{} *{} ).
550
551
4633a7c4 552If some operation cannot be resolved, and there is no function
553assigned to C<"nomethod">, then an exception will be raised via die()--
554unless C<"fallback"> was specified as a key in C<use overload> directive.
555
b267980d 556
557=head2 Fallback
4633a7c4 558
559The key C<"fallback"> governs what to do if a method for a particular
560operation is not found. Three different cases are possible depending on
561the value of C<"fallback">:
562
563=over 16
564
565=item * C<undef>
566
567Perl tries to use a
568substituted method (see L<MAGIC AUTOGENERATION>). If this fails, it
569then tries to calls C<"nomethod"> value; if missing, an exception
570will be raised.
571
572=item * TRUE
573
574The same as for the C<undef> value, but no exception is raised. Instead,
575it silently reverts to what it would have done were there no C<use overload>
576present.
577
578=item * defined, but FALSE
579
580No autogeneration is tried. Perl tries to call
b267980d 581C<"nomethod"> value, and if this is missing, raises an exception.
4633a7c4 582
583=back
584
e7ea3e70 585B<Note.> C<"fallback"> inheritance via @ISA is not carved in stone
586yet, see L<"Inheritance and overloading">.
587
5e68dedd 588=head2 Smart Match
589
590The key C<"~~"> allows you to override the smart matching used by
591the switch construct. See L<feature>.
592
4633a7c4 593=head2 Copy Constructor
594
595The value for C<"="> is a reference to a function with three
596arguments, i.e., it looks like the other values in C<use
597overload>. However, it does not overload the Perl assignment
598operator. This would go against Camel hair.
599
600This operation is called in the situations when a mutator is applied
601to a reference that shares its object with some other reference, such
602as
603
b267980d 604 $a=$b;
ee239bfe 605 ++$a;
4633a7c4 606
607To make this change $a and not change $b, a copy of C<$$a> is made,
608and $a is assigned a reference to this new object. This operation is
ee239bfe 609done during execution of the C<++$a>, and not during the assignment,
4633a7c4 610(so before the increment C<$$a> coincides with C<$$b>). This is only
ee239bfe 611done if C<++> is expressed via a method for C<'++'> or C<'+='> (or
612C<nomethod>). Note that if this operation is expressed via C<'+'>
613a nonmutator, i.e., as in
4633a7c4 614
b267980d 615 $a=$b;
4633a7c4 616 $a=$a+1;
617
618then C<$a> does not reference a new copy of C<$$a>, since $$a does not
619appear as lvalue when the above code is executed.
620
621If the copy constructor is required during the execution of some mutator,
622but a method for C<'='> was not specified, it can be autogenerated as a
49c95d58 623string copy if the object is a plain scalar or a simple assignment if it
624is not.
4633a7c4 625
626=over 5
627
628=item B<Example>
629
b267980d 630The actually executed code for
4633a7c4 631
b267980d 632 $a=$b;
4633a7c4 633 Something else which does not modify $a or $b....
634 ++$a;
635
636may be
637
b267980d 638 $a=$b;
4633a7c4 639 Something else which does not modify $a or $b....
640 $a = $a->clone(undef,"");
641 $a->incr(undef,"");
642
643if $b was mathemagical, and C<'++'> was overloaded with C<\&incr>,
644C<'='> was overloaded with C<\&clone>.
645
646=back
647
f610777f 648Same behaviour is triggered by C<$b = $a++>, which is consider a synonym for
ee239bfe 649C<$b = $a; ++$a>.
650
4633a7c4 651=head1 MAGIC AUTOGENERATION
652
653If a method for an operation is not found, and the value for C<"fallback"> is
654TRUE or undefined, Perl tries to autogenerate a substitute method for
655the missing operation based on the defined operations. Autogenerated method
656substitutions are possible for the following operations:
657
658=over 16
659
660=item I<Assignment forms of arithmetic operations>
661
662C<$a+=$b> can use the method for C<"+"> if the method for C<"+=">
663is not defined.
664
b267980d 665=item I<Conversion operations>
4633a7c4 666
667String, numeric, and boolean conversion are calculated in terms of one
668another if not all of them are defined.
669
670=item I<Increment and decrement>
671
672The C<++$a> operation can be expressed in terms of C<$a+=1> or C<$a+1>,
673and C<$a--> in terms of C<$a-=1> and C<$a-1>.
674
675=item C<abs($a)>
676
677can be expressed in terms of C<$aE<lt>0> and C<-$a> (or C<0-$a>).
678
679=item I<Unary minus>
680
681can be expressed in terms of subtraction.
682
3bc6ec80 683=item I<Negation>
684
685C<!> and C<not> can be expressed in terms of boolean conversion, or
686string or numerical conversion.
687
4633a7c4 688=item I<Concatenation>
689
690can be expressed in terms of string conversion.
691
b267980d 692=item I<Comparison operations>
4633a7c4 693
694can be expressed in terms of its "spaceship" counterpart: either
695C<E<lt>=E<gt>> or C<cmp>:
1fef88e7 696
4633a7c4 697 <, >, <=, >=, ==, != in terms of <=>
698 lt, gt, le, ge, eq, ne in terms of cmp
699
f5284f61 700=item I<Iterator>
701
702 <> in terms of builtin operations
703
704=item I<Dereferencing>
705
706 ${} @{} %{} &{} *{} in terms of builtin operations
707
4633a7c4 708=item I<Copy operator>
709
710can be expressed in terms of an assignment to the dereferenced value, if this
49c95d58 711value is a scalar and not a reference, or simply a reference assignment
712otherwise.
4633a7c4 713
714=back
715
84fc275b 716=head1 Minimal set of overloaded operations
717
718Since some operations can be automatically generated from others, there is
719a minimal set of operations that need to be overloaded in order to have
299476e0 720the complete set of overloaded operations at one's disposal.
721Of course, the autogenerated operations may not do exactly what the user
722expects. See L<MAGIC AUTOGENERATION> above. The minimal set is:
84fc275b 723
724 + - * / % ** << >> x
725 <=> cmp
726 & | ^ ~
727 atan2 cos sin exp log sqrt int
728
729Additionally, you need to define at least one of string, boolean or
299476e0 730numeric conversions because any one can be used to emulate the others.
731The string conversion can also be used to emulate concatenation.
84fc275b 732
ee239bfe 733=head1 Losing overloading
4633a7c4 734
735The restriction for the comparison operation is that even if, for example,
736`C<cmp>' should return a blessed reference, the autogenerated `C<lt>'
737function will produce only a standard logical value based on the
738numerical value of the result of `C<cmp>'. In particular, a working
739numeric conversion is needed in this case (possibly expressed in terms of
740other conversions).
741
742Similarly, C<.=> and C<x=> operators lose their mathemagical properties
743if the string conversion substitution is applied.
744
745When you chop() a mathemagical object it is promoted to a string and its
746mathemagical properties are lost. The same can happen with other
747operations as well.
748
749=head1 Run-time Overloading
750
751Since all C<use> directives are executed at compile-time, the only way to
752change overloading during run-time is to
753
754 eval 'use overload "+" => \&addmethod';
755
756You can also use
757
758 eval 'no overload "+", "--", "<="';
759
760though the use of these constructs during run-time is questionable.
761
762=head1 Public functions
763
764Package C<overload.pm> provides the following public functions:
765
766=over 5
767
768=item overload::StrVal(arg)
769
6a0e9e72 770Gives string value of C<arg> as in absence of stringify overloading. If you
771are using this to get the address of a reference (useful for checking if two
772references point to the same thing) then you may be better off using
773C<Scalar::Util::refaddr()>, which is faster.
4633a7c4 774
775=item overload::Overloaded(arg)
776
777Returns true if C<arg> is subject to overloading of some operations.
778
779=item overload::Method(obj,op)
780
781Returns C<undef> or a reference to the method that implements C<op>.
782
783=back
784
b3ac6de7 785=head1 Overloading constants
786
7adf7a02 787For some applications, the Perl parser mangles constants too much.
bfce84ec 788It is possible to hook into this process via C<overload::constant()>
7adf7a02 789and C<overload::remove_constant()> functions.
b3ac6de7 790
791These functions take a hash as an argument. The recognized keys of this hash
7adf7a02 792are:
b3ac6de7 793
794=over 8
795
796=item integer
797
798to overload integer constants,
799
800=item float
801
802to overload floating point constants,
803
804=item binary
805
806to overload octal and hexadecimal constants,
807
808=item q
809
810to overload C<q>-quoted strings, constant pieces of C<qq>- and C<qx>-quoted
811strings and here-documents,
812
813=item qr
814
815to overload constant pieces of regular expressions.
816
817=back
818
819The corresponding values are references to functions which take three arguments:
820the first one is the I<initial> string form of the constant, the second one
b267980d 821is how Perl interprets this constant, the third one is how the constant is used.
b3ac6de7 822Note that the initial string form does not
b267980d 823contain string delimiters, and has backslashes in backslash-delimiter
b3ac6de7 824combinations stripped (thus the value of delimiter is not relevant for
b267980d 825processing of this string). The return value of this function is how this
b3ac6de7 826constant is going to be interpreted by Perl. The third argument is undefined
827unless for overloaded C<q>- and C<qr>- constants, it is C<q> in single-quote
828context (comes from strings, regular expressions, and single-quote HERE
b267980d 829documents), it is C<tr> for arguments of C<tr>/C<y> operators,
b3ac6de7 830it is C<s> for right-hand side of C<s>-operator, and it is C<qq> otherwise.
831
832Since an expression C<"ab$cd,,"> is just a shortcut for C<'ab' . $cd . ',,'>,
833it is expected that overloaded constant strings are equipped with reasonable
b267980d 834overloaded catenation operator, otherwise absurd results will result.
b3ac6de7 835Similarly, negative numbers are considered as negations of positive constants.
836
837Note that it is probably meaningless to call the functions overload::constant()
838and overload::remove_constant() from anywhere but import() and unimport() methods.
839From these methods they may be called as
840
841 sub import {
842 shift;
843 return unless @_;
844 die "unknown import: @_" unless @_ == 1 and $_[0] eq ':constant';
845 overload::constant integer => sub {Math::BigInt->new(shift)};
846 }
847
4633a7c4 848=head1 IMPLEMENTATION
849
850What follows is subject to change RSN.
851
e7ea3e70 852The table of methods for all operations is cached in magic for the
853symbol table hash for the package. The cache is invalidated during
854processing of C<use overload>, C<no overload>, new function
855definitions, and changes in @ISA. However, this invalidation remains
856unprocessed until the next C<bless>ing into the package. Hence if you
857want to change overloading structure dynamically, you'll need an
858additional (fake) C<bless>ing to update the table.
859
860(Every SVish thing has a magic queue, and magic is an entry in that
861queue. This is how a single variable may participate in multiple
862forms of magic simultaneously. For instance, environment variables
863regularly have two forms at once: their %ENV magic and their taint
864magic. However, the magic which implements overloading is applied to
865the stashes, which are rarely used directly, thus should not slow down
866Perl.)
4633a7c4 867
868If an object belongs to a package using overload, it carries a special
869flag. Thus the only speed penalty during arithmetic operations without
870overloading is the checking of this flag.
871
774d564b 872In fact, if C<use overload> is not present, there is almost no overhead
873for overloadable operations, so most programs should not suffer
874measurable performance penalties. A considerable effort was made to
875minimize the overhead when overload is used in some package, but the
876arguments in question do not belong to packages using overload. When
877in doubt, test your speed with C<use overload> and without it. So far
878there have been no reports of substantial speed degradation if Perl is
879compiled with optimization turned on.
4633a7c4 880
e7ea3e70 881There is no size penalty for data if overload is not used. The only
882size penalty if overload is used in some package is that I<all> the
883packages acquire a magic during the next C<bless>ing into the
884package. This magic is three-words-long for packages without
f610777f 885overloading, and carries the cache table if the package is overloaded.
4633a7c4 886
b267980d 887Copying (C<$a=$b>) is shallow; however, a one-level-deep copying is
4633a7c4 888carried out before any operation that can imply an assignment to the
889object $a (or $b) refers to, like C<$a++>. You can override this
890behavior by defining your own copy constructor (see L<"Copy Constructor">).
891
892It is expected that arguments to methods that are not explicitly supposed
893to be changed are constant (but this is not enforced).
894
ee239bfe 895=head1 Metaphor clash
896
f610777f 897One may wonder why the semantic of overloaded C<=> is so counter intuitive.
b267980d 898If it I<looks> counter intuitive to you, you are subject to a metaphor
899clash.
ee239bfe 900
901Here is a Perl object metaphor:
902
903I< object is a reference to blessed data>
904
905and an arithmetic metaphor:
906
907I< object is a thing by itself>.
908
909The I<main> problem of overloading C<=> is the fact that these metaphors
910imply different actions on the assignment C<$a = $b> if $a and $b are
911objects. Perl-think implies that $a becomes a reference to whatever
912$b was referencing. Arithmetic-think implies that the value of "object"
913$a is changed to become the value of the object $b, preserving the fact
914that $a and $b are separate entities.
915
916The difference is not relevant in the absence of mutators. After
917a Perl-way assignment an operation which mutates the data referenced by $a
b267980d 918would change the data referenced by $b too. Effectively, after
ee239bfe 919C<$a = $b> values of $a and $b become I<indistinguishable>.
920
b267980d 921On the other hand, anyone who has used algebraic notation knows the
ee239bfe 922expressive power of the arithmetic metaphor. Overloading works hard
923to enable this metaphor while preserving the Perlian way as far as
d1be9408 924possible. Since it is not possible to freely mix two contradicting
ee239bfe 925metaphors, overloading allows the arithmetic way to write things I<as
926far as all the mutators are called via overloaded access only>. The
927way it is done is described in L<Copy Constructor>.
928
929If some mutator methods are directly applied to the overloaded values,
b267980d 930one may need to I<explicitly unlink> other values which references the
ee239bfe 931same value:
932
2b393bf4 933 $a = Data->new(23);
ee239bfe 934 ...
935 $b = $a; # $b is "linked" to $a
936 ...
937 $a = $a->clone; # Unlink $b from $a
938 $a->increment_by(4);
939
940Note that overloaded access makes this transparent:
941
2b393bf4 942 $a = Data->new(23);
ee239bfe 943 $b = $a; # $b is "linked" to $a
944 $a += 4; # would unlink $b automagically
945
946However, it would not make
947
2b393bf4 948 $a = Data->new(23);
ee239bfe 949 $a = 4; # Now $a is a plain 4, not 'Data'
950
951preserve "objectness" of $a. But Perl I<has> a way to make assignments
952to an object do whatever you want. It is just not the overload, but
953tie()ing interface (see L<perlfunc/tie>). Adding a FETCH() method
b267980d 954which returns the object itself, and STORE() method which changes the
ee239bfe 955value of the object, one can reproduce the arithmetic metaphor in its
956completeness, at least for variables which were tie()d from the start.
957
958(Note that a workaround for a bug may be needed, see L<"BUGS">.)
959
960=head1 Cookbook
961
962Please add examples to what follows!
963
964=head2 Two-face scalars
965
966Put this in F<two_face.pm> in your Perl library directory:
967
968 package two_face; # Scalars with separate string and
969 # numeric values.
970 sub new { my $p = shift; bless [@_], $p }
971 use overload '""' => \&str, '0+' => \&num, fallback => 1;
972 sub num {shift->[1]}
973 sub str {shift->[0]}
974
975Use it as follows:
976
977 require two_face;
2b393bf4 978 my $seven = two_face->new("vii", 7);
ee239bfe 979 printf "seven=$seven, seven=%d, eight=%d\n", $seven, $seven+1;
980 print "seven contains `i'\n" if $seven =~ /i/;
981
982(The second line creates a scalar which has both a string value, and a
983numeric value.) This prints:
984
985 seven=vii, seven=7, eight=8
986 seven contains `i'
987
f5284f61 988=head2 Two-face references
989
990Suppose you want to create an object which is accessible as both an
6d822dc4 991array reference and a hash reference.
f5284f61 992
993 package two_refs;
994 use overload '%{}' => \&gethash, '@{}' => sub { $ {shift()} };
b267980d 995 sub new {
996 my $p = shift;
f5284f61 997 bless \ [@_], $p;
998 }
999 sub gethash {
1000 my %h;
1001 my $self = shift;
1002 tie %h, ref $self, $self;
1003 \%h;
1004 }
1005
1006 sub TIEHASH { my $p = shift; bless \ shift, $p }
1007 my %fields;
1008 my $i = 0;
1009 $fields{$_} = $i++ foreach qw{zero one two three};
b267980d 1010 sub STORE {
f5284f61 1011 my $self = ${shift()};
1012 my $key = $fields{shift()};
1013 defined $key or die "Out of band access";
1014 $$self->[$key] = shift;
1015 }
b267980d 1016 sub FETCH {
f5284f61 1017 my $self = ${shift()};
1018 my $key = $fields{shift()};
1019 defined $key or die "Out of band access";
1020 $$self->[$key];
1021 }
1022
1023Now one can access an object using both the array and hash syntax:
1024
2b393bf4 1025 my $bar = two_refs->new(3,4,5,6);
f5284f61 1026 $bar->[2] = 11;
1027 $bar->{two} == 11 or die 'bad hash fetch';
1028
1029Note several important features of this example. First of all, the
1030I<actual> type of $bar is a scalar reference, and we do not overload
1031the scalar dereference. Thus we can get the I<actual> non-overloaded
1032contents of $bar by just using C<$$bar> (what we do in functions which
1033overload dereference). Similarly, the object returned by the
1034TIEHASH() method is a scalar reference.
1035
1036Second, we create a new tied hash each time the hash syntax is used.
1037This allows us not to worry about a possibility of a reference loop,
d1be9408 1038which would lead to a memory leak.
f5284f61 1039
1040Both these problems can be cured. Say, if we want to overload hash
1041dereference on a reference to an object which is I<implemented> as a
1042hash itself, the only problem one has to circumvent is how to access
1fd16925 1043this I<actual> hash (as opposed to the I<virtual> hash exhibited by the
f5284f61 1044overloaded dereference operator). Here is one possible fetching routine:
1045
1046 sub access_hash {
1047 my ($self, $key) = (shift, shift);
1048 my $class = ref $self;
b267980d 1049 bless $self, 'overload::dummy'; # Disable overloading of %{}
f5284f61 1050 my $out = $self->{$key};
1051 bless $self, $class; # Restore overloading
1052 $out;
1053 }
1054
1fd16925 1055To remove creation of the tied hash on each access, one may an extra
f5284f61 1056level of indirection which allows a non-circular structure of references:
1057
1058 package two_refs1;
1059 use overload '%{}' => sub { ${shift()}->[1] },
1060 '@{}' => sub { ${shift()}->[0] };
b267980d 1061 sub new {
1062 my $p = shift;
f5284f61 1063 my $a = [@_];
1064 my %h;
1065 tie %h, $p, $a;
1066 bless \ [$a, \%h], $p;
1067 }
1068 sub gethash {
1069 my %h;
1070 my $self = shift;
1071 tie %h, ref $self, $self;
1072 \%h;
1073 }
1074
1075 sub TIEHASH { my $p = shift; bless \ shift, $p }
1076 my %fields;
1077 my $i = 0;
1078 $fields{$_} = $i++ foreach qw{zero one two three};
b267980d 1079 sub STORE {
f5284f61 1080 my $a = ${shift()};
1081 my $key = $fields{shift()};
1082 defined $key or die "Out of band access";
1083 $a->[$key] = shift;
1084 }
b267980d 1085 sub FETCH {
f5284f61 1086 my $a = ${shift()};
1087 my $key = $fields{shift()};
1088 defined $key or die "Out of band access";
1089 $a->[$key];
1090 }
1091
1fd16925 1092Now if $baz is overloaded like this, then C<$baz> is a reference to a
f5284f61 1093reference to the intermediate array, which keeps a reference to an
1094actual array, and the access hash. The tie()ing object for the access
1fd16925 1095hash is a reference to a reference to the actual array, so
f5284f61 1096
88c28ceb 1097=over
f5284f61 1098
1099=item *
1100
1101There are no loops of references.
1102
1103=item *
1104
1105Both "objects" which are blessed into the class C<two_refs1> are
1106references to a reference to an array, thus references to a I<scalar>.
1107Thus the accessor expression C<$$foo-E<gt>[$ind]> involves no
1108overloaded operations.
1109
1110=back
1111
ee239bfe 1112=head2 Symbolic calculator
1113
1114Put this in F<symbolic.pm> in your Perl library directory:
1115
1116 package symbolic; # Primitive symbolic calculator
1117 use overload nomethod => \&wrap;
1118
1119 sub new { shift; bless ['n', @_] }
1120 sub wrap {
1121 my ($obj, $other, $inv, $meth) = @_;
1122 ($obj, $other) = ($other, $obj) if $inv;
1123 bless [$meth, $obj, $other];
1124 }
1125
1126This module is very unusual as overloaded modules go: it does not
88c28ceb 1127provide any usual overloaded operators, instead it provides the L<Last
1128Resort> operator C<nomethod>. In this example the corresponding
f610777f 1129subroutine returns an object which encapsulates operations done over
2b393bf4 1130the objects: C<< symbolic->new(3) >> contains C<['n', 3]>, C<< 2 +
1131symbolic->new(3) >> contains C<['+', 2, ['n', 3]]>.
ee239bfe 1132
1133Here is an example of the script which "calculates" the side of
1134circumscribed octagon using the above package:
1135
1136 require symbolic;
1137 my $iter = 1; # 2**($iter+2) = 8
2b393bf4 1138 my $side = symbolic->new(1);
ee239bfe 1139 my $cnt = $iter;
3cb6de81 1140
ee239bfe 1141 while ($cnt--) {
1142 $side = (sqrt(1 + $side**2) - 1)/$side;
1143 }
1144 print "OK\n";
1145
1146The value of $side is
1147
1148 ['/', ['-', ['sqrt', ['+', 1, ['**', ['n', 1], 2]],
1149 undef], 1], ['n', 1]]
1150
1151Note that while we obtained this value using a nice little script,
1152there is no simple way to I<use> this value. In fact this value may
2d3232d7 1153be inspected in debugger (see L<perldebug>), but only if
ee239bfe 1154C<bareStringify> B<O>ption is set, and not via C<p> command.
1155
1156If one attempts to print this value, then the overloaded operator
1157C<""> will be called, which will call C<nomethod> operator. The
1158result of this operator will be stringified again, but this result is
1159again of type C<symbolic>, which will lead to an infinite loop.
1160
1161Add a pretty-printer method to the module F<symbolic.pm>:
1162
1163 sub pretty {
1164 my ($meth, $a, $b) = @{+shift};
1165 $a = 'u' unless defined $a;
1166 $b = 'u' unless defined $b;
1167 $a = $a->pretty if ref $a;
1168 $b = $b->pretty if ref $b;
1169 "[$meth $a $b]";
b267980d 1170 }
ee239bfe 1171
1172Now one can finish the script by
1173
1174 print "side = ", $side->pretty, "\n";
1175
1176The method C<pretty> is doing object-to-string conversion, so it
1177is natural to overload the operator C<""> using this method. However,
1178inside such a method it is not necessary to pretty-print the
1179I<components> $a and $b of an object. In the above subroutine
1180C<"[$meth $a $b]"> is a catenation of some strings and components $a
1181and $b. If these components use overloading, the catenation operator
1fd16925 1182will look for an overloaded operator C<.>; if not present, it will
ee239bfe 1183look for an overloaded operator C<"">. Thus it is enough to use
1184
1185 use overload nomethod => \&wrap, '""' => \&str;
1186 sub str {
1187 my ($meth, $a, $b) = @{+shift};
1188 $a = 'u' unless defined $a;
1189 $b = 'u' unless defined $b;
1190 "[$meth $a $b]";
b267980d 1191 }
ee239bfe 1192
1193Now one can change the last line of the script to
1194
1195 print "side = $side\n";
1196
1197which outputs
1198
1199 side = [/ [- [sqrt [+ 1 [** [n 1 u] 2]] u] 1] [n 1 u]]
1200
1201and one can inspect the value in debugger using all the possible
b267980d 1202methods.
ee239bfe 1203
d1be9408 1204Something is still amiss: consider the loop variable $cnt of the
ee239bfe 1205script. It was a number, not an object. We cannot make this value of
1206type C<symbolic>, since then the loop will not terminate.
1207
1208Indeed, to terminate the cycle, the $cnt should become false.
1209However, the operator C<bool> for checking falsity is overloaded (this
1210time via overloaded C<"">), and returns a long string, thus any object
1211of type C<symbolic> is true. To overcome this, we need a way to
1212compare an object to 0. In fact, it is easier to write a numeric
1213conversion routine.
1214
1215Here is the text of F<symbolic.pm> with such a routine added (and
f610777f 1216slightly modified str()):
ee239bfe 1217
1218 package symbolic; # Primitive symbolic calculator
1219 use overload
1220 nomethod => \&wrap, '""' => \&str, '0+' => \&num;
1221
1222 sub new { shift; bless ['n', @_] }
1223 sub wrap {
1224 my ($obj, $other, $inv, $meth) = @_;
1225 ($obj, $other) = ($other, $obj) if $inv;
1226 bless [$meth, $obj, $other];
1227 }
1228 sub str {
1229 my ($meth, $a, $b) = @{+shift};
1230 $a = 'u' unless defined $a;
1231 if (defined $b) {
1232 "[$meth $a $b]";
1233 } else {
1234 "[$meth $a]";
1235 }
b267980d 1236 }
1237 my %subr = ( n => sub {$_[0]},
1238 sqrt => sub {sqrt $_[0]},
ee239bfe 1239 '-' => sub {shift() - shift()},
1240 '+' => sub {shift() + shift()},
1241 '/' => sub {shift() / shift()},
1242 '*' => sub {shift() * shift()},
1243 '**' => sub {shift() ** shift()},
1244 );
1245 sub num {
1246 my ($meth, $a, $b) = @{+shift};
b267980d 1247 my $subr = $subr{$meth}
ee239bfe 1248 or die "Do not know how to ($meth) in symbolic";
1249 $a = $a->num if ref $a eq __PACKAGE__;
1250 $b = $b->num if ref $b eq __PACKAGE__;
1251 $subr->($a,$b);
1252 }
1253
1254All the work of numeric conversion is done in %subr and num(). Of
f610777f 1255course, %subr is not complete, it contains only operators used in the
ee239bfe 1256example below. Here is the extra-credit question: why do we need an
1257explicit recursion in num()? (Answer is at the end of this section.)
1258
1259Use this module like this:
1260
1261 require symbolic;
2b393bf4 1262 my $iter = symbolic->new(2); # 16-gon
1263 my $side = symbolic->new(1);
ee239bfe 1264 my $cnt = $iter;
3cb6de81 1265
ee239bfe 1266 while ($cnt) {
1267 $cnt = $cnt - 1; # Mutator `--' not implemented
1268 $side = (sqrt(1 + $side**2) - 1)/$side;
1269 }
1270 printf "%s=%f\n", $side, $side;
1271 printf "pi=%f\n", $side*(2**($iter+2));
1272
1273It prints (without so many line breaks)
1274
1275 [/ [- [sqrt [+ 1 [** [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1]
1276 [n 1]] 2]]] 1]
1277 [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]]]=0.198912
1278 pi=3.182598
1279
1280The above module is very primitive. It does not implement
1281mutator methods (C<++>, C<-=> and so on), does not do deep copying
1282(not required without mutators!), and implements only those arithmetic
1283operations which are used in the example.
1284
1fd16925 1285To implement most arithmetic operations is easy; one should just use
ee239bfe 1286the tables of operations, and change the code which fills %subr to
1287
1288 my %subr = ( 'n' => sub {$_[0]} );
1289 foreach my $op (split " ", $overload::ops{with_assign}) {
1290 $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
1291 }
1292 my @bins = qw(binary 3way_comparison num_comparison str_comparison);
1293 foreach my $op (split " ", "@overload::ops{ @bins }") {
1294 $subr{$op} = eval "sub {shift() $op shift()}";
1295 }
1296 foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
1297 print "defining `$op'\n";
1298 $subr{$op} = eval "sub {$op shift()}";
1299 }
1300
1301Due to L<Calling Conventions for Mutators>, we do not need anything
1302special to make C<+=> and friends work, except filling C<+=> entry of
1303%subr, and defining a copy constructor (needed since Perl has no
1304way to know that the implementation of C<'+='> does not mutate
1305the argument, compare L<Copy Constructor>).
1306
1fd16925 1307To implement a copy constructor, add C<< '=' => \&cpy >> to C<use overload>
ee239bfe 1308line, and code (this code assumes that mutators change things one level
1309deep only, so recursive copying is not needed):
1310
1311 sub cpy {
1312 my $self = shift;
1313 bless [@$self], ref $self;
1314 }
1315
b267980d 1316To make C<++> and C<--> work, we need to implement actual mutators,
ee239bfe 1317either directly, or in C<nomethod>. We continue to do things inside
1318C<nomethod>, thus add
1319
1320 if ($meth eq '++' or $meth eq '--') {
1321 @$obj = ($meth, (bless [@$obj]), 1); # Avoid circular reference
1322 return $obj;
1323 }
1324
b267980d 1325after the first line of wrap(). This is not a most effective
ee239bfe 1326implementation, one may consider
1327
1328 sub inc { $_[0] = bless ['++', shift, 1]; }
1329
1330instead.
1331
1332As a final remark, note that one can fill %subr by
1333
1334 my %subr = ( 'n' => sub {$_[0]} );
1335 foreach my $op (split " ", $overload::ops{with_assign}) {
1336 $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
1337 }
1338 my @bins = qw(binary 3way_comparison num_comparison str_comparison);
1339 foreach my $op (split " ", "@overload::ops{ @bins }") {
1340 $subr{$op} = eval "sub {shift() $op shift()}";
1341 }
1342 foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
1343 $subr{$op} = eval "sub {$op shift()}";
1344 }
1345 $subr{'++'} = $subr{'+'};
1346 $subr{'--'} = $subr{'-'};
1347
b267980d 1348This finishes implementation of a primitive symbolic calculator in
134950 lines of Perl code. Since the numeric values of subexpressions
ee239bfe 1350are not cached, the calculator is very slow.
1351
1352Here is the answer for the exercise: In the case of str(), we need no
1353explicit recursion since the overloaded C<.>-operator will fall back
1354to an existing overloaded operator C<"">. Overloaded arithmetic
1355operators I<do not> fall back to numeric conversion if C<fallback> is
1356not explicitly requested. Thus without an explicit recursion num()
1357would convert C<['+', $a, $b]> to C<$a + $b>, which would just rebuild
1358the argument of num().
1359
1360If you wonder why defaults for conversion are different for str() and
1361num(), note how easy it was to write the symbolic calculator. This
1362simplicity is due to an appropriate choice of defaults. One extra
f610777f 1363note: due to the explicit recursion num() is more fragile than sym():
1364we need to explicitly check for the type of $a and $b. If components
ee239bfe 1365$a and $b happen to be of some related type, this may lead to problems.
1366
1367=head2 I<Really> symbolic calculator
1368
1369One may wonder why we call the above calculator symbolic. The reason
1370is that the actual calculation of the value of expression is postponed
1371until the value is I<used>.
1372
1373To see it in action, add a method
1374
b267980d 1375 sub STORE {
1376 my $obj = shift;
1377 $#$obj = 1;
ee239bfe 1378 @$obj->[0,1] = ('=', shift);
1379 }
1380
1381to the package C<symbolic>. After this change one can do
1382
2b393bf4 1383 my $a = symbolic->new(3);
1384 my $b = symbolic->new(4);
ee239bfe 1385 my $c = sqrt($a**2 + $b**2);
1386
1387and the numeric value of $c becomes 5. However, after calling
1388
1389 $a->STORE(12); $b->STORE(5);
1390
1391the numeric value of $c becomes 13. There is no doubt now that the module
1392symbolic provides a I<symbolic> calculator indeed.
1393
1394To hide the rough edges under the hood, provide a tie()d interface to the
1395package C<symbolic> (compare with L<Metaphor clash>). Add methods
1396
1397 sub TIESCALAR { my $pack = shift; $pack->new(@_) }
1398 sub FETCH { shift }
1399 sub nop { } # Around a bug
1400
1401(the bug is described in L<"BUGS">). One can use this new interface as
1402
1403 tie $a, 'symbolic', 3;
1404 tie $b, 'symbolic', 4;
1405 $a->nop; $b->nop; # Around a bug
1406
1407 my $c = sqrt($a**2 + $b**2);
1408
1409Now numeric value of $c is 5. After C<$a = 12; $b = 5> the numeric value
1410of $c becomes 13. To insulate the user of the module add a method
1411
1412 sub vars { my $p = shift; tie($_, $p), $_->nop foreach @_; }
1413
1414Now
1415
1416 my ($a, $b);
1417 symbolic->vars($a, $b);
1418 my $c = sqrt($a**2 + $b**2);
1419
1420 $a = 3; $b = 4;
1421 printf "c5 %s=%f\n", $c, $c;
1422
1423 $a = 12; $b = 5;
1424 printf "c13 %s=%f\n", $c, $c;
1425
1426shows that the numeric value of $c follows changes to the values of $a
1427and $b.
1428
4633a7c4 1429=head1 AUTHOR
1430
1fef88e7 1431Ilya Zakharevich E<lt>F<ilya@math.mps.ohio-state.edu>E<gt>.
4633a7c4 1432
7e494759 1433=head1 SEE ALSO
1434
1435The L<overloading> pragma can be used to enable or disable overloaded
1436operations within a lexical scope.
1437
4633a7c4 1438=head1 DIAGNOSTICS
1439
1440When Perl is run with the B<-Do> switch or its equivalent, overloading
1441induces diagnostic messages.
1442
e7ea3e70 1443Using the C<m> command of Perl debugger (see L<perldebug>) one can
1444deduce which operations are overloaded (and which ancestor triggers
1445this overloading). Say, if C<eq> is overloaded, then the method C<(eq>
1446is shown by debugger. The method C<()> corresponds to the C<fallback>
1447key (in fact a presence of this method shows that this package has
1448overloading enabled, and it is what is used by the C<Overloaded>
ee239bfe 1449function of module C<overload>).
e7ea3e70 1450
6ad11d81 1451The module might issue the following warnings:
6b82e2f5 1452
1453=over 4
1454
1455=item Odd number of arguments for overload::constant
1456
1457(W) The call to overload::constant contained an odd number of arguments.
1458The arguments should come in pairs.
1459
1460=item `%s' is not an overloadable type
1461
1462(W) You tried to overload a constant type the overload package is unaware of.
1463
1464=item `%s' is not a code reference
1465
1466(W) The second (fourth, sixth, ...) argument of overload::constant needs
1467to be a code reference. Either an anonymous subroutine, or a reference
1468to a subroutine.
1469
1470=back
1471
4633a7c4 1472=head1 BUGS
1473
aa689395 1474Because it is used for overloading, the per-package hash %OVERLOAD now
1475has a special meaning in Perl. The symbol table is filled with names
1476looking like line-noise.
4633a7c4 1477
a6006777 1478For the purpose of inheritance every overloaded package behaves as if
1479C<fallback> is present (possibly undefined). This may create
1480interesting effects if some package is not overloaded, but inherits
1481from two overloaded packages.
4633a7c4 1482
b267980d 1483Relation between overloading and tie()ing is broken. Overloading is
ee239bfe 1484triggered or not basing on the I<previous> class of tie()d value.
1485
b267980d 1486This happens because the presence of overloading is checked too early,
ee239bfe 1487before any tie()d access is attempted. If the FETCH()ed class of the
b267980d 1488tie()d value does not change, a simple workaround is to access the value
ee239bfe 1489immediately after tie()ing, so that after this call the I<previous> class
1490coincides with the current one.
1491
1492B<Needed:> a way to fix this without a speed penalty.
1493
b3ac6de7 1494Barewords are not covered by overloaded string constants.
1495
ee239bfe 1496This document is confusing. There are grammos and misleading language
1497used in places. It would seem a total rewrite is needed.
4633a7c4 1498
1499=cut
1500