Make js prompts translatable using _("...") and comment out unused vars.
[koha.git] / C4 / Matcher.pm
blob512562c0e9c9c439f741ef0db36d0da005de31f7
1 package C4::Matcher;
3 # Copyright (C) 2007 LibLime
5 # This file is part of Koha.
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.
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.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
20 use strict;
21 use C4::Context;
22 use MARC::Record;
23 use C4::Search;
24 use C4::Biblio;
26 use vars qw($VERSION);
28 BEGIN {
29 # set the version for version checking
30 $VERSION = 3.01;
33 =head1 NAME
35 C4::Matcher - find MARC records matching another one
37 =head1 SYNOPSIS
39 =over 4
41 my @matchers = C4::Matcher::GetMatcherList();
43 my $matcher = C4::Matcher->new($record_type);
44 $matcher->threshold($threshold);
45 $matcher->code($code);
46 $matcher->description($description);
48 $matcher->add_simple_matchpoint('isbn', 1000, '020', 'a', -1, 0, '');
49 $matcher->add_simple_matchpoint('Date', 1000, '008', '', 7, 4, '');
50 $matcher->add_matchpoint('isbn', 1000, [ { tag => '020', subfields => 'a', norms => [] } ]);
52 $matcher->add_simple_required_check('245', 'a', -1, 0, '', '245', 'a', -1, 0, '');
53 $matcher->add_required_check([ { tag => '245', subfields => 'a', norms => [] } ],
54 [ { tag => '245', subfields => 'a', norms => [] } ]);
56 my @matches = $matcher->get_matches($marc_record, $max_matches);
58 foreach $match (@matches) {
60 # matches already sorted in order of
61 # decreasing score
62 print "record ID: $match->{'record_id'};
63 print "score: $match->{'score'};
67 my $matcher_description = $matcher->dump();
69 =back
71 =head1 FUNCTIONS
73 =cut
75 =head2 GetMatcherList
77 =over 4
79 my @matchers = C4::Matcher::GetMatcherList();
81 =back
83 Returns an array of hashrefs list all matchers
84 present in the database. Each hashref includes:
86 matcher_id
87 code
88 description
90 =cut
92 sub GetMatcherList {
93 my $dbh = C4::Context->dbh;
95 my $sth = $dbh->prepare_cached("SELECT matcher_id, code, description FROM marc_matchers ORDER BY matcher_id");
96 $sth->execute();
97 my @results = ();
98 while (my $row = $sth->fetchrow_hashref) {
99 push @results, $row;
101 return @results;
104 =head1 METHODS
106 =cut
108 =head2 new
110 =over 4
112 my $matcher = C4::Matcher->new($record_type, $threshold);
114 =back
116 Creates a new Matcher. C<$record_type> indicates which search
117 database to use, e.g., 'biblio' or 'authority' and defaults to
118 'biblio', while C<$threshold> is the minimum score required for a match
119 and defaults to 1000.
121 =cut
123 sub new {
124 my $class = shift;
125 my $self = {};
127 $self->{'id'} = undef;
129 if ($#_ > -1) {
130 $self->{'record_type'} = shift;
131 } else {
132 $self->{'record_type'} = 'biblio';
135 if ($#_ > -1) {
136 $self->{'threshold'} = shift;
137 } else {
138 $self->{'threshold'} = 1000;
141 $self->{'code'} = '';
142 $self->{'description'} = '';
144 $self->{'matchpoints'} = [];
145 $self->{'required_checks'} = [];
147 bless $self, $class;
148 return $self;
151 =head2 fetch
153 =over 4
155 my $matcher = C4::Matcher->fetch($id);
157 =back
159 Creates a matcher object from the version stored
160 in the database. If a matcher with the given
161 id does not exist, returns undef.
163 =cut
165 sub fetch {
166 my $class = shift;
167 my $id = shift;
168 my $dbh = C4::Context->dbh();
170 my $sth = $dbh->prepare_cached("SELECT * FROM marc_matchers WHERE matcher_id = ?");
171 $sth->execute($id);
172 my $row = $sth->fetchrow_hashref;
173 $sth->finish();
174 return undef unless defined $row;
176 my $self = {};
177 $self->{'id'} = $row->{'matcher_id'};
178 $self->{'record_type'} = $row->{'record_type'};
179 $self->{'code'} = $row->{'code'};
180 $self->{'description'} = $row->{'description'};
181 $self->{'threshold'} = int($row->{'threshold'});
182 bless $self, $class;
184 # matchpoints
185 $self->{'matchpoints'} = [];
186 $sth = $dbh->prepare_cached("SELECT * FROM matcher_matchpoints WHERE matcher_id = ? ORDER BY matchpoint_id");
187 $sth->execute($self->{'id'});
188 while (my $row = $sth->fetchrow_hashref) {
189 my $matchpoint = $self->_fetch_matchpoint($row->{'matchpoint_id'});
190 push @{ $self->{'matchpoints'} }, $matchpoint;
193 # required checks
194 $self->{'required_checks'} = [];
195 $sth = $dbh->prepare_cached("SELECT * FROM matchchecks WHERE matcher_id = ? ORDER BY matchcheck_id");
196 $sth->execute($self->{'id'});
197 while (my $row = $sth->fetchrow_hashref) {
198 my $source_matchpoint = $self->_fetch_matchpoint($row->{'source_matchpoint_id'});
199 my $target_matchpoint = $self->_fetch_matchpoint($row->{'target_matchpoint_id'});
200 my $matchcheck = {};
201 $matchcheck->{'source_matchpoint'} = $source_matchpoint;
202 $matchcheck->{'target_matchpoint'} = $target_matchpoint;
203 push @{ $self->{'required_checks'} }, $matchcheck;
206 return $self;
209 sub _fetch_matchpoint {
210 my $self = shift;
211 my $matchpoint_id = shift;
213 my $dbh = C4::Context->dbh;
214 my $sth = $dbh->prepare_cached("SELECT * FROM matchpoints WHERE matchpoint_id = ?");
215 $sth->execute($matchpoint_id);
216 my $row = $sth->fetchrow_hashref;
217 my $matchpoint = {};
218 $matchpoint->{'index'} = $row->{'search_index'};
219 $matchpoint->{'score'} = int($row->{'score'});
220 $sth->finish();
222 $matchpoint->{'components'} = [];
223 $sth = $dbh->prepare_cached("SELECT * FROM matchpoint_components WHERE matchpoint_id = ? ORDER BY sequence");
224 $sth->execute($matchpoint_id);
225 while ($row = $sth->fetchrow_hashref) {
226 my $component = {};
227 $component->{'tag'} = $row->{'tag'};
228 $component->{'subfields'} = { map { $_ => 1 } split(//, $row->{'subfields'}) };
229 $component->{'offset'} = int($row->{'offset'});
230 $component->{'length'} = int($row->{'length'});
231 $component->{'norms'} = [];
232 my $sth2 = $dbh->prepare_cached("SELECT *
233 FROM matchpoint_component_norms
234 WHERE matchpoint_component_id = ? ORDER BY sequence");
235 $sth2->execute($row->{'matchpoint_component_id'});
236 while (my $row2 = $sth2->fetchrow_hashref) {
237 push @{ $component->{'norms'} }, $row2->{'norm_routine'};
239 push @{ $matchpoint->{'components'} }, $component;
241 return $matchpoint;
244 =head2 store
246 =over 4
248 my $id = $matcher->store();
250 =back
252 Stores matcher in database. The return value is the ID
253 of the marc_matchers row. If the matcher was
254 previously retrieved from the database via the fetch()
255 method, the DB representation of the matcher
256 is replaced.
258 =cut
260 sub store {
261 my $self = shift;
263 if (defined $self->{'id'}) {
264 # update
265 $self->_del_matcher_components();
266 $self->_update_marc_matchers();
267 } else {
268 # create new
269 $self->_new_marc_matchers();
271 $self->_store_matcher_components();
272 return $self->{'id'};
275 sub _del_matcher_components {
276 my $self = shift;
278 my $dbh = C4::Context->dbh();
279 my $sth = $dbh->prepare_cached("DELETE FROM matchpoints WHERE matcher_id = ?");
280 $sth->execute($self->{'id'});
281 $sth = $dbh->prepare_cached("DELETE FROM matchchecks WHERE matcher_id = ?");
282 $sth->execute($self->{'id'});
283 # foreign key delete cascades take care of deleting relevant rows
284 # from matcher_matchpoints, matchpoint_components, and
285 # matchpoint_component_norms
288 sub _update_marc_matchers {
289 my $self = shift;
291 my $dbh = C4::Context->dbh();
292 my $sth = $dbh->prepare_cached("UPDATE marc_matchers
293 SET code = ?,
294 description = ?,
295 record_type = ?,
296 threshold = ?
297 WHERE matcher_id = ?");
298 $sth->execute($self->{'code'}, $self->{'description'}, $self->{'record_type'}, $self->{'threshold'}, $self->{'id'});
301 sub _new_marc_matchers {
302 my $self = shift;
304 my $dbh = C4::Context->dbh();
305 my $sth = $dbh->prepare_cached("INSERT INTO marc_matchers
306 (code, description, record_type, threshold)
307 VALUES (?, ?, ?, ?)");
308 $sth->execute($self->{'code'}, $self->{'description'}, $self->{'record_type'}, $self->{'threshold'});
309 $self->{'id'} = $dbh->{'mysql_insertid'};
312 sub _store_matcher_components {
313 my $self = shift;
315 my $dbh = C4::Context->dbh();
316 my $sth;
317 my $matcher_id = $self->{'id'};
318 foreach my $matchpoint (@{ $self->{'matchpoints'}}) {
319 my $matchpoint_id = $self->_store_matchpoint($matchpoint);
320 $sth = $dbh->prepare_cached("INSERT INTO matcher_matchpoints (matcher_id, matchpoint_id)
321 VALUES (?, ?)");
322 $sth->execute($matcher_id, $matchpoint_id);
324 foreach my $matchcheck (@{ $self->{'required_checks'} }) {
325 my $source_matchpoint_id = $self->_store_matchpoint($matchcheck->{'source_matchpoint'});
326 my $target_matchpoint_id = $self->_store_matchpoint($matchcheck->{'target_matchpoint'});
327 $sth = $dbh->prepare_cached("INSERT INTO matchchecks
328 (matcher_id, source_matchpoint_id, target_matchpoint_id)
329 VALUES (?, ?, ?)");
330 $sth->execute($matcher_id, $source_matchpoint_id, $target_matchpoint_id);
335 sub _store_matchpoint {
336 my $self = shift;
337 my $matchpoint = shift;
339 my $dbh = C4::Context->dbh();
340 my $sth;
341 my $matcher_id = $self->{'id'};
342 $sth = $dbh->prepare_cached("INSERT INTO matchpoints (matcher_id, search_index, score)
343 VALUES (?, ?, ?)");
344 $sth->execute($matcher_id, $matchpoint->{'index'}, $matchpoint->{'score'});
345 my $matchpoint_id = $dbh->{'mysql_insertid'};
346 my $seqnum = 0;
347 foreach my $component (@{ $matchpoint->{'components'} }) {
348 $seqnum++;
349 $sth = $dbh->prepare_cached("INSERT INTO matchpoint_components
350 (matchpoint_id, sequence, tag, subfields, offset, length)
351 VALUES (?, ?, ?, ?, ?, ?)");
352 $sth->bind_param(1, $matchpoint_id);
353 $sth->bind_param(2, $seqnum);
354 $sth->bind_param(3, $component->{'tag'});
355 $sth->bind_param(4, join "", sort keys %{ $component->{'subfields'} });
356 $sth->bind_param(5, $component->{'offset'});
357 $sth->bind_param(6, $component->{'length'});
358 $sth->execute();
359 my $matchpoint_component_id = $dbh->{'mysql_insertid'};
360 my $normseq = 0;
361 foreach my $norm (@{ $component->{'norms'} }) {
362 $normseq++;
363 $sth = $dbh->prepare_cached("INSERT INTO matchpoint_component_norms
364 (matchpoint_component_id, sequence, norm_routine)
365 VALUES (?, ?, ?)");
366 $sth->execute($matchpoint_component_id, $normseq, $norm);
369 return $matchpoint_id;
373 =head2 delete
375 =over 4
377 C4::Matcher->delete($id);
379 =back
381 Deletes the matcher of the specified ID
382 from the database.
384 =cut
386 sub delete {
387 my $class = shift;
388 my $matcher_id = shift;
390 my $dbh = C4::Context->dbh;
391 my $sth = $dbh->prepare("DELETE FROM marc_matchers WHERE matcher_id = ?");
392 $sth->execute($matcher_id); # relying on cascading deletes to clean up everything
395 =head2 threshold
397 =over 4
399 $matcher->threshold(1000);
400 my $threshold = $matcher->threshold();
402 =back
404 Accessor method.
406 =cut
408 sub threshold {
409 my $self = shift;
410 @_ ? $self->{'threshold'} = shift : $self->{'threshold'};
413 =head2 _id
415 =over 4
417 $matcher->_id(123);
418 my $id = $matcher->_id();
420 =back
422 Accessor method. Note that using this method
423 to set the DB ID of the matcher should not be
424 done outside of the editing CGI.
426 =cut
428 sub _id {
429 my $self = shift;
430 @_ ? $self->{'id'} = shift : $self->{'id'};
433 =head2 code
435 =over 4
437 $matcher->code('ISBN');
438 my $code = $matcher->code();
440 =back
442 Accessor method.
444 =cut
446 sub code {
447 my $self = shift;
448 @_ ? $self->{'code'} = shift : $self->{'code'};
451 =head2 description
453 =over 4
455 $matcher->description('match on ISBN');
456 my $description = $matcher->description();
458 =back
460 Accessor method.
462 =cut
464 sub description {
465 my $self = shift;
466 @_ ? $self->{'description'} = shift : $self->{'description'};
469 =head2 add_matchpoint
471 =over 4
473 $matcher->add_matchpoint($index, $score, $matchcomponents);
475 =back
477 Adds a matchpoint that may include multiple components. The $index
478 parameter identifies the index that will be searched, while $score
479 is the weight that will be added if a match is found.
481 $matchcomponents should be a reference to an array of matchpoint
482 compoents, each of which should be a hash containing the following
483 keys:
485 subfields
486 offset
487 length
488 norms
490 The normalization_rules value should in turn be a reference to an
491 array, each element of which should be a reference to a
492 normalization subroutine (under C4::Normalize) to be applied
493 to the source string.
495 =cut
497 sub add_matchpoint {
498 my $self = shift;
499 my ($index, $score, $matchcomponents) = @_;
501 my $matchpoint = {};
502 $matchpoint->{'index'} = $index;
503 $matchpoint->{'score'} = $score;
504 $matchpoint->{'components'} = [];
505 foreach my $input_component (@{ $matchcomponents }) {
506 push @{ $matchpoint->{'components'} }, _parse_match_component($input_component);
508 push @{ $self->{'matchpoints'} }, $matchpoint;
511 =head2 add_simple_matchpoint
513 =over 4
515 $matcher->add_simple_matchpoint($index, $score, $source_tag, $source_subfields,
516 $source_offset, $source_length,
517 $source_normalizer);
519 =back
521 Adds a simple matchpoint rule -- after composing a key based on the source tag and subfields,
522 normalized per the normalization fuction, search the index. All records retrieved
523 will receive the assigned score.
525 =cut
527 sub add_simple_matchpoint {
528 my $self = shift;
529 my ($index, $score, $source_tag, $source_subfields, $source_offset, $source_length, $source_normalizer) = @_;
531 $self->add_matchpoint($index, $score, [
532 { tag => $source_tag, subfields => $source_subfields,
533 offset => $source_offset, 'length' => $source_length,
534 norms => [ $source_normalizer ]
539 =head2 add_required_check
541 =over 4
543 $match->add_required_check($source_matchpoint, $target_matchpoint);
545 =back
547 Adds a required check definition. A required check means that in
548 order for a match to be considered valid, the key derived from the
549 source (incoming) record must match the key derived from the target
550 (already in DB) record.
552 Unlike a regular matchpoint, only the first repeat of each tag
553 in the source and target match criteria are considered.
555 A typical example of a required check would be verifying that the
556 titles and publication dates match.
558 $source_matchpoint and $target_matchpoint are each a reference to
559 an array of hashes, where each hash follows the same definition
560 as the matchpoint component specification in add_matchpoint, i.e.,
563 subfields
564 offset
565 length
566 norms
568 The normalization_rules value should in turn be a reference to an
569 array, each element of which should be a reference to a
570 normalization subroutine (under C4::Normalize) to be applied
571 to the source string.
573 =cut
575 sub add_required_check {
576 my $self = shift;
577 my ($source_matchpoint, $target_matchpoint) = @_;
579 my $matchcheck = {};
580 $matchcheck->{'source_matchpoint'}->{'index'} = '';
581 $matchcheck->{'source_matchpoint'}->{'score'} = 0;
582 $matchcheck->{'source_matchpoint'}->{'components'} = [];
583 $matchcheck->{'target_matchpoint'}->{'index'} = '';
584 $matchcheck->{'target_matchpoint'}->{'score'} = 0;
585 $matchcheck->{'target_matchpoint'}->{'components'} = [];
586 foreach my $input_component (@{ $source_matchpoint }) {
587 push @{ $matchcheck->{'source_matchpoint'}->{'components'} }, _parse_match_component($input_component);
589 foreach my $input_component (@{ $target_matchpoint }) {
590 push @{ $matchcheck->{'target_matchpoint'}->{'components'} }, _parse_match_component($input_component);
592 push @{ $self->{'required_checks'} }, $matchcheck;
595 =head2 add_simple_required_check
597 $matcher->add_simple_required_check($source_tag, $source_subfields, $source_offset, $source_length, $source_normalizer,
598 $target_tag, $target_subfields, $target_offset, $target_length, $target_normalizer);
600 =over 4
602 Adds a required check, which requires that the normalized keys made from the source and targets
603 must match for a match to be considered valid.
605 =back
607 =cut
609 sub add_simple_required_check {
610 my $self = shift;
611 my ($source_tag, $source_subfields, $source_offset, $source_length, $source_normalizer,
612 $target_tag, $target_subfields, $target_offset, $target_length, $target_normalizer) = @_;
614 $self->add_required_check(
615 [ { tag => $source_tag, subfields => $source_subfields, offset => $source_offset, 'length' => $source_length,
616 norms => [ $source_normalizer ] } ],
617 [ { tag => $target_tag, subfields => $target_subfields, offset => $target_offset, 'length' => $target_length,
618 norms => [ $target_normalizer ] } ]
622 =head2 find_matches
624 =over 4
626 my @matches = $matcher->get_matches($marc_record, $max_matches);
627 foreach $match (@matches) {
628 # matches already sorted in order of
629 # decreasing score
630 print "record ID: $match->{'record_id'};
631 print "score: $match->{'score'};
634 =back
636 Identifies all of the records matching the given MARC record. For a record already
637 in the database to be considered a match, it must meet the following criteria:
639 =over 2
641 =item 1. Total score from its matching field must exceed the supplied threshold.
643 =item 2. It must pass all required checks.
645 =back
647 Only the top $max_matches matches are returned. The returned array is sorted
648 in order of decreasing score, i.e., the best match is first.
650 =cut
652 sub get_matches {
653 my $self = shift;
654 my ($source_record, $max_matches) = @_;
656 my %matches = ();
658 foreach my $matchpoint (@{ $self->{'matchpoints'} }) {
659 my @source_keys = _get_match_keys($source_record, $matchpoint);
660 next if scalar(@source_keys) == 0;
661 # build query
662 my $query = join(" or ", map { "$matchpoint->{'index'}=$_" } @source_keys);
663 # FIXME only searching biblio index at the moment
664 my ($error, $searchresults, $total_hits) = SimpleSearch($query, 0, $max_matches);
666 warn "search failed ($query) $error" if $error;
667 foreach my $matched (@$searchresults) {
668 $matches{$matched} += $matchpoint->{'score'};
672 # get rid of any that don't meet the threshold
673 %matches = map { ($matches{$_} >= $self->{'threshold'}) ? ($_ => $matches{$_}) : () } keys %matches;
675 # get rid of any that don't meet the required checks
676 %matches = map { _passes_required_checks($source_record, $_, $self->{'required_checks'}) ? ($_ => $matches{$_}) : () }
677 keys %matches;
679 my @results = ();
680 foreach my $marcblob (keys %matches) {
681 my $target_record = MARC::Record->new_from_usmarc($marcblob);
682 my $result = TransformMarcToKoha(C4::Context->dbh, $target_record, '');
683 # FIXME - again, bibliospecific
684 # also, can search engine be induced to give just the number in the first place?
685 my $record_number = $result->{'biblionumber'};
686 push @results, { 'record_id' => $record_number, 'score' => $matches{$marcblob} };
688 @results = sort { $b->{'score'} cmp $a->{'score'} } @results;
689 if (scalar(@results) > $max_matches) {
690 @results = @results[0..$max_matches-1];
692 return @results;
696 =head2 dump
698 =over 4
700 $description = $matcher->dump();
702 =back
704 Returns a reference to a structure containing all of the information
705 in the matcher object. This is mainly a convenience method to
706 aid setting up a HTML editing form.
708 =cut
710 sub dump {
711 my $self = shift;
713 my $result = {};
715 $result->{'matcher_id'} = $self->{'id'};
716 $result->{'code'} = $self->{'code'};
717 $result->{'description'} = $self->{'description'};
719 $result->{'matchpoints'} = [];
720 foreach my $matchpoint (@{ $self->{'matchpoints'} }) {
721 push @{ $result->{'matchpoints'} }, $matchpoint;
723 $result->{'matchchecks'} = [];
724 foreach my $matchcheck (@{ $self->{'required_checks'} }) {
725 push @{ $result->{'matchchecks'} }, $matchcheck;
728 return $result;
731 sub _passes_required_checks {
732 my ($source_record, $target_blob, $matchchecks) = @_;
733 my $target_record = MARC::Record->new_from_usmarc($target_blob); # FIXME -- need to avoid parsing record twice
735 # no checks supplied == automatic pass
736 return 1 if $#{ $matchchecks } == -1;
738 foreach my $matchcheck (@{ $matchchecks }) {
739 my $source_key = join "", _get_match_keys($source_record, $matchcheck->{'source_matchpoint'});
740 my $target_key = join "", _get_match_keys($target_record, $matchcheck->{'target_matchpoint'});
741 return 0 unless $source_key eq $target_key;
743 return 1;
746 sub _get_match_keys {
747 my $source_record = shift;
748 my $matchpoint = shift;
749 my $check_only_first_repeat = @_ ? shift : 0;
751 # If there is more than one component to the matchpoint (e.g.,
752 # matchpoint includes both 003 and 001), any repeats
753 # of the first component's tag are identified; repeats
754 # of the subsequent components' tags are appended to
755 # each parallel key dervied from the first component,
756 # up to the number of repeats of the first component's tag.
758 # For example, if the record has one 003 and two 001s, only
759 # one key is retrieved because there is only one 003. The key
760 # will consist of the contents of the first 003 and first 001.
762 # If there are two 003s and two 001s, there will be two keys:
763 # first 003 + first 001
764 # second 003 + second 001
766 my @keys = ();
767 for (my $i = 0; $i <= $#{ $matchpoint->{'components'} }; $i++) {
768 my $component = $matchpoint->{'components'}->[$i];
769 my $j = -1;
770 FIELD: foreach my $field ($source_record->field($component->{'tag'})) {
771 $j++;
772 last FIELD if $j > 0 and $check_only_first_repeat;
773 last FIELD if $i > 0 and $j > $#keys;
774 my $key = "";
775 if ($field->is_control_field()) {
776 if ($component->{'length'}) {
777 $key = _normalize(substr($field->data(), $component->{'offset'}, $component->{'length'}))
778 # FIXME normalize, substr
779 } else {
780 $key = _normalize($field->data());
782 } else {
783 foreach my $subfield ($field->subfields()) {
784 if (exists $component->{'subfields'}->{$subfield->[0]}) {
785 $key .= " " . $subfield->[1];
788 $key = _normalize($key);
789 if ($component->{'length'}){
790 if (length($key) > $component->{'length'}){
791 $key = _normalize(substr($key,$component->{'offset'},$component->{'length'}));
795 if ($i == 0) {
796 push @keys, $key if $key;
797 } else {
798 $keys[$j] .= " $key" if $key;
802 return @keys;
807 sub _parse_match_component {
808 my $input_component = shift;
810 my $component = {};
811 $component->{'tag'} = $input_component->{'tag'};
812 $component->{'subfields'} = { map { $_ => 1 } split(//, $input_component->{'subfields'}) };
813 $component->{'offset'} = exists($input_component->{'offset'}) ? $input_component->{'offset'} : -1;
814 $component->{'length'} = $input_component->{'length'} ? $input_component->{'length'} : 0;
815 $component->{'norms'} = $input_component->{'norms'} ? $input_component->{'norms'} : [];
817 return $component;
820 # FIXME - default normalizer
821 sub _normalize {
822 my $value = uc shift;
823 $value =~ s/.;:,\]\[\)\(\/'"//g;
824 $value =~ s/^\s+//;
825 #$value =~ s/^\s+$//;
826 $value =~ s/\s+$//;
827 $value =~ s/\s+/ /g;
828 #$value =~ s/[.;,\]\[\)\(\/"']//g;
829 return $value;
833 __END__
835 =head1 AUTHOR
837 Koha Development Team <info@koha.org>
839 Galen Charlton <galen.charlton@liblime.com>
841 =cut