X-Git-Url: http://git.rot13.org/?p=Biblio-Isis;a=blobdiff_plain;f=lib%2FBiblio%2FIsis.pm;h=d8974000027af5f079187dceeb4004faf081fd32;hp=54523dfd452c0e307df30d0341b3cf9e39fb7fdb;hb=c2de9c378f2f3f9f7a489f1e266e978dd8952bfe;hpb=514d07d2bc4ea623d32860cce42a09691856534b diff --git a/lib/Biblio/Isis.pm b/lib/Biblio/Isis.pm index 54523df..d897400 100644 --- a/lib/Biblio/Isis.pm +++ b/lib/Biblio/Isis.pm @@ -7,7 +7,7 @@ use File::Glob qw(:globally :nocase); BEGIN { use Exporter (); use vars qw ($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); - $VERSION = 0.21; + $VERSION = 0.23; @ISA = qw (Exporter); #Give a hoot don't pollute, do not export more than needed by default @EXPORT = qw (); @@ -84,7 +84,7 @@ Open ISIS database read_fdt => 1, include_deleted => 1, hash_filter => sub { - my $v = shift; + my ($v,$field_number) = @_; $v =~ s#foo#bar#g; }, debug => 1, @@ -114,7 +114,9 @@ Don't skip logically deleted records in ISIS. =item hash_filter -Filter code ref which will be used before data is converted to hash. +Filter code ref which will be used before data is converted to hash. It will +receive two arguments, whole line from current field (in C<< $_[0] >>) and +field number (in C<< $_[1] >>). =item debug @@ -137,8 +139,8 @@ sub new { croak "new needs database name (isisdb) as argument!" unless ({@_}->{isisdb}); - foreach my $v (qw{isisdb debug include_deleted hash_filter}) { - $self->{$v} = {@_}->{$v}; + foreach my $v (qw{isisdb debug include_deleted hash_filter join_subfields_with}) { + $self->{$v} = {@_}->{$v} if defined({@_}->{$v}); } my @isis_files = grep(/\.(FDT|MST|XRF|CNT)$/i,glob($self->{isisdb}."*")); @@ -546,6 +548,10 @@ have original record subfield order and index to that subfield like this: Define delimiter which will be used to join repeatable subfields. You can specify option here instead in L if you want to have per-record control. +=item hash_filter + +You can override C defined in L using this option. + =back =cut @@ -557,9 +563,12 @@ sub to_hash { my $mfn = shift || confess "need mfn!"; my $arg; + my $hash_filter = $self->{hash_filter}; + if (ref($mfn) eq 'HASH') { $arg = $mfn; $mfn = $arg->{mfn} || confess "need mfn in arguments"; + $hash_filter = $arg->{hash_filter} if ($arg->{hash_filter}); } # init record to include MFN as field 000 @@ -567,7 +576,7 @@ sub to_hash { my $row = $self->fetch($mfn) || return; - my $j_rs = $arg->{join_subfields_with}; + my $j_rs = $arg->{join_subfields_with} || $self->{join_subfields_with}; $j_rs = $self->{join_subfields_with} unless(defined($j_rs)); my $i_sf = $arg->{include_subfields}; @@ -575,10 +584,8 @@ sub to_hash { foreach my $l (@{$row->{$f_nr}}) { # filter output - if ($self->{'hash_filter'}) { - $l = $self->{'hash_filter'}->($l); - next unless defined($l); - } + $l = $hash_filter->($l, $f_nr) if ($hash_filter); + next unless defined($l); my $val; my $r_sf; # repeatable subfields in this record @@ -592,7 +599,7 @@ sub to_hash { next if (! $t); my ($sf,$v) = (substr($t,0,1), substr($t,1)); # XXX this might be option, but why? - next unless ($v); + next unless (defined($v) && $v ne ''); # warn "### $f_nr^$sf:$v",$/ if ($self->{debug} > 1); if (ref( $val->{$sf} ) eq 'ARRAY') { @@ -744,13 +751,24 @@ know any details about it's version. As this is young module, new features are added in subsequent version. It's a good idea to specify version when using this module like this: - use Biblio::Isis 0.21 + use Biblio::Isis 0.23 Below is list of changes in specific version of module (so you can target older versions if you really have to): =over 8 +=item 0.23 + +Added C to L + +Fixed bug with documented C in L which wasn't +implemented + +=item 0.22 + +Added field number when calling C + =item 0.21 Added C to L and L. @@ -785,6 +803,8 @@ LICENSE file included with this module. =head1 SEE ALSO +L for CDS/ISIS manual appendix F, G and H which describe file format + OpenIsis web site L perl4lib site L