Bug 17196: [QA Follow-up] Adjust some text on marcxml
[koha.git] / Koha / BiblioUtils / Iterator.pm
blob0e719665a21a2bc9095b1a465b2f4a281a6ff3c2
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
12 # version.
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.
22 =head1 NAME
24 Koha::BiblioUtils::Iterator - iterates over biblios provided by a DBIx::Class::ResultSet
26 =head1 DESCRIPTION
28 This provides an iterator over a L<DBIx::Class::ResultSet> that contains a
29 biblionumber column.
30 Returns a MARC::Record in scalar context.
31 Returns biblionumber and marc in list context.
33 =head1 SYNOPSIS
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
42 =head1 METHODS
44 =cut
46 use C4::Biblio; # :( - for EmbedItemsInMarcBiblio
48 use Carp;
49 use MARC::Record;
50 use MARC::File::XML;
51 use Modern::Perl;
53 =head2 new
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.
60 =head3 Options
62 =over 4
64 =item items
66 Set to true to include item data in the resulting MARC record.
68 =back
70 =cut
72 sub new {
73 my ( $class, $rs, %options ) = @_;
75 bless {
76 rs => $rs,
77 %options,
78 }, $class;
81 =head2 next()
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).
88 =cut
90 sub next {
91 my ($self) = @_;
93 my $marc;
94 my $row = $self->{rs}->next();
95 return if !$row;
96 my $marcxml = C4::Biblio::GetXmlBiblio( $row->get_column('biblionumber') );
97 if ( $marcxml ) {
98 $marc = MARC::Record->new_from_xml( $marcxml );
100 else {
101 confess "No marcxml column returned in the request.";
104 my $bibnum;
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( $marc, $bibnum );
114 if (wantarray) {
115 $bibnum //= $row->get_column('biblionumber');
116 confess "No biblionumber column returned in the request."
117 if ( !defined($bibnum) );
118 return ( $bibnum, $marc );
120 else {
121 return $marc;