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

Last change on this file since 24345 was 24345, checked in by davidb, 13 years ago

whitespace tidyup

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