]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/support-scripts/marc_stream_importer.pl
after a record has been successfully imported via vandelay in the stream importer...
[Evergreen.git] / Open-ILS / src / support-scripts / marc_stream_importer.pl
1 #!/usr/bin/perl
2 # Copyright (C) 2008-2010 Equinox Software, Inc.
3 # Author: Bill Erickson <erickson@esilibrary.com>
4 #
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15
16 use strict; use warnings;
17 use Net::Server::PreFork;
18 use base qw/Net::Server::PreFork/;
19 use MARC::Record;
20 use MARC::Batch;
21 use MARC::File::XML;
22 use MARC::File::USMARC;
23
24 use Data::Dumper;
25 use File::Basename qw/fileparse/;
26 use File::Temp;
27 use Getopt::Long qw(:DEFAULT GetOptionsFromArray);
28 use Pod::Usage;
29
30 use OpenSRF::Utils::Logger qw/$logger/;
31 use OpenSRF::AppSession;
32 use OpenSRF::EX qw/:try/;
33 use OpenILS::Utils::Cronscript;
34 require 'oils_header.pl';
35 use vars qw/$apputils/;
36
37 my $vl_ses;
38
39 my $debug = 0;
40
41 my %defaults = (
42     'buffsize=i'    => 4096,
43     'merge-profile=i' => 0,
44     'source=i'      => 1,
45 #    'osrf-config=s' => '/openils/conf/opensrf_core.xml',
46     'user=s'        => 'admin',
47     'password=s'    => '',
48     'tempdir=s'     => '',
49     'nolockfile'    => 1,
50     'queue=i'       => 1,
51     'noqueue'       => 0,
52     'wait=i'        => 5,
53     'import-by-queue' => 0
54 );
55
56 $OpenILS::Utils::Cronscript::debug=1 if $debug;
57 $Getopt::Long::debug=1 if $debug > 1;
58 my $o = OpenILS::Utils::Cronscript->new(\%defaults);
59
60 my @script_args = ();
61
62 if (grep {$_ eq '--'} @ARGV) {
63     print "Splitting options into groups\n" if $debug;
64     while (@ARGV) {
65         $_ = shift @ARGV;
66         $_ eq '--' and last;    # stop at the first --
67         push @script_args, $_;
68     }
69 } else {
70     @script_args = @ARGV;
71     @ARGV = ();
72 }
73
74 print "Calling MyGetOptions ",
75     (@script_args ? "with options: " . join(' ', @script_args) : 'without options from command line'),
76     "\n" if $debug;
77
78 my $real_opts = $o->MyGetOptions(\@script_args);
79 $o->bootstrap;
80 # GetOptionsFromArray(\@script_args, \%defaults, %defaults); # similar to
81
82 $real_opts->{tempdir} ||= tempdir_setting();    # This doesn't go in defaults because it reads config, must come after bootstrap
83
84 my $bufsize       = $real_opts->{buffsize};
85 my $bib_source    = $real_opts->{source};
86 my $osrf_config   = $real_opts->{'osrf-config'};
87 my $oils_username = $real_opts->{user};
88 my $oils_password = $real_opts->{password};
89 my $help          = $real_opts->{help};
90 my $merge_profile = $real_opts->{'merge-profile'};
91 my $queue_id      = $real_opts->{queue};
92 my $tempdir       = $real_opts->{tempdir};
93 my $import_by_queue  = $real_opts->{'import-by-queue'};
94    $debug        += $real_opts->{debug};
95
96 foreach (keys %$real_opts) {
97     print("real_opt->{$_} = ", $real_opts->{$_}, "\n") if $real_opts->{debug} or $debug;
98 }
99 my $wait_time     = $real_opts->{wait};
100 my $authtoken     = '';
101
102 # DEFAULTS for Net::Server
103 my $filename   = fileparse($0, '.pl');
104 my $conf_file  = (-r "$filename.conf") ? "$filename.conf" : undef;
105 # $conf_file is the Net::Server config for THIS script (not EG), if it exists and is readable
106
107
108 # FEEDBACK
109
110 pod2usage(1) if $help;
111 unless ($oils_password) {
112     print STDERR "\nERROR: password option required for session login\n\n";
113     # pod2usage(1);
114 }
115
116 print Dumper($o) if $debug;
117
118 if ($debug) {
119     foreach my $ref (qw/bufsize bib_source osrf_config oils_username oils_password help conf_file debug/) {
120         no strict 'refs';
121         printf "%16s => %s\n", $ref, (eval("\$$ref") || '');
122     }
123 }
124
125 print warning();
126 print Dumper($real_opts);
127
128 # SUBS
129
130 sub tempdir_setting {
131     my $ret = $apputils->simplereq( qw# opensrf.settings opensrf.settings.xpath.get
132         /opensrf/default/apps/open-ils.vandelay/app_settings/databases/importer # );
133     return $ret->[0] || '/tmp';
134 }
135
136 sub warning {
137     return <<WARNING;
138
139 WARNING:  This script provides no security layer.  Any client that has 
140 access to the server+port can inject MARC records into the system.  
141
142 WARNING
143 }
144
145 sub xml_import {
146     return $apputils->simplereq(
147         'open-ils.cat', 
148         'open-ils.cat.biblio.record.xml.import',
149         @_
150     );
151 }
152
153 sub old_process_batch_data {
154     my $data = shift or $logger->error("process_batch_data called without any data");
155     $data or return;
156
157     my $handle;
158     open $handle, '<', \$data; 
159     my $batch = MARC::Batch->new('USMARC', $handle);
160     $batch->strict_off;
161
162     my $index = 0;
163     while (1) {
164         my $rec;
165         $index++;
166
167         eval { $rec = $batch->next; };
168
169         if ($@) {
170             $logger->error("Failed parsing MARC record $index");
171             next;
172         }
173         last unless $rec;   # The only way out
174
175         my $resp = xml_import($authtoken, $rec->as_xml_record, $bib_source);
176
177         # has the session timed out?
178         if (oils_event_equals($resp, 'NO_SESSION')) {
179             new_auth_token();
180             $resp = xml_import($authtoken, $rec->as_xml_record, $bib_source);   # try again w/ new token
181         }
182         oils_event_die($resp);
183     }
184     return $index;
185 }
186
187 sub process_spool { # filename
188
189     my $marcfile = shift;
190     my @rec_ids;
191
192     if($import_by_queue) {
193
194         # don't collect the record IDs, just spool the queue
195
196         $apputils->simplereq(
197             'open-ils.vandelay', 
198             'open-ils.vandelay.bib.process_spool', 
199             $authtoken, 
200             undef, 
201             $queue_id, 
202             'import', 
203             $marcfile,
204             $bib_source 
205         );
206
207     } else {
208
209         # collect the newly queued record IDs for processing
210
211         my $req = $vl_ses->request(
212             'open-ils.vandelay.bib.process_spool.stream_results',
213             $authtoken, 
214             undef, # cache key not needed
215             $queue_id, 
216             'import', 
217             $marcfile, 
218             $bib_source 
219         );
220     
221         while(my $resp = $req->recv) {
222
223             if($req->failed) {
224                 $logger->error("Error spooling MARC data: $resp");
225
226             } elsif($resp->content) {
227                 push(@rec_ids, $resp->content);
228             }
229         }
230     }
231
232     return \@rec_ids;
233 }
234
235 sub bib_queue_import {
236     my $rec_ids = shift;
237     my $extra = {auto_overlay_exact => 1};
238     $extra->{merge_profile} = $merge_profile if $merge_profile;
239
240     my $req;
241     my @cleanup_recs;
242
243     if($import_by_queue) {
244         # import by queue
245
246         $req = $vl_ses->request(
247             'open-ils.vandelay.bib_queue.import', 
248             $authtoken, 
249             $queue_id, 
250             $extra 
251         );
252
253     } else {
254         # import explicit record IDs
255
256         $req = $vl_ses->request(
257             'open-ils.vandelay.bib_record.list.import', 
258             $authtoken, 
259             $rec_ids, 
260             $extra 
261         );
262     }
263
264     # collect the successfully imported vandelay records
265     while(my $resp = $req->recv) {
266          if($req->failed) {
267             $logger->error("Error importing MARC data: $resp");
268
269         } elsif(my $data = $resp->content) {
270             push(@cleanup_recs, $data->{imported}) unless $data->{err_event};
271         }
272     }
273
274     # clean up the successfully imported vandelay records to prevent queue bloat
275     foreach (@cleanup_recs) {
276
277         try { 
278             $apputils->simplereq(
279                 'open-ils.pcrud',
280                 'open-ils.pcrud.delete.vqbr',
281                 $authtoken, $_);
282
283         } catch Error with {
284             my $err = shift;
285             $logger->error("Error deleteing queued bib record $_: $err");
286         };
287     }
288 }
289
290 sub process_batch_data {
291     my $data = shift or $logger->error("process_batch_data called without any data");
292     $data or return;
293
294     $vl_ses = OpenSRF::AppSession->create('open-ils.vandelay');
295
296     my ($handle, $tempfile) = File::Temp->tempfile("$0_XXXX", DIR => $tempdir) or die "Cannot write tempfile in $tempdir";
297     print $handle $data;
298     close $handle;
299        
300     $logger->info("Calling process_spool on tempfile $tempfile (queue: $queue_id; source: $bib_source)");
301     my $rec_ids = process_spool($tempfile);
302
303     if (oils_event_equals($rec_ids, 'NO_SESSION')) {  # has the session timed out?
304         new_auth_token();
305         $rec_ids = process_spool($tempfile);                # try again w/ new token
306     }
307
308     my $resp = bib_queue_import($rec_ids);
309
310     if (oils_event_equals($resp, 'NO_SESSION')) {  # has the session timed out?
311         new_auth_token();
312         $resp = bib_queue_import();                # try again w/ new token
313     }
314     oils_event_die($resp);
315 }
316
317 sub process_request {   # The core Net::Server method
318     my $self = shift;
319     my $socket = $self->{server}->{client};
320     my $data = '';
321     my $buf;
322
323     # Reading <STDIN> blocks until the client is closed.  Instead of waiting 
324     # for that, give each inbound record $wait_time seconds to fully arrive
325     # and pull the data directly from the socket
326     eval {
327         local $SIG{ALRM} = sub { die "alarm\n" }; 
328         alarm $wait_time;
329         $data .= $buf while $socket->sysread($buf, $bufsize);
330         alarm 0;
331     };
332     if ($real_opts->{noqueue}) {
333         old_process_batch_data($data);
334     } else {
335         process_batch_data($data);
336     }
337 }
338
339
340 # the authtoken will timeout after the configured inactivity period.
341 # When that happens, get a new one.
342 sub new_auth_token {
343     $authtoken = oils_login($oils_username, $oils_password, 'staff') 
344         or die "Unable to login to Evergreen as user $oils_username";
345     return $authtoken;
346 }
347
348 ##### MAIN ######
349
350 osrf_connect($osrf_config);
351 new_auth_token();
352 print "Calling Net::Server run ", (@ARGV ? "with command-line options: " . join(' ', @ARGV) : ''), "\n";
353 __PACKAGE__->run(conf_file => $conf_file);
354
355 __END__
356
357 =head1 NAME
358
359 marc_stream_importer.pl - Import MARC records via bare socket connection.
360
361 =head1 SYNOPSIS
362
363 ./marc_stream_importer.pl [common opts ...] [script opts ...] -- [Net::Server opts ...] &
364
365 This script uses the EG common options from B<Cronscript>.  See --help output for those.
366
367 Run C<perldoc marc_stream_importer.pl> for full documentation.
368
369 Note the extra C<--> to separate options for the script wrapper from options for the
370 underlying L<Net::Server> options.  
371
372 Note: this script has to be run in the same directory as B<oils_header.pl>.
373
374 Typical execution will include a trailing C<&> to run in the background.
375
376 =head1 DESCRIPTION
377
378 This script is a L<Net::Server::PreFork> instance for shoving records into Evergreen from a remote system.
379
380 =head1 OPTIONS
381
382 The only required option is --password
383
384  --password         =<eg_password>
385  --user             =<eg_username>  default: admin
386  --source           =<bib_source>   default: 1         Integer
387  --merge-profile    =<i>            default: 0
388  --tempdir          =</temp/dir/>   default: from L<opensrf.conf> <open-ils.vandelay/app_settings/databases/importer>
389  --source           =<i>            default: 1
390  --import-by-queue  =<i>            default: 0
391
392
393 =head2 Old style: --noqueue and associated options
394
395 To bypass vandelay queue processing and push directly into the database (as the old style)
396
397  --noqueue         default: OFF
398  --buffsize =<i>   default: 4096    Buffer size.  Only used by --noqueue
399  --wait     =<i>   default: 5       Seconds to read socket before processing.  Only used by --noqueue
400
401 =head2 Net::Server Options
402
403 By default, the script will use the Net::Server configuration file B<marc_stream_importer.conf>.  You can 
404 override this by passing a filepath with the --conf_file option.
405
406 Other Net::Server options include: --port=<port> --min_servers=<X> --max_servers=<Y> and --log_file=[path/to/file]
407
408 See L<Net::Server> for a complete list.
409
410 =head2 Configuration
411
412 =head3 OCLC Connexion
413
414 To use this script with OCLC Connexion, configure the client as follows:
415
416 Under Tools -> Options -> Export (tab)
417    Create -> Choose Connection -> OK -> Leave translation at "None" 
418        -> Create -> Create -> choose TCP/IP (internet) 
419        -> Enter hostname and Port, leave 'Use Telnet Protocol' checked 
420        -> Create/OK your way out of the dialogs
421    Record Characteristics (button) -> Choose 'UTF-8 Unicode' for the Character Set
422    
423
424 OCLC and Connexion are trademark/service marks of OCLC Online Computer Library Center, Inc.
425
426 =head1 CAVEATS
427
428 WARNING: This script provides no inherent security layer.  Any client that has 
429 access to the server+port can inject MARC records into the system.  
430 Use the available options (like allow/deny) in the Net::Server config file 
431 or via the command line to restrict access as necessary.
432
433 =head1 EXAMPLES
434
435 ./marc_stream_importer.pl  \
436     admin open-ils connexion --port 5555 --min_servers 2 \
437     --max_servers=20 --log_file=/openils/var/log/marc_net_importer.log &
438
439 =head1 SEE ALSO
440
441 L<Net::Server::PreFork>, L<marc_stream_importer.conf>
442
443 =head1 AUTHORS
444
445     Bill Erickson <erickson@esilibrary.com>
446     Joe Atzberger <jatzberger@esilibrary.com>
447
448 =cut