Bug 18309: UNIMARC update from IFLA - authority (fr) (FA)
[koha.git] / C4 / ClassSplitRoutine / Generic.pm
blobbeeb6575b79b79d1d874bbe827077d8b2ce44234
1 package C4::ClassSplitRoutine::Generic;
3 # Copyright 2018 Koha Development Team
5 # This file is part of Koha.
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.
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.
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>.
20 use Modern::Perl;
22 use C4::Debug;
24 =head1 NAME
26 C4::ClassSplitRoutine::Generic - generic call number sorting key routine
28 =head1 SYNOPSIS
30 use C4::ClassSplitRoutine;
32 =head1 FUNCTIONS
35 =head2 split_callnumber
37 my $cn_split = C4::ClassSplitRoutine::Generic::split_callnumber($cn_item);
39 NOTE: Custom call number types go here. It may be necessary to create additional
40 splitting algorithms if some custom call numbers cannot be made to work here.
41 Presently this splits standard non-ddcn, non-lccn fiction and biography call numbers.
43 =cut
45 sub split_callnumber {
46 my ($cn_item) = @_;
48 my @lines;
50 # Split call numbers based on spaces
51 push @lines, split /\s+/, $cn_item
52 ; # split the call number into an arbitrary number of pieces at spaces
53 if ( $lines[-1] !~ /^.*\d-\d.*$/ && $lines[-1] =~ /^(.*\d+)(\D.*)$/ ) {
54 pop @lines; # pull off the matching last element
55 push @lines, $1, $2; # replace it with the two pieces
57 unless ( scalar @lines ) {
58 warn sprintf( 'regexp failed to match string: %s', $cn_item );
59 push( @lines, $cn_item );
61 $debug and print STDERR "split_ccn array: ", join( " | ", @lines ), "\n";
63 return @lines;
68 =head1 AUTHOR
70 Koha Development Team <http://koha-community.org/>
72 =cut