author | haftmann |
Fri, 18 Jun 2010 15:59:51 +0200 | |
changeset 37464 | 9250ad1b98e0 |
parent 37453 | 44a307746163 |
child 37639 | 5b6733e6e033 |
permissions | -rw-r--r-- |
34294 | 1 |
(* Author: Florian Haftmann, TU Muenchen |
2 |
||
3 |
Serializer for Scala. |
|
4 |
*) |
|
5 |
||
6 |
signature CODE_SCALA = |
|
7 |
sig |
|
8 |
val setup: theory -> theory |
|
9 |
end; |
|
10 |
||
11 |
structure Code_Scala : CODE_SCALA = |
|
12 |
struct |
|
13 |
||
14 |
val target = "Scala"; |
|
15 |
||
16 |
open Basic_Code_Thingol; |
|
17 |
open Code_Printer; |
|
18 |
||
19 |
infixr 5 @@; |
|
20 |
infixr 5 @|; |
|
21 |
||
22 |
||
23 |
(** Scala serializer **) |
|
24 |
||
37464 | 25 |
fun print_scala_stmt labelled_name syntax_tyco syntax_const reserved |
26 |
args_num is_singleton deresolve = |
|
34294 | 27 |
let |
28 |
val deresolve_base = Long_Name.base_name o deresolve; |
|
37243
6e2ac5358d6e
capitalized type variables; added yield as keyword
haftmann
parents:
37224
diff
changeset
|
29 |
val lookup_tyvar = first_upper oo lookup_var; |
34294 | 30 |
fun print_typ tyvars fxy (tycoexpr as tyco `%% tys) = (case syntax_tyco tyco |
31 |
of NONE => applify "[" "]" fxy |
|
32 |
((str o deresolve) tyco) (map (print_typ tyvars NOBR) tys) |
|
33 |
| SOME (i, print) => print (print_typ tyvars) fxy tys) |
|
37243
6e2ac5358d6e
capitalized type variables; added yield as keyword
haftmann
parents:
37224
diff
changeset
|
34 |
| print_typ tyvars fxy (ITyVar v) = (str o lookup_tyvar tyvars) v; |
34294 | 35 |
fun print_typed tyvars p ty = |
36 |
Pretty.block [p, str ":", Pretty.brk 1, print_typ tyvars NOBR ty] |
|
37 |
fun print_var vars NONE = str "_" |
|
38 |
| print_var vars (SOME v) = (str o lookup_var vars) v |
|
35228 | 39 |
fun print_term tyvars is_pat some_thm vars fxy (IConst c) = |
40 |
print_app tyvars is_pat some_thm vars fxy (c, []) |
|
41 |
| print_term tyvars is_pat some_thm vars fxy (t as (t1 `$ t2)) = |
|
34294 | 42 |
(case Code_Thingol.unfold_const_app t |
35228 | 43 |
of SOME app => print_app tyvars is_pat some_thm vars fxy app |
34294 | 44 |
| _ => applify "(" ")" fxy |
35228 | 45 |
(print_term tyvars is_pat some_thm vars BR t1) |
46 |
[print_term tyvars is_pat some_thm vars NOBR t2]) |
|
47 |
| print_term tyvars is_pat some_thm vars fxy (IVar v) = |
|
34294 | 48 |
print_var vars v |
35228 | 49 |
| print_term tyvars is_pat some_thm vars fxy ((v, ty) `|=> t) = |
34294 | 50 |
let |
51 |
val vars' = intro_vars (the_list v) vars; |
|
52 |
in |
|
53 |
concat [ |
|
54 |
Pretty.block [str "(", print_typed tyvars (print_var vars' v) ty, str ")"], |
|
55 |
str "=>", |
|
35228 | 56 |
print_term tyvars false some_thm vars' NOBR t |
34294 | 57 |
] |
58 |
end |
|
35228 | 59 |
| print_term tyvars is_pat some_thm vars fxy (ICase (cases as (_, t0))) = |
34294 | 60 |
(case Code_Thingol.unfold_const_app t0 |
61 |
of SOME (c_ts as ((c, _), _)) => if is_none (syntax_const c) |
|
35228 | 62 |
then print_case tyvars some_thm vars fxy cases |
63 |
else print_app tyvars is_pat some_thm vars fxy c_ts |
|
64 |
| NONE => print_case tyvars some_thm vars fxy cases) |
|
37464 | 65 |
and print_app tyvars is_pat some_thm vars fxy |
66 |
(app as ((c, ((arg_typs, _), function_typs)), ts)) = |
|
34294 | 67 |
let |
68 |
val k = length ts; |
|
69 |
val l = case syntax_const c of NONE => args_num c | SOME (l, _) => l; |
|
37450 | 70 |
val arg_typs' = if is_pat orelse |
71 |
(is_none (syntax_const c) andalso is_singleton c) then [] else arg_typs; |
|
34294 | 72 |
val (no_syntax, print') = case syntax_const c |
73 |
of NONE => (true, fn ts => applify "(" ")" fxy |
|
37464 | 74 |
(applify "[" "]" NOBR ((str o deresolve) c) |
75 |
(map (print_typ tyvars NOBR) arg_typs')) |
|
76 |
(map (print_term tyvars is_pat some_thm vars NOBR) ts)) |
|
34294 | 77 |
| SOME (_, print) => (false, fn ts => |
37464 | 78 |
print (print_term tyvars is_pat some_thm) some_thm vars fxy |
79 |
(ts ~~ take l function_typs)); |
|
34294 | 80 |
in if k = l then print' ts |
81 |
else if k < l then |
|
35228 | 82 |
print_term tyvars is_pat some_thm vars fxy (Code_Thingol.eta_expand l app) |
34294 | 83 |
else let |
84 |
val (ts1, ts23) = chop l ts; |
|
85 |
in |
|
86 |
Pretty.block (print' ts1 :: map (fn t => Pretty.block |
|
35228 | 87 |
[str ".apply(", print_term tyvars is_pat some_thm vars NOBR t, str ")"]) ts23) |
34294 | 88 |
end end |
37464 | 89 |
and print_bind tyvars some_thm fxy p = |
90 |
gen_print_bind (print_term tyvars true) some_thm fxy p |
|
35228 | 91 |
and print_case tyvars some_thm vars fxy (cases as ((_, [_]), _)) = |
34294 | 92 |
let |
93 |
val (binds, body) = Code_Thingol.unfold_let (ICase cases); |
|
94 |
fun print_match ((pat, ty), t) vars = |
|
95 |
vars |
|
35228 | 96 |
|> print_bind tyvars some_thm BR pat |
34294 | 97 |
|>> (fn p => semicolon [Pretty.block [str "val", Pretty.brk 1, p, |
98 |
str ":", Pretty.brk 1, print_typ tyvars NOBR ty], |
|
35228 | 99 |
str "=", print_term tyvars false some_thm vars NOBR t]) |
34294 | 100 |
val (ps, vars') = fold_map print_match binds vars; |
101 |
in |
|
102 |
brackify_block fxy |
|
103 |
(str "{") |
|
35228 | 104 |
(ps @| print_term tyvars false some_thm vars' NOBR body) |
34294 | 105 |
(str "}") |
106 |
end |
|
35228 | 107 |
| print_case tyvars some_thm vars fxy (((t, ty), clauses as _ :: _), _) = |
34294 | 108 |
let |
109 |
fun print_select (pat, body) = |
|
110 |
let |
|
37464 | 111 |
val (p_pat, vars') = print_bind tyvars some_thm NOBR pat vars; |
112 |
val p_body = print_term tyvars false some_thm vars' NOBR body |
|
113 |
in concat [str "case", p_pat, str "=>", p_body] end; |
|
34294 | 114 |
in brackify_block fxy |
35228 | 115 |
(concat [print_term tyvars false some_thm vars NOBR t, str "match", str "{"]) |
34294 | 116 |
(map print_select clauses) |
117 |
(str "}") |
|
118 |
end |
|
35228 | 119 |
| print_case tyvars some_thm vars fxy ((_, []), _) = |
34294 | 120 |
(brackify fxy o Pretty.breaks o map str) ["error(\"empty case\")"]; |
37450 | 121 |
fun print_defhead tyvars vars p vs params tys implicits (*FIXME simplify*) ty = |
37243
6e2ac5358d6e
capitalized type variables; added yield as keyword
haftmann
parents:
37224
diff
changeset
|
122 |
Pretty.block [str "def ", print_typed tyvars (applify "(implicit " ")" NOBR |
34294 | 123 |
(applify "(" ")" NOBR |
37450 | 124 |
(applify "[" "]" NOBR p (map (fn (v, sort) => |
37464 | 125 |
(str o implode) |
126 |
(lookup_tyvar tyvars v :: map (prefix ": " o deresolve) sort)) vs)) |
|
34294 | 127 |
(map2 (fn param => fn ty => print_typed tyvars |
128 |
((str o lookup_var vars) param) ty) |
|
37243
6e2ac5358d6e
capitalized type variables; added yield as keyword
haftmann
parents:
37224
diff
changeset
|
129 |
params tys)) implicits) ty, str " ="] |
37464 | 130 |
fun print_stmt (name, Code_Thingol.Fun (_, (((vs, ty), raw_eqs), _))) = |
131 |
(case filter (snd o snd) raw_eqs |
|
34294 | 132 |
of [] => |
133 |
let |
|
134 |
val (tys, ty') = Code_Thingol.unfold_fun ty; |
|
135 |
val params = Name.invents (snd reserved) "a" (length tys); |
|
136 |
val tyvars = intro_vars (map fst vs) reserved; |
|
137 |
val vars = intro_vars params reserved; |
|
138 |
in |
|
139 |
concat [print_defhead tyvars vars ((str o deresolve) name) vs params tys [] ty', |
|
140 |
str ("error(\"" ^ name ^ "\")")] |
|
141 |
end |
|
142 |
| eqs => |
|
143 |
let |
|
35228 | 144 |
val tycos = fold (fn ((ts, t), _) => |
34294 | 145 |
fold Code_Thingol.add_tyconames (t :: ts)) eqs []; |
146 |
val tyvars = reserved |
|
147 |
|> intro_base_names |
|
148 |
(is_none o syntax_tyco) deresolve tycos |
|
149 |
|> intro_vars (map fst vs); |
|
150 |
val simple = case eqs |
|
151 |
of [((ts, _), _)] => forall Code_Thingol.is_IVar ts |
|
152 |
| _ => false; |
|
153 |
val consts = fold Code_Thingol.add_constnames |
|
154 |
(map (snd o fst) eqs) []; |
|
155 |
val vars1 = reserved |
|
156 |
|> intro_base_names |
|
157 |
(is_none o syntax_const) deresolve consts |
|
37464 | 158 |
val params = if simple |
159 |
then (map (fn IVar (SOME x) => x) o fst o fst o hd) eqs |
|
160 |
else aux_params vars1 (map (fst o fst) eqs); |
|
161 |
val vars2 = intro_vars params vars1; |
|
34294 | 162 |
val (tys, ty1) = Code_Thingol.unfold_fun ty; |
163 |
val (tys1, tys2) = chop (length params) tys; |
|
164 |
val ty2 = Library.foldr |
|
165 |
(fn (ty1, ty2) => Code_Thingol.fun_tyco `%% [ty1, ty2]) (tys2, ty1); |
|
166 |
fun print_tuple [p] = p |
|
167 |
| print_tuple ps = enum "," "(" ")" ps; |
|
37464 | 168 |
fun print_rhs vars' ((_, t), (some_thm, _)) = |
169 |
print_term tyvars false some_thm vars' NOBR t; |
|
35228 | 170 |
fun print_clause (eq as ((ts, _), (some_thm, _))) = |
34294 | 171 |
let |
37464 | 172 |
val vars' = intro_vars ((fold o Code_Thingol.fold_varnames) |
173 |
(insert (op =)) ts []) vars1; |
|
34294 | 174 |
in |
37464 | 175 |
concat [str "case", |
176 |
print_tuple (map (print_term tyvars true some_thm vars' NOBR) ts), |
|
34294 | 177 |
str "=>", print_rhs vars' eq] |
178 |
end; |
|
37464 | 179 |
val head = print_defhead tyvars vars2 ((str o deresolve) name) vs params tys1 [] ty2; |
34294 | 180 |
in if simple then |
37464 | 181 |
concat [head, print_rhs vars2 (hd eqs)] |
34294 | 182 |
else |
183 |
Pretty.block_enclose |
|
37464 | 184 |
(concat [head, print_tuple (map (str o lookup_var vars2) params), |
34294 | 185 |
str "match", str "{"], str "}") |
186 |
(map print_clause eqs) |
|
187 |
end) |
|
188 |
| print_stmt (name, Code_Thingol.Datatype (_, (vs, cos))) = |
|
189 |
let |
|
190 |
val tyvars = intro_vars (map fst vs) reserved; |
|
37450 | 191 |
fun print_co ((co, _), []) = |
34294 | 192 |
concat [str "final", str "case", str "object", (str o deresolve_base) co, |
193 |
str "extends", applify "[" "]" NOBR ((str o deresolve_base) name) |
|
194 |
(replicate (length vs) (str "Nothing"))] |
|
37450 | 195 |
| print_co ((co, vs_args), tys) = |
34294 | 196 |
let |
197 |
val fields = Name.names (snd reserved) "a" tys; |
|
198 |
val vars = intro_vars (map fst fields) reserved; |
|
37450 | 199 |
fun add_typargs1 p = applify "[" "]" NOBR p |
200 |
(map (str o lookup_tyvar tyvars o fst) vs); (*FIXME*) |
|
201 |
fun add_typargs2 p = applify "[" "]" NOBR p |
|
202 |
(map (str o lookup_tyvar tyvars) vs_args); (*FIXME*) |
|
34294 | 203 |
in |
204 |
concat [ |
|
205 |
applify "(" ")" NOBR |
|
37464 | 206 |
(add_typargs2 ((concat o map str) |
207 |
["final", "case", "class", deresolve_base co])) |
|
34294 | 208 |
(map (uncurry (print_typed tyvars) o apfst str) fields), |
209 |
str "extends", |
|
37450 | 210 |
add_typargs1 ((str o deresolve_base) name) |
34294 | 211 |
] |
212 |
end |
|
213 |
in |
|
214 |
Pretty.chunks ( |
|
37464 | 215 |
applify "[" "]" NOBR ((concat o map str) |
216 |
["sealed", "class", deresolve_base name]) |
|
37243
6e2ac5358d6e
capitalized type variables; added yield as keyword
haftmann
parents:
37224
diff
changeset
|
217 |
(map (str o prefix "+" o lookup_tyvar tyvars o fst) vs) |
34294 | 218 |
:: map print_co cos |
219 |
) |
|
220 |
end |
|
37447
ad3e04f289b6
transitive superclasses were also only a misunderstanding
haftmann
parents:
37446
diff
changeset
|
221 |
| print_stmt (name, Code_Thingol.Class (_, (v, (super_classes, classparams)))) = |
34294 | 222 |
let |
223 |
val tyvars = intro_vars [v] reserved; |
|
224 |
val vs = [(v, [name])]; |
|
37243
6e2ac5358d6e
capitalized type variables; added yield as keyword
haftmann
parents:
37224
diff
changeset
|
225 |
fun add_typarg p = applify "[" "]" NOBR p [(str o lookup_tyvar tyvars) v]; |
37384
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37337
diff
changeset
|
226 |
fun print_super_classes [] = NONE |
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37337
diff
changeset
|
227 |
| print_super_classes classes = SOME (concat (str "extends" |
37464 | 228 |
:: separate (str "with") |
229 |
(map (add_typarg o str o deresolve o fst) classes))); |
|
34294 | 230 |
fun print_tupled_typ ([], ty) = |
231 |
print_typ tyvars NOBR ty |
|
232 |
| print_tupled_typ ([ty1], ty2) = |
|
233 |
concat [print_typ tyvars BR ty1, str "=>", print_typ tyvars NOBR ty2] |
|
234 |
| print_tupled_typ (tys, ty) = |
|
235 |
concat [enum "," "(" ")" (map (print_typ tyvars NOBR) tys), |
|
236 |
str "=>", print_typ tyvars NOBR ty]; |
|
237 |
fun print_classparam_val (classparam, ty) = |
|
37464 | 238 |
concat [str "val", (str o Library.enclose "`" "+`:" o deresolve_base) |
239 |
classparam, |
|
34294 | 240 |
(print_tupled_typ o Code_Thingol.unfold_fun) ty] |
37450 | 241 |
fun implicit_arguments tyvars vs vars = (*FIXME simplifiy*) |
242 |
let |
|
243 |
val implicit_typ_ps = maps (fn (v, sort) => map (fn class => Pretty.block |
|
37464 | 244 |
[(str o deresolve) class, str "[", |
245 |
(str o lookup_tyvar tyvars) v, str "]"]) sort) vs; |
|
246 |
val implicit_names = Name.variant_list [] (maps (fn (v, sort) => |
|
247 |
map (fn class => lookup_tyvar tyvars v ^ "_" ^ |
|
248 |
(Long_Name.base_name o deresolve) class) sort) vs); |
|
37450 | 249 |
val vars' = intro_vars implicit_names vars; |
250 |
val implicit_ps = map2 (fn v => fn p => concat [str (v ^ ":"), p]) |
|
251 |
implicit_names implicit_typ_ps; |
|
252 |
in ((implicit_names, implicit_ps), vars') end; |
|
34294 | 253 |
fun print_classparam_def (classparam, ty) = |
254 |
let |
|
255 |
val (tys, ty) = Code_Thingol.unfold_fun ty; |
|
256 |
val params = Name.invents (snd reserved) "a" (length tys); |
|
257 |
val vars = intro_vars params reserved; |
|
258 |
val (([implicit], [p_implicit]), vars') = implicit_arguments tyvars vs vars; |
|
37450 | 259 |
val head = print_defhead tyvars vars' ((str o deresolve) classparam) |
260 |
((map o apsnd) (K []) vs) params tys [p_implicit] ty; |
|
34294 | 261 |
in |
262 |
concat [head, applify "(" ")" NOBR |
|
37464 | 263 |
(Pretty.block [str implicit, str ".", |
264 |
(str o Library.enclose "`" "+`" o deresolve_base) classparam]) |
|
34294 | 265 |
(map (str o lookup_var vars') params)] |
266 |
end; |
|
267 |
in |
|
268 |
Pretty.chunks ( |
|
269 |
(Pretty.block_enclose |
|
270 |
(concat ([str "trait", add_typarg ((str o deresolve_base) name)] |
|
37384
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37337
diff
changeset
|
271 |
@ the_list (print_super_classes super_classes) @ [str "{"]), str "}") |
34294 | 272 |
(map print_classparam_val classparams)) |
273 |
:: map print_classparam_def classparams |
|
274 |
) |
|
275 |
end |
|
276 |
| print_stmt (name, Code_Thingol.Classinst ((class, (tyco, vs)), |
|
37450 | 277 |
(super_instances, (classparam_instances, further_classparam_instances)))) = |
34294 | 278 |
let |
279 |
val tyvars = intro_vars (map fst vs) reserved; |
|
37450 | 280 |
val classtyp = (class, (tyco, map fst vs)); |
281 |
fun print_classtyp' (class, (tyco, vs)) = (*FIXME already exists?*) |
|
282 |
applify "[" "]" NOBR(*? FIXME*) ((str o deresolve) class) |
|
283 |
[print_typ tyvars NOBR (tyco `%% map ITyVar vs)]; (*FIXME a mess...*) |
|
284 |
fun print_typed' tyvars p classtyp = (*FIXME unify with existing print_typed*) |
|
285 |
Pretty.block [p, str ":", Pretty.brk 1, print_classtyp' classtyp]; |
|
286 |
fun print_defhead' tyvars vars p vs params tys classtyp = (*FIXME unify with existing def_head*) |
|
287 |
Pretty.block [str "def ", print_typed' tyvars |
|
288 |
(applify "(" ")" NOBR |
|
289 |
(applify "[" "]" NOBR p (map (fn (v, sort) => |
|
290 |
(str o implode) (lookup_tyvar tyvars v :: map (prefix ": " o deresolve) sort)) vs)) |
|
291 |
(map2 (fn param => fn ty => print_typed tyvars ((str o lookup_var vars) param) ty) |
|
292 |
params tys)) classtyp, str " ="]; |
|
293 |
fun print_classparam_instance ((classparam, const as (_, (_, tys))), (thm, _)) = |
|
294 |
let |
|
295 |
val auxs = Name.invents (snd reserved) "a" (length tys); |
|
296 |
val vars = intro_vars auxs reserved; |
|
297 |
val args = if null auxs then [] else |
|
298 |
[concat [enum "," "(" ")" (map2 (fn aux => fn ty => print_typed tyvars ((str o lookup_var vars) aux) ty) |
|
299 |
auxs tys), str "=>"]]; |
|
300 |
in |
|
301 |
concat ([str "val", (str o Library.enclose "`" "+`" o deresolve_base) classparam, |
|
302 |
str "="] @ args @ [print_app tyvars false (SOME thm) vars NOBR (const, map (IVar o SOME) auxs)]) |
|
303 |
end; |
|
304 |
val head = print_defhead' tyvars reserved ((str o deresolve) name) vs [] [] classtyp; |
|
305 |
val body = [str "new", print_classtyp' classtyp, |
|
306 |
Pretty.enum ";" "{ " " }" (map print_classparam_instance (classparam_instances @ further_classparam_instances))]; |
|
307 |
in concat (str "implicit" :: head :: body) end; |
|
34294 | 308 |
in print_stmt end; |
309 |
||
310 |
fun scala_program_of_program labelled_name module_name reserved raw_module_alias program = |
|
311 |
let |
|
312 |
val the_module_name = the_default "Program" module_name; |
|
313 |
val module_alias = K (SOME the_module_name); |
|
314 |
val reserved = Name.make_context reserved; |
|
315 |
fun prepare_stmt (name, stmt) (nsps, stmts) = |
|
316 |
let |
|
317 |
val (_, base) = Code_Printer.dest_name name; |
|
318 |
val mk_name_stmt = yield_singleton Name.variants; |
|
319 |
fun add_class ((nsp_class, nsp_object), nsp_common) = |
|
320 |
let |
|
321 |
val (base', nsp_class') = mk_name_stmt base nsp_class |
|
322 |
in (base', ((nsp_class', nsp_object), Name.declare base' nsp_common)) end; |
|
323 |
fun add_object ((nsp_class, nsp_object), nsp_common) = |
|
324 |
let |
|
325 |
val (base', nsp_object') = mk_name_stmt base nsp_object |
|
326 |
in (base', ((nsp_class, nsp_object'), Name.declare base' nsp_common)) end; |
|
327 |
fun add_common upper ((nsp_class, nsp_object), nsp_common) = |
|
328 |
let |
|
329 |
val (base', nsp_common') = |
|
330 |
mk_name_stmt (if upper then first_upper base else base) nsp_common |
|
37464 | 331 |
in |
332 |
(base', |
|
333 |
((Name.declare base' nsp_class, Name.declare base' nsp_object), nsp_common')) |
|
334 |
end; |
|
34294 | 335 |
val add_name = case stmt |
336 |
of Code_Thingol.Fun _ => add_object |
|
337 |
| Code_Thingol.Datatype _ => add_class |
|
338 |
| Code_Thingol.Datatypecons _ => add_common true |
|
339 |
| Code_Thingol.Class _ => add_class |
|
340 |
| Code_Thingol.Classrel _ => add_object |
|
341 |
| Code_Thingol.Classparam _ => add_object |
|
342 |
| Code_Thingol.Classinst _ => add_common false; |
|
343 |
fun add_stmt base' = case stmt |
|
344 |
of Code_Thingol.Datatypecons _ => cons (name, (base', NONE)) |
|
345 |
| Code_Thingol.Classrel _ => cons (name, (base', NONE)) |
|
346 |
| Code_Thingol.Classparam _ => cons (name, (base', NONE)) |
|
347 |
| _ => cons (name, (base', SOME stmt)); |
|
348 |
in |
|
349 |
nsps |
|
350 |
|> add_name |
|
351 |
|-> (fn base' => rpair (add_stmt base' stmts)) |
|
352 |
end; |
|
37439 | 353 |
val stmts = AList.make (Graph.get_node program) (Graph.strong_conn program |> flat) |
354 |
|> filter_out (Code_Thingol.is_case o snd); |
|
355 |
val (_, sca_program) = fold prepare_stmt stmts (((reserved, reserved), reserved), []); |
|
34294 | 356 |
fun deresolver name = (fst o the o AList.lookup (op =) sca_program) name |
357 |
handle Option => error ("Unknown statement name: " ^ labelled_name name); |
|
358 |
in (deresolver, (the_module_name, sca_program)) end; |
|
359 |
||
360 |
fun serialize_scala raw_module_name labelled_name |
|
361 |
raw_reserved includes raw_module_alias |
|
37464 | 362 |
_ syntax_tyco syntax_const (code_of_pretty, code_writeln) |
363 |
program stmt_names destination = |
|
34294 | 364 |
let |
36535 | 365 |
val presentation_stmt_names = Code_Target.stmt_names_of_destination destination; |
366 |
val module_name = if null presentation_stmt_names then raw_module_name else SOME "Code"; |
|
34294 | 367 |
val reserved = fold (insert (op =) o fst) includes raw_reserved; |
368 |
val (deresolver, (the_module_name, sca_program)) = scala_program_of_program labelled_name |
|
369 |
module_name reserved raw_module_alias program; |
|
370 |
val reserved = make_vars reserved; |
|
371 |
fun args_num c = case Graph.get_node program c |
|
37464 | 372 |
of Code_Thingol.Fun (_, (((_, ty), []), _)) => |
373 |
(length o fst o Code_Thingol.unfold_fun) ty |
|
37437 | 374 |
| Code_Thingol.Fun (_, ((_, ((ts, _), _) :: _), _)) => length ts |
34294 | 375 |
| Code_Thingol.Datatypecons (_, tyco) => |
35228 | 376 |
let val Code_Thingol.Datatype (_, (_, constrs)) = Graph.get_node program tyco |
37450 | 377 |
in (length o the o AList.lookup (eq_fst op =) constrs) (c, []) end (*FIXME simplify lookup*) |
34294 | 378 |
| Code_Thingol.Classparam (_, class) => |
37464 | 379 |
let |
380 |
val Code_Thingol.Class (_, (_, (_, classparams))) = |
|
381 |
Graph.get_node program class |
|
34294 | 382 |
in (length o fst o Code_Thingol.unfold_fun o the o AList.lookup (op =) classparams) c end; |
383 |
fun is_singleton c = case Graph.get_node program c |
|
384 |
of Code_Thingol.Datatypecons (_, tyco) => |
|
35228 | 385 |
let val Code_Thingol.Datatype (_, (_, constrs)) = Graph.get_node program tyco |
37450 | 386 |
in (null o the o AList.lookup (eq_fst op =) constrs) (c, []) end (*FIXME simplify lookup*) |
34294 | 387 |
| _ => false; |
388 |
val print_stmt = print_scala_stmt labelled_name syntax_tyco syntax_const |
|
389 |
reserved args_num is_singleton deresolver; |
|
390 |
fun print_module name content = |
|
391 |
(name, Pretty.chunks [ |
|
392 |
str ("object " ^ name ^ " {"), |
|
393 |
str "", |
|
394 |
content, |
|
395 |
str "", |
|
396 |
str "}" |
|
397 |
]); |
|
398 |
fun serialize_module the_module_name sca_program = |
|
399 |
let |
|
400 |
val content = Pretty.chunks2 (map_filter |
|
401 |
(fn (name, (_, SOME stmt)) => SOME (print_stmt (name, stmt)) |
|
402 |
| (_, (_, NONE)) => NONE) sca_program); |
|
403 |
in print_module the_module_name content end; |
|
404 |
fun check_destination destination = |
|
405 |
(File.check destination; destination); |
|
406 |
fun write_module destination (modlname, content) = |
|
407 |
let |
|
408 |
val filename = case modlname |
|
409 |
of "" => Path.explode "Main.scala" |
|
410 |
| _ => (Path.ext "scala" o Path.explode o implode o separate "/" |
|
411 |
o Long_Name.explode) modlname; |
|
412 |
val pathname = Path.append destination filename; |
|
413 |
val _ = File.mkdir (Path.dir pathname); |
|
414 |
in File.write pathname (code_of_pretty content) end |
|
415 |
in |
|
416 |
Code_Target.mk_serialization target NONE |
|
417 |
(fn NONE => K () o map (code_writeln o snd) | SOME file => K () o map |
|
418 |
(write_module (check_destination file))) |
|
419 |
(rpair [] o cat_lines o map (code_of_pretty o snd)) |
|
420 |
(map (uncurry print_module) includes |
|
421 |
@| serialize_module the_module_name sca_program) |
|
422 |
destination |
|
423 |
end; |
|
424 |
||
425 |
val literals = let |
|
37224 | 426 |
fun char_scala c = if c = "'" then "\\'" |
427 |
else if c = "\"" then "\\\"" |
|
428 |
else if c = "\\" then "\\\\" |
|
429 |
else let val k = ord c |
|
430 |
in if k < 32 orelse k > 126 then "\\" ^ radixstring (8, "0", k) else c end |
|
34944
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34900
diff
changeset
|
431 |
fun numeral_scala k = if k < 0 |
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34900
diff
changeset
|
432 |
then if k <= 2147483647 then "- " ^ string_of_int (~ k) |
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34900
diff
changeset
|
433 |
else quote ("- " ^ string_of_int (~ k)) |
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34900
diff
changeset
|
434 |
else if k <= 2147483647 then string_of_int k |
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34900
diff
changeset
|
435 |
else quote (string_of_int k) |
34294 | 436 |
in Literals { |
437 |
literal_char = Library.enclose "'" "'" o char_scala, |
|
438 |
literal_string = quote o translate_string char_scala, |
|
34944
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34900
diff
changeset
|
439 |
literal_numeral = fn k => "BigInt(" ^ numeral_scala k ^ ")", |
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34900
diff
changeset
|
440 |
literal_positive_numeral = fn k => "Nat.Nat(" ^ numeral_scala k ^ ")", |
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34900
diff
changeset
|
441 |
literal_naive_numeral = fn k => if k >= 0 |
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34900
diff
changeset
|
442 |
then string_of_int k else "(- " ^ string_of_int (~ k) ^ ")", |
34888 | 443 |
literal_list = fn [] => str "Nil" | ps => Pretty.block [str "List", enum "," "(" ")" ps], |
34294 | 444 |
infix_cons = (6, "::") |
445 |
} end; |
|
446 |
||
447 |
||
448 |
(** Isar setup **) |
|
449 |
||
450 |
fun isar_seri_scala module_name = |
|
451 |
Code_Target.parse_args (Scan.succeed ()) |
|
452 |
#> (fn () => serialize_scala module_name); |
|
453 |
||
454 |
val setup = |
|
455 |
Code_Target.add_target (target, (isar_seri_scala, literals)) |
|
37464 | 456 |
#> Code_Target.add_syntax_tyco target "fun" |
457 |
(SOME (2, fn print_typ => fn fxy => fn [ty1, ty2] => |
|
458 |
brackify_infix (1, R) fxy ( |
|
459 |
print_typ BR ty1 (*product type vs. tupled arguments!*), |
|
460 |
str "=>", |
|
461 |
print_typ (INFX (1, R)) ty2 |
|
462 |
))) |
|
34294 | 463 |
#> fold (Code_Target.add_reserved target) [ |
464 |
"abstract", "case", "catch", "class", "def", "do", "else", "extends", "false", |
|
465 |
"final", "finally", "for", "forSome", "if", "implicit", "import", "lazy", |
|
466 |
"match", "new", "null", "object", "override", "package", "private", "protected", |
|
467 |
"requires", "return", "sealed", "super", "this", "throw", "trait", "try", |
|
37243
6e2ac5358d6e
capitalized type variables; added yield as keyword
haftmann
parents:
37224
diff
changeset
|
468 |
"true", "type", "val", "var", "while", "with", "yield" |
34294 | 469 |
] |
470 |
#> fold (Code_Target.add_reserved target) [ |
|
34944
970e1466028d
code literals: distinguish numeral classes by different entries
haftmann
parents:
34900
diff
changeset
|
471 |
"error", "apply", "List", "Nil", "BigInt" |
34294 | 472 |
]; |
473 |
||
474 |
end; (*struct*) |