src/Pure/Thy/latex.scala
author wenzelm
Sat, 20 Nov 2021 18:15:09 +0100
changeset 74823 d6ce4ce20422
parent 74790 3ce6fb9db485
child 74824 6424f74fd9d4
permissions -rw-r--r--
more symbolic latex_output via XML;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/Thy/latex.scala
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
     3
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
     4
Support for LaTeX.
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
     5
*/
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
     6
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
     7
package isabelle
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
     8
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
     9
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
    10
import java.io.{File => JFile}
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
    11
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
    12
import scala.annotation.tailrec
74748
wenzelm
parents: 73783
diff changeset
    13
import scala.collection.mutable
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71164
diff changeset
    14
import scala.util.matching.Regex
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
    15
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
    16
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
    17
object Latex
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
    18
{
74786
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    19
  /* index entries */
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    20
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    21
  def index_escape(str: String): String =
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    22
  {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    23
    val special1 = "!\"@|"
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    24
    val special2 = "\\{}#"
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    25
    if (str.exists(c => special1.contains(c) || special2.contains(c))) {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    26
      val res = new StringBuilder
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    27
      for (c <- str) {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    28
        if (special1.contains(c)) {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    29
          res ++= "\\char"
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    30
          res ++= Value.Int(c)
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    31
        }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    32
        else {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    33
          if (special2.contains(c)) { res += '"'}
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    34
          res += c
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    35
        }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    36
      }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    37
      res.toString
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    38
    }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    39
    else str
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    40
  }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    41
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    42
  object Index_Item
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    43
  {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    44
    sealed case class Value(text: Text, like: String)
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    45
    def unapply(tree: XML.Tree): Option[Value] =
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    46
      tree match {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    47
        case XML.Wrapped_Elem(Markup.Latex_Index_Item(_), text, like) =>
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    48
          Some(Value(text, XML.content(like)))
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    49
        case _ => None
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    50
      }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    51
  }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    52
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    53
  object Index_Entry
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    54
  {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    55
    sealed case class Value(items: List[Index_Item.Value], kind: String)
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    56
    def unapply(tree: XML.Tree): Option[Value] =
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    57
      tree match {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    58
        case XML.Elem(Markup.Latex_Index_Entry(kind), body) =>
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    59
          val items = body.map(Index_Item.unapply)
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    60
          if (items.forall(_.isDefined)) Some(Value(items.map(_.get), kind)) else None
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    61
        case _ => None
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    62
      }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    63
  }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    64
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    65
73780
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
    66
  /* output text and positions */
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
    67
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
    68
  type Text = XML.Body
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
    69
74777
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
    70
  def position(a: String, b: String): String = "%:%" + a + "=" + b + "%:%\n"
73780
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
    71
74777
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
    72
  def init_position(file_pos: String): List[String] =
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
    73
    if (file_pos.isEmpty) Nil
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
    74
    else List("\\endinput\n", position(Markup.FILE, file_pos))
73780
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
    75
74777
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
    76
  class Output
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
    77
  {
74786
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    78
    def latex_output(latex_text: Text): String = apply(latex_text)
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    79
74790
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
    80
    def latex_macro0(name: String): Text =
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
    81
      XML.string("\\" + name)
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
    82
74789
a5c23da73fca clarified signature;
wenzelm
parents: 74786
diff changeset
    83
    def latex_macro(name: String, body: Text): Text =
a5c23da73fca clarified signature;
wenzelm
parents: 74786
diff changeset
    84
      XML.enclose("\\" + name + "{", "}", body)
74786
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    85
74790
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
    86
    def latex_environment(name: String, body: Text): Text =
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
    87
      XML.enclose("%\n\\begin{" + name + "}%\n", "%\n\\end{" + name + "}", body)
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
    88
74823
d6ce4ce20422 more symbolic latex_output via XML;
wenzelm
parents: 74790
diff changeset
    89
    def latex_heading(kind: String, body: Text): Text =
d6ce4ce20422 more symbolic latex_output via XML;
wenzelm
parents: 74790
diff changeset
    90
      XML.enclose("%\n\\isamarkup" + kind + "{", "%\n}\n", body)
d6ce4ce20422 more symbolic latex_output via XML;
wenzelm
parents: 74790
diff changeset
    91
d6ce4ce20422 more symbolic latex_output via XML;
wenzelm
parents: 74790
diff changeset
    92
    def latex_body(kind: String, body: Text): Text =
d6ce4ce20422 more symbolic latex_output via XML;
wenzelm
parents: 74790
diff changeset
    93
      latex_environment("isamarkup" + kind, body)
d6ce4ce20422 more symbolic latex_output via XML;
wenzelm
parents: 74790
diff changeset
    94
74786
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    95
    def index_item(item: Index_Item.Value): String =
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    96
    {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    97
      val like = if (item.like.isEmpty) "" else index_escape(item.like) + "@"
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    98
      val text = index_escape(latex_output(item.text))
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
    99
      like + text
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   100
    }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   101
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   102
    def index_entry(entry: Index_Entry.Value): Text =
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   103
    {
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   104
      val items = entry.items.map(index_item).mkString("!")
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   105
      val kind = if (entry.kind.isEmpty) "" else "|" + index_escape(entry.kind)
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   106
      latex_macro("index", XML.string(items + kind))
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   107
    }
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   108
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   109
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   110
    /* standard output of text with per-line positions */
74784
d2522bb4db1b symbolic latex_output via XML, interpreted in Isabelle/Scala;
wenzelm
parents: 74783
diff changeset
   111
74777
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   112
    def apply(latex_text: Text, file_pos: String = ""): String =
73780
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
   113
    {
74777
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   114
      var line = 1
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   115
      val result = new mutable.ListBuffer[String]
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   116
      val positions = new mutable.ListBuffer[String] ++= init_position(file_pos)
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   117
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   118
      def traverse(body: XML.Body): Unit =
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   119
      {
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   120
        body.foreach {
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   121
          case XML.Text(s) =>
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   122
            line += s.count(_ == '\n')
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   123
            result += s
74783
47f565849e71 tuned signature;
wenzelm
parents: 74777
diff changeset
   124
          case XML.Elem(Markup.Document_Latex(props), body) =>
47f565849e71 tuned signature;
wenzelm
parents: 74777
diff changeset
   125
            for { l <- Position.Line.unapply(props) if positions.nonEmpty } {
47f565849e71 tuned signature;
wenzelm
parents: 74777
diff changeset
   126
              val s = position(Value.Int(line), Value.Int(l))
47f565849e71 tuned signature;
wenzelm
parents: 74777
diff changeset
   127
              if (positions.last != s) positions += s
47f565849e71 tuned signature;
wenzelm
parents: 74777
diff changeset
   128
            }
47f565849e71 tuned signature;
wenzelm
parents: 74777
diff changeset
   129
            traverse(body)
74786
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   130
          case XML.Elem(Markup.Latex_Output(_), body) =>
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   131
            traverse(XML.string(latex_output(body)))
74790
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
   132
          case XML.Elem(Markup.Latex_Macro0(name), Nil) =>
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
   133
            traverse(latex_macro0(name))
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
   134
          case XML.Elem(Markup.Latex_Macro(name), body) =>
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
   135
            traverse(latex_macro(name, body))
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
   136
          case XML.Elem(Markup.Latex_Environment(name), body) =>
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
   137
            traverse(latex_environment(name, body))
74823
d6ce4ce20422 more symbolic latex_output via XML;
wenzelm
parents: 74790
diff changeset
   138
          case XML.Elem(Markup.Latex_Heading(kind), body) =>
d6ce4ce20422 more symbolic latex_output via XML;
wenzelm
parents: 74790
diff changeset
   139
            traverse(latex_heading(kind, body))
d6ce4ce20422 more symbolic latex_output via XML;
wenzelm
parents: 74790
diff changeset
   140
          case XML.Elem(Markup.Latex_Body(kind), body) =>
d6ce4ce20422 more symbolic latex_output via XML;
wenzelm
parents: 74790
diff changeset
   141
            traverse(latex_body(kind, body))
74786
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   142
          case Index_Entry(entry) =>
543f932f64b8 more symbolic latex output;
wenzelm
parents: 74784
diff changeset
   143
            traverse(index_entry(entry))
74790
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
   144
          case t: XML.Tree =>
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
   145
            error("Bad latex markup" +
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
   146
              (if (file_pos.isEmpty) "" else Position.here(Position.File(file_pos))) + ":\n" +
3ce6fb9db485 more symbolic latex_output via XML;
wenzelm
parents: 74789
diff changeset
   147
              XML.string_of_tree(t))
74777
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   148
        }
73780
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
   149
      }
74777
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   150
      traverse(latex_text)
73780
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
   151
74777
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   152
      result ++= positions
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   153
      result.mkString
2fd0c33fe440 clarified signature: Latex.Output as parameter to Document_Build.Engine;
wenzelm
parents: 74748
diff changeset
   154
    }
73780
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
   155
  }
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
   156
466fae6bf22e compose Latex text as XML, output exported YXML in Isabelle/Scala;
wenzelm
parents: 73736
diff changeset
   157
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   158
  /* generated .tex file */
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   159
67184
ecc786cb3b7b more robust range on preceding comment-line;
wenzelm
parents: 67183
diff changeset
   160
  private val File_Pattern = """^%:%file=(.+)%:%$""".r
67194
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   161
  private val Line_Pattern = """^*%:%(\d+)=(\d+)%:%$""".r
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   162
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   163
  def read_tex_file(tex_file: Path): Tex_File =
67194
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   164
  {
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   165
    val positions =
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   166
      Line.logical_lines(File.read(tex_file)).reverse.
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   167
        takeWhile(_ != "\\endinput").reverse
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   168
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   169
    val source_file =
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   170
      positions match {
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   171
        case File_Pattern(file) :: _ => Some(file)
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   172
        case _ => None
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   173
      }
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   174
67194
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   175
    val source_lines =
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   176
      if (source_file.isEmpty) Nil
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   177
      else
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   178
        positions.flatMap(line =>
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   179
          line match {
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   180
            case Line_Pattern(Value.Int(line), Value.Int(source_line)) => Some(line -> source_line)
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   181
            case _ => None
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   182
          })
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   183
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   184
    new Tex_File(tex_file, source_file, source_lines)
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   185
  }
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   186
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   187
  final class Tex_File private[Latex](
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   188
    tex_file: Path, source_file: Option[String], source_lines: List[(Int, Int)])
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   189
  {
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   190
    override def toString: String = tex_file.toString
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   191
67194
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   192
    def source_position(l: Int): Option[Position.T] =
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   193
      source_file match {
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   194
        case None => None
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   195
        case Some(file) =>
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   196
          val source_line =
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 71784
diff changeset
   197
            source_lines.iterator.takeWhile({ case (m, _) => m <= l }).
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 71784
diff changeset
   198
              foldLeft(0) { case (_, (_, n)) => n }
67194
1c0a6a957114 positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents: 67190
diff changeset
   199
          if (source_line == 0) None else Some(Position.Line_File(source_line, file))
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   200
      }
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   201
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   202
    def position(line: Int): Position.T =
67188
bc7a6455e12a simplified positions -- line is also human-readable in generated .tex file;
wenzelm
parents: 67184
diff changeset
   203
      source_position(line) getOrElse Position.Line_File(line, tex_file.implode)
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   204
  }
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   205
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   206
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   207
  /* latex log */
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   208
73782
wenzelm
parents: 73780
diff changeset
   209
  def latex_errors(dir: Path, root_name: String): List[String] =
wenzelm
parents: 73780
diff changeset
   210
  {
wenzelm
parents: 73780
diff changeset
   211
    val root_log_path = dir + Path.explode(root_name).ext("log")
wenzelm
parents: 73780
diff changeset
   212
    if (root_log_path.is_file) {
wenzelm
parents: 73780
diff changeset
   213
      for { (msg, pos) <- filter_errors(dir, File.read(root_log_path)) }
wenzelm
parents: 73780
diff changeset
   214
        yield "Latex error" + Position.here(pos) + ":\n" + Library.indent_lines(2, msg)
wenzelm
parents: 73780
diff changeset
   215
    }
wenzelm
parents: 73780
diff changeset
   216
    else Nil
wenzelm
parents: 73780
diff changeset
   217
  }
wenzelm
parents: 73780
diff changeset
   218
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   219
  def filter_errors(dir: Path, root_log: String): List[(String, Position.T)] =
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   220
  {
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   221
    val seen_files = Synchronized(Map.empty[JFile, Tex_File])
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   222
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   223
    def check_tex_file(path: Path): Option[Tex_File] =
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   224
      seen_files.change_result(seen =>
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   225
        seen.get(path.file) match {
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   226
          case None =>
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   227
            if (path.is_file) {
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   228
              val tex_file = read_tex_file(path)
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   229
              (Some(tex_file), seen + (path.file -> tex_file))
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   230
            }
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   231
            else (None, seen)
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   232
          case some => (some, seen)
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   233
        })
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   234
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   235
    def tex_file_position(path: Path, line: Int): Position.T =
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   236
      check_tex_file(path) match {
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   237
        case Some(tex_file) => tex_file.position(line)
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   238
        case None => Position.Line_File(line, path.implode)
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   239
      }
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   240
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   241
    object File_Line_Error
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   242
    {
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 71164
diff changeset
   243
      val Pattern: Regex = """^(.*?\.\w\w\w):(\d+): (.*)$""".r
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   244
      def unapply(line: String): Option[(Path, Int, String)] =
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   245
        line match {
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   246
          case Pattern(file, Value.Int(line), message) =>
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   247
            val path = File.standard_path(file)
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   248
            if (Path.is_wellformed(path)) {
67183
28227b13a2f1 proper file;
wenzelm
parents: 67182
diff changeset
   249
              val file = (dir + Path.explode(path)).canonical
67423
8bec22c6b0fb tuned messages;
wenzelm
parents: 67418
diff changeset
   250
              val msg = Library.perhaps_unprefix("LaTeX Error: ", message)
8bec22c6b0fb tuned messages;
wenzelm
parents: 67418
diff changeset
   251
              if (file.is_file) Some((file, line, msg)) else None
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   252
            }
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   253
            else None
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   254
          case _ => None
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   255
        }
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   256
    }
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   257
67418
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   258
    val Line_Error = """^l\.\d+ (.*)$""".r
67196
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   259
    val More_Error =
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   260
      List(
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   261
        "<argument>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   262
        "<template>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   263
        "<recently read>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   264
        "<to be read again>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   265
        "<inserted text>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   266
        "<output>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   267
        "<everypar>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   268
        "<everymath>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   269
        "<everydisplay>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   270
        "<everyhbox>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   271
        "<everyvbox>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   272
        "<everyjob>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   273
        "<everycr>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   274
        "<mark>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   275
        "<everyeof>",
eb29f4868d14 more error information according to @<Print type of token list@> in pdfweb.tex;
wenzelm
parents: 67194
diff changeset
   276
        "<write>").mkString("^(?:", "|", ") (.*)$").r
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   277
73474
4e12a6caefb3 turn LaTeX warning into error, for the sake of isabelle.sty/bbbfont;
wenzelm
parents: 73359
diff changeset
   278
    val Bad_Font = """^LaTeX Font Warning: (Font .*\btxmia\b.* undefined).*$""".r
67483
aae933ca6fbd tuned message: same error may occur in different contexts;
wenzelm
parents: 67482
diff changeset
   279
    val Bad_File = """^! LaTeX Error: (File `.*' not found\.)$""".r
67482
dce667537607 detect more errors;
wenzelm
parents: 67423
diff changeset
   280
67423
8bec22c6b0fb tuned messages;
wenzelm
parents: 67418
diff changeset
   281
    val error_ignore =
8bec22c6b0fb tuned messages;
wenzelm
parents: 67418
diff changeset
   282
      Set(
8bec22c6b0fb tuned messages;
wenzelm
parents: 67418
diff changeset
   283
        "See the LaTeX manual or LaTeX Companion for explanation.",
8bec22c6b0fb tuned messages;
wenzelm
parents: 67418
diff changeset
   284
        "Type  H <return>  for immediate help.")
8bec22c6b0fb tuned messages;
wenzelm
parents: 67418
diff changeset
   285
67418
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   286
    def error_suffix1(lines: List[String]): Option[String] =
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   287
    {
71784
8a5da740e388 tuned -- avoid odd compiler warning;
wenzelm
parents: 71601
diff changeset
   288
      val lines1 =
8a5da740e388 tuned -- avoid odd compiler warning;
wenzelm
parents: 71601
diff changeset
   289
        lines.take(20).takeWhile({ case File_Line_Error((_, _, _)) => false case _ => true })
67418
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   290
      lines1.zipWithIndex.collectFirst({
67423
8bec22c6b0fb tuned messages;
wenzelm
parents: 67418
diff changeset
   291
        case (Line_Error(msg), i) =>
8bec22c6b0fb tuned messages;
wenzelm
parents: 67418
diff changeset
   292
          cat_lines(lines1.take(i).filterNot(error_ignore) ::: List(msg)) })
67418
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   293
    }
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   294
    def error_suffix2(lines: List[String]): Option[String] =
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   295
      lines match {
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   296
        case More_Error(msg) :: _ => Some(msg)
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   297
        case _ => None
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   298
      }
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   299
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   300
    @tailrec def filter(lines: List[String], result: List[(String, Position.T)])
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   301
      : List[(String, Position.T)] =
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   302
    {
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   303
      lines match {
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   304
        case File_Line_Error((file, line, msg1)) :: rest1 =>
67183
28227b13a2f1 proper file;
wenzelm
parents: 67182
diff changeset
   305
          val pos = tex_file_position(file, line)
67418
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   306
          val msg2 = error_suffix1(rest1) orElse error_suffix2(rest1) getOrElse ""
5a6ed2e679fb more general error suffixes, e.g. for messages that are broken over several lines;
wenzelm
parents: 67417
diff changeset
   307
          filter(rest1, (Exn.cat_message(msg1, msg2), pos) :: result)
73474
4e12a6caefb3 turn LaTeX warning into error, for the sake of isabelle.sty/bbbfont;
wenzelm
parents: 73359
diff changeset
   308
        case Bad_Font(msg) :: rest =>
4e12a6caefb3 turn LaTeX warning into error, for the sake of isabelle.sty/bbbfont;
wenzelm
parents: 73359
diff changeset
   309
          filter(rest, (msg, Position.none) :: result)
67483
aae933ca6fbd tuned message: same error may occur in different contexts;
wenzelm
parents: 67482
diff changeset
   310
        case Bad_File(msg) :: rest =>
67482
dce667537607 detect more errors;
wenzelm
parents: 67423
diff changeset
   311
          filter(rest, (msg, Position.none) :: result)
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   312
        case _ :: rest => filter(rest, result)
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   313
        case Nil => result.reverse
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   314
      }
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   315
    }
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   316
67174
258e1394e76a more robust Windows support;
wenzelm
parents: 67173
diff changeset
   317
    filter(Line.logical_lines(root_log), Nil)
67173
e746db6db903 more explicit latex errors;
wenzelm
parents: 67172
diff changeset
   318
  }
67172
97d199699a6b some support for LaTeX;
wenzelm
parents:
diff changeset
   319
}