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