MARC::Parser::RAW - Parser for ISO 2709 encoded MARC records
use MARC::Parser::RAW;
my $parser = MARC::Parser::RAW->new( $file );
while ( my $record = $parser->next() ) {
# do something
}
MARC::Parser::RAW is a lightweight, fault tolerant parser for ISO 2709 encoded MARC records. Tags, indicators and subfield codes are not validated against the MARC standard. Record length from leader and field lengths from the directory are ignored. Records with a faulty structure will be skipped with a warning. The resulting data structure is optimized for usage with the Catmandu data tool kit.
MARC::Parser::RAW expects UTF-8 encoded files as input. Otherwise provide a filehande with a specified I/O layer or specify encoding.
The MARC record is parsed into an ARRAY of ARRAYs:
$record = [
[ 'LDR', undef, undef, '_', '00661nam 22002538a 4500' ],
[ '001', undef, undef, '_', 'fol05865967 ' ],
...
[ '245', '1', '0', 'a', 'Programming Perl /',
'c', 'Larry Wall, Tom Christiansen & Jon Orwant.'
],
...
];
-
file
Path to file with raw MARC records.
-
fh
Open filehandle for raw MARC records.
-
scalarref
Reference to scalar with raw MARC records.
-
encoding
Set encoding. Default: UTF-8. Optional.
Reads the next record from MARC input stream. Returns a Perl hash.
Deserialize a raw MARC record to an ARRAY of ARRAYs.
Split MARC field string in individual components.
Johann Rolschewski [email protected]
Copyright 2014- Johann Rolschewski
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Catmandu, Catmandu::Importer::MARC.
The parser methods are adapted from Marc Chantreux's MARC::MIR module.