-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathextract_holdings
More file actions
executable file
·336 lines (287 loc) · 12.4 KB
/
extract_holdings
File metadata and controls
executable file
·336 lines (287 loc) · 12.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#!/usr/bin/perl
# Copyright 2009-2012, Equinox Software, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
use strict;
use warnings;
use Getopt::Long;
use Equinox::Migration::MapDrivenMARCXMLProc 1.005;
use Equinox::Migration::MARCXMLSampler;
my $VERSION = '1.001';
=pod
TODO
* Have detail mode report on number of subfields per datafield
=cut
my $c = initialize();
$| = 1;
# run samples if we've been asked for them
run_samples($c) if ($c->{sample} or $c->{samplemap} or $c->{samplestr});
extract_holdings($c) if ($c->{map});
print "\n";
#--------------------------
sub extract_holdings {
my ($c) = @_;
print "Parsing records for extraction:\n";
my $m = Equinox::Migration::MapDrivenMARCXMLProc->new( marcfile => $c->{marcfile},
mapfile => $c->{map},
verbose => 1,
);
print "Writing holdings to output file(s)...\n";
# open main holdings file
open HOLDINGS, '>', ($c->{prefix} . "-" . $c->{suffix} . ".pg");
# create multi files
my $multis = $m->get_multis;
my %MULTIFILE = ();
for my $t ( keys %{$multis} ) {
for my $s ( keys %{$multis->{$t}})
{ open my $fh, ">", ($c->{prefix} . "-" . $c->{suffix} . "-MULT-$t$s.pg"); $MULTIFILE{"$t$s"} = $fh }
}
my $parallel_fields = $m->get_parallel_fields;
my $i = 0; # record counter
my $j = 0; # holdings counter
while ( $m->{data}{recs}[$i] ) {
print HOLDINGS "BEGIN;\n\negid, hseq, " unless $j;
my $rec = $m->{data}{recs}[$i];
my $k = 0; # holding-within-record pointer
for my $holdidx ( @{ $rec->{tmap}{ $c->{holdings} } } ) {
# for each holdings tag in the record...
my $tagid = $rec->{tags}[$holdidx]{tag};
$k++;
my @out = (); # clear the output buffer
push @out, $rec->{egid}; # slug in the egid first thing
push @out, $j; # holding seq goes next
# grab the unary mappings and slug 'em in
for my $sub ( sort keys %{$rec->{tags}[$holdidx]{uni}} ) {
push @out, $rec->{tags}[$holdidx]{uni}{$sub};
print HOLDINGS "l_", $m->name($tagid, $sub),", " unless $j;
}
# handle holdings multis
for my $sub ( sort keys %{$multis->{$tagid}} ) {
for my $value ( @{$rec->{tags}[$holdidx]{multi}{$sub}} ) {
my $fh = $MULTIFILE{"$tagid$sub"};
my $clean_value = $value;
$clean_value =~ s/[\r\n\t]//g;
print $fh join("\t", $rec->{egid}, $j, $clean_value), "\n";
}
}
# now get everything else in the mapping
for my $othertag ( sort keys %{$rec->{tmap}} ) {
next if $othertag eq $c->{holdings}; # ignoring the holdings, o'course
my $test_idx = $rec->{tmap}{$othertag}[0]; # get index into tags struct
unless (defined $test_idx) {
push @out, '';
next;
}
# handle parallel fields
if (exists($parallel_fields->{$othertag})) {
my $num_fields = $#{ $rec->{tmap}{$othertag} };
my $tag_idx;
if ($holdidx > $num_fields) {
$tag_idx = -1;
} else {
$tag_idx = $rec->{tmap}{$othertag}[$holdidx];
}
for my $sub ( sort keys %{ $parallel_fields->{$othertag } } ) {
push @out, $tag_idx > -1 ? $rec->{tags}[$tag_idx]{parallel}{$sub}->[0] : '';
print HOLDINGS "l_", $m->name($rec->{tags}[$tag_idx]{tag}, $sub), ", " unless $j;
}
}
# handle only first other tag unless it is known to be multi
my $limit = 0;
if (exists($multis->{$othertag})) {
$limit = $#{ $rec->{tmap}{$othertag} };
}
foreach my $idx (0..$limit) {
my $tag_idx = $rec->{tmap}{$othertag}[$idx];
for my $sub ( sort keys %{$rec->{tags}[$tag_idx]{uni}} ) {
if ($m->first_only($rec->{tags}[$tag_idx]{tag}, $sub)) {
push @out, ($k == 1) ? $rec->{tags}[$tag_idx]{uni}{$sub} : '';
} else {
push @out, $rec->{tags}[$tag_idx]{uni}{$sub};
}
print HOLDINGS "l_", $m->name($rec->{tags}[$tag_idx]{tag}, $sub), ", " unless $j;
}
next unless exists($multis->{$othertag});
for my $sub ( sort keys %{$multis->{$othertag}} ) {
next if $m->first_only($rec->{tags}[$tag_idx]{tag}, $sub) and ($k > 1);
for my $value ( @{$rec->{tags}[$tag_idx]{multi}{$sub}} ) {
my $fh = $MULTIFILE{"$othertag$sub"};
my $clean_value = $value;
$clean_value =~ s/[\r\n\t]//g;
print $fh normalize_output(join("\t", $rec->{egid}, $j, $clean_value)), "\n";
}
}
}
}
# and dump it
print HOLDINGS "\n" unless $j;
print HOLDINGS normalize_output(join("\t", @out));
print HOLDINGS "\n";
$j++;
}
$i++;
print "\r$i $j";
}
print "\n";
}
#--------------------------
sub run_samples {
my ($c) = @_;
my $s;
print "Parsing records for sampling... ";
if ($c->{samplemap}) {
$s = Equinox::Migration::MARCXMLSampler->new( marcfile => $c->{marcfile},
mapfile => $c->{samplemap});
} elsif ($c->{samplestr}) {
$s = Equinox::Migration::MARCXMLSampler->new( marcfile => $c->{marcfile},
mapstring => $c->{samplestr});
} else {
$s = Equinox::Migration::MARCXMLSampler->new( marcfile => $c->{marcfile} );
}
dump_sample_overview($c, $s) if $c->{sample};
dump_sample_detail($c, $s) if ($c->{samplemap} or $c->{samplestr});
}
sub dump_sample_detail {
my ($c, $s) = @_;
my $tags = $s->{data}{samp};
my $count = $s->{data}{rcnt};
my $scnt = $s->{data}{scnt};
open DETAIL, '>', ($c->{prefix} . "-" . $c->{suffix} . "-DETAIL.txt");
select DETAIL;
for my $tag (sort keys %{ $tags }) {
print ">>>>> TAG $tag\n\n";
for my $subkey (sort keys %{ $tags->{$tag} }) {
my $sub = $tags->{$tag}{$subkey};
print "|| $subkey | ", $sub->{value}, " | ",
$sub->{count}, "/", $sub->{tcnt}, " | ", ($sub->{count} > $sub->{tcnt}) ? "MULTI" : "", " ||\n";
}
print "\n";
}
close DETAIL;
open SCOUNT, '>', ($c->{prefix} . "-" . $c->{suffix} . "-SUBCOUNTS.txt");
select SCOUNT;
for my $tag (sort keys %{ $scnt }) {
print ">>>>> TAG $tag\n\n";
for my $len (sort keys %{ $scnt->{$tag} })
{ print "|| $len | ", $scnt->{$tag}{$len}, " ||\n" }
print "\n";
}
select STDOUT;
print "Saved results as ", ($c->{prefix} . "-" . $c->{suffix} . "-DETAIL.txt"), " and ",
($c->{prefix} . "-" . $c->{suffix} . "-SUBCOUNTS.txt"), "\n";
}
sub dump_sample_overview {
my ($c, $s) = @_;
my $tags = $s->{data}{tags};
my $count = $s->{data}{rcnt};
my @tagsbyname = sort keys %{$tags};
my @tagsbycount = reverse sort { $tags->{$a} <=> $tags->{$b} } keys %{$tags};
open SAMPLE, '>', ($c->{prefix} . "-" . $c->{suffix} . "-OVERVIEW.txt");
select SAMPLE;
print "SAMPLE REPORT FOR ", $c->{prefix},": $count records\n\n";
print "FOUND TAGS (BY TAG) FOUND TAGS (BY COUNT)\n";
print "------------------------ --------------------------\n";
for my $i (0 .. @tagsbyname - 1) {
print $tagsbyname[$i], (" " x (14 - length $tags->{ $tagsbyname[$i] })),
$tags->{ $tagsbyname[$i] };
print " (", sprintf("%03d", int($tags->{ $tagsbyname[$i] } / $count * 100)), "%)";
print " ";
print $tagsbycount[$i], (" " x (16 - length $tags->{ $tagsbycount[$i] })),
$tags->{ $tagsbycount[$i] };
print " (", sprintf("%03d", int($tags->{ $tagsbycount[$i] } / $count * 100)), "%)\n";
}
select STDOUT;
print "Saved results as ", ($c->{prefix} . "-" . $c->{suffix} . "-OVERVIEW.txt"), "\n";
close SAMPLE;
}
#--------------------------
sub initialize {
my $c = {};
my @missing = ();
# set mode on existing filehandles
binmode(STDIN, ':utf8');
my $rc = GetOptions( $c,
'sample|s',
'samplemap|sm=s',
'samplestr|ss=s',
'marcfile=s',
'map|m=s',
'holdings|h=i',
'copyid|c=s',
'prefix|p=s',
'suffix|o=s',
'disable-pg-normalization',
'version|v',
'help',
);
show_help() unless $rc;
show_help() if ($c->{help});
show_help("Nothing to do!")
unless ($c->{map} or $c->{sample} or $c->{samplemap} or $c->{samplestr});
show_help("map, holdings, and copyid must be specified together!")
if ($c->{map} and !($c->{holdings} and $c->{copyid}));
show_version() if $c->{version};
if (! $c->{suffix}) {
$c->{suffix} = 'HOLDINGS';
}
if ($c->{prefix} and !$c->{marcfile}) {
$c->{marcfile} = $c->{prefix} . ".clean.marc.xml";
}
my @keys = keys %{$c};
for my $key ('prefix', 'marcfile')
{ push @missing, $key unless $c->{$key} }
if (@missing) {
print "Required option: ", join(', ', @missing), " missing!\n";
show_help();
}
return $c;
}
sub normalize_output {
my $str = shift;
$str =~ s!\\!\\\\!g unless $c->{'disable-pg-normalization'};
return $str;
}
sub show_help {
my ($msg) = @_;
print "\nERROR - $msg\n" if $msg;
print <<HELP;
Usage is: extract_holdings --prefix PREFIX --marcfile MARCFILE [ARGUMENTS]
REQUIRED ARGUMENTS
--prefix -p Prefix string for output filenames
--suffix -o Suffix string for output filenames (defaults to HOLDINGS)
--marcfile MARCXML to use as source data
Defaults to 'PREFIX.clean.marc.xml'
SAMPLING ARGUMENTS
--sample -s Generate a report of all tags in the MARC data
--samplemap -sm Specify a Equinox::Migration::SimpleTagList map file which
will be used to generate subfield breakdown reports about
specific tags in the MARC data
--samplestr -ss As above, but with a one-liner map specified on the command
line as a string (e.g. '-ss "852 999"')
If --samplemap and --samplestr are both specified, --samplemap wins.
HOLDINGS EXTRACTION ARGUMENTS
--map -m Equinox::Migration::SubfieldMapper map file which will be
used to extract holdings data from the input MARC file
--holdings -h Specifies actual holdings tag
--copyid -c Specifies subfield of holdings with unique copy identifier
--disable-pg-normalization By default, output is normalized so that a Postgres
copy or \\copy can import the data without choking on
backslashes; use this command-line option if
output is not meant to be consumed by psql.
All three of these must be given together.
HELP
exit;
}
sub show_version { print "extract_holdings v$VERSION\n"; exit }