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

Last change on this file since 19501 was 19501, checked in by davidb, 15 years ago

Introduction of new extrametafile to track which metadata.xml file a piece of metadata came from

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 18.1 KB
RevLine 
[15074]1#!/usr/bin/perl -w
[8858]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
[10338]10use strict;
11no strict 'subs'; # allow barewords (eg STDERR) as function arguments
12no strict 'refs'; # allow filehandles to be variables and vice versa
[10999]13
14use encodings;
[10338]15use printusage;
16use parse2;
[16968]17use colcfg;
18
[12290]19use FileHandle;
[8858]20
[16790]21use File::Spec;
22use File::Basename;
23
[9121]24my $unicode_list =
25 [ { 'name' => "auto",
[17199]26 'desc' => "{ReadTextFile.input_encoding.auto}" },
[9121]27 { 'name' => "ascii",
[17199]28 'desc' => "{BasePlugin.encoding.ascii}" },
[9121]29 { 'name' => "utf8",
[17199]30 'desc' => "{BasePlugin.encoding.utf8}" },
[9121]31 { 'name' => "unicode",
[17199]32 'desc' => "{BasePlugin.encoding.unicode}" } ];
[8858]33
[10999]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
[9041]44my $arguments =
[10338]45 [
[10470]46 { 'name' => "language",
47 'desc' => "{scripts.language}",
48 'type' => "string",
[10471]49 'reqd' => "no",
50 'hiddengli' => "yes" },
[10338]51 { 'name' => "plugin",
52 'desc' => "{explode.plugin}",
53 'type' => "string",
54 'reqd' => "yes",
55 'hiddengli' => "yes"},
56 { 'name' => "input_encoding",
[9041]57 'desc' => "{explode.encoding}",
[9121]58 'type' => "enum",
[9147]59 'deft' => "auto",
[9121]60 'list' => $unicode_list,
[9147]61 'reqd' => "no" },
[9041]62 { 'name' => "metadata_set",
63 'desc' => "{explode.metadata_set}",
64 'type' => "string",
[11342]65 'reqd' => "no" },
[9147]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"},
[12706]78 { 'name' => "records_per_folder",
79 'desc' => "{explode.records_per_folder}",
80 'type' => "int",
81 'range' => "0,",
82 'deft' => "100",
83 'reqd' => "no" },
[16968]84 { 'name' => "collection",
[17037]85 'desc' => "{explode.collection}",
[16968]86 'type' => "string",
87 'reqd' => "no",
[17037]88 'hiddengli' => "yes"},
[18918]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"},
[10338]99 { 'name' => "verbosity",
100 'desc' => "{import.verbosity}",
101 'type' => "int",
102 'range' => "0,",
103 'deft' => "1",
104 'reqd' => "no",
[18590]105 'modegli' => "3" },
[10338]106 { 'name' => "xml",
107 'desc' => "",
108 'type' => "flag",
109 'reqd' => "no",
110 'hiddengli' => "yes" }
[9041]111 ];
112
113my $options = { 'name' => "explode_metadata_database.pl",
114 'desc' => "{explode.desc}",
115 'args' => $arguments };
[8858]116
[16790]117
118
[8858]119sub main
120{
[11350]121 my ($language, $input_encoding, $metadata_set, $plugin,
[18918]122 $document_field, $document_prefix, $document_suffix, $records_per_folder, $plugin_options, $collection, $use_collection_plugin_options, $verbosity);
[9041]123
[9147]124 my $xml = 0;
[10338]125
126 my $hashParsingResult = {};
127 # parse the options
128 my $intArgLeftinAfterParsing = parse2::parse(\@ARGV,$arguments,$hashParsingResult,"allow_extra_options");
129
[12545]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
[10338]137 foreach my $strVariable (keys %$hashParsingResult)
138 {
139 eval "\$$strVariable = \$hashParsingResult->{\"\$strVariable\"}";
140 }
[10470]141
[9147]142 # If $language has been specified, load the appropriate resource bundle
143 # (Otherwise, the default resource bundle will be loaded automatically)
[10338]144 if ($language && $language =~ /\S/) {
[9147]145 &gsprintf::load_language_specific_resource_bundle($language);
146 }
[8858]147
[9147]148 if ($xml) {
149 &PrintUsage::print_xml_usage($options);
150 print "\n";
151 return;
152 }
153
[16790]154
[12545]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/))
[10470]158 {
159 &PrintUsage::print_txt_usage($options, "{explode.params}");
160 die "\n";
161 }
162
[8858]163 # The metadata database filename is the first value that remains after the options have been parsed out
164 my $filename = $ARGV[0];
[9041]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 }
[16968]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 }
[18918]193 } else {
194 undef $collection;
[16968]195 }
196
[18918]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 }
[8858]207 my $plugobj;
208 require "$plugin.pm";
209
[18918]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/) {
[16968]224 my @options = split(/\s/, $plugin_options);
225 map { $_ = "\"$_\"" unless $_ =~ /^\"/; } @options;
[18918]226 $plugin_options_string= join (",", @options);
227 }
228
229 if ($plugin_options_string eq "") {
230 eval ("\$plugobj = new $plugin()");
[16968]231 die "$@" if $@;
232 } else {
[18918]233 eval ("\$plugobj = new $plugin([], [$plugin_options_string])");
[16968]234 die "$@" if $@;
[18918]235 }
236
[8858]237 # ...and initialize it
[16968]238 $plugobj->init($verbosity, "STDERR", "STDERR");
239
[10338]240 if ($input_encoding eq "auto") {
241 ($language, $input_encoding) = $plugobj->textcat_get_language_encoding ($filename);
[16968]242 }
[12873]243
[8858]244 # Create a directory to store the document files...
[16790]245 my ($exploded_base_dir) = ($filename =~ /(.*)\.[^\.]+$/);
[8858]246
[16790]247 my $orig_base_dir = &File::Basename::dirname($filename);
248
249
[8858]250 my $split_exp = $plugobj->{'split_exp'};
[16790]251 if (defined $split_exp) {
252 # Read in file, and then split and process individual records
[8858]253
[16790]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);
[12706]259
[16790]260 # Split the text into records, using the plugin's split_exp
[12706]261
[16790]262 my @metadata_records = split(/$split_exp/, $text);
[17318]263 my $total_num_records = scalar(@metadata_records);
264 print STDERR "Number of records: $total_num_records\n";
[16790]265
266 # Write the metadata from each record to the metadata.xml file
267 my $record_number = 1;
[16968]268 my $documents_directory;
[16790]269 foreach my $record_text (@metadata_records) {
270
271 # Check if we need to start a new directory for these records
[17318]272 check_need_new_directory($exploded_base_dir,$record_number,
273 $records_per_folder,$total_num_records,
274 \$documents_directory);
[16790]275 # Use the plugin's process function to avoid duplicating code
[18399]276 my $doc_obj = new doc($filename, "nonindexed_doc", $plugobj->get_file_rename_method());
[16790]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
[16968]282 attach_metadata_or_make_nul_doc($document_field, $doc_obj, $record_number,
[16790]283 $documents_directory, $orig_base_dir,
284 $document_prefix, $document_suffix, $metadata_set, $verbosity);
285
286
[17318]287 check_close_directory($record_number,$records_per_folder,$total_num_records);
[16790]288
289 $record_number = $record_number + 1;
[12706]290 }
[16790]291 }
292 else {
[17318]293 # Call metadata_read to set up associated metadata
[12706]294
[16790]295 my $pluginfo = undef;
[17217]296 my $block_hash = {};
[16790]297
298 my $processor = undef;
299 my $maxdocs = undef;
300 my $gli = undef;
301
[17318]302 my $extrametakeys = [];
[16790]303 my $extrametadata = {};
[19501]304 my $extrametafile = {};
[16790]305
[17301]306 $plugobj->metadata_read($pluginfo, "", $filename, $block_hash,
[19501]307 $extrametakeys, $extrametadata, $extrametafile,
308 $processor, $maxdocs, $gli);
[16790]309
[17318]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
[18399]319 my $doc_obj = new doc($filename, "nonindexed_doc", $plugobj->get_file_rename_method());
[17318]320 # all the metadata has been extracted into extrametadata
321 $plugobj->extra_metadata ($doc_obj, $doc_obj->get_top_section(), $extrametadata->{$record});
[16790]322
[17318]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;
[16790]330
[17318]331 }
[16790]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{
[17318]369 my ($exploded_base_dir,$record_number, $records_per_folder,
370 $total_num_records, $documents_dir_ref) = @_;
[16790]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
[17318]377 if ($total_num_records > $records_per_folder) {
[16790]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 my $document_file_full = $document_prefix . $value . $document_suffix;
408
[17318]409 # this either downloads/copies the document, or creates a nul file for it.
[16790]410 $document_file = &obtain_document($document_file_full, $documents_directory, $orig_base_dir, $verbosity);
411 &write_metadata_xml_file_entry(METADATA_XML_FILE, $document_file, $record_metadata, $metadata_set);
[9147]412 }
413 }
[17318]414 }
[16790]415
[17318]416 # Create a dummy .nul file if we haven't obtained a document (or null file) for this record
[16790]417 if (not defined $document_file) {
418
419 if (defined ($record_number)) {
[11705]420 $document_file = sprintf("%8.8d", $record_number) . ".nul";
[9041]421 }
[16790]422 else {
423 $document_file = "doc.nul";
424 }
425 open(DUMMY_FILE, ">$documents_directory/$document_file");
426 close(DUMMY_FILE);
427 &write_metadata_xml_file_entry(METADATA_XML_FILE, $document_file, $record_metadata, $metadata_set);
[8858]428 }
429
430}
431
[16790]432sub close_directory
433{
434 # Finish and close the metadata.xml file
435 print METADATA_XML_FILE "\n</DirectoryMetadata>\n";
436 close(METADATA_XML_FILE);
[8858]437
[16790]438}
439
440
441sub check_close_directory
442{
[17318]443 my ($record_number,$records_per_folder,$total_num_records) = @_;
[16790]444
[17318]445 if (($record_number % $records_per_folder) == 0 || $record_number == $total_num_records) {
[16790]446 # Finish and close the metadata.xml file
447 close_directory();
448 }
449}
450
451
452
[8858]453sub write_metadata_xml_file_entry
454{
455 my $metadata_xml_file = shift(@_);
456 my $file_name = shift(@_);
457 my $record_metadata = shift(@_);
[9041]458 my $meta_prefix = shift(@_);
459
[8858]460 # Make $file_name XML-safe
[12878]461 $file_name =~ s/&/&amp;/g;
[8858]462 $file_name =~ s/</&lt;/g;
463 $file_name =~ s/>/&gt;/g;
464
465 # Convert $file_name into a regular expression that matches it
466 $file_name =~ s/\./\\\./g;
467 $file_name =~ s/\(/\\\(/g;
468 $file_name =~ s/\)/\\\)/g;
469 $file_name =~ s/\{/\\\{/g;
470 $file_name =~ s/\}/\\\}/g;
471 $file_name =~ s/\[/\\\[/g;
472 $file_name =~ s/\]/\\\]/g;
[9119]473
[8858]474 print $metadata_xml_file
475 "\n" .
476 " <FileSet>\n" .
477 " <FileName>$file_name</FileName>\n" .
478 " <Description>\n";
479
480 foreach my $pair (@$record_metadata) {
481 my ($field, $value) = (@$pair);
482
483 # We're only interested in metadata from the database
484 next if ($field eq "lastmodified");
485 next if ($field eq "gsdlsourcefilename");
486 next if ($field eq "gsdldoctype");
487 next if ($field eq "FileFormat");
488
489 # Ignore the ^all metadata, since it will be invalid if the source metadata is changed
490 next if ($field =~ /\^all$/); # ISISPlug specific!
491
[18301]492 # Square brackets in metadata values need to be escaped so they don't confuse Greenstone/GLI
493 $value =~ s/\[/&\#091;/g;
494 $value =~ s/\]/&\#093;/g;
495
[8858]496 # Make $value XML-safe
[11238]497 $value =~ s/&/&amp;/g; # May mess up existing entities!
[8858]498 $value =~ s/</&lt;/g;
499 $value =~ s/>/&gt;/g;
500
[9119]501 # we are not allowed & in xml except in entities.
502 # if there are undefined entities then parsing will also crap out.
503 # should we be checking for them too?
504 # this may not get all possibilities
[11238]505 # $value =~ s/&([^;\s]*(\s|$))/&amp;$1/g;
[9119]506
[17598]507 # do we already have a namespace specified?
508 my $full_field = $field;
509 if ($meta_prefix ne "") {
510 $full_field =~ s/^\w+\.//;
511 $full_field = $meta_prefix.$full_field;
512 }
513
514 print $metadata_xml_file " <Metadata mode=\"accumulate\" name=\"$full_field\">$value</Metadata>\n";
[8858]515 }
516
517 print $metadata_xml_file
518 " </Description>\n" .
519 " </FileSet>\n";
520}
521
[9147]522sub obtain_document
523{
[16790]524 my ($document_file_full,$documents_directory,$orig_base_dir,$verbosity) = @_;
[10338]525
526 print STDERR "Obtaining document file $document_file_full...\n" if ($verbosity > 1);
[8858]527
[9147]528 my $document_file_name;
529 my $local_document_file;
530
531 # Document specified is on the web
[16790]532 if ($document_file_full =~ /^https?:/ || $document_file_full =~ /^ftp:/) {
[9147]533 $document_file_full =~ /([^\/]+)$/;
534 $document_file_name = $1;
535 $local_document_file = &util::filename_cat($documents_directory, $document_file_name);
536
537 my $wget_options = "--quiet";
[10338]538 $wget_options = "--verbose" if ($verbosity > 2);
[9147]539 $wget_options .= " --timestamping"; # Only re-download files if they're newer
[13166]540 my $wget_command = "wget $wget_options \"$document_file_full\" --output-document \"$local_document_file\"";
541 `$wget_command`;
[11348]542
543 # Check the document was obtained successfully
544 if (!-e $local_document_file) {
545 print STDERR "WARNING: Could not obtain document file $document_file_full\n";
546 }
[9147]547 }
548 # Document specified is on the disk
549 else {
550 my $dir_sep = &util::get_os_dirsep();
[16790]551
552 $document_file_full =~ m/(.+$dir_sep)?(.*)$/;
[9147]553 $document_file_name = $2;
[16790]554
555
556 my $is_absolute = File::Spec->file_name_is_absolute($document_file_full);
557 print STDERR "doc file full = $document_file_full\n";
558
559 if (!$is_absolute) {
560 $document_file_full
561 = &util::filename_cat($orig_base_dir,$document_file_full);
562 }
563
[9147]564 $local_document_file = &util::filename_cat($documents_directory, $document_file_name);
565
[17318]566 if (-e $document_file_full) {
567 &util::cp($document_file_full, $documents_directory);
568 }
569
[16790]570 # Check the document was obtained successfully
571 if (!-e $local_document_file) {
572 print STDERR "WARNING: Could not obtain document file $document_file_full\n";
573 }
574 else {
[17563]575 $orig_base_dir =~ s/\\/\\\\/g; # escape windows style slashes for the regex below
[16790]576 if ($document_file_full =~ m/^$orig_base_dir.*/) {
577 # file local to metadata record
578 # => copy has been made successfully, so remove original
579 &util::rm($document_file_full);
[11348]580 }
581 }
[9147]582 }
583
[11348]584 # If the document wasn't obtained successfully, create a .nul file for it
[9147]585 if (!-e $local_document_file) {
[11302]586 $document_file_name .= ".nul";
587 open(NULL_FILE, ">$local_document_file.nul");
588 close(NULL_FILE);
[17318]589 print STDERR "Creating a nul document $document_file_name\n";
[9147]590 }
591
592 return $document_file_name;
593}
594
[18918]595sub get_plugin_options {
596 my ($collectcfg, $plugin) = @_;
597
598 my $plugin_list = $collectcfg ->{'plugin'};
599
600 foreach my $pluginoptions (@$plugin_list) {
601 my $pluginname = shift @$pluginoptions;
602 next unless $pluginname eq $plugin;
603 map { $_ = "\"$_\""; } @$pluginoptions;
604 my $options = join (",", @$pluginoptions);
605 return $options;
606 }
607 return "";
608}
609
[8858]610&main(@ARGV);
[16790]611
Note: See TracBrowser for help on using the repository browser.