1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
|
#+##############################################################################
#
# T2h_l2h.pm: interface to LaTeX2HTML
#
# Copyright (C) 1999-2005 Patrice Dumas <dumas@centre-cired.fr>,
# Derek Price <derek@ximbiot.com>,
# Adrian Aichner <adrian@xemacs.org>,
# & others.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA
#
#-##############################################################################
require 5.0;
use strict;
package Texi2HTML::LaTeX2HTML;
use Cwd;
# latex2html conversions consist of three stages:
# 1) ToLatex: Put "latex" code into a latex file
# 2) ToHtml: Use latex2html to generate corresponding html code and images
# 3) FromHtml: Extract generated code and images from latex2html run
#
# init l2h defaults for files and names
# global variable used for caching
use vars qw(
%l2h_cache
);
my ($l2h_name, $l2h_latex_file, $l2h_cache_file, $l2h_html_file, $l2h_prefix);
# holds the status of latex2html operations. If 0 it means that there was
# an error
my $status = 0;
my $debug;
my $verbose;
my $docu_rdir;
my $docu_name;
my $docu_ext;
my $ERROR = '***';
# init_from_html
my $extract_error_count;
my $invalid_counter_count;
# change_image_file_names
my %l2h_img; # associate src file to destination file
# such that files are not copied twice
my $image_count;
# do_tex
my $html_output_count = 0; # html text outputed in html result file
##########################
#
# First stage: Generation of Latex file
# Initialize with: init
# Add content with: to_latex ($text) --> HTML placeholder comment
# Finish with: finish_to_latex
#
my $l2h_latex_preamble = <<EOT;
% This document was automatically generated by the l2h extenstion of texi2html
% DO NOT EDIT !!!
\\documentclass{article}
\\usepackage{html}
\\begin{document}
EOT
my $l2h_latex_closing = <<EOT;
\\end{document}
EOT
my %l2h_to_latex = (); # associate a latex text with the index in the
# html result array.
my @l2h_to_latex = (); # array used to associate the index with
# the original latex text.
my $latex_count = 0; # number of latex texts really stored
my $latex_converted_count = 0; # number of latex texts passed through latex2html
my $to_latex_count = 0; # total number of latex texts processed
my $cached_count = 0; # number of cached latex texts
%l2h_cache = (); # the cache hash. Associate latex text with
# html from the previous run
my @l2h_from_html; # array of resulting html
my %global_count = (); # associate a command name and the
# corresponding counter to the index in the
# html result array
# set $status to 1, if l2h could be initalized properly, to 0 otherwise
sub init()
{
%l2h_to_latex = (); # associate a latex text with the index in the
# html result array.
@l2h_to_latex = (); # array used to associate the index with
# the original latex text.
$latex_count = 0; # number of latex texts really stored
$latex_converted_count = 0; # number of latex texts passed through latex2html
$to_latex_count = 0; # total number of latex texts processed
$cached_count = 0; # number of cached latex texts
%l2h_cache = (); # the cache hash. Associate latex text with
# html from the previous run
@l2h_from_html = (); # array of resulting html
%global_count = (); # associate a command name and the
# corresponding counter to the index in the
# html result array
$extract_error_count = 0;
$invalid_counter_count = 0;
%l2h_img = (); # associate src file to destination file
# such that files are not copied twice
$image_count = 1;
$html_output_count = 0; # html text outputed in html result file
$status = 0;
$docu_name = $Texi2HTML::THISDOC{'file_base_name'};
$docu_rdir = $Texi2HTML::THISDOC{'destination_directory'};
$docu_rdir = '' if (!defined($docu_rdir));
$docu_ext = $Texi2HTML::THISDOC{'extension'};
$l2h_name = "${docu_name}_l2h";
$l2h_latex_file = "$docu_rdir${l2h_name}.tex";
$l2h_cache_file = "${docu_rdir}${docu_name}-l2h_cache.pm";
# destination dir -- generated images are put there, should be the same
# as dir of enclosing html document --
$l2h_html_file = "$docu_rdir${l2h_name}.html";
$l2h_prefix = "${l2h_name}_";
$debug = $Texi2HTML::THISDOC{'debug_l2h'};
$verbose = $Texi2HTML::Config::VERBOSE;
unless ($Texi2HTML::Config::L2H_SKIP)
{
unless (open(L2H_LATEX, ">$l2h_latex_file"))
{
warn "$ERROR l2h: Can't open latex file '$l2h_latex_file' for writing: $!\n";
$status = 0;
return;
}
warn "# l2h: use ${l2h_latex_file} as latex file\n" if ($verbose);
print L2H_LATEX $l2h_latex_preamble;
}
# open the database that holds cached text
init_cache();
$status = 1;
}
# print text (2nd arg) into latex file (if not already there nor in cache)
# which can be later on replaced by the latex2html generated text.
#
sub to_latex($$$)
{
my $command = shift;
my $text = shift;
my $counter = shift;
if ($command eq 'tex')
{
$text .= ' ';
}
elsif ($command eq 'math')
{
$text = "\$".$text."\$";
}
$to_latex_count++;
$text =~ s/(\s*)$//;
# try whether we have text already on things to do
my $count = $l2h_to_latex{$text};
unless ($count)
{
$latex_count++;
$count = $latex_count;
# try whether we can get it from cache
my $cached_text = from_cache($text);
if (defined($cached_text))
{
$cached_count++;
# put the cached result in the html result array
$l2h_from_html[$count] = $cached_text;
}
else
{
$latex_converted_count++;
unless ($Texi2HTML::Config::L2H_SKIP)
{
print L2H_LATEX "\\begin{rawhtml}\n";
print L2H_LATEX "<!-- l2h_begin $l2h_name $count -->\n";
print L2H_LATEX "\\end{rawhtml}\n";
print L2H_LATEX "$text\n";
print L2H_LATEX "\\begin{rawhtml}\n";
print L2H_LATEX "<!-- l2h_end $l2h_name $count -->\n";
print L2H_LATEX "\\end{rawhtml}\n";
}
}
$l2h_to_latex[$count] = $text;
$l2h_to_latex{$text} = $count;
}
$global_count{"${command}_$counter"} = $count;
return 1;
}
# print closing into latex file and close it
sub finish_to_latex()
{
my $reused = $to_latex_count - $latex_converted_count - $cached_count;
unless ($Texi2HTML::Config::L2H_SKIP)
{
print L2H_LATEX $l2h_latex_closing;
close (L2H_LATEX);
}
warn "# l2h: finished to latex ($cached_count cached, $reused reused, $latex_converted_count to process)\n" if ($verbose);
unless ($latex_count)
{
# no @tex nor @math
finish();
return 0;
}
return 1;
}
###################################
# Second stage: Use latex2html to generate corresponding html code and images
#
# to_html([$l2h_latex_file, [$l2h_html_dir]]):
# Call latex2html on $l2h_latex_file
# Put images (prefixed with $l2h_name."_") and html file(s) in $l2h_html_dir
# Return 1, on success
# 0, otherwise
#
sub to_html()
{
my ($call, $dotbug);
# when there are no tex constructs to convert (happens in case everything
# comes from the cache), there is no latex2html run
if ($Texi2HTML::Config::L2H_SKIP or ($latex_converted_count == 0))
{
warn "# l2h: skipping latex2html run\n" if ($verbose);
return 1;
}
# Check for dot in directory where dvips will work
if ($Texi2HTML::Config::L2H_TMP)
{
if ($Texi2HTML::Config::L2H_TMP =~ /\./)
{
warn "$ERROR Warning l2h: l2h_tmp dir contains a dot. Use /tmp, instead\n";
$dotbug = 1;
}
}
else
{
if (cwd() =~ /\./)
{
warn "$ERROR Warning l2h: current dir contains a dot. Use /tmp as l2h_tmp dir \n";
$dotbug = 1;
}
}
# fix it, if necessary and hope that it works
$Texi2HTML::Config::L2H_TMP = "/tmp" if ($dotbug);
$call = $Texi2HTML::Config::L2H_L2H;
# use init file, if specified
my $init_file = main::locate_init_file($Texi2HTML::Config::L2H_FILE);
$call = $call . " -init_file " . $init_file if ($init_file);
# set output dir
$call .= (($docu_rdir ne '') ? " -dir $docu_rdir" : " -no_subdir");
# use l2h_tmp, if specified
$call .= " -tmp $Texi2HTML::Config::L2H_TMP"
if (defined($Texi2HTML::Config::L2H_TMP) and $Texi2HTML::Config::L2H_TMP ne '');
# use a given html version if specified
$call .= " -html_version $Texi2HTML::Config::L2H_HTML_VERSION"
if (defined($Texi2HTML::Config::L2H_HTML_VERSION) and $Texi2HTML::Config::L2H_HTML_VERSION ne '');
# options we want to be sure of
$call .= " -address 0 -info 0 -split 0 -no_navigation -no_auto_link";
$call .= " -prefix $l2h_prefix $l2h_latex_file";
warn "# l2h: executing '$call'\n" if ($verbose);
if (system($call))
{
warn "$ERROR l2h: '${call}' did not succeed\n";
return 0;
}
else
{
warn "# l2h: latex2html finished successfully\n" if ($verbose);
return 1;
}
}
##########################
# Third stage: Extract generated contents from latex2html run
# Initialize with: init_from_html
# open $l2h_html_file for reading
# reads in contents into array indexed by numbers
# return 1, on success -- 0, otherwise
# Finish with: finish
# closes $l2h_html_dir/$l2h_name.".$docu_ext"
# the images generated by latex2html have names like ${docu_name}_l2h_img?.png
# they are copied to ${docu_name}_?.png, and html is changed accordingly.
# %l2h_img; # associate src file to destination file
# such that files are not copied twice
sub change_image_file_names($)
{
my $content = shift;
my @images = ($content =~ /SRC="(.*?)"/g);
my ($src, $dest);
for $src (@images)
{
$dest = $l2h_img{$src};
unless ($dest)
{
my $ext = '';
if ($src =~ /.*\.(.*)$/ && $1 ne $docu_ext)
{
$ext = ".$1";
}
else
{ # FIXME what is that check about?
warn "$ERROR: L2h image $src has invalid extension\n";
next;
}
while (-e "$docu_rdir${docu_name}_${image_count}$ext")
{
$image_count++;
}
$dest = "${docu_name}_${image_count}$ext";
# FIXME this isn't portable. + error condition not checked.
system("cp -f $docu_rdir$src $docu_rdir$dest");
$l2h_img{$src} = $dest;
# FIXME error condition not checked
unlink "$docu_rdir$src" unless ($debug);
}
$content =~ s/SRC="$src"/SRC="$dest"/g;
}
return $content;
}
sub init_from_html()
{
# when there are no tex constructs to convert (happens in case everything
# comes from the cache), the html file that was generated by previous
# latex2html runs isn't reused.
if ($latex_converted_count == 0)
{
return 1;
}
if (! open(L2H_HTML, "<$l2h_html_file"))
{
warn "$ERROR l2h: Can't open $l2h_html_file for reading\n";
return 0;
}
warn "# l2h: use $l2h_html_file as html file\n" if ($verbose);
my $html_converted_count = 0; # number of html resulting texts
# retrieved in the file
my ($count, $h_line);
while ($h_line = <L2H_HTML>)
{
if ($h_line =~ /^<!-- l2h_begin $l2h_name ([0-9]+) -->/)
{
$count = $1;
my $h_content = '';
my $h_end_found = 0;
while ($h_line = <L2H_HTML>)
{
if ($h_line =~ /^<!-- l2h_end $l2h_name $count -->/)
{
$h_end_found = 1;
chomp $h_content;
chomp $h_content;
$html_converted_count++;
# transform image file names and copy image files
$h_content = change_image_file_names($h_content);
# store result in the html result array
$l2h_from_html[$count] = $h_content;
# also add the result in cache hash
$l2h_cache{$l2h_to_latex[$count]} = $h_content;
last;
}
$h_content = $h_content.$h_line;
}
unless ($h_end_found)
{ # couldn't found the closing comment. Certainly a bug.
warn "$ERROR l2h(BUG): l2h_end $l2h_name $count not found\n";
close(L2H_HTML);
return 0;
}
}
}
# Not the same number of converted elements and retrieved elements
if ($latex_converted_count != $html_converted_count)
{
warn "$ERROR l2h(BUG): waiting for $latex_converted_count elements found $html_converted_count\n";
}
warn "# l2h: Got $html_converted_count of $latex_count html contents\n"
if ($verbose);
close(L2H_HTML);
return 1;
}
# $html_output_count = 0; # html text outputed in html result file
# called each time a construct handled by latex2html is encountered, should
# output the corresponding html
sub do_tex($$$$)
{
my $style = shift;
my $counter = shift;
my $state = shift;
my $count = $global_count{"${style}_$counter"};
################################## begin debug section (incorrect counts)
if (!defined($count))
{
# counter is undefined
$invalid_counter_count++;
warn "$ERROR l2h(BUG): undefined count for ${style}_$counter\n";
return ("<!-- l2h: ". __LINE__ . " undef count for ${style}_$counter -->")
if ($debug);
return '';
}
elsif(($count <= 0) or ($count > $latex_count))
{
# counter out of range
$invalid_counter_count++;
warn "$ERROR l2h(BUG): Request of $count content which is out of valide range [0,$latex_count)\n";
return ("<!-- l2h: ". __LINE__ . " out of range count $count -->")
if ($debug);
return '';
}
################################## end debug section (incorrect counts)
# this seems to be a valid counter
my $result = '';
$result = "<!-- l2h_begin $l2h_name $count -->" if ($debug);
if (defined($l2h_from_html[$count]))
{
$html_output_count++;
# maybe we could also have something if simple_format
# with Texi2HTML::Config::protect_text, once simple_format
# may happen for anything else than lines
if ($state->{'remove_texi'})
{# don't protect anything
$result .= $l2h_to_latex[$count];
}
else
{
$result .= $l2h_from_html[$count];
}
}
else
{
# if the result is not in @l2h_from_html, there is an error somewhere.
$extract_error_count++;
warn "$ERROR l2h(BUG): can't extract content $count from html\n";
# try simple (ordinary) substitution (without l2h)
$result .= "<!-- l2h: ". __LINE__ . " use texi2html -->" if ($debug);
$result .= main::substitute_text({}, undef, $l2h_to_latex[$count]);
}
$result .= "<!-- l2h_end $l2h_name $count -->" if ($debug);
return $result;
}
# store results in the cache and remove temporary files.
sub finish()
{
return unless($status);
if ($verbose)
{
if ($extract_error_count + $invalid_counter_count)
{
warn "# l2h: finished from html ($extract_error_count extract and $invalid_counter_count invalid counter errors)\n";
}
else
{
warn "# l2h: finished from html (no error)\n";
}
if ($html_output_count != $latex_converted_count)
{ # this may happen if @-commands are collected at some places
# but @-command at those places are not expanded later. For
# example @math on @multitable lines.
warn "# l2h: $html_output_count html outputed for $latex_converted_count converted\n";
}
}
store_cache();
if ($Texi2HTML::Config::L2H_CLEAN)
{
local ($_);
warn "# l2h: removing temporary files generated by l2h extension\n"
if $verbose;
while (<"$docu_rdir$l2h_name"*>)
{
# FIXME error condition not checked
unlink $_;
}
}
warn "# l2h: Finished\n" if $verbose;
return 1;
}
# the driver of end of first pass, second pass and beginning of third pass
#
sub latex2html()
{
return unless($status);
return unless ($status = finish_to_latex());
return unless ($status = to_html());
return unless ($status = init_from_html());
}
##############################
# stuff for l2h caching
#
# I tried doing this with a dbm data base, but it did not store all
# keys/values. Hence, I did as latex2html does it
sub init_cache
{
if (-r "$l2h_cache_file")
{
my $rdo = do "$l2h_cache_file";
warn("$ERROR l2h Error: could not load $docu_rdir$l2h_cache_file: $@\n")
unless ($rdo);
}
}
# store all the text obtained through latex2html
sub store_cache
{
return unless $latex_count;
my ($key, $value);
unless (open(FH, ">$l2h_cache_file"))
{
warn "$ERROR l2h Error: could not open $docu_rdir$l2h_cache_file for writing: $!\n";
return;
}
while (($key, $value) = each %l2h_cache)
{
# escape stuff
$key =~ s|/|\\/|g;
$key =~ s|\\\\/|\\/|g;
# weird, a \ at the end of the key results in an error
# maybe this also broke the dbm database stuff
$key =~ s|\\$|\\\\|;
$value =~ s/\|/\\\|/go;
$value =~ s/\\\\\|/\\\|/go;
$value =~ s|\\\\|\\\\\\\\|g;
print FH "\n\$l2h_cache_key = q/$key/;\n";
print FH "\$l2h_cache{\$l2h_cache_key} = q|$value|;\n";
}
print FH "1;";
close (FH);
}
# return cached html, if it exists for text, and if all pictures
# are there, as well
sub from_cache($)
{
my $text = shift;
my $cached = $l2h_cache{$text};
if (defined($cached))
{
while ($cached =~ m/SRC="(.*?)"/g)
{
unless (-e "$docu_rdir$1")
{
return undef;
}
}
return $cached;
}
return undef;
}
1;
|