Filename | /usr/share/koha/lib/C4/ClassSortRoutine/LCC.pm |
Statements | Executed 22 statements in 357µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 3.02ms | 36.1ms | BEGIN@23 | C4::ClassSortRoutine::LCC::
1 | 1 | 1 | 24µs | 126µs | get_class_sort_key | C4::ClassSortRoutine::LCC::
1 | 1 | 1 | 16µs | 20µs | BEGIN@21 | C4::ClassSortRoutine::LCC::
1 | 1 | 1 | 13µs | 51µs | BEGIN@25 | C4::ClassSortRoutine::LCC::
1 | 1 | 1 | 9µs | 21µs | BEGIN@22 | C4::ClassSortRoutine::LCC::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package C4::ClassSortRoutine::LCC; | ||||
2 | |||||
3 | # Copyright (C) 2007 LibLime | ||||
4 | # Copyright (C) 2012 Equinox Software, Inc. | ||||
5 | # | ||||
6 | # This file is part of Koha. | ||||
7 | # | ||||
8 | # Koha is free software; you can redistribute it and/or modify it under the | ||||
9 | # terms of the GNU General Public License as published by the Free Software | ||||
10 | # Foundation; either version 2 of the License, or (at your option) any later | ||||
11 | # version. | ||||
12 | # | ||||
13 | # Koha is distributed in the hope that it will be useful, but WITHOUT ANY | ||||
14 | # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR | ||||
15 | # A PARTICULAR PURPOSE. See the GNU General Public License for more details. | ||||
16 | # | ||||
17 | # You should have received a copy of the GNU General Public License along | ||||
18 | # with Koha; if not, write to the Free Software Foundation, Inc., | ||||
19 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||||
20 | |||||
21 | 3 | 28µs | 2 | 24µs | # spent 20µs (16+4) within C4::ClassSortRoutine::LCC::BEGIN@21 which was called:
# once (16µs+4µs) by C4::ClassSource::BEGIN@25 at line 21 # spent 20µs making 1 call to C4::ClassSortRoutine::LCC::BEGIN@21
# spent 4µs making 1 call to strict::import |
22 | 3 | 26µs | 2 | 32µs | # spent 21µs (9+12) within C4::ClassSortRoutine::LCC::BEGIN@22 which was called:
# once (9µs+12µs) by C4::ClassSource::BEGIN@25 at line 22 # spent 21µs making 1 call to C4::ClassSortRoutine::LCC::BEGIN@22
# spent 12µs making 1 call to warnings::import |
23 | 3 | 143µs | 1 | 36.1ms | # spent 36.1ms (3.02+33.0) within C4::ClassSortRoutine::LCC::BEGIN@23 which was called:
# once (3.02ms+33.0ms) by C4::ClassSource::BEGIN@25 at line 23 # spent 36.1ms making 1 call to C4::ClassSortRoutine::LCC::BEGIN@23 |
24 | |||||
25 | 3 | 140µs | 2 | 89µs | # spent 51µs (13+38) within C4::ClassSortRoutine::LCC::BEGIN@25 which was called:
# once (13µs+38µs) by C4::ClassSource::BEGIN@25 at line 25 # spent 51µs making 1 call to C4::ClassSortRoutine::LCC::BEGIN@25
# spent 38µs making 1 call to vars::import |
26 | |||||
27 | # set the version for version checking | ||||
28 | 1 | 2µs | $VERSION = 3.07.00.049; | ||
29 | |||||
30 | =head1 NAME | ||||
31 | |||||
- - | |||||
50 | # spent 126µs (24+103) within C4::ClassSortRoutine::LCC::get_class_sort_key which was called:
# once (24µs+103µs) by C4::ClassSource::BEGIN@25 at line 1 of (eval 1001)[/usr/share/koha/lib/C4/ClassSortRoutine.pm:58] | ||||
51 | 1 | 2µs | my ($cn_class, $cn_item) = @_; | ||
52 | |||||
53 | 1 | 600ns | $cn_class = '' unless defined $cn_class; | ||
54 | 1 | 200ns | $cn_item = '' unless defined $cn_item; | ||
55 | 1 | 4µs | 1 | 16µs | my $call_number = Library::CallNumber::LC->new(uc "$cn_class $cn_item"); # spent 16µs making 1 call to Library::CallNumber::LC::new |
56 | 1 | 200ns | return '' unless defined $call_number; | ||
57 | 1 | 2µs | 1 | 87µs | my $key = $call_number->normalize(); # spent 87µs making 1 call to Library::CallNumber::LC::normalize |
58 | 1 | 400ns | $key = '' unless defined $key; | ||
59 | 1 | 6µs | return $key; | ||
60 | |||||
61 | } | ||||
62 | |||||
63 | 1 | 4µs | 1; | ||
64 | |||||
65 | =head1 AUTHOR | ||||
66 | |||||
- - |