source: gs3-extensions/pharos/trunk/perllib/plugins/PharosImageIndexer.pm@ 21296

Last change on this file since 21296 was 21296, checked in by kjdon, 14 years ago

removed a debug statement

File size: 4.4 KB
Line 
1###########################################################################
2#
3# PharosImageIndexer - helper plugin that does image conversion using ImageMagick
4#
5# A component of the Greenstone digital library software
6# from the New Zealand Digital Library Project at the
7# University of Waikato, New Zealand.
8#
9# Copyright (C) 2008 New Zealand Digital Library Project
10#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24#
25###########################################################################
26package PharosImageIndexer;
27
28use PrintInfo;
29
30
31use strict;
32no strict 'refs'; # allow filehandles to be variables and viceversa
33
34use gsprintf 'gsprintf';
35
36BEGIN {
37 @PharosImageIndexer::ISA = ('PrintInfo');
38}
39
40my $arguments = [
41 { 'name' => "disable_pharos_imageis",
42 'desc' => "{PharosImageIndexer.disable_pharos_imageis}",
43 'type' => "flag",
44 'reqd' => "no" },
45 ];
46
47my $options = { 'name' => "PharosImageIndexer",
48 'desc' => "{PharosImageIndexer.desc}",
49 'abstract' => "yes",
50 'inherits' => "yes",
51 'args' => $arguments };
52
53sub new {
54 my ($class) = shift (@_);
55 my ($pluginlist,$inputargs,$hashArgOptLists) = @_;
56 push(@$pluginlist, $class);
57
58 push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});
59 push(@{$hashArgOptLists->{"OptList"}},$options);
60
61 my $self = new PrintInfo($pluginlist, $inputargs, $hashArgOptLists, 1);
62
63
64 return bless $self, $class;
65
66}
67
68# needs to be called after BasePlugin init, so that outhandle is set up.
69sub init {
70 my $self = shift(@_);
71
72 return if ($self->{'disable_pharos_imageis'});
73
74 # Check that Pharos is installed and available on the path
75 my $pharos_available = 1;
76 ## change for windows!
77 #my $result = `phraros-imageis-identify 2>&1`;
78 #my $return_value = $?;
79 #if ( ($ENV{'GSDLOS'} eq "windows" && $return_value == 256) || $return_value == -1) { # Linux and Windows return different values for "program not found"
80 # $pharos_available = 0;
81 #}
82
83 $self->{'pharos_available'} = 1; #$pharos_available;
84
85 if ($self->{'pharos_available'} == 0) {
86 my $outhandle = $self->{'outhandle'};
87 &gsprintf($outhandle, "PharosImageIndexer: Pharos not installed\n");
88 }
89
90}
91
92sub begin {
93
94}
95
96sub removeold {
97 my $self = shift (@_);
98 my ($pluginfo, $base_dir, $processor, $maxdocs) = @_;
99
100 return if ($self->{'disable_pharos_imageis'});
101
102 if (!$self->{'pharos_available'}) {
103 print STDERR "pharos not available, not doing a removeold\n";
104 return;
105 }
106 # need to delete everything from the derby database.
107 my $collection = &util::get_current_collection_name();
108 my $cmd = "perl -S pharos-imageis-delete.pl $collection *.jpg 2>&1";
109 print STDERR "Running command $cmd\n";
110 my $result = `$cmd`;
111 my $return_value = $?;
112 my $outhandle = $self->{'outhandle'};
113 if ($return_value != 0) {
114 print $outhandle "Pharos Indexing failed to clear database for collection $collection\n";
115 }
116 print $outhandle "$result\n";
117
118}
119
120sub pharos_index_image {
121 my $self = shift(@_);
122
123 return if ($self->{'disable_pharos_imageis'} || !$self->{'pharos_available'});
124 # pass in the jpg thumbnail, and the doc obj
125 my ($filename_full_path, $doc_obj) = @_;
126 print STDERR "pharos indexing $filename_full_path\n";
127
128 my $collection = &util::get_current_collection_name();
129 my $id = $doc_obj->get_OID();
130
131 my $cmd = "perl -S pharos-imageis-add.pl $collection $filename_full_path $id 2>&1";
132 print STDERR "Running command $cmd\n";
133 my $result = `$cmd`;
134
135 my $return_value = $?;
136 my $outhandle = $self->{'outhandle'};
137 if ($return_value != 0) {
138 print $outhandle "Pharos Indexing failed for $filename_full_path, $id\n";
139 }
140 print $outhandle "$result\n";
141
142}
143
144
1451;
Note: See TracBrowser for help on using the repository browser.