]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/lyxpreview2bitmap.py
lyxpreview: Simplify the handling of lilypond-book.
[lyx.git] / lib / scripts / lyxpreview2bitmap.py
index 65685cf7524d88c5419ed1a1fdf6c54547bb2845..c4c1844b669e9b6031936e84095d6bd242b23a30 100755 (executable)
 # png or ppm image files, one per previewed snippet.
 
 # Pre-requisites:
+# * python 2.4 or later (subprocess module);
 # * A latex executable;
 # * preview.sty;
 # * dvipng;
+# * dv2dt;
 # * pngtoppm (if outputing ppm format images).
 
 # preview.sty and dvipng are part of the preview-latex project
 # CTAN/support/preview-latex/
 
 # Example usage:
-# lyxpreview2bitmap.py png 0lyxpreview.tex 128 000000 faf0e6
-
-# This script takes six arguments:
-# FORMAT:   The desired output format. Either 'png' or 'ppm'.
-# TEXFILE:  the name of the .tex file to be converted.
-# DPI:      a scale factor, used to ascertain the resolution of the
-#           generated image which is then passed to gs.
-# FG_COLOR: the foreground color as a hexadecimal string, eg '000000'.
-# BG_COLOR: the background color as a hexadecimal string, eg 'faf0e6'.
-# CONVERTER: the converter (optional). Default is latex.
+# lyxpreview2bitmap.py --bg=faf0e6 0lyxpreview.tex
+
+# This script takes one obligatory argument:
+#
+#   <input file>:  The name of the .tex file to be converted.
+#
+# and these optional arguments:
+#
+#   --png, --ppm:  The desired output format. Either 'png' or 'ppm'.
+#   --dpi=<res>:   A scale factor, used to ascertain the resolution of the
+#                  generated image which is then passed to gs.
+#   --fg=<color>:  The foreground color as a hexadecimal string, eg '000000'.
+#   --bg=<color>:  The background color as a hexadecimal string, eg 'faf0e6'.
+#   --latex=<exe>: The converter for latex files. Default is latex.
+#   --bibtex=<exe>: The converter for bibtex files. Default is bibtex.
+#   --lilypond:    Preprocess through lilypond-book. Default is false.
+#   --lilypond-book=<exe>:
+#                  The converter for lytex files. Default is lilypond-book.
+#
+#   -d, --debug    Show the output from external commands.
+#   -h, --help     Show an help screen and exit.
+#   -v, --verbose  Show progress messages.
 
 # Decomposing TEXFILE's name as DIR/BASE.tex, this script will,
 # if executed successfully, leave in DIR:
 # * a file BASE.metrics, containing info needed by LyX to position
 #   the images correctly on the screen.
 
-import glob, os, re, string, sys
+# What does this script do?
+# 1) Call latex/pdflatex/xelatex/whatever (CONVERTER parameter)
+# 2) If the output is a PDF fallback to legacy
+# 3) Otherwise check each page of the DVI (with dv2dt) looking for
+#    PostScript literals, not well supported by dvipng. Pages
+#    containing them are passed to the legacy method in a new LaTeX file.
+# 4) Call dvipng on the pages without PS literals
+# 5) Join metrics info coming from both methods (legacy and dvipng)
+#    and write them to file
 
-from legacy_lyxpreview2ppm import legacy_conversion, \
-     legacy_conversion_step2, legacy_extract_metrics_info
+# dvipng is fast but gives problem in several cases, like with
+# PSTricks, TikZ and other packages using PostScript literals
+# for all these cases the legacy route is taken (step 3).
+# Moreover dvipng can't work with PDF files, so, if the CONVERTER
+# paramter is pdflatex we have to fallback to legacy route (step 2).
 
-from lyxpreview_tools import copyfileobj, error, find_exe, \
-     find_exe_or_terminate, make_texcolor, mkstemp, run_command, warning, \
-     write_metrics_info
+import getopt, glob, os, re, shutil, string, sys
 
+from legacy_lyxpreview2ppm import legacy_conversion_step1
 
-# Pre-compiled regular expressions.
-latex_file_re = re.compile("\.tex$")
+from lyxpreview_tools import bibtex_commands, copyfileobj, error, \
+     filter_pages, find_exe, find_exe_or_terminate, join_metrics_and_rename, \
+     latex_commands, latex_file_re, make_texcolor, mkstemp, pdflatex_commands, \
+     progress, run_command, run_latex, run_tex, warning, write_metrics_info
 
 
 def usage(prog_name):
-    return "Usage: %s <format> <latex file> <dpi> <fg color> <bg color>\n"\
-           "\twhere the colors are hexadecimal strings, eg 'faf0e6'"\
-           % prog_name
-    
+    msg = """
+Usage: %s <options> <input file>
+
+Options:
+  --dpi=<res>:   Resolution per inch (default: 128)
+  --png, --ppm:  Select the output format (default: png)
+  --fg=<color>:  Foreground color (default: black, ie '000000')
+  --bg=<color>:  Background color (default: white, ie 'ffffff')
+  --latex=<exe>: Specify the executable for latex (default: latex)
+  --bibtex=<exe>: Specify the executable for bibtex (default: bibtex)
+  --lilypond:    Preprocess through lilypond-book (default: false)
+  --lilypond-book=<exe>:
+                 The executable for lilypond-book (default: lilypond-book)
+
+  -d, --debug:   Show the output from external commands
+  -h, --help:    Show this help screen and exit
+  -v, --verbose: Show progress messages
+
+The colors are hexadecimal strings, eg 'faf0e6'."""
+    return msg % prog_name
+
 # Returns a list of tuples containing page number and ascent fraction
 # extracted from dvipng output.
 # Use write_metrics_info to create the .metrics file with this info
@@ -103,24 +146,24 @@ def extract_metrics_info(dvipng_stdout):
             if frac < 0:
                 frac = 0.5
 
-        results.append((page, frac))
+        results.append((int(page), frac))
         pos = match.end() + 2
 
     if success == 0:
         error("Failed to extract metrics info from dvipng")
-    
+
     return results
 
 
 def color_pdf(latex_file, bg_color, fg_color):
-    use_preview_pdf_re = re.compile("(\s*\\\\usepackage\[[^]]+)(pdftex\]{preview})")
+    use_preview_pdf_re = re.compile("(\s*\\\\usepackage\[[^]]+)((pdftex|xetex)\]{preview})")
 
     tmp = mkstemp()
-    
+
     fg = ""
     if fg_color != "0.000000,0.000000,0.000000":
         fg = '  \\AtBeginDocument{\\let\\oldpreview\\preview\\renewcommand\\preview{\\oldpreview\\color[rgb]{%s}}}\n' % (fg_color)
-    
+
     success = 0
     try:
         for line in open(latex_file, 'r').readlines():
@@ -148,6 +191,27 @@ def color_pdf(latex_file, bg_color, fg_color):
     return success
 
 
+def fix_latex_file(latex_file):
+    documentclass_re = re.compile("(\\\\documentclass\[)(1[012]pt,?)(.+)")
+
+    tmp = mkstemp()
+
+    changed = 0
+    for line in open(latex_file, 'r').readlines():
+        match = documentclass_re.match(line)
+        if match == None:
+            tmp.write(line)
+            continue
+
+        changed = 1
+        tmp.write("%s%s\n" % (match.group(1), match.group(3)))
+
+    if changed:
+        copyfileobj(tmp, open(latex_file,"wb"), 1)
+
+    return changed
+
+
 def convert_to_ppm_format(pngtopnm, basename):
     png_file_re = re.compile("\.png$")
 
@@ -156,77 +220,28 @@ def convert_to_ppm_format(pngtopnm, basename):
 
         p2p_cmd = '%s "%s"' % (pngtopnm, png_file)
         p2p_status, p2p_stdout = run_command(p2p_cmd)
-        if p2p_status != None:
+        if p2p_status:
             error("Unable to convert %s to ppm format" % png_file)
 
         ppm = open(ppm_file, 'w')
         ppm.write(p2p_stdout)
         os.remove(png_file)
 
-
-def main(argv):
-    # Parse and manipulate the command line arguments.
-    if len(argv) != 6 and len(argv) != 7:
-        error(usage(argv[0]))
-
-    output_format = string.lower(argv[1])
-
-    dir, latex_file = os.path.split(argv[2])
-    if len(dir) != 0:
-        os.chdir(dir)
-
-    dpi = string.atoi(argv[3])
-    fg_color = make_texcolor(argv[4], False)
-    bg_color = make_texcolor(argv[5], False)
-
-    fg_color_gr = make_texcolor(argv[4], True)
-    bg_color_gr = make_texcolor(argv[5], True)
-
-    # External programs used by the script.
-    path = string.split(os.environ["PATH"], os.pathsep)
-    if len(argv) == 7:
-        latex = argv[6]
-    else:
-        latex = find_exe_or_terminate(["latex", "pplatex", "platex", "latex2e"], path)
-
-    # This can go once dvipng becomes widespread.
-    dvipng = find_exe(["dvipng"], path)
-    if dvipng == None:
-        # The data is input to legacy_conversion in as similar
-        # as possible a manner to that input to the code used in
-        # LyX 1.3.x.
-        vec = [ argv[0], argv[2], argv[3], argv[1], argv[4], argv[5], latex ]
-        return legacy_conversion(vec)
-
-    pngtopnm = ""
-    if output_format == "ppm":
-        pngtopnm = find_exe_or_terminate(["pngtopnm"], path)
-
-    # Move color information for PDF into the latex file.
-    if not color_pdf(latex_file, bg_color_gr, fg_color_gr):
-        error("Unable to move color info into the latex file")
-
-    # Compile the latex file.
-    latex_call = '%s "%s"' % (latex, latex_file)
-
-    latex_status, latex_stdout = run_command(latex_call)
-    if latex_status != None:
-        warning("%s had problems compiling %s" \
-              % (os.path.basename(latex), latex_file))
-
-    if latex == "xelatex":
-        warning("Using XeTeX")
-        # FIXME: skip unnecessary dvips trial in legacy_conversion_step2
-        return legacy_conversion_step2(latex_file, dpi, output_format)
-
-    # The dvi output file name
-    dvi_file = latex_file_re.sub(".dvi", latex_file)
+# Returns a tuple of:
+# ps_pages: list of page indexes of pages containing PS literals
+# page_count: total number of pages
+# pages_parameter: parameter for dvipng to exclude pages with PostScript
+def find_ps_pages(dvi_file):
+    # latex failed
+    # FIXME: try with pdflatex
+    if not os.path.isfile(dvi_file):
+        error("No DVI output.")
 
     # Check for PostScript specials in the dvi, badly supported by dvipng
     # This is required for correct rendering of PSTricks and TikZ
-    dv2dt = find_exe_or_terminate(["dv2dt"], path)
+    dv2dt = find_exe_or_terminate(["dv2dt"])
     dv2dt_call = '%s "%s"' % (dv2dt, dvi_file)
+
     # The output from dv2dt goes to stdout
     dv2dt_status, dv2dt_output = run_command(dv2dt_call)
     psliteral_re = re.compile("^special[1-4] [0-9]+ '(\"|ps:)")
@@ -253,12 +268,9 @@ def main(argv):
             # Literal PostScript special detected!
             page_has_ps = True
 
+    # Create the -pp parameter for dvipng
     pages_parameter = ""
-    if len(ps_pages) == page_index:
-        # All pages need PostScript, so directly use the legacy method.
-        vec = [argv[0], argv[2], argv[3], argv[1], argv[4], argv[5], latex]
-        return legacy_conversion(vec)
-    elif len(ps_pages) > 0:
+    if len(ps_pages) > 0 and len(ps_pages) < page_index:
         # Don't process Postscript pages with dvipng by selecting the
         # wanted pages through the -pp parameter. E.g., dvipng -pp 4-12,14,64
         pages_parameter = " -pp "
@@ -295,91 +307,228 @@ def main(argv):
         if (not index in ps_pages) and (not skip) and (last != index):
                 pages_parameter += "-" + str(index)
 
+    return (ps_pages, page_index, pages_parameter)
+
+def main(argv):
+    # Set defaults.
+    dpi = 128
+    fg_color = "000000"
+    bg_color = "ffffff"
+    bibtex = None
+    latex = None
+    lilypond = False
+    lilypond_book = None
+    output_format = "png"
+    script_name = argv[0]
+
+    # Parse and manipulate the command line arguments.
+    try:
+        (opts, args) = getopt.gnu_getopt(argv[1:], "dhv", ["bibtex=", "bg=",
+            "debug", "dpi=", "fg=", "help", "latex=", "lilypond",
+            "lilypond-book=", "png", "ppm", "verbose"])
+    except getopt.GetoptError, err:
+        error("%s\n%s" % (err, usage(script_name)))
+
+    opts.reverse()
+    for opt, val in opts:
+        if opt in ("-h", "--help"):
+            print usage(script_name)
+            sys.exit(0)
+        elif opt == "--bibtex":
+            bibtex = [val]
+        elif opt == "--bg":
+            bg_color = val
+        elif opt in ("-d", "--debug"):
+            import lyxpreview_tools
+            lyxpreview_tools.debug = True
+        elif opt == "--dpi":
+            try:
+                dpi = string.atoi(val)
+            except:
+                error("Cannot convert %s to an integer value" % val)
+        elif opt == "--fg":
+            fg_color = val
+        elif opt == "--latex":
+            latex = [val]
+        elif opt == "--lilypond":
+            lilypond = True
+        elif opt == "--lilypond-book":
+            lilypond_book = [val]
+        elif opt in ("--png", "--ppm"):
+            output_format = opt[2:]
+        elif opt in ("-v", "--verbose"):
+            import lyxpreview_tools
+            lyxpreview_tools.verbose = True
+
+    # Determine input file
+    if len(args) != 1:
+        err = "A single input file is required, %s given" % (len(args) or "none")
+        error("%s\n%s" % (err, usage(script_name)))
+
+    input_path = args[0]
+    dir, latex_file = os.path.split(input_path)
+
+    # Echo the settings
+    progress("Starting %s..." % script_name)
+    progress("Output format: %s" % output_format)
+    progress("Foreground color: %s" % fg_color)
+    progress("Background color: %s" % bg_color)
+    progress("Resolution (dpi): %s" % dpi)
+    progress("File to process: %s" % input_path)
+
+    # Check for the input file
+    if not os.path.exists(input_path):
+        error('File "%s" not found.' % input_path)
+    if len(dir) != 0:
+        os.chdir(dir)
+
+    fg_color_dvipng = make_texcolor(fg_color, False)
+    bg_color_dvipng = make_texcolor(bg_color, False)
+
+    fg_color_gr = make_texcolor(fg_color, True)
+    bg_color_gr = make_texcolor(bg_color, True)
+
+    # External programs used by the script.
+    latex = find_exe_or_terminate(latex or latex_commands)
+    bibtex = find_exe(bibtex or bibtex_commands)
+    if lilypond:
+        lilypond_book = find_exe_or_terminate(lilypond_book or
+            ["lilypond-book --safe"])
+
+    # These flavors of latex are known to produce pdf output
+    pdf_output = latex in pdflatex_commands
+
+    progress("Latex command: %s" % latex)
+    progress("Latex produces pdf output: %s" % pdf_output)
+    progress("Bibtex command: %s" % bibtex)
+    progress("Lilypond-book command: %s" % lilypond_book)
+    progress("Preprocess through lilypond-book: %s" % lilypond)
+    progress("Altering the latex file for font size and colors")
+
+    # Omit font size specification in latex file.
+    if not fix_latex_file(latex_file):
+        warning("Unable to remove font size from the latex file")
+
+    if lilypond:
+        progress("Preprocess the latex file through %s" % lilypond_book)
+        if pdf_output:
+            lilypond_book += " --pdf"
+        lilypond_book += " --latex-program=%s" % latex.split()[0]
+
+        # Make a copy of the latex file
+        lytex_file = latex_file_re.sub(".lytex", latex_file)
+        shutil.copyfile(latex_file, lytex_file)
+
+        # Preprocess the latex file through lilypond-book.
+        lytex_status, lytex_stdout = run_tex(lilypond_book, lytex_file)
+
+    if pdf_output:
+        progress("Using the legacy conversion method (PDF support)")
+        return legacy_conversion_step1(latex_file, dpi, output_format, fg_color,
+            bg_color, latex, pdf_output)
+
+    # This can go once dvipng becomes widespread.
+    dvipng = find_exe(["dvipng"])
+    if dvipng == None:
+        progress("Using the legacy conversion method (dvipng not found)")
+        return legacy_conversion_step1(latex_file, dpi, output_format, fg_color,
+            bg_color, latex, pdf_output)
+
+    dv2dt = find_exe(["dv2dt"])
+    if dv2dt == None:
+        progress("Using the legacy conversion method (dv2dt not found)")
+        return legacy_conversion_step1(latex_file, dpi, output_format, fg_color,
+            bg_color, latex, pdf_output)
+
+    pngtopnm = ""
+    if output_format == "ppm":
+        pngtopnm = find_exe(["pngtopnm"])
+        if pngtopnm == None:
+            progress("Using the legacy conversion method (pngtopnm not found)")
+            return legacy_conversion_step1(latex_file, dpi, output_format,
+                fg_color, bg_color, latex, pdf_output)
+
+    # Move color information for PDF into the latex file.
+    if not color_pdf(latex_file, bg_color_gr, fg_color_gr):
+        warning("Unable to move color info into the latex file")
+
+    # Compile the latex file.
+    latex_status, latex_stdout = run_latex(latex, latex_file, bibtex)
+
+    # The dvi output file name
+    dvi_file = latex_file_re.sub(".dvi", latex_file)
+
+    # If there's no DVI output, look for PDF and go to legacy or fail
+    if not os.path.isfile(dvi_file):
+        # No DVI, is there a PDF?
+        pdf_file = latex_file_re.sub(".pdf", latex_file)
+        if os.path.isfile(pdf_file):
+            progress("%s produced a PDF output, fallback to legacy." \
+                % (os.path.basename(latex)))
+            progress("Using the legacy conversion method (PDF support)")
+            return legacy_conversion_step1(latex_file, dpi, output_format,
+                fg_color, bg_color, latex, True)
+        else:
+            error("No DVI or PDF output. %s failed." \
+                % (os.path.basename(latex)))
+
+    # Look for PS literals in DVI pages
+    # ps_pages: list of page indexes of pages containing PS literals
+    # page_count: total number of pages
+    # pages_parameter: parameter for dvipng to exclude pages with PostScript
+    (ps_pages, page_count, pages_parameter) = find_ps_pages(dvi_file)
+
+    # If all pages need PostScript, directly use the legacy method.
+    if len(ps_pages) == page_count:
+        progress("Using the legacy conversion method (PostScript support)")
+        return legacy_conversion_step1(latex_file, dpi, output_format, fg_color,
+            bg_color, latex, pdf_output)
+
     # Run the dvi file through dvipng.
     dvipng_call = '%s -Ttight -depth -height -D %d -fg "%s" -bg "%s" %s "%s"' \
-                  % (dvipng, dpi, fg_color, bg_color, pages_parameter, dvi_file)
+        % (dvipng, dpi, fg_color_dvipng, bg_color_dvipng, pages_parameter, dvi_file)
     dvipng_status, dvipng_stdout = run_command(dvipng_call)
 
-    if dvipng_status != None:
-        warning("%s failed to generate images from %s ... looking for PDF" \
+    if dvipng_status:
+        warning("%s failed to generate images from %s... fallback to legacy method" \
               % (os.path.basename(dvipng), dvi_file))
-        # FIXME: skip unnecessary dvips trial in legacy_conversion_step2
-        return legacy_conversion_step2(latex_file, dpi, output_format)
+        progress("Using the legacy conversion method (dvipng failed)")
+        return legacy_conversion_step1(latex_file, dpi, output_format, fg_color,
+            bg_color, latex, pdf_output)
 
+    # Extract metrics info from dvipng_stdout.
+    metrics_file = latex_file_re.sub(".metrics", latex_file)
+    dvipng_metrics = extract_metrics_info(dvipng_stdout)
+
+    # If some pages require PostScript pass them to legacy method
     if len(ps_pages) > 0:
-        # Some pages require PostScript.
         # Create a new LaTeX file just for the snippets needing
         # the legacy method
-        original_latex = open(latex_file, "r")
         legacy_latex_file = latex_file_re.sub("_legacy.tex", latex_file)
-        legacy_latex = open(legacy_latex_file, "w")
-
-        page_index = 0
-        skip_page = False
-        for line in original_latex:
-            if line.startswith("\\begin{preview}"):
-                page_index += 1
-                # Skips all pages processed by dvipng
-                skip_page = page_index not in ps_pages
-
-            if not skip_page:
-                legacy_latex.write(line)
-
-            if line.startswith("\\end{preview}"):
-                skip_page = False
-
-        legacy_latex.close()
-        original_latex.close()
+        filter_pages(latex_file, legacy_latex_file, ps_pages)
 
         # Pass the new LaTeX file to the legacy method
-        vec = [ argv[0], latex_file_re.sub("_legacy.tex", argv[2]), \
-                argv[3], argv[1], argv[4], argv[5], latex ]
-        legacy_conversion(vec, True)
+        progress("Pages %s include postscript specials" % ps_pages)
+        progress("Using the legacy conversion method (PostScript support)")
+        legacy_status, legacy_metrics = legacy_conversion_step1(legacy_latex_file,
+            dpi, output_format, fg_color, bg_color, latex, pdf_output, True)
 
         # Now we need to mix metrics data from dvipng and the legacy method
-        metrics_file = latex_file_re.sub(".metrics", latex_file)
-
-        dvipng_metrics = extract_metrics_info(dvipng_stdout)
-        legacy_metrics = legacy_extract_metrics_info(latex_file_re.sub("_legacy.log", latex_file))
-        
-        # Check whether a page is present in dvipng_metrics, otherwise
-        # add it getting the metrics from legacy_metrics
-        legacy_index = -1;
-        for i in range(page_index):
-            # If we exceed the array bounds or the dvipng_metrics doesn't
-            # match the current one, this page belongs to the legacy method
-            if (i > len(dvipng_metrics) - 1) or (dvipng_metrics[i][0] != str(i + 1)):
-                legacy_index += 1
-                
-                # Add this metric from the legacy output
-                dvipng_metrics.insert(i, (str(i + 1), legacy_metrics[legacy_index][1]))
-                # Legacy output filename
-                legacy_output = os.path.join(dir, latex_file_re.sub("_legacy%s.%s" % 
-                    (legacy_metrics[legacy_index][0], output_format), latex_file))
-
-                # Check whether legacy method actually created the file
-                if os.path.isfile(legacy_output):
-                    # Rename the file by removing the "_legacy" suffix
-                    # and adjusting the index
-                    bitmap_output = os.path.join(dir, latex_file_re.sub("%s.%s" % 
-                        (str(i + 1), output_format), latex_file))
-                    os.rename(legacy_output, bitmap_output)
-
-        # Actually create the .metrics file
-        write_metrics_info(dvipng_metrics, metrics_file)
-    else:
-        # Extract metrics info from dvipng_stdout.
-        # In this case we just used dvipng, so no special metrics
-        # handling is needed.
-        metrics_file = latex_file_re.sub(".metrics", latex_file)
-        write_metrics_info(extract_metrics_info(dvipng_stdout), metrics_file)
+        original_bitmap = latex_file_re.sub("%d." + output_format, legacy_latex_file)
+        destination_bitmap = latex_file_re.sub("%d." + output_format, latex_file)
+
+        # Join metrics from dvipng and legacy, and rename legacy bitmaps
+        join_metrics_and_rename(dvipng_metrics, legacy_metrics, ps_pages,
+            original_bitmap, destination_bitmap)
 
     # Convert images to ppm format if necessary.
     if output_format == "ppm":
         convert_to_ppm_format(pngtopnm, latex_file_re.sub("", latex_file))
 
-    return 0
+    # Actually create the .metrics file
+    write_metrics_info(dvipng_metrics, metrics_file)
 
+    return (0, dvipng_metrics)
 
 if __name__ == "__main__":
-    main(sys.argv)
+    sys.exit(main(sys.argv)[0])