| author | blanchet | 
| Fri, 19 Sep 2014 13:38:21 +0200 | |
| changeset 58393 | dafe52a76ae7 | 
| parent 56812 | baef1c110f12 | 
| child 58854 | b979c781c2db | 
| 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 | ||
| 55236 | 14 | val eqn_error: theory -> 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 | 
| 55150 | 28 | val markup_stmt: Code_Symbol.T -> Pretty.T -> Pretty.T | 
| 29 | val format: Code_Symbol.T list -> int -> Pretty.T -> string | |
| 28060 | 30 | |
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 31 | type var_ctxt | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 32 | val make_vars: string list -> var_ctxt | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 33 | val intro_vars: string list -> var_ctxt -> var_ctxt | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 34 | val lookup_var: var_ctxt -> string -> string | 
| 32913 | 35 | val intro_base_names: (string -> bool) -> (string -> string) | 
| 36 | -> string list -> var_ctxt -> var_ctxt | |
| 55150 | 37 | val intro_base_names_for: (string -> bool) -> (Code_Symbol.T -> string) | 
| 55145 
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
 haftmann parents: 
52433diff
changeset | 38 | -> iterm 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 | ||
| 55153 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 68 | type raw_const_syntax | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 69 | val plain_const_syntax: string -> raw_const_syntax | 
| 34152 | 70 | type simple_const_syntax | 
| 55153 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 71 | val simple_const_syntax: simple_const_syntax -> raw_const_syntax | 
| 37881 | 72 | type complex_const_syntax | 
| 55153 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 73 | val complex_const_syntax: complex_const_syntax -> raw_const_syntax | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 74 | val parse_const_syntax: raw_const_syntax parser | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 75 | val requires_args: raw_const_syntax -> int | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 76 | datatype const_printer = Plain_printer of string | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 77 | | Complex_printer of (var_ctxt -> fixity -> iterm -> Pretty.T) | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 78 | -> thm option -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 79 | type const_syntax = int * const_printer | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 80 | val prep_const_syntax: theory -> literals | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 81 | -> string -> raw_const_syntax -> const_syntax | 
| 52070 
fd497099f5f5
infrastructure for generic data for code symbols (constants, type constructors, classes, instances)
 haftmann parents: 
52069diff
changeset | 82 | type tyco_syntax | 
| 52079 | 83 | val parse_tyco_syntax: tyco_syntax parser | 
| 35228 | 84 | val gen_print_app: (thm option -> var_ctxt -> const * iterm list -> Pretty.T list) | 
| 85 | -> (thm option -> var_ctxt -> fixity -> iterm -> Pretty.T) | |
| 55153 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 86 | -> (string -> const_syntax option) | 
| 35228 | 87 | -> thm option -> var_ctxt -> fixity -> const * iterm list -> Pretty.T | 
| 88 | val gen_print_bind: (thm option -> var_ctxt -> fixity -> iterm -> Pretty.T) | |
| 89 | -> thm option -> fixity | |
| 31889 | 90 | -> iterm -> var_ctxt -> Pretty.T * var_ctxt | 
| 28060 | 91 | end; | 
| 92 | ||
| 93 | structure Code_Printer : CODE_PRINTER = | |
| 94 | struct | |
| 95 | ||
| 55150 | 96 | open Basic_Code_Symbol; | 
| 28060 | 97 | open Code_Thingol; | 
| 98 | ||
| 39034 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 99 | (** generic nonsense *) | 
| 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 100 | |
| 55236 | 101 | fun eqn_error thy (SOME thm) s = | 
| 102 | error (s ^ ",\nin equation " ^ Display.string_of_thm_global thy thm) | |
| 103 | | eqn_error _ NONE s = error s; | |
| 28060 | 104 | |
| 39034 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 105 | val code_presentationN = "code_presentation"; | 
| 39057 
c6d146ed07ae
manage statement selection for presentation wholly through markup
 haftmann parents: 
39056diff
changeset | 106 | val stmt_nameN = "stmt_name"; | 
| 39034 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 107 | val _ = Markup.add_mode code_presentationN YXML.output_markup; | 
| 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 108 | |
| 
ebeb48fd653b
formal framework for presentation of selected statements
 haftmann parents: 
38923diff
changeset | 109 | |
| 34071 | 110 | (** assembling and printing text pieces **) | 
| 28060 | 111 | |
| 112 | infixr 5 @@; | |
| 113 | infixr 5 @|; | |
| 114 | fun x @@ y = [x, y]; | |
| 115 | fun xs @| y = xs @ [y]; | |
| 39660 | 116 | val str = Print_Mode.setmp [] Pretty.str; | 
| 28060 | 117 | val concat = Pretty.block o Pretty.breaks; | 
| 39660 | 118 | val commas = Print_Mode.setmp [] Pretty.commas; | 
| 119 | 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 | 120 | val brackets = enclose "(" ")" o Pretty.breaks;
 | 
| 39660 | 121 | 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 | 122 | 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 | 123 | | enum_default default sep l r xs = enum sep l r xs; | 
| 28060 | 124 | fun semicolon ps = Pretty.block [concat ps, str ";"]; | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 125 | fun doublesemicolon ps = Pretty.block [concat ps, str ";;"]; | 
| 39660 | 126 | fun indent i = Print_Mode.setmp [] (Pretty.indent i); | 
| 28060 | 127 | |
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 128 | fun markup_stmt sym = Print_Mode.setmp [code_presentationN] | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 129 | (Pretty.mark (code_presentationN, [(stmt_nameN, Code_Symbol.marker sym)])); | 
| 39062 | 130 | |
| 39558 | 131 | fun filter_presentation [] tree = | 
| 132 | 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 | 133 | |> fold XML.add_content tree | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 134 | | filter_presentation presentation_syms tree = | 
| 39057 
c6d146ed07ae
manage statement selection for presentation wholly through markup
 haftmann parents: 
39056diff
changeset | 135 | let | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 136 | val presentation_idents = map Code_Symbol.marker presentation_syms | 
| 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 | 137 | fun is_selected (name, attrs) = | 
| 39558 | 138 | name = code_presentationN | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 139 | andalso member (op =) presentation_idents (the (Properties.get attrs stmt_nameN)); | 
| 39558 | 140 | fun add_content_with_space tree (is_first, buf) = | 
| 141 | buf | |
| 142 | |> not is_first ? Buffer.add "\n\n" | |
| 143 | |> XML.add_content tree | |
| 144 | |> pair false; | |
| 145 | fun filter (XML.Elem (name_attrs, xs)) = | |
| 146 | fold (if is_selected name_attrs then add_content_with_space else filter) xs | |
| 47576 | 147 | | filter (XML.Text _) = I; | 
| 39558 | 148 | in snd (fold filter tree (true, Buffer.empty)) end; | 
| 39062 | 149 | |
| 150 | fun format presentation_names width = | |
| 39660 | 151 | Print_Mode.setmp [code_presentationN] (Pretty.string_of_margin width) | 
| 39062 | 152 | #> YXML.parse_body | 
| 39558 | 153 | #> filter_presentation presentation_names | 
| 39678 | 154 | #> Buffer.add "\n" | 
| 39558 | 155 | #> Buffer.content; | 
| 34071 | 156 | |
| 28060 | 157 | |
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 158 | (** names and variable name contexts **) | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 159 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 160 | type var_ctxt = string Symtab.table * Name.context; | 
| 
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 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 | 163 | Name.make_context names); | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 164 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 165 | fun intro_vars names (namemap, namectxt) = | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 166 | let | 
| 43326 
47cf4bc789aa
simplified Name.variant -- discontinued builtin fold_map;
 wenzelm parents: 
43324diff
changeset | 167 | val (names', namectxt') = fold_map Name.variant names namectxt; | 
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 168 | val namemap' = fold2 (curry Symtab.update) names names' namemap; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 169 | in (namemap', namectxt') end; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 170 | |
| 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 | 171 | 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 | 172 | 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 | 173 | SOME name' => name' | 
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 174 |   | NONE => error ("Invalid name in context: " ^ quote name);
 | 
| 
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 | ||
| 55145 
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
 haftmann parents: 
52433diff
changeset | 190 | fun intro_base_names no_syntax deresolve = | 
| 
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
 haftmann parents: 
52433diff
changeset | 191 | map_filter (fn name => if no_syntax name then | 
| 32913 | 192 | let val name' = deresolve name in | 
| 193 | if Long_Name.is_qualified name' then NONE else SOME name' | |
| 194 | end else NONE) | |
| 55145 
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
 haftmann parents: 
52433diff
changeset | 195 | #> intro_vars; | 
| 
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
 haftmann parents: 
52433diff
changeset | 196 | |
| 
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
 haftmann parents: 
52433diff
changeset | 197 | fun intro_base_names_for no_syntax deresolve ts = | 
| 
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
 haftmann parents: 
52433diff
changeset | 198 | [] | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 199 | |> fold Code_Thingol.add_constsyms ts | 
| 55150 | 200 | |> intro_base_names (fn Constant const => no_syntax const | _ => true) deresolve; | 
| 32913 | 201 | |
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 202 | |
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 203 | (** pretty literals **) | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 204 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 205 | datatype literals = Literals of {
 | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 206 | literal_char: string -> string, | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 207 | literal_string: string -> string, | 
| 34944 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 208 | literal_numeral: int -> string, | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 209 | literal_list: Pretty.T list -> Pretty.T, | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 210 | infix_cons: int * string | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 211 | }; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 212 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 213 | fun dest_Literals (Literals lits) = lits; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 214 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 215 | val literal_char = #literal_char o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 216 | val literal_string = #literal_string o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 217 | val literal_numeral = #literal_numeral o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 218 | val literal_list = #literal_list o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 219 | val infix_cons = #infix_cons o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 220 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 221 | |
| 28060 | 222 | (** syntax printer **) | 
| 223 | ||
| 224 | (* binding priorities *) | |
| 225 | ||
| 226 | datatype lrx = L | R | X; | |
| 227 | ||
| 228 | datatype fixity = | |
| 229 | BR | |
| 230 | | NOBR | |
| 231 | | INFX of (int * lrx); | |
| 232 | ||
| 233 | val APP = INFX (~1, L); | |
| 234 | ||
| 235 | fun fixity_lrx L L = false | |
| 236 | | fixity_lrx R R = false | |
| 237 | | fixity_lrx _ _ = true; | |
| 238 | ||
| 239 | fun fixity NOBR _ = false | |
| 240 | | fixity _ NOBR = false | |
| 52433 | 241 | | fixity (INFX (pr, lr)) (INFX (pr_ctxt, lr_ctxt)) = | 
| 242 | pr < pr_ctxt | |
| 243 | orelse pr = pr_ctxt | |
| 28060 | 244 | andalso fixity_lrx lr lr_ctxt | 
| 52433 | 245 | orelse pr_ctxt = ~1 | 
| 28060 | 246 | | fixity BR (INFX _) = false | 
| 247 | | fixity _ _ = true; | |
| 248 | ||
| 249 | fun gen_brackify _ [p] = p | |
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 250 |   | gen_brackify true (ps as _::_) = enclose "(" ")" ps
 | 
| 28060 | 251 | | gen_brackify false (ps as _::_) = Pretty.block ps; | 
| 252 | ||
| 253 | fun brackify fxy_ctxt = | |
| 254 | gen_brackify (fixity BR fxy_ctxt) o Pretty.breaks; | |
| 255 | ||
| 37242 
97097e589715
brackify_infix etc.: no break before infix operator -- eases survival in Scala
 haftmann parents: 
37146diff
changeset | 256 | fun brackify_infix infx fxy_ctxt (l, m, r) = | 
| 50627 | 257 | gen_brackify (fixity (INFX infx) fxy_ctxt) [l, str " ", m, Pretty.brk 1, r]; | 
| 28060 | 258 | |
| 31665 | 259 | fun brackify_block fxy_ctxt p1 ps p2 = | 
| 260 | let val p = Pretty.block_enclose (p1, p2) ps | |
| 261 | in if fixity BR fxy_ctxt | |
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 262 |     then enclose "(" ")" [p]
 | 
| 31665 | 263 | else p | 
| 264 | end; | |
| 265 | ||
| 50626 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 266 | fun gen_applify strict opn cls f fxy_ctxt p [] = | 
| 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 267 | if strict | 
| 50628 | 268 | 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 | 269 | else p | 
| 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 270 | | gen_applify strict opn cls f fxy_ctxt p ps = | 
| 50627 | 271 | gen_brackify (fixity BR fxy_ctxt) (p @@ enum "," opn cls (map f ps)); | 
| 34247 | 272 | |
| 50626 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 273 | fun applify opn = gen_applify false opn; | 
| 
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
 haftmann parents: 
50618diff
changeset | 274 | |
| 38922 | 275 | fun tuplify _ _ [] = NONE | 
| 276 | | tuplify print fxy [x] = SOME (print fxy x) | |
| 277 |   | tuplify print _ xs = SOME (enum "," "(" ")" (map (print NOBR) xs));
 | |
| 278 | ||
| 28060 | 279 | |
| 52070 
fd497099f5f5
infrastructure for generic data for code symbols (constants, type constructors, classes, instances)
 haftmann parents: 
52069diff
changeset | 280 | (* generic syntax *) | 
| 34152 | 281 | |
| 282 | type simple_const_syntax = int * ((fixity -> iterm -> Pretty.T) | |
| 283 | -> fixity -> (iterm * itype) list -> Pretty.T); | |
| 37881 | 284 | |
| 55148 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 haftmann parents: 
55147diff
changeset | 285 | type complex_const_syntax = int * (literals | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 286 | -> (var_ctxt -> fixity -> iterm -> Pretty.T) | 
| 55148 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 haftmann parents: 
55147diff
changeset | 287 | -> thm option -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T); | 
| 37881 | 288 | |
| 55153 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 289 | datatype raw_const_syntax = plain_const_syntax of string | 
| 37881 | 290 | | complex_const_syntax of complex_const_syntax; | 
| 291 | ||
| 34176 | 292 | 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 | 293 | complex_const_syntax | 
| 55148 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 haftmann parents: 
55147diff
changeset | 294 | (apsnd (fn f => fn _ => fn print => fn _ => fn vars => f (print vars)) syn); | 
| 28060 | 295 | |
| 55153 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 296 | fun requires_args (plain_const_syntax _) = 0 | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 297 | | requires_args (complex_const_syntax (k, _)) = k; | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 298 | |
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 299 | datatype const_printer = Plain_printer of string | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 300 | | Complex_printer of (var_ctxt -> fixity -> iterm -> Pretty.T) | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 301 | -> thm option -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T; | 
| 37881 | 302 | |
| 55153 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 303 | type const_syntax = int * const_printer; | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 304 | |
| 55153 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 305 | fun prep_const_syntax thy literals c (plain_const_syntax s) = | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 306 | (Code.args_number thy c, Plain_printer s) | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 307 | | prep_const_syntax thy literals c (complex_const_syntax (n, f))= | 
| 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 308 | (n, Complex_printer (f literals)); | 
| 37881 | 309 | |
| 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 | 310 | fun gen_print_app print_app_expr print_term const_syntax some_thm vars fxy | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 311 |     (app as ({ sym, dom, ... }, ts)) =
 | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 312 | case sym of | 
| 55150 | 313 | Constant const => (case const_syntax const of | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 314 | NONE => brackify fxy (print_app_expr some_thm vars app) | 
| 55153 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 315 | | SOME (_, Plain_printer s) => | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 316 | brackify fxy (str s :: map (print_term some_thm vars BR) ts) | 
| 55153 
eedd549de3ef
more suitable names, without any notion of "activating"
 haftmann parents: 
55150diff
changeset | 317 | | SOME (k, Complex_printer print) => | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 318 | let | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 319 | fun print' fxy ts = | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 320 | print (print_term some_thm) some_thm vars fxy (ts ~~ take k dom); | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 321 | in | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 322 | if k = length ts | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 323 | then print' fxy ts | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 324 | else if k < length ts | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 325 | then case chop k ts of (ts1, ts2) => | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 326 | brackify fxy (print' APP ts1 :: map (print_term some_thm vars BR) ts2) | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 327 | else print_term some_thm vars fxy (Code_Thingol.eta_expand k app) | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 328 | end) | 
| 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
55145diff
changeset | 329 | | _ => brackify fxy (print_app_expr some_thm vars app); | 
| 28060 | 330 | |
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 331 | fun gen_print_bind print_term thm (fxy : fixity) pat vars = | 
| 28060 | 332 | let | 
| 31889 | 333 | val vs = Code_Thingol.fold_varnames (insert (op =)) pat []; | 
| 31874 | 334 | val vars' = intro_vars vs vars; | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 335 | in (print_term thm vars' fxy pat, vars') end; | 
| 28060 | 336 | |
| 52070 
fd497099f5f5
infrastructure for generic data for code symbols (constants, type constructors, classes, instances)
 haftmann parents: 
52069diff
changeset | 337 | type tyco_syntax = int * ((fixity -> itype -> Pretty.T) | 
| 
fd497099f5f5
infrastructure for generic data for code symbols (constants, type constructors, classes, instances)
 haftmann parents: 
52069diff
changeset | 338 | -> fixity -> itype list -> Pretty.T); | 
| 
fd497099f5f5
infrastructure for generic data for code symbols (constants, type constructors, classes, instances)
 haftmann parents: 
52069diff
changeset | 339 | |
| 28060 | 340 | |
| 341 | (* mixfix syntax *) | |
| 342 | ||
| 343 | datatype 'a mixfix = | |
| 344 | Arg of fixity | |
| 37881 | 345 | | String of string | 
| 346 | | Break; | |
| 28060 | 347 | |
| 52069 | 348 | fun printer_of_mixfix prep_arg (fixity_this, mfx) = | 
| 28060 | 349 | let | 
| 350 | fun is_arg (Arg _) = true | |
| 351 | | is_arg _ = false; | |
| 352 | val i = (length o filter is_arg) mfx; | |
| 353 | fun fillin _ [] [] = | |
| 354 | [] | |
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 355 | | fillin print (Arg fxy :: mfx) (a :: args) = | 
| 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 356 | (print fxy o prep_arg) a :: fillin print mfx args | 
| 37881 | 357 | | fillin print (String s :: mfx) args = | 
| 358 | str s :: fillin print mfx args | |
| 359 | | fillin print (Break :: mfx) args = | |
| 360 | Pretty.brk 1 :: fillin print mfx args; | |
| 28060 | 361 | in | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 362 | (i, fn print => fn fixity_ctxt => fn args => | 
| 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 363 | gen_brackify (fixity fixity_this fixity_ctxt) (fillin print mfx args)) | 
| 28060 | 364 | end; | 
| 365 | ||
| 52069 | 366 | fun read_infix (fixity_this, i) s = | 
| 28060 | 367 | let | 
| 52069 | 368 | val l = case fixity_this of L => INFX (i, L) | _ => INFX (i, X); | 
| 369 | val r = case fixity_this of R => INFX (i, R) | _ => INFX (i, X); | |
| 28060 | 370 | in | 
| 52069 | 371 | (INFX (i, fixity_this), [Arg l, String " ", String s, Break, Arg r]) | 
| 28060 | 372 | end; | 
| 373 | ||
| 52069 | 374 | fun read_mixfix s = | 
| 28060 | 375 | let | 
| 376 | val sym_any = Scan.one Symbol.is_regular; | |
| 52069 | 377 | val parse = Scan.optional ($$ "!" >> K NOBR) BR -- Scan.repeat ( | 
| 28060 | 378 |          ($$ "(" -- $$ "_" -- $$ ")" >> K (Arg NOBR))
 | 
| 379 | || ($$ "_" >> K (Arg BR)) | |
| 37881 | 380 | || ($$ "/" |-- Scan.repeat ($$ " ") >> (K Break)) | 
| 28060 | 381 | || (Scan.repeat1 | 
| 382 | ( $$ "'" |-- sym_any | |
| 383 |             || Scan.unless ($$ "_" || $$ "/" || $$ "(" |-- $$ "_" |-- $$ ")")
 | |
| 37881 | 384 | 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 | 385 | 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 | 386 | | 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 | 387 | 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 | 388 | case Scan.finite Symbol.stopper parse (Symbol.explode s) of | 
| 52069 | 389 | (fixity_mixfix, []) => fixity_mixfix | 
| 390 | | _ => Scan.!! (err s) Scan.fail () | |
| 28060 | 391 | end; | 
| 392 | ||
| 52069 | 393 | val parse_fixity = | 
| 394 |   (@{keyword "infix"} >> K X) || (@{keyword "infixl"} >> K L) || (@{keyword "infixr"} >> K R)
 | |
| 395 | ||
| 52099 | 396 | fun parse_mixfix x = | 
| 397 | (Parse.string >> read_mixfix | |
| 52069 | 398 | || parse_fixity -- Parse.nat -- Parse.string | 
| 52099 | 399 | >> (fn ((fixity, i), s) => read_infix (fixity, i) s)) x; | 
| 28060 | 400 | |
| 52069 | 401 | fun syntax_of_mixfix of_plain of_printer prep_arg (BR, [String s]) = of_plain s | 
| 402 | | syntax_of_mixfix of_plain of_printer prep_arg (fixity, mfx) = | |
| 403 | of_printer (printer_of_mixfix prep_arg (fixity, mfx)); | |
| 37881 | 404 | |
| 52099 | 405 | fun parse_tyco_syntax x = | 
| 406 | (parse_mixfix >> syntax_of_mixfix (fn s => (0, (K o K o K o str) s)) I I) x; | |
| 52069 | 407 | |
| 408 | val parse_const_syntax = | |
| 409 | parse_mixfix >> syntax_of_mixfix plain_const_syntax simple_const_syntax fst; | |
| 37881 | 410 | |
| 28060 | 411 | end; (*struct*) |