← 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:50:58 2016
Reported on Fri Jan 8 13:51:27 2016

Filename/usr/share/perl5/DBIx/Class/Relationship/CascadeActions.pm
StatementsExecuted 10 statements in 714µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11117µs25µ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µs38µsDBIx::Class::Relationship::CascadeActions::::BEGIN@6DBIx::Class::Relationship::CascadeActions::BEGIN@6
1117µs118µsDBIx::Class::Relationship::CascadeActions::::BEGIN@7DBIx::Class::Relationship::CascadeActions::BEGIN@7
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
4240µs233µs
# spent 25µs (17+8) within DBIx::Class::Relationship::CascadeActions::BEGIN@4 which was called: # once (17µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 4
use strict;
# spent 25µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@4 # spent 8µs making 1 call to strict::import
5230µs218µs
# spent 13µs (8+5) within DBIx::Class::Relationship::CascadeActions::BEGIN@5 which was called: # once (8µs+5µ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 5µs making 1 call to warnings::import
6224µs269µs
# spent 38µs (7+31) within DBIx::Class::Relationship::CascadeActions::BEGIN@6 which was called: # once (7µs+31µs) by Class::C3::Componentised::ensure_class_loaded at line 6
use DBIx::Class::Carp;
# spent 38µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@6 # spent 31µs making 1 call to DBIx::Class::Carp::import
72615µs2230µs
# spent 118µs (7+111) within DBIx::Class::Relationship::CascadeActions::BEGIN@7 which was called: # once (7µs+111µs) by Class::C3::Componentised::ensure_class_loaded at line 7
use namespace::clean;
# spent 118µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@7 # spent 111µ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µs192µs1;
# spent 92µs making 1 call to B::Hooks::EndOfScope::XS::__ANON__