| author | wenzelm | 
| Sun, 24 Feb 2013 17:29:55 +0100 | |
| changeset 51268 | fcc4b89a600d | 
| parent 51143 | 0a2371e7ced3 | 
| child 52068 | 1abaea5d5a22 | 
| permissions | -rw-r--r-- | 
| 37744 | 1 | (* Title: Tools/Code/code_printer.ML | 
| 28060 | 2 | Author: Florian Haftmann, TU Muenchen | 
| 3 | ||
| 4 | Generic operations for pretty printing of target language code. | |
| 5 | *) | |
| 6 | ||
| 7 | signature CODE_PRINTER = | |
| 8 | sig | |
| 32908 | 9 | type itype = Code_Thingol.itype | 
| 10 | type iterm = Code_Thingol.iterm | |
| 11 | type const = Code_Thingol.const | |
| 12 | type dict = Code_Thingol.dict | |
| 13 | ||
| 35228 | 14 | val eqn_error: thm option -> string -> 'a | 
| 28060 | 15 | |
| 16 | val @@ : 'a * 'a -> 'a list | |
| 17 | val @| : 'a list * 'a -> 'a list | |
| 18 | val str: string -> Pretty.T | |
| 19 | val concat: Pretty.T list -> Pretty.T | |
| 20 | val brackets: Pretty.T list -> Pretty.T | |
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 21 | val enclose: string -> string -> Pretty.T list -> Pretty.T | 
| 38778 | 22 | val commas: Pretty.T list -> Pretty.T list | 
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 23 | val enum: string -> string -> string -> Pretty.T list -> Pretty.T | 
| 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 24 | val enum_default: string -> string -> string -> string -> Pretty.T list -> Pretty.T | 
| 28060 | 25 | val semicolon: Pretty.T list -> Pretty.T | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 26 | val doublesemicolon: Pretty.T list -> Pretty.T | 
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 27 | val indent: int -> Pretty.T -> Pretty.T | 
| 39056 | 28 | val markup_stmt: string -> Pretty.T -> Pretty.T | 
| 29 | val format: string list -> int -> Pretty.T -> string | |
| 28060 | 30 | |
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 31 | val first_upper: string -> string | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 32 | val first_lower: string -> string | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 33 | type var_ctxt | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 34 | val make_vars: string list -> var_ctxt | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 35 | val intro_vars: string list -> var_ctxt -> var_ctxt | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 36 | val lookup_var: var_ctxt -> string -> string | 
| 32913 | 37 | val intro_base_names: (string -> bool) -> (string -> string) | 
| 38 | -> string list -> var_ctxt -> var_ctxt | |
| 32908 | 39 | val aux_params: var_ctxt -> iterm list list -> string list | 
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 40 | |
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 41 | type literals | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 42 |   val Literals: { literal_char: string -> string, literal_string: string -> string,
 | 
| 37958 
9728342bcd56
another refinement chapter in the neverending numeral story
 haftmann parents: 
37899diff
changeset | 43 | literal_numeral: int -> string, | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 44 | literal_list: Pretty.T list -> Pretty.T, infix_cons: int * string } | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 45 | -> literals | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 46 | val literal_char: literals -> string -> string | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 47 | val literal_string: literals -> string -> string | 
| 34944 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 48 | val literal_numeral: literals -> int -> string | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 49 | val literal_list: literals -> Pretty.T list -> Pretty.T | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 50 | val infix_cons: literals -> int * string | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 51 | |
| 28060 | 52 | type lrx | 
| 53 | val L: lrx | |
| 54 | val R: lrx | |
| 55 | val X: lrx | |
| 56 | type fixity | |
| 57 | val BR: fixity | |
| 58 | val NOBR: fixity | |
| 59 | val INFX: int * lrx -> fixity | |
| 60 | val APP: fixity | |
| 61 | val brackify: fixity -> Pretty.T list -> Pretty.T | |
| 37242 
97097e589715
brackify_infix etc.: no break before infix operator -- eases survival in Scala
 haftmann parents: 
37146diff
changeset | 62 | val brackify_infix: int * lrx -> fixity -> Pretty.T * Pretty.T * Pretty.T -> Pretty.T | 
| 31665 | 63 | val brackify_block: fixity -> Pretty.T -> Pretty.T list -> Pretty.T -> Pretty.T | 
| 50626 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 64 |   val gen_applify: bool -> string -> string -> ('a -> Pretty.T) -> fixity -> Pretty.T -> 'a list -> Pretty.T
 | 
| 37638 | 65 |   val applify: string -> string -> ('a -> Pretty.T) -> fixity -> Pretty.T -> 'a list -> Pretty.T
 | 
| 38922 | 66 | val tuplify: (fixity -> 'a -> Pretty.T) -> fixity -> 'a list -> Pretty.T option | 
| 67 | ||
| 28060 | 68 | type tyco_syntax | 
| 34152 | 69 | type simple_const_syntax | 
| 37881 | 70 | type complex_const_syntax | 
| 28060 | 71 | type const_syntax | 
| 37881 | 72 | type activated_complex_const_syntax | 
| 73 | datatype activated_const_syntax = Plain_const_syntax of int * string | |
| 74 | | Complex_const_syntax of activated_complex_const_syntax | |
| 75 | val requires_args: const_syntax -> int | |
| 76 | val parse_const_syntax: Token.T list -> const_syntax option * Token.T list | |
| 77 | val parse_tyco_syntax: Token.T list -> tyco_syntax option * Token.T list | |
| 78 | val plain_const_syntax: string -> const_syntax | |
| 37876 | 79 | val simple_const_syntax: simple_const_syntax -> const_syntax | 
| 37881 | 80 | val complex_const_syntax: complex_const_syntax -> const_syntax | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 81 | val activate_const_syntax: theory -> literals | 
| 37881 | 82 | -> string -> const_syntax -> Code_Thingol.naming -> activated_const_syntax * Code_Thingol.naming | 
| 35228 | 83 | val gen_print_app: (thm option -> var_ctxt -> const * iterm list -> Pretty.T list) | 
| 84 | -> (thm option -> var_ctxt -> fixity -> iterm -> Pretty.T) | |
| 37876 | 85 | -> (string -> activated_const_syntax option) | 
| 35228 | 86 | -> thm option -> var_ctxt -> fixity -> const * iterm list -> Pretty.T | 
| 87 | val gen_print_bind: (thm option -> var_ctxt -> fixity -> iterm -> Pretty.T) | |
| 88 | -> thm option -> fixity | |
| 31889 | 89 | -> iterm -> var_ctxt -> Pretty.T * var_ctxt | 
| 28060 | 90 | end; | 
| 91 | ||
| 92 | structure Code_Printer : CODE_PRINTER = | |
| 93 | struct | |
| 94 | ||
| 95 | open Code_Thingol; | |
| 96 | ||
| 39034 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 97 | (** generic nonsense *) | 
| 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 98 | |
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 99 | fun eqn_error (SOME thm) s = | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 100 | error (s ^ ",\nin equation " ^ Display.string_of_thm_without_context thm) | 
| 35228 | 101 | | eqn_error NONE s = error s; | 
| 28060 | 102 | |
| 39034 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 103 | val code_presentationN = "code_presentation"; | 
| 39057 
c6d146ed07ae
manage statement selection for presentation wholly through markup
 haftmann parents: 
39056diff
changeset | 104 | val stmt_nameN = "stmt_name"; | 
| 39034 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 105 | val _ = Markup.add_mode code_presentationN YXML.output_markup; | 
| 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 106 | |
| 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 107 | |
| 34071 | 108 | (** assembling and printing text pieces **) | 
| 28060 | 109 | |
| 110 | infixr 5 @@; | |
| 111 | infixr 5 @|; | |
| 112 | fun x @@ y = [x, y]; | |
| 113 | fun xs @| y = xs @ [y]; | |
| 39660 | 114 | val str = Print_Mode.setmp [] Pretty.str; | 
| 28060 | 115 | val concat = Pretty.block o Pretty.breaks; | 
| 39660 | 116 | val commas = Print_Mode.setmp [] Pretty.commas; | 
| 117 | fun enclose l r = Print_Mode.setmp [] (Pretty.enclose l r); | |
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 118 | val brackets = enclose "(" ")" o Pretty.breaks;
 | 
| 39660 | 119 | fun enum sep l r = Print_Mode.setmp [] (Pretty.enum sep l r); | 
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 120 | fun enum_default default sep l r [] = str default | 
| 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 121 | | enum_default default sep l r xs = enum sep l r xs; | 
| 28060 | 122 | fun semicolon ps = Pretty.block [concat ps, str ";"]; | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 123 | fun doublesemicolon ps = Pretty.block [concat ps, str ";;"]; | 
| 39660 | 124 | fun indent i = Print_Mode.setmp [] (Pretty.indent i); | 
| 28060 | 125 | |
| 39660 | 126 | fun markup_stmt name = Print_Mode.setmp [code_presentationN] | 
| 39069 | 127 | (Pretty.mark (code_presentationN, [(stmt_nameN, name)])); | 
| 39062 | 128 | |
| 39558 | 129 | fun filter_presentation [] tree = | 
| 130 | Buffer.empty | |
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 131 | |> fold XML.add_content tree | 
| 39558 | 132 | | filter_presentation presentation_names tree = | 
| 39057 
c6d146ed07ae
manage statement selection for presentation wholly through markup
 haftmann parents: 
39056diff
changeset | 133 | let | 
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 134 | fun is_selected (name, attrs) = | 
| 39558 | 135 | name = code_presentationN | 
| 136 | andalso member (op =) presentation_names (the (Properties.get attrs stmt_nameN)); | |
| 137 | fun add_content_with_space tree (is_first, buf) = | |
| 138 | buf | |
| 139 | |> not is_first ? Buffer.add "\n\n" | |
| 140 | |> XML.add_content tree | |
| 141 | |> pair false; | |
| 142 | fun filter (XML.Elem (name_attrs, xs)) = | |
| 143 | fold (if is_selected name_attrs then add_content_with_space else filter) xs | |
| 47576 | 144 | | filter (XML.Text _) = I; | 
| 39558 | 145 | in snd (fold filter tree (true, Buffer.empty)) end; | 
| 39062 | 146 | |
| 147 | fun format presentation_names width = | |
| 39660 | 148 | Print_Mode.setmp [code_presentationN] (Pretty.string_of_margin width) | 
| 39062 | 149 | #> YXML.parse_body | 
| 39558 | 150 | #> filter_presentation presentation_names | 
| 39678 | 151 | #> Buffer.add "\n" | 
| 39558 | 152 | #> Buffer.content; | 
| 34071 | 153 | |
| 28060 | 154 | |
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 155 | (** names and variable name contexts **) | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 156 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 157 | type var_ctxt = string Symtab.table * Name.context; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 158 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 159 | fun make_vars names = (fold (fn name => Symtab.update_new (name, name)) names Symtab.empty, | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 160 | Name.make_context names); | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 161 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 162 | fun intro_vars names (namemap, namectxt) = | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 163 | let | 
| 43326 
47cf4bc789aa
simplified Name.variant -- discontinued builtin fold_map;
 wenzelm parents: 
43324diff
changeset | 164 | val (names', namectxt') = fold_map Name.variant names namectxt; | 
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 165 | val namemap' = fold2 (curry Symtab.update) names names' namemap; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 166 | in (namemap', namectxt') end; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 167 | |
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 168 | fun lookup_var (namemap, _) name = | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 169 | case Symtab.lookup namemap name of | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 170 | SOME name' => name' | 
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 171 |   | NONE => error ("Invalid name in context: " ^ quote name);
 | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 172 | |
| 40627 
becf5d5187cc
renamed raw "explode" function to "raw_explode" to emphasize its meaning;
 wenzelm parents: 
39678diff
changeset | 173 | val first_upper = implode o nth_map 0 Symbol.to_ascii_upper o raw_explode; | 
| 
becf5d5187cc
renamed raw "explode" function to "raw_explode" to emphasize its meaning;
 wenzelm parents: 
39678diff
changeset | 174 | val first_lower = implode o nth_map 0 Symbol.to_ascii_lower o raw_explode; | 
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 175 | |
| 32908 | 176 | fun aux_params vars lhss = | 
| 177 | let | |
| 178 | fun fish_param _ (w as SOME _) = w | |
| 179 | | fish_param (IVar (SOME v)) NONE = SOME v | |
| 180 | | fish_param _ NONE = NONE; | |
| 181 | fun fillup_param _ (_, SOME v) = v | |
| 182 | | fillup_param x (i, NONE) = x ^ string_of_int i; | |
| 183 | val fished1 = fold (map2 fish_param) lhss (replicate (length (hd lhss)) NONE); | |
| 43324 
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
 wenzelm parents: 
40627diff
changeset | 184 | val x = singleton (Name.variant_list (map_filter I fished1)) "x"; | 
| 32908 | 185 | val fished2 = map_index (fillup_param x) fished1; | 
| 43326 
47cf4bc789aa
simplified Name.variant -- discontinued builtin fold_map;
 wenzelm parents: 
43324diff
changeset | 186 | val (fished3, _) = fold_map Name.variant fished2 Name.context; | 
| 32908 | 187 | val vars' = intro_vars fished3 vars; | 
| 188 | in map (lookup_var vars') fished3 end; | |
| 189 | ||
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 190 | fun intro_base_names no_syntax deresolve names = names | 
| 32913 | 191 | |> map_filter (fn name => if no_syntax name then | 
| 192 | let val name' = deresolve name in | |
| 193 | if Long_Name.is_qualified name' then NONE else SOME name' | |
| 194 | end else NONE) | |
| 195 | |> intro_vars; | |
| 196 | ||
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 197 | |
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 198 | (** pretty literals **) | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 199 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 200 | datatype literals = Literals of {
 | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 201 | literal_char: string -> string, | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 202 | literal_string: string -> string, | 
| 34944 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 203 | literal_numeral: int -> string, | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 204 | literal_list: Pretty.T list -> Pretty.T, | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 205 | infix_cons: int * string | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 206 | }; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 207 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 208 | fun dest_Literals (Literals lits) = lits; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 209 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 210 | val literal_char = #literal_char o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 211 | val literal_string = #literal_string o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 212 | val literal_numeral = #literal_numeral o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 213 | val literal_list = #literal_list o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 214 | val infix_cons = #infix_cons o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 215 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 216 | |
| 28060 | 217 | (** syntax printer **) | 
| 218 | ||
| 219 | (* binding priorities *) | |
| 220 | ||
| 221 | datatype lrx = L | R | X; | |
| 222 | ||
| 223 | datatype fixity = | |
| 224 | BR | |
| 225 | | NOBR | |
| 226 | | INFX of (int * lrx); | |
| 227 | ||
| 228 | val APP = INFX (~1, L); | |
| 229 | ||
| 230 | fun fixity_lrx L L = false | |
| 231 | | fixity_lrx R R = false | |
| 232 | | fixity_lrx _ _ = true; | |
| 233 | ||
| 234 | fun fixity NOBR _ = false | |
| 235 | | fixity _ NOBR = false | |
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 236 | | fixity (INFX (pr, lr)) (INFX (print_ctxt, lr_ctxt)) = | 
| 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 237 | pr < print_ctxt | 
| 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 238 | orelse pr = print_ctxt | 
| 28060 | 239 | andalso fixity_lrx lr lr_ctxt | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 240 | orelse print_ctxt = ~1 | 
| 28060 | 241 | | fixity BR (INFX _) = false | 
| 242 | | fixity _ _ = true; | |
| 243 | ||
| 244 | fun gen_brackify _ [p] = p | |
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 245 |   | gen_brackify true (ps as _::_) = enclose "(" ")" ps
 | 
| 28060 | 246 | | gen_brackify false (ps as _::_) = Pretty.block ps; | 
| 247 | ||
| 248 | fun brackify fxy_ctxt = | |
| 249 | gen_brackify (fixity BR fxy_ctxt) o Pretty.breaks; | |
| 250 | ||
| 37242 
97097e589715
brackify_infix etc.: no break before infix operator -- eases survival in Scala
 haftmann parents: 
37146diff
changeset | 251 | fun brackify_infix infx fxy_ctxt (l, m, r) = | 
| 50627 | 252 | gen_brackify (fixity (INFX infx) fxy_ctxt) [l, str " ", m, Pretty.brk 1, r]; | 
| 28060 | 253 | |
| 31665 | 254 | fun brackify_block fxy_ctxt p1 ps p2 = | 
| 255 | let val p = Pretty.block_enclose (p1, p2) ps | |
| 256 | in if fixity BR fxy_ctxt | |
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 257 |     then enclose "(" ")" [p]
 | 
| 31665 | 258 | else p | 
| 259 | end; | |
| 260 | ||
| 50626 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 261 | fun gen_applify strict opn cls f fxy_ctxt p [] = | 
| 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 262 | if strict | 
| 50628 | 263 | then gen_brackify (fixity BR fxy_ctxt) [p, str (opn ^ cls)] | 
| 50626 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 264 | else p | 
| 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 265 | | gen_applify strict opn cls f fxy_ctxt p ps = | 
| 50627 | 266 | gen_brackify (fixity BR fxy_ctxt) (p @@ enum "," opn cls (map f ps)); | 
| 34247 | 267 | |
| 50626 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 268 | fun applify opn = gen_applify false opn; | 
| 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 269 | |
| 38922 | 270 | fun tuplify _ _ [] = NONE | 
| 271 | | tuplify print fxy [x] = SOME (print fxy x) | |
| 272 |   | tuplify print _ xs = SOME (enum "," "(" ")" (map (print NOBR) xs));
 | |
| 273 | ||
| 28060 | 274 | |
| 275 | (* generic syntax *) | |
| 276 | ||
| 277 | type tyco_syntax = int * ((fixity -> itype -> Pretty.T) | |
| 278 | -> fixity -> itype list -> Pretty.T); | |
| 34152 | 279 | |
| 280 | type simple_const_syntax = int * ((fixity -> iterm -> Pretty.T) | |
| 281 | -> fixity -> (iterm * itype) list -> Pretty.T); | |
| 37881 | 282 | |
| 283 | type complex_const_syntax = int * (string list * (literals -> string list | |
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 284 | -> (var_ctxt -> fixity -> iterm -> Pretty.T) | 
| 35228 | 285 | -> thm option -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T)); | 
| 37881 | 286 | |
| 287 | datatype const_syntax = plain_const_syntax of string | |
| 288 | | complex_const_syntax of complex_const_syntax; | |
| 289 | ||
| 290 | fun requires_args (plain_const_syntax _) = 0 | |
| 291 | | requires_args (complex_const_syntax (k, _)) = k; | |
| 28060 | 292 | |
| 34176 | 293 | fun simple_const_syntax syn = | 
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 294 | complex_const_syntax | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 295 | (apsnd (fn f => ([], (fn _ => fn _ => fn print => fn _ => fn vars => f (print vars)))) syn); | 
| 28060 | 296 | |
| 37881 | 297 | type activated_complex_const_syntax = int * ((var_ctxt -> fixity -> iterm -> Pretty.T) | 
| 298 | -> thm option -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T) | |
| 299 | ||
| 300 | datatype activated_const_syntax = Plain_const_syntax of int * string | |
| 301 | | Complex_const_syntax of activated_complex_const_syntax; | |
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 302 | |
| 37881 | 303 | fun activate_const_syntax thy literals c (plain_const_syntax s) naming = | 
| 304 | (Plain_const_syntax (Code.args_number thy c, s), naming) | |
| 305 | | activate_const_syntax thy literals c (complex_const_syntax (n, (cs, f))) naming = | |
| 306 | fold_map (Code_Thingol.ensure_declared_const thy) cs naming | |
| 307 | |-> (fn cs' => pair (Complex_const_syntax (n, f literals cs'))); | |
| 308 | ||
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 309 | fun gen_print_app print_app_expr print_term const_syntax some_thm vars fxy | 
| 48072 
ace701efe203
prefer records with speaking labels over deeply nested tuples
 haftmann parents: 
47576diff
changeset | 310 |     (app as ({ name = c, dom, ... }, ts)) =
 | 
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 311 | case const_syntax c of | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 312 | NONE => brackify fxy (print_app_expr some_thm vars app) | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 313 | | SOME (Plain_const_syntax (_, s)) => | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 314 | brackify fxy (str s :: map (print_term some_thm vars BR) ts) | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 315 | | SOME (Complex_const_syntax (k, print)) => | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 316 | let | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 317 | fun print' fxy ts = | 
| 48072 
ace701efe203
prefer records with speaking labels over deeply nested tuples
 haftmann parents: 
47576diff
changeset | 318 | print (print_term some_thm) some_thm vars fxy (ts ~~ take k dom); | 
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 319 | in | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 320 | if k = length ts | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 321 | then print' fxy ts | 
| 28060 | 322 | else if k < length ts | 
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 323 | then case chop k ts of (ts1, ts2) => | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 324 | brackify fxy (print' APP ts1 :: map (print_term some_thm vars BR) ts2) | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 325 | else print_term some_thm vars fxy (Code_Thingol.eta_expand k app) | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 326 | end; | 
| 28060 | 327 | |
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 328 | fun gen_print_bind print_term thm (fxy : fixity) pat vars = | 
| 28060 | 329 | let | 
| 31889 | 330 | val vs = Code_Thingol.fold_varnames (insert (op =)) pat []; | 
| 31874 | 331 | val vars' = intro_vars vs vars; | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 332 | in (print_term thm vars' fxy pat, vars') end; | 
| 28060 | 333 | |
| 334 | ||
| 335 | (* mixfix syntax *) | |
| 336 | ||
| 337 | datatype 'a mixfix = | |
| 338 | Arg of fixity | |
| 37881 | 339 | | String of string | 
| 340 | | Break; | |
| 28060 | 341 | |
| 342 | fun mk_mixfix prep_arg (fixity_this, mfx) = | |
| 343 | let | |
| 344 | fun is_arg (Arg _) = true | |
| 345 | | is_arg _ = false; | |
| 346 | val i = (length o filter is_arg) mfx; | |
| 347 | fun fillin _ [] [] = | |
| 348 | [] | |
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 349 | | fillin print (Arg fxy :: mfx) (a :: args) = | 
| 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 350 | (print fxy o prep_arg) a :: fillin print mfx args | 
| 37881 | 351 | | fillin print (String s :: mfx) args = | 
| 352 | str s :: fillin print mfx args | |
| 353 | | fillin print (Break :: mfx) args = | |
| 354 | Pretty.brk 1 :: fillin print mfx args; | |
| 28060 | 355 | in | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 356 | (i, fn print => fn fixity_ctxt => fn args => | 
| 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 357 | gen_brackify (fixity fixity_this fixity_ctxt) (fillin print mfx args)) | 
| 28060 | 358 | end; | 
| 359 | ||
| 360 | fun parse_infix prep_arg (x, i) s = | |
| 361 | let | |
| 362 | val l = case x of L => INFX (i, L) | _ => INFX (i, X); | |
| 363 | val r = case x of R => INFX (i, R) | _ => INFX (i, X); | |
| 364 | in | |
| 37881 | 365 | mk_mixfix prep_arg (INFX (i, x), [Arg l, String " ", String s, Break, Arg r]) | 
| 28060 | 366 | end; | 
| 367 | ||
| 37881 | 368 | fun parse_mixfix mk_plain mk_complex prep_arg s = | 
| 28060 | 369 | let | 
| 370 | val sym_any = Scan.one Symbol.is_regular; | |
| 371 | val parse = Scan.optional ($$ "!" >> K true) false -- Scan.repeat ( | |
| 372 |          ($$ "(" -- $$ "_" -- $$ ")" >> K (Arg NOBR))
 | |
| 373 | || ($$ "_" >> K (Arg BR)) | |
| 37881 | 374 | || ($$ "/" |-- Scan.repeat ($$ " ") >> (K Break)) | 
| 28060 | 375 | || (Scan.repeat1 | 
| 376 | ( $$ "'" |-- sym_any | |
| 377 |             || Scan.unless ($$ "_" || $$ "/" || $$ "(" |-- $$ "_" |-- $$ ")")
 | |
| 37881 | 378 | sym_any) >> (String o implode))); | 
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 379 | fun err s (_, NONE) = (fn () => "malformed mixfix annotation: " ^ quote s) | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 380 | | err _ (_, SOME msg) = msg; | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 381 | in | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 382 | case Scan.finite Symbol.stopper parse (Symbol.explode s) of | 
| 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 383 | ((false, [String s]), []) => mk_plain s | 
| 37881 | 384 | | ((_, p as [_]), []) => mk_complex (mk_mixfix prep_arg (NOBR, p)) | 
| 385 | | ((b, p as _ :: _ :: _), []) => mk_complex (mk_mixfix prep_arg (if b then NOBR else BR, p)) | |
| 43947 
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
 wenzelm parents: 
43326diff
changeset | 386 | | _ => Scan.!! (err s) Scan.fail () | 
| 28060 | 387 | end; | 
| 388 | ||
| 37881 | 389 | fun parse_syntax mk_plain mk_complex prep_arg = | 
| 390 | Scan.option ( | |
| 46949 | 391 |       ((@{keyword "infix"} >> K X)
 | 
| 392 |         || (@{keyword "infixl"} >> K L)
 | |
| 393 |         || (@{keyword "infixr"} >> K R))
 | |
| 37881 | 394 | -- Parse.nat -- Parse.string | 
| 395 | >> (fn ((x, i), s) => mk_complex (parse_infix prep_arg (x, i) s)) | |
| 396 | || Parse.string >> (fn s => (parse_mixfix mk_plain mk_complex prep_arg s))); | |
| 28060 | 397 | |
| 37899 | 398 | fun parse_tyco_syntax x = parse_syntax (fn s => (0, (K o K o K o str) s)) I I x; | 
| 37881 | 399 | |
| 400 | val parse_const_syntax = parse_syntax plain_const_syntax simple_const_syntax fst; | |
| 401 | ||
| 28060 | 402 | end; (*struct*) |