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