1 package Koha
::RecordProcessor
::Base
;
3 # Copyright 2012 C & P Bibliography Services
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>.
22 Koha::RecordProcessor::Base - Base class for RecordProcessor filters
26 use base qw(Koha::RecordProcessor::Base);
30 Base class for record normalizer filters. RecordProcessors must
31 provide the following methods:
33 B<filter ($record)> - apply the filter and return the result. $record
34 may be either a scalar or an arrayref, and the return result will be
37 The following variables must be defined in each filter:
41 These methods may be overriden:
43 B<initialize (%params)> - initialize the filter
45 B<destroy ()> - destroy the filter
47 These methods should not be overridden unless you are very sure of what
50 B<new ()> - create a new filter object
52 Note that the RecordProcessor will not clone the record that is
53 passed in. If you do not want to change the original MARC::Record
54 object (or whatever type of object you are passing in), you must
55 clone it I<prior> to passing it off to the RecordProcessor.
64 use base
qw(Class::Accessor);
66 __PACKAGE__
->mk_ro_accessors(qw( name version ));
67 __PACKAGE__
->mk_accessors(qw( params ));
74 my $filter = Koha::RecordProcessor::Base->new;
82 my $self = $class->SUPER::new
( { });#name => $class->NAME,
83 #version => $class->VERSION });
92 $filter->initalize(%params);
94 Initialize a filter using the specified parameters.
101 #$self->params = $params;
121 my $newrecord = $filter->filter($record);
122 my $newrecords = $filter->filter(\@records);
124 Filter the specified record(s) and return the result.