source: gsdl/trunk/perllib/plugins/DirectoryPlugin.pm@ 16391

Last change on this file since 16391 was 16391, checked in by kjdon, 16 years ago

global block pass: this plugin now does the blocking - when reading through a directory, it checks each filename agains the block_hash to see if its been recorded or not. If it has, then its blocked and not passed on to the plugin pipeline.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 17.7 KB
RevLine 
[537]1###########################################################################
2#
[15870]3# DirectoryPlugin.pm --
[537]4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 1999 New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
25
[15870]26# DirectoryPlugin is a plugin which recurses through directories processing
27# each file it finds - which basically means passing it down the plugin
28# pipeline
[4]29
[15870]30package DirectoryPlugin;
[2228]31
[15870]32use AbstractPlugin;
[4]33use plugin;
[136]34use util;
[13188]35use metadatautil;
[4]36
[8737]37use File::Basename;
[10254]38use strict;
39no strict 'refs';
[15870]40no strict 'subs';
41
[13545]42use Encode;
[4]43
44BEGIN {
[15870]45 @DirectoryPlugin::ISA = ('AbstractPlugin');
[4]46}
47
[4744]48my $arguments =
49 [ { 'name' => "block_exp",
[15870]50 'desc' => "{BasePlugin.block_exp}",
[6408]51 'type' => "regexp",
[4744]52 'deft' => &get_default_block_exp(),
53 'reqd' => "no" },
[13417]54 # this option has been deprecated. leave it here for now so we can warn people not to use it
[4744]55 { 'name' => "use_metadata_files",
[15870]56 'desc' => "{DirectoryPlugin.use_metadata_files}",
[4744]57 'type' => "flag",
[13188]58 'reqd' => "no",
59 'hiddengli' => "yes" },
[7686]60 { 'name' => "recheck_directories",
[15870]61 'desc' => "{DirectoryPlugin.recheck_directories}",
[7686]62 'type' => "flag",
[4744]63 'reqd' => "no" } ];
[13188]64
[15870]65my $options = { 'name' => "DirectoryPlugin",
66 'desc' => "{DirectoryPlugin.desc}",
[6408]67 'abstract' => "no",
[4744]68 'inherits' => "yes",
69 'args' => $arguments };
[3540]70
[4]71sub new {
[10218]72 my ($class) = shift (@_);
73 my ($pluginlist,$inputargs,$hashArgOptLists) = @_;
74 push(@$pluginlist, $class);
[3540]75
[15870]76 push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});
77 push(@{$hashArgOptLists->{"OptList"}},$options);
[10218]78
[15870]79 my $self = new AbstractPlugin($pluginlist, $inputargs, $hashArgOptLists);
[13188]80
81 if ($self->{'info_only'}) {
82 # don't worry about any options or initialisations etc
83 return bless $self, $class;
84 }
85
86 # we have left this option in so we can warn people who are still using it
[2813]87 if ($self->{'use_metadata_files'}) {
[15870]88 die "ERROR: DirectoryPlugin -use_metadata_files option has been deprecated. Please remove the option and add MetadataXMLPlug to your plugin list instead!\n";
[2813]89 }
[16391]90
[8737]91 $self->{'subdir_extrametakeys'} = {};
92
[4]93 return bless $self, $class;
94}
95
[10156]96sub begin {
97 my $self = shift (@_);
98 my ($pluginfo, $base_dir, $processor, $maxdocs) = @_;
99
100 my $proc_package_name = ref $processor;
101
[12969]102 if ($proc_package_name !~ /buildproc$/ && $self->{'incremental'} == 1) {
[10156]103
[12969]104 # Only lookup timestamp info for import.pl, and only if incremental is set
[10156]105
106 my $output_dir = $processor->getoutputdir();
107 my $archives_inf = &util::filename_cat($output_dir,"archives.inf");
108
109 if ( -e $archives_inf ) {
110 $self->{'inf_timestamp'} = -M $archives_inf;
111 }
112 }
113
[15870]114 #$self->SUPER::begin($pluginfo, $base_dir, $processor, $maxdocs);
[10156]115}
116
[15870]117sub end {
[10156]118
[15870]119}
120
121sub deinit {
122
123}
[4]124# return 1 if this class might recurse using $pluginfo
125sub is_recursive {
126 my $self = shift (@_);
[2813]127
[4]128 return 1;
129}
130
[2228]131sub get_default_block_exp {
132 my $self = shift (@_);
[2813]133
[14180]134 return '(CVS|\.svn)';
[2228]135}
136
[16391]137sub check_directory_path {
[2228]138
[16391]139 my $self = shift(@_);
140 my ($dirname) = @_;
[2813]141
[2228]142 return undef unless (-d $dirname);
[16391]143
[2228]144 return 0 if ($self->{'block_exp'} ne "" && $dirname =~ /$self->{'block_exp'}/);
[7932]145
[16391]146 my $outhandle = $self->{'outhandle'};
147
[2228]148 # check to make sure we're not reading the archives or index directory
149 my $gsdlhome = quotemeta($ENV{'GSDLHOME'});
[2813]150 if ($dirname =~ m/^$gsdlhome\/.*?\/import.*?\/(archives|index)$/) {
[15870]151 print $outhandle "DirectoryPlugin: $dirname appears to be a reference to a Greenstone collection, skipping.\n";
[2228]152 return 0;
[1755]153 }
[2813]154
[1755]155 # check to see we haven't got a cyclic path...
156 if ($dirname =~ m%(/.*){,41}%) {
[15870]157 print $outhandle "DirectoryPlugin: $dirname is 40 directories deep, is this a recursive path? if not increase constant in DirectoryPlugin.pm.\n";
[2228]158 return 0;
[1755]159 }
[2813]160
[1755]161 # check to see we haven't got a cyclic path...
162 if ($dirname =~ m%.*?import/(.+?)/import/\1.*%) {
[15870]163 print $outhandle "DirectoryPlugin: $dirname appears to be in a recursive loop...\n";
[2228]164 return 0;
[1755]165 }
[16391]166
167 return 1;
168}
169
170# this may be called more than once
171sub sort_out_associated_files {
172
173 my $self = shift (@_);
174 my ($block_hash) = @_;
175 if (!scalar (keys %{$block_hash->{'shared_fileroot'}})) {
176 return;
177 }
178
179 $self->{'assocfile_info'} = {} unless defined $self->{'assocfile_info'};
180 my $metadata = $self->{'assocfile_info'};
181 foreach my $prefix (keys %{$block_hash->{'shared_fileroot'}}) {
182 my $record = $block_hash->{'shared_fileroot'}->{$prefix};
183
184 my $tie_to = $record->{'tie_to'};
185 my $exts = $record->{'exts'};
186
187 if ((defined $tie_to) && (scalar (keys %$exts) > 0)) {
188 # set up fileblocks and assocfile_tobe
189 my $base_file = "$prefix$tie_to";
190 $metadata->{$base_file} = {} unless defined $metadata->{$base_file};
191 my $base_file_metadata = $metadata->{$base_file};
192
193 $base_file_metadata->{'gsdlassocfile_tobe'} = [] unless defined $base_file_metadata->{'gsdlassocfile_tobe'};
194 my $assoc_tobe = $base_file_metadata->{'gsdlassocfile_tobe'};
195 foreach my $e (keys %$exts) {
196 # block the file
197 $block_hash->{'file_blocks'}->{"$prefix$e"} = 1;
198 # set up as an associatd file
199 print STDERR " $self->{'plugin_type'}: Associating $prefix$e with $tie_to version\n";
200 my $mime_type = ""; # let system auto detect this
201 push(@$assoc_tobe,"$prefix$e:$mime_type:");
202
203 }
204 }
205 } # foreach record
206
207 $block_hash->{'shared_fileroot'} = undef;
208 $block_hash->{'shared_fileroot'} = {};
209
210}
211
212
213# do block exp OR special blocking ???
214
215sub file_is_blocked {
216 my $self = shift (@_);
217 my ($block_hash, $filename_full_path) = @_;
218
219 if (defined $block_hash->{'file_blocks'}->{$filename_full_path}) {
220 $self->{'num_blocked'} ++;
221 return 1;
222 }
223 # check Directory plugin's own block_exp
224 if ($self->{'block_exp'} ne "" && $filename_full_path =~ /$self->{'block_exp'}/) {
225 $self->{'num_blocked'} ++;
226 return 1; # blocked
227 }
228 return 0;
229}
230
231
232
233sub file_block_read {
234 my $self = shift (@_);
235 my ($pluginfo, $base_dir, $file, $block_hash, $metadata, $gli) = @_;
236
237 my $outhandle = $self->{'outhandle'};
238 my $verbosity = $self->{'verbosity'};
[2813]239
[16391]240 # Calculate the directory name and ensure it is a directory and
241 # that it is not explicitly blocked.
242 my $dirname = $file;
243 $dirname = &util::filename_cat ($base_dir, $file) if $base_dir =~ /\w/;
244
245 my $directory_ok = $self->check_directory_path($dirname);
246 return $directory_ok unless (defined $directory_ok && $directory_ok == 1);
247
248 $block_hash->{'file_blocks'} = {} unless defined $block_hash->{'file_blocks'};
249 $block_hash->{'shared_fileroot'} = {} unless defined $block_hash->{'shared_fileroot'};
250
251 # Recur over directory contents.
252 my (@dir, $subfile);
253 #my $count = 0;
254
255 print $outhandle "DirectoryPlugin block: getting directory $dirname\n" if ($verbosity > 2);
256
257 # find all the files in the directory
258 if (!opendir (DIR, $dirname)) {
259 if ($gli) {
260 print STDERR "<ProcessingError n='$file' r='Could not read directory $dirname'>\n";
261 }
262 print $outhandle "DirectoryPlugin: WARNING - couldn't read directory $dirname\n";
263 return -1; # error in processing
264 }
265 @dir = readdir (DIR);
266 closedir (DIR);
267
268 for (my $i = 0; $i < scalar(@dir); $i++) {
269 my $subfile = $dir[$i];
270 my $this_file_base_dir = $base_dir;
271 next if ($subfile =~ m/^\.\.?$/);
272
273 # Recursively read each $subfile
274 print $outhandle "DirectoryPlugin block recurring: $subfile\n" if ($verbosity > 2);
275
276 #$count += &plugin::file_block_read ($pluginfo, $this_file_base_dir,
277 &plugin::file_block_read ($pluginfo, $this_file_base_dir,
278 &util::filename_cat($file, $subfile),
279 $block_hash, $metadata, $gli);
280
281 }
282 $self->sort_out_associated_files($block_hash);
283 #return $count;
284
285}
286# return number of files processed, undef if can't process
287# Note that $base_dir might be "" and that $file might
288# include directories
289
290# This function passes around metadata hash structures. Metadata hash
291# structures are hashes that map from a (scalar) key (the metadata element
292# name) to either a scalar metadata value or a reference to an array of
293# such values.
294
295sub read {
296 my $self = shift (@_);
297 my ($pluginfo, $base_dir, $file, $block_hash, $in_metadata, $processor, $maxdocs, $total_count, $gli) = @_;
298
299 my $outhandle = $self->{'outhandle'};
300 my $verbosity = $self->{'verbosity'};
301
302 # Calculate the directory name and ensure it is a directory and
303 # that it is not explicitly blocked.
304 my $dirname;
305 if ($file eq "") {
306 $dirname = $base_dir;
307 } else {
308 $dirname = $file;
309 $dirname = &util::filename_cat ($base_dir, $file) if $base_dir =~ /\w/;
310 }
311
312 my $directory_ok = $self->check_directory_path($dirname);
313 return $directory_ok unless (defined $directory_ok && $directory_ok == 1);
314
[2228]315 if (($verbosity > 2) && ((scalar keys %$in_metadata) > 0)) {
[15870]316 print $outhandle "DirectoryPlugin: metadata passed in: ",
[2813]317 join(", ", keys %$in_metadata), "\n";
[2228]318 }
[2813]319
[16391]320
[2228]321 # Recur over directory contents.
322 my (@dir, $subfile);
323 my $count = 0;
[6332]324
[16391]325 print $outhandle "DirectoryPlugin read: getting directory $dirname\n" if ($verbosity > 2);
[2813]326
[2228]327 # find all the files in the directory
328 if (!opendir (DIR, $dirname)) {
[9584]329 if ($gli) {
330 print STDERR "<ProcessingError n='$file' r='Could not read directory $dirname'>\n";
331 }
[15870]332 print $outhandle "DirectoryPlugin: WARNING - couldn't read directory $dirname\n";
[7362]333 return -1; # error in processing
[2228]334 }
335 @dir = readdir (DIR);
336 closedir (DIR);
[7686]337
338 # Re-order the files in the list so any directories ending with .all are moved to the end
[8716]339 for (my $i = scalar(@dir) - 1; $i >= 0; $i--) {
[7688]340 if (-d &util::filename_cat($dirname, $dir[$i]) && $dir[$i] =~ /\.all$/) {
[7686]341 push(@dir, splice(@dir, $i, 1));
342 }
343 }
344
[13188]345 # setup the metadata structures. we do a metadata_read pass to see if there is any additional metadata, then pass it to read
346
[2228]347 my $additionalmetadata = 0; # is there extra metadata available?
348 my %extrametadata; # maps from filespec to extra metadata keys
349 my @extrametakeys; # keys of %extrametadata in order read
[8512]350
[16391]351
[11919]352 my $os_dirsep = &util::get_os_dirsep();
[8737]353 my $dirsep = &util::get_dirsep();
[11919]354 my $base_dir_regexp = $base_dir;
355 $base_dir_regexp =~ s/\//$os_dirsep/g;
[8737]356 my $local_dirname = $dirname;
[11919]357 $local_dirname =~ s/^$base_dir_regexp($os_dirsep)//;
[8737]358 $local_dirname .= $dirsep;
359
360 if (defined $self->{'subdir_extrametakeys'}->{$local_dirname}) {
361 my $extrakeys = $self->{'subdir_extrametakeys'}->{$local_dirname};
362 foreach my $ek (@$extrakeys) {
363 my $extrakeys_re = $ek->{'re'};
364 my $extrakeys_md = $ek->{'md'};
365 push(@extrametakeys,$extrakeys_re);
366 $extrametadata{$extrakeys_re} = $extrakeys_md;
367 }
368 delete($self->{'subdir_extrametakeys'}->{$local_dirname});
369 }
[8512]370
[9145]371 # apply metadata pass for each of the files in the directory
[2228]372 my $out_metadata;
[7686]373 my $num_files = scalar(@dir);
[8512]374 for (my $i = 0; $i < scalar(@dir); $i++) {
375 my $subfile = $dir[$i];
376 my $this_file_base_dir = $base_dir;
377 last if ($maxdocs != -1 && $count >= $maxdocs);
[9145]378 next if ($subfile =~ m/^\.\.?$/);
[16391]379 my $file_subfile = &util::filename_cat($file, $subfile);
380 my $full_filename = &util::filename_cat($this_file_base_dir, $file_subfile);
381 if ($self->file_is_blocked($block_hash,$full_filename)) {
382 print STDERR "DirectoryPlugin: file $full_filename was blocked for metadata_read\n" if ($verbosity > 2);
383 next;
384 }
385
[8512]386 # Recursively read each $subfile
[15870]387 print $outhandle "DirectoryPlugin metadata recurring: $subfile\n" if ($verbosity > 2);
[8512]388
389 $count += &plugin::metadata_read ($pluginfo, $this_file_base_dir,
[16391]390 $file_subfile,$block_hash,
[8512]391 $out_metadata, \@extrametakeys, \%extrametadata,
392 $processor, $maxdocs, $gli);
393 $additionalmetadata = 1;
394 }
[16391]395
[8737]396 # filter out any extrametakeys that mention subdirectories and store
397 # for later use (i.e. when that sub-directory is being processed)
398
399 foreach my $ek (@extrametakeys) {
400 my ($subdir_re,$extrakey_dir) = &File::Basename::fileparse($ek);
401 $extrakey_dir =~ s/\\\./\./g; # remove RE syntax
402
[9122]403 my $dirsep_re = &util::get_re_dirsep();
[15005]404
405 my $ek_non_re = $ek;
406 $ek_non_re =~ s/\\\./\./g; # remove RE syntax
407
408 if ($ek_non_re =~ m/$dirsep_re/) { # specifies at least one directory
[8737]409 my $md = $extrametadata{$ek};
410
411 my $subdir_extrametakeys = $self->{'subdir_extrametakeys'};
412
413 my $subdir_rec = { 're' => $subdir_re, 'md' => $md };
[15005]414
[8737]415 push(@{$subdir_extrametakeys->{$extrakey_dir}},$subdir_rec);
416 }
417 }
[8512]418
419 # import each of the files in the directory
420 $count=0;
[7686]421 for (my $i = 0; $i <= scalar(@dir); $i++) {
422 # When every file in the directory has been done, pause for a moment (figuratively!)
423 # If the -recheck_directories argument hasn't been provided, stop now (default)
424 # Otherwise, re-read the contents of the directory to check for new files
425 # Any new files are added to the @dir list and are processed as normal
426 # This is necessary when documents to be indexed are specified in bibliographic DBs
427 # These files are copied/downloaded and stored in a new folder at import time
428 if ($i == $num_files) {
429 last unless $self->{'recheck_directories'};
430
431 # Re-read the files in the directory to see if there are any new files
432 last if (!opendir (DIR, $dirname));
433 my @dirnow = readdir (DIR);
434 closedir (DIR);
435
436 # We're only interested if there are more files than there were before
437 last if (scalar(@dirnow) <= scalar(@dir));
438
439 # Any new files are added to the end of @dir to get processed by the loop
[8716]440 my $j;
[7686]441 foreach my $subfilenow (@dirnow) {
442 for ($j = 0; $j < $num_files; $j++) {
443 last if ($subfilenow eq $dir[$j]);
444 }
445 if ($j == $num_files) {
446 # New file
447 push(@dir, $subfilenow);
448 }
449 }
450 # When the new files have been processed, check again
451 $num_files = scalar(@dir);
452 }
453
454 my $subfile = $dir[$i];
[7932]455 my $this_file_base_dir = $base_dir;
[9853]456 last if ($maxdocs != -1 && ($count + $total_count) >= $maxdocs);
[2228]457 next if ($subfile =~ /^\.\.?$/);
[3108]458
[16391]459 my $file_subfile = &util::filename_cat($file, $subfile);
460 my $full_filename
461 = &util::filename_cat($this_file_base_dir,$file_subfile);
462
463 if ($self->file_is_blocked($block_hash,$full_filename)) {
464 print STDERR "DirectoryPlugin: file $full_filename was blocked for read\n" if ($verbosity > 2);
465 next;
466 }
467
[7932]468 # Follow Windows shortcuts
469 if ($subfile =~ /(?i)\.lnk$/ && $ENV{'GSDLOS'} =~ /^windows$/i) {
470 require Win32::Shortcut;
471 my $shortcut = new Win32::Shortcut(&util::filename_cat($dirname, $subfile));
472 if ($shortcut) {
473 # The file to be processed is now the target of the shortcut
474 $this_file_base_dir = "";
475 $file = "";
476 $subfile = $shortcut->Path;
477 }
478 }
479
[3108]480 # check for a symlink pointing back to a leading directory
481 if (-d "$dirname/$subfile" && -l "$dirname/$subfile") {
482 # readlink gives a "fatal error" on systems that don't implement
483 # symlinks. This assumes the the -l test above would fail on those.
484 my $linkdest=readlink "$dirname/$subfile";
485 if (!defined ($linkdest)) {
486 # system error - file not found?
[15870]487 warn "DirectoryPlugin: symlink problem - $!";
[3108]488 } else {
489 # see if link points to current or a parent directory
490 if ($linkdest =~ m@^[\./\\]+$@ ||
491 index($dirname, $linkdest) != -1) {
[15870]492 warn "DirectoryPlugin: Ignoring recursive symlink ($dirname/$subfile -> $linkdest)\n";
[3108]493 next;
494 ;
495 }
496 }
497 }
498
[15870]499 print $outhandle "DirectoryPlugin: preparing metadata for $subfile\n" if ($verbosity > 2);
[317]500
[2228]501 # Make a copy of $in_metadata to pass to $subfile
502 $out_metadata = {};
[13188]503 &metadatautil::combine_metadata_structures($out_metadata, $in_metadata);
[317]504
[16391]505 # check the assocfile_info
506 if (defined $self->{'assocfile_info'}->{$full_filename}) {
507 &metadatautil::combine_metadata_structures($out_metadata, $self->{'assocfile_info'}->{$full_filename});
508 }
[13545]509 ## encode the filename as perl5 doesn't handle unicode filenames
510 my $tmpfile = Encode::encode_utf8($subfile);
511
[2228]512 # Next add metadata read in XML files (if it is supplied)
513 if ($additionalmetadata == 1) {
[10218]514
[2228]515 my ($filespec, $mdref);
516 foreach $filespec (@extrametakeys) {
[13545]517 ## use the utf8 encoded filename to do the filename comparison
518 if ($tmpfile =~ /^$filespec$/) {
[2228]519 print $outhandle "File \"$subfile\" matches filespec \"$filespec\"\n"
520 if ($verbosity > 2);
521 $mdref = $extrametadata{$filespec};
[13188]522 &metadatautil::combine_metadata_structures($out_metadata, $mdref);
[2228]523 }
[4]524 }
525 }
[10156]526
527
528 if (defined $self->{'inf_timestamp'}) {
529 my $inf_timestamp = $self->{'inf_timestamp'};
530
[16391]531 if (! -d $full_filename) {
532 my $filename_timestamp = -M $full_filename;
[10156]533 if ($filename_timestamp > $inf_timestamp) {
534 # filename has been around for longer than inf
535##### print $outhandle "**** Skipping $subfile\n";
536 next;
537 }
538 }
539 }
540
[2228]541 # Recursively read each $subfile
[15870]542 print $outhandle "DirectoryPlugin recurring: $subfile\n" if ($verbosity > 2);
[8512]543
544 $count += &plugin::read ($pluginfo, $this_file_base_dir,
[16391]545 $file_subfile, $block_hash,
[9853]546 $out_metadata, $processor, $maxdocs, ($total_count + $count), $gli);
[4]547 }
[7686]548
[8512]549 return $count;
[2228]550}
[4]551
5521;
Note: See TracBrowser for help on using the repository browser.