← Index
NYTProf Performance Profile   « line view »
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 13:01:18 2016
Reported on Fri Jan 8 13:01:35 2016

Filename/usr/share/perl5/DBIx/Class/Relationship/CascadeActions.pm
StatementsExecuted 10 statements in 688µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11114µs21µsDBIx::Class::Relationship::CascadeActions::::BEGIN@4DBIx::Class::Relationship::CascadeActions::BEGIN@4
1118µs13µsDBIx::Class::Relationship::CascadeActions::::BEGIN@5DBIx::Class::Relationship::CascadeActions::BEGIN@5
1117µs94µsDBIx::Class::Relationship::CascadeActions::::BEGIN@7DBIx::Class::Relationship::CascadeActions::BEGIN@7
1117µs36µsDBIx::Class::Relationship::CascadeActions::::BEGIN@6DBIx::Class::Relationship::CascadeActions::BEGIN@6
0000s0sDBIx::Class::Relationship::CascadeActions::::deleteDBIx::Class::Relationship::CascadeActions::delete
0000s0sDBIx::Class::Relationship::CascadeActions::::updateDBIx::Class::Relationship::CascadeActions::update
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package # hide from PAUSE
2 DBIx::Class::Relationship::CascadeActions;
3
4236µs228µs
# spent 21µs (14+7) within DBIx::Class::Relationship::CascadeActions::BEGIN@4 which was called: # once (14µs+7µs) by Class::C3::Componentised::ensure_class_loaded at line 4
use strict;
# spent 21µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@4 # spent 7µs making 1 call to strict::import
5230µs217µs
# spent 13µs (8+4) within DBIx::Class::Relationship::CascadeActions::BEGIN@5 which was called: # once (8µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 5
use warnings;
# spent 13µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@5 # spent 4µs making 1 call to warnings::import
6223µs266µs
# spent 36µs (7+30) within DBIx::Class::Relationship::CascadeActions::BEGIN@6 which was called: # once (7µs+30µs) by Class::C3::Componentised::ensure_class_loaded at line 6
use DBIx::Class::Carp;
# spent 36µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@6 # spent 30µs making 1 call to DBIx::Class::Carp::import
72594µs2181µs
# spent 94µs (7+87) within DBIx::Class::Relationship::CascadeActions::BEGIN@7 which was called: # once (7µs+87µs) by Class::C3::Componentised::ensure_class_loaded at line 7
use namespace::clean;
# spent 94µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@7 # spent 87µs making 1 call to namespace::clean::import
8
912µsour %_pod_inherit_config =
10 (
11 class_map => { 'DBIx::Class::Relationship::CascadeActions' => 'DBIx::Class::Relationship' }
12 );
13
14sub delete {
15 my ($self, @rest) = @_;
16 return $self->next::method(@rest) unless ref $self;
17 # I'm just ignoring this for class deletes because hell, the db should
18 # be handling this anyway. Assuming we have joins we probably actually
19 # *could* do them, but I'd rather not.
20
21 my $source = $self->result_source;
22 my %rels = map { $_ => $source->relationship_info($_) } $source->relationships;
23 my @cascade = grep { $rels{$_}{attrs}{cascade_delete} } keys %rels;
24
25 if (@cascade) {
26 my $guard = $source->schema->txn_scope_guard;
27
28 my $ret = $self->next::method(@rest);
29
30 foreach my $rel (@cascade) {
31 if( my $rel_rs = eval{ $self->search_related($rel) } ) {
32 $rel_rs->delete_all;
33 } else {
34 carp "Skipping cascade delete on relationship '$rel' - related resultsource '$rels{$rel}{class}' is not registered with this schema";
35 next;
36 }
37 }
38
39 $guard->commit;
40 return $ret;
41 }
42
43 $self->next::method(@rest);
44}
45
46sub update {
47 my ($self, @rest) = @_;
48 return $self->next::method(@rest) unless ref $self;
49 # Because update cascades on a class *really* don't make sense!
50
51 my $source = $self->result_source;
52 my %rels = map { $_ => $source->relationship_info($_) } $source->relationships;
53 my @cascade = grep { $rels{$_}{attrs}{cascade_update} } keys %rels;
54
55 if (@cascade) {
56 my $guard = $source->schema->txn_scope_guard;
57
58 my $ret = $self->next::method(@rest);
59
60 foreach my $rel (@cascade) {
61 next if (
62 $rels{$rel}{attrs}{accessor}
63 &&
64 $rels{$rel}{attrs}{accessor} eq 'single'
65 &&
66 !exists($self->{_relationship_data}{$rel})
67 );
68 $_->update for grep defined, $self->$rel;
69 }
70
71 $guard->commit;
72 return $ret;
73 }
74
75 $self->next::method(@rest);
76}
77
7813µs190µs1;
# spent 90µs making 1 call to B::Hooks::EndOfScope::XS::__ANON__