line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Mock::Data::Set; |
2
|
9
|
|
|
9
|
|
260522
|
use strict; |
|
9
|
|
|
|
|
19
|
|
|
9
|
|
|
|
|
296
|
|
3
|
9
|
|
|
9
|
|
44
|
use warnings; |
|
9
|
|
|
|
|
19
|
|
|
9
|
|
|
|
|
11175
|
|
4
|
|
|
|
|
|
|
require Mock::Data::Generator; |
5
|
|
|
|
|
|
|
our @ISA= qw( Mock::Data::Generator ); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
# ABSTRACT: Generator which returns one item from a set |
8
|
|
|
|
|
|
|
our $VERSION = '0.02'; # VERSION |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub new { |
12
|
19
|
|
|
19
|
1
|
7289
|
my $class= shift; |
13
|
19
|
100
|
66
|
|
|
153
|
my %args= @_ == 1 && ref $_[0] eq 'HASH'? %{$_[0]} |
|
0
|
50
|
66
|
|
|
0
|
|
14
|
|
|
|
|
|
|
: @_ == 1 && ref $_[0] eq 'ARRAY'? ( items => $_[0] ) |
15
|
|
|
|
|
|
|
: @_; |
16
|
19
|
|
|
|
|
115
|
bless \%args, $class; |
17
|
|
|
|
|
|
|
} |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
sub new_weighted { |
20
|
2
|
|
|
2
|
1
|
2907
|
my $class= shift; |
21
|
2
|
50
|
|
|
|
9
|
@_ & 1 and Carp::croak("Odd number of elements given to new_weighted, need (value => weight) pairs"); |
22
|
2
|
|
|
|
|
5
|
my (@items, @weights); |
23
|
2
|
|
|
|
|
5
|
while (@_) { |
24
|
7
|
|
|
|
|
12
|
push @items, shift; |
25
|
7
|
|
|
|
|
13
|
push @weights, shift; |
26
|
|
|
|
|
|
|
} |
27
|
2
|
|
|
|
|
7
|
$class->new(items => \@items, weights => \@weights); |
28
|
|
|
|
|
|
|
} |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
sub items { |
32
|
131
|
|
|
131
|
1
|
7673
|
my $self= shift; |
33
|
131
|
50
|
|
|
|
330
|
return $self->{items} unless @_; |
34
|
0
|
|
|
|
|
0
|
my $val= shift; |
35
|
0
|
0
|
|
|
|
0
|
delete $self->{_odds_table} if $#{$self->{items}} != $#$val; |
|
0
|
|
|
|
|
0
|
|
36
|
0
|
|
|
|
|
0
|
return $self->{items}= $val; |
37
|
|
|
|
|
|
|
} |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
sub weights { |
40
|
118
|
|
|
118
|
1
|
649
|
my $self= shift; |
41
|
118
|
50
|
|
|
|
293
|
return $self->{weights} unless @_; |
42
|
0
|
|
|
|
|
0
|
delete $self->{_odds_table}; |
43
|
0
|
|
|
|
|
0
|
return $self->{weights}= shift; |
44
|
|
|
|
|
|
|
} |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
sub generate { |
48
|
108
|
|
|
108
|
1
|
2198
|
my $self= shift; |
49
|
108
|
|
|
|
|
164
|
my $items= $self->items; |
50
|
108
|
|
|
|
|
163
|
my $pick; |
51
|
108
|
100
|
|
|
|
152
|
if (!$self->weights) { |
52
|
7
|
|
|
|
|
25
|
$pick= rand( scalar @$items ); |
53
|
|
|
|
|
|
|
} else { |
54
|
|
|
|
|
|
|
# binary search for the random number |
55
|
101
|
|
|
|
|
146
|
my $tbl= $self->_odds_table; |
56
|
101
|
|
|
|
|
196
|
my ($min, $max, $r)= (0, $#$items, rand); |
57
|
101
|
|
|
|
|
438
|
while ($min+1 < $max) { |
58
|
141
|
|
|
|
|
223
|
my $mid= int(($max+$min)/2); |
59
|
141
|
100
|
|
|
|
254
|
if ($r < $tbl->[$mid]) { $max= $mid-1; } |
|
60
|
|
|
|
|
113
|
|
60
|
81
|
|
|
|
|
164
|
else { $min= $mid; } |
61
|
|
|
|
|
|
|
} |
62
|
101
|
100
|
100
|
|
|
293
|
$pick= ($max > $min && $tbl->[$max] <= $r)? $max : $min; |
63
|
|
|
|
|
|
|
} |
64
|
108
|
|
|
|
|
197
|
my $cmp_item= $items->[$pick]; |
65
|
108
|
100
|
66
|
|
|
351
|
return $cmp_item unless ref $cmp_item && ref($cmp_item)->can('generate'); |
66
|
4
|
|
|
|
|
19
|
$cmp_item->generate(@_); |
67
|
|
|
|
|
|
|
} |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
sub _odds_table { |
70
|
101
|
|
66
|
101
|
|
190
|
$_[0]{_odds_table} ||= $_[0]->_build__odds_table; |
71
|
|
|
|
|
|
|
} |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
sub _build__odds_table { |
74
|
2
|
|
|
2
|
|
4
|
my $self= shift; |
75
|
2
|
|
|
|
|
4
|
my $items= $self->items; |
76
|
2
|
|
|
|
|
5
|
my $weights= $self->weights; |
77
|
2
|
|
|
|
|
3
|
my $total= 0; |
78
|
|
|
|
|
|
|
$total += ($weights->[$_] ||= 1) |
79
|
2
|
|
50
|
|
|
14
|
for 0..$#$items; |
80
|
2
|
|
|
|
|
3
|
my $sum= 0; |
81
|
2
|
|
|
|
|
5
|
return [ map { my $x= $sum; $sum += $_; $x/$total } @$weights ] |
|
7
|
|
|
|
|
9
|
|
|
7
|
|
|
|
|
9
|
|
|
7
|
|
|
|
|
18
|
|
82
|
|
|
|
|
|
|
} |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
sub compile { |
86
|
5
|
|
|
5
|
1
|
237
|
my $self= shift; |
87
|
5
|
|
|
|
|
13
|
my $items= $self->items; |
88
|
5
|
|
|
|
|
11
|
my @compiled; |
89
|
5
|
|
|
|
|
13
|
for (@$items) { |
90
|
5
|
100
|
66
|
|
|
56
|
if (ref && ref->can('generate')) { |
91
|
|
|
|
|
|
|
# Some items are generators. Compile a list of them, but only the generators. |
92
|
2
|
50
|
33
|
|
|
21
|
@compiled= map +(ref && ref->can('generate')? $_->compile : undef), @$items; |
93
|
2
|
|
|
|
|
4
|
last; |
94
|
|
|
|
|
|
|
} |
95
|
|
|
|
|
|
|
} |
96
|
|
|
|
|
|
|
|
97
|
5
|
50
|
|
|
|
17
|
if (!$self->weights) { |
98
|
|
|
|
|
|
|
return !@compiled |
99
|
2
|
|
|
2
|
|
13
|
? sub { $items->[int rand scalar @$items] } |
100
|
|
|
|
|
|
|
: sub { |
101
|
2
|
|
|
2
|
|
8
|
my $pick= int rand scalar @$items; |
102
|
2
|
50
|
|
|
|
8
|
$compiled[$pick]? $compiled[$pick]->(@_) : $items->[$pick]; |
103
|
5
|
100
|
|
|
|
55
|
}; |
104
|
|
|
|
|
|
|
} |
105
|
|
|
|
|
|
|
else { |
106
|
0
|
|
|
|
|
0
|
my $odds_table= $self->_odds_table; |
107
|
|
|
|
|
|
|
return sub { |
108
|
|
|
|
|
|
|
# binary search for the random number |
109
|
0
|
|
|
0
|
|
0
|
my ($min, $max, $r)= (0, $#$items, rand); |
110
|
0
|
|
|
|
|
0
|
while ($min+1 < $max) { |
111
|
0
|
|
|
|
|
0
|
my $mid= int(($max+$min)/2); |
112
|
0
|
0
|
|
|
|
0
|
if ($r < $odds_table->[$mid]) { $max= $mid-1; } |
|
0
|
|
|
|
|
0
|
|
113
|
0
|
|
|
|
|
0
|
else { $min= $mid; } |
114
|
|
|
|
|
|
|
} |
115
|
0
|
0
|
0
|
|
|
0
|
my $pick= ($max > $min && $odds_table->[$max] <= $r)? $max : $min; |
116
|
0
|
0
|
|
|
|
0
|
$compiled[$pick]? $compiled[$pick]->(@_) : $items->[$pick]; |
117
|
|
|
|
|
|
|
} |
118
|
0
|
|
|
|
|
0
|
} |
119
|
|
|
|
|
|
|
} |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
sub combine_generator { |
123
|
1
|
|
|
1
|
1
|
4
|
my ($self, $peer)= @_; |
124
|
1
|
|
|
|
|
2
|
my @items= @{$self->items}; |
|
1
|
|
|
|
|
4
|
|
125
|
1
|
|
|
|
|
4
|
my $weights= $self->weights; |
126
|
1
|
50
|
|
|
|
5
|
if ($peer->isa('Mock::Data::Set')) { |
127
|
1
|
|
|
|
|
4
|
my $peer_items= $peer->items; |
128
|
1
|
|
|
|
|
4
|
my $peer_weights= $peer->weights; |
129
|
1
|
50
|
33
|
|
|
6
|
if ($weights || $peer_weights) { |
130
|
0
|
0
|
|
|
|
0
|
$weights= [ |
|
|
0
|
|
|
|
|
|
131
|
|
|
|
|
|
|
$weights? @$weights : (map 1, @items), |
132
|
|
|
|
|
|
|
$peer_weights? @$peer_weights : (map 1, @$peer_items), |
133
|
|
|
|
|
|
|
]; |
134
|
|
|
|
|
|
|
} |
135
|
1
|
|
|
|
|
3
|
push @items, @$peer_items; |
136
|
|
|
|
|
|
|
} else { |
137
|
0
|
|
|
|
|
0
|
push @items, $peer; |
138
|
0
|
0
|
0
|
|
|
0
|
$weights= $weights && @$weights? [ @$weights, List::Util::sum0(@$weights)/@$weights ] : undef; |
139
|
|
|
|
|
|
|
} |
140
|
1
|
|
|
|
|
5
|
return Mock::Data::Set->new( |
141
|
|
|
|
|
|
|
items => \@items, |
142
|
|
|
|
|
|
|
weights => $weights, |
143
|
|
|
|
|
|
|
); |
144
|
|
|
|
|
|
|
} |
145
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
require Mock::Data::Util; |
147
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
__END__ |