author | wenzelm |
Sun, 20 Dec 2015 12:50:48 +0100 | |
changeset 61875 | 5348b76aa94c |
parent 61874 | a942e237c9e8 |
child 61883 | c0f34fe6aa61 |
permissions | -rw-r--r-- |
36683 | 1 |
/* Title: Pure/General/pretty.scala |
2 |
Author: Makarius |
|
3 |
||
36687 | 4 |
Generic pretty printing module. |
36683 | 5 |
*/ |
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
10 |
object Pretty |
|
11 |
{ |
|
61871 | 12 |
/* XML constructors */ |
13 |
||
61874 | 14 |
val space: XML.Body = List(XML.Text(Symbol.space)) |
15 |
def spaces(n: Int): XML.Body = |
|
16 |
if (n == 0) Nil |
|
17 |
else if (n == 1) space |
|
18 |
else List(XML.Text(Symbol.spaces(n))) |
|
48704
85a3de10567d
tuned signature -- make Pretty less dependent on Symbol;
wenzelm
parents:
45666
diff
changeset
|
19 |
|
61871 | 20 |
def block(consistent: Boolean, indent: Int, body: XML.Body): XML.Tree = |
21 |
XML.Elem(Markup.Block(consistent, indent), body) |
|
22 |
def block(indent: Int, body: XML.Body): XML.Tree = block(false, indent, body) |
|
23 |
def block(body: XML.Body): XML.Tree = block(2, body) |
|
48704
85a3de10567d
tuned signature -- make Pretty less dependent on Symbol;
wenzelm
parents:
45666
diff
changeset
|
24 |
|
61871 | 25 |
def brk(width: Int, indent: Int = 0): XML.Tree = |
26 |
XML.Elem(Markup.Break(width, indent), spaces(width)) |
|
27 |
||
28 |
val fbrk: XML.Tree = XML.Text("\n") |
|
29 |
||
30 |
val Separator: XML.Body = List(XML.elem(Markup.SEPARATOR, space), fbrk) |
|
31 |
def separate(ts: List[XML.Tree]): XML.Body = Library.separate(Separator, ts.map(List(_))).flatten |
|
61864 | 32 |
|
48704
85a3de10567d
tuned signature -- make Pretty less dependent on Symbol;
wenzelm
parents:
45666
diff
changeset
|
33 |
|
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
|
34 |
/* 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
|
35 |
|
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
|
36 |
abstract class Metric |
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
|
37 |
{ |
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
|
38 |
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
|
39 |
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
|
40 |
} |
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
|
41 |
|
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
|
42 |
object Metric_Default extends Metric |
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
|
43 |
{ |
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
|
44 |
val unit = 1.0 |
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
|
45 |
def apply(s: String): Double = s.length.toDouble |
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
|
46 |
} |
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
|
47 |
|
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
|
48 |
|
36687 | 49 |
/* markup trees with physical blocks and breaks */ |
50 |
||
61874 | 51 |
private sealed abstract class Tree { def length: Double } |
52 |
private case class Block( |
|
61871 | 53 |
markup: Option[(Markup, Option[XML.Body])], |
54 |
consistent: Boolean, indent: Int, body: List[Tree], length: Double) extends Tree |
|
61874 | 55 |
private case class Break(force: Boolean, width: Int, indent: Int) extends Tree |
61871 | 56 |
{ def length: Double = width.toDouble } |
61874 | 57 |
private case class Str(string: String, length: Double) extends Tree |
36683 | 58 |
|
61874 | 59 |
private val FBreak = Break(true, 1, 0) |
36683 | 60 |
|
61874 | 61 |
private def make_block( |
61871 | 62 |
markup: Option[(Markup, Option[XML.Body])], |
63 |
consistent: Boolean, |
|
64 |
indent: Int, |
|
65 |
body: List[Tree]): Tree = |
|
66 |
Block(markup, consistent, indent, body, (0.0 /: body) { case (n, t) => n + t.length }) |
|
36683 | 67 |
|
61874 | 68 |
|
69 |
/* formatted output */ |
|
70 |
||
71 |
private sealed case class Text(tx: XML.Body = Nil, pos: Double = 0.0, nl: Int = 0) |
|
72 |
{ |
|
73 |
def newline: Text = copy(tx = fbrk :: tx, pos = 0.0, nl = nl + 1) |
|
74 |
def string(s: String, len: Double): Text = |
|
75 |
copy(tx = if (s == "") tx else XML.Text(s) :: tx, pos = pos + len) |
|
76 |
def blanks(wd: Int): Text = string(Symbol.spaces(wd), wd.toDouble) |
|
77 |
def content: XML.Body = tx.reverse |
|
78 |
} |
|
79 |
||
80 |
private def break_dist(trees: List[Tree], after: Double): Double = |
|
81 |
trees match { |
|
82 |
case (_: Break) :: _ => 0.0 |
|
83 |
case t :: ts => t.length + break_dist(ts, after) |
|
84 |
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
|
85 |
} |
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
|
86 |
|
61874 | 87 |
private def force_break(tree: Tree): Tree = |
88 |
tree match { case Break(false, wd, ind) => Break(true, wd, ind) case _ => tree } |
|
89 |
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
|
90 |
|
61874 | 91 |
private def force_next(trees: List[Tree]): List[Tree] = |
92 |
trees match { |
|
93 |
case Nil => Nil |
|
94 |
case (t: Break) :: ts => force_break(t) :: ts |
|
95 |
case t :: ts => t :: force_next(ts) |
|
96 |
} |
|
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
|
97 |
|
51493
59d8a1031c00
allow fractional pretty margin -- avoid premature rounding;
wenzelm
parents:
51492
diff
changeset
|
98 |
private val margin_default = 76.0 |
36820 | 99 |
|
51493
59d8a1031c00
allow fractional pretty margin -- avoid premature rounding;
wenzelm
parents:
51492
diff
changeset
|
100 |
def formatted(input: XML.Body, margin: Double = margin_default, |
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
|
101 |
metric: Metric = Metric_Default): XML.Body = |
36687 | 102 |
{ |
103 |
val breakgain = margin / 20 |
|
51569
4e084727faae
maintain integer indentation during formatting -- it needs to be implemented by repeated spaces eventually;
wenzelm
parents:
51568
diff
changeset
|
104 |
val emergencypos = (margin / 2).round.toInt |
36687 | 105 |
|
61874 | 106 |
def make_tree(inp: XML.Body): List[Tree] = |
107 |
inp flatMap { |
|
108 |
case XML.Wrapped_Elem(markup, body1, body2) => |
|
109 |
List(make_block(Some(markup, Some(body1)), false, 0, make_tree(body2))) |
|
110 |
case XML.Elem(markup, body) => |
|
111 |
markup match { |
|
112 |
case Markup.Block(consistent, indent) => |
|
113 |
List(make_block(None, consistent, indent, make_tree(body))) |
|
114 |
case Markup.Break(width, indent) => |
|
115 |
List(Break(false, width, indent)) |
|
116 |
case Markup(Markup.ITEM, _) => |
|
117 |
List(make_block(None, false, 2, |
|
118 |
make_tree(XML.elem(Markup.BULLET, space) :: space ::: body))) |
|
119 |
case _ => |
|
120 |
List(make_block(Some((markup, None)), false, 0, make_tree(body))) |
|
121 |
} |
|
122 |
case XML.Text(text) => |
|
123 |
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
|
124 |
} |
ed97e877ff2d
more precise pretty printing based on actual font metrics;
wenzelm
parents:
36763
diff
changeset
|
125 |
|
61871 | 126 |
def format(trees: List[Tree], blockin: Int, after: Double, text: Text): Text = |
36687 | 127 |
trees match { |
128 |
case Nil => text |
|
129 |
||
61871 | 130 |
case Block(markup, 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
|
131 |
val pos1 = (text.pos + indent).ceil.toInt |
36687 | 132 |
val pos2 = pos1 % emergencypos |
61868 | 133 |
val blockin1 = if (pos1 < emergencypos) pos1 else pos2 |
61864 | 134 |
val d = break_dist(ts, after) |
135 |
val body1 = if (consistent && text.pos + blen > margin - d) force_all(body) else body |
|
61871 | 136 |
val btext = |
137 |
markup match { |
|
138 |
case None => format(body1, blockin1, d, text) |
|
139 |
case Some((m, markup_body)) => |
|
140 |
val btext0 = format(body1, blockin1, d, text.copy(tx = Nil)) |
|
141 |
val elem = |
|
142 |
markup_body match { |
|
143 |
case None => XML.Elem(m, btext0.content) |
|
144 |
case Some(b) => XML.Wrapped_Elem(m, b, btext0.content) |
|
145 |
} |
|
146 |
btext0.copy(tx = elem :: text.tx) |
|
147 |
} |
|
61864 | 148 |
val ts1 = if (text.nl < btext.nl) force_next(ts) else ts |
36687 | 149 |
format(ts1, blockin, after, btext) |
150 |
||
61871 | 151 |
case Break(force, wd, ind) :: ts => |
152 |
if (!force && |
|
153 |
text.pos + wd <= ((margin - break_dist(ts, after)) max (blockin + breakgain))) |
|
36687 | 154 |
format(ts, blockin, after, text.blanks(wd)) |
61862
e2a9e46ac0fb
support pretty break indent, like underlying ML systems;
wenzelm
parents:
55551
diff
changeset
|
155 |
else format(ts, blockin, after, text.newline.blanks(blockin + ind)) |
36687 | 156 |
|
61871 | 157 |
case Str(s, len) :: ts => format(ts, blockin, after, text.string(s, len)) |
36687 | 158 |
} |
61874 | 159 |
format(make_tree(input), 0, 0.0, Text()).content |
36687 | 160 |
} |
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
|
161 |
|
51493
59d8a1031c00
allow fractional pretty margin -- avoid premature rounding;
wenzelm
parents:
51492
diff
changeset
|
162 |
def string_of(input: XML.Body, margin: Double = margin_default, |
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
|
163 |
metric: Metric = Metric_Default): String = |
49416
1053a564dd25
some actual rich text markup via XML.content_markup;
wenzelm
parents:
49414
diff
changeset
|
164 |
XML.content(formatted(input, margin, metric)) |
36683 | 165 |
} |