1 package Koha
::BiblioUtils
::Iterator
;
3 # This contains an iterator over biblio records
5 # Copyright 2014 Catalyst IT
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 3 of the License, or (at your option) any later
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 Koha::BiblioUtils::Iterator - iterates over biblios provided by a DBIx::Class::ResultSet
28 This provides an iterator over a L<DBIx::Class::ResultSet> that contains a
30 Returns a MARC::Record in scalar context.
31 Returns biblionumber and marc in list context.
35 use Koha::BiblioUtils::Iterator;
36 my $rs = $schema->resultset('biblioitems');
37 my $iterator = Koha::BiblioUtils::Iterator->new($rs);
38 while (my $record = $iterator->next()) {
39 // do something with $record
46 use C4
::Biblio
; # :( - for EmbedItemsInMarcBiblio
55 my $it = new($sth, option => $value, ...);
57 Takes a ResultSet to iterate over, and gives you an iterator on it. Optional
58 options may be specified.
66 Set to true to include item data in the resulting MARC record.
73 my ( $class, $rs, %options ) = @_;
83 In a scalar context, provides the next MARC::Record from the ResultSet, or
84 C<undef> if there are no more.
86 In a list context it will provide ($biblionumber, $record).
94 my $row = $self->{rs
}->next();
96 my $marcxml = C4
::Biblio
::GetXmlBiblio
( $row->get_column('biblionumber') );
98 $marc = MARC
::Record
->new_from_xml( $marcxml );
101 confess
"No marcxml column returned in the request.";
105 if ( $self->{items
} ) {
106 $bibnum = $row->get_column('biblionumber');
107 confess
"No biblionumber column returned in the request."
108 if ( !defined($bibnum) );
110 # TODO this should really be in Koha::BiblioUtils or something similar.
111 C4
::Biblio
::EmbedItemsInMarcBiblio
({
112 marc_record
=> $marc,
113 biblionumber
=> $bibnum });
117 $bibnum //= $row->get_column('biblionumber');
118 confess
"No biblionumber column returned in the request."
119 if ( !defined($bibnum) );
120 return ( $bibnum, $marc );