File Coverage

File:C4/ClassSortRoutine/LCC.pm
Coverage:86.5%

linestmtbrancondsubtimecode
1package C4::ClassSortRoutine::LCC;
2
3# Copyright (C) 2007 LibLime
4#
5# This file is part of Koha.
6#
7# Koha is free software; you can redistribute it and/or modify it under the
8# terms of the GNU General Public License as published by the Free Software
9# Foundation; either version 2 of the License, or (at your option) any later
10# version.
11#
12# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License along
17# with Koha; if not, write to the Free Software Foundation, Inc.,
18# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20
46
46
46
45496
135
1451
use strict;
21
46
46
46
286
141
1689
use warnings;
22
23
46
46
46
281
375
13806
use vars qw($VERSION);
24
25# set the version for version checking
26$VERSION = 3.00;
27
28 - 46
=head1 NAME 

C4::ClassSortRoutine::LCC - generic call number sorting key routine

=head1 SYNOPSIS

use C4::ClassSortRoutine;

my $cn_sort = GetClassSortKey('LCC', $cn_class, $cn_item);

=head1 FUNCTIONS

=head2 get_class_sort_key

  my $cn_sort = C4::ClassSortRoutine::LCC::LCC($cn_class, $cn_item);

Generates sorting key for LC call numbers.

=cut
47
48sub get_class_sort_key {
49
60
431234
    my ($cn_class, $cn_item) = @_;
50
51
60
339
    $cn_class = '' unless defined $cn_class;
52
60
282
    $cn_item = '' unless defined $cn_item;
53
60
262
    my $key = uc "$cn_class $cn_item";
54
60
238
    $key =~ s/^\s+//;
55
60
329
    $key =~ s/\s+$//;
56
60
0
0
0
744
0
0
0
    $key =~ s/^[^\p{IsAlnum}\s.]//g;
57
60
41847
    $key =~ s/^([A-Z]+)/$1 /;
58
60
239
    $key =~ s/(\.[A-Z])/ $1/g;
59    # handle first digit group
60
60
0
266
0
    $key =~ s/(\d+)/sprintf("%-05.5d", $1)/xe;
61
60
254
    $key =~ s/\s+/_/g;
62
60
264
    $key =~ s/\./_/g;
63
60
549
    $key =~ s/__/_/g;
64
60
597
    $key =~ s/[^\p{IsAlnum}_]//g;
65
66
60
5277
    return $key;
67
68}
69
701;
71
72 - 76
=head1 AUTHOR

Koha Development Team <http://koha-community.org/>

=cut
77