source: gsdl/trunk/perllib/plugins/ImagePlugin.pm@ 16849

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

fixed a bad error in previous commit where I had put super::init instead of super::begin in the begin method

  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
RevLine 
[1733]1###########################################################################
2#
[16820]3# ImagePlugin.pm -- for processing standalone images
[1733]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
[15872]26package ImagePlugin;
[1733]27
[15872]28use BasePlugin;
29use ImageConverter;
[1733]30
[10254]31use strict;
32no strict 'refs'; # allow filehandles to be variables and viceversa
33
[1733]34sub BEGIN {
[15872]35 @ImagePlugin::ISA = ('BasePlugin', 'ImageConverter');
[1733]36}
37
[4744]38my $arguments =
39 [ { 'name' => "process_exp",
[15872]40 'desc' => "{BasePlugin.process_exp}",
[6408]41 'type' => "regexp",
[4744]42 'deft' => &get_default_process_exp(),
43 'reqd' => "no" },
[15872]44 ];
[1758]45
[15872]46my $options = { 'name' => "ImagePlugin",
47 'desc' => "{ImagePlugin.desc}",
[6408]48 'abstract' => "no",
[3540]49 'inherits' => "yes",
50 'args' => $arguments };
51
52
[1744]53
[1733]54sub new {
[10218]55 my ($class) = shift (@_);
56 my ($pluginlist,$inputargs,$hashArgOptLists) = @_;
57 push(@$pluginlist, $class);
[4724]58
[15872]59 push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});
60 push(@{$hashArgOptLists->{"OptList"}},$options);
[2230]61
[15872]62 new ImageConverter($pluginlist, $inputargs, $hashArgOptLists);
63 my $self = new BasePlugin($pluginlist, $inputargs, $hashArgOptLists);
[1744]64
[1733]65 return bless $self, $class;
66}
67
[15872]68sub init {
69 my $self = shift (@_);
70 my ($verbosity, $outhandle, $failhandle) = @_;
71
[16849]72 print STDERR "calling super init\n";
[15872]73 $self->SUPER::init(@_);
[16849]74 print STDERR "after\n";
75 print $outhandle "print to outhandle\n";
[15872]76 $self->ImageConverter::init();
77}
78
[16847]79sub begin {
80 my $self = shift (@_);
81 my ($pluginfo, $base_dir, $processor, $maxdocs) = @_;
82
[16849]83 $self->SUPER::begin(@_);
[16847]84 $self->ImageConverter::begin();
85}
86
[1733]87sub get_default_process_exp {
88 my $self = shift (@_);
89
[1758]90 return q^(?i)(\.jpe?g|\.gif|\.png|\.bmp|\.xbm|\.tif?f)$^;
[1733]91}
92
[9067]93# this makes no sense for images
94sub block_cover_image
95{
96 my $self =shift (@_);
97 my ($filename) = @_;
[2230]98
[9067]99 return;
100}
[2230]101
[15872]102# do plugin specific processing of doc_obj
103sub process {
[1733]104 my $self = shift (@_);
[15872]105 # options??
106 my ($pluginfo, $base_dir, $file, $metadata, $doc_obj, $gli) = @_;
107
[16820]108
[2230]109 my $outhandle = $self->{'outhandle'};
[16383]110 my ($filename_full_path, $filename_no_path) = &util::get_full_filenames($base_dir, $file);
[16820]111
[16010]112 if ($self->{'image_conversion_available'} == 1) {
[16768]113 my $utf8_filename_no_path = $self->filepath_to_utf8($filename_no_path);
114 my $url_encoded_filename = &unicode::url_encode($utf8_filename_no_path);
115 $self->generate_images($filename_full_path, $url_encoded_filename, $doc_obj, $doc_obj->get_top_section()); # should we check the return value?
[15872]116 } else {
117 # do some basic stuff
118 # associate the image, fileformat, mimetype, srclink, srcicon
119 # do this if image magick not installed. but also if generate hasn't worked?? what about images too small?
[2230]120 }
[15872]121 #we have no text - adds dummy text and NoText metadata
122 $self->add_dummy_text($doc_obj, $doc_obj->get_top_section());
[2230]123
[15872]124 return 1;
[4724]125
[3137]126}
[2230]127
[15872]128sub clean_up_after_doc_obj_processing {
[14951]129 my $self = shift(@_);
[1733]130
[15872]131 $self->ImageConverter::clean_up_temporary_files();
[1733]132}
133
1341;
[4724]135
136
137
138
139
140
141
142
143
144
145
Note: See TracBrowser for help on using the repository browser.