src/Tools/Code/code_haskell.ML
author haftmann
Thu, 17 Jun 2010 11:33:04 +0200
changeset 37422 ad3e04f289b6
parent 37421 fc55011cfdfd
child 37424 034ebe92f090
permissions -rw-r--r--
transitive superclasses were also only a misunderstanding
haftmann@28054
     1
(*  Title:      Tools/code/code_haskell.ML
haftmann@28054
     2
    Author:     Florian Haftmann, TU Muenchen
haftmann@28054
     3
haftmann@28054
     4
Serializer for Haskell.
haftmann@28054
     5
*)
haftmann@28054
     6
haftmann@28054
     7
signature CODE_HASKELL =
haftmann@28054
     8
sig
haftmann@28054
     9
  val setup: theory -> theory
haftmann@28054
    10
end;
haftmann@28054
    11
haftmann@28054
    12
structure Code_Haskell : CODE_HASKELL =
haftmann@28054
    13
struct
haftmann@28054
    14
haftmann@28054
    15
val target = "Haskell";
haftmann@28054
    16
haftmann@28054
    17
open Basic_Code_Thingol;
haftmann@28054
    18
open Code_Printer;
haftmann@28054
    19
haftmann@28054
    20
infixr 5 @@;
haftmann@28054
    21
infixr 5 @|;
haftmann@28054
    22
haftmann@28054
    23
haftmann@28054
    24
(** Haskell serializer **)
haftmann@28054
    25
haftmann@33988
    26
fun print_haskell_stmt labelled_name syntax_class syntax_tyco syntax_const
haftmann@32924
    27
    reserved deresolve contr_classparam_typs deriving_show =
haftmann@28054
    28
  let
wenzelm@30364
    29
    val deresolve_base = Long_Name.base_name o deresolve;
haftmann@28054
    30
    fun class_name class = case syntax_class class
haftmann@28054
    31
     of NONE => deresolve class
haftmann@28687
    32
      | SOME class => class;
haftmann@33988
    33
    fun print_typcontext tyvars vs = case maps (fn (v, sort) => map (pair v) sort) vs
haftmann@28054
    34
     of [] => []
haftmann@37359
    35
      | constraints => enum "," "(" ")" (
haftmann@28054
    36
          map (fn (v, class) =>
haftmann@37359
    37
            str (class_name class ^ " " ^ lookup_var tyvars v)) constraints)
haftmann@28054
    38
          @@ str " => ";
haftmann@33988
    39
    fun print_typforall tyvars vs = case map fst vs
haftmann@28054
    40
     of [] => []
haftmann@28054
    41
      | vnames => str "forall " :: Pretty.breaks
haftmann@32924
    42
          (map (str o lookup_var tyvars) vnames) @ str "." @@ Pretty.brk 1;
haftmann@33988
    43
    fun print_tyco_expr tyvars fxy (tyco, tys) =
haftmann@33988
    44
      brackify fxy (str tyco :: map (print_typ tyvars BR) tys)
haftmann@33988
    45
    and print_typ tyvars fxy (tycoexpr as tyco `%% tys) = (case syntax_tyco tyco
haftmann@33988
    46
         of NONE => print_tyco_expr tyvars fxy (deresolve tyco, tys)
haftmann@33988
    47
          | SOME (i, print) => print (print_typ tyvars) fxy tys)
haftmann@33988
    48
      | print_typ tyvars fxy (ITyVar v) = (str o lookup_var tyvars) v;
haftmann@33988
    49
    fun print_typdecl tyvars (vs, tycoexpr) =
haftmann@33988
    50
      Pretty.block (print_typcontext tyvars vs @| print_tyco_expr tyvars NOBR tycoexpr);
haftmann@33988
    51
    fun print_typscheme tyvars (vs, ty) =
haftmann@33988
    52
      Pretty.block (print_typforall tyvars vs @ print_typcontext tyvars vs @| print_typ tyvars NOBR ty);
haftmann@35228
    53
    fun print_term tyvars some_thm vars fxy (IConst c) =
haftmann@35228
    54
          print_app tyvars some_thm vars fxy (c, [])
haftmann@35228
    55
      | print_term tyvars some_thm vars fxy (t as (t1 `$ t2)) =
haftmann@28054
    56
          (case Code_Thingol.unfold_const_app t
haftmann@35228
    57
           of SOME app => print_app tyvars some_thm vars fxy app
haftmann@28054
    58
            | _ =>
haftmann@28054
    59
                brackify fxy [
haftmann@35228
    60
                  print_term tyvars some_thm vars NOBR t1,
haftmann@35228
    61
                  print_term tyvars some_thm vars BR t2
haftmann@28054
    62
                ])
haftmann@35228
    63
      | print_term tyvars some_thm vars fxy (IVar NONE) =
haftmann@31889
    64
          str "_"
haftmann@35228
    65
      | print_term tyvars some_thm vars fxy (IVar (SOME v)) =
haftmann@32924
    66
          (str o lookup_var vars) v
haftmann@35228
    67
      | print_term tyvars some_thm vars fxy (t as _ `|=> _) =
haftmann@28054
    68
          let
haftmann@31873
    69
            val (binds, t') = Code_Thingol.unfold_pat_abs t;
haftmann@35228
    70
            val (ps, vars') = fold_map (print_bind tyvars some_thm BR o fst) binds vars;
haftmann@35228
    71
          in brackets (str "\\" :: ps @ str "->" @@ print_term tyvars some_thm vars' NOBR t') end
haftmann@35228
    72
      | print_term tyvars some_thm vars fxy (ICase (cases as (_, t0))) =
haftmann@28054
    73
          (case Code_Thingol.unfold_const_app t0
haftmann@28054
    74
           of SOME (c_ts as ((c, _), _)) => if is_none (syntax_const c)
haftmann@35228
    75
                then print_case tyvars some_thm vars fxy cases
haftmann@35228
    76
                else print_app tyvars some_thm vars fxy c_ts
haftmann@35228
    77
            | NONE => print_case tyvars some_thm vars fxy cases)
haftmann@35228
    78
    and print_app_expr tyvars some_thm vars ((c, (_, tys)), ts) = case contr_classparam_typs c
haftmann@35228
    79
     of [] => (str o deresolve) c :: map (print_term tyvars some_thm vars BR) ts
haftmann@28054
    80
      | fingerprint => let
haftmann@33956
    81
          val ts_fingerprint = ts ~~ take (length ts) fingerprint;
haftmann@28054
    82
          val needs_annotation = forall (fn (_, NONE) => true | (t, SOME _) =>
haftmann@28054
    83
            (not o Code_Thingol.locally_monomorphic) t) ts_fingerprint;
haftmann@35228
    84
          fun print_term_anno (t, NONE) _ = print_term tyvars some_thm vars BR t
haftmann@33988
    85
            | print_term_anno (t, SOME _) ty =
haftmann@35228
    86
                brackets [print_term tyvars some_thm vars NOBR t, str "::", print_typ tyvars NOBR ty];
haftmann@28054
    87
        in
haftmann@28054
    88
          if needs_annotation then
haftmann@33991
    89
            (str o deresolve) c :: map2 print_term_anno ts_fingerprint (take (length ts) tys)
haftmann@35228
    90
          else (str o deresolve) c :: map (print_term tyvars some_thm vars BR) ts
haftmann@28054
    91
        end
haftmann@33988
    92
    and print_app tyvars = gen_print_app (print_app_expr tyvars) (print_term tyvars) syntax_const
haftmann@35228
    93
    and print_bind tyvars some_thm fxy p = gen_print_bind (print_term tyvars) some_thm fxy p
haftmann@35228
    94
    and print_case tyvars some_thm vars fxy (cases as ((_, [_]), _)) =
haftmann@28054
    95
          let
haftmann@29889
    96
            val (binds, body) = Code_Thingol.unfold_let (ICase cases);
haftmann@33988
    97
            fun print_match ((pat, ty), t) vars =
haftmann@28054
    98
              vars
haftmann@35228
    99
              |> print_bind tyvars some_thm BR pat
haftmann@35228
   100
              |>> (fn p => semicolon [p, str "=", print_term tyvars some_thm vars NOBR t])
haftmann@33988
   101
            val (ps, vars') = fold_map print_match binds vars;
haftmann@31665
   102
          in brackify_block fxy (str "let {")
haftmann@31665
   103
            ps
haftmann@35228
   104
            (concat [str "}", str "in", print_term tyvars some_thm vars' NOBR body])
haftmann@28054
   105
          end
haftmann@35228
   106
      | print_case tyvars some_thm vars fxy (((t, ty), clauses as _ :: _), _) =
haftmann@28054
   107
          let
haftmann@33988
   108
            fun print_select (pat, body) =
haftmann@28054
   109
              let
haftmann@35228
   110
                val (p, vars') = print_bind tyvars some_thm NOBR pat vars;
haftmann@35228
   111
              in semicolon [p, str "->", print_term tyvars some_thm vars' NOBR body] end;
haftmann@36574
   112
          in Pretty.block_enclose
haftmann@36574
   113
            (concat [str "(case", print_term tyvars some_thm vars NOBR t, str "of", str "{"], str "})")
haftmann@33988
   114
            (map print_select clauses)
haftmann@28054
   115
          end
haftmann@35228
   116
      | print_case tyvars some_thm vars fxy ((_, []), _) =
haftmann@31376
   117
          (brackify fxy o Pretty.breaks o map str) ["error", "\"empty case\""];
haftmann@37412
   118
    fun print_stmt (name, Code_Thingol.Fun (_, (((vs, ty), raw_eqs), _))) =
haftmann@28054
   119
          let
haftmann@32924
   120
            val tyvars = intro_vars (map fst vs) reserved;
haftmann@34262
   121
            fun print_err n =
haftmann@33988
   122
              semicolon (
haftmann@28054
   123
                (str o deresolve_base) name
haftmann@28054
   124
                :: map str (replicate n "_")
haftmann@28054
   125
                @ str "="
haftmann@28054
   126
                :: str "error"
haftmann@33988
   127
                @@ (str o ML_Syntax.print_string
wenzelm@30364
   128
                    o Long_Name.base_name o Long_Name.qualifier) name
haftmann@34262
   129
              );
haftmann@35228
   130
            fun print_eqn ((ts, t), (some_thm, _)) =
haftmann@28054
   131
              let
haftmann@32913
   132
                val consts = fold Code_Thingol.add_constnames (t :: ts) [];
haftmann@32924
   133
                val vars = reserved
haftmann@32924
   134
                  |> intro_base_names
haftmann@32913
   135
                      (is_none o syntax_const) deresolve consts
haftmann@32924
   136
                  |> intro_vars ((fold o Code_Thingol.fold_varnames)
haftmann@32925
   137
                      (insert (op =)) ts []);
haftmann@28054
   138
              in
haftmann@28054
   139
                semicolon (
haftmann@28054
   140
                  (str o deresolve_base) name
haftmann@35228
   141
                  :: map (print_term tyvars some_thm vars BR) ts
haftmann@28054
   142
                  @ str "="
haftmann@35228
   143
                  @@ print_term tyvars some_thm vars NOBR t
haftmann@28054
   144
                )
haftmann@28054
   145
              end;
haftmann@28054
   146
          in
haftmann@28054
   147
            Pretty.chunks (
haftmann@33988
   148
              semicolon [
haftmann@28054
   149
                (str o suffix " ::" o deresolve_base) name,
haftmann@33988
   150
                print_typscheme tyvars (vs, ty)
haftmann@28054
   151
              ]
haftmann@34262
   152
              :: (case filter (snd o snd) raw_eqs
haftmann@34262
   153
               of [] => [print_err ((length o fst o Code_Thingol.unfold_fun) ty)]
haftmann@34262
   154
                | eqs => map print_eqn eqs)
haftmann@28054
   155
            )
haftmann@28054
   156
          end
haftmann@33988
   157
      | print_stmt (name, Code_Thingol.Datatype (_, (vs, []))) =
haftmann@28054
   158
          let
haftmann@32924
   159
            val tyvars = intro_vars (map fst vs) reserved;
haftmann@28054
   160
          in
haftmann@28054
   161
            semicolon [
haftmann@28054
   162
              str "data",
haftmann@33988
   163
              print_typdecl tyvars (vs, (deresolve_base name, map (ITyVar o fst) vs))
haftmann@28054
   164
            ]
haftmann@28054
   165
          end
haftmann@33988
   166
      | print_stmt (name, Code_Thingol.Datatype (_, (vs, [(co, [ty])]))) =
haftmann@28054
   167
          let
haftmann@32924
   168
            val tyvars = intro_vars (map fst vs) reserved;
haftmann@28054
   169
          in
haftmann@28054
   170
            semicolon (
haftmann@28054
   171
              str "newtype"
haftmann@33988
   172
              :: print_typdecl tyvars (vs, (deresolve_base name, map (ITyVar o fst) vs))
haftmann@28054
   173
              :: str "="
haftmann@28054
   174
              :: (str o deresolve_base) co
haftmann@33988
   175
              :: print_typ tyvars BR ty
haftmann@28054
   176
              :: (if deriving_show name then [str "deriving (Read, Show)"] else [])
haftmann@28054
   177
            )
haftmann@28054
   178
          end
haftmann@33988
   179
      | print_stmt (name, Code_Thingol.Datatype (_, (vs, co :: cos))) =
haftmann@28054
   180
          let
haftmann@32924
   181
            val tyvars = intro_vars (map fst vs) reserved;
haftmann@33988
   182
            fun print_co (co, tys) =
haftmann@28054
   183
              concat (
haftmann@28054
   184
                (str o deresolve_base) co
haftmann@33988
   185
                :: map (print_typ tyvars BR) tys
haftmann@28054
   186
              )
haftmann@28054
   187
          in
haftmann@28054
   188
            semicolon (
haftmann@28054
   189
              str "data"
haftmann@33988
   190
              :: print_typdecl tyvars (vs, (deresolve_base name, map (ITyVar o fst) vs))
haftmann@28054
   191
              :: str "="
haftmann@33988
   192
              :: print_co co
haftmann@33988
   193
              :: map ((fn p => Pretty.block [str "| ", p]) o print_co) cos
haftmann@28054
   194
              @ (if deriving_show name then [str "deriving (Read, Show)"] else [])
haftmann@28054
   195
            )
haftmann@28054
   196
          end
haftmann@37422
   197
      | print_stmt (name, Code_Thingol.Class (_, (v, (super_classes, classparams)))) =
haftmann@28054
   198
          let
haftmann@32924
   199
            val tyvars = intro_vars [v] reserved;
haftmann@33988
   200
            fun print_classparam (classparam, ty) =
haftmann@28054
   201
              semicolon [
haftmann@28687
   202
                (str o deresolve_base) classparam,
haftmann@28054
   203
                str "::",
haftmann@33988
   204
                print_typ tyvars NOBR ty
haftmann@28054
   205
              ]
haftmann@28054
   206
          in
haftmann@28054
   207
            Pretty.block_enclose (
haftmann@28054
   208
              Pretty.block [
haftmann@28054
   209
                str "class ",
haftmann@37359
   210
                Pretty.block (print_typcontext tyvars [(v, map fst super_classes)]),
haftmann@32924
   211
                str (deresolve_base name ^ " " ^ lookup_var tyvars v),
haftmann@28054
   212
                str " where {"
haftmann@28054
   213
              ],
haftmann@28054
   214
              str "};"
haftmann@33988
   215
            ) (map print_classparam classparams)
haftmann@28054
   216
          end
haftmann@37359
   217
      | print_stmt (_, Code_Thingol.Classinst ((class, (tyco, vs)), (_, classparam_instances))) =
haftmann@28054
   218
          let
haftmann@32924
   219
            val tyvars = intro_vars (map fst vs) reserved;
haftmann@37359
   220
            fun print_classparam_instance ((classparam, const), (thm, _)) = case syntax_const classparam
haftmann@28687
   221
             of NONE => semicolon [
haftmann@28687
   222
                    (str o deresolve_base) classparam,
haftmann@28687
   223
                    str "=",
haftmann@37359
   224
                    print_app tyvars (SOME thm) reserved NOBR (const, [])
haftmann@28687
   225
                  ]
haftmann@28687
   226
              | SOME (k, pr) =>
haftmann@28687
   227
                  let
haftmann@37359
   228
                    val (c, (_, tys)) = const;
haftmann@37359
   229
                    val (vs, rhs) = (apfst o map) fst
haftmann@37359
   230
                      (Code_Thingol.unfold_abs (Code_Thingol.eta_expand k (const, [])));
haftmann@37359
   231
                    val s = if (is_some o syntax_const) c
haftmann@37359
   232
                      then NONE else (SOME o Long_Name.base_name o deresolve) c;
haftmann@32924
   233
                    val vars = reserved
haftmann@37359
   234
                      |> intro_vars (map_filter I (s :: vs));
haftmann@31889
   235
                    val lhs = IConst (classparam, (([], []), tys)) `$$ map IVar vs;
haftmann@28687
   236
                      (*dictionaries are not relevant at this late stage*)
haftmann@28687
   237
                  in
haftmann@28687
   238
                    semicolon [
haftmann@35228
   239
                      print_term tyvars (SOME thm) vars NOBR lhs,
haftmann@28687
   240
                      str "=",
haftmann@35228
   241
                      print_term tyvars (SOME thm) vars NOBR rhs
haftmann@28687
   242
                    ]
haftmann@28687
   243
                  end;
haftmann@28054
   244
          in
haftmann@28054
   245
            Pretty.block_enclose (
haftmann@28054
   246
              Pretty.block [
haftmann@28054
   247
                str "instance ",
haftmann@33988
   248
                Pretty.block (print_typcontext tyvars vs),
haftmann@28054
   249
                str (class_name class ^ " "),
haftmann@33988
   250
                print_typ tyvars BR (tyco `%% map (ITyVar o fst) vs),
haftmann@28054
   251
                str " where {"
haftmann@28054
   252
              ],
haftmann@28054
   253
              str "};"
haftmann@37359
   254
            ) (map print_classparam_instance classparam_instances)
haftmann@28054
   255
          end;
haftmann@33988
   256
  in print_stmt end;
haftmann@28054
   257
haftmann@32924
   258
fun haskell_program_of_program labelled_name module_name module_prefix reserved raw_module_alias program =
haftmann@28054
   259
  let
haftmann@28054
   260
    val module_alias = if is_some module_name then K module_name else raw_module_alias;
haftmann@32924
   261
    val reserved = Name.make_context reserved;
haftmann@32924
   262
    val mk_name_module = mk_name_module reserved module_prefix module_alias program;
haftmann@28054
   263
    fun add_stmt (name, (stmt, deps)) =
haftmann@28054
   264
      let
haftmann@32924
   265
        val (module_name, base) = dest_name name;
haftmann@28054
   266
        val module_name' = mk_name_module module_name;
haftmann@28054
   267
        val mk_name_stmt = yield_singleton Name.variants;
haftmann@28054
   268
        fun add_fun upper (nsp_fun, nsp_typ) =
haftmann@28054
   269
          let
haftmann@28054
   270
            val (base', nsp_fun') =
haftmann@32924
   271
              mk_name_stmt (if upper then first_upper base else base) nsp_fun
haftmann@28054
   272
          in (base', (nsp_fun', nsp_typ)) end;
haftmann@28054
   273
        fun add_typ (nsp_fun, nsp_typ) =
haftmann@28054
   274
          let
haftmann@32924
   275
            val (base', nsp_typ') = mk_name_stmt (first_upper base) nsp_typ
haftmann@28054
   276
          in (base', (nsp_fun, nsp_typ')) end;
haftmann@28054
   277
        val add_name = case stmt
haftmann@37414
   278
         of Code_Thingol.Fun (_, (_, SOME _)) => pair base
haftmann@37414
   279
          | Code_Thingol.Fun _ => add_fun false
haftmann@28054
   280
          | Code_Thingol.Datatype _ => add_typ
haftmann@28054
   281
          | Code_Thingol.Datatypecons _ => add_fun true
haftmann@28054
   282
          | Code_Thingol.Class _ => add_typ
haftmann@28054
   283
          | Code_Thingol.Classrel _ => pair base
haftmann@28054
   284
          | Code_Thingol.Classparam _ => add_fun false
haftmann@28054
   285
          | Code_Thingol.Classinst _ => pair base;
haftmann@28054
   286
        fun add_stmt' base' = case stmt
haftmann@37414
   287
         of Code_Thingol.Fun (_, (_, SOME _)) =>
haftmann@37414
   288
              I
haftmann@37414
   289
          | Code_Thingol.Datatypecons _ =>
wenzelm@30364
   290
              cons (name, (Long_Name.append module_name' base', NONE))
haftmann@28054
   291
          | Code_Thingol.Classrel _ => I
haftmann@28054
   292
          | Code_Thingol.Classparam _ =>
wenzelm@30364
   293
              cons (name, (Long_Name.append module_name' base', NONE))
wenzelm@30364
   294
          | _ => cons (name, (Long_Name.append module_name' base', SOME stmt));
haftmann@28054
   295
      in
haftmann@32924
   296
        Symtab.map_default (module_name', ([], ([], (reserved, reserved))))
haftmann@28054
   297
              (apfst (fold (insert (op = : string * string -> bool)) deps))
haftmann@28054
   298
        #> `(fn program => add_name ((snd o snd o the o Symtab.lookup program) module_name'))
haftmann@28054
   299
        #-> (fn (base', names) =>
haftmann@28054
   300
              (Symtab.map_entry module_name' o apsnd) (fn (stmts, _) =>
haftmann@28054
   301
              (add_stmt' base' stmts, names)))
haftmann@28054
   302
      end;
haftmann@28054
   303
    val hs_program = fold add_stmt (AList.make (fn name =>
haftmann@28054
   304
      (Graph.get_node program name, Graph.imm_succs program name))
haftmann@28054
   305
      (Graph.strong_conn program |> flat)) Symtab.empty;
haftmann@28663
   306
    fun deresolver name = (fst o the o AList.lookup (op =) ((fst o snd o the
haftmann@32924
   307
      o Symtab.lookup hs_program) ((mk_name_module o fst o dest_name) name))) name
haftmann@28663
   308
      handle Option => error ("Unknown statement name: " ^ labelled_name name);
haftmann@28054
   309
  in (deresolver, hs_program) end;
haftmann@28054
   310
haftmann@28054
   311
fun serialize_haskell module_prefix raw_module_name string_classes labelled_name
haftmann@32924
   312
    raw_reserved includes raw_module_alias
haftmann@36535
   313
    syntax_class syntax_tyco syntax_const (code_of_pretty, code_writeln) program stmt_names destination =
haftmann@28054
   314
  let
haftmann@36535
   315
    val presentation_stmt_names = Code_Target.stmt_names_of_destination destination;
haftmann@36535
   316
    val module_name = if null presentation_stmt_names then raw_module_name else SOME "Code";
haftmann@32924
   317
    val reserved = fold (insert (op =) o fst) includes raw_reserved;
haftmann@28054
   318
    val (deresolver, hs_program) = haskell_program_of_program labelled_name
haftmann@32924
   319
      module_name module_prefix reserved raw_module_alias program;
haftmann@28054
   320
    val contr_classparam_typs = Code_Thingol.contr_classparam_typs program;
haftmann@28054
   321
    fun deriving_show tyco =
haftmann@28054
   322
      let
haftmann@28054
   323
        fun deriv _ "fun" = false
haftmann@34085
   324
          | deriv tycos tyco = not (tyco = Code_Thingol.fun_tyco)
haftmann@34085
   325
              andalso (member (op =) tycos tyco
haftmann@34085
   326
              orelse case try (Graph.get_node program) tyco
haftmann@28663
   327
                of SOME (Code_Thingol.Datatype (_, (_, cs))) => forall (deriv' (tyco :: tycos))
haftmann@28054
   328
                    (maps snd cs)
haftmann@34085
   329
                 | NONE => true)
haftmann@28054
   330
        and deriv' tycos (tyco `%% tys) = deriv tycos tyco
haftmann@28054
   331
              andalso forall (deriv' tycos) tys
haftmann@28054
   332
          | deriv' _ (ITyVar _) = true
haftmann@28054
   333
      in deriv [] tyco end;
haftmann@32924
   334
    val reserved = make_vars reserved;
haftmann@33988
   335
    fun print_stmt qualified = print_haskell_stmt labelled_name
haftmann@32924
   336
      syntax_class syntax_tyco syntax_const reserved
wenzelm@30364
   337
      (if qualified then deresolver else Long_Name.base_name o deresolver)
haftmann@32903
   338
      contr_classparam_typs
haftmann@28054
   339
      (if string_classes then deriving_show else K false);
haftmann@33988
   340
    fun print_module name content =
haftmann@28054
   341
      (name, Pretty.chunks [
haftmann@28054
   342
        str ("module " ^ name ^ " where {"),
haftmann@28054
   343
        str "",
haftmann@28054
   344
        content,
haftmann@28054
   345
        str "",
haftmann@28054
   346
        str "}"
haftmann@28054
   347
      ]);
haftmann@28054
   348
    fun serialize_module1 (module_name', (deps, (stmts, _))) =
haftmann@28054
   349
      let
haftmann@28054
   350
        val stmt_names = map fst stmts;
haftmann@33410
   351
        val qualified = is_none module_name;
haftmann@33410
   352
        val imports = subtract (op =) stmt_names deps
haftmann@28054
   353
          |> distinct (op =)
haftmann@33410
   354
          |> map_filter (try deresolver)
wenzelm@30364
   355
          |> map Long_Name.qualifier
haftmann@28054
   356
          |> distinct (op =);
haftmann@33988
   357
        fun print_import_include (name, _) = str ("import qualified " ^ name ^ ";");
haftmann@34045
   358
        fun print_import_module name = str ((if qualified
haftmann@34045
   359
          then "import qualified "
haftmann@34045
   360
          else "import ") ^ name ^ ";");
haftmann@33988
   361
        val import_ps = map print_import_include includes @ map print_import_module imports
haftmann@34073
   362
        val content = Pretty.chunks2 ((if null import_ps then [] else [Pretty.chunks import_ps])
haftmann@33988
   363
            @ map_filter
haftmann@33988
   364
              (fn (name, (_, SOME stmt)) => SOME (print_stmt qualified (name, stmt))
haftmann@33988
   365
                | (_, (_, NONE)) => NONE) stmts
haftmann@33988
   366
          );
haftmann@33988
   367
      in print_module module_name' content end;
haftmann@33988
   368
    fun serialize_module2 (_, (_, (stmts, _))) = Pretty.chunks2 (map_filter
haftmann@36535
   369
        (fn (name, (_, SOME stmt)) => if null presentation_stmt_names
haftmann@36535
   370
              orelse member (op =) presentation_stmt_names name
haftmann@33988
   371
              then SOME (print_stmt false (name, stmt))
haftmann@28054
   372
              else NONE
haftmann@33988
   373
          | (_, (_, NONE)) => NONE) stmts);
haftmann@28054
   374
    val serialize_module =
haftmann@36535
   375
      if null presentation_stmt_names then serialize_module1 else pair "" o serialize_module2;
haftmann@29769
   376
    fun check_destination destination =
haftmann@29769
   377
      (File.check destination; destination);
haftmann@28054
   378
    fun write_module destination (modlname, content) =
haftmann@28054
   379
      let
haftmann@28054
   380
        val filename = case modlname
haftmann@28054
   381
         of "" => Path.explode "Main.hs"
haftmann@28054
   382
          | _ => (Path.ext "hs" o Path.explode o implode o separate "/"
wenzelm@30364
   383
                o Long_Name.explode) modlname;
haftmann@28054
   384
        val pathname = Path.append destination filename;
haftmann@28054
   385
        val _ = File.mkdir (Path.dir pathname);
haftmann@29135
   386
      in File.write pathname
haftmann@29135
   387
        ("{-# OPTIONS_GHC -fglasgow-exts #-}\n\n"
haftmann@34073
   388
          ^ code_of_pretty content)
haftmann@29135
   389
      end
haftmann@28054
   390
  in
haftmann@28054
   391
    Code_Target.mk_serialization target NONE
haftmann@34073
   392
      (fn NONE => K () o map (code_writeln o snd) | SOME file => K () o map
haftmann@29769
   393
        (write_module (check_destination file)))
haftmann@34073
   394
      (rpair [] o cat_lines o map (code_of_pretty o snd))
haftmann@33988
   395
      (map (uncurry print_module) includes
haftmann@28054
   396
        @ map serialize_module (Symtab.dest hs_program))
haftmann@28054
   397
      destination
haftmann@28054
   398
  end;
haftmann@28054
   399
haftmann@28064
   400
val literals = let
haftmann@28064
   401
  fun char_haskell c =
haftmann@28064
   402
    let
haftmann@28064
   403
      val s = ML_Syntax.print_char c;
haftmann@28064
   404
    in if s = "'" then "\\'" else s end;
haftmann@34931
   405
  fun numeral_haskell k = if k >= 0 then string_of_int k
haftmann@34931
   406
    else Library.enclose "(" ")" (signed_string_of_int k);
haftmann@28064
   407
in Literals {
haftmann@34178
   408
  literal_char = Library.enclose "'" "'" o char_haskell,
haftmann@28064
   409
  literal_string = quote o translate_string char_haskell,
haftmann@34931
   410
  literal_numeral = numeral_haskell,
haftmann@34931
   411
  literal_positive_numeral = numeral_haskell,
haftmann@34931
   412
  literal_naive_numeral = numeral_haskell,
haftmann@34178
   413
  literal_list = enum "," "[" "]",
haftmann@28064
   414
  infix_cons = (5, ":")
haftmann@28064
   415
} end;
haftmann@28064
   416
haftmann@28054
   417
haftmann@28054
   418
(** optional monad syntax **)
haftmann@28054
   419
haftmann@28054
   420
fun pretty_haskell_monad c_bind =
haftmann@28054
   421
  let
haftmann@31873
   422
    fun dest_bind t1 t2 = case Code_Thingol.split_pat_abs t2
haftmann@31889
   423
     of SOME ((pat, ty), t') =>
haftmann@31889
   424
          SOME ((SOME ((pat, ty), true), t1), t')
haftmann@28145
   425
      | NONE => NONE;
haftmann@28663
   426
    fun dest_monad c_bind_name (IConst (c, _) `$ t1 `$ t2) =
haftmann@28663
   427
          if c = c_bind_name then dest_bind t1 t2
haftmann@28145
   428
          else NONE
haftmann@28663
   429
      | dest_monad _ t = case Code_Thingol.split_let t
haftmann@28145
   430
         of SOME (((pat, ty), tbind), t') =>
haftmann@31889
   431
              SOME ((SOME ((pat, ty), false), tbind), t')
haftmann@28145
   432
          | NONE => NONE;
haftmann@28663
   433
    fun implode_monad c_bind_name = Code_Thingol.unfoldr (dest_monad c_bind_name);
haftmann@33988
   434
    fun print_monad print_bind print_term (NONE, t) vars =
haftmann@33988
   435
          (semicolon [print_term vars NOBR t], vars)
haftmann@33988
   436
      | print_monad print_bind print_term (SOME ((bind, _), true), t) vars = vars
haftmann@33988
   437
          |> print_bind NOBR bind
haftmann@33988
   438
          |>> (fn p => semicolon [p, str "<-", print_term vars NOBR t])
haftmann@33988
   439
      | print_monad print_bind print_term (SOME ((bind, _), false), t) vars = vars
haftmann@33988
   440
          |> print_bind NOBR bind
haftmann@33988
   441
          |>> (fn p => semicolon [str "let", p, str "=", print_term vars NOBR t]);
haftmann@33988
   442
    fun pretty _ [c_bind'] print_term thm vars fxy [(t1, _), (t2, _)] = case dest_bind t1 t2
haftmann@28145
   443
     of SOME (bind, t') => let
haftmann@31054
   444
          val (binds, t'') = implode_monad c_bind' t'
haftmann@33988
   445
          val (ps, vars') = fold_map (print_monad (gen_print_bind (K print_term) thm) print_term)
haftmann@33988
   446
            (bind :: binds) vars;
haftmann@33988
   447
        in
haftmann@34178
   448
          (brackify fxy o single o enclose "do {" "}" o Pretty.breaks)
haftmann@33988
   449
            (ps @| print_term vars' NOBR t'')
haftmann@33988
   450
        end
haftmann@28145
   451
      | NONE => brackify_infix (1, L) fxy
haftmann@37239
   452
          (print_term vars (INFX (1, L)) t1, str ">>=", print_term vars (INFX (1, X)) t2)
haftmann@31054
   453
  in (2, ([c_bind], pretty)) end;
haftmann@28054
   454
haftmann@28145
   455
fun add_monad target' raw_c_bind thy =
haftmann@28054
   456
  let
haftmann@31156
   457
    val c_bind = Code.read_const thy raw_c_bind;
haftmann@28054
   458
  in if target = target' then
haftmann@28054
   459
    thy
haftmann@28145
   460
    |> Code_Target.add_syntax_const target c_bind
haftmann@28663
   461
        (SOME (pretty_haskell_monad c_bind))
haftmann@28054
   462
  else error "Only Haskell target allows for monad syntax" end;
haftmann@28054
   463
haftmann@28054
   464
haftmann@28054
   465
(** Isar setup **)
haftmann@28054
   466
haftmann@33988
   467
fun isar_seri_haskell module_name =
haftmann@28054
   468
  Code_Target.parse_args (Scan.option (Args.$$$ "root" -- Args.colon |-- Args.name)
haftmann@28054
   469
    -- Scan.optional (Args.$$$ "string_classes" >> K true) false
haftmann@28054
   470
    >> (fn (module_prefix, string_classes) =>
haftmann@33988
   471
      serialize_haskell module_prefix module_name string_classes));
haftmann@28054
   472
haftmann@28054
   473
val _ =
wenzelm@36970
   474
  Outer_Syntax.command "code_monad" "define code syntax for monads" Keyword.thy_decl (
wenzelm@36970
   475
    Parse.term_group -- Parse.name >> (fn (raw_bind, target) =>
haftmann@28145
   476
      Toplevel.theory  (add_monad target raw_bind))
haftmann@28054
   477
  );
haftmann@28054
   478
haftmann@28054
   479
val setup =
haftmann@28064
   480
  Code_Target.add_target (target, (isar_seri_haskell, literals))
haftmann@33988
   481
  #> Code_Target.add_syntax_tyco target "fun" (SOME (2, fn print_typ => fn fxy => fn [ty1, ty2] =>
haftmann@37239
   482
      brackify_infix (1, R) fxy (
haftmann@33988
   483
        print_typ (INFX (1, X)) ty1,
haftmann@28054
   484
        str "->",
haftmann@33988
   485
        print_typ (INFX (1, R)) ty2
haftmann@37239
   486
      )))
haftmann@28054
   487
  #> fold (Code_Target.add_reserved target) [
haftmann@28054
   488
      "hiding", "deriving", "where", "case", "of", "infix", "infixl", "infixr",
haftmann@28054
   489
      "import", "default", "forall", "let", "in", "class", "qualified", "data",
haftmann@28054
   490
      "newtype", "instance", "if", "then", "else", "type", "as", "do", "module"
haftmann@28054
   491
    ]
haftmann@28054
   492
  #> fold (Code_Target.add_reserved target) [
haftmann@28054
   493
      "Prelude", "Main", "Bool", "Maybe", "Either", "Ordering", "Char", "String", "Int",
haftmann@28054
   494
      "Integer", "Float", "Double", "Rational", "IO", "Eq", "Ord", "Enum", "Bounded",
haftmann@28054
   495
      "Num", "Real", "Integral", "Fractional", "Floating", "RealFloat", "Monad", "Functor",
haftmann@28054
   496
      "AlreadyExists", "ArithException", "ArrayException", "AssertionFailed", "AsyncException",
haftmann@28054
   497
      "BlockedOnDeadMVar", "Deadlock", "Denormal", "DivideByZero", "DotNetException", "DynException",
haftmann@28054
   498
      "Dynamic", "EOF", "EQ", "EmptyRec", "ErrorCall", "ExitException", "ExitFailure",
haftmann@28054
   499
      "ExitSuccess", "False", "GT", "HeapOverflow",
haftmann@28054
   500
      "IOError", "IOException", "IllegalOperation",
haftmann@28054
   501
      "IndexOutOfBounds", "Just", "Key", "LT", "Left", "LossOfPrecision", "NoMethodError",
haftmann@28054
   502
      "NoSuchThing", "NonTermination", "Nothing", "Obj", "OtherError", "Overflow",
haftmann@28054
   503
      "PatternMatchFail", "PermissionDenied", "ProtocolError", "RecConError", "RecSelError",
haftmann@28054
   504
      "RecUpdError", "ResourceBusy", "ResourceExhausted", "Right", "StackOverflow",
haftmann@28054
   505
      "ThreadKilled", "True", "TyCon", "TypeRep", "UndefinedElement", "Underflow",
haftmann@28054
   506
      "UnsupportedOperation", "UserError", "abs", "absReal", "acos", "acosh", "all",
haftmann@28054
   507
      "and", "any", "appendFile", "asTypeOf", "asciiTab", "asin", "asinh", "atan",
haftmann@28054
   508
      "atan2", "atanh", "basicIORun", "blockIO", "boundedEnumFrom", "boundedEnumFromThen",
haftmann@28054
   509
      "boundedEnumFromThenTo", "boundedEnumFromTo", "boundedPred", "boundedSucc", "break",
haftmann@28054
   510
      "catch", "catchException", "ceiling", "compare", "concat", "concatMap", "const",
haftmann@28054
   511
      "cos", "cosh", "curry", "cycle", "decodeFloat", "denominator", "div", "divMod",
haftmann@28054
   512
      "doubleToRatio", "doubleToRational", "drop", "dropWhile", "either", "elem",
haftmann@28054
   513
      "emptyRec", "encodeFloat", "enumFrom", "enumFromThen", "enumFromThenTo",
haftmann@28054
   514
      "enumFromTo", "error", "even", "exp", "exponent", "fail", "filter", "flip",
haftmann@28054
   515
      "floatDigits", "floatProperFraction", "floatRadix", "floatRange", "floatToRational",
haftmann@28054
   516
      "floor", "fmap", "foldl", "foldl'", "foldl1", "foldr", "foldr1", "fromDouble",
haftmann@28054
   517
      "fromEnum", "fromEnum_0", "fromInt", "fromInteger", "fromIntegral", "fromObj",
haftmann@28054
   518
      "fromRational", "fst", "gcd", "getChar", "getContents", "getLine", "head",
haftmann@28054
   519
      "id", "inRange", "index", "init", "intToRatio", "interact", "ioError", "isAlpha",
haftmann@28054
   520
      "isAlphaNum", "isDenormalized", "isDigit", "isHexDigit", "isIEEE", "isInfinite",
haftmann@28054
   521
      "isLower", "isNaN", "isNegativeZero", "isOctDigit", "isSpace", "isUpper", "iterate", "iterate'",
haftmann@28054
   522
      "last", "lcm", "length", "lex", "lexDigits", "lexLitChar", "lexmatch", "lines", "log",
haftmann@28054
   523
      "logBase", "lookup", "loop", "map", "mapM", "mapM_", "max", "maxBound", "maximum",
haftmann@28054
   524
      "maybe", "min", "minBound", "minimum", "mod", "negate", "nonnull", "not", "notElem",
haftmann@28054
   525
      "null", "numerator", "numericEnumFrom", "numericEnumFromThen", "numericEnumFromThenTo",
haftmann@28054
   526
      "numericEnumFromTo", "odd", "or", "otherwise", "pi", "pred", 
haftmann@28054
   527
      "print", "product", "properFraction", "protectEsc", "putChar", "putStr", "putStrLn",
haftmann@28054
   528
      "quot", "quotRem", "range", "rangeSize", "rationalToDouble", "rationalToFloat",
haftmann@28054
   529
      "rationalToRealFloat", "read", "readDec", "readField", "readFieldName", "readFile",
haftmann@28054
   530
      "readFloat", "readHex", "readIO", "readInt", "readList", "readLitChar", "readLn",
haftmann@28054
   531
      "readOct", "readParen", "readSigned", "reads", "readsPrec", "realFloatToRational",
haftmann@28054
   532
      "realToFrac", "recip", "reduce", "rem", "repeat", "replicate", "return", "reverse",
haftmann@28054
   533
      "round", "scaleFloat", "scanl", "scanl1", "scanr", "scanr1", "seq", "sequence",
haftmann@28054
   534
      "sequence_", "show", "showChar", "showException", "showField", "showList",
haftmann@28054
   535
      "showLitChar", "showParen", "showString", "shows", "showsPrec", "significand",
haftmann@28054
   536
      "signum", "signumReal", "sin", "sinh", "snd", "span", "splitAt", "sqrt", "subtract",
haftmann@28054
   537
      "succ", "sum", "tail", "take", "takeWhile", "takeWhile1", "tan", "tanh", "threadToIOResult",
haftmann@28054
   538
      "throw", "toEnum", "toInt", "toInteger", "toObj", "toRational", "truncate", "uncurry",
haftmann@28054
   539
      "undefined", "unlines", "unsafeCoerce", "unsafeIndex", "unsafeRangeSize", "until", "unwords",
haftmann@28054
   540
      "unzip", "unzip3", "userError", "words", "writeFile", "zip", "zip3", "zipWith", "zipWith3"
haftmann@28054
   541
    ] (*due to weird handling of ':', we can't do anything else than to import *all* prelude symbols*);
haftmann@28054
   542
haftmann@28054
   543
end; (*struct*)