94bb7c6b523b8250da0587797aef960ae5bfc16e
[migration-tools.git] / marc-cleanup
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Getopt::Long;
7 use Term::ReadLine;
8
9 $| = 1;
10
11 my $term = new Term::ReadLine 'yaz-cleanup';
12 my $OUT = $term->OUT || \*STDOUT;
13
14 my $conf = {}
15
16 my $count = 0;
17 my $reccount = 0;
18 my $oreccount = 0;
19 my $line = '';
20 my %trash = ();   # hash for tags to be dumped
21
22 # initialization and setup
23 initialize($conf);
24
25 # read in trash tags file if it exists
26 populate_trash() if (-e '.trashtags');
27
28 my @record = ();  # current record storage
29 my %recmeta = (); # metadata about current record
30 my @context= ();  # last 5 lines of file
31
32 my $input = shift || 'incoming.marc.xml';
33
34 open MARC, '<', $input;
35 open my $NUMARC, '>', $conf->{output};
36 print $NUMARC '<?xml version="1.0" encoding="UTF-8"?>',"\n";
37 print $NUMARC '<collection xmlns="http://www.loc.gov/MARC21/slim">',"\n";
38
39 open my $EXMARC, '>', $conf->{exception};
40 print $EXMARC '<?xml version="1.0" encoding="UTF-8"?>',"\n";
41 print $EXMARC '<collection xmlns="http://www.loc.gov/MARC21/slim">',"\n";
42 open MARC2, '<', $input;
43 <MARC2>;
44
45 # this is the dispatch table which drives command selection in
46 # edit(), below
47 my %commands = ( c => \&print_context,
48                  C => \&print_linecontext,
49                  k => \&kill_line,
50                  o => \&show_original,
51                  m => \&merge_lines,
52                  s => \&substitute,
53                  t => \&commit_edit,
54                  x => \&dump_record,
55                  q => \&quit,
56                  '?' => \&help,
57                  h   => \&help,
58                  help => \&help,
59                );
60
61 my @spinner = qw(- / | \\);
62 my $sidx = 0;
63
64 while (my $line = getline()) {
65     unless ($count % 2000) {
66         print "\rWorking... ", $spinner[$sidx];
67         $sidx = ($sidx == $#spinner) ? 0 : $sidx + 1;
68     }
69     update_linecontext();
70
71     next if ($line =~ m|</record>|);
72
73     # catch empty datafield elements
74     if ($line =~ m|</datafield>|) {
75         if ($record[-2] =~ m/<datafield tag="..." ind1="." ind2=".">/) {
76             pop @record; pop @record;
77             message("Empty datafield scrubbed");
78             next;
79         }
80     }
81
82     # pad short leaders
83     if ($line =~ m|<leader>(.+?)</leader>|) {
84         my $leader = $1;
85         if (length $leader < 24) {
86             $leader .= ' ' x (20 - length($leader));
87             $leader .= "4500";
88             $line = "<leader>$leader</leader>\n";
89             message("Short leader padded");
90         }
91     }
92
93     # clean misplaced dollarsigns
94     if ($line =~ m|<subfield code="\$">c?\d+\.\d{2}|) {
95         $line =~ s|"\$">c?(\d+\.\d{2})|"c">\$$1|;
96         message("Dollar sign corrected");
97     }
98
99     # clean up tags with spaces in them
100     $line =~ s/tag="  /tag="00/g;
101     $line =~ s/tag=" /tag="0/g;
102     $line =~ s/tag="-/tag="0/g;
103     $line =~ s/tag="(\d\d) /tag="0$1/g;
104
105     # stow tag data if we're looking at it
106     if ($line =~ m/<datafield tag="(.{3})" ind1="(.)" ind2="(.)">/) {
107         $recmeta{tag}  = $1;
108         $recmeta{ind1} = $2;
109         $recmeta{ind2} = $3;
110     }
111
112     # and stow line back in record
113     $record[-1] = $line;
114
115     # naked ampersands
116     if ($line =~ /&/ && $line !~ /&\w+?;/)
117       { edit("Naked ampersand", $line); next }
118
119     # tags must be numeric
120     if ($line =~ /<datafield tag="(.+?)"/) {
121         my $match = $1;
122         if ($match =~ /\D/) {
123             edit("Non-numerics in tag", $line);
124             next;
125         }
126     }
127
128     # subfields can't be non-alphanumeric
129     if ($line =~ /<subfield code="(.+?)"/) {
130         my $match = $1;
131         if ($match =~ /\P{IsAlnum}/) {
132             edit("Junk in subfield code", $line);
133             next;
134         }
135     }
136
137 }
138 print $NUMARC "</collection>\n";
139 print $EXMARC "</collection>\n";
140 print $OUT "\nDone.               \n";
141
142 =head2 edit
143
144 Handles the Term::ReadLine loop
145
146 =cut
147
148 sub edit {
149     my ($msg, $line_in) = @_;
150     return if $trash{$recmeta{tag}};
151     message($msg);
152     print_context();
153
154     while (1) {
155         my $line = $term->readline('marc-cleanup>');
156         my @chunks = split /\s+/, $line;
157
158         if (length $chunks[0] == 1)
159           { next unless (defined $commands{$chunks[0]}) }
160
161         if (defined $commands{$chunks[0]}) {
162             my $term = $commands{$chunks[0]}->($line_in, @chunks[1..$#chunks]);
163             last if $term;
164         } else {
165             if ($context[3] eq " [LINE KILLED]\n") {
166                 push @record, "$line\n"
167             } else {
168                 $record[-1] = "$line\n";
169             }
170             $context[3] = "$line\n";
171             print_linecontext();
172         }
173     }
174 }
175
176 =head2 getline
177
178 Reads from the incoming MARC file; returns lines into the driver
179 loop. Batches records for output, and maintains the context listing.
180
181 =cut
182
183 sub getline {
184     my $l = <MARC>;
185     $count++;
186     if (defined $l) {
187         if ($l =~ /<record>/) {
188             @record = ($l);
189             %recmeta = ();
190             $reccount++;
191         } elsif ($l =~ m|</record>|) {
192             write_record($NUMARC) if $reccount;
193         } else {
194             push @record, $l;
195         }
196     }
197     return $l;
198 }
199
200 sub write_record {
201     my ($FH) = @_;
202     $oreccount++ if ($FH eq $NUMARC);
203     print $FH '<!-- ', $recmeta{explanation}, " -->\n"
204       if(defined $recmeta{explanation});
205
206     # LOOP OVER %trash TO EXCISE UNWANTED TAGS1
207     if (keys %trash) {
208         my @trimmed = ();
209         my $istrash = 0;
210         for my $line (@record) {
211             if ($istrash) {
212                 $istrash = 0 if $line =~ m|</datafield|;
213                 next;
214             }
215             if ($line =~ m/<datafield tag="(.{3})"/) {
216                 my $tag = $1;
217                 if ($trash{$tag} or ($conf->{autoscrub} and $tag =~ /\D/) {
218                     $istrash = 1;
219                     next
220                 }
221             }
222             push @trimmed, $line;
223         }
224         @record = @trimmed;
225     }
226
227     # add 903 with new record id
228     if ($conf->{'renumber-from'}) {
229         print $FH '<datafield tag="903"><subfield code="a">', $conf->{'renumber-from'},
230           '</subfield></datafield>';
231         print $FH "\n" unless $conf->{oneperline};
232         $conf->{'renumber-from'}++;
233     }
234
235     print $FH @record;
236     print $FH '</record>\n';
237 }
238
239 sub update_linecontext {
240     my $line2 = <MARC2>;
241     push @context, $line2;
242     shift @context if (@context > 5);
243 }
244
245 sub message {
246     my ($msg) = @_;
247     print $OUT "\r$msg at record $reccount/",$oreccount + 1,"\n";
248
249 }
250
251 #-----------------------------------------------------------------------------------
252 # command routines
253 #-----------------------------------------------------------------------------------
254
255 sub substitute {
256     my ($line_in, @chunks) = @_;
257     my $ofrom = shift @chunks;
258     if ($ofrom =~ /^'/ or !@chunks) {
259         until ($ofrom =~ /'$/)
260           { $ofrom .= join(' ','',shift @chunks) }
261         $ofrom =~ s/^'//; $ofrom =~ s/'$//;
262     }
263     my $to = shift @chunks;
264     if ($to =~ /^'/) {
265         until ($to =~ /'$/ or !@chunks)
266           { $to .= join(' ','',shift @chunks) }
267         $to =~ s/^'//; $to =~ s/'$//;
268     }
269
270     my $from = '';
271     for my $char (split(//,$ofrom)) {
272         $char = "\\" . $char if ($char =~ /\W/);
273         $from = join('', $from, $char);
274     }
275     $record[-1] =~ s/$from/$to/;
276     $context[3] = $record[-1];
277     print_linecontext();
278     return 0;
279 }
280
281 sub merge_lines {
282     my $last = pop @record;
283     $last =~ s/^\s+//;
284     $record[-1] =~ s/\n//;
285     $record[-1] = join('', $record[-1], $last);
286     my @temp = ("\n");
287     push @temp, @context[0..1];
288     $temp[3] = $record[-1];
289     $temp[4] = $context[4];
290     @context = @temp;
291     print_linecontext();
292     return 0;
293 }
294
295 sub kill_line {
296     pop @record;
297     $context[3] = " [LINE KILLED]\n";
298     print_linecontext();
299     return 0;
300 }
301
302 sub dump_record {
303     my ($line_in, @explanation) = @_;
304     $recmeta{explanation} = join(' ', 'Tag', $recmeta{tag}, @explanation);
305     my $line = <MARC>; $count++;
306     update_linecontext();
307     until ($line =~ m|</record>|) {
308         push @record, $line;
309         $line = <MARC>; $count++;
310         update_linecontext();
311     }
312     push @record, $line;
313     write_record($EXMARC);
314     return 1;
315 }
316
317 sub commit_edit { return 1 }
318
319 sub print_context {
320     print "\n Tag:",$recmeta{tag}, " Ind1:'",
321       $recmeta{ind1},"' Ind2:'", $recmeta{ind2}, "'";
322     print_linecontext();
323     return 0;
324 }
325
326 sub print_linecontext {
327     print $OUT "\n", join('    |','',@context[0..2]);
328     print $OUT '==> |', $context[3];
329     print $OUT '    |', $context[4],"\n";
330     return 0;
331 }
332
333 sub show_original {
334     my ($line_in) = @_;
335     print $OUT "\n$line_in\n";
336     return 0;
337 }
338
339 sub help {
340 print $OUT <<HELP;
341
342 Type a replacement for the indicated line, or enter a command.
343
344 Commands: c  Show record context ('C' for brief context)
345           k  Kill indicated line (remove from record)
346           m  Merge indicated line with previous line
347           o  Show original line
348           s  Substitute ARG1 for ARG2 in indicated line
349           t  Commit changes and resume stream edit
350           x  Write this record to the exception file instead of output
351           q  Quit
352
353 HELP
354 return 0;
355 }
356
357 sub quit { exit }
358
359 #-----------------------------------------------------------------------------------
360 # populate_trash
361 #-----------------------------------------------------------------------------------
362 # defined a domain-specific language for specifying MARC tags to be dropped from
363 # records during processing. it is line oriented, and is specified as follows:
364 #
365 # each line may specify any number of tags to be included, either singly (\d{1,3})
366 # or as a range (\d{1,3}\.\.\d{1,3}
367 #
368 # if a single number is given, it must be between '000' and '999', inclusive.
369 #
370 # ranges obey the previous rule, and also the first number of the range must be less
371 # than the second number
372 #
373 # finally, any single range in a line may be followed by the keyword 'except'. every
374 # number or range after 'except' is excluded from the range specified. all these
375 # numbers must actually be within the range.
376 #
377 # specifying a tag twice is an error, to help prevent typos
378
379 sub populate_trash {
380     print $OUT ">>> TRASHTAGS FILE FOUND. LOADING TAGS TO BE STRIPPED FROM OUTPUT...\n";
381     open TRASH, '<', '.trashtags';
382     while (<TRASH>) {
383         my $lastwasrange = 0;
384         my %lastrange = ( high => 0, low => 0);
385         my $except = 0;
386
387         my @chunks = split /\s+/;
388         while (my $chunk = shift @chunks) {
389
390             # single values
391             if ($chunk =~ /^\d{1,3}$/) {
392                 trash_add($chunk, $except);
393                 $lastwasrange = 0;
394                 next;
395             }
396
397             # ranges
398             if ($chunk =~ /^\d{1,3}\.\.\d{1,3}$/) {
399                 my ($low, $high) = trash_add_range($chunk, $except, \%lastrange);
400                 $lastwasrange = 1;
401                 %lastrange = (low => $low, high => $high)
402                   unless $except;
403                 next;
404             }
405
406             # 'except'
407             if ($chunk eq 'except') {
408                 die "Keyword 'except' can only follow a range (line $.)\n"
409                   unless $lastwasrange;
410                 die "Keyword 'except' may only occur once per line (line $.)\n"
411                   if $except;
412                 $except = 1;
413                 next;
414             }
415
416             die "Unknown chunk $chunk in .trashtags file (line $.)\n";
417         }
418     }
419 }
420
421 sub trash_add_range {
422     my ($chunk, $except, $range) = @_;
423     my ($low,$high) = split /\.\./, $chunk;
424     die "Ranges must be 'low..high' ($low is greater than $high on line $.)\n"
425       if ($low > $high);
426     if ($except) {
427         die "Exception ranges must be within last addition range (line $.)\n"
428           if ($low < $range->{low} or $high > $range->{high});
429     }
430     for my $tag ($low..$high) {
431         trash_add($tag, $except)
432     }
433     return $low, $high;
434 }
435
436 sub trash_add {
437     my ($tag, $except) = @_;
438     die "Trash values must be valid tags (000-999)\n"
439       unless ($tag >= 0 and $tag <= 999);
440     if ($except) {
441         delete $trash{$tag};
442     } else {
443         die "Trash tag '$tag' specified twice (line $.)\n"
444           if $trash{$tag};
445         $trash{$tag} = 1;
446     }
447 }
448
449 #-----------------------------------------------------------------------
450
451 =head2 initialize
452
453 Performs boring script initialization. Handles argument parsing,
454 mostly.
455
456 =cut
457
458 sub initialize {
459     my ($c) = @_;
460     my @missing = ();
461
462     # set mode on existing filehandles
463     binmode(STDIN, ':utf8');
464
465     my $rc = GetOptions( $c,
466                          'autoscrub|a',
467                          'exception|e=s',
468                          'output|o=s',
469                          'nocollapse|n',
470                          'renumber-from|rf=i',
471                          'original-tag|ot=i',
472                          'renumber-tag|rt=i',
473                          'help|h',
474                        );
475     show_help() unless $rc;
476     show_help() if ($c->{help});
477
478     # defaults
479     $c->{output} = 'incoming.cleaned.marc.xml' unless defined $c->{output};
480     $c->{exception} = 'incoming.exception.marc.xml' unless defined $c->{exception};
481     $c->{'renumber-tag'} = 903 unless defined $c->{exception};
482
483     my @keys = keys %{$c};
484     show_help() unless (@ARGV and @keys);
485     #for my $key ('runtype', 'tag', 'subfield', 'output', 'exception')
486     #  { push @missing, $key unless $c->{$key} }
487     #if (@missing) {
488     #    print "Required option: ", join(', ', @missing), " missing!\n";
489     #    show_help();
490     #}
491 }
492
493 sub show_help {
494     print <<HELP;
495 HELP
496 }