/[webpac2]/trunk/lib/WebPAC/Input/ISI.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/lib/WebPAC/Input/ISI.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1215 - (hide annotations)
Tue Jun 2 13:16:02 2009 UTC (14 years, 11 months ago) by dpavlin
File size: 3672 byte(s)
more fields to join (from multi-line input)

1 dpavlin 898 package WebPAC::Input::ISI;
2    
3     use warnings;
4     use strict;
5    
6     use WebPAC::Input;
7     use base qw/WebPAC::Common/;
8    
9 dpavlin 904 use Data::Dump qw/dump/;
10    
11 dpavlin 898 =head1 NAME
12    
13     WebPAC::Input::ISI - support for ISI Export Format
14    
15     =cut
16    
17 dpavlin 1209 our $VERSION = '0.03';
18 dpavlin 898
19     =head1 SYNOPSIS
20    
21     Open file in ISI export fromat
22    
23     my $input = new WebPAC::Input::ISI(
24     path => '/path/to/ISI/records.txt',
25     );
26    
27     =head1 FUNCTIONS
28    
29     =head2 new
30    
31     Returns new low-level input API object
32    
33     my $input = new WebPAC::Input::ISI(
34     path => '/path/to/ISI/records.txt'
35     filter => sub {
36     my ($l,$field_nr) = @_;
37     # do something with $l which is line of input file
38     return $l;
39     },
40     }
41    
42     Options:
43    
44     =over 4
45    
46     =item path
47    
48     path to ISI export file
49    
50     =back
51    
52     =cut
53    
54 dpavlin 901 my $subfields = {
55     'CR' => sub {
56 dpavlin 1194 my $full_cr = shift;
57     my @v = split(/, /, $full_cr);
58     my $f = { full => $full_cr };
59 dpavlin 1209 foreach ( qw/author year reference volume page doi/ ) {
60 dpavlin 901 if ( my $tmp = shift @v ) {
61     $f->{$_} = $tmp;
62     }
63     }
64     if ( $f->{author} =~ /^\*(.+)/ ) {
65     delete $f->{author};
66     $f->{institution} = $1;
67     }
68 dpavlin 1209 $f->{doi} =~ s{DOI\s+}{} if $f->{doi}; # strip DOI prefix
69 dpavlin 901 return $f;
70     },
71     };
72    
73 dpavlin 898 sub new {
74     my $class = shift;
75     my $self = {@_};
76     bless($self, $class);
77    
78     my $arg = {@_};
79    
80     my $log = $self->_get_logger();
81    
82     open( my $fh, '<', $arg->{path} ) || $log->logconfess("can't open $arg->{path}: $!");
83    
84     my ( $format, $version );
85    
86     my $line = <$fh>;
87     chomp($line);
88     if ( $line =~ /^FN\s(.+)$/) {
89     $format = $1;
90     } else {
91     $log->logdie("first line of $arg->{path} has to be FN, but is: $line");
92     }
93    
94     $line = <$fh>;
95     chomp($line);
96     if ( $line =~ /^VR\s(.+)$/) {
97     $version = $1;
98     } else {
99     $log->logdie("second line of $arg->{path} has to be VN, but is: $line");
100     }
101    
102     $log->info("opening $format $version database '$arg->{path}'");
103    
104 dpavlin 899 my $tag;
105     my $rec;
106    
107 dpavlin 1077 $self->{size} = 0;
108    
109 dpavlin 899 while( $line = <$fh> ) {
110     chomp($line);
111    
112     my $v;
113    
114     if ( $line =~ /^(\S\S)\s(.+)$/ ) {
115     $tag = $1;
116     $v = $2;
117     } elsif ( $line =~ /^\s{3}(.+)$/ ) {
118     $v = $1;
119 dpavlin 1209 if ( $tag eq 'CR' && $v =~ m{DOI$} ) {
120     my $doi = <$fh>;
121     chomp($doi);
122     $doi =~ s{^\s{3}}{ } || die "can't find DOI in: $doi";
123     $v .= $doi;
124     }
125 dpavlin 899 } elsif ( $line eq 'ER' ) {
126 dpavlin 901 # join tags
127 dpavlin 1215 foreach ( qw/AB DE ID TI SO RP SC/ ) {
128 dpavlin 901 $rec->{$_} = join(' ', @{ $rec->{$_} }) if defined $rec->{$_};
129     }
130 dpavlin 1077 $rec->{'000'} = [ ++$self->{size} ];
131 dpavlin 899 push @{ $self->{_rec} }, $rec;
132     $rec = {};
133     $line = <$fh>;
134     chomp $line;
135     $log->logdie("expected blank like in ",$arg->{path}, " +$.: $line") unless ( $line eq '' );
136     } elsif ( $line eq 'EF' ) {
137     last;
138     } else {
139     $log->logdie("can't parse +$. $arg->{path} : $line");
140     }
141    
142 dpavlin 904 if ( defined $v ) {
143     $v = $subfields->{$tag}->($v) if defined $subfields->{$tag};
144 dpavlin 901
145 dpavlin 904 $log->debug("$tag: ", sub { dump( $v ) });
146     push @{ $rec->{$tag} }, $v;
147     }
148 dpavlin 899
149     }
150    
151     $log->debug("loaded ", $self->size, " records");
152    
153 dpavlin 898 $self ? return $self : return undef;
154     }
155    
156     =head2 fetch_rec
157    
158     Return record with ID C<$mfn> from database
159    
160 dpavlin 899 my $rec = $input->fetch_rec( $mfn, $filter_coderef );
161 dpavlin 898
162     =cut
163    
164     sub fetch_rec {
165     my $self = shift;
166    
167 dpavlin 899 my ( $mfn, $filter_coderef ) = @_;
168 dpavlin 898
169 dpavlin 899 return $self->{_rec}->[$mfn-1];
170 dpavlin 898 }
171    
172    
173     =head2 size
174    
175     Return number of records in database
176    
177     my $size = $input->size;
178    
179     =cut
180    
181     sub size {
182     my $self = shift;
183 dpavlin 1077 return $self->{size};
184 dpavlin 898 }
185    
186 dpavlin 900 =head1 SEE ALSO
187    
188     L<http://isibasic.com/help/helpprn.html> is only sane source of document format which Google could find...
189 dpavlin 901
190 dpavlin 898 =head1 AUTHOR
191    
192     Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>
193    
194     =head1 COPYRIGHT & LICENSE
195    
196     Copyright 2007 Dobrica Pavlinusic, All Rights Reserved.
197    
198     This program is free software; you can redistribute it and/or modify it
199     under the same terms as Perl itself.
200    
201     =cut
202    
203     1; # End of WebPAC::Input::ISI

  ViewVC Help
Powered by ViewVC 1.1.26