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 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
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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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.