| author | hoelzl | 
| Thu, 22 Sep 2011 10:02:16 -0400 | |
| changeset 45041 | 0523a6be8ade | 
| parent 43684 | 85388f5570c4 | 
| child 45666 | d83797ef0d2d | 
| permissions | -rw-r--r-- | 
| 6118 | 1 | (* Title: Pure/General/pretty.ML | 
| 8806 | 2 | Author: Lawrence C Paulson, Cambridge University Computer Laboratory | 
| 10952 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 3 | Author: Markus Wenzel, TU Munich | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 4 | |
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 5 | Generic pretty printing module. | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 6 | |
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 7 | Loosely based on | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 8 | D. C. Oppen, "Pretty Printing", | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 9 | ACM Transactions on Programming Languages and Systems (1980), 465-483. | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 10 | |
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 11 | The object to be printed is given as a tree with indentation and line | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 12 | breaking information. A "break" inserts a newline if the text until | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 13 | the next break is too long to fit on the current line. After the newline, | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 14 | text is indented to the level of the enclosing block. Normally, if a block | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 15 | is broken then all enclosing blocks will also be broken. Only "inconsistent | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 16 | breaks" are provided. | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 17 | |
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 18 | The stored length of a block is used in breakdist (to treat each inner block as | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 19 | a unit for breaking). | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 20 | *) | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 21 | |
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 22 | signature PRETTY = | 
| 14832 
6589a58f57cb
pp: abstract pretty printing context; string_of/str_of: mark result as raw output; added Pretty.unbreakable;
 wenzelm parents: 
12421diff
changeset | 23 | sig | 
| 40131 
7cbebd636e79
explicitly qualify type Output.output, which is a slightly odd internal feature;
 wenzelm parents: 
38474diff
changeset | 24 | val default_indent: string -> int -> Output.output | 
| 
7cbebd636e79
explicitly qualify type Output.output, which is a slightly odd internal feature;
 wenzelm parents: 
38474diff
changeset | 25 | val add_mode: string -> (string -> int -> Output.output) -> unit | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 26 | type T | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 27 | val str: string -> T | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 28 | val brk: int -> T | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 29 | val fbrk: T | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 30 | val breaks: T list -> T list | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 31 | val fbreaks: T list -> T list | 
| 23645 | 32 | val blk: int * T list -> T | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 33 | val block: T list -> T | 
| 23645 | 34 | val strs: string list -> T | 
| 23617 | 35 | val markup: Markup.T -> T list -> T | 
| 26703 | 36 | val mark: Markup.T -> T -> T | 
| 42266 | 37 | val mark_str: Markup.T * string -> T | 
| 38 | val marks_str: Markup.T list * string -> T | |
| 23617 | 39 | val keyword: string -> T | 
| 40 | val command: string -> T | |
| 23638 | 41 | val markup_chunks: Markup.T -> T list -> T | 
| 18802 | 42 | val chunks: T list -> T | 
| 19266 | 43 | val chunks2: T list -> T | 
| 23617 | 44 | val block_enclose: T * T -> T list -> T | 
| 18802 | 45 | val quote: T -> T | 
| 46 | val backquote: T -> T | |
| 47 | val separate: string -> T list -> T list | |
| 48 | val commas: T list -> T list | |
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 49 | val enclose: string -> string -> T list -> T | 
| 18802 | 50 | val enum: string -> string -> string -> T list -> T | 
| 30620 | 51 | val position: Position.T -> T | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 52 | val list: string -> string -> T list -> T | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 53 | val str_list: string -> string -> string list -> T | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 54 | val big_list: string -> T list -> T | 
| 9730 | 55 | val indent: int -> T -> T | 
| 23645 | 56 | val unbreakable: T -> T | 
| 36745 | 57 | val margin_default: int Unsynchronized.ref | 
| 23645 | 58 | val symbolicN: string | 
| 36745 | 59 | val output_buffer: int option -> T -> Buffer.T | 
| 40131 
7cbebd636e79
explicitly qualify type Output.output, which is a slightly odd internal feature;
 wenzelm parents: 
38474diff
changeset | 60 | val output: int option -> T -> Output.output | 
| 36745 | 61 | val string_of_margin: int -> T -> string | 
| 23645 | 62 | val string_of: T -> string | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 63 | val str_of: T -> string | 
| 23645 | 64 | val writeln: T -> unit | 
| 36748 | 65 | val to_ML: T -> ML_Pretty.pretty | 
| 66 | val from_ML: ML_Pretty.pretty -> T | |
| 14832 
6589a58f57cb
pp: abstract pretty printing context; string_of/str_of: mark result as raw output; added Pretty.unbreakable;
 wenzelm parents: 
12421diff
changeset | 67 | end; | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 68 | |
| 23617 | 69 | structure Pretty: PRETTY = | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 70 | struct | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 71 | |
| 23617 | 72 | (** print mode operations **) | 
| 73 | ||
| 74 | fun default_indent (_: string) = Symbol.spaces; | |
| 75 | ||
| 76 | local | |
| 23698 | 77 |   val default = {indent = default_indent};
 | 
| 43684 | 78 |   val modes = Synchronized.var "Pretty.modes" (Symtab.make [("", default)]);
 | 
| 23617 | 79 | in | 
| 43684 | 80 | fun add_mode name indent = | 
| 81 |     Synchronized.change modes (Symtab.update_new (name, {indent = indent}));
 | |
| 23617 | 82 | fun get_mode () = | 
| 43684 | 83 | the_default default | 
| 84 | (Library.get_first (Symtab.lookup (Synchronized.value modes)) (print_mode_value ())); | |
| 23617 | 85 | end; | 
| 86 | ||
| 87 | fun mode_indent x y = #indent (get_mode ()) x y; | |
| 23645 | 88 | |
| 89 | val output_spaces = Output.output o Symbol.spaces; | |
| 90 | val add_indent = Buffer.add o output_spaces; | |
| 23617 | 91 | |
| 92 | ||
| 10952 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 93 | |
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 94 | (** printing items: compound phrases, strings, and breaks **) | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 95 | |
| 37529 | 96 | abstype T = | 
| 40131 
7cbebd636e79
explicitly qualify type Output.output, which is a slightly odd internal feature;
 wenzelm parents: 
38474diff
changeset | 97 | Block of (Output.output * Output.output) * T list * int * int | 
| 
7cbebd636e79
explicitly qualify type Output.output, which is a slightly odd internal feature;
 wenzelm parents: 
38474diff
changeset | 98 | (*markup output, body, indentation, length*) | 
| 
7cbebd636e79
explicitly qualify type Output.output, which is a slightly odd internal feature;
 wenzelm parents: 
38474diff
changeset | 99 | | String of Output.output * int (*text, length*) | 
| 
7cbebd636e79
explicitly qualify type Output.output, which is a slightly odd internal feature;
 wenzelm parents: 
38474diff
changeset | 100 | | Break of bool * int (*mandatory flag, width if not taken*) | 
| 37529 | 101 | with | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 102 | |
| 23645 | 103 | fun length (Block (_, _, _, len)) = len | 
| 104 | | length (String (_, len)) = len | |
| 105 | | length (Break (_, wd)) = wd; | |
| 106 | ||
| 9730 | 107 | |
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 108 | |
| 23645 | 109 | (** derived operations to create formatting expressions **) | 
| 110 | ||
| 111 | val str = String o Output.output_width; | |
| 112 | ||
| 113 | fun brk wd = Break (false, wd); | |
| 36690 
97d2780ad6f0
uniform treatment of length = 1 for forced breaks, also makes ML/Pretty.length coincide with Scala/XML.content_length;
 wenzelm parents: 
36689diff
changeset | 114 | val fbrk = Break (true, 1); | 
| 23645 | 115 | |
| 116 | fun breaks prts = Library.separate (brk 1) prts; | |
| 117 | fun fbreaks prts = Library.separate fbrk prts; | |
| 118 | ||
| 30667 
53fbf7c679b0
Block markup: maintain output version within tree values (in accordance with String) -- changes operational behaviour wrt. print_mode;
 wenzelm parents: 
30624diff
changeset | 119 | fun block_markup m (indent, es) = | 
| 23645 | 120 | let | 
| 121 | fun sum [] k = k | |
| 122 | | sum (e :: es) k = sum es (length e + k); | |
| 123 | in Block (m, es, indent, sum es 0) end; | |
| 124 | ||
| 30667 
53fbf7c679b0
Block markup: maintain output version within tree values (in accordance with String) -- changes operational behaviour wrt. print_mode;
 wenzelm parents: 
30624diff
changeset | 125 | fun markup_block m arg = block_markup (Markup.output m) arg; | 
| 
53fbf7c679b0
Block markup: maintain output version within tree values (in accordance with String) -- changes operational behaviour wrt. print_mode;
 wenzelm parents: 
30624diff
changeset | 126 | |
| 38474 
e498dc2eb576
uniform Markup.empty/Markup.Empty in ML and Scala;
 wenzelm parents: 
37529diff
changeset | 127 | val blk = markup_block Markup.empty; | 
| 23645 | 128 | fun block prts = blk (2, prts); | 
| 129 | val strs = block o breaks o map str; | |
| 130 | ||
| 131 | fun markup m prts = markup_block m (0, prts); | |
| 42266 | 132 | fun mark m prt = if m = Markup.empty then prt else markup m [prt]; | 
| 133 | fun mark_str (m, s) = mark m (str s); | |
| 134 | fun marks_str (ms, s) = fold_rev mark ms (str s); | |
| 135 | ||
| 136 | fun keyword name = mark_str (Markup.keyword, name); | |
| 137 | fun command name = mark_str (Markup.command, name); | |
| 23645 | 138 | |
| 139 | fun markup_chunks m prts = markup m (fbreaks prts); | |
| 38474 
e498dc2eb576
uniform Markup.empty/Markup.Empty in ML and Scala;
 wenzelm parents: 
37529diff
changeset | 140 | val chunks = markup_chunks Markup.empty; | 
| 23645 | 141 | fun chunks2 prts = blk (0, flat (Library.separate [fbrk, fbrk] (map single prts))); | 
| 142 | ||
| 36733 | 143 | fun block_enclose (prt1, prt2) prts = chunks [block (fbreaks (prt1 :: prts)), prt2]; | 
| 23645 | 144 | |
| 145 | fun quote prt = blk (1, [str "\"", prt, str "\""]); | |
| 146 | fun backquote prt = blk (1, [str "`", prt, str "`"]); | |
| 147 | ||
| 148 | fun separate sep prts = | |
| 149 | flat (Library.separate [str sep, brk 1] (map single prts)); | |
| 150 | ||
| 151 | val commas = separate ","; | |
| 152 | ||
| 153 | fun enclose lpar rpar prts = | |
| 154 | block (str lpar :: (prts @ [str rpar])); | |
| 155 | ||
| 156 | fun enum sep lpar rpar prts = enclose lpar rpar (separate sep prts); | |
| 10952 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 157 | |
| 30620 | 158 | val position = | 
| 159 |   enum "," "{" "}" o map (fn (x, y) => str (x ^ "=" ^ y)) o Position.properties_of;
 | |
| 160 | ||
| 23645 | 161 | val list = enum ","; | 
| 162 | fun str_list lpar rpar strs = list lpar rpar (map str strs); | |
| 163 | ||
| 164 | fun big_list name prts = block (fbreaks (str name :: prts)); | |
| 165 | ||
| 166 | fun indent 0 prt = prt | |
| 167 | | indent n prt = blk (0, [str (Symbol.spaces n), prt]); | |
| 168 | ||
| 169 | fun unbreakable (Break (_, wd)) = String (output_spaces wd, wd) | |
| 170 | | unbreakable (Block (m, es, indent, wd)) = Block (m, map unbreakable es, indent, wd) | |
| 171 | | unbreakable (e as String _) = e; | |
| 172 | ||
| 173 | ||
| 174 | ||
| 175 | (** formatting **) | |
| 176 | ||
| 177 | (* formatted output *) | |
| 178 | ||
| 179 | local | |
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 180 | |
| 17756 | 181 | type text = {tx: Buffer.T, ind: Buffer.T, pos: int, nl: int};
 | 
| 182 | ||
| 183 | val empty: text = | |
| 10952 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 184 |  {tx = Buffer.empty,
 | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 185 | ind = Buffer.empty, | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 186 | pos = 0, | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 187 | nl = 0}; | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 188 | |
| 32784 | 189 | fun newline {tx, ind = _, pos = _, nl} : text =
 | 
| 14832 
6589a58f57cb
pp: abstract pretty printing context; string_of/str_of: mark result as raw output; added Pretty.unbreakable;
 wenzelm parents: 
12421diff
changeset | 190 |  {tx = Buffer.add (Output.output "\n") tx,
 | 
| 10952 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 191 | ind = Buffer.empty, | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 192 | pos = 0, | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 193 | nl = nl + 1}; | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 194 | |
| 23628 
41cdbfb9f77b
markup: emit as control information -- no indent text;
 wenzelm parents: 
23617diff
changeset | 195 | fun control s {tx, ind, pos: int, nl} : text =
 | 
| 
41cdbfb9f77b
markup: emit as control information -- no indent text;
 wenzelm parents: 
23617diff
changeset | 196 |  {tx = Buffer.add s tx,
 | 
| 
41cdbfb9f77b
markup: emit as control information -- no indent text;
 wenzelm parents: 
23617diff
changeset | 197 | ind = ind, | 
| 
41cdbfb9f77b
markup: emit as control information -- no indent text;
 wenzelm parents: 
23617diff
changeset | 198 | pos = pos, | 
| 
41cdbfb9f77b
markup: emit as control information -- no indent text;
 wenzelm parents: 
23617diff
changeset | 199 | nl = nl}; | 
| 
41cdbfb9f77b
markup: emit as control information -- no indent text;
 wenzelm parents: 
23617diff
changeset | 200 | |
| 17756 | 201 | fun string (s, len) {tx, ind, pos: int, nl} : text =
 | 
| 10952 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 202 |  {tx = Buffer.add s tx,
 | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 203 | ind = Buffer.add s ind, | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 204 | pos = pos + len, | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 205 | nl = nl}; | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 206 | |
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 207 | fun blanks wd = string (output_spaces wd, wd); | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 208 | |
| 17756 | 209 | fun indentation (buf, len) {tx, ind, pos, nl} : text =
 | 
| 10952 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 210 | let val s = Buffer.content buf in | 
| 23617 | 211 |    {tx = Buffer.add (mode_indent s len) tx,
 | 
| 10952 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 212 | ind = Buffer.add s ind, | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 213 | pos = pos + len, | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 214 | nl = nl} | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 215 | end; | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 216 | |
| 10952 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 217 | (*Add the lengths of the expressions until the next Break; if no Break then | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 218 | include "after", to account for text following this block.*) | 
| 36687 | 219 | fun breakdist (Break _ :: _, _) = 0 | 
| 220 | | breakdist (Block (_, _, _, len) :: es, after) = len + breakdist (es, after) | |
| 32784 | 221 | | breakdist (String (_, len) :: es, after) = len + breakdist (es, after) | 
| 10952 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 222 | | breakdist ([], after) = after; | 
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 223 | |
| 
b520e4f1313b
support general indentation (e.g. for non-tt latex output);
 wenzelm parents: 
9730diff
changeset | 224 | (*Search for the next break (at this or higher levels) and force it to occur.*) | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 225 | fun forcenext [] = [] | 
| 36690 
97d2780ad6f0
uniform treatment of length = 1 for forced breaks, also makes ML/Pretty.length coincide with Scala/XML.content_length;
 wenzelm parents: 
36689diff
changeset | 226 | | forcenext (Break _ :: es) = fbrk :: es | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 227 | | forcenext (e :: es) = e :: forcenext es; | 
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 228 | |
| 23645 | 229 | in | 
| 19266 | 230 | |
| 36745 | 231 | fun formatted margin input = | 
| 232 | let | |
| 233 | val breakgain = margin div 20; (*minimum added space required of a break*) | |
| 234 | val emergencypos = margin div 2; (*position too far to right*) | |
| 235 | ||
| 236 | (*es is list of expressions to print; | |
| 237 | blockin is the indentation of the current block; | |
| 238 | after is the width of the following context until next break.*) | |
| 239 | fun format ([], _, _) text = text | |
| 240 |       | format (e :: es, block as (_, blockin), after) (text as {ind, pos, nl, ...}) =
 | |
| 241 | (case e of | |
| 242 | Block ((bg, en), bes, indent, _) => | |
| 243 | let | |
| 244 | val pos' = pos + indent; | |
| 245 | val pos'' = pos' mod emergencypos; | |
| 246 | val block' = | |
| 247 | if pos' < emergencypos then (ind |> add_indent indent, pos') | |
| 248 | else (add_indent pos'' Buffer.empty, pos''); | |
| 249 | val btext: text = text | |
| 250 | |> control bg | |
| 251 | |> format (bes, block', breakdist (es, after)) | |
| 252 | |> control en; | |
| 253 | (*if this block was broken then force the next break*) | |
| 254 | val es' = if nl < #nl btext then forcenext es else es; | |
| 255 | in format (es', block, after) btext end | |
| 256 | | Break (force, wd) => | |
| 257 | (*no break if text to next break fits on this line | |
| 258 | or if breaking would add only breakgain to space*) | |
| 259 | format (es, block, after) | |
| 260 | (if not force andalso | |
| 261 | pos + wd <= Int.max (margin - breakdist (es, after), blockin + breakgain) | |
| 262 | then text |> blanks wd (*just insert wd blanks*) | |
| 263 | else text |> newline |> indentation block) | |
| 264 | | String str => format (es, block, after) (string str text)); | |
| 265 | in | |
| 36747 
7361d5dde9ce
discontinued Pretty.setdepth, which appears to be largely unused, but can disrupt important markup if enabled accidentally;
 wenzelm parents: 
36745diff
changeset | 266 | #tx (format ([input], (Buffer.empty, 0), 0) empty) | 
| 36745 | 267 | end; | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 268 | |
| 23645 | 269 | end; | 
| 14832 
6589a58f57cb
pp: abstract pretty printing context; string_of/str_of: mark result as raw output; added Pretty.unbreakable;
 wenzelm parents: 
12421diff
changeset | 270 | |
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 271 | |
| 23645 | 272 | (* special output *) | 
| 18802 | 273 | |
| 23645 | 274 | (*symbolic markup -- no formatting*) | 
| 275 | fun symbolic prt = | |
| 276 | let | |
| 30667 
53fbf7c679b0
Block markup: maintain output version within tree values (in accordance with String) -- changes operational behaviour wrt. print_mode;
 wenzelm parents: 
30624diff
changeset | 277 | fun out (Block ((bg, en), [], _, _)) = Buffer.add bg #> Buffer.add en | 
| 
53fbf7c679b0
Block markup: maintain output version within tree values (in accordance with String) -- changes operational behaviour wrt. print_mode;
 wenzelm parents: 
30624diff
changeset | 278 | | out (Block ((bg, en), prts, indent, _)) = | 
| 
53fbf7c679b0
Block markup: maintain output version within tree values (in accordance with String) -- changes operational behaviour wrt. print_mode;
 wenzelm parents: 
30624diff
changeset | 279 | Buffer.add bg #> Buffer.markup (Markup.block indent) (fold out prts) #> Buffer.add en | 
| 23645 | 280 | | out (String (s, _)) = Buffer.add s | 
| 23787 | 281 | | out (Break (false, wd)) = Buffer.markup (Markup.break wd) (Buffer.add (output_spaces wd)) | 
| 36689 
379f5b1e7f91
replaced slightly odd fbreak markup by plain "\n", which also coincides with regular linebreaks produced outside the ML pretty engine;
 wenzelm parents: 
36687diff
changeset | 282 | | out (Break (true, _)) = Buffer.add (Output.output "\n"); | 
| 23645 | 283 | in out prt Buffer.empty end; | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 284 | |
| 23645 | 285 | (*unformatted output*) | 
| 286 | fun unformatted prt = | |
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 287 | let | 
| 30667 
53fbf7c679b0
Block markup: maintain output version within tree values (in accordance with String) -- changes operational behaviour wrt. print_mode;
 wenzelm parents: 
30624diff
changeset | 288 | fun fmt (Block ((bg, en), prts, _, _)) = Buffer.add bg #> fold fmt prts #> Buffer.add en | 
| 23617 | 289 | | fmt (String (s, _)) = Buffer.add s | 
| 36690 
97d2780ad6f0
uniform treatment of length = 1 for forced breaks, also makes ML/Pretty.length coincide with Scala/XML.content_length;
 wenzelm parents: 
36689diff
changeset | 290 | | fmt (Break (_, wd)) = Buffer.add (output_spaces wd); | 
| 36747 
7361d5dde9ce
discontinued Pretty.setdepth, which appears to be largely unused, but can disrupt important markup if enabled accidentally;
 wenzelm parents: 
36745diff
changeset | 291 | in fmt prt Buffer.empty end; | 
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 292 | |
| 30624 
e755b8b76365
simplified datatype ML_Pretty.pretty: model Isabelle not Poly/ML;
 wenzelm parents: 
30620diff
changeset | 293 | |
| 36748 | 294 | (* output interfaces *) | 
| 30620 | 295 | |
| 36748 | 296 | val margin_default = Unsynchronized.ref 76; (*right margin, or page width*) | 
| 23645 | 297 | |
| 298 | val symbolicN = "pretty_symbolic"; | |
| 299 | ||
| 36745 | 300 | fun output_buffer margin prt = | 
| 23645 | 301 | if print_mode_active symbolicN then symbolic prt | 
| 36745 | 302 | else formatted (the_default (! margin_default) margin) prt; | 
| 23645 | 303 | |
| 36745 | 304 | val output = Buffer.content oo output_buffer; | 
| 305 | fun string_of_margin margin = Output.escape o output (SOME margin); | |
| 306 | val string_of = Output.escape o output NONE; | |
| 23645 | 307 | val str_of = Output.escape o Buffer.content o unformatted; | 
| 308 | val writeln = Output.writeln o string_of; | |
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 309 | |
| 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 310 | |
| 14832 
6589a58f57cb
pp: abstract pretty printing context; string_of/str_of: mark result as raw output; added Pretty.unbreakable;
 wenzelm parents: 
12421diff
changeset | 311 | |
| 36748 | 312 | (** ML toplevel pretty printing **) | 
| 313 | ||
| 314 | fun to_ML (Block (m, prts, ind, _)) = ML_Pretty.Block (m, map to_ML prts, ind) | |
| 315 | | to_ML (String s) = ML_Pretty.String s | |
| 316 | | to_ML (Break b) = ML_Pretty.Break b; | |
| 317 | ||
| 318 | fun from_ML (ML_Pretty.Block (m, prts, ind)) = block_markup m (ind, map from_ML prts) | |
| 319 | | from_ML (ML_Pretty.String s) = String s | |
| 320 | | from_ML (ML_Pretty.Break b) = Break b; | |
| 321 | ||
| 37529 | 322 | end; | 
| 323 | ||
| 6116 
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
 wenzelm parents: diff
changeset | 324 | end; |