src/Pure/General/pretty.scala
author wenzelm
Fri, 18 Oct 2024 14:20:09 +0200
changeset 81182 fc5066122e68
parent 81121 7cacedbddba7
child 81294 108284c8cbfd
permissions -rw-r--r--
more inner-syntax markup;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36683
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
     1
/*  Title:      Pure/General/pretty.scala
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
     3
36687
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
     4
Generic pretty printing module.
36683
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
     5
*/
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
     6
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
     7
package isabelle
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
     8
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69867
diff changeset
     9
import scala.annotation.tailrec
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69867
diff changeset
    10
36683
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
    11
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
    12
object Pretty {
61871
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
    13
  /* XML constructors */
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
    14
61874
wenzelm
parents: 61871
diff changeset
    15
  val space: XML.Body = List(XML.Text(Symbol.space))
wenzelm
parents: 61871
diff changeset
    16
  def spaces(n: Int): XML.Body =
wenzelm
parents: 61871
diff changeset
    17
    if (n == 0) Nil
wenzelm
parents: 61871
diff changeset
    18
    else if (n == 1) space
wenzelm
parents: 61871
diff changeset
    19
    else List(XML.Text(Symbol.spaces(n)))
48704
85a3de10567d tuned signature -- make Pretty less dependent on Symbol;
wenzelm
parents: 45666
diff changeset
    20
80940
334625aec7a4 clarified signature;
wenzelm
parents: 80871
diff changeset
    21
  val bullet: XML.Body = XML.elem(Markup.BULLET, space) :: space
334625aec7a4 clarified signature;
wenzelm
parents: 80871
diff changeset
    22
81121
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
    23
  def block(body: XML.Body,
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
    24
    open_block: Boolean = false,
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
    25
    consistent: Boolean = false,
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
    26
    indent: Int = 2
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
    27
  ): XML.Tree = {
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
    28
    val markup = Markup.Block(open_block = open_block, consistent = consistent, indent = indent)
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
    29
    XML.Elem(markup, body)
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
    30
  }
48704
85a3de10567d tuned signature -- make Pretty less dependent on Symbol;
wenzelm
parents: 45666
diff changeset
    31
61871
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
    32
  def brk(width: Int, indent: Int = 0): XML.Tree =
81120
080beab27264 clarified signature;
wenzelm
parents: 80941
diff changeset
    33
    XML.Elem(Markup.Break(width = width, indent = indent), spaces(width))
61871
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
    34
69867
wenzelm
parents: 67896
diff changeset
    35
  val fbrk: XML.Tree = XML.newline
65130
wenzelm
parents: 62820
diff changeset
    36
  def fbreaks(ts: List[XML.Tree]): XML.Body = Library.separate(fbrk, ts)
61871
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
    37
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
    38
  val Separator: XML.Body = List(XML.elem(Markup.SEPARATOR, space), fbrk)
75958
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    39
  def separate(ts: List[XML.Tree], sep: XML.Body = Separator): XML.Body =
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    40
    Library.separate(sep, ts.map(List(_))).flatten
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    41
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    42
  val comma: XML.Body = List(XML.Text(","), brk(1))
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    43
  def commas(ts: List[XML.Tree]): XML.Body = separate(ts, sep = comma)
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    44
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    45
  def `enum`(ts: List[XML.Tree],
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    46
    bg: String = "(",
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    47
    en: String = ")",
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    48
    sep: XML.Body = comma,
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    49
    indent: Int = 2
97445e208419 tuned signature;
wenzelm
parents: 75393
diff changeset
    50
  ): XML.Tree = Pretty.block(XML.enclose(bg, en, separate(ts, sep = sep)), indent = indent)
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
    51
48704
85a3de10567d tuned signature -- make Pretty less dependent on Symbol;
wenzelm
parents: 45666
diff changeset
    52
51492
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51470
diff changeset
    53
  /* text metric -- standardized to width of space */
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51470
diff changeset
    54
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
    55
  abstract class Metric {
51492
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51470
diff changeset
    56
    val unit: Double
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51470
diff changeset
    57
    def apply(s: String): Double
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51470
diff changeset
    58
  }
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51470
diff changeset
    59
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
    60
  object Default_Metric extends Metric {
51492
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51470
diff changeset
    61
    val unit = 1.0
80806
24339db7d22f more accurate Default_Metric;
wenzelm
parents: 80800
diff changeset
    62
    def apply(s: String): Double = Codepoint.length(s).toDouble
51492
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51470
diff changeset
    63
  }
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51470
diff changeset
    64
eaa1c4cc1106 more explicit Pretty.Metric, with clear distinction of unit (space width) vs. average char width (for visual adjustments) -- NB: Pretty formatting works via full space characters (despite a981a5c8a505 and 70f7483df9cb);
wenzelm
parents: 51470
diff changeset
    65
36687
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
    66
  /* markup trees with physical blocks and breaks */
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
    67
62820
5c678ee5d34a proper type;
wenzelm
parents: 62785
diff changeset
    68
  private def force_nat(i: Int): Int = i max 0
5c678ee5d34a proper type;
wenzelm
parents: 62785
diff changeset
    69
61874
wenzelm
parents: 61871
diff changeset
    70
  private sealed abstract class Tree { def length: Double }
wenzelm
parents: 61871
diff changeset
    71
  private case class Block(
80800
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
    72
    markup: Markup,
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
    73
    markup_body: Option[XML.Body],
81121
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
    74
    open_block: Boolean,
80798
f0c754a98e52 tuned whitespace;
wenzelm
parents: 76086
diff changeset
    75
    consistent: Boolean,
f0c754a98e52 tuned whitespace;
wenzelm
parents: 76086
diff changeset
    76
    indent: Int,
f0c754a98e52 tuned whitespace;
wenzelm
parents: 76086
diff changeset
    77
    body: List[Tree],
f0c754a98e52 tuned whitespace;
wenzelm
parents: 76086
diff changeset
    78
    length: Double
f0c754a98e52 tuned whitespace;
wenzelm
parents: 76086
diff changeset
    79
  ) extends Tree
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
    80
  private case class Break(force: Boolean, width: Int, indent: Int) extends Tree {
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
    81
    def length: Double = width.toDouble
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
    82
  }
61874
wenzelm
parents: 61871
diff changeset
    83
  private case class Str(string: String, length: Double) extends Tree
36683
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
    84
61874
wenzelm
parents: 61871
diff changeset
    85
  private val FBreak = Break(true, 1, 0)
36683
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
    86
80940
334625aec7a4 clarified signature;
wenzelm
parents: 80871
diff changeset
    87
  private def make_block(body: List[Tree],
334625aec7a4 clarified signature;
wenzelm
parents: 80871
diff changeset
    88
    markup: Markup = Markup.Empty,
334625aec7a4 clarified signature;
wenzelm
parents: 80871
diff changeset
    89
    markup_body: Option[XML.Body] = None,
81121
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
    90
    open_block: Boolean = false,
80940
334625aec7a4 clarified signature;
wenzelm
parents: 80871
diff changeset
    91
    consistent: Boolean = false,
334625aec7a4 clarified signature;
wenzelm
parents: 80871
diff changeset
    92
    indent: Int = 0
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
    93
  ): Tree = {
62785
70b9c7d4ed7f more robust pretty printing: permissive treatment of bad values;
wenzelm
parents: 61883
diff changeset
    94
    val indent1 = force_nat(indent)
70b9c7d4ed7f more robust pretty printing: permissive treatment of bad values;
wenzelm
parents: 61883
diff changeset
    95
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
    96
    @tailrec def body_length(prts: List[Tree], len: Double): Double = {
61883
c0f34fe6aa61 clarified length of block with pre-existant forced breaks;
wenzelm
parents: 61875
diff changeset
    97
      val (line, rest) =
c0f34fe6aa61 clarified length of block with pre-existant forced breaks;
wenzelm
parents: 61875
diff changeset
    98
        Library.take_prefix[Tree]({ case Break(true, _, _) => false case _ => true }, prts)
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 71781
diff changeset
    99
      val len1 = (line.foldLeft(0.0) { case (l, t) => l + t.length }) max len
71781
3fd54f7f52b0 tuned signature -- avoid warnings;
wenzelm
parents: 71601
diff changeset
   100
      (rest: @unchecked) match {
61883
c0f34fe6aa61 clarified length of block with pre-existant forced breaks;
wenzelm
parents: 61875
diff changeset
   101
        case Break(true, _, ind) :: rest1 =>
62785
70b9c7d4ed7f more robust pretty printing: permissive treatment of bad values;
wenzelm
parents: 61883
diff changeset
   102
          body_length(Break(false, indent1 + ind, 0) :: rest1, len1)
61883
c0f34fe6aa61 clarified length of block with pre-existant forced breaks;
wenzelm
parents: 61875
diff changeset
   103
        case Nil => len1
c0f34fe6aa61 clarified length of block with pre-existant forced breaks;
wenzelm
parents: 61875
diff changeset
   104
      }
c0f34fe6aa61 clarified length of block with pre-existant forced breaks;
wenzelm
parents: 61875
diff changeset
   105
    }
81121
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   106
    Block(markup, markup_body, open_block, consistent, indent1, body, body_length(body, 0.0))
61883
c0f34fe6aa61 clarified length of block with pre-existant forced breaks;
wenzelm
parents: 61875
diff changeset
   107
  }
36683
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
   108
61874
wenzelm
parents: 61871
diff changeset
   109
80845
da20e00050ab tuned comments, following Isabelle/ML;
wenzelm
parents: 80807
diff changeset
   110
  /* no formatting */
76086
338adf8d423c support Pretty.unformatted, similar to ML version;
wenzelm
parents: 75958
diff changeset
   111
80871
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   112
  def output_content(pure: Boolean, output: XML.Body): String =
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   113
    XML.content(if (pure) Protocol_Message.clean_output(output) else output)
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   114
80807
b41c19523a2e tuned signature;
wenzelm
parents: 80806
diff changeset
   115
  def unbreakable(input: XML.Body): XML.Body =
76086
338adf8d423c support Pretty.unformatted, similar to ML version;
wenzelm
parents: 75958
diff changeset
   116
    input flatMap {
338adf8d423c support Pretty.unformatted, similar to ML version;
wenzelm
parents: 75958
diff changeset
   117
      case XML.Wrapped_Elem(markup, body1, body2) =>
80807
b41c19523a2e tuned signature;
wenzelm
parents: 80806
diff changeset
   118
        List(XML.Wrapped_Elem(markup, body1, unbreakable(body2)))
b41c19523a2e tuned signature;
wenzelm
parents: 80806
diff changeset
   119
      case XML.Elem(Markup.Break(width, _), _) => spaces(width)
b41c19523a2e tuned signature;
wenzelm
parents: 80806
diff changeset
   120
      case XML.Elem(markup, body) => List(XML.Elem(markup, unbreakable(body)))
76086
338adf8d423c support Pretty.unformatted, similar to ML version;
wenzelm
parents: 75958
diff changeset
   121
      case XML.Text(text) => XML.string(split_lines(text).mkString(Symbol.space))
338adf8d423c support Pretty.unformatted, similar to ML version;
wenzelm
parents: 75958
diff changeset
   122
    }
80807
b41c19523a2e tuned signature;
wenzelm
parents: 80806
diff changeset
   123
80871
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   124
  def unformatted_string_of(input: XML.Body, pure: Boolean = false): String =
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   125
    output_content(pure, unbreakable(input))
76086
338adf8d423c support Pretty.unformatted, similar to ML version;
wenzelm
parents: 75958
diff changeset
   126
338adf8d423c support Pretty.unformatted, similar to ML version;
wenzelm
parents: 75958
diff changeset
   127
80845
da20e00050ab tuned comments, following Isabelle/ML;
wenzelm
parents: 80807
diff changeset
   128
  /* formatting */
61874
wenzelm
parents: 61871
diff changeset
   129
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
   130
  private sealed case class Text(tx: XML.Body = Nil, pos: Double = 0.0, nl: Int = 0) {
61874
wenzelm
parents: 61871
diff changeset
   131
    def newline: Text = copy(tx = fbrk :: tx, pos = 0.0, nl = nl + 1)
wenzelm
parents: 61871
diff changeset
   132
    def string(s: String, len: Double): Text =
wenzelm
parents: 61871
diff changeset
   133
      copy(tx = if (s == "") tx else XML.Text(s) :: tx, pos = pos + len)
wenzelm
parents: 61871
diff changeset
   134
    def blanks(wd: Int): Text = string(Symbol.spaces(wd), wd.toDouble)
wenzelm
parents: 61871
diff changeset
   135
    def content: XML.Body = tx.reverse
wenzelm
parents: 61871
diff changeset
   136
  }
wenzelm
parents: 61871
diff changeset
   137
wenzelm
parents: 61871
diff changeset
   138
  private def break_dist(trees: List[Tree], after: Double): Double =
wenzelm
parents: 61871
diff changeset
   139
    trees match {
wenzelm
parents: 61871
diff changeset
   140
      case (_: Break) :: _ => 0.0
wenzelm
parents: 61871
diff changeset
   141
      case t :: ts => t.length + break_dist(ts, after)
wenzelm
parents: 61871
diff changeset
   142
      case Nil => after
36689
379f5b1e7f91 replaced slightly odd fbreak markup by plain "\n", which also coincides with regular linebreaks produced outside the ML pretty engine;
wenzelm
parents: 36687
diff changeset
   143
    }
379f5b1e7f91 replaced slightly odd fbreak markup by plain "\n", which also coincides with regular linebreaks produced outside the ML pretty engine;
wenzelm
parents: 36687
diff changeset
   144
61874
wenzelm
parents: 61871
diff changeset
   145
  private def force_break(tree: Tree): Tree =
wenzelm
parents: 61871
diff changeset
   146
    tree match { case Break(false, wd, ind) => Break(true, wd, ind) case _ => tree }
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69867
diff changeset
   147
  private def force_all(trees: List[Tree]): List[Tree] = trees.map(force_break)
51570
3633828d80fc basic support for Pretty.item, which is considered as logical markup and interpreted in Isabelle/Scala, but ignored elsewhere (TTY, latex etc.);
wenzelm
parents: 51569
diff changeset
   148
61874
wenzelm
parents: 61871
diff changeset
   149
  private def force_next(trees: List[Tree]): List[Tree] =
wenzelm
parents: 61871
diff changeset
   150
    trees match {
wenzelm
parents: 61871
diff changeset
   151
      case Nil => Nil
wenzelm
parents: 61871
diff changeset
   152
      case (t: Break) :: ts => force_break(t) :: ts
wenzelm
parents: 61871
diff changeset
   153
      case t :: ts => t :: force_next(ts)
wenzelm
parents: 61871
diff changeset
   154
    }
51570
3633828d80fc basic support for Pretty.item, which is considered as logical markup and interpreted in Isabelle/Scala, but ignored elsewhere (TTY, latex etc.);
wenzelm
parents: 51569
diff changeset
   155
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69867
diff changeset
   156
  val default_margin: Double = 76.0
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 69867
diff changeset
   157
  val default_breakgain: Double = default_margin / 20
36820
0cdfce0bf956 clarified Pretty.font_metrics;
wenzelm
parents: 36818
diff changeset
   158
67547
aefe7a7b330a clarified breakgain: keeping it constant avoids margin fluctuation in Pretty_Tooltip vs. Pretty_Text_Area;
wenzelm
parents: 65130
diff changeset
   159
  def formatted(input: XML.Body,
67896
00797fb82869 clarified signature;
wenzelm
parents: 67547
diff changeset
   160
    margin: Double = default_margin,
00797fb82869 clarified signature;
wenzelm
parents: 67547
diff changeset
   161
    breakgain: Double = default_breakgain,
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
   162
    metric: Metric = Default_Metric
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 73359
diff changeset
   163
  ): XML.Body = {
51569
4e084727faae maintain integer indentation during formatting -- it needs to be implemented by repeated spaces eventually;
wenzelm
parents: 51568
diff changeset
   164
    val emergencypos = (margin / 2).round.toInt
36687
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   165
61874
wenzelm
parents: 61871
diff changeset
   166
    def make_tree(inp: XML.Body): List[Tree] =
wenzelm
parents: 61871
diff changeset
   167
      inp flatMap {
wenzelm
parents: 61871
diff changeset
   168
        case XML.Wrapped_Elem(markup, body1, body2) =>
80940
334625aec7a4 clarified signature;
wenzelm
parents: 80871
diff changeset
   169
          List(make_block(make_tree(body2), markup = markup, markup_body = Some(body1)))
61874
wenzelm
parents: 61871
diff changeset
   170
        case XML.Elem(markup, body) =>
wenzelm
parents: 61871
diff changeset
   171
          markup match {
81121
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   172
            case Markup.Block(open_block, consistent, indent) =>
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   173
              List(
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   174
                make_block(make_tree(body),
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   175
                  open_block = open_block, consistent = consistent, indent = indent))
61874
wenzelm
parents: 61871
diff changeset
   176
            case Markup.Break(width, indent) =>
62785
70b9c7d4ed7f more robust pretty printing: permissive treatment of bad values;
wenzelm
parents: 61883
diff changeset
   177
              List(Break(false, force_nat(width), force_nat(indent)))
61874
wenzelm
parents: 61871
diff changeset
   178
            case Markup(Markup.ITEM, _) =>
80941
fd7a70babec1 more markup <expression kind="item"> in Isabelle/Scala, with pro-forma Markup_Kind.setup in Isabelle/ML;
wenzelm
parents: 80940
diff changeset
   179
              List(make_block(make_tree(bullet ::: body),
fd7a70babec1 more markup <expression kind="item"> in Isabelle/Scala, with pro-forma Markup_Kind.setup in Isabelle/ML;
wenzelm
parents: 80940
diff changeset
   180
                markup = Markup.Expression.item, indent = 2))
61874
wenzelm
parents: 61871
diff changeset
   181
            case _ =>
81121
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   182
              List(make_block(make_tree(body), markup = markup, open_block = true))
61874
wenzelm
parents: 61871
diff changeset
   183
          }
wenzelm
parents: 61871
diff changeset
   184
        case XML.Text(text) =>
wenzelm
parents: 61871
diff changeset
   185
          Library.separate(FBreak, split_lines(text).map(s => Str(s, metric(s))))
36817
ed97e877ff2d more precise pretty printing based on actual font metrics;
wenzelm
parents: 36763
diff changeset
   186
      }
ed97e877ff2d more precise pretty printing based on actual font metrics;
wenzelm
parents: 36763
diff changeset
   187
61871
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
   188
    def format(trees: List[Tree], blockin: Int, after: Double, text: Text): Text =
36687
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   189
      trees match {
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   190
        case Nil => text
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   191
81121
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   192
        case (block: Block) :: ts if block.open_block =>
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   193
          val btext = format(block.body, blockin, break_dist(ts, after), text.copy(tx = Nil))
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   194
          val ts1 = if (text.nl < btext.nl) force_next(ts) else ts
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   195
          val btext1 = btext.copy(tx = XML.Elem(block.markup, btext.content) :: text.tx)
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   196
          format(ts1, blockin, after, btext1)
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   197
7cacedbddba7 support for pretty blocks that are "open" and thus have no impact on formatting, only on markup;
wenzelm
parents: 81120
diff changeset
   198
        case Block(markup, markup_body, _, consistent, indent, body, blen) :: ts =>
51569
4e084727faae maintain integer indentation during formatting -- it needs to be implemented by repeated spaces eventually;
wenzelm
parents: 51568
diff changeset
   199
          val pos1 = (text.pos + indent).ceil.toInt
36687
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   200
          val pos2 = pos1 % emergencypos
61868
wenzelm
parents: 61865
diff changeset
   201
          val blockin1 = if (pos1 < emergencypos) pos1 else pos2
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   202
          val d = break_dist(ts, after)
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   203
          val body1 = if (consistent && text.pos + blen > margin - d) force_all(body) else body
61871
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
   204
          val btext =
80800
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
   205
            if (markup.is_empty && markup_body.isEmpty) format(body1, blockin1, d, text)
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
   206
            else {
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
   207
              val btext0 = format(body1, blockin1, d, text.copy(tx = Nil))
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
   208
              val elem =
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
   209
                markup_body match {
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
   210
                  case None => XML.Elem(markup, btext0.content)
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
   211
                  case Some(body1) => XML.Wrapped_Elem(markup, body1, btext0.content)
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
   212
                }
f52eb69564a4 clarified signature;
wenzelm
parents: 80798
diff changeset
   213
              btext0.copy(tx = elem :: text.tx)
61871
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
   214
            }
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   215
          val ts1 = if (text.nl < btext.nl) force_next(ts) else ts
36687
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   216
          format(ts1, blockin, after, btext)
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   217
61871
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
   218
        case Break(force, wd, ind) :: ts =>
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
   219
          if (!force &&
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
   220
              text.pos + wd <= ((margin - break_dist(ts, after)) max (blockin + breakgain)))
36687
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   221
            format(ts, blockin, after, text.blanks(wd))
61862
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 55551
diff changeset
   222
          else format(ts, blockin, after, text.newline.blanks(blockin + ind))
36687
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   223
61871
2cb4a2970941 more explicit Pretty.Tree, like in ML;
wenzelm
parents: 61868
diff changeset
   224
        case Str(s, len) :: ts => format(ts, blockin, after, text.string(s, len))
36687
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   225
      }
61874
wenzelm
parents: 61871
diff changeset
   226
    format(make_tree(input), 0, 0.0, Text()).content
36687
58020b59baf7 basic formatting of pretty trees;
wenzelm
parents: 36683
diff changeset
   227
  }
36734
d9b10c173330 Pretty.formatted operates directly on XML trees, treating XML.Elem like a pro-forma block of indentation 0, like the ML version;
wenzelm
parents: 36689
diff changeset
   228
67547
aefe7a7b330a clarified breakgain: keeping it constant avoids margin fluctuation in Pretty_Tooltip vs. Pretty_Text_Area;
wenzelm
parents: 65130
diff changeset
   229
  def string_of(input: XML.Body,
80871
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   230
    margin: Double = default_margin,
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   231
    breakgain: Double = default_breakgain,
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   232
    metric: Metric = Default_Metric,
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   233
    pure: Boolean = false
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   234
  ): String = {
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   235
    output_content(pure, formatted(input, margin = margin, breakgain = breakgain, metric = metric))
b71a040ab128 tuned signature: more operations;
wenzelm
parents: 80845
diff changeset
   236
  }
36683
41a1210519fd basic support for symbolic pretty printing;
wenzelm
parents:
diff changeset
   237
}