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

Last change on this file since 18918 was 18918, checked in by kjdon, 15 years ago

added -use_collection_plugin_options option. if set, will read in the collect.cfg file for specified collection, and use teh plugin options when loading the plugin for exploding

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 18.0 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
305
306 $plugobj->metadata_read($pluginfo, "", $filename, $block_hash,
307 $extrametakeys, $extrametadata, $processor, $maxdocs, $gli);
308
309 my $total_num_records = scalar (@$extrametakeys);
310 print STDERR "Number of records: $total_num_records\n";
311 my $record_number = 1;
312 my $documents_directory;
313 foreach my $record (@$extrametakeys) {
314 &check_need_new_directory($exploded_base_dir, $record_number, $records_per_folder, $total_num_records, \$documents_directory);
315
316 # Attach metadata to object
317 # => use the plugin's extra_metadata function to avoid duplicating code
318 my $doc_obj = new doc($filename, "nonindexed_doc", $plugobj->get_file_rename_method());
319 # all the metadata has been extracted into extrametadata
320 $plugobj->extra_metadata ($doc_obj, $doc_obj->get_top_section(), $extrametadata->{$record});
321
322 # Try to get a doc to attach the metadata to
323 # If no match found, create a dummy .nul file
324 attach_metadata_or_make_nul_doc($document_field, $doc_obj, $record_number, $documents_directory, $orig_base_dir, $document_prefix, $document_suffix, $metadata_set, $verbosity);
325
326 &check_close_directory($record_number,$records_per_folder,$total_num_records);
327
328 $record_number = $record_number + 1;
329
330 }
331 }
332
333 # Explode means just that: the original file is deleted
334 &util::rm($filename);
335 $plugobj->clean_up_after_exploding();
336
337}
338
339
340sub need_new_directory
341{
342 my ($exploded_base_dir) = @_;
343
344 my $documents_directory = $exploded_base_dir;
345
346 if (-d $documents_directory) {
347 die "Error: document directory $documents_directory already exists (bailing).\n";
348 }
349 &util::mk_dir($documents_directory);
350
351 my $documents_metadata_xml_file = &util::filename_cat($documents_directory, "metadata.xml");
352 if (-e $documents_metadata_xml_file) {
353 die "Error: documents metadata.xml file $documents_metadata_xml_file already exists (bailing).\n";
354 }
355
356 # Start the metadata.xml file
357 open(METADATA_XML_FILE, ">$documents_metadata_xml_file");
358 print METADATA_XML_FILE
359 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n" .
360 "<!DOCTYPE DirectoryMetadata SYSTEM \"http://greenstone.org/dtd/DirectoryMetadata/1.0/DirectoryMetadata.dtd\">\n" .
361 "<DirectoryMetadata>\n";
362
363 return $documents_directory;
364}
365
366sub check_need_new_directory
367{
368 my ($exploded_base_dir,$record_number, $records_per_folder,
369 $total_num_records, $documents_dir_ref) = @_;
370
371
372 # Check if we need to start a new directory for these records
373 if (($record_number % $records_per_folder) == 1) {
374 my $documents_directory = $exploded_base_dir;
375
376 if ($total_num_records > $records_per_folder) {
377 $documents_directory .= "." . sprintf("%8.8d", $record_number);
378 }
379
380 $$documents_dir_ref = need_new_directory($documents_directory);
381 }
382}
383
384
385
386
387
388sub attach_metadata_or_make_nul_doc
389{
390 my ($document_field, $doc_obj, $record_number,
391 $documents_directory, $orig_base_dir,
392 $document_prefix, $document_suffix, $metadata_set, $verbosity) = @_;
393
394 my $record_metadata = $doc_obj->get_all_metadata($doc_obj->get_top_section());
395 my $document_file;
396
397 # try to get a doc to attach the metadata to
398 if (defined $document_field) {
399 foreach my $pair (@$record_metadata) {
400 my ($field, $value) = (@$pair);
401
402 $value =~ s/\\\\/\\/g;
403
404 # Does this metadata element specify a document to obtain?
405 if ($field eq $document_field) {
406 my $document_file_full = $document_prefix . $value . $document_suffix;
407
408 # this either downloads/copies the document, or creates a nul file for it.
409 $document_file = &obtain_document($document_file_full, $documents_directory, $orig_base_dir, $verbosity);
410 &write_metadata_xml_file_entry(METADATA_XML_FILE, $document_file, $record_metadata, $metadata_set);
411 }
412 }
413 }
414
415 # Create a dummy .nul file if we haven't obtained a document (or null file) for this record
416 if (not defined $document_file) {
417
418 if (defined ($record_number)) {
419 $document_file = sprintf("%8.8d", $record_number) . ".nul";
420 }
421 else {
422 $document_file = "doc.nul";
423 }
424 open(DUMMY_FILE, ">$documents_directory/$document_file");
425 close(DUMMY_FILE);
426 &write_metadata_xml_file_entry(METADATA_XML_FILE, $document_file, $record_metadata, $metadata_set);
427 }
428
429}
430
431sub close_directory
432{
433 # Finish and close the metadata.xml file
434 print METADATA_XML_FILE "\n</DirectoryMetadata>\n";
435 close(METADATA_XML_FILE);
436
437}
438
439
440sub check_close_directory
441{
442 my ($record_number,$records_per_folder,$total_num_records) = @_;
443
444 if (($record_number % $records_per_folder) == 0 || $record_number == $total_num_records) {
445 # Finish and close the metadata.xml file
446 close_directory();
447 }
448}
449
450
451
452sub write_metadata_xml_file_entry
453{
454 my $metadata_xml_file = shift(@_);
455 my $file_name = shift(@_);
456 my $record_metadata = shift(@_);
457 my $meta_prefix = shift(@_);
458
459 # Make $file_name XML-safe
460 $file_name =~ s/&/&amp;/g;
461 $file_name =~ s/</&lt;/g;
462 $file_name =~ s/>/&gt;/g;
463
464 # Convert $file_name into a regular expression that matches it
465 $file_name =~ s/\./\\\./g;
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
473 print $metadata_xml_file
474 "\n" .
475 " <FileSet>\n" .
476 " <FileName>$file_name</FileName>\n" .
477 " <Description>\n";
478
479 foreach my $pair (@$record_metadata) {
480 my ($field, $value) = (@$pair);
481
482 # We're only interested in metadata from the database
483 next if ($field eq "lastmodified");
484 next if ($field eq "gsdlsourcefilename");
485 next if ($field eq "gsdldoctype");
486 next if ($field eq "FileFormat");
487
488 # Ignore the ^all metadata, since it will be invalid if the source metadata is changed
489 next if ($field =~ /\^all$/); # ISISPlug specific!
490
491 # Square brackets in metadata values need to be escaped so they don't confuse Greenstone/GLI
492 $value =~ s/\[/&\#091;/g;
493 $value =~ s/\]/&\#093;/g;
494
495 # Make $value XML-safe
496 $value =~ s/&/&amp;/g; # May mess up existing entities!
497 $value =~ s/</&lt;/g;
498 $value =~ s/>/&gt;/g;
499
500 # we are not allowed & in xml except in entities.
501 # if there are undefined entities then parsing will also crap out.
502 # should we be checking for them too?
503 # this may not get all possibilities
504 # $value =~ s/&([^;\s]*(\s|$))/&amp;$1/g;
505
506 # do we already have a namespace specified?
507 my $full_field = $field;
508 if ($meta_prefix ne "") {
509 $full_field =~ s/^\w+\.//;
510 $full_field = $meta_prefix.$full_field;
511 }
512
513 print $metadata_xml_file " <Metadata mode=\"accumulate\" name=\"$full_field\">$value</Metadata>\n";
514 }
515
516 print $metadata_xml_file
517 " </Description>\n" .
518 " </FileSet>\n";
519}
520
521sub obtain_document
522{
523 my ($document_file_full,$documents_directory,$orig_base_dir,$verbosity) = @_;
524
525 print STDERR "Obtaining document file $document_file_full...\n" if ($verbosity > 1);
526
527 my $document_file_name;
528 my $local_document_file;
529
530 # Document specified is on the web
531 if ($document_file_full =~ /^https?:/ || $document_file_full =~ /^ftp:/) {
532 $document_file_full =~ /([^\/]+)$/;
533 $document_file_name = $1;
534 $local_document_file = &util::filename_cat($documents_directory, $document_file_name);
535
536 my $wget_options = "--quiet";
537 $wget_options = "--verbose" if ($verbosity > 2);
538 $wget_options .= " --timestamping"; # Only re-download files if they're newer
539 my $wget_command = "wget $wget_options \"$document_file_full\" --output-document \"$local_document_file\"";
540 `$wget_command`;
541
542 # Check the document was obtained successfully
543 if (!-e $local_document_file) {
544 print STDERR "WARNING: Could not obtain document file $document_file_full\n";
545 }
546 }
547 # Document specified is on the disk
548 else {
549 my $dir_sep = &util::get_os_dirsep();
550
551 $document_file_full =~ m/(.+$dir_sep)?(.*)$/;
552 $document_file_name = $2;
553
554
555 my $is_absolute = File::Spec->file_name_is_absolute($document_file_full);
556 print STDERR "doc file full = $document_file_full\n";
557
558 if (!$is_absolute) {
559 $document_file_full
560 = &util::filename_cat($orig_base_dir,$document_file_full);
561 }
562
563 $local_document_file = &util::filename_cat($documents_directory, $document_file_name);
564
565 if (-e $document_file_full) {
566 &util::cp($document_file_full, $documents_directory);
567 }
568
569 # Check the document was obtained successfully
570 if (!-e $local_document_file) {
571 print STDERR "WARNING: Could not obtain document file $document_file_full\n";
572 }
573 else {
574 $orig_base_dir =~ s/\\/\\\\/g; # escape windows style slashes for the regex below
575 if ($document_file_full =~ m/^$orig_base_dir.*/) {
576 # file local to metadata record
577 # => copy has been made successfully, so remove original
578 &util::rm($document_file_full);
579 }
580 }
581 }
582
583 # If the document wasn't obtained successfully, create a .nul file for it
584 if (!-e $local_document_file) {
585 $document_file_name .= ".nul";
586 open(NULL_FILE, ">$local_document_file.nul");
587 close(NULL_FILE);
588 print STDERR "Creating a nul document $document_file_name\n";
589 }
590
591 return $document_file_name;
592}
593
594sub get_plugin_options {
595 my ($collectcfg, $plugin) = @_;
596
597 my $plugin_list = $collectcfg ->{'plugin'};
598
599 foreach my $pluginoptions (@$plugin_list) {
600 my $pluginname = shift @$pluginoptions;
601 next unless $pluginname eq $plugin;
602 map { $_ = "\"$_\""; } @$pluginoptions;
603 my $options = join (",", @$pluginoptions);
604 return $options;
605 }
606 return "";
607}
608
609&main(@ARGV);
610
Note: See TracBrowser for help on using the repository browser.