author | haftmann |
Sun, 30 Mar 2025 13:50:06 +0200 | |
changeset 82380 | ceb4f33d3073 |
parent 82378 | 23df00d48d6f |
child 82389 | ec39ec5447e6 |
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 concat: Pretty.T list -> Pretty.T |
|
19 |
val brackets: Pretty.T list -> Pretty.T |
|
34178
a78b8d5b91cb
take care for destructive print mode properly using dedicated pretty builders
haftmann
parents:
34176
diff
changeset
|
20 |
val enum_default: string -> string -> string -> string -> Pretty.T list -> Pretty.T |
28060 | 21 |
val semicolon: Pretty.T list -> Pretty.T |
33989
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
haftmann
parents:
32924
diff
changeset
|
22 |
val doublesemicolon: Pretty.T list -> Pretty.T |
55150 | 23 |
val markup_stmt: Code_Symbol.T -> Pretty.T -> Pretty.T |
75604
39df30349778
more scalable generated files and code export, using Bytes.T;
wenzelm
parents:
75356
diff
changeset
|
24 |
val format: Code_Symbol.T list -> int -> Pretty.T -> Bytes.T |
28060 | 25 |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
26 |
type var_ctxt |
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
27 |
val make_vars: string list -> var_ctxt |
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
28 |
val intro_vars: string list -> var_ctxt -> var_ctxt |
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
29 |
val lookup_var: var_ctxt -> string -> string |
32913 | 30 |
val intro_base_names: (string -> bool) -> (string -> string) |
31 |
-> string list -> var_ctxt -> var_ctxt |
|
55150 | 32 |
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:
52433
diff
changeset
|
33 |
-> iterm list -> var_ctxt -> var_ctxt |
32908 | 34 |
val aux_params: var_ctxt -> iterm list list -> string list |
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
35 |
|
31056
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
36 |
type literals |
68028 | 37 |
val Literals: { literal_string: string -> string, |
37958
9728342bcd56
another refinement chapter in the neverending numeral story
haftmann
parents:
37899
diff
changeset
|
38 |
literal_numeral: int -> string, |
31056
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
39 |
literal_list: Pretty.T list -> Pretty.T, infix_cons: int * string } |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
40 |
-> literals |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
41 |
val literal_string: literals -> string -> string |
34944
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34247
diff
changeset
|
42 |
val literal_numeral: literals -> int -> string |
31056
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
43 |
val literal_list: literals -> Pretty.T list -> Pretty.T |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
44 |
val infix_cons: literals -> int * string |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
45 |
|
28060 | 46 |
type lrx |
47 |
val L: lrx |
|
48 |
val R: lrx |
|
49 |
val X: lrx |
|
50 |
type fixity |
|
51 |
val BR: fixity |
|
52 |
val NOBR: fixity |
|
53 |
val INFX: int * lrx -> fixity |
|
54 |
val APP: fixity |
|
55 |
val brackify: fixity -> Pretty.T list -> Pretty.T |
|
37242
97097e589715
brackify_infix etc.: no break before infix operator -- eases survival in Scala
haftmann
parents:
37146
diff
changeset
|
56 |
val brackify_infix: int * lrx -> fixity -> Pretty.T * Pretty.T * Pretty.T -> Pretty.T |
31665 | 57 |
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:
50618
diff
changeset
|
58 |
val gen_applify: bool -> string -> string -> ('a -> Pretty.T) -> fixity -> Pretty.T -> 'a list -> Pretty.T |
37638 | 59 |
val applify: string -> string -> ('a -> Pretty.T) -> fixity -> Pretty.T -> 'a list -> Pretty.T |
38922 | 60 |
val tuplify: (fixity -> 'a -> Pretty.T) -> fixity -> 'a list -> Pretty.T option |
61 |
||
82378 | 62 |
val parse_target_source: string parser |
55153
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
63 |
type raw_const_syntax |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
64 |
val plain_const_syntax: string -> raw_const_syntax |
34152 | 65 |
type simple_const_syntax |
55153
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
66 |
val simple_const_syntax: simple_const_syntax -> raw_const_syntax |
37881 | 67 |
type complex_const_syntax |
55153
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
68 |
val complex_const_syntax: complex_const_syntax -> raw_const_syntax |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
69 |
val parse_const_syntax: raw_const_syntax parser |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
70 |
val requires_args: raw_const_syntax -> int |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
71 |
datatype const_printer = Plain_printer of string |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
72 |
| Complex_printer of (var_ctxt -> fixity -> iterm -> Pretty.T) |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
73 |
-> thm option -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
74 |
type const_syntax = int * const_printer |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
75 |
val prep_const_syntax: theory -> literals |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
76 |
-> string -> raw_const_syntax -> const_syntax |
52070
fd497099f5f5
infrastructure for generic data for code symbols (constants, type constructors, classes, instances)
haftmann
parents:
52069
diff
changeset
|
77 |
type tyco_syntax |
52079 | 78 |
val parse_tyco_syntax: tyco_syntax parser |
35228 | 79 |
val gen_print_app: (thm option -> var_ctxt -> const * iterm list -> Pretty.T list) |
80 |
-> (thm option -> var_ctxt -> fixity -> iterm -> Pretty.T) |
|
55153
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
81 |
-> (string -> const_syntax option) |
35228 | 82 |
-> thm option -> var_ctxt -> fixity -> const * iterm list -> Pretty.T |
83 |
val gen_print_bind: (thm option -> var_ctxt -> fixity -> iterm -> Pretty.T) |
|
84 |
-> thm option -> fixity |
|
31889 | 85 |
-> iterm -> var_ctxt -> Pretty.T * var_ctxt |
59103 | 86 |
|
87 |
type identifiers |
|
88 |
type printings |
|
89 |
type data |
|
90 |
val empty_data: data |
|
91 |
val map_data: (string list * identifiers * printings |
|
92 |
-> string list * identifiers * printings) |
|
93 |
-> data -> data |
|
94 |
val merge_data: data * data -> data |
|
95 |
val the_reserved: data -> string list; |
|
96 |
val the_identifiers: data -> identifiers; |
|
97 |
val the_printings: data -> printings; |
|
28060 | 98 |
end; |
99 |
||
100 |
structure Code_Printer : CODE_PRINTER = |
|
101 |
struct |
|
102 |
||
55150 | 103 |
open Basic_Code_Symbol; |
28060 | 104 |
open Code_Thingol; |
105 |
||
39034
ebeb48fd653b
formal framework for presentation of selected statements
haftmann
parents:
38923
diff
changeset
|
106 |
(** generic nonsense *) |
ebeb48fd653b
formal framework for presentation of selected statements
haftmann
parents:
38923
diff
changeset
|
107 |
|
55236 | 108 |
fun eqn_error thy (SOME thm) s = |
61268 | 109 |
error (s ^ ",\nin equation " ^ Thm.string_of_thm_global thy thm) |
55236 | 110 |
| eqn_error _ NONE s = error s; |
28060 | 111 |
|
39034
ebeb48fd653b
formal framework for presentation of selected statements
haftmann
parents:
38923
diff
changeset
|
112 |
|
34071 | 113 |
(** assembling and printing text pieces **) |
28060 | 114 |
|
115 |
infixr 5 @@; |
|
116 |
infixr 5 @|; |
|
117 |
fun x @@ y = [x, y]; |
|
118 |
fun xs @| y = xs @ [y]; |
|
119 |
val concat = Pretty.block o Pretty.breaks; |
|
80833
6896736dec38
eliminate print mode "code_presentation" thanks to value-oriented Pretty.T operations;
wenzelm
parents:
80829
diff
changeset
|
120 |
val commas = Pretty.commas; |
82380 | 121 |
val brackets = Pretty.enclose "(" ")" o Pretty.breaks; |
122 |
fun enum_default default sep l r [] = Pretty.str default |
|
123 |
| enum_default default sep l r xs = Pretty.enum sep l r xs; |
|
124 |
fun semicolon ps = Pretty.block [concat ps, Pretty.str ";"]; |
|
125 |
fun doublesemicolon ps = Pretty.block [concat ps, Pretty.str ";;"]; |
|
28060 | 126 |
|
80833
6896736dec38
eliminate print mode "code_presentation" thanks to value-oriented Pretty.T operations;
wenzelm
parents:
80829
diff
changeset
|
127 |
fun markup_stmt sym = |
80858
a392351d1ed4
more robust: global ML name space for markup elements;
wenzelm
parents:
80851
diff
changeset
|
128 |
Pretty.mark (Markup.code_presentationN, [(Markup.stmt_nameN, Code_Symbol.marker sym)]); |
39062 | 129 |
|
74231 | 130 |
fun filter_presentation [] xml = |
80851 | 131 |
Bytes.build (XML.traverse_texts Bytes.add xml) |
74231 | 132 |
| filter_presentation presentation_syms xml = |
39057
c6d146ed07ae
manage statement selection for presentation wholly through markup
haftmann
parents:
39056
diff
changeset
|
133 |
let |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
55145
diff
changeset
|
134 |
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:
43326
diff
changeset
|
135 |
fun is_selected (name, attrs) = |
80858
a392351d1ed4
more robust: global ML name space for markup elements;
wenzelm
parents:
80851
diff
changeset
|
136 |
name = Markup.code_presentationN |
a392351d1ed4
more robust: global ML name space for markup elements;
wenzelm
parents:
80851
diff
changeset
|
137 |
andalso member (op =) presentation_idents (the (Properties.get attrs Markup.stmt_nameN)); |
39558 | 138 |
fun add_content_with_space tree (is_first, buf) = |
139 |
buf |
|
80848
df85df6315af
clarified signature: prefer explicit type Bytes.T;
wenzelm
parents:
80847
diff
changeset
|
140 |
|> not is_first ? Bytes.add "\n\n" |
80851 | 141 |
|> XML.traverse_text Bytes.add tree |
39558 | 142 |
|> pair false; |
80859 | 143 |
fun filter (XML.Elem (elem, body)) = |
144 |
fold (if is_selected elem then add_content_with_space else filter) body |
|
47576 | 145 |
| filter (XML.Text _) = I; |
80848
df85df6315af
clarified signature: prefer explicit type Bytes.T;
wenzelm
parents:
80847
diff
changeset
|
146 |
in snd (fold filter xml (true, Bytes.empty)) end; |
39062 | 147 |
|
148 |
fun format presentation_names width = |
|
80848
df85df6315af
clarified signature: prefer explicit type Bytes.T;
wenzelm
parents:
80847
diff
changeset
|
149 |
Pretty.output (Pretty.markup_output_ops (SOME width)) |
80835 | 150 |
#> YXML.parse_body_bytes |
39558 | 151 |
#> filter_presentation presentation_names |
80848
df85df6315af
clarified signature: prefer explicit type Bytes.T;
wenzelm
parents:
80847
diff
changeset
|
152 |
#> Bytes.add "\n"; |
34071 | 153 |
|
28060 | 154 |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
155 |
(** names and variable name contexts **) |
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
156 |
|
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
157 |
type var_ctxt = string Symtab.table * Name.context; |
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
158 |
|
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
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:
30161
diff
changeset
|
160 |
Name.make_context names); |
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
161 |
|
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
162 |
fun intro_vars names (namemap, namectxt) = |
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
163 |
let |
43326
47cf4bc789aa
simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents:
43324
diff
changeset
|
164 |
val (names', namectxt') = fold_map Name.variant names namectxt; |
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
165 |
val namemap' = fold2 (curry Symtab.update) names names' namemap; |
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
166 |
in (namemap', namectxt') end; |
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
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:
43326
diff
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:
43326
diff
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:
43326
diff
changeset
|
170 |
SOME name' => name' |
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
171 |
| NONE => error ("Invalid name in context: " ^ quote name); |
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
172 |
|
32908 | 173 |
fun aux_params vars lhss = |
174 |
let |
|
175 |
fun fish_param _ (w as SOME _) = w |
|
176 |
| fish_param (IVar (SOME v)) NONE = SOME v |
|
177 |
| fish_param _ NONE = NONE; |
|
178 |
fun fillup_param _ (_, SOME v) = v |
|
179 |
| fillup_param x (i, NONE) = x ^ string_of_int i; |
|
180 |
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:
40627
diff
changeset
|
181 |
val x = singleton (Name.variant_list (map_filter I fished1)) "x"; |
32908 | 182 |
val fished2 = map_index (fillup_param x) fished1; |
81521 | 183 |
val fished3 = Name.variants Name.context fished2; |
32908 | 184 |
val vars' = intro_vars fished3 vars; |
185 |
in map (lookup_var vars') fished3 end; |
|
186 |
||
55145
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
haftmann
parents:
52433
diff
changeset
|
187 |
fun intro_base_names no_syntax deresolve = |
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
haftmann
parents:
52433
diff
changeset
|
188 |
map_filter (fn name => if no_syntax name then |
32913 | 189 |
let val name' = deresolve name in |
190 |
if Long_Name.is_qualified name' then NONE else SOME name' |
|
191 |
end else NONE) |
|
55145
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
haftmann
parents:
52433
diff
changeset
|
192 |
#> intro_vars; |
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
haftmann
parents:
52433
diff
changeset
|
193 |
|
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
haftmann
parents:
52433
diff
changeset
|
194 |
fun intro_base_names_for no_syntax deresolve ts = |
2bb3cd36bcf7
more abstract declaration of unqualified constant names in code printing context
haftmann
parents:
52433
diff
changeset
|
195 |
[] |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
55145
diff
changeset
|
196 |
|> fold Code_Thingol.add_constsyms ts |
55150 | 197 |
|> intro_base_names (fn Constant const => no_syntax const | _ => true) deresolve; |
32913 | 198 |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30161
diff
changeset
|
199 |
|
31056
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
200 |
(** pretty literals **) |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
201 |
|
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
202 |
datatype literals = Literals of { |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
203 |
literal_string: string -> string, |
34944
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34247
diff
changeset
|
204 |
literal_numeral: int -> string, |
31056
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
205 |
literal_list: Pretty.T list -> Pretty.T, |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
206 |
infix_cons: int * string |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
207 |
}; |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
208 |
|
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
209 |
fun dest_Literals (Literals lits) = lits; |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
210 |
|
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
211 |
val literal_string = #literal_string o dest_Literals; |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
212 |
val literal_numeral = #literal_numeral o dest_Literals; |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
213 |
val literal_list = #literal_list o dest_Literals; |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
214 |
val infix_cons = #infix_cons o dest_Literals; |
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
215 |
|
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
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 |
|
52433 | 236 |
| fixity (INFX (pr, lr)) (INFX (pr_ctxt, lr_ctxt)) = |
237 |
pr < pr_ctxt |
|
238 |
orelse pr = pr_ctxt |
|
28060 | 239 |
andalso fixity_lrx lr lr_ctxt |
52433 | 240 |
orelse pr_ctxt = ~1 |
28060 | 241 |
| fixity BR (INFX _) = false |
242 |
| fixity _ _ = true; |
|
243 |
||
244 |
fun gen_brackify _ [p] = p |
|
82380 | 245 |
| gen_brackify true (ps as _::_) = Pretty.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:
37146
diff
changeset
|
251 |
fun brackify_infix infx fxy_ctxt (l, m, r) = |
82380 | 252 |
gen_brackify (fixity (INFX infx) fxy_ctxt) [l, Pretty.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 |
|
82380 | 257 |
then Pretty.enclose "(" ")" [p] |
31665 | 258 |
else p |
259 |
end; |
|
260 |
||
50626
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
haftmann
parents:
50618
diff
changeset
|
261 |
fun gen_applify strict opn cls f fxy_ctxt p [] = |
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
haftmann
parents:
50618
diff
changeset
|
262 |
if strict |
82380 | 263 |
then gen_brackify (fixity BR fxy_ctxt) [p, Pretty.str (opn ^ cls)] |
50626
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
haftmann
parents:
50618
diff
changeset
|
264 |
else p |
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
haftmann
parents:
50618
diff
changeset
|
265 |
| gen_applify strict opn cls f fxy_ctxt p ps = |
82380 | 266 |
gen_brackify (fixity BR fxy_ctxt) (p @@ Pretty.enum "," opn cls (map f ps)); |
34247 | 267 |
|
50626
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
haftmann
parents:
50618
diff
changeset
|
268 |
fun applify opn = gen_applify false opn; |
e21485358c56
uniform parentheses for constructor -- necessary to accomodate scala 10
haftmann
parents:
50618
diff
changeset
|
269 |
|
38922 | 270 |
fun tuplify _ _ [] = NONE |
271 |
| tuplify print fxy [x] = SOME (print fxy x) |
|
82380 | 272 |
| tuplify print _ xs = SOME (Pretty.enum "," "(" ")" (map (print NOBR) xs)); |
38922 | 273 |
|
28060 | 274 |
|
52070
fd497099f5f5
infrastructure for generic data for code symbols (constants, type constructors, classes, instances)
haftmann
parents:
52069
diff
changeset
|
275 |
(* generic syntax *) |
34152 | 276 |
|
82378 | 277 |
local |
278 |
||
279 |
val target = Markup.language' |
|
280 |
{name = "code target language", symbols = false, antiquotes = false}; |
|
281 |
||
282 |
fun markup_target source = |
|
283 |
let |
|
284 |
val pos = Input.pos_of source; |
|
285 |
val _ = |
|
286 |
if Position.is_reported_range pos |
|
287 |
then Position.report pos (target (Input.is_delimited source)) |
|
288 |
else (); |
|
289 |
in Input.string_of source end; |
|
290 |
||
291 |
in |
|
292 |
||
293 |
val parse_target_source = Parse.input Parse.embedded >> markup_target; |
|
294 |
||
295 |
end |
|
296 |
||
34152 | 297 |
type simple_const_syntax = int * ((fixity -> iterm -> Pretty.T) |
298 |
-> fixity -> (iterm * itype) list -> Pretty.T); |
|
37881 | 299 |
|
55148
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
haftmann
parents:
55147
diff
changeset
|
300 |
type complex_const_syntax = int * (literals |
31056
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
301 |
-> (var_ctxt -> fixity -> iterm -> Pretty.T) |
55148
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
haftmann
parents:
55147
diff
changeset
|
302 |
-> thm option -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T); |
37881 | 303 |
|
55153
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
304 |
datatype raw_const_syntax = plain_const_syntax of string |
37881 | 305 |
| complex_const_syntax of complex_const_syntax; |
306 |
||
34176 | 307 |
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:
43326
diff
changeset
|
308 |
complex_const_syntax |
55148
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
haftmann
parents:
55147
diff
changeset
|
309 |
(apsnd (fn f => fn _ => fn print => fn _ => fn vars => f (print vars)) syn); |
28060 | 310 |
|
55153
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
311 |
fun requires_args (plain_const_syntax _) = 0 |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
312 |
| requires_args (complex_const_syntax (k, _)) = k; |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
313 |
|
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
314 |
datatype const_printer = Plain_printer of string |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
315 |
| Complex_printer of (var_ctxt -> fixity -> iterm -> Pretty.T) |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
316 |
-> thm option -> var_ctxt -> fixity -> (iterm * itype) list -> Pretty.T; |
37881 | 317 |
|
55153
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
318 |
type const_syntax = int * const_printer; |
31056
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
30648
diff
changeset
|
319 |
|
55153
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
320 |
fun prep_const_syntax thy literals c (plain_const_syntax s) = |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
321 |
(Code.args_number thy c, Plain_printer s) |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
322 |
| prep_const_syntax thy literals c (complex_const_syntax (n, f))= |
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
323 |
(n, Complex_printer (f literals)); |
37881 | 324 |
|
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43326
diff
changeset
|
325 |
fun gen_print_app print_app_expr print_term const_syntax some_thm vars fxy |
77703
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
326 |
(app as (const as { sym, dom, ... }, ts)) = |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
55145
diff
changeset
|
327 |
case sym of |
77703
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
328 |
Constant name => (case const_syntax name of |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
55145
diff
changeset
|
329 |
NONE => brackify fxy (print_app_expr some_thm vars app) |
55153
eedd549de3ef
more suitable names, without any notion of "activating"
haftmann
parents:
55150
diff
changeset
|
330 |
| SOME (_, Plain_printer s) => |
82380 | 331 |
brackify fxy (Pretty.str s :: map (print_term some_thm vars BR) ts) |
77232 | 332 |
| SOME (wanted, Complex_printer print) => |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
55145
diff
changeset
|
333 |
let |
77703
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
334 |
val ((vs_tys, (ts1, rty)), ts2) = |
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
335 |
Code_Thingol.satisfied_application wanted app; |
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
336 |
fun print' fxy = |
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
337 |
print (print_term some_thm) some_thm vars fxy (ts1 ~~ take wanted dom); |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
55145
diff
changeset
|
338 |
in |
77703
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
339 |
if null vs_tys then |
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
340 |
if null ts2 then |
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
341 |
print' fxy |
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
342 |
else |
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
343 |
brackify fxy (print' APP :: map (print_term some_thm vars BR) ts2) |
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
344 |
else |
0262155d2743
more uniform approach towards satisfied applications
haftmann
parents:
77232
diff
changeset
|
345 |
print_term some_thm vars fxy (vs_tys `|==> (IConst const `$$ ts1, rty)) |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
55145
diff
changeset
|
346 |
end) |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
55145
diff
changeset
|
347 |
| _ => brackify fxy (print_app_expr some_thm vars app); |
28060 | 348 |
|
33989
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
haftmann
parents:
32924
diff
changeset
|
349 |
fun gen_print_bind print_term thm (fxy : fixity) pat vars = |
28060 | 350 |
let |
75356 | 351 |
val vs = build (Code_Thingol.add_varnames pat); |
31874 | 352 |
val vars' = intro_vars vs vars; |
33989
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
haftmann
parents:
32924
diff
changeset
|
353 |
in (print_term thm vars' fxy pat, vars') end; |
28060 | 354 |
|
52070
fd497099f5f5
infrastructure for generic data for code symbols (constants, type constructors, classes, instances)
haftmann
parents:
52069
diff
changeset
|
355 |
type tyco_syntax = int * ((fixity -> itype -> Pretty.T) |
fd497099f5f5
infrastructure for generic data for code symbols (constants, type constructors, classes, instances)
haftmann
parents:
52069
diff
changeset
|
356 |
-> fixity -> itype list -> Pretty.T); |
fd497099f5f5
infrastructure for generic data for code symbols (constants, type constructors, classes, instances)
haftmann
parents:
52069
diff
changeset
|
357 |
|
28060 | 358 |
|
359 |
(* mixfix syntax *) |
|
360 |
||
361 |
datatype 'a mixfix = |
|
362 |
Arg of fixity |
|
37881 | 363 |
| String of string |
364 |
| Break; |
|
28060 | 365 |
|
52069 | 366 |
fun printer_of_mixfix prep_arg (fixity_this, mfx) = |
28060 | 367 |
let |
368 |
fun is_arg (Arg _) = true |
|
369 |
| is_arg _ = false; |
|
370 |
val i = (length o filter is_arg) mfx; |
|
371 |
fun fillin _ [] [] = |
|
372 |
[] |
|
33989
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
haftmann
parents:
32924
diff
changeset
|
373 |
| fillin print (Arg fxy :: mfx) (a :: args) = |
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
haftmann
parents:
32924
diff
changeset
|
374 |
(print fxy o prep_arg) a :: fillin print mfx args |
37881 | 375 |
| fillin print (String s :: mfx) args = |
82380 | 376 |
Pretty.str s :: fillin print mfx args |
37881 | 377 |
| fillin print (Break :: mfx) args = |
378 |
Pretty.brk 1 :: fillin print mfx args; |
|
28060 | 379 |
in |
33989
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
haftmann
parents:
32924
diff
changeset
|
380 |
(i, fn print => fn fixity_ctxt => fn args => |
cb136b5f6050
more speaking function names for Code_Printer; added doublesemicolon
haftmann
parents:
32924
diff
changeset
|
381 |
gen_brackify (fixity fixity_this fixity_ctxt) (fillin print mfx args)) |
28060 | 382 |
end; |
383 |
||
52069 | 384 |
fun read_infix (fixity_this, i) s = |
28060 | 385 |
let |
52069 | 386 |
val l = case fixity_this of L => INFX (i, L) | _ => INFX (i, X); |
387 |
val r = case fixity_this of R => INFX (i, R) | _ => INFX (i, X); |
|
28060 | 388 |
in |
52069 | 389 |
(INFX (i, fixity_this), [Arg l, String " ", String s, Break, Arg r]) |
28060 | 390 |
end; |
391 |
||
52069 | 392 |
fun read_mixfix s = |
28060 | 393 |
let |
58854 | 394 |
val sym_any = Scan.one Symbol.not_eof; |
52069 | 395 |
val parse = Scan.optional ($$ "!" >> K NOBR) BR -- Scan.repeat ( |
28060 | 396 |
($$ "(" -- $$ "_" -- $$ ")" >> K (Arg NOBR)) |
397 |
|| ($$ "_" >> K (Arg BR)) |
|
37881 | 398 |
|| ($$ "/" |-- Scan.repeat ($$ " ") >> (K Break)) |
28060 | 399 |
|| (Scan.repeat1 |
400 |
( $$ "'" |-- sym_any |
|
401 |
|| Scan.unless ($$ "_" || $$ "/" || $$ "(" |-- $$ "_" |-- $$ ")") |
|
37881 | 402 |
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:
43326
diff
changeset
|
403 |
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:
43326
diff
changeset
|
404 |
| 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:
43326
diff
changeset
|
405 |
in |
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43326
diff
changeset
|
406 |
case Scan.finite Symbol.stopper parse (Symbol.explode s) of |
52069 | 407 |
(fixity_mixfix, []) => fixity_mixfix |
408 |
| _ => Scan.!! (err s) Scan.fail () |
|
28060 | 409 |
end; |
410 |
||
52069 | 411 |
val parse_fixity = |
69593 | 412 |
(\<^keyword>\<open>infix\<close> >> K X) || (\<^keyword>\<open>infixl\<close> >> K L) || (\<^keyword>\<open>infixr\<close> >> K R) |
52069 | 413 |
|
52099 | 414 |
fun parse_mixfix x = |
82378 | 415 |
(parse_target_source >> read_mixfix |
416 |
|| parse_fixity -- Parse.nat -- parse_target_source |
|
52099 | 417 |
>> (fn ((fixity, i), s) => read_infix (fixity, i) s)) x; |
28060 | 418 |
|
52069 | 419 |
fun syntax_of_mixfix of_plain of_printer prep_arg (BR, [String s]) = of_plain s |
420 |
| syntax_of_mixfix of_plain of_printer prep_arg (fixity, mfx) = |
|
421 |
of_printer (printer_of_mixfix prep_arg (fixity, mfx)); |
|
37881 | 422 |
|
52099 | 423 |
fun parse_tyco_syntax x = |
82380 | 424 |
(parse_mixfix >> syntax_of_mixfix (fn s => (0, (K o K o K o Pretty.str) s)) I I) x; |
52069 | 425 |
|
426 |
val parse_const_syntax = |
|
427 |
parse_mixfix >> syntax_of_mixfix plain_const_syntax simple_const_syntax fst; |
|
37881 | 428 |
|
59103 | 429 |
|
430 |
(** custom data structure **) |
|
431 |
||
432 |
type identifiers = (string list * string, string list * string, string list * string, string list * string, |
|
433 |
string list * string, string list * string) Code_Symbol.data; |
|
434 |
type printings = (const_syntax, tyco_syntax, string, unit, unit, |
|
69485
b734ff28e405
proper attach mechanism for any kind of symbols, not just constants
haftmann
parents:
68028
diff
changeset
|
435 |
(Pretty.T * Code_Symbol.T list)) Code_Symbol.data; |
59103 | 436 |
|
437 |
datatype data = Data of { reserved: string list, identifiers: identifiers, |
|
438 |
printings: printings }; |
|
439 |
||
440 |
fun make_data (reserved, identifiers, printings) = |
|
441 |
Data { reserved = reserved, identifiers = identifiers, printings = printings }; |
|
442 |
val empty_data = make_data ([], Code_Symbol.empty_data, Code_Symbol.empty_data); |
|
443 |
fun map_data f (Data { reserved, identifiers, printings }) = |
|
444 |
make_data (f (reserved, identifiers, printings)); |
|
445 |
fun merge_data (Data { reserved = reserved1, identifiers = identifiers1, printings = printings1 }, |
|
446 |
Data { reserved = reserved2, identifiers = identifiers2, printings = printings2 }) = |
|
447 |
make_data (merge (op =) (reserved1, reserved2), |
|
448 |
Code_Symbol.merge_data (identifiers1, identifiers2), Code_Symbol.merge_data (printings1, printings2)); |
|
449 |
||
450 |
fun the_reserved (Data { reserved, ... }) = reserved; |
|
451 |
fun the_identifiers (Data { identifiers , ... }) = identifiers; |
|
452 |
fun the_printings (Data { printings, ... }) = printings; |
|
453 |
||
454 |
||
28060 | 455 |
end; (*struct*) |