]> git.vpit.fr Git - perl/modules/Sub-Nary.git/blob - lib/Sub/Nary.pm
keys/values return a 'list', each return zero or two scalars
[perl/modules/Sub-Nary.git] / lib / Sub / Nary.pm
1 package Sub::Nary;
2
3 use 5.008001;
4
5 use strict;
6 use warnings;
7
8 use Carp qw/croak/;
9 use List::Util qw/reduce sum/;
10
11 use B qw/class ppname svref_2object OPf_KIDS/;
12
13 =head1 NAME
14
15 Sub::Nary - Try to count how many elements a subroutine can return in list context.
16
17 =head1 VERSION
18
19 Version 0.01
20
21 =cut
22
23 our $VERSION;
24 BEGIN {
25  $VERSION  = '0.01';
26 }
27
28 =head1 SYNOPSIS
29
30     use Sub::Nary;
31
32     my $sn = Sub::Nary->new();
33     my $r  = $sn->nary(\&hlagh);
34
35 =head1 DESCRIPTION
36
37 This module uses the L<B> framework to walk into subroutines and try to guess how many scalars are likely to be returned in list context. It's not always possible to give a definitive answer to this question at compile time, so the results are given in terms of "probability of return" (to be understood in a sense described below).
38
39 =head1 METHODS
40
41 =head2 C<new>
42
43 The usual constructor. Currently takes no argument.
44
45 =head2 C<nary $coderef>
46
47 Takes a code reference to a named or anonymous subroutine, and returns a hash reference whose keys are the possible numbers of returning scalars, and the corresponding values the "probability" to get them. The special key C<'list'> is used to denote a possibly infinite number of returned arguments. The return value hence would look at
48
49     { 1 => 0.2, 2 => 0.4, 4 => 0.3, list => 0.1 }
50
51 that is, we should get C<1> scalar C<1> time over C<5> and so on. The sum of all values is C<1>. The returned result, and all the results obtained from intermediate subs, are cached into the object.
52
53 =head2 C<flush>
54
55 Flushes the L<Sub::Nary> object cache. Returns the object itself.
56
57 =head1 PROBABILITY OF RETURN
58
59 The probability is computed as such :
60
61 =over 4
62
63 =item * All the returning points in the same subroutine (i.e. all the explicit C<return> and the last computed value) are considered equally possible.
64
65 For example, the subroutine
66
67     sub simple {
68      if (rand < 0.1) {
69       return 1;
70      } else {
71       return 2, 3;
72      }
73     }
74
75 is seen returning one or two arguments each with probability C<1/2>.
76 As for
77
78     sub hlagh {
79      my $x = rand;
80      if ($x < 0.1) {
81       return 1, 2, 3;
82      } elsif ($x > 0.9) {
83       return 4, 5;
84      }
85     }
86
87 it is considered to return C<1> (when the two tests fail, the last computed value is returned, which here is C<< $x > 0.9 >> evaluated in the scalar context of the test), C<2> or C<3> arguments each with probability C<1/3>.
88
89 =item * The total probability law for a given returning point is the convolution product of the probabilities of its list elements.
90
91 As such, 
92
93     sub notsosimple {
94      return 1, simple(), 2
95     }
96
97 returns C<3> or C<4> arguments with probability C<1/2> ; and
98
99     sub double {
100      return simple(), simple()
101     }
102
103 never returns C<1> argument but returns C<2> with probability C<1/2 * 1/2 = 1/4>, C<3> with probability C<1/2 * 1/2 + 1/2 * 1/2 = 1/2> and C<4> with probability C<1/4> too.
104
105 =item * The C<list> state is absorbing in regard of all the other ones.
106
107 This is just a pedantic way to say that "list + fixed length = list".
108 That's why
109
110     sub listy {
111      return 1, simple(), @_
112     }
113
114 is considered as always returning an unbounded list.
115
116 Also, the convolution law does not behave the same when C<list> elements are involved : in the following example,
117
118     sub oneorlist {
119      if (rand < 0.1) {
120       return 1
121      } else {
122       return @_
123      }
124     }
125
126     sub composed {
127      return oneorlist(), oneorlist()
128     }
129
130 C<composed> returns C<2> scalars with probability C<1/2 * 1/2 = 1/4> and a C<list> with probability C<3/4>.
131
132 =back
133
134 =cut
135
136 BEGIN {
137  require XSLoader;
138  XSLoader::load(__PACKAGE__, $VERSION);
139 }
140
141 sub _check_self {
142  croak 'First argument isn\'t a valid ' . __PACKAGE__ . ' object'
143   unless ref $_[0] and $_[0]->isa(__PACKAGE__);
144 }
145
146 sub new {
147  my $class = shift;
148  $class = ref($class) || $class || __PACKAGE__;
149  bless { cache => { } }, $class;
150 }
151
152 sub flush {
153  my $self = shift;
154  _check_self($self);
155  $self->{cache} = { };
156  $self;
157 }
158
159 sub nary {
160  my $self = shift;
161  my $sub  = shift;
162
163  $self->{cv} = [ ];
164  return $self->enter(svref_2object($sub));
165 }
166
167 sub name ($) {
168  my $n = $_[0]->name;
169  $n eq 'null' ? substr(ppname($_[0]->targ), 3) : $n
170 }
171
172 sub combine {
173  reduce {{
174   my %res;
175   my $la = delete $a->{list};
176   my $lb = delete $b->{list};
177   if (defined $la || defined $lb) {
178    $la ||= 0;
179    $lb ||= 0;
180    $res{list} = $la + $lb - $la * $lb;
181   }
182   while (my ($ka, $va) = each %$a) {
183    $ka = int $ka;
184    while (my ($kb, $vb) = each %$b) {
185     my $key = $ka + int $kb;
186     $res{$key} += $va * $vb;
187    }
188   }
189   \%res
190  }} map { (ref) ? $_ : { $_ => 1 } } grep defined, @_;
191 }
192
193 sub add {
194  reduce {
195   $a->{$_} += $b->{$_} for keys %$b;
196   $a
197  } map { (ref) ? $_ : { $_ => 1 } } grep defined, @_;
198 }
199
200 my %ops;
201 $ops{$_} = 1      for scalops;
202 $ops{$_} = 0      for qw/stub nextstate/;
203 $ops{$_} = 1      for qw/padsv/;
204 $ops{$_} = 'list' for qw/padav/;
205 $ops{$_} = 'list' for qw/padhv rv2hv/;
206 $ops{$_} = 'list' for qw/padany flip match entereval readline/;
207 $ops{each}      = { 0 => 0.5, 2 => 0.5 };
208 $ops{stat}      = { 0 => 0.5, 13 => 0.5 };
209 $ops{caller}    = sub { my @a = caller 0; scalar @a }->();
210 $ops{localtime} = do { my @a = localtime; scalar @a };
211 $ops{gmtime}    = do { my @a = gmtime; scalar @a };
212
213 sub enter {
214  my ($self, $cv) = @_;
215
216  return 'list' if class($cv) ne 'CV';
217  my $op  = $cv->ROOT;
218  my $tag = tag($op);
219
220  return { %{$self->{cache}->{$tag}} } if exists $self->{cache}->{$tag};
221
222  # Anything can happen with recursion
223  for (@{$self->{cv}}) {
224   return 'list' if $tag == tag($_->ROOT);
225  }
226
227  unshift @{$self->{cv}}, $cv;
228  (my $r, undef) = $self->expect_any($op->first);
229  shift @{$self->{cv}};
230
231  $r = { $r => 1} unless ref $r;
232  my $total = sum values %$r;
233  $r = { map { $_ => $r->{$_} / $total } keys %$r };
234  $self->{cache}->{$tag} = { %$r };
235  return $r;
236 }
237
238 sub expect_return {
239  my ($self, $op) = @_;
240
241  return ($self->expect_list($op))[0] => 1 if name($op) eq 'return';
242
243  if ($op->flags & OPf_KIDS) {
244   for ($op = $op->first; not null $op; $op = $op->sibling) {
245    my ($p, $r) = $self->expect_return($op);
246    return $p => 1 if $r;
247   }
248  }
249
250  return;
251 }
252
253 sub expect_list {
254  my ($self, $op) = @_;
255
256  my $n = name($op);
257  my $meth = $self->can('pp_' . $n);
258  return $self->$meth($op) if $meth;
259  if (exists $ops{$n}) {
260   my $r = $ops{$n};
261   $r = { %$r } if ref $r eq 'HASH';
262   return $r => 0;
263  }
264
265  if ($op->flags & OPf_KIDS) {
266   my @res = (0);
267   my ($p, $r);
268   for ($op = $op->first; not null $op; $op = $op->sibling) {
269    my $n = name($op);
270    next if $n eq 'pushmark';
271    if ($n eq 'nextstate'
272        and not null(($op = $op->sibling)->sibling)) {
273     ($p, $r) = $self->expect_return($op);
274     return $p => 1 if $r;
275    } else {
276     ($p, $r) = $self->expect_any($op);
277     return $p => 1 if $r;
278     push @res, $p;
279    }
280   }
281   return (combine @res) => 0;
282  }
283
284  return;
285 }
286
287 sub expect_any {
288  my ($self, $op) = @_;
289
290  return ($self->expect_list($op))[0] => 1 if name($op) eq 'return';
291
292  if (class($op) eq 'LOGOP' and not null $op->first) {
293   my @res;
294   my ($p, $r);
295
296   my $op   = $op->first;
297   ($p, $r) = $self->expect_return($op);
298   return $p => 1 if $r;
299
300   $op = $op->sibling;
301   push @res, ($self->expect_any($op))[0];
302
303   # If the logop has no else branch, it can also return the *scalar* result of
304   # the conditional
305   $op = $op->sibling;
306   if (null $op) {
307    push @res, 1;
308   } else {
309    push @res, ($self->expect_any($op))[0];
310   }
311
312   return (add @res) => 0;
313  }
314
315  return $self->expect_list($op);
316 }
317
318 # Stolen from B::Deparse
319
320 sub padval { $_[0]->{cv}->[0]->PADLIST->ARRAYelt(1)->ARRAYelt($_[1]) }
321
322 sub gv_or_padgv {
323  my ($self, $op) = @_;
324  if (class($op) eq 'PADOP') {
325   return $self->padval($op->padix)
326  } else { # class($op) eq "SVOP"
327   return $op->gv;
328  }
329 }
330
331 sub const_sv {
332  my ($self, $op) = @_;
333  my $sv = $op->sv;
334  # the constant could be in the pad (under useithreads)
335  $sv = $self->padval($op->targ) unless $$sv;
336  return $sv;
337 }
338
339 sub pp_entersub {
340  my ($self, $op, $exp) = @_;
341
342  my $next = $op;
343  while ($next->flags & OPf_KIDS) {
344   $next = $next->first;
345  }
346  while (not null $next) {
347   $op = $next;
348   my ($p, $r) = $self->expect_return($op, $exp);
349   return $p => 1 if $r;
350   $next = $op->sibling;
351  }
352
353  if (name($op) eq 'rv2cv') {
354   my $n;
355   do {
356    $op = $op->first;
357    my $next = $op->sibling;
358    while (not null $next) {
359     $op   = $next;
360     $next = $next->sibling;
361    }
362    $n  = name($op)
363   } while ($op->flags & OPf_KIDS and { map { $_ => 1 } qw/null leave/ }->{$n});
364   return 'list' unless { map { $_ => 1 } qw/gv refgen/ }->{$n};
365   local $self->{sub} = 1;
366   return $self->expect_any($op, $exp);
367  } else {
368   # Method call ?
369   return 'list';
370  }
371 }
372
373 sub pp_gv {
374  my ($self, $op) = @_;
375
376  return $self->{sub} ? $self->enter($self->gv_or_padgv($op)->CV) : 1
377 }
378
379 sub pp_anoncode {
380  my ($self, $op) = @_;
381
382  return $self->{sub} ? $self->enter($self->const_sv($op)) : 1
383 }
384
385 sub pp_goto {
386  my ($self, $op) = @_;
387
388  my $n = name($op);
389  while ($op->flags & OPf_KIDS) {
390   my $nop = $op->first;
391   my $nn  = name($nop);
392   if ($nn eq 'pushmark') {
393    $nop = $nop->sibling;
394    $nn  = name($nop);
395   }
396   if ($n eq 'rv2cv' and $nn eq 'gv') {
397    return $self->enter($self->gv_or_padgv($nop)->CV);
398   }
399   $op = $nop;
400   $n  = $nn;
401  }
402
403  return 'list';
404 }
405
406 sub pp_const {
407  my ($self, $op) = @_;
408
409  if (class($op) eq 'SVOP' and (my $sv = $self->const_sv($op))) {
410   my $c = class($sv);
411   if ($c eq 'AV') {
412    return $sv->FILL + 1;
413   } elsif ($c eq 'HV') {
414    return 2 * $sv->FILL;
415   }
416  }
417
418  return 1;
419 }
420
421 sub pp_aslice { $_[0]->expect_any($_[1]->first->sibling) }
422
423 sub pp_hslice;
424 *pp_hslice = *pp_aslice{CODE};
425
426 sub pp_lslice { $_[0]->expect_any($_[1]->first) }
427
428 sub pp_rv2av {
429  my ($self, $op) = @_;
430  $op = $op->first;
431
432  return (name($op) eq 'const') ? $self->expect_any($op) : 'list';
433 }
434
435 sub pp_aassign { $_[0]->expect_any($_[1]->first) }
436
437 sub pp_leaveloop { $_[0]->expect_return($_[1]->first->sibling) }
438
439 =head1 EXPORT
440
441 An object-oriented module shouldn't export any function, and so does this one.
442
443 =head1 CAVEATS
444
445 The algorithm may be pessimistic (things seen as C<list> while they are of fixed length) but not optimistic (the opposite, duh).
446
447 C<wantarray> isn't specialized when encountered in the optree.
448
449 =head1 DEPENDENCIES
450
451 L<perl> 5.8.1.
452
453 L<Carp> (standard since perl 5), L<B> (since perl 5.005), L<XSLoader> (since perl 5.006) and L<List::Util> (since perl 5.007003).
454
455 =head1 AUTHOR
456
457 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
458
459 You can contact me by mail or on #perl @ FreeNode (vincent or Prof_Vince).
460
461 =head1 BUGS
462
463 Please report any bugs or feature requests to C<bug-b-nary at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Sub-Nary>.  I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
464
465 =head1 SUPPORT
466
467 You can find documentation for this module with the perldoc command.
468
469     perldoc Sub::Nary
470
471 Tests code coverage report is available at L<http://www.profvince.com/perl/cover/Sub-Nary>.
472
473 =head1 ACKNOWLEDGEMENTS
474
475 Thanks to Sebastien Aperghis-Tramoni for helping to name this module.
476
477 =head1 COPYRIGHT & LICENSE
478
479 Copyright 2008 Vincent Pit, all rights reserved.
480
481 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
482
483 =cut
484
485 1; # End of Sub::Nary