source: main/trunk/greenstone2/perllib/plugin.pm@ 21560

Last change on this file since 21560 was 21554, checked in by mdewsnip, 14 years ago

Changed calls to GDBMUtils::gdbmRecordToHash() to dbutil::read_infodb_entry() + dbutil::convert_infodb_string_to_hash(). Part of removing GDBMUtils.pm and making the code less GDBM-specific.

  • Property svn:keywords set to Author Date Id Revision
File size: 13.7 KB
RevLine 
[537]1###########################################################################
2#
3# plugin.pm -- functions to handle using plugins
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###########################################################################
[4]25
26package plugin;
27
[21307]28use inexport;
29
[7829]30use strict; # to pick up typos and undeclared variables...
31no strict 'refs'; # ...but allow filehandles to be variables and vice versa
[10579]32no strict 'subs';
[7829]33
[134]34require util;
[7829]35use gsprintf 'gsprintf';
[4]36
[15873]37# mapping from old plugin names to new ones for backwards compatibility
[17032]38# can remove at sometime in future when we no longer want to support old xxPlug names in the config file
[15873]39my $plugin_name_map = {
[17746]40 'GAPlug' => 'GreenstoneXMLPlugin',
[15873]41 'ArcPlug' => 'ArchivesInfPlugin',
42 'RecPlug' => 'DirectoryPlugin',
43 'TEXTPlug' => 'TextPlugin',
[17731]44 'XMLPlug' => 'ReadXMLFile',
[15873]45 'EMAILPlug' => 'EmailPlugin',
46 'SRCPlug' => 'SourceCodePlugin',
47 'NULPlug' => 'NulPlugin',
[17731]48 'W3ImgPlug' => 'HTMLImagePlugin',
[17030]49 'PagedImgPlug' => 'PagedImagePlugin',
[17724]50 'METSPlug' => 'GreenstoneMETSPlugin',
51 'PPTPlug' => 'PowerPointPlugin',
[17731]52 'PSPlug' => 'PostScriptPlugin',
[17724]53 'DBPlug' => 'DatabasePlugin'
[15873]54 };
55
[7829]56# global variables
[2785]57my $stats = {'num_processed' => 0,
58 'num_blocked' => 0,
59 'num_not_processed' => 0,
[7363]60 'num_not_recognised' => 0,
[2785]61 'num_archives' => 0
62 };
63
[7829]64#globaloptions contains any options that should be passed to all plugins
65my ($verbosity, $outhandle, $failhandle, $globaloptions);
[5682]66
[15873]67sub get_valid_pluginname {
68 my ($pluginname) = @_;
69 my $valid_name = $pluginname;
70 if (defined $plugin_name_map->{$pluginname}) {
71 $valid_name = $plugin_name_map->{$pluginname};
72 } elsif ($pluginname =~ /Plug$/) {
73 $valid_name =~ s/Plug/Plugin/;
74
75 }
76 return $valid_name;
77}
[21290]78
[14933]79sub load_plugin_require
80{
81 my ($pluginname) = @_;
82
83 my @check_list = ();
84
85 # pp_plugname shorthand for 'perllib' 'plugin' '$pluginname.pm'
86 my $pp_plugname
87 = &util::filename_cat('perllib', 'plugins', "${pluginname}.pm");
88 my $collectdir = $ENV{'GSDLCOLLECTDIR'};
89
[10579]90 # find the plugin
[14239]91 if (defined($ENV{'GSDLCOLLECTION'}))
92 {
[14933]93 my $customplugname
94 = &util::filename_cat($collectdir, "custom",$ENV{'GSDLCOLLECTION'},
95 $pp_plugname);
96 push(@check_list,$customplugname);
[14239]97 }
[14933]98
99 my $colplugname = &util::filename_cat($collectdir, $pp_plugname);
100 push(@check_list,$colplugname);
101
102 if (defined $ENV{'GSDLEXTS'}) {
103
104 my $ext_prefix = &util::filename_cat($ENV{'GSDLHOME'}, "ext");
105
106 my @extensions = split(/:/,$ENV{'GSDLEXTS'});
107 foreach my $e (@extensions) {
108 my $extplugname = &util::filename_cat($ext_prefix, $e, $pp_plugname);
109 push(@check_list,$extplugname);
110
111 }
112 }
[21290]113 if (defined $ENV{'GSDL3EXTS'}) {
[14933]114
[21290]115 my $ext_prefix = &util::filename_cat($ENV{'GSDL3SRCHOME'}, "ext");
[14933]116
[21290]117 my @extensions = split(/:/,$ENV{'GSDL3EXTS'});
118 foreach my $e (@extensions) {
119 my $extplugname = &util::filename_cat($ext_prefix, $e, $pp_plugname);
120 push(@check_list,$extplugname);
121
122 }
123 }
124
125
[14933]126 my $mainplugname = &util::filename_cat($ENV{'GSDLHOME'}, $pp_plugname);
127 push(@check_list,$mainplugname);
128
129 my $success=0;
130 foreach my $plugname (@check_list) {
131 if (-e $plugname) {
132 require $plugname;
133 $success=1;
134 last;
135 }
136 }
137
138 if (!$success) {
[10579]139 &gsprintf(STDERR, "{plugin.could_not_find_plugin}\n",
[14933]140 $pluginname);
[10579]141 die "\n";
142 }
[14933]143}
[10579]144
[14933]145sub load_plugin_for_info {
146 my ($pluginname) = shift @_;
[15873]147 $pluginname = &get_valid_pluginname($pluginname);
[14933]148 load_plugin_require($pluginname);
149
[10579]150 # create a plugin object
151 my ($plugobj);
152 my $options = "-gsdlinfo";
153
154 eval ("\$plugobj = new \$pluginname([],[$options])");
155 die "$@" if $@;
156
157 return $plugobj;
158}
159
[4]160sub load_plugins {
[1431]161 my ($plugin_list) = shift @_;
[20578]162 my $incremental_mode;
163 ($verbosity, $outhandle, $failhandle, $globaloptions, $incremental_mode) = @_; # globals
[4]164 my @plugin_objects = ();
[1243]165 $verbosity = 2 unless defined $verbosity;
[7829]166 $outhandle = 'STDERR' unless defined $outhandle;
167 $failhandle = 'STDERR' unless defined $failhandle;
[1243]168
[13933]169 my $colplugindir = &util::filename_cat($ENV{'GSDLCOLLECTDIR'},"perllib/plugins");
170 unshift (@INC, $colplugindir);
171
[6584]172 map { $_ = "\"$_\""; } @$globaloptions;
173 my $globals = join (",", @$globaloptions);
174
[7829]175 foreach my $pluginoptions (@$plugin_list) {
[809]176 my $pluginname = shift @$pluginoptions;
177 next unless defined $pluginname;
[15873]178 $pluginname = &get_valid_pluginname($pluginname);
[14933]179 load_plugin_require($pluginname);
[4]180
181 # create a plugin object
182 my ($plugobj);
[809]183 map { $_ = "\"$_\""; } @$pluginoptions;
184 my $options = join (",", @$pluginoptions);
[6584]185 if ($globals) {
186 if (@$pluginoptions) {
187 $options .= ",";
188 }
189 $options .= "$globals";
190 }
[20613]191 # need to escape backslash before putting in to the eval
192 $options =~ s/\\/\\\\/g;
[1244]193 $options =~ s/\$/\\\$/g;
[10218]194 eval ("\$plugobj = new \$pluginname([],[$options])");
[4]195 die "$@" if $@;
[809]196
[1243]197 # initialize plugin
[2785]198 $plugobj->init($verbosity, $outhandle, $failhandle);
[10478]199
[20578]200 $plugobj->set_incremental($incremental_mode);
[1243]201
[4]202 # add this object to the list
203 push (@plugin_objects, $plugobj);
204 }
205
206 return \@plugin_objects;
207}
208
[835]209
210sub begin {
[11333]211 my ($pluginfo, $base_dir, $processor, $maxdocs, $gli) = @_;
[835]212
[11333]213 map { $_->{'gli'} = $gli; } @$pluginfo;
[835]214 map { $_->begin($pluginfo, $base_dir, $processor, $maxdocs); } @$pluginfo;
215}
216
[21307]217 sub remove_all {
[21290]218 my ($pluginfo, $base_dir, $processor, $maxdocs) = @_;
219
[21307]220 map { $_->remove_all($pluginfo, $base_dir, $processor, $maxdocs); } @$pluginfo;
[21290]221}
222
[21307]223sub remove_some {
224 my ($pluginfo, $archivedir, $deleted_files) = @_;
225 print STDERR "in remove some\n";
226 return if (scalar(@$deleted_files)==0);
227 my $arcinfo_src_filename = &inexport::src_db_file($archivedir);
[21290]228
[21307]229 foreach my $file (@$deleted_files) {
230 # use 'archiveinf-src' GDBM file to look up all the OIDs
231 # that this file is used in (note in most cases, it's just one OID)
232
[21554]233 my $src_rec_string = &dbutil::read_infodb_entry("gdbm", $arcinfo_src_filename, $file);
234 my $src_rec = &dbutil::convert_infodb_string_to_hash($src_rec_string);
[21307]235 my $oids = $src_rec->{'oid'};
[21314]236 my $rv;
237 foreach my $plugobj (@$pluginfo) {
238
239 $rv = $plugobj->remove_one($file, $oids, $archivedir);
240 if (defined $rv && $rv != -1) {
241 return $rv;
242 } # else undefined (was not recognised by the plugin) or there was an error, try the next one
243 }
244 return 0;
[21307]245 }
246
247}
[16381]248sub file_block_read {
249 my ($pluginfo, $base_dir, $file, $block_hash, $metadata, $gli) = @_;
[10155]250
[16381]251
252 $gli = 0 unless defined $gli;
253
254 my $rv = 0;
255 my $glifile = $file;
256
257 $glifile =~ s/^[\/\\]+//; # file sometimes starts with a / so get rid of it
258
259 # Announce to GLI that we are handling a file
260 print STDERR "<File n='$glifile'>\n" if $gli;
261
262 # the .kill file is a handy (if not very elegant) way of aborting
263 # an import.pl or buildcol.pl process
264 if (-e &util::filename_cat ($ENV{'GSDLCOLLECTDIR'}, ".kill")) {
265 gsprintf($outhandle, "{plugin.kill_file}\n");
266 die "\n";
267 }
268
269 foreach my $plugobj (@$pluginfo) {
270
271 $rv = $plugobj->file_block_read($pluginfo, $base_dir, $file, $block_hash, $metadata, $gli);
272 #last if (defined $rv && $rv==1); # stop this file once we have found something to 'process' it
273 }
274
275}
276
277
[8515]278sub metadata_read {
[19497]279 my ($pluginfo, $base_dir, $file, $block_hash,
280 $extrametakeys, $extrametadata, $extrametafile,
281 $processor, $maxdocs, $gli, $aux) = @_;
[8515]282
283 $maxdocs = -1 unless defined $maxdocs && $maxdocs =~ /\d/;
284 $gli = 0 unless defined $gli;
285
286 my $rv = 0;
287 my $glifile = $file;
288
289 $glifile =~ s/^[\/\\]+//; # file sometimes starts with a / so get rid of it
290
291 # Announce to GLI that we are handling a file
292 print STDERR "<File n='$glifile'>\n" if $gli;
293
294 # the .kill file is a handy (if not very elegant) way of aborting
295 # an import.pl or buildcol.pl process
296 if (-e &util::filename_cat ($ENV{'GSDLCOLLECTDIR'}, ".kill")) {
297 gsprintf($outhandle, "{plugin.kill_file}\n");
298 die "\n";
299 }
300
301 my $had_error = 0;
302 # pass this file by each of the plugins in turn until one
303 # is found which will process it
304 # read must return:
305 # undef - could not recognise
306 # -1 - tried but error
307 # 0 - blocked
308 # anything else for successful processing
309
310 foreach my $plugobj (@$pluginfo) {
311
[16381]312 $rv = $plugobj->metadata_read($pluginfo, $base_dir, $file, $block_hash,
[19497]313 $extrametakeys, $extrametadata, $extrametafile,
314 $processor, $maxdocs, $gli, $aux);
[8515]315
316 if (defined $rv) {
317 if ($rv == -1) {
318 # an error has occurred
319 $had_error = 1;
320 print STDERR "<ProcessingError n='$glifile'>\n" if $gli;
321 } else {
322 return $rv;
323 }
324 } # else undefined - was not recognised by the plugin
325 }
326
327 return 0;
328}
329
[4]330sub read {
[16381]331 my ($pluginfo, $base_dir, $file, $block_hash, $metadata, $processor, $maxdocs, $total_count, $gli, $aux) = @_;
[4]332
[809]333 $maxdocs = -1 unless defined $maxdocs && $maxdocs =~ /\d/;
[9853]334 $total_count = 0 unless defined $total_count && $total_count =~ /\d/;
[6332]335 $gli = 0 unless defined $gli;
336
[315]337 my $rv = 0;
[7363]338 my $glifile = $file;
[7904]339
[7363]340 $glifile =~ s/^[\/\\]+//; # file sometimes starts with a / so get rid of it
[8515]341
[6332]342 # Announce to GLI that we are handling a file
[7363]343 print STDERR "<File n='$glifile'>\n" if $gli;
[8515]344
[1454]345 # the .kill file is a handy (if not very elegant) way of aborting
346 # an import.pl or buildcol.pl process
347 if (-e &util::filename_cat ($ENV{'GSDLCOLLECTDIR'}, ".kill")) {
[7829]348 gsprintf($outhandle, "{plugin.kill_file}\n");
[1454]349 die "\n";
350 }
[18441]351
[7363]352 my $had_error = 0;
[4]353 # pass this file by each of the plugins in turn until one
354 # is found which will process it
[7363]355 # read must return:
356 # undef - could not recognise
357 # -1 - tried but error
358 # 0 - blocked
359 # anything else for successful processing
[8515]360
[7829]361 foreach my $plugobj (@$pluginfo) {
[8515]362
363 $rv = $plugobj->read($pluginfo, $base_dir, $file,
[16381]364 $block_hash, $metadata, $processor, $maxdocs,
365 $total_count, $gli, $aux);
[8515]366
367 if (defined $rv) {
[7363]368 if ($rv == -1) {
[7904]369 # an error has occurred
[7363]370 $had_error = 1;
371 } else {
[7904]372 return $rv;
[7363]373 }
374 } # else undefined - was not recognised by the plugin
[4]375 }
[7904]376
[7363]377 if ($had_error) {
378 # was recognised but couldn't be processed
379 if ($verbosity >= 2) {
[7829]380 gsprintf($outhandle, "{plugin.no_plugin_could_process}\n", $file);
[7363]381 }
382 # tell the GLI that it was not processed
383 print STDERR "<NonProcessedFile n='$glifile'>\n" if $gli;
[7904]384
[7829]385 gsprintf($failhandle, "$file: {plugin.no_plugin_could_process_this_file}\n");
[7363]386 $stats->{'num_not_processed'} ++;
387 } else {
388 # was not recognised
389 if ($verbosity >= 2) {
[7829]390 gsprintf($outhandle, "{plugin.no_plugin_could_recognise}\n",$file);
[7363]391 }
392 # tell the GLI that it was not processed
393 print STDERR "<NonRecognisedFile n='$glifile'>\n" if $gli;
394
[7829]395 gsprintf($failhandle, "$file: {plugin.no_plugin_could_recognise_this_file}\n");
[7363]396 $stats->{'num_not_recognised'} ++;
[170]397 }
[315]398 return 0;
[4]399}
400
[2785]401# write out some general stats that the plugins have compiled - note that
402# the buildcol.pl process doesn't currently call this process so the stats
403# are only output after import.pl -
404sub write_stats {
[6332]405 my ($pluginfo, $statshandle, $faillog, $gli) = @_;
[2785]406
[6332]407 $gli = 0 unless defined $gli;
408
[7829]409 foreach my $plugobj (@$pluginfo) {
[2785]410 $plugobj->compile_stats($stats);
411 }
412
413 my $total = $stats->{'num_processed'} + $stats->{'num_blocked'} +
[7363]414 $stats->{'num_not_processed'} + $stats->{'num_not_recognised'};
[2785]415
[7363]416 print STDERR "<ImportComplete considered='$total' processed='$stats->{'num_processed'}' blocked='$stats->{'num_blocked'}' ignored='$stats->{'num_not_recognised'}' failed='$stats->{'num_not_processed'}'>\n" if $gli;
[6332]417
[2785]418 if ($total == 1) {
[7829]419 gsprintf($statshandle, "* {plugin.one_considered}\n");
[2785]420 } else {
[7829]421 gsprintf($statshandle, "* {plugin.n_considered}\n", $total);
[2785]422 }
423 if ($stats->{'num_archives'}) {
[5682]424 if ($stats->{'num_archives'} == 1) {
[7829]425 gsprintf($statshandle, " ({plugin.including_archive})\n");
[5682]426 }
427 else {
[7829]428 gsprintf($statshandle, " ({plugin.including_archives})\n",
429 $stats->{'num_archives'});
[5682]430 }
[2785]431 }
432 if ($stats->{'num_processed'} == 1) {
[7829]433 gsprintf($statshandle, "* {plugin.one_included}\n");
[2785]434 } else {
[7829]435 gsprintf($statshandle, "* {plugin.n_included}\n", $stats->{'num_processed'});
[2785]436 }
[7363]437 if ($stats->{'num_not_recognised'}) {
438 if ($stats->{'num_not_recognised'} == 1) {
[7829]439 gsprintf($statshandle, "* {plugin.one_unrecognised}\n");
[7363]440 } else {
[7829]441 gsprintf($statshandle, "* {plugin.n_unrecognised}\n",
442 $stats->{'num_not_recognised'});
[7363]443 }
444
445 }
[2797]446 if ($stats->{'num_not_processed'}) {
447 if ($stats->{'num_not_processed'} == 1) {
[7829]448 gsprintf($statshandle, "* {plugin.one_rejected}\n");
[2797]449 } else {
[7829]450 gsprintf($statshandle, "* {plugin.n_rejected}\n",
451 $stats->{'num_not_processed'});
[5682]452 }
[7363]453 }
454 if ($stats->{'num_not_processed'} || $stats->{'num_not_recognised'}) {
[7829]455 gsprintf($statshandle, " {plugin.see_faillog}\n", $faillog);
[2797]456 }
[2785]457}
458
[835]459sub end {
[1587]460 my ($pluginfo, $processor) = @_;
461 map { $_->end($processor); } @$pluginfo;
[835]462}
[4]463
[10155]464sub deinit {
465 my ($pluginfo, $processor) = @_;
466
467
468 map { $_->deinit($processor); } @$pluginfo;
469}
470
[4]4711;
Note: See TracBrowser for help on using the repository browser.