source: main/trunk/greenstone2/perllib/plugins/PagedImagePlugin.pm@ 21721

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

fixed up an error message

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 23.1 KB
RevLine 
[14661]1###########################################################################
2#
[15872]3# PagedImagePlugin.pm -- plugin for sets of images and OCR text that
[14661]4# make up a document
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) 1999 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###########################################################################
26
[15872]27# PagedImagePlugin
[14661]28# processes sequences of images, with optional OCR text
29#
30# This plugin takes *.item files, which contain metadata and lists of image
31# files, and produces a document containing sections, one for each page.
32# The files should be named something.item, then you can have more than one
33# book in a directory. You will need to create these files, one for each
34# document/book.
35#
36#There are two formats for the item files: a plain text format, and an xml
37#format. You can use either format, and can have both formats in the same
38#collection if you like. If you use the plain format, you must not start the
39#file off with <PagedDocument>
40
41#### PLAIN FORMAT
42# The format of the xxx.item file is as follows:
43# The first lines contain any metadata for the whole document
44# <metadata-name>metadata-value
45# eg.
46# <Title>Snail farming
47# <Date>19230102
48# Then comes a list of pages, one page per line, each line has the format
49#
50# pagenum:imagefile:textfile:r
51#
52# page num and imagefile are required. pagenum is used for the Title
53# of the section, and in the display is shown as page <pagenum>.
54# imagefile is the image for the page. textfile is an optional text
55# file containing the OCR (or any) text for the page - this gets added
56# as the text for the section. r is optional, and signals that the image
57# should be rotated 180deg. Eg use this if the image has been made upside down.
58# So an example item file looks like:
59# <Title>Snail farming
60# <Date>19960403
61# 1:p1.gif:p1.txt:
62# 2:p2.gif::
63# 3:p3.gif:p3.txt:
64# 3b:p3b.gif:p3b.txt:r
65# The second page has no text, the fourth page is a back page, and
66# should be rotated.
67#
68
69#### XML FORMAT
70# The xml format looks like the following
71#<PagedDocument>
72#<Metadata name="Title">The Title of the entire document</Metadata>
[15018]73#<Page pagenum="1" imgfile="xxx.jpg" txtfile="yyy.txt">
[14661]74#<Metadata name="Title">The Title of this page</Metadata>
75#</Page>
76#... more pages
77#</PagedDocument>
78#PagedDocument contains a list of Pages, Metadata and PageGroups. Any metadata
79#that is not inside another tag will belong to the document.
80#Each Page has a pagenum (not used at the moment), an imgfile and/or a txtfile.
81#These are both optional - if neither is used, the section will have no content.
82#Pages can also have metadata associated with them.
83#PageGroups can be introduced at any point - they can contain Metadata and Pages and other PageGroups. They are used to introduce hierarchical structure into the document.
84#For example
85#<PagedDocument>
86#<PageGroup>
87#<Page>
88#<Page>
89#</PageGroup>
90#<Page>
91#</PagedDocument>
92#would generate a structure like
93#X
94#--X
95# --X
96# --X
97#--X
98#PageGroup tags can also have imgfile/textfile metadata if you like - this way they get some content themselves.
99
100#Currently the XML structure doesn't work very well with the paged document type, unless you use numerical Titles for each section.
101#There is still a bit of work to do on this format:
102#* enable other text file types, eg html, pdf etc
103#* make the document paging work properly
104#* add pagenum as Title unless a Title is present?
105
106# All the supplemetary image amd text files should be in the same folder as
107# the .item file.
108#
109# To display the images instead of the document text, you can use [srcicon]
110# in the DocumentText format statement.
111# For example,
112#
113# format DocumentText "<center><table width=_pagewidth_><tr><td>[srcicon]</td></tr></table></center>"
114#
[15905]115# To have it create thumbnail size images, use the '-create_thumbnail' option.
116# To have it create medium size images for display, use the '-create_screenview'
[14661]117# option. As usual, running
[15872]118# 'perl -S pluginfo.pl PagedImagePlugin' will list all the options.
[14661]119
120# If you want the resulting documents to be presented with a table of
121# contents, use '-documenttype hierarchy', otherwise they will have
122# next and previous arrows, and a goto page X box.
123
[15905]124# If you have used -create_screenview, you can also use [screenicon] in the format
[14661]125# statement to display the smaller image. Here is an example that switches
126# between the two:
127#
128# format DocumentText "<center><table width=_pagewidth_><tr><td>{If}{_cgiargp_ eq full,<a href='_httpdocument_&d=_cgiargd_&p=small'>Switch to small version.</a>,<a href='_httpdocument_&d=_cgiargd_&p=full'>Switch to fullsize version</a>}</td></tr><tr><td>{If}{_cgiargp_ eq full,<a href='_httpdocument_&d=_cgiargd_&p=small' title='Switch to small version'>[srcicon]</a>,<a href='_httpdocument_&d=_cgiargd_&p=full' title='Switch to fullsize version'>[screenicon]</a>}</td></tr></table></center>"
129#
130# Additional metadata can be added into the .item files, alternatively you can
131# use normal metadata.xml files, with the name of the xxx.item file as the
132# FileName (only for document level metadata).
133
[15872]134package PagedImagePlugin;
[14661]135
[15872]136use ReadXMLFile;
137use ReadTextFile;
138use ImageConverter;
139
[14661]140use strict;
141no strict 'refs'; # allow filehandles to be variables and viceversa
142
143sub BEGIN {
[15872]144 @PagedImagePlugin::ISA = ('ReadXMLFile', 'ReadTextFile', 'ImageConverter');
[14661]145}
146
147my $type_list =
148 [ { 'name' => "paged",
[15872]149 'desc' => "{PagedImagePlugin.documenttype.paged}" },
[14661]150 { 'name' => "hierarchy",
[15872]151 'desc' => "{PagedImagePlugin.documenttype.hierarchy}" } ];
[14661]152
153my $arguments =
154 [ { 'name' => "process_exp",
[16009]155 'desc' => "{BasePlugin.process_exp}",
[14661]156 'type' => "string",
157 'deft' => &get_default_process_exp(),
158 'reqd' => "no" },
159 { 'name' => "block_exp",
[16009]160 'desc' => "{BasePlugin.block_exp}",
[14661]161 'type' => "string",
162 'deft' => &get_default_block_exp(),
163 'reqd' => "no" },
164 { 'name' => "title_sub",
[16009]165 'desc' => "{HTMLPlugin.title_sub}",
[14661]166 'type' => "string",
167 'deft' => "" },
168 { 'name' => "headerpage",
[15872]169 'desc' => "{PagedImagePlugin.headerpage}",
[14661]170 'type' => "flag",
171 'reqd' => "no" },
172 { 'name' => "documenttype",
[15872]173 'desc' => "{PagedImagePlugin.documenttype}",
[14661]174 'type' => "enum",
175 'list' => $type_list,
176 'deft' => "paged",
[20791]177 'reqd' => "no" },
178 {'name' => "processing_tmp_files",
179 'desc' => "{BasePlugin.processing_tmp_files}",
180 'type' => "flag",
181 'hiddengli' => "yes"}
182];
[14661]183
184
[15872]185my $options = { 'name' => "PagedImagePlugin",
186 'desc' => "{PagedImagePlugin.desc}",
[14661]187 'abstract' => "no",
188 'inherits' => "yes",
189 'args' => $arguments };
190
191sub new {
192 my ($class) = shift (@_);
193 my ($pluginlist,$inputargs,$hashArgOptLists) = @_;
194 push(@$pluginlist, $class);
195
[15872]196 push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});
197 push(@{$hashArgOptLists->{"OptList"}},$options);
[14661]198
[16827]199 my $imc_self = new ImageConverter($pluginlist, $inputargs, $hashArgOptLists);
200 my $rtf_self = new ReadTextFile($pluginlist, $inputargs, $hashArgOptLists, 1);
201 my $rxf_self = new ReadXMLFile($pluginlist, $inputargs, $hashArgOptLists);
202
203 my $self = BasePlugin::merge_inheritance($imc_self,$rtf_self,$rxf_self);
204
205 # Update $self used by XML::Parser so it finds callback functions
206 # such as start_document here and not in ReadXMLFile (which is what
207 # $self was when new XML::Parser was done)
208 #
209 # If the $self returned by this constructor is the same as the one
[17741]210 # used in ReadXMLFile (e.g. in the GreenstoneXMLPlugin) then this step isn't necessary
[16827]211 #
212 # Consider embedding this type of assignment into merge_inheritance
213 # to help catch all cases?
214
215 $rxf_self->{'parser'}->{'PluginObj'} = $self;
216
[14661]217 return bless $self, $class;
218}
219
[15872]220
221sub init {
222 my $self = shift (@_);
223 my ($verbosity, $outhandle, $failhandle) = @_;
224
225 $self->SUPER::init(@_);
226 $self->ImageConverter::init();
227}
228
[16847]229sub begin {
230 my $self = shift (@_);
231 my ($pluginfo, $base_dir, $processor, $maxdocs) = @_;
232
[16849]233 $self->SUPER::begin(@_);
[18468]234 $self->ImageConverter::begin(@_);
[16847]235}
236
[14661]237sub get_default_process_exp {
238 my $self = shift (@_);
239
240 return q^\.item$^;
241}
242
243sub get_doctype {
244 my $self = shift(@_);
245
246 return "PagedDocument";
247}
248
249
250# want to block everything except the .item ones
251# but instead we will block images and txt files
252sub get_default_block_exp {
253 my $self = shift (@_);
254
[15018]255 return q^(?i)(\.jpe?g|\.gif|\.png|\.tif?f|\.te?xt|\.html?|~)$^
[16827]256### return q^(?i)(\.jpe?g|\.gif|\.png|\.tif?f|\.te?xt|\.html?|\.css|\.opd|\.pdf|~)$^
[14661]257}
258
[18468]259
[17822]260# want to use BasePlugin's version of this, not ReadXMLFile's
261sub can_process_this_file {
262 my $self = shift(@_);
263
264 return $self->BasePlugin::can_process_this_file(@_);
265}
266
[15914]267# we want to use BasePlugin's read, not ReadXMLFile's
268sub read
269{
[14661]270 my $self = shift (@_);
[16827]271
[15914]272 $self->BasePlugin::read(@_);
[15872]273}
[14661]274
275
[18468]276
[14661]277sub read_into_doc_obj {
278 my $self = shift (@_);
[16384]279 my ($pluginfo, $base_dir, $file, $block_hash, $metadata, $processor, $maxdocs, $total_count, $gli) = @_;
[15872]280 my $outhandle = $self->{'outhandle'};
[16827]281 my $verbosity = $self->{'verbosity'};
[14661]282
[16384]283 my ($filename_full_path, $filename_no_path) = &util::get_full_filenames($base_dir, $file);
[15872]284
285 print $outhandle "PagedImagePlugin processing \"$filename_full_path\"\n"
[16827]286 if $verbosity > 1;
[15872]287 print STDERR "<Processing n='$file' p='PagedImagePlugin'>\n" if ($gli);
[14661]288
[19054]289 $self->{'MaxImageWidth'} = 0;
290 $self->{'MaxImageHeight'} = 0;
[15872]291
[14661]292 # here we need to decide if we have an old text .item file, or a new xml
[15872]293 # .item file
294 my $xml_version = $self->is_xml_item_file($filename_full_path);
295
296 $self->tidy_item_file($filename_full_path);
297
298 my $doc_obj;
299 if ($xml_version) {
300 # careful checking needed here!! are we using local xml handlers or super ones
[16384]301 $self->ReadXMLFile::read($pluginfo, $base_dir, $file, $block_hash, $metadata, $processor, $maxdocs, $total_count, $gli);
[15872]302 $doc_obj = $self->{'doc_obj'};
303 } else {
304 my ($dir);
305 ($dir, $file) = $filename_full_path =~ /^(.*?)([^\/\\]*)$/;
306
307 #process the .item file
308 $doc_obj = $self->process_item($filename_full_path, $dir, $file, $processor);
309
310 }
311
312 my $section = $doc_obj->get_top_section();
313
314 $doc_obj->add_utf8_metadata($section, "Plugin", "$self->{'plugin_type'}");
315 $doc_obj->add_metadata($section, "FileFormat", "PagedImage");
316
317 # include any metadata passed in from previous plugins
318 # note that this metadata is associated with the top level section
319 $self->add_associated_files($doc_obj, $filename_full_path);
320 $self->extra_metadata ($doc_obj, $section, $metadata);
321 $self->auto_extract_metadata ($doc_obj);
322
323 # if we haven't found any Title so far, assign one
324 $self->title_fallback($doc_obj,$section,$filename_no_path);
325
326 $self->add_OID($doc_obj);
327 return (1,$doc_obj);
328}
329
330# for now, the test is if the first non-empty line is <PagedDocument>, then its xml
331sub is_xml_item_file {
332 my $self = shift(@_);
333 my ($filename) = @_;
334
[14661]335 my $xml_version = 0;
336 open (ITEMFILE, $filename) || die "couldn't open $filename\n";
[19999]337
[14661]338 my $line = "";
339 my $num = 0;
[19999]340
[14661]341 $line = <ITEMFILE>;
[19999]342 while (defined ($line) && ($line !~ /\w/)) {
[14661]343 $line = <ITEMFILE>;
344 }
[19999]345
346 if (defined $line) {
347 chomp $line;
348 if ($line =~ /<PagedDocument/) {
349 $xml_version = 1;
350 }
351 }
352
[15872]353 close ITEMFILE;
354 return $xml_version;
355}
356
357sub tidy_item_file {
358 my $self = shift(@_);
359 my ($filename) = @_;
360
[14661]361 open (ITEMFILE, $filename) || die "couldn't open $filename\n";
[15872]362 my $backup_filename = "backup.item";
363 open (BACKUP,">$backup_filename")|| die "couldn't write to $backup_filename\n";
364 my $line = "";
[14661]365 $line = <ITEMFILE>;
366 $line =~ s/^\xEF\xBB\xBF//; # strip BOM
367 $line =~ s/\x0B+//ig;
368 $line =~ s/&/&amp;/g;
369 print BACKUP ($line);
370 #Tidy up the item file some metadata title contains \vt-vertical tab
371 while ($line = <ITEMFILE>) {
372 $line =~ s/\x0B+//ig;
373 $line =~ s/&/&amp;/g;
374 print BACKUP ($line);
375 }
376 close ITEMFILE;
377 close BACKUP;
378 &File::Copy::copy ($backup_filename, $filename);
379 &util::rm($backup_filename);
380
381}
[15914]382
383sub rotate_image {
[14661]384 my $self = shift (@_);
[15914]385 my ($filename_full_path) = @_;
386
387 my ($this_filetype) = $filename_full_path =~ /\.([^\.]*)$/;
388 my $result = $self->convert($filename_full_path, $this_filetype, "-rotate 180", "ROTATE");
389 my ($new_filename) = ($result =~ /=>(.*\.$this_filetype)/);
390 if (-e "$new_filename") {
391 return $new_filename;
392 }
393 # somethings gone wrong
394 return $filename_full_path;
395
[14661]396}
397
[15914]398sub process_image {
399 my $self = shift(@_);
400 my ($filename_full_path, $filename_no_path, $doc_obj, $section, $rotate) = @_;
[20778]401 # check the filenames
402 return 0 if ($filename_no_path eq "" || !-f $filename_full_path);
403
[20791]404 # remember that this image file was one of our source files, but only
405 # if we are not processing a tmp file
406 if (!$self->{'processing_tmp_files'} ) {
407 $doc_obj->associate_source_file($filename_full_path);
408 }
[15914]409 # do rotation
[16827]410 if ((defined $rotate) && ($rotate eq "r")) {
[15914]411 # we get a new temporary file which is rotated
412 $filename_full_path = $self->rotate_image($filename_full_path);
413 }
414
415 # do generate images
[16009]416 my $result = 0;
417 if ($self->{'image_conversion_available'} == 1) {
[16384]418 # do we need to convert $filename_no_path to utf8? We are already reading in from a file, what encoding is it in???
[16009]419 $result = $self->generate_images($filename_full_path, $filename_no_path, $doc_obj, $section);
420 }
[15914]421 #overwrite one set in ImageConverter
422 $doc_obj->set_metadata_element ($section, "FileFormat", "PagedImage");
423 return $result;
424}
425
426
[14661]427sub xml_start_tag {
428 my $self = shift(@_);
429 my ($expat, $element) = @_;
430 $self->{'element'} = $element;
431
432 my $doc_obj = $self->{'doc_obj'};
433 if ($element eq "PagedDocument") {
434 $self->{'current_section'} = $doc_obj->get_top_section();
435 } elsif ($element eq "PageGroup" || $element eq "Page") {
436 # create a new section as a child
437 $self->{'current_section'} = $doc_obj->insert_section($doc_obj->get_end_child($self->{'current_section'}));
438 $self->{'num_pages'}++;
439 # assign pagenum as what??
440 my $pagenum = $_{'pagenum'}; #TODO!!
441 if (defined $pagenum) {
442 $doc_obj->set_utf8_metadata_element($self->{'current_section'}, 'PageNum', $pagenum);
443 }
444 my ($imgfile) = $_{'imgfile'};
445 if (defined $imgfile) {
[16827]446 # *****
447 # What about support for rotate image (e.g. old ':r' notation)?
448 $self->process_image($self->{'xml_file_dir'}.$imgfile, $imgfile, $doc_obj, $self->{'current_section'});
[14661]449 }
450 my ($txtfile) = $_{'txtfile'};
451 if (defined($txtfile)&& $txtfile ne "") {
[16827]452 $self->process_text ($self->{'xml_file_dir'}.$txtfile, $txtfile, $doc_obj, $self->{'current_section'});
[15872]453 } else {
454 $self->add_dummy_text($doc_obj, $self->{'current_section'});
[14661]455 }
456 } elsif ($element eq "Metadata") {
457 $self->{'metadata_name'} = $_{'name'};
458 }
459}
460
461sub xml_end_tag {
462 my $self = shift(@_);
463 my ($expat, $element) = @_;
464
465 my $doc_obj = $self->{'doc_obj'};
466 if ($element eq "Page" || $element eq "PageGroup") {
467 # if Title hasn't been assigned, set PageNum as Title
468 if (!defined $doc_obj->get_metadata_element ($self->{'current_section'}, "Title") && defined $doc_obj->get_metadata_element ($self->{'current_section'}, "PageNum" )) {
469 $doc_obj->add_utf8_metadata ($self->{'current_section'}, "Title", $doc_obj->get_metadata_element ($self->{'current_section'}, "PageNum" ));
470 }
471 # move the current section back to the parent
472 $self->{'current_section'} = $doc_obj->get_parent_section($self->{'current_section'});
473 } elsif ($element eq "Metadata") {
474
475 $doc_obj->add_utf8_metadata ($self->{'current_section'}, $self->{'metadata_name'}, $self->{'metadata_value'});
476 $self->{'metadata_name'} = "";
477 $self->{'metadata_value'} = "";
478
479 }
480 # otherwise we ignore the end tag
481}
482
483
484sub xml_text {
485 my $self = shift(@_);
486 my ($expat) = @_;
487
488 if ($self->{'element'} eq "Metadata" && $self->{'metadata_name'}) {
489 $self->{'metadata_value'} .= $_;
490 }
491}
492
493sub xml_doctype {
494}
495
496sub open_document {
497 my $self = shift(@_);
498
499 # create a new document
[18327]500 $self->{'doc_obj'} = new doc ($self->{'filename'}, "indexed_doc", $self->{'file_rename_method'});
[15872]501 # TODO is file filenmae_no_path??
502 $self->set_initial_doc_fields($self->{'doc_obj'}, $self->{'file'}, $self->{'processor'});
503
[14661]504 my ($dir, $file) = $self->{'filename'} =~ /^(.*?)([^\/\\]*)$/;
[16827]505 $self->{'xml_file_dir'} = $dir;
[14661]506 $self->{'num_pages'} = 0;
507
508}
509
510sub close_document {
511 my $self = shift(@_);
512 my $doc_obj = $self->{'doc_obj'};
513
514 # add numpages metadata
[19054]515 my $topsection = $doc_obj->get_top_section();
[14661]516
[19054]517 $doc_obj->set_utf8_metadata_element ($topsection, 'NumPages', $self->{'num_pages'});
518
519 $doc_obj->set_utf8_metadata_element($topsection,"MaxImageWidth",$self->{'MaxImageWidth'});
520 $doc_obj->set_utf8_metadata_element($topsection,"MaxImageHeight",$self->{'MaxImageHeight'});
521 $self->{'MaxImageWidth'} = undef;
522 $self->{'MaxImageHeight'} = undef;
[14661]523
524}
525
526
[15872]527sub set_initial_doc_fields {
528 my $self = shift(@_);
529 my ($doc_obj, $filename_no_path, $processor) = @_;
530
[14661]531 my $topsection = $doc_obj->get_top_section();
532
533 if ($self->{'documenttype'} eq 'paged') {
534 # set the gsdlthistype metadata to Paged - this ensures this document will
535 # be treated as a Paged doc, even if Titles are not numeric
536 $doc_obj->set_utf8_metadata_element ($topsection, "gsdlthistype", "Paged");
537 } else {
538 $doc_obj->set_utf8_metadata_element ($topsection, "gsdlthistype", "Hierarchy");
539 }
540
[15872]541 $self->set_Source_metadata($doc_obj, $filename_no_path);
542
543 # if we want a header page, we need to add some text into the top section, otherwise this section will become invisible
544 if ($self->{'headerpage'}) {
[15911]545 $self->add_dummy_text($doc_obj, $topsection);
[15872]546 }
[14661]547
[15872]548
549}
550
551
552sub process_item {
553 my $self = shift (@_);
554 my ($filename_full_path, $dir, $filename_no_path, $processor) = @_;
555
[18327]556 my $doc_obj = new doc ($filename_full_path, "indexed_doc", $self->{'file_rename_method'});
[15872]557 $self->set_initial_doc_fields($doc_obj, $filename_no_path, $processor);
558 my $topsection = $doc_obj->get_top_section();
559 open (ITEMFILE, $filename_full_path) || die "couldn't open $filename_full_path\n";
[14661]560 my $line = "";
561 my $num = 0;
562 while (defined ($line = <ITEMFILE>)) {
563 next unless $line =~ /\w/;
564 chomp $line;
565 next if $line =~ /^#/; # ignore comment lines
566 if ($line =~ /^<([^>]*)>\s*(.*?)\s*$/) {
567 $doc_obj->set_utf8_metadata_element ($topsection, $1, $2);
568 #$meta->{$1} = $2;
569 } else {
570 $num++;
571 # line should be like page:imagefilename:textfilename:r - the r is optional -> means rotate the image 180 deg
572 $line =~ s/^\s+//; #remove space at the front
573 $line =~ s/\s+$//; #remove space at the end
574 my ($pagenum, $imgname, $txtname, $rotate) = split /:/, $line;
575
576 # create a new section for each image file
577 my $cursection = $doc_obj->insert_section($doc_obj->get_end_child($topsection));
578 # the page number becomes the Title
579 $doc_obj->set_utf8_metadata_element($cursection, 'Title', $pagenum);
580
581 # process the image for this page if there is one
582 if (defined $imgname && $imgname ne "") {
583 my $result1 = $self->process_image($dir.$imgname, $imgname, $doc_obj, $cursection, $rotate);
584 if (!defined $result1)
585 {
[21721]586 print "PagedImagePlugin: couldn't process image \"$dir$imgname\" for item \"$filename_full_path\"\n";
[14661]587 }
588 }
589 # process the text file if one is there
590 if (defined $txtname && $txtname ne "") {
591 my $result2 = $self->process_text ($dir.$txtname, $txtname, $doc_obj, $cursection);
592
593 if (!defined $result2) {
[15872]594 print "PagedImagePlugin: couldn't process text file \"$dir.$txtname\" for item \"$filename_full_path\"\n";
595 $self->add_dummy_text($doc_obj, $cursection);
[14661]596 }
597 } else {
598 # otherwise add in some dummy text
[15872]599 $self->add_dummy_text($doc_obj, $cursection);
600 }
[14661]601 }
602 }
603
604 close ITEMFILE;
605
606 # add numpages metadata
607 $doc_obj->set_utf8_metadata_element ($topsection, 'NumPages', "$num");
[19054]608
609 $doc_obj->set_utf8_metadata_element($topsection,"MaxImageWidth",$self->{'MaxImageWidth'});
610 $doc_obj->set_utf8_metadata_element($topsection,"MaxImageHeight",$self->{'MaxImageHeight'});
611 $self->{'MaxImageWidth'} = undef;
612 $self->{'MaxImageHeight'} = undef;
613
614
[14661]615 return $doc_obj;
616}
617
618sub process_text {
619 my $self = shift (@_);
[15872]620 my ($filename_full_path, $file, $doc_obj, $cursection) = @_;
[14661]621
622 # check that the text file exists!!
[15872]623 if (!-f $filename_full_path) {
624 print "PagedImagePlugin: ERROR: File $filename_full_path does not exist, skipping\n";
[14661]625 return 0;
626 }
627
[20791]628 # remember that this text file was one of our source files, but only
629 # if we are not processing a tmp file
630 if (!$self->{'processing_tmp_files'} ) {
631 $doc_obj->associate_source_file($filename_full_path);
632 }
[14661]633 # Do encoding stuff
[15872]634 my ($language, $encoding) = $self->textcat_get_language_encoding ($filename_full_path);
[14661]635
636 my $text="";
[15872]637 &ReadTextFile::read_file($self, $filename_full_path, $encoding, $language, \$text);
[14661]638 if (!length ($text)) {
639 # It's a bit unusual but not out of the question to have no text, so just give a warning
[15872]640 print "PagedImagePlugin: WARNING: $filename_full_path contains no text\n";
[14661]641 }
642
643 # we need to escape the escape character, or else mg will convert into
644 # eg literal newlines, instead of leaving the text as '\n'
645 $text =~ s/\\/\\\\/g; # macro language
646 $text =~ s/_/\\_/g; # macro language
[15018]647
648
[16827]649 if ($text =~ m/<html.*?>\s*<head.*?>.*<\/head>\s*<body.*?>(.*)<\/body>\s*<\/html>\s*$/is) {
[15018]650 # looks like HTML input
651 # no need to escape < and > or put in <pre> tags
652
653 $text = $1;
654
655 # insert preformat tags and add text to document object
656 $doc_obj->add_utf8_text($cursection, "$text");
657 }
658 else {
659 $text =~ s/</&lt;/g;
660 $text =~ s/>/&gt;/g;
661
662 # insert preformat tags and add text to document object
663 $doc_obj->add_utf8_text($cursection, "<pre>\n$text\n</pre>");
664 }
665
[14661]666
667 return 1;
668}
669
670
[15872]671sub clean_up_after_doc_obj_processing {
672 my $self = shift(@_);
673
674 $self->ImageConverter::clean_up_temporary_files();
675}
676
[14661]6771;
Note: See TracBrowser for help on using the repository browser.