]> git.vpit.fr Git - perl/modules/Sub-Nary.git/blob - lib/Sub/Nary.pm
One more test to exaust for cases. Remove debugging cruft
[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
10 use B qw/class ppname svref_2object OPf_KIDS/;
11
12 =head1 NAME
13
14 Sub::Nary - Try to count how many elements a subroutine can return in list context.
15
16 =head1 VERSION
17
18 Version 0.02
19
20 =cut
21
22 our $VERSION;
23 BEGIN {
24  $VERSION  = '0.02';
25 }
26
27 =head1 SYNOPSIS
28
29     use Sub::Nary;
30
31     my $sn = Sub::Nary->new();
32     my $r  = $sn->nary(\&hlagh);
33
34 =head1 DESCRIPTION
35
36 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).
37
38 =head1 METHODS
39
40 =head2 C<new>
41
42 The usual constructor. Currently takes no argument.
43
44 =head2 C<nary $coderef>
45
46 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
47
48     { 1 => 0.2, 2 => 0.4, 4 => 0.3, list => 0.1 }
49
50 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.
51
52 =head2 C<flush>
53
54 Flushes the L<Sub::Nary> object cache. Returns the object itself.
55
56 =head1 PROBABILITY OF RETURN
57
58 The probability is computed as such :
59
60 =over 4
61
62 =item * When branching, each branch is considered equally possible.
63
64 For example, the subroutine
65
66     sub simple {
67      if (rand < 0.1) {
68       return 1;
69      } else {
70       return 2, 3;
71      }
72     }
73
74 is seen returning one or two arguments each with probability C<1/2>.
75 As for
76
77     sub hlagh {
78      my $x = rand;
79      if ($x < 0.1) {
80       return 1, 2, 3;
81      } elsif ($x > 0.9) {
82       return 4, 5;
83      }
84     }
85
86 it is considered to return C<3> scalars with probability C<1/2>, C<2> with probability C<1/2 * 1/2 = 1/4> and 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) with remaining probability C<1/4>.
87
88 =item * The total probability law for a given returning point is the convolution product of the probabilities of its list elements.
89
90 As such, 
91
92     sub notsosimple {
93      return 1, simple(), 2
94     }
95
96 returns C<3> or C<4> arguments with probability C<1/2> ; and
97
98     sub double {
99      return simple(), simple()
100     }
101
102 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.
103
104 =item * If a core function may return different numbers of scalars, each kind is considered equally possible.
105
106 For example, C<stat> returns C<13> elements on success and C<0> on error. The according probability will then be C<< { 0 => 0.5, 13 => 0.5 } >>.
107
108 =item * The C<list> state is absorbing in regard of all the other ones.
109
110 This is just a pedantic way to say that "list + fixed length = list".
111 That's why
112
113     sub listy {
114      return 1, simple(), @_
115     }
116
117 is considered as always returning an unbounded list.
118
119 Also, the convolution law does not behave the same when C<list> elements are involved : in the following example,
120
121     sub oneorlist {
122      if (rand < 0.1) {
123       return 1
124      } else {
125       return @_
126      }
127     }
128
129     sub composed {
130      return oneorlist(), oneorlist()
131     }
132
133 C<composed> returns C<2> scalars with probability C<1/2 * 1/2 = 1/4> and a C<list> with probability C<3/4>.
134
135 =back
136
137 =cut
138
139 BEGIN {
140  require XSLoader;
141  XSLoader::load(__PACKAGE__, $VERSION);
142 }
143
144 sub _check_self {
145  croak 'First argument isn\'t a valid ' . __PACKAGE__ . ' object'
146   unless ref $_[0] and $_[0]->isa(__PACKAGE__);
147 }
148
149 sub new {
150  my $class = shift;
151  $class = ref($class) || $class || __PACKAGE__;
152  bless { cache => { } }, $class;
153 }
154
155 sub flush {
156  my $self = shift;
157  _check_self($self);
158  $self->{cache} = { };
159  $self;
160 }
161
162 sub nary {
163  my $self = shift;
164  my $sub  = shift;
165
166  $self->{cv} = [ ];
167  return ($self->enter(svref_2object($sub)))[1];
168 }
169
170 sub name ($) {
171  local $SIG{__DIE__} = \&Carp::confess;
172  my $n = $_[0]->name;
173  $n eq 'null' ? substr(ppname($_[0]->targ), 3) : $n
174 }
175
176 sub power {
177  my ($p, $n, $c) = @_;
178  return unless defined $p;
179  return { 0 => $c } unless $n;
180  if ($n eq 'list') {
181   my $z = delete $p->{0};
182   return { 'list' => $c } unless $z;
183   return { 0      => $c } if $z == 1;
184   return { 0 => $c * $z, list => $c * (1 - $z) };
185  }
186  my $r = combine map { { %$p } } 1 .. $n;
187  $r->{$_} *= $c for keys %$r;
188  return $r;
189 }
190
191 my %ops;
192
193 $ops{$_} = 1      for scalops;
194 $ops{$_} = 0      for qw/stub nextstate pushmark iter unstack/;
195 $ops{$_} = 1      for qw/padsv/;
196 $ops{$_} = 'list' for qw/padav/;
197 $ops{$_} = 'list' for qw/padhv rv2hv/;
198 $ops{$_} = 'list' for qw/padany/;
199 $ops{$_} = 'list' for qw/match entereval readline/;
200
201 $ops{each}      = { 0 => 0.5, 2 => 0.5 };
202 $ops{stat}      = { 0 => 0.5, 13 => 0.5 };
203
204 $ops{caller}    = sub { my @a = caller 0; scalar @a }->();
205 $ops{localtime} = do { my @a = localtime; scalar @a };
206 $ops{gmtime}    = do { my @a = gmtime; scalar @a };
207
208 $ops{$_} = { 0 => 0.5, 10 => 0.5 } for map "gpw$_", qw/nam uid ent/;
209 $ops{$_} = { 0 => 0.5, 4 => 0.5 }  for map "ggr$_", qw/nam gid ent/;
210 $ops{$_} = 'list'                  for qw/ghbyname ghbyaddr ghostent/;
211 $ops{$_} = { 0 => 0.5, 4 => 0.5 }  for qw/gnbyname gnbyaddr gnetent/;
212 $ops{$_} = { 0 => 0.5, 3 => 0.5 }  for qw/gpbyname gpbynumber gprotoent/;
213 $ops{$_} = { 0 => 0.5, 4 => 0.5 }  for qw/gsbyname gsbyport gservent/;
214
215 sub enter {
216  my ($self, $cv) = @_;
217
218  return undef, 'list' if class($cv) ne 'CV';
219  my $op  = $cv->ROOT;
220  my $tag = tag($op);
221
222  return undef, { %{$self->{cache}->{$tag}} } if exists $self->{cache}->{$tag};
223
224  # Anything can happen with recursion
225  for (@{$self->{cv}}) {
226   return undef, 'list' if $tag == tag($_->ROOT);
227  }
228
229  unshift @{$self->{cv}}, $cv;
230  my $r = add $self->inspect($op->first);
231  shift @{$self->{cv}};
232
233  $r = { $r => 1 } unless ref $r;
234  $self->{cache}->{$tag} = { %$r };
235  return undef, $r;
236 }
237
238 sub inspect {
239  my ($self, $op) = @_;
240
241  my $n = name($op);
242  return add($self->inspect_kids($op)), undef if $n eq 'return';
243
244  my $meth = $self->can('pp_' . $n);
245  return $self->$meth($op) if $meth;
246
247  if (exists $ops{$n}) {
248   my $l = $ops{$n};
249   $l = { %$l } if ref $l;
250   return undef, $l;
251  }
252
253  if (class($op) eq 'LOGOP' and not null $op->first) {
254   my @res;
255
256   my $op = $op->first;
257   my ($r1, $l1) = $self->inspect($op);
258   return $r1, $l1 if defined $r1 and zero $l1;
259   my $c = count $l1;
260
261   $op = $op->sibling;
262   my ($r2, $l2) = $self->inspect($op);
263
264   $op = $op->sibling;
265   my ($r3, $l3);
266   if (null $op) {
267    # If the logop has no else branch, it can also return the *scalar* result of
268    # the conditional
269    $l3 = { 1 => 1 };
270   } else {
271    ($r3, $l3) = $self->inspect($op);
272   }
273
274   my $r = add $r1, scale $c / 2, add $r2, $r3;
275   my $l = scale $c / 2, add $l2, $l3;
276   return $r, $l
277  }
278
279  return $self->inspect_kids($op);
280 }
281
282 sub inspect_kids {
283  my ($self, $op) = @_;
284
285  return undef, 0 unless $op->flags & OPf_KIDS;
286
287  $op = $op->first;
288  return undef, 0 if null $op;
289  if (name($op) eq 'pushmark') {
290   $op = $op->sibling;
291   return undef, 0 if null $op;
292  }
293
294  my ($r, @l);
295  my $c = 1;
296  for (; not null $op; $op = $op->sibling) {
297   my $n = name($op);
298   if ($n eq 'nextstate') {
299    @l  = ();
300    next;
301   }
302   if ($n eq 'lineseq') {
303    @l  = ();
304    $op = $op->first;
305    redo;
306   }
307   my ($rc, $lc) = $self->inspect($op);
308   $c = 1 - count $r;
309   $r = add $r, scale $c, $rc if defined $rc;
310   if (not defined $lc) {
311    @l = ();
312    last;
313   }
314   push @l, scale $c, $lc;
315  }
316
317  my $l = scale +(1 - count $r), normalize combine @l;
318
319  return $r, $l;
320 }
321
322 # Stolen from B::Deparse
323
324 sub padval { $_[0]->{cv}->[0]->PADLIST->ARRAYelt(1)->ARRAYelt($_[1]) }
325
326 sub gv_or_padgv {
327  my ($self, $op) = @_;
328  if (class($op) eq 'PADOP') {
329   return $self->padval($op->padix)
330  } else { # class($op) eq "SVOP"
331   return $op->gv;
332  }
333 }
334
335 sub const_sv {
336  my ($self, $op) = @_;
337  my $sv = $op->sv;
338  # the constant could be in the pad (under useithreads)
339  $sv = $self->padval($op->targ) unless $$sv;
340  return $sv;
341 }
342
343 sub pp_entersub {
344  my ($self, $op) = @_;
345
346  $op = $op->first while $op->flags & OPf_KIDS;
347  return undef, 0 if null $op;
348  if (name($op) eq 'pushmark') {
349   $op = $op->sibling;
350   return undef, 0 if null $op;
351  }
352
353  my $r;
354  my $c = 1;
355  for (; not null $op->sibling; $op = $op->sibling) {
356   my $n = name($op);
357   next if $n eq 'nextstate';
358   my ($rc, $lc) = $self->inspect($op);
359   $r = add $r, scale $c, $rc if defined $rc;
360   if (zero $lc) {
361    $c = 1 - count $r;
362    return $r, $c ? { 0 => $c } : undef
363   }
364   $c *= count $lc;
365  }
366
367  if (name($op) eq 'rv2cv') {
368   my $n;
369   do {
370    $op = $op->first;
371    my $next = $op->sibling;
372    while (not null $next) {
373     $op   = $next;
374     $next = $next->sibling;
375    }
376    $n  = name($op)
377   } while ($op->flags & OPf_KIDS and { map { $_ => 1 } qw/null leave/ }->{$n});
378   return 'list', undef unless { map { $_ => 1 } qw/gv refgen/ }->{$n};
379   local $self->{sub} = 1;
380   my ($rc, $lc) = $self->inspect($op);
381   return $r, scale $c, $lc;
382  } else {
383   # Method call ?
384   return $r, { 'list' => $c };
385  }
386 }
387
388 sub pp_gv {
389  my ($self, $op) = @_;
390
391  return $self->{sub} ? $self->enter($self->gv_or_padgv($op)->CV) : (undef, 1)
392 }
393
394 sub pp_anoncode {
395  my ($self, $op) = @_;
396
397  return $self->{sub} ? $self->enter($self->const_sv($op)) : (undef, 1)
398 }
399
400 sub pp_goto {
401  my ($self, $op) = @_;
402
403  my $n = name($op);
404  while ($op->flags & OPf_KIDS) {
405   my $nop = $op->first;
406   my $nn  = name($nop);
407   if ($nn eq 'pushmark') {
408    $nop = $nop->sibling;
409    $nn  = name($nop);
410   }
411   if ($n eq 'rv2cv' and $nn eq 'gv') {
412    return $self->enter($self->gv_or_padgv($nop)->CV);
413   }
414   $op = $nop;
415   $n  = $nn;
416  }
417
418  return undef, 'list';
419 }
420
421 sub pp_const {
422  my ($self, $op) = @_;
423
424  return undef, 0 unless $op->isa('B::SVOP');
425
426  my $sv = $self->const_sv($op);
427  my $n  = 1;
428  my $c  = class($sv);
429  if ($c eq 'AV') {
430   $n = $sv->FILL + 1
431  } elsif ($c eq 'HV') {
432   $n = 2 * $sv->KEYS
433  }
434
435  return undef, $n
436 }
437
438 sub pp_aslice { $_[0]->inspect($_[1]->first->sibling) }
439
440 sub pp_hslice;
441 *pp_hslice = *pp_aslice{CODE};
442
443 sub pp_lslice { $_[0]->inspect($_[1]->first) }
444
445 sub pp_rv2av {
446  my ($self, $op) = @_;
447  $op = $op->first;
448
449  my ($r, $l) = $self->inspect($op);
450  if (name($op) ne 'const') {
451   my $c = 1 - count $r;
452   $l = $c ? { list => $c } : 0;
453  }
454  return $r, $l; 
455 }
456
457 sub pp_aassign {
458  my ($self, $op) = @_;
459
460  $op = $op->first;
461
462  # Can't assign to return
463  my $l = ($self->inspect($op->sibling))[1];
464  return undef, $l if not exists $l->{list};
465
466  $self->inspect($op);
467 }
468
469 sub pp_leaveloop {
470  my ($self, $op) = @_;
471
472  $op = $op->first;
473  my ($r1, $l1);
474  my $for;
475  if (name($op) eq 'enteriter') { # for loop ?
476   $for = 1;
477   ($r1, $l1) = $self->inspect($op);
478   return $r1, $l1 if defined $r1 and zero $l1;
479  }
480
481  $op = $op->sibling;
482  my ($r2, $l2);
483  if (name($op->first) eq 'and') {
484   ($r2, $l2) = $self->inspect($op->first->first);
485   return $r2, $l2 if defined $r2 and zero $l2;
486   my $c = count $l2;
487   return { list => 1 }, undef if !$for and defined $r2;
488   my ($r3, $l3) = $self->inspect($op->first->first->sibling);
489   return { list => 1 }, undef if defined $r3 and defined $l3;
490   $r2 = add $r2, scale $c, $r3;
491  } else {
492   ($r2, $l2) = $self->inspect($op);
493   return { list => 1 }, undef if defined $r2 and defined $l2;
494  }
495
496  my $r = (defined $r1) ? add $r1, scale +(1 - count $r1), $r2
497                        : $r2;
498  my $c = 1 - count $r;
499  return $r, $c ? { 0 => $c } : undef;
500 }
501
502 sub pp_flip {
503  my ($self, $op) = @_;
504
505  $op = $op->first;
506  return $self->inspect($op) if name($op) ne 'range';
507
508  my ($r, $l);
509  my $begin = $op->first;
510  if (name($begin) eq 'const') {
511   my $end = $begin->sibling;
512   if (name($end) eq 'const') {
513    $begin = $self->const_sv($begin);
514    $end   = $self->const_sv($end);
515    {
516     no warnings 'numeric';
517     $begin = int ${$begin->object_2svref};
518     $end   = int ${$end->object_2svref};
519    }
520    return undef, $end - $begin + 1;
521   } else {
522    ($r, $l) = $self->inspect($end);
523   }
524  } else {
525   ($r, $l) = $self->inspect($begin);
526  }
527
528  my $c = 1 - count $r;
529  return $r, $c ? { 'list' => $c } : undef
530 }
531
532 sub pp_grepwhile {
533  my ($self, $op) = @_;
534
535  $op = $op->first;
536  return $self->inspect($op) if name($op) ne 'grepstart';
537  $op = $op->first->sibling;
538
539  my ($r2, $l2) = $self->inspect($op->sibling);
540  return $r2, $l2 if defined $r2 and zero $l2;
541  my $c2 = count $l2; # First one to happen
542
543  my ($r1, $l1) = $self->inspect($op);
544  return (add $r2, scale $c2, $r1), undef if defined $r1 and zero $l1
545                                                         and not zero $l2;
546  my $c1 = count $l1;
547
548  $l2 = { $l2 => 1 } unless ref $l2;
549  my $r = add $r2,
550           scale $c2,
551             add map { scale $l2->{$_}, cumulate $r1, $_, $c1 } keys %$l2;
552  my $c = 1 - count $r;
553  return $r, $c ? { ((zero $l2) ? 0 : 'list') => $c } : undef;
554 }
555
556 sub pp_mapwhile {
557  my ($self, $op) = @_;
558
559  $op = $op->first;
560  return $self->inspect($op) if name($op) ne 'mapstart';
561  $op = $op->first->sibling;
562
563  my ($r2, $l2) = $self->inspect($op->sibling);
564  return $r2, $l2 if defined $r2 and zero $l2;
565  my $c2 = count $l2; # First one to happen
566
567  my ($r1, $l1) = $self->inspect($op);
568  return (add $r2, scale $c2, $r1), undef if defined $r1 and zero $l1
569                                                         and not zero $l2;
570  my $c1 = count $l1;
571
572  $l2 = { $l2 => 1 } unless ref $l2;
573  my $r = add $r2,
574           scale $c2,
575             add map { scale $l2->{$_}, cumulate $r1, $_, $c1 } keys %$l2;
576  my $c = 1 - count $r;
577  my $l = scale $c, normalize add map { power $l1, $_, $l2->{$_} } keys %$l2;
578  return $r, $l;
579 }
580
581 =head1 EXPORT
582
583 An object-oriented module shouldn't export any function, and so does this one.
584
585 =head1 CAVEATS
586
587 The algorithm may be pessimistic (things seen as C<list> while they are of fixed length) but not optimistic (the opposite, duh).
588
589 C<wantarray> isn't specialized when encountered in the optree.
590
591 =head1 DEPENDENCIES
592
593 L<perl> 5.8.1.
594
595 L<Carp> (standard since perl 5), L<B> (since perl 5.005) and L<XSLoader> (since perl 5.006).
596
597 =head1 AUTHOR
598
599 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
600
601 You can contact me by mail or on #perl @ FreeNode (vincent or Prof_Vince).
602
603 =head1 BUGS
604
605 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.
606
607 =head1 SUPPORT
608
609 You can find documentation for this module with the perldoc command.
610
611     perldoc Sub::Nary
612
613 Tests code coverage report is available at L<http://www.profvince.com/perl/cover/Sub-Nary>.
614
615 =head1 ACKNOWLEDGEMENTS
616
617 Thanks to Sebastien Aperghis-Tramoni for helping to name this module.
618
619 =head1 COPYRIGHT & LICENSE
620
621 Copyright 2008 Vincent Pit, all rights reserved.
622
623 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
624
625 =cut
626
627 1; # End of Sub::Nary