line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package # hide from PAUSE |
2
|
|
|
|
|
|
|
DBIx::Class::CDBICompat::LiveObjectIndex; |
3
|
|
|
|
|
|
|
|
4
|
2
|
|
|
2
|
|
996
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
46
|
|
5
|
2
|
|
|
2
|
|
8
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
48
|
|
6
|
|
|
|
|
|
|
|
7
|
2
|
|
|
2
|
|
9
|
use Scalar::Util qw/weaken/; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
89
|
|
8
|
|
|
|
|
|
|
|
9
|
2
|
|
|
2
|
|
11
|
use base qw/Class::Data::Inheritable/; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
900
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata('purge_object_index_every' => 1000); |
12
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata('live_object_index' => { }); |
13
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata('live_object_init_count' => { }); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
# Caching is on by default, but a classic CDBI hack to turn it off is to |
16
|
|
|
|
|
|
|
# set this variable false. |
17
|
|
|
|
|
|
|
$Class::DBI::Weaken_Is_Available = 1 |
18
|
|
|
|
|
|
|
unless defined $Class::DBI::Weaken_Is_Available; |
19
|
|
|
|
|
|
|
__PACKAGE__->mk_classdata('__nocache' => 0); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
sub nocache { |
22
|
0
|
|
|
0
|
0
|
|
my $class = shift; |
23
|
|
|
|
|
|
|
|
24
|
0
|
0
|
|
|
|
|
return $class->__nocache(@_) if @_; |
25
|
|
|
|
|
|
|
|
26
|
0
|
0
|
|
|
|
|
return 1 if $Class::DBI::Weaken_Is_Available == 0; |
27
|
0
|
|
|
|
|
|
return $class->__nocache; |
28
|
|
|
|
|
|
|
} |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
# Ripped from Class::DBI 0.999, all credit due to Tony Bowden for this code, |
31
|
|
|
|
|
|
|
# all blame due to me for whatever bugs I introduced porting it. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
sub purge_dead_from_object_index { |
34
|
0
|
|
|
0
|
0
|
|
my $live = shift->live_object_index; |
35
|
0
|
|
|
|
|
|
delete @$live{ grep !defined $live->{$_}, keys %$live }; |
36
|
|
|
|
|
|
|
} |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
sub remove_from_object_index { |
39
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
40
|
0
|
|
|
|
|
|
delete $self->live_object_index->{$self->ID}; |
41
|
|
|
|
|
|
|
} |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
sub clear_object_index { |
44
|
0
|
|
|
0
|
0
|
|
my $live = shift->live_object_index; |
45
|
0
|
|
|
|
|
|
delete @$live{ keys %$live }; |
46
|
|
|
|
|
|
|
} |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
# And now the fragments to tie it in to DBIx::Class::Table |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
sub insert { |
52
|
0
|
|
|
0
|
0
|
|
my ($self, @rest) = @_; |
53
|
0
|
|
|
|
|
|
$self->next::method(@rest); |
54
|
|
|
|
|
|
|
|
55
|
0
|
0
|
|
|
|
|
return $self if $self->nocache; |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
# Because the insert will die() if it can't insert into the db (or should) |
58
|
|
|
|
|
|
|
# we can be sure the object *was* inserted if we got this far. In which |
59
|
|
|
|
|
|
|
# case, given primary keys are unique and ID only returns a |
60
|
|
|
|
|
|
|
# value if the object has all its primary keys, we can be sure there |
61
|
|
|
|
|
|
|
# isn't a real one in the object index already because such a record |
62
|
|
|
|
|
|
|
# cannot have existed without the insert failing. |
63
|
0
|
0
|
|
|
|
|
if (my $key = $self->ID) { |
64
|
0
|
|
|
|
|
|
my $live = $self->live_object_index; |
65
|
0
|
|
|
|
|
|
weaken($live->{$key} = $self); |
66
|
|
|
|
|
|
|
$self->purge_dead_from_object_index |
67
|
|
|
|
|
|
|
if ++$self->live_object_init_count->{count} |
68
|
0
|
0
|
|
|
|
|
% $self->purge_object_index_every == 0; |
69
|
|
|
|
|
|
|
} |
70
|
|
|
|
|
|
|
|
71
|
0
|
|
|
|
|
|
return $self; |
72
|
|
|
|
|
|
|
} |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
sub inflate_result { |
75
|
0
|
|
|
0
|
0
|
|
my ($class, @rest) = @_; |
76
|
0
|
|
|
|
|
|
my $new = $class->next::method(@rest); |
77
|
|
|
|
|
|
|
|
78
|
0
|
0
|
|
|
|
|
return $new if $new->nocache; |
79
|
|
|
|
|
|
|
|
80
|
0
|
0
|
|
|
|
|
if (my $key = $new->ID) { |
81
|
|
|
|
|
|
|
#warn "Key $key"; |
82
|
0
|
|
|
|
|
|
my $live = $class->live_object_index; |
83
|
0
|
0
|
|
|
|
|
return $live->{$key} if $live->{$key}; |
84
|
0
|
|
|
|
|
|
weaken($live->{$key} = $new); |
85
|
|
|
|
|
|
|
$class->purge_dead_from_object_index |
86
|
|
|
|
|
|
|
if ++$class->live_object_init_count->{count} |
87
|
0
|
0
|
|
|
|
|
% $class->purge_object_index_every == 0; |
88
|
|
|
|
|
|
|
} |
89
|
0
|
|
|
|
|
|
return $new; |
90
|
|
|
|
|
|
|
} |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
1; |