source: main/trunk/greenstone2/perllib/plugins/PDFPlugin.pm@ 22597

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

code tidy up. rearranged how convertbinaryfile plugins set up their secondary plugins - now only set up the options for the one they are using. all subclass specific code moved out of convertbinaryfile.new into the appropriate plugin file.

  • Property svn:keywords set to Author Date Id Revision
File size: 12.3 KB
RevLine 
[1410]1###########################################################################
2#
[15872]3# PDFPlugin.pm -- reasonably with-it pdf plugin
[1410]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#
[2661]8# Copyright (C) 1999-2001 New Zealand Digital Library Project
[1410]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###########################################################################
[15872]25package PDFPlugin;
[1410]26
[15872]27use ConvertBinaryFile;
28use ReadTextFile;
[8218]29use unicode;
[10353]30use strict;
31no strict 'refs'; # so we can use a var for filehandles (eg STDERR)
[1410]32
[8716]33sub BEGIN {
[15872]34 @PDFPlugin::ISA = ('ConvertBinaryFile', 'ReadTextFile');
[8716]35}
[1410]36
[10452]37my $convert_to_list =
38 [ { 'name' => "auto",
[15872]39 'desc' => "{ConvertBinaryFile.convert_to.auto}" },
[10452]40 { 'name' => "html",
[15872]41 'desc' => "{ConvertBinaryFile.convert_to.html}" },
[10452]42 { 'name' => "text",
[15872]43 'desc' => "{ConvertBinaryFile.convert_to.text}" },
[10452]44 { 'name' => "pagedimg_jpg",
[15872]45 'desc' => "{ConvertBinaryFile.convert_to.pagedimg_jpg}"},
[10452]46 { 'name' => "pagedimg_gif",
[15872]47 'desc' => "{ConvertBinaryFile.convert_to.pagedimg_gif}"},
[10452]48 { 'name' => "pagedimg_png",
[15872]49 'desc' => "{ConvertBinaryFile.convert_to.pagedimg_png}"},
[10452]50 ];
51
52
53my $arguments =
[10889]54 [
55 { 'name' => "convert_to",
[15872]56 'desc' => "{ConvertBinaryFile.convert_to}",
[10889]57 'type' => "enum",
58 'reqd' => "yes",
59 'list' => $convert_to_list,
60 'deft' => "html" },
61 { 'name' => "process_exp",
[15872]62 'desc' => "{BasePlugin.process_exp}",
[10889]63 'type' => "regexp",
64 'deft' => &get_default_process_exp(),
65 'reqd' => "no" },
66 { 'name' => "block_exp",
[15872]67 'desc' => "{BasePlugin.block_exp}",
[10889]68 'type' => "regexp",
69 'deft' => &get_default_block_exp() },
70 { 'name' => "metadata_fields",
[15872]71 'desc' => "{HTMLPlugin.metadata_fields}",
[10889]72 'type' => "string",
73 'deft' => "" },
[21800]74 { 'name' => "metadata_field_separator",
75 'desc' => "{HTMLPlugin.metadata_field_separator}",
76 'type' => "string",
77 'deft' => "" },
[10889]78 { 'name' => "noimages",
[15872]79 'desc' => "{PDFPlugin.noimages}",
[10889]80 'type' => "flag" },
81 { 'name' => "allowimagesonly",
[15872]82 'desc' => "{PDFPlugin.allowimagesonly}",
[10889]83 'type' => "flag" },
84 { 'name' => "complex",
[15872]85 'desc' => "{PDFPlugin.complex}",
[10889]86 'type' => "flag" },
87 { 'name' => "nohidden",
[15872]88 'desc' => "{PDFPlugin.nohidden}",
[10889]89 'type' => "flag" },
90 { 'name' => "zoom",
[15872]91 'desc' => "{PDFPlugin.zoom}",
[10889]92 'deft' => "2",
93 'range' => "1,3", # actually the range is 0.5-3
94 'type' => "int" },
95 { 'name' => "use_sections",
[15872]96 'desc' => "{PDFPlugin.use_sections}",
[10889]97 'type' => "flag" },
98 { 'name' => "description_tags",
[15872]99 'desc' => "{HTMLPlugin.description_tags}",
[10889]100 'type' => "flag" }
101 ];
[3540]102
[15872]103my $options = { 'name' => "PDFPlugin",
104 'desc' => "{PDFPlugin.desc}",
[6408]105 'abstract' => "no",
[3540]106 'inherits' => "yes",
[15114]107 'srcreplaceable' => "yes", # Source docs in PDF can be replaced with GS-generated html
[3540]108 'args' => $arguments };
109
[1410]110sub new {
[10218]111 my ($class) = shift (@_);
112 my ($pluginlist,$inputargs,$hashArgOptLists) = @_;
113 push(@$pluginlist, $class);
[2452]114
[10218]115 push(@$inputargs,"-title_sub");
116 push(@$inputargs,'^(Page\s+\d+)?(\s*1\s+)?');
[5616]117
[15872]118 push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});
119 push(@{$hashArgOptLists->{"OptList"}},$options);
[10429]120
[15872]121 my $self = new ConvertBinaryFile($pluginlist, $inputargs, $hashArgOptLists);
[10353]122
[10580]123 if ($self->{'info_only'}) {
124 # don't worry about any options etc
125 return bless $self, $class;
126 }
127
[15872]128 $self->{'filename_extension'} = "pdf";
129 $self->{'file_type'} = "PDF";
130
131 # these are passed through to gsConvert.pl by ConvertBinaryFile.pm
[10218]132 my $zoom = $self->{"zoom"};
[3720]133 $self->{'convert_options'} = "-pdf_zoom $zoom";
[10218]134 $self->{'convert_options'} .= " -pdf_complex" if $self->{"complex"};
135 $self->{'convert_options'} .= " -pdf_nohidden" if $self->{"nohidden"};
136 $self->{'convert_options'} .= " -pdf_ignore_images" if $self->{"noimages"};
[10452]137 $self->{'convert_options'} .= " -pdf_allow_images_only" if $self->{"allowimagesonly"};
[3720]138
[22597]139 # check convert_to
140 if ($self->{'convert_to'} eq "text" && $ENV{'GSDLOS'} =~ /^windows$/i) {
141 print STDERR "Windows does not support pdf to text. PDFs will be converted to HTML instead\n";
142 $self->{'convert_to'} = "html";
[10273]143 }
[22597]144 elsif ($self->{'convert_to'} eq "auto") {
145 # choose html ?? is this the best option
146 $self->{'convert_to'} = "html";
[10273]147 }
[22597]148 # set convert_to_plugin and convert_to_ext
149 $self->ConvertBinaryFile::set_standard_convert_settings();
[18145]150
[22597]151 my $secondary_plugin_name = $self->{'convert_to_plugin'};
152 my $secondary_plugin_options = $self->{'secondary_plugin_options'};
[10273]153
[22597]154 if (!defined $secondary_plugin_options->{$secondary_plugin_name}) {
155 $secondary_plugin_options->{$secondary_plugin_name} = [];
[10724]156 }
[22597]157 my $specific_options = $secondary_plugin_options->{$secondary_plugin_name};
[10429]158
[10273]159 # following title_sub removes "Page 1" added by pdftohtml, and a leading
160 # "1", which is often the page number at the top of the page. Bad Luck
161 # if your document title actually starts with "1 " - is there a better way?
[22597]162 push(@$specific_options , "-title_sub", '^(Page\s+\d+)?(\s*1\s+)?');
[11122]163 my $associate_tail_re = $self->{'associate_tail_re'};
164 if ((defined $associate_tail_re) && ($associate_tail_re ne "")) {
[22597]165 push(@$specific_options, "-associate_tail_re", $associate_tail_re);
[11122]166 }
[22597]167 push(@$specific_options, "-file_rename_method", "none");
168
169 if ($secondary_plugin_name eq "HTMLPlugin") {
170 # pdftohtml always produces utf8
171 push(@$specific_options, "-input_encoding", "utf8");
172 push(@$specific_options, "-extract_language") if $self->{'extract_language'};
173 push(@$specific_options, "-processing_tmp_files");
174 # Instruct HTMLPlug (when eventually accessed through read_into_doc_obj)
175 # to extract these metadata fields from the HEAD META fields
176 if (defined $self->{'metadata_fields'} && $self->{'metadata_fields'} =~ /\S/) {
177 push(@$specific_options,"-metadata_fields",$self->{'metadata_fields'});
178 } else {
179 push(@$specific_options,"-metadata_fields","Title,GENERATOR,date,author<Creator>");
180 }
181 if (defined $self->{'metadata_field_separator'} && $self->{'metadata_field_separator'} =~ /\S/) {
182 push(@$specific_options,"-metadata_field_separator",$self->{'metadata_field_separator'});
183 }
184 if ($self->{'use_sections'} || $self->{'description_tags'}) {
185 $self->{'description_tags'} = 1;
186 push(@$specific_options, "-description_tags");
187 }
188 }
189 elsif ($secondary_plugin_name eq "PagedImagePlugin") {
190 push(@$specific_options, "-screenviewsize", "1000");
191 push(@$specific_options, "-enable_cache");
192 push(@$specific_options, "-processing_tmp_files");
193 }
[11122]194
[10273]195 $self = bless $self, $class;
[10429]196 $self->load_secondary_plugins($class,$secondary_plugin_options,$hashArgOptLists);
[10273]197 return $self;
[1410]198}
199
200sub get_default_process_exp {
201 my $self = shift (@_);
202
203 return q^(?i)\.pdf$^;
204}
[2661]205
206# so we don't inherit HTMLPlug's block exp...
207sub get_default_block_exp {
208 return "";
209}
[1410]210
[10273]211sub convert_post_process
212{
[1410]213 my $self = shift (@_);
[10273]214 my ($conv_filename) = @_;
[9465]215
[7019]216 my $outhandle=$self->{'outhandle'};
217
[15963]218 #$self->{'input_encoding'} = "utf8"; # The output is always in utf8 (is it?? it is for html, but what about other types?)
219 #my ($language, $encoding) = $self->textcat_get_language_encoding ($conv_filename);
[8218]220
[10273]221 # read in file ($text will be in utf8)
222 my $text = "";
[15963]223 # encoding will be utf8 for html files - what about other types? will we do this step for them anyway?
224 $self->read_file ($conv_filename, "utf8", "", \$text);
[10273]225
226 # Calculate number of pages based on <a ...> tags (we have a <a name=1> etc
227 # for each page). Metadata based on this calculation not set until process()
228 #
229 # Note: this is done even if we are not breaking to document into pages as it might
230 # be useful to give an indication of document length in browser through setting
231 # num_pages as metadata.
232 my @pages = ($text =~ /\<[Aa] name=\"?\w+\"?>/ig);
233 my $num_pages = scalar(@pages);
234 $self->{'num_pages'} = $num_pages;
235
[3411]236 if ($self->{'use_sections'}
237 && $self->{'converted_to'} eq "HTML") {
238
[15872]239 print $outhandle "PDFPlugin: Calculating sections...\n";
[3411]240
[3614]241 # we have "<a name=1></a>" etc for each page
[8795]242 # it may be <A name=
[10273]243 my @sections = split('<[Aa] name=', $text);
[3411]244
[10273]245 my $top_section = "";
246
[7019]247 if (scalar (@sections) == 1) { #only one section - no split!
[15872]248 print $outhandle "PDFPlugin: warning - no sections found\n";
[7019]249 } else {
[10273]250 $top_section .= shift @sections; # keep HTML header etc as top_section
[7019]251 }
252
[3411]253 # handle first section specially for title? Or all use first 100...
254
255 my $title = $sections[0];
[8795]256 $title =~ s/^\"?\w+\"?>//; # specific for pdftohtml...
[3411]257 $title =~ s/<\/([^>]+)><\1>//g; # (eg) </b><b> - no space
258 $title =~ s/<[^>]*>/ /g;
259 $title =~ s/(?:&nbsp;|\xc2\xa0)/ /g; # utf-8 for nbsp...
260 $title =~ s/^\s+//s;
261 $title =~ s/\s+$//;
262 $title =~ s/\s+/ /gs;
263 $title =~ s/^$self->{'title_sub'}// if ($self->{'title_sub'});
264 $title =~ s/^\s+//s; # in case title_sub introduced any...
265 $title = substr ($title, 0, 100);
266 $title =~ s/\s\S*$/.../;
267
[10273]268
[7019]269 if (scalar (@sections) == 1) { # no sections found
[10273]270 $top_section .= $sections[0];
[7019]271 @sections=();
272 } else {
[10273]273 $top_section .= "<!--<Section>\n<Metadata name=\"Title\">$title</Metadata>\n-->\n <!--</Section>-->\n";
[7019]274 }
[3411]275
276 # add metadata per section...
277 foreach my $section (@sections) {
[8795]278 # section names are not always just digits, may be like "outline"
279 $section =~ s@^\"?(\w+)\"?></a>@@; # leftover from split expression...
[3614]280
[3411]281 $title = $1; # Greenstone does magic if sections are titled digits
282 if (! defined($title) ) {
283 print STDERR "no title: $section\n";
[8795]284 $title = " "; # get rid of the undefined warning in next line
[3411]285 }
[15872]286 my $newsection = "<!-- from PDFPlugin -->\n<!-- <Section>\n";
[3411]287 $newsection .= "<Metadata name=\"Title\">" . $title
288 . "</Metadata>\n--><p>\n";
289 $newsection .= $section;
290 $newsection .= "<!--</Section>-->\n";
291 $section = $newsection;
292 }
293
[10273]294 $text=join('', ($top_section, @sections));
[3411]295 }
296
[8218]297 # turn any high bytes that aren't valid utf-8 into utf-8.
[10273]298 unicode::ensure_utf8(\$text);
[8218]299
[10273]300 # Write it out again!
301 $self->utf8_write_file (\$text, $conv_filename);
302}
[7287]303
304
[10273]305# do plugin specific processing of doc_obj for HTML type
306sub process {
307 my $self = shift (@_);
[15872]308 my ($pluginfo, $base_dir, $file, $metadata, $doc_obj, $gli) = @_;
[7287]309
[15963]310 my $result = $self->process_type($base_dir,$file,$doc_obj);
[10273]311
[8226]312 # fix up the extracted date metadata to be in Greenstone date format,
313 # and fix the capitalisation of 'date'
[8227]314 my $cursection = $doc_obj->get_top_section();
315 foreach my $datemeta (@{$doc_obj->get_metadata($cursection, "date")}) {
[7287]316 $doc_obj->delete_metadata($cursection, "date", $datemeta);
317
318 # We're just interested in the date bit, not the time
[8278]319 # some pdf creators (eg "Acrobat 5.0 Scan Plug-in for Windows")
320 # set a /CreationDate, and set /ModDate to 000000000. pdftohtml
321 # extracts the ModDate, so it is 0...
322 $datemeta =~ /(\d+)-(\d+)-(\d+)/;
323 my ($year, $month, $day) = ($1,$2,$3);
324 if (defined($year) && defined($month) && defined($day)) {
325 if ($year == 0) {next}
326 if ($year < 100) {$year += 1900} # just to be safe
327 if ($month =~ /^\d$/) {$month="0$month"} # single digit
328 if ($day =~ /^\d$/) {$day="0$day"} # single digit
329 my $date="$year$month$day";
330 $doc_obj->add_utf8_metadata($cursection, "Date", $date);
331 }
[7287]332 }
333
[10273]334 $doc_obj->add_utf8_metadata($cursection, "NumPages", $self->{'num_pages'});
[8795]335
336 if ($self->{'use_sections'} && $self->{'converted_to'} eq "HTML") {
337 # we explicitly make it a paged document, cos greenstone won't get it
338 # right if any section has an empty title, or one with letters in it
339 $doc_obj->set_utf8_metadata_element ($cursection, "gsdlthistype", "Paged");
340 }
[10273]341
[7287]342 return $result;
[1410]343}
344
3451;
Note: See TracBrowser for help on using the repository browser.