← 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 14:16:49 2016
Reported on Fri Jan 8 14:23:08 2016

Filename/usr/share/perl5/DBIx/Class/Relationship/CascadeActions.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11116µs23µsDBIx::Class::Relationship::CascadeActions::::BEGIN@4DBIx::Class::Relationship::CascadeActions::BEGIN@4
1118µs14µsDBIx::Class::Relationship::CascadeActions::::BEGIN@5DBIx::Class::Relationship::CascadeActions::BEGIN@5
1116µs37µsDBIx::Class::Relationship::CascadeActions::::BEGIN@6DBIx::Class::Relationship::CascadeActions::BEGIN@6
1116µs31µ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
4231µs
# spent 23µs (16+8) within DBIx::Class::Relationship::CascadeActions::BEGIN@4 which was called: # once (16µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 4
use strict;
# spent 23µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@4 # spent 8µs making 1 call to strict::import
5220µs
# spent 14µs (8+6) within DBIx::Class::Relationship::CascadeActions::BEGIN@5 which was called: # once (8µs+6µs) by Class::C3::Componentised::ensure_class_loaded at line 5
use warnings;
# spent 14µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@5 # spent 6µs making 1 call to warnings::import
6268µs
# spent 37µs (6+31) within DBIx::Class::Relationship::CascadeActions::BEGIN@6 which was called: # once (6µs+31µs) by Class::C3::Componentised::ensure_class_loaded at line 6
use DBIx::Class::Carp;
# spent 37µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@6 # spent 31µs making 1 call to DBIx::Class::Carp::import
7256µs
# spent 31µs (6+25) within DBIx::Class::Relationship::CascadeActions::BEGIN@7 which was called: # once (6µs+25µs) by Class::C3::Componentised::ensure_class_loaded at line 7
use namespace::clean;
# spent 31µs making 1 call to DBIx::Class::Relationship::CascadeActions::BEGIN@7 # spent 25µs making 1 call to namespace::clean::import
8
9our %_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
781117µs1;
# spent 117µs making 1 call to B::Hooks::EndOfScope::XS::__ANON__