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