Bug 19532: Database and installer stuff
[koha.git] / C4 / ClassSplitRoutine / Generic.pm
1 package C4::ClassSplitRoutine::Generic;
2
3 # Copyright 2018 Koha Development Team
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 =head1 NAME
23
24 C4::ClassSplitRoutine::Generic - generic call number sorting key routine
25
26 =head1 SYNOPSIS
27
28 use C4::ClassSplitRoutine;
29
30 =head1 FUNCTIONS
31
32
33 =head2 split_callnumber
34
35   my $cn_split = C4::ClassSplitRoutine::Generic::split_callnumber($cn_item);
36
37   NOTE: Custom call number types go here. It may be necessary to create additional
38   splitting algorithms if some custom call numbers cannot be made to work here.
39   Presently this splits standard non-ddcn, non-lccn fiction and biography call numbers.
40
41 =cut
42
43 sub split_callnumber {
44     my ($cn_item) = @_;
45
46     my @lines;
47
48     # Split call numbers based on spaces
49     push @lines, split /\s+/, $cn_item
50       ;    # split the call number into an arbitrary number of pieces at spaces
51     if ( $lines[-1] !~ /^.*\d-\d.*$/ && $lines[-1] =~ /^(.*\d+)(\D.*)$/ ) {
52         pop @lines;    # pull off the matching last element
53         push @lines, $1, $2;    # replace it with the two pieces
54     }
55     unless ( scalar @lines ) {
56         warn sprintf( 'regexp failed to match string: %s', $cn_item );
57         push( @lines, $cn_item );
58     }
59
60     return @lines;
61 }
62
63 1;
64
65 =head1 AUTHOR
66
67 Koha Development Team <http://koha-community.org/>
68
69 =cut