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