| author | haftmann | 
| Tue, 31 Aug 2010 13:55:54 +0200 | |
| changeset 38924 | fcd1d0457e27 | 
| parent 38923 | 79d7f2b4cf71 | 
| child 39034 | ebeb48fd653b | 
| 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 | 
| 34071 | 28 | val string_of_pretty: int -> Pretty.T -> string | 
| 29 | val writeln_pretty: int -> Pretty.T -> unit | |
| 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, | 
| 
9728342bcd56
another refinement chapter in the neverending numeral story
 haftmann parents: 
37899diff
changeset | 44 | literal_positive_numeral: int -> string, | 
| 
9728342bcd56
another refinement chapter in the neverending numeral story
 haftmann parents: 
37899diff
changeset | 45 | literal_alternative_numeral: int -> string, | 
| 34944 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 46 | literal_naive_numeral: int -> string, | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 47 | 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 | 48 | -> literals | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 49 | val literal_char: literals -> string -> string | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 50 | val literal_string: literals -> string -> string | 
| 34944 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 51 | val literal_numeral: literals -> int -> string | 
| 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 52 | val literal_positive_numeral: literals -> int -> string | 
| 37958 
9728342bcd56
another refinement chapter in the neverending numeral story
 haftmann parents: 
37899diff
changeset | 53 | val literal_alternative_numeral: literals -> int -> string | 
| 34944 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 54 | val literal_naive_numeral: literals -> int -> string | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 55 | val literal_list: literals -> Pretty.T list -> Pretty.T | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 56 | val infix_cons: literals -> int * string | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 57 | |
| 28060 | 58 | type lrx | 
| 59 | val L: lrx | |
| 60 | val R: lrx | |
| 61 | val X: lrx | |
| 62 | type fixity | |
| 63 | val BR: fixity | |
| 64 | val NOBR: fixity | |
| 65 | val INFX: int * lrx -> fixity | |
| 66 | val APP: fixity | |
| 67 | 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 | 68 | val brackify_infix: int * lrx -> fixity -> Pretty.T * Pretty.T * Pretty.T -> Pretty.T | 
| 31665 | 69 | val brackify_block: fixity -> Pretty.T -> Pretty.T list -> Pretty.T -> Pretty.T | 
| 37638 | 70 |   val applify: string -> string -> ('a -> Pretty.T) -> fixity -> Pretty.T -> 'a list -> Pretty.T
 | 
| 38922 | 71 | val tuplify: (fixity -> 'a -> Pretty.T) -> fixity -> 'a list -> Pretty.T option | 
| 72 | ||
| 28060 | 73 | |
| 74 | type tyco_syntax | |
| 34152 | 75 | type simple_const_syntax | 
| 37881 | 76 | type complex_const_syntax | 
| 28060 | 77 | type const_syntax | 
| 37881 | 78 | type activated_complex_const_syntax | 
| 79 | datatype activated_const_syntax = Plain_const_syntax of int * string | |
| 80 | | Complex_const_syntax of activated_complex_const_syntax | |
| 81 | val requires_args: const_syntax -> int | |
| 82 | val parse_const_syntax: Token.T list -> const_syntax option * Token.T list | |
| 83 | val parse_tyco_syntax: Token.T list -> tyco_syntax option * Token.T list | |
| 84 | val plain_const_syntax: string -> const_syntax | |
| 37876 | 85 | val simple_const_syntax: simple_const_syntax -> const_syntax | 
| 37881 | 86 | val complex_const_syntax: complex_const_syntax -> const_syntax | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 87 | val activate_const_syntax: theory -> literals | 
| 37881 | 88 | -> string -> const_syntax -> Code_Thingol.naming -> activated_const_syntax * Code_Thingol.naming | 
| 35228 | 89 | val gen_print_app: (thm option -> var_ctxt -> const * iterm list -> Pretty.T list) | 
| 90 | -> (thm option -> var_ctxt -> fixity -> iterm -> Pretty.T) | |
| 37876 | 91 | -> (string -> activated_const_syntax option) | 
| 35228 | 92 | -> thm option -> var_ctxt -> fixity -> const * iterm list -> Pretty.T | 
| 93 | val gen_print_bind: (thm option -> var_ctxt -> fixity -> iterm -> Pretty.T) | |
| 94 | -> thm option -> fixity | |
| 31889 | 95 | -> iterm -> var_ctxt -> Pretty.T * var_ctxt | 
| 28060 | 96 | |
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 97 | val mk_name_module: Name.context -> string option -> (string -> string option) | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 98 | -> 'a Graph.T -> string -> string | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 99 | val dest_name: string -> string * string | 
| 28060 | 100 | end; | 
| 101 | ||
| 102 | structure Code_Printer : CODE_PRINTER = | |
| 103 | struct | |
| 104 | ||
| 105 | open Code_Thingol; | |
| 106 | ||
| 35228 | 107 | fun eqn_error (SOME thm) s = error (s ^ ",\nin equation " ^ Display.string_of_thm_without_context thm) | 
| 108 | | eqn_error NONE s = error s; | |
| 28060 | 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]; | |
| 37146 
f652333bbf8e
renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
 wenzelm parents: 
36960diff
changeset | 116 | val str = Print_Mode.setmp [] Pretty.str; | 
| 28060 | 117 | val concat = Pretty.block o Pretty.breaks; | 
| 38778 | 118 | val commas = Print_Mode.setmp [] Pretty.commas; | 
| 37146 
f652333bbf8e
renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
 wenzelm parents: 
36960diff
changeset | 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;
 | 
| 37146 
f652333bbf8e
renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
 wenzelm parents: 
36960diff
changeset | 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 ";;"]; | 
| 37146 
f652333bbf8e
renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
 wenzelm parents: 
36960diff
changeset | 126 | fun indent i = Print_Mode.setmp [] (Pretty.indent i); | 
| 28060 | 127 | |
| 37146 
f652333bbf8e
renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
 wenzelm parents: 
36960diff
changeset | 128 | fun string_of_pretty width p = Print_Mode.setmp [] (Pretty.string_of_margin width) p ^ "\n"; | 
| 38911 | 129 | fun writeln_pretty width p = writeln (string_of_pretty width p); | 
| 34071 | 130 | |
| 28060 | 131 | |
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 132 | (** names and variable name contexts **) | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 133 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 134 | type var_ctxt = string Symtab.table * Name.context; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 135 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 136 | 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 | 137 | Name.make_context names); | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 138 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 139 | fun intro_vars names (namemap, namectxt) = | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 140 | let | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 141 | val (names', namectxt') = Name.variants names namectxt; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 142 | val namemap' = fold2 (curry Symtab.update) names names' namemap; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 143 | in (namemap', namectxt') end; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 144 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 145 | fun lookup_var (namemap, _) name = case Symtab.lookup namemap name | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 146 | of SOME name' => name' | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 147 |   | NONE => error ("Invalid name in context: " ^ quote name);
 | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 148 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 149 | val first_upper = implode o nth_map 0 Symbol.to_ascii_upper o explode; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 150 | val first_lower = implode o nth_map 0 Symbol.to_ascii_lower o explode; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 151 | |
| 32908 | 152 | fun aux_params vars lhss = | 
| 153 | let | |
| 154 | fun fish_param _ (w as SOME _) = w | |
| 155 | | fish_param (IVar (SOME v)) NONE = SOME v | |
| 156 | | fish_param _ NONE = NONE; | |
| 157 | fun fillup_param _ (_, SOME v) = v | |
| 158 | | fillup_param x (i, NONE) = x ^ string_of_int i; | |
| 159 | val fished1 = fold (map2 fish_param) lhss (replicate (length (hd lhss)) NONE); | |
| 160 | val x = Name.variant (map_filter I fished1) "x"; | |
| 161 | val fished2 = map_index (fillup_param x) fished1; | |
| 162 | val (fished3, _) = Name.variants fished2 Name.context; | |
| 163 | val vars' = intro_vars fished3 vars; | |
| 164 | in map (lookup_var vars') fished3 end; | |
| 165 | ||
| 32913 | 166 | fun intro_base_names no_syntax deresolve names = names | 
| 167 | |> map_filter (fn name => if no_syntax name then | |
| 168 | let val name' = deresolve name in | |
| 169 | if Long_Name.is_qualified name' then NONE else SOME name' | |
| 170 | end else NONE) | |
| 171 | |> intro_vars; | |
| 172 | ||
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 173 | |
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 174 | (** pretty literals **) | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 175 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 176 | datatype literals = Literals of {
 | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 177 | literal_char: string -> string, | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 178 | literal_string: string -> string, | 
| 34944 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 179 | literal_numeral: int -> string, | 
| 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 180 | literal_positive_numeral: int -> string, | 
| 37958 
9728342bcd56
another refinement chapter in the neverending numeral story
 haftmann parents: 
37899diff
changeset | 181 | literal_alternative_numeral: int -> string, | 
| 34944 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 182 | literal_naive_numeral: int -> string, | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 183 | literal_list: Pretty.T list -> Pretty.T, | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 184 | infix_cons: int * string | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 185 | }; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 186 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 187 | fun dest_Literals (Literals lits) = lits; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 188 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 189 | val literal_char = #literal_char o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 190 | val literal_string = #literal_string o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 191 | val literal_numeral = #literal_numeral o dest_Literals; | 
| 34944 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 192 | val literal_positive_numeral = #literal_positive_numeral o dest_Literals; | 
| 37958 
9728342bcd56
another refinement chapter in the neverending numeral story
 haftmann parents: 
37899diff
changeset | 193 | val literal_alternative_numeral = #literal_alternative_numeral o dest_Literals; | 
| 34944 
970e1466028d
code literals: distinguish numeral classes by different entries
 haftmann parents: 
34247diff
changeset | 194 | val literal_naive_numeral = #literal_naive_numeral o dest_Literals; | 
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 195 | val literal_list = #literal_list o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 196 | val infix_cons = #infix_cons o dest_Literals; | 
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 197 | |
| 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 198 | |
| 28060 | 199 | (** syntax printer **) | 
| 200 | ||
| 201 | (* binding priorities *) | |
| 202 | ||
| 203 | datatype lrx = L | R | X; | |
| 204 | ||
| 205 | datatype fixity = | |
| 206 | BR | |
| 207 | | NOBR | |
| 208 | | INFX of (int * lrx); | |
| 209 | ||
| 210 | val APP = INFX (~1, L); | |
| 211 | ||
| 212 | fun fixity_lrx L L = false | |
| 213 | | fixity_lrx R R = false | |
| 214 | | fixity_lrx _ _ = true; | |
| 215 | ||
| 216 | fun fixity NOBR _ = false | |
| 217 | | fixity _ NOBR = false | |
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 218 | | fixity (INFX (pr, lr)) (INFX (print_ctxt, lr_ctxt)) = | 
| 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 219 | pr < print_ctxt | 
| 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 220 | orelse pr = print_ctxt | 
| 28060 | 221 | andalso fixity_lrx lr lr_ctxt | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 222 | orelse print_ctxt = ~1 | 
| 28060 | 223 | | fixity BR (INFX _) = false | 
| 224 | | fixity _ _ = true; | |
| 225 | ||
| 226 | fun gen_brackify _ [p] = p | |
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 227 |   | gen_brackify true (ps as _::_) = enclose "(" ")" ps
 | 
| 28060 | 228 | | gen_brackify false (ps as _::_) = Pretty.block ps; | 
| 229 | ||
| 230 | fun brackify fxy_ctxt = | |
| 231 | gen_brackify (fixity BR fxy_ctxt) o Pretty.breaks; | |
| 232 | ||
| 37242 
97097e589715
brackify_infix etc.: no break before infix operator -- eases survival in Scala
 haftmann parents: 
37146diff
changeset | 233 | fun brackify_infix infx fxy_ctxt (l, m, r) = | 
| 
97097e589715
brackify_infix etc.: no break before infix operator -- eases survival in Scala
 haftmann parents: 
37146diff
changeset | 234 |   (if fixity (INFX infx) fxy_ctxt then enclose "(" ")" else Pretty.block)
 | 
| 
97097e589715
brackify_infix etc.: no break before infix operator -- eases survival in Scala
 haftmann parents: 
37146diff
changeset | 235 | ([l, str " ", m, Pretty.brk 1, r]); | 
| 28060 | 236 | |
| 31665 | 237 | fun brackify_block fxy_ctxt p1 ps p2 = | 
| 238 | let val p = Pretty.block_enclose (p1, p2) ps | |
| 239 | in if fixity BR fxy_ctxt | |
| 34178 
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
 haftmann parents: 
34176diff
changeset | 240 |     then enclose "(" ")" [p]
 | 
| 31665 | 241 | else p | 
| 242 | end; | |
| 243 | ||
| 37638 | 244 | fun applify opn cls f fxy_ctxt p [] = p | 
| 245 | | applify opn cls f fxy_ctxt p ps = | |
| 34247 | 246 |       (if (fixity BR fxy_ctxt) then enclose "(" ")" else Pretty.block)
 | 
| 37638 | 247 | (p @@ enum "," opn cls (map f ps)); | 
| 34247 | 248 | |
| 38922 | 249 | fun tuplify _ _ [] = NONE | 
| 250 | | tuplify print fxy [x] = SOME (print fxy x) | |
| 251 |   | tuplify print _ xs = SOME (enum "," "(" ")" (map (print NOBR) xs));
 | |
| 252 | ||
| 28060 | 253 | |
| 254 | (* generic syntax *) | |
| 255 | ||
| 256 | type tyco_syntax = int * ((fixity -> itype -> Pretty.T) | |
| 257 | -> fixity -> itype list -> Pretty.T); | |
| 34152 | 258 | |
| 259 | type simple_const_syntax = int * ((fixity -> iterm -> Pretty.T) | |
| 260 | -> fixity -> (iterm * itype) list -> Pretty.T); | |
| 37881 | 261 | |
| 262 | 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 | 263 | -> (var_ctxt -> fixity -> iterm -> Pretty.T) | 
| 35228 | 264 | -> thm option -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T)); | 
| 37881 | 265 | |
| 266 | datatype const_syntax = plain_const_syntax of string | |
| 267 | | complex_const_syntax of complex_const_syntax; | |
| 268 | ||
| 269 | fun requires_args (plain_const_syntax _) = 0 | |
| 270 | | requires_args (complex_const_syntax (k, _)) = k; | |
| 28060 | 271 | |
| 34176 | 272 | fun simple_const_syntax syn = | 
| 37881 | 273 | complex_const_syntax (apsnd (fn f => ([], (fn _ => fn _ => fn print => fn _ => fn vars => f (print vars)))) syn); | 
| 28060 | 274 | |
| 37881 | 275 | type activated_complex_const_syntax = int * ((var_ctxt -> fixity -> iterm -> Pretty.T) | 
| 276 | -> thm option -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T) | |
| 277 | ||
| 278 | datatype activated_const_syntax = Plain_const_syntax of int * string | |
| 279 | | Complex_const_syntax of activated_complex_const_syntax; | |
| 31056 
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
 haftmann parents: 
30648diff
changeset | 280 | |
| 37881 | 281 | fun activate_const_syntax thy literals c (plain_const_syntax s) naming = | 
| 282 | (Plain_const_syntax (Code.args_number thy c, s), naming) | |
| 283 | | activate_const_syntax thy literals c (complex_const_syntax (n, (cs, f))) naming = | |
| 284 | fold_map (Code_Thingol.ensure_declared_const thy) cs naming | |
| 285 | |-> (fn cs' => pair (Complex_const_syntax (n, f literals cs'))); | |
| 286 | ||
| 38923 | 287 | fun gen_print_app print_app_expr print_term const_syntax some_thm vars fxy (app as ((c, (_, function_typs)), ts)) = | 
| 288 | case const_syntax c | |
| 37881 | 289 | of NONE => brackify fxy (print_app_expr some_thm vars app) | 
| 290 | | SOME (Plain_const_syntax (_, s)) => brackify fxy (str s :: map (print_term some_thm vars BR) ts) | |
| 291 | | SOME (Complex_const_syntax (k, print)) => | |
| 28060 | 292 | let | 
| 37881 | 293 | fun print' fxy ts = print (print_term some_thm) some_thm vars fxy (ts ~~ take k function_typs); | 
| 28060 | 294 | in if k = length ts | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 295 | then print' fxy ts | 
| 28060 | 296 | else if k < length ts | 
| 297 | then case chop k ts of (ts1, ts2) => | |
| 37881 | 298 | brackify fxy (print' APP ts1 :: map (print_term some_thm vars BR) ts2) | 
| 299 | else print_term some_thm vars fxy (Code_Thingol.eta_expand k app) | |
| 28060 | 300 | end; | 
| 301 | ||
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 302 | fun gen_print_bind print_term thm (fxy : fixity) pat vars = | 
| 28060 | 303 | let | 
| 31889 | 304 | val vs = Code_Thingol.fold_varnames (insert (op =)) pat []; | 
| 31874 | 305 | val vars' = intro_vars vs vars; | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 306 | in (print_term thm vars' fxy pat, vars') end; | 
| 28060 | 307 | |
| 308 | ||
| 309 | (* mixfix syntax *) | |
| 310 | ||
| 311 | datatype 'a mixfix = | |
| 312 | Arg of fixity | |
| 37881 | 313 | | String of string | 
| 314 | | Break; | |
| 28060 | 315 | |
| 316 | fun mk_mixfix prep_arg (fixity_this, mfx) = | |
| 317 | let | |
| 318 | fun is_arg (Arg _) = true | |
| 319 | | is_arg _ = false; | |
| 320 | val i = (length o filter is_arg) mfx; | |
| 321 | fun fillin _ [] [] = | |
| 322 | [] | |
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 323 | | fillin print (Arg fxy :: mfx) (a :: args) = | 
| 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 324 | (print fxy o prep_arg) a :: fillin print mfx args | 
| 37881 | 325 | | fillin print (String s :: mfx) args = | 
| 326 | str s :: fillin print mfx args | |
| 327 | | fillin print (Break :: mfx) args = | |
| 328 | Pretty.brk 1 :: fillin print mfx args; | |
| 28060 | 329 | in | 
| 33989 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 330 | (i, fn print => fn fixity_ctxt => fn args => | 
| 
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
 haftmann parents: 
32924diff
changeset | 331 | gen_brackify (fixity fixity_this fixity_ctxt) (fillin print mfx args)) | 
| 28060 | 332 | end; | 
| 333 | ||
| 334 | fun parse_infix prep_arg (x, i) s = | |
| 335 | let | |
| 336 | val l = case x of L => INFX (i, L) | _ => INFX (i, X); | |
| 337 | val r = case x of R => INFX (i, R) | _ => INFX (i, X); | |
| 338 | in | |
| 37881 | 339 | mk_mixfix prep_arg (INFX (i, x), [Arg l, String " ", String s, Break, Arg r]) | 
| 28060 | 340 | end; | 
| 341 | ||
| 37881 | 342 | fun parse_mixfix mk_plain mk_complex prep_arg s = | 
| 28060 | 343 | let | 
| 344 | val sym_any = Scan.one Symbol.is_regular; | |
| 345 | val parse = Scan.optional ($$ "!" >> K true) false -- Scan.repeat ( | |
| 346 |          ($$ "(" -- $$ "_" -- $$ ")" >> K (Arg NOBR))
 | |
| 347 | || ($$ "_" >> K (Arg BR)) | |
| 37881 | 348 | || ($$ "/" |-- Scan.repeat ($$ " ") >> (K Break)) | 
| 28060 | 349 | || (Scan.repeat1 | 
| 350 | ( $$ "'" |-- sym_any | |
| 351 |             || Scan.unless ($$ "_" || $$ "/" || $$ "(" |-- $$ "_" |-- $$ ")")
 | |
| 37881 | 352 | sym_any) >> (String o implode))); | 
| 28060 | 353 | in case Scan.finite Symbol.stopper parse (Symbol.explode s) | 
| 37881 | 354 | of ((false, [String s]), []) => mk_plain s | 
| 355 | | ((_, p as [_]), []) => mk_complex (mk_mixfix prep_arg (NOBR, p)) | |
| 356 | | ((b, p as _ :: _ :: _), []) => mk_complex (mk_mixfix prep_arg (if b then NOBR else BR, p)) | |
| 28060 | 357 | | _ => Scan.!! | 
| 358 |         (the_default ("malformed mixfix annotation: " ^ quote s) o snd) Scan.fail ()
 | |
| 359 | end; | |
| 360 | ||
| 361 | val (infixK, infixlK, infixrK) = ("infix", "infixl", "infixr");
 | |
| 362 | ||
| 37881 | 363 | fun parse_syntax mk_plain mk_complex prep_arg = | 
| 364 | Scan.option ( | |
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36959diff
changeset | 365 | ((Parse.$$$ infixK >> K X) | 
| 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36959diff
changeset | 366 | || (Parse.$$$ infixlK >> K L) | 
| 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36959diff
changeset | 367 | || (Parse.$$$ infixrK >> K R)) | 
| 37881 | 368 | -- Parse.nat -- Parse.string | 
| 369 | >> (fn ((x, i), s) => mk_complex (parse_infix prep_arg (x, i) s)) | |
| 370 | || Parse.string >> (fn s => (parse_mixfix mk_plain mk_complex prep_arg s))); | |
| 28060 | 371 | |
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36959diff
changeset | 372 | val _ = List.app Keyword.keyword [infixK, infixlK, infixrK]; | 
| 28060 | 373 | |
| 37899 | 374 | fun parse_tyco_syntax x = parse_syntax (fn s => (0, (K o K o K o str) s)) I I x; | 
| 37881 | 375 | |
| 376 | val parse_const_syntax = parse_syntax plain_const_syntax simple_const_syntax fst; | |
| 377 | ||
| 28064 | 378 | |
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 379 | (** module name spaces **) | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 380 | |
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 381 | val dest_name = | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 382 | apfst Long_Name.implode o split_last o fst o split_last o Long_Name.explode; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 383 | |
| 32924 
d2e9b2dab760
dropped Code_Printer prefix where feasible; fixed whitespace issues; more coherent terminology
 haftmann parents: 
32913diff
changeset | 384 | fun mk_name_module reserved module_prefix module_alias program = | 
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 385 | let | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 386 | fun mk_alias name = case module_alias name | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 387 | of SOME name' => name' | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 388 | | NONE => name | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 389 | |> Long_Name.explode | 
| 32924 
d2e9b2dab760
dropped Code_Printer prefix where feasible; fixed whitespace issues; more coherent terminology
 haftmann parents: 
32913diff
changeset | 390 | |> map (fn name => (the_single o fst) (Name.variants [name] reserved)) | 
| 30648 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 391 | |> Long_Name.implode; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 392 | fun mk_prefix name = case module_prefix | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 393 | of SOME module_prefix => Long_Name.append module_prefix name | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 394 | | NONE => name; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 395 | val tab = | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 396 | Symtab.empty | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 397 | |> Graph.fold ((fn name => Symtab.default (name, (mk_alias #> mk_prefix) name)) | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 398 | o fst o dest_name o fst) | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 399 | program | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 400 | in the o Symtab.lookup tab end; | 
| 
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
 haftmann parents: 
30161diff
changeset | 401 | |
| 28060 | 402 | end; (*struct*) |