source: gsdl/trunk/bin/script/explode_metadata_database.pl@ 19742

Last change on this file since 19742 was 19742, checked in by ak19, 15 years ago

Dr Bainbridge fixed a little problem about how the document_prefix option for exploding an ISIS database got resolved: it now makes sure there's a proper fileseparator at the end of the doc_prefix even if the user had not provided one.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 18.5 KB
Line 
1#!/usr/bin/perl -w
2
3
4BEGIN {
5 die "GSDLHOME not set\n" unless defined $ENV{'GSDLHOME'};
6 unshift (@INC, "$ENV{'GSDLHOME'}/perllib");
7 unshift (@INC, "$ENV{'GSDLHOME'}/perllib/plugins");
8}
9
10use strict;
11no strict 'subs'; # allow barewords (eg STDERR) as function arguments
12no strict 'refs'; # allow filehandles to be variables and vice versa
13
14use encodings;
15use printusage;
16use parse2;
17use colcfg;
18
19use FileHandle;
20
21use File::Spec;
22use File::Basename;
23
24my $unicode_list =
25 [ { 'name' => "auto",
26 'desc' => "{ReadTextFile.input_encoding.auto}" },
27 { 'name' => "ascii",
28 'desc' => "{BasePlugin.encoding.ascii}" },
29 { 'name' => "utf8",
30 'desc' => "{BasePlugin.encoding.utf8}" },
31 { 'name' => "unicode",
32 'desc' => "{BasePlugin.encoding.unicode}" } ];
33
34my $e = $encodings::encodings;
35foreach my $enc (sort {$e->{$a}->{'name'} cmp $e->{$b}->{'name'}} keys (%$e))
36{
37 my $hashEncode =
38 {'name' => $enc,
39 'desc' => $e->{$enc}->{'name'}};
40
41 push(@{$unicode_list},$hashEncode);
42}
43
44my $arguments =
45 [
46 { 'name' => "language",
47 'desc' => "{scripts.language}",
48 'type' => "string",
49 'reqd' => "no",
50 'hiddengli' => "yes" },
51 { 'name' => "plugin",
52 'desc' => "{explode.plugin}",
53 'type' => "string",
54 'reqd' => "yes",
55 'hiddengli' => "yes"},
56 { 'name' => "input_encoding",
57 'desc' => "{explode.encoding}",
58 'type' => "enum",
59 'deft' => "auto",
60 'list' => $unicode_list,
61 'reqd' => "no" },
62 { 'name' => "metadata_set",
63 'desc' => "{explode.metadata_set}",
64 'type' => "string",
65 'reqd' => "no" },
66 { 'name' => "document_field",
67 'desc' => "{explode.document_field}",
68 'type' => "string",
69 'reqd' => "no"},
70 { 'name' => "document_prefix",
71 'desc' => "{explode.document_prefix}",
72 'type' => "string",
73 'reqd' => "no"},
74 { 'name' => "document_suffix",
75 'desc' => "{explode.document_suffix}",
76 'type' => "string",
77 'reqd' => "no"},
78 { 'name' => "records_per_folder",
79 'desc' => "{explode.records_per_folder}",
80 'type' => "int",
81 'range' => "0,",
82 'deft' => "100",
83 'reqd' => "no" },
84 { 'name' => "collection",
85 'desc' => "{explode.collection}",
86 'type' => "string",
87 'reqd' => "no",
88 'hiddengli' => "yes"},
89 { 'name' => "use_collection_plugin_options",
90 'desc' => "{explode.use_collection_plugin_options}",
91 'type' => "flag",
92 'reqd' => "no",
93 'hiddengli' => "yes"},
94 { 'name' => "plugin_options",
95 'desc' => "{explode.plugin_options}",
96 'type' => "string",
97 'reqd' => "no",
98 'hiddengli' => "yes"},
99 { 'name' => "verbosity",
100 'desc' => "{import.verbosity}",
101 'type' => "int",
102 'range' => "0,",
103 'deft' => "1",
104 'reqd' => "no",
105 'modegli' => "3" },
106 { 'name' => "xml",
107 'desc' => "",
108 'type' => "flag",
109 'reqd' => "no",
110 'hiddengli' => "yes" }
111 ];
112
113my $options = { 'name' => "explode_metadata_database.pl",
114 'desc' => "{explode.desc}",
115 'args' => $arguments };
116
117
118
119sub main
120{
121 my ($language, $input_encoding, $metadata_set, $plugin,
122 $document_field, $document_prefix, $document_suffix, $records_per_folder, $plugin_options, $collection, $use_collection_plugin_options, $verbosity);
123
124 my $xml = 0;
125
126 my $hashParsingResult = {};
127 # parse the options
128 my $intArgLeftinAfterParsing = parse2::parse(\@ARGV,$arguments,$hashParsingResult,"allow_extra_options");
129
130 # If parse returns -1 then something has gone wrong
131 if ($intArgLeftinAfterParsing == -1)
132 {
133 &PrintUsage::print_txt_usage($options, "{explode.params}");
134 die "\n";
135 }
136
137 foreach my $strVariable (keys %$hashParsingResult)
138 {
139 eval "\$$strVariable = \$hashParsingResult->{\"\$strVariable\"}";
140 }
141
142 # If $language has been specified, load the appropriate resource bundle
143 # (Otherwise, the default resource bundle will be loaded automatically)
144 if ($language && $language =~ /\S/) {
145 &gsprintf::load_language_specific_resource_bundle($language);
146 }
147
148 if ($xml) {
149 &PrintUsage::print_xml_usage($options);
150 print "\n";
151 return;
152 }
153
154
155 # There should one arg left after parsing (the filename)
156 # Or the user may have specified -h, in which case we output the usage
157 if($intArgLeftinAfterParsing != 1 || (@ARGV && $ARGV[0] =~ /^\-+h/))
158 {
159 &PrintUsage::print_txt_usage($options, "{explode.params}");
160 die "\n";
161 }
162
163 # The metadata database filename is the first value that remains after the options have been parsed out
164 my $filename = $ARGV[0];
165 if (!defined $filename || $filename !~ /\w/) {
166 &PrintUsage::print_txt_usage($options, "{explode.params}");
167 print STDERR "You need to specify a filename";
168 die "\n";
169 }
170 # check that file exists
171 if (!-e $filename) {
172 print STDERR "File $filename doesn't exist...\n";
173 die "\n";
174 }
175 # check required options
176 if (!defined $plugin || $plugin !~ /\w/) {
177 &PrintUsage::print_txt_usage($options, "{explode.params}");
178 print STDERR "You need to specify a plugin";
179 die "\n";
180 }
181
182 # check metadata set
183 if (defined $metadata_set && $metadata_set =~ /\w/) {
184 $metadata_set .= ".";
185 } else {
186 $metadata_set = "";
187 }
188 if (defined $collection && $collection =~ /\w/) {
189 if (($collection = &colcfg::use_collection("", $collection, "")) eq "") {
190 print STDERR "Collection $collection does not exist\n";
191 die "\n";
192 }
193 } else {
194 undef $collection;
195 }
196
197 if ($use_collection_plugin_options) {
198 if (defined $plugin_options && $plugin_options =~ /\w/) {
199 print STDERR "Error: you cannot have -use_collection_plugin_options and -plugin_options set at the same time\n";
200 die "\n";
201 }
202 if (not defined $collection) {
203 print STDERR "Error: you must specify a collection using -collection to use -use_collection_plugin_options\n";
204 die "\n";
205 }
206 }
207 my $plugobj;
208 require "$plugin.pm";
209
210 my $plugin_options_string = "";
211 if ($use_collection_plugin_options) {
212 # read in the collect.cfg file
213 # Read in the collection configuration file.
214 my ($configfilename, $gs_mode) = &colcfg::get_collect_cfg_name(STDERR);
215 my $collectcfg;
216 if ($gs_mode eq "gs2") {
217 $collectcfg = &colcfg::read_collect_cfg ($configfilename);
218 } elsif ($gs_mode eq "gs3") {
219 $collectcfg = &colcfg::read_collection_cfg_xml ($configfilename);
220 }
221 $plugin_options_string = &get_plugin_options($collectcfg, $plugin);
222 }
223 elsif (defined $plugin_options && $plugin_options =~ /\w/) {
224 my @options = split(/\s/, $plugin_options);
225 map { $_ = "\"$_\"" unless $_ =~ /^\"/; } @options;
226 $plugin_options_string= join (",", @options);
227 }
228
229 if ($plugin_options_string eq "") {
230 eval ("\$plugobj = new $plugin()");
231 die "$@" if $@;
232 } else {
233 eval ("\$plugobj = new $plugin([], [$plugin_options_string])");
234 die "$@" if $@;
235 }
236
237 # ...and initialize it
238 $plugobj->init($verbosity, "STDERR", "STDERR");
239
240 if ($input_encoding eq "auto") {
241 ($language, $input_encoding) = $plugobj->textcat_get_language_encoding ($filename);
242 }
243
244 # Create a directory to store the document files...
245 my ($exploded_base_dir) = ($filename =~ /(.*)\.[^\.]+$/);
246
247 my $orig_base_dir = &File::Basename::dirname($filename);
248
249
250 my $split_exp = $plugobj->{'split_exp'};
251 if (defined $split_exp) {
252 # Read in file, and then split and process individual records
253
254 my $text = "";
255 # Use the plugin's read_file function to avoid duplicating code
256 $plugobj->read_file($filename, $input_encoding, undef, \$text);
257 # is there any text in the file??
258 die "\n" unless length($text);
259
260 # Split the text into records, using the plugin's split_exp
261
262 my @metadata_records = split(/$split_exp/, $text);
263 my $total_num_records = scalar(@metadata_records);
264 print STDERR "Number of records: $total_num_records\n";
265
266 # Write the metadata from each record to the metadata.xml file
267 my $record_number = 1;
268 my $documents_directory;
269 foreach my $record_text (@metadata_records) {
270
271 # Check if we need to start a new directory for these records
272 check_need_new_directory($exploded_base_dir,$record_number,
273 $records_per_folder,$total_num_records,
274 \$documents_directory);
275 # Use the plugin's process function to avoid duplicating code
276 my $doc_obj = new doc($filename, "nonindexed_doc", $plugobj->get_file_rename_method());
277 $plugobj->process(\$record_text, undef, undef, $filename, undef, $doc_obj, 0);
278
279
280 # Try to get a doc to attach the metadata to
281 # If no match found, create a dummy .nul file
282 attach_metadata_or_make_nul_doc($document_field, $doc_obj, $record_number,
283 $documents_directory, $orig_base_dir,
284 $document_prefix, $document_suffix, $metadata_set, $verbosity);
285
286
287 check_close_directory($record_number,$records_per_folder,$total_num_records);
288
289 $record_number = $record_number + 1;
290 }
291 }
292 else {
293 # Call metadata_read to set up associated metadata
294
295 my $pluginfo = undef;
296 my $block_hash = {};
297
298 my $processor = undef;
299 my $maxdocs = undef;
300 my $gli = undef;
301
302 my $extrametakeys = [];
303 my $extrametadata = {};
304 my $extrametafile = {};
305
306 $plugobj->metadata_read($pluginfo, "", $filename, $block_hash,
307 $extrametakeys, $extrametadata, $extrametafile,
308 $processor, $maxdocs, $gli);
309
310 my $total_num_records = scalar (@$extrametakeys);
311 print STDERR "Number of records: $total_num_records\n";
312 my $record_number = 1;
313 my $documents_directory;
314 foreach my $record (@$extrametakeys) {
315 &check_need_new_directory($exploded_base_dir, $record_number, $records_per_folder, $total_num_records, \$documents_directory);
316
317 # Attach metadata to object
318 # => use the plugin's extra_metadata function to avoid duplicating code
319 my $doc_obj = new doc($filename, "nonindexed_doc", $plugobj->get_file_rename_method());
320 # all the metadata has been extracted into extrametadata
321 $plugobj->extra_metadata ($doc_obj, $doc_obj->get_top_section(), $extrametadata->{$record});
322
323 # Try to get a doc to attach the metadata to
324 # If no match found, create a dummy .nul file
325 attach_metadata_or_make_nul_doc($document_field, $doc_obj, $record_number, $documents_directory, $orig_base_dir, $document_prefix, $document_suffix, $metadata_set, $verbosity);
326
327 &check_close_directory($record_number,$records_per_folder,$total_num_records);
328
329 $record_number = $record_number + 1;
330
331 }
332 }
333
334 # Explode means just that: the original file is deleted
335 &util::rm($filename);
336 $plugobj->clean_up_after_exploding();
337
338}
339
340
341sub need_new_directory
342{
343 my ($exploded_base_dir) = @_;
344
345 my $documents_directory = $exploded_base_dir;
346
347 if (-d $documents_directory) {
348 die "Error: document directory $documents_directory already exists (bailing).\n";
349 }
350 &util::mk_dir($documents_directory);
351
352 my $documents_metadata_xml_file = &util::filename_cat($documents_directory, "metadata.xml");
353 if (-e $documents_metadata_xml_file) {
354 die "Error: documents metadata.xml file $documents_metadata_xml_file already exists (bailing).\n";
355 }
356
357 # Start the metadata.xml file
358 open(METADATA_XML_FILE, ">$documents_metadata_xml_file");
359 print METADATA_XML_FILE
360 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n" .
361 "<!DOCTYPE DirectoryMetadata SYSTEM \"http://greenstone.org/dtd/DirectoryMetadata/1.0/DirectoryMetadata.dtd\">\n" .
362 "<DirectoryMetadata>\n";
363
364 return $documents_directory;
365}
366
367sub check_need_new_directory
368{
369 my ($exploded_base_dir,$record_number, $records_per_folder,
370 $total_num_records, $documents_dir_ref) = @_;
371
372
373 # Check if we need to start a new directory for these records
374 if (($record_number % $records_per_folder) == 1) {
375 my $documents_directory = $exploded_base_dir;
376
377 if ($total_num_records > $records_per_folder) {
378 $documents_directory .= "." . sprintf("%8.8d", $record_number);
379 }
380
381 $$documents_dir_ref = need_new_directory($documents_directory);
382 }
383}
384
385
386
387
388
389sub attach_metadata_or_make_nul_doc
390{
391 my ($document_field, $doc_obj, $record_number,
392 $documents_directory, $orig_base_dir,
393 $document_prefix, $document_suffix, $metadata_set, $verbosity) = @_;
394
395 my $record_metadata = $doc_obj->get_all_metadata($doc_obj->get_top_section());
396 my $document_file;
397
398 # try to get a doc to attach the metadata to
399 if (defined $document_field) {
400 foreach my $pair (@$record_metadata) {
401 my ($field, $value) = (@$pair);
402
403 $value =~ s/\\\\/\\/g;
404
405 # Does this metadata element specify a document to obtain?
406 if ($field eq $document_field) {
407 # if the document prefix provided didn't have the requisite slash at the end, we make sure it does now
408 # by first of all stripping any trailing slash and then always ensuring one is used through filename_cat
409 $document_prefix =~ s/(\/|\\)$//;
410 my $document_file_full = &util::filename_cat($document_prefix, "$value$document_suffix");
411
412 # this either downloads/copies the document, or creates a nul file for it.
413 $document_file = &obtain_document($document_file_full, $documents_directory, $orig_base_dir, $verbosity);
414 &write_metadata_xml_file_entry(METADATA_XML_FILE, $document_file, $record_metadata, $metadata_set);
415 }
416 }
417 }
418
419 # Create a dummy .nul file if we haven't obtained a document (or null file) for this record
420 if (not defined $document_file) {
421
422 if (defined ($record_number)) {
423 $document_file = sprintf("%8.8d", $record_number) . ".nul";
424 }
425 else {
426 $document_file = "doc.nul";
427 }
428 open(DUMMY_FILE, ">$documents_directory/$document_file");
429 close(DUMMY_FILE);
430 &write_metadata_xml_file_entry(METADATA_XML_FILE, $document_file, $record_metadata, $metadata_set);
431 }
432
433}
434
435sub close_directory
436{
437 # Finish and close the metadata.xml file
438 print METADATA_XML_FILE "\n</DirectoryMetadata>\n";
439 close(METADATA_XML_FILE);
440
441}
442
443
444sub check_close_directory
445{
446 my ($record_number,$records_per_folder,$total_num_records) = @_;
447
448 if (($record_number % $records_per_folder) == 0 || $record_number == $total_num_records) {
449 # Finish and close the metadata.xml file
450 close_directory();
451 }
452}
453
454
455
456sub write_metadata_xml_file_entry
457{
458 my $metadata_xml_file = shift(@_);
459 my $file_name = shift(@_);
460 my $record_metadata = shift(@_);
461 my $meta_prefix = shift(@_);
462
463 # Make $file_name XML-safe
464 $file_name =~ s/&/&amp;/g;
465 $file_name =~ s/</&lt;/g;
466 $file_name =~ s/>/&gt;/g;
467
468 # Convert $file_name into a regular expression that matches it
469 $file_name =~ s/\./\\\./g;
470 $file_name =~ s/\(/\\\(/g;
471 $file_name =~ s/\)/\\\)/g;
472 $file_name =~ s/\{/\\\{/g;
473 $file_name =~ s/\}/\\\}/g;
474 $file_name =~ s/\[/\\\[/g;
475 $file_name =~ s/\]/\\\]/g;
476
477 print $metadata_xml_file
478 "\n" .
479 " <FileSet>\n" .
480 " <FileName>$file_name</FileName>\n" .
481 " <Description>\n";
482
483 foreach my $pair (@$record_metadata) {
484 my ($field, $value) = (@$pair);
485
486 # We're only interested in metadata from the database
487 next if ($field eq "lastmodified");
488 next if ($field eq "gsdlsourcefilename");
489 next if ($field eq "gsdldoctype");
490 next if ($field eq "FileFormat");
491
492 # Ignore the ^all metadata, since it will be invalid if the source metadata is changed
493 next if ($field =~ /\^all$/); # ISISPlug specific!
494
495 # Square brackets in metadata values need to be escaped so they don't confuse Greenstone/GLI
496 $value =~ s/\[/&\#091;/g;
497 $value =~ s/\]/&\#093;/g;
498
499 # Make $value XML-safe
500 $value =~ s/&/&amp;/g; # May mess up existing entities!
501 $value =~ s/</&lt;/g;
502 $value =~ s/>/&gt;/g;
503
504 # we are not allowed & in xml except in entities.
505 # if there are undefined entities then parsing will also crap out.
506 # should we be checking for them too?
507 # this may not get all possibilities
508 # $value =~ s/&([^;\s]*(\s|$))/&amp;$1/g;
509
510 # do we already have a namespace specified?
511 my $full_field = $field;
512 if ($meta_prefix ne "") {
513 $full_field =~ s/^\w+\.//;
514 $full_field = $meta_prefix.$full_field;
515 }
516
517 print $metadata_xml_file " <Metadata mode=\"accumulate\" name=\"$full_field\">$value</Metadata>\n";
518 }
519
520 print $metadata_xml_file
521 " </Description>\n" .
522 " </FileSet>\n";
523}
524
525sub obtain_document
526{
527 my ($document_file_full,$documents_directory,$orig_base_dir,$verbosity) = @_;
528
529 print STDERR "Obtaining document file $document_file_full...\n" if ($verbosity > 1);
530
531 my $document_file_name;
532 my $local_document_file;
533
534 # Document specified is on the web
535 if ($document_file_full =~ /^https?:/ || $document_file_full =~ /^ftp:/) {
536 $document_file_full =~ /([^\/]+)$/;
537 $document_file_name = $1;
538 $local_document_file = &util::filename_cat($documents_directory, $document_file_name);
539
540 my $wget_options = "--quiet";
541 $wget_options = "--verbose" if ($verbosity > 2);
542 $wget_options .= " --timestamping"; # Only re-download files if they're newer
543 my $wget_command = "wget $wget_options \"$document_file_full\" --output-document \"$local_document_file\"";
544 `$wget_command`;
545
546 # Check the document was obtained successfully
547 if (!-e $local_document_file) {
548 print STDERR "WARNING: Could not obtain document file $document_file_full\n";
549 }
550 }
551 # Document specified is on the disk
552 else {
553 # convert the dirseps in filepath to correct dir sep for OS
554 $document_file_full = &util::filename_cat($document_file_full);
555 my $dir_sep = &util::get_os_dirsep();
556
557 $document_file_full =~ m/(.+$dir_sep)?(.*)$/;
558 $document_file_name = $2;
559
560
561 my $is_absolute = File::Spec->file_name_is_absolute($document_file_full);
562 print STDERR "doc file full = $document_file_full\n";
563
564 if (!$is_absolute) {
565 $document_file_full
566 = &util::filename_cat($orig_base_dir,$document_file_full);
567 }
568
569 $local_document_file = &util::filename_cat($documents_directory, $document_file_name);
570
571 if (-e $document_file_full) {
572 &util::cp($document_file_full, $documents_directory);
573 }
574
575 # Check the document was obtained successfully
576 if (!-e $local_document_file) {
577 print STDERR "WARNING: Could not obtain document file $document_file_full\n";
578 }
579 else {
580 $orig_base_dir =~ s/\\/\\\\/g; # escape windows style slashes for the regex below
581 if ($document_file_full =~ m/^$orig_base_dir.*/) {
582 # file local to metadata record
583 # => copy has been made successfully, so remove original
584 &util::rm($document_file_full);
585 }
586 }
587 }
588
589 # If the document wasn't obtained successfully, create a .nul file for it
590 if (!-e $local_document_file) {
591 $document_file_name .= ".nul";
592 open(NULL_FILE, ">$local_document_file.nul");
593 close(NULL_FILE);
594 print STDERR "Creating a nul document $document_file_name\n";
595 }
596
597 return $document_file_name;
598}
599
600sub get_plugin_options {
601 my ($collectcfg, $plugin) = @_;
602
603 my $plugin_list = $collectcfg ->{'plugin'};
604
605 foreach my $pluginoptions (@$plugin_list) {
606 my $pluginname = shift @$pluginoptions;
607 next unless $pluginname eq $plugin;
608 map { $_ = "\"$_\""; } @$pluginoptions;
609 my $options = join (",", @$pluginoptions);
610 return $options;
611 }
612 return "";
613}
614
615&main(@ARGV);
616
Note: See TracBrowser for help on using the repository browser.