src/Tools/Code/code_target.ML
author haftmann
Mon, 30 Aug 2010 16:00:41 +0200
changeset 39136 6af1d8673cbf
parent 39135 919c924067f3
child 39138 c79c1e4e1111
permissions -rw-r--r--
width is a formal parameter of serialization
haftmann@37744
     1
(*  Title:      Tools/Code/code_target.ML
haftmann@24219
     2
    Author:     Florian Haftmann, TU Muenchen
haftmann@24219
     3
haftmann@39136
     4
Generic infrastructure for target language data.
haftmann@24219
     5
*)
haftmann@24219
     6
haftmann@24219
     7
signature CODE_TARGET =
haftmann@24219
     8
sig
haftmann@36467
     9
  val cert_tyco: theory -> string -> string
haftmann@36467
    10
  val read_tyco: theory -> string -> string
haftmann@36467
    11
haftmann@28054
    12
  type serializer
haftmann@34141
    13
  type literals = Code_Printer.literals
haftmann@37822
    14
  val add_target: string * { serializer: serializer, literals: literals,
haftmann@37822
    15
    check: { env_var: string, make_destination: Path.T -> Path.T,
haftmann@39092
    16
      make_command: string -> string -> string } } -> theory -> theory
haftmann@28663
    17
  val extend_target: string *
haftmann@28663
    18
      (string * (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program))
haftmann@28054
    19
    -> theory -> theory
haftmann@28054
    20
  val assert_target: theory -> string -> string
haftmann@28054
    21
haftmann@28054
    22
  type destination
haftmann@28054
    23
  type serialization
wenzelm@36969
    24
  val parse_args: 'a parser -> Token.T list -> 'a
haftmann@28054
    25
  val stmt_names_of_destination: destination -> string list
haftmann@39136
    26
  val mk_serialization: (int -> Path.T option -> 'a -> unit)
haftmann@39136
    27
    -> (int -> 'a -> string * string option list)
haftmann@39136
    28
    -> 'a -> int -> serialization
wenzelm@36969
    29
  val serialize: theory -> string -> int option -> string option -> Token.T list
haftmann@28663
    30
    -> Code_Thingol.naming -> Code_Thingol.program -> string list -> serialization
haftmann@39017
    31
  val serialize_custom: theory -> string * serializer -> string option
haftmann@39135
    32
    -> Code_Thingol.naming -> Code_Thingol.program -> string list
haftmann@39135
    33
    -> string * string option list
haftmann@28090
    34
  val the_literals: theory -> string -> literals
haftmann@28054
    35
  val export: serialization -> unit
haftmann@28054
    36
  val file: Path.T -> serialization -> unit
haftmann@28054
    37
  val string: string list -> serialization -> string
haftmann@34071
    38
  val code_of: theory -> string -> int option -> string
haftmann@28690
    39
    -> string list -> (Code_Thingol.naming -> string list) -> string
haftmann@34071
    40
  val set_default_code_width: int -> theory -> theory
haftmann@30492
    41
  val shell_command: string (*theory name*) -> string (*export_code expr*) -> unit
haftmann@28054
    42
haftmann@28054
    43
  val allow_abort: string -> theory -> theory
haftmann@34141
    44
  type tyco_syntax = Code_Printer.tyco_syntax
haftmann@37849
    45
  type const_syntax = Code_Printer.const_syntax
haftmann@28690
    46
  val add_syntax_class: string -> class -> string option -> theory -> theory
haftmann@34071
    47
  val add_syntax_inst: string -> class * string -> unit option -> theory -> theory
haftmann@28054
    48
  val add_syntax_tyco: string -> string -> tyco_syntax option -> theory -> theory
haftmann@37849
    49
  val add_syntax_const: string -> string -> const_syntax option -> theory -> theory
haftmann@28054
    50
  val add_reserved: string -> string -> theory -> theory
haftmann@33968
    51
  val add_include: string -> string * (string * string list) option -> theory -> theory
haftmann@24219
    52
end;
haftmann@24219
    53
haftmann@28054
    54
structure Code_Target : CODE_TARGET =
haftmann@24219
    55
struct
haftmann@24219
    56
haftmann@28054
    57
open Basic_Code_Thingol;
haftmann@34141
    58
haftmann@34141
    59
type literals = Code_Printer.literals;
haftmann@34141
    60
type tyco_syntax = Code_Printer.tyco_syntax;
haftmann@37849
    61
type const_syntax = Code_Printer.const_syntax;
haftmann@34141
    62
haftmann@24219
    63
haftmann@24219
    64
(** basics **)
haftmann@24219
    65
haftmann@39136
    66
datatype destination = File of Path.T option | String of string list;
haftmann@28663
    67
type serialization = destination -> (string * string option list) option;
haftmann@27014
    68
haftmann@39136
    69
fun export f = (f (File NONE); ());
haftmann@39136
    70
fun file p f = (f (File (SOME p)); ());
haftmann@34071
    71
fun string stmts f = fst (the (f (String stmts)));
haftmann@27304
    72
haftmann@27304
    73
fun stmt_names_of_destination (String stmts) = stmts
haftmann@27304
    74
  | stmt_names_of_destination _ = [];
haftmann@27014
    75
haftmann@39136
    76
fun mk_serialization output _ code width (File p) = (output width p code; NONE)
haftmann@39136
    77
  | mk_serialization _ string code width (String _) = SOME (string width code);
haftmann@24219
    78
haftmann@24219
    79
haftmann@28054
    80
(** theory data **)
haftmann@27000
    81
haftmann@28054
    82
datatype name_syntax_table = NameSyntaxTable of {
haftmann@28690
    83
  class: string Symtab.table,
haftmann@30636
    84
  instance: unit Symreltab.table,
haftmann@34141
    85
  tyco: Code_Printer.tyco_syntax Symtab.table,
haftmann@37849
    86
  const: Code_Printer.const_syntax Symtab.table
haftmann@28054
    87
};
haftmann@27000
    88
haftmann@28663
    89
fun mk_name_syntax_table ((class, instance), (tyco, const)) =
haftmann@28663
    90
  NameSyntaxTable { class = class, instance = instance, tyco = tyco, const = const };
haftmann@28663
    91
fun map_name_syntax_table f (NameSyntaxTable { class, instance, tyco, const }) =
haftmann@28663
    92
  mk_name_syntax_table (f ((class, instance), (tyco, const)));
haftmann@39135
    93
fun merge_name_syntax_table
haftmann@39135
    94
  (NameSyntaxTable { class = class1, instance = instance1, tyco = tyco1, const = const1 },
haftmann@28663
    95
    NameSyntaxTable { class = class2, instance = instance2, tyco = tyco2, const = const2 }) =
haftmann@28054
    96
  mk_name_syntax_table (
haftmann@28054
    97
    (Symtab.join (K snd) (class1, class2),
haftmann@30636
    98
       Symreltab.join (K snd) (instance1, instance2)),
haftmann@28054
    99
    (Symtab.join (K snd) (tyco1, tyco2),
haftmann@28054
   100
       Symtab.join (K snd) (const1, const2))
haftmann@28054
   101
  );
haftmann@27103
   102
haftmann@28054
   103
type serializer =
haftmann@28054
   104
  string option                         (*module name*)
wenzelm@36969
   105
  -> Token.T list                       (*arguments*)
haftmann@28054
   106
  -> (string -> string)                 (*labelled_name*)
haftmann@28054
   107
  -> string list                        (*reserved symbols*)
haftmann@28054
   108
  -> (string * Pretty.T) list           (*includes*)
haftmann@28054
   109
  -> (string -> string option)          (*module aliasses*)
haftmann@28690
   110
  -> (string -> string option)          (*class syntax*)
haftmann@34141
   111
  -> (string -> Code_Printer.tyco_syntax option)
haftmann@37849
   112
  -> (string -> Code_Printer.activated_const_syntax option)
haftmann@34071
   113
  -> ((Pretty.T -> string) * (Pretty.T -> unit))
haftmann@28054
   114
  -> Code_Thingol.program
haftmann@39012
   115
  -> (string list * string list)        (*selected statements*)
haftmann@39136
   116
  -> int
haftmann@28054
   117
  -> serialization;
haftmann@27103
   118
haftmann@39135
   119
datatype description = Fundamental of { serializer: serializer,
haftmann@39136
   120
      literals: literals,
haftmann@37822
   121
      check: { env_var: string, make_destination: Path.T -> Path.T,
haftmann@39092
   122
        make_command: string -> string -> string } }
haftmann@39135
   123
  | Extension of string *
haftmann@39135
   124
      (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program);
haftmann@27103
   125
haftmann@28054
   126
datatype target = Target of {
haftmann@28054
   127
  serial: serial,
haftmann@37821
   128
  description: description,
haftmann@28054
   129
  reserved: string list,
haftmann@28926
   130
  includes: (Pretty.T * string list) Symtab.table,
haftmann@28054
   131
  name_syntax_table: name_syntax_table,
haftmann@28054
   132
  module_alias: string Symtab.table
haftmann@28054
   133
};
haftmann@27103
   134
haftmann@37821
   135
fun make_target ((serial, description), ((reserved, includes), (name_syntax_table, module_alias))) =
haftmann@37821
   136
  Target { serial = serial, description = description, reserved = reserved, 
haftmann@28054
   137
    includes = includes, name_syntax_table = name_syntax_table, module_alias = module_alias };
haftmann@37821
   138
fun map_target f ( Target { serial, description, reserved, includes, name_syntax_table, module_alias } ) =
haftmann@37821
   139
  make_target (f ((serial, description), ((reserved, includes), (name_syntax_table, module_alias))));
haftmann@37821
   140
fun merge_target strict target (Target { serial = serial1, description = description,
haftmann@28054
   141
  reserved = reserved1, includes = includes1,
haftmann@28054
   142
  name_syntax_table = name_syntax_table1, module_alias = module_alias1 },
haftmann@37821
   143
    Target { serial = serial2, description = _,
haftmann@28054
   144
      reserved = reserved2, includes = includes2,
haftmann@28054
   145
      name_syntax_table = name_syntax_table2, module_alias = module_alias2 }) =
haftmann@28054
   146
  if serial1 = serial2 orelse not strict then
haftmann@37821
   147
    make_target ((serial1, description),
haftmann@38209
   148
      ((merge (op =) (reserved1, reserved2), Symtab.join (K snd) (includes1, includes2)),
haftmann@28054
   149
        (merge_name_syntax_table (name_syntax_table1, name_syntax_table2),
haftmann@38209
   150
          Symtab.join (K snd) (module_alias1, module_alias2))
haftmann@28054
   151
    ))
haftmann@28054
   152
  else
haftmann@37821
   153
    error ("Incompatible targets: " ^ quote target);
haftmann@27436
   154
haftmann@37821
   155
fun the_description (Target { description, ... }) = description;
haftmann@28054
   156
fun the_reserved (Target { reserved, ... }) = reserved;
haftmann@28054
   157
fun the_includes (Target { includes, ... }) = includes;
haftmann@28054
   158
fun the_name_syntax (Target { name_syntax_table = NameSyntaxTable x, ... }) = x;
haftmann@28054
   159
fun the_module_alias (Target { module_alias , ... }) = module_alias;
haftmann@27436
   160
haftmann@34243
   161
structure Targets = Theory_Data
haftmann@34071
   162
(
haftmann@34071
   163
  type T = (target Symtab.table * string list) * int;
haftmann@34071
   164
  val empty = ((Symtab.empty, []), 80);
haftmann@34071
   165
  val extend = I;
haftmann@34071
   166
  fun merge (((target1, exc1), width1), ((target2, exc2), width2)) : T =
haftmann@34071
   167
    ((Symtab.join (merge_target true) (target1, target2),
haftmann@34071
   168
      Library.merge (op =) (exc1, exc2)), Int.max (width1, width2));
haftmann@34071
   169
);
haftmann@28054
   170
haftmann@34243
   171
val abort_allowed = snd o fst o Targets.get;
haftmann@34071
   172
haftmann@34243
   173
fun assert_target thy target = if Symtab.defined ((fst o fst) (Targets.get thy)) target
haftmann@33968
   174
  then target
haftmann@33968
   175
  else error ("Unknown code target language: " ^ quote target);
haftmann@28054
   176
haftmann@28054
   177
fun put_target (target, seri) thy =
haftmann@27437
   178
  let
haftmann@34243
   179
    val lookup_target = Symtab.lookup ((fst o fst) (Targets.get thy));
haftmann@28054
   180
    val _ = case seri
haftmann@37821
   181
     of Extension (super, _) => if is_some (lookup_target super) then ()
haftmann@28054
   182
          else error ("Unknown code target language: " ^ quote super)
haftmann@28054
   183
      | _ => ();
haftmann@37821
   184
    val overwriting = case (Option.map the_description o lookup_target) target
haftmann@28663
   185
     of NONE => false
haftmann@37821
   186
      | SOME (Extension _) => true
haftmann@37821
   187
      | SOME (Fundamental _) => (case seri
haftmann@37821
   188
         of Extension _ => error ("Will not overwrite existing target " ^ quote target)
haftmann@28663
   189
          | _ => true);
haftmann@28663
   190
    val _ = if overwriting
haftmann@28054
   191
      then warning ("Overwriting existing target " ^ quote target)
haftmann@28663
   192
      else (); 
haftmann@27103
   193
  in
haftmann@28054
   194
    thy
haftmann@34243
   195
    |> (Targets.map o apfst o apfst o Symtab.update)
haftmann@31599
   196
          (target, make_target ((serial (), seri), (([], Symtab.empty),
haftmann@39135
   197
            (mk_name_syntax_table ((Symtab.empty, Symreltab.empty),
haftmann@39135
   198
              (Symtab.empty, Symtab.empty)), Symtab.empty))))
haftmann@27103
   199
  end;
haftmann@27000
   200
haftmann@37821
   201
fun add_target (target, seri) = put_target (target, Fundamental seri);
haftmann@28054
   202
fun extend_target (target, (super, modify)) =
haftmann@37821
   203
  put_target (target, Extension (super, modify));
haftmann@27000
   204
haftmann@28054
   205
fun map_target_data target f thy =
haftmann@27304
   206
  let
haftmann@28054
   207
    val _ = assert_target thy target;
haftmann@27000
   208
  in
haftmann@28054
   209
    thy
haftmann@34243
   210
    |> (Targets.map o apfst o apfst o Symtab.map_entry target o map_target) f
haftmann@27000
   211
  end;
haftmann@27000
   212
haftmann@28054
   213
fun map_reserved target =
haftmann@28054
   214
  map_target_data target o apsnd o apfst o apfst;
haftmann@28054
   215
fun map_includes target =
haftmann@28054
   216
  map_target_data target o apsnd o apfst o apsnd;
haftmann@28054
   217
fun map_name_syntax target =
haftmann@28054
   218
  map_target_data target o apsnd o apsnd o apfst o map_name_syntax_table;
haftmann@28054
   219
fun map_module_alias target =
haftmann@28054
   220
  map_target_data target o apsnd o apsnd o apsnd;
haftmann@27000
   221
haftmann@34243
   222
fun set_default_code_width k = (Targets.map o apsnd) (K k);
haftmann@34071
   223
haftmann@27000
   224
haftmann@34021
   225
(** serializer usage **)
haftmann@34021
   226
haftmann@34021
   227
(* montage *)
haftmann@34021
   228
haftmann@37822
   229
fun the_fundamental thy =
haftmann@34021
   230
  let
haftmann@34243
   231
    val ((targets, _), _) = Targets.get thy;
haftmann@37822
   232
    fun fundamental target = case Symtab.lookup targets target
haftmann@37821
   233
     of SOME data => (case the_description data
haftmann@37822
   234
         of Fundamental data => data
haftmann@37822
   235
          | Extension (super, _) => fundamental super)
haftmann@34021
   236
      | NONE => error ("Unknown code target language: " ^ quote target);
haftmann@37822
   237
  in fundamental end;
haftmann@37822
   238
haftmann@37822
   239
fun the_literals thy = #literals o the_fundamental thy;
haftmann@34021
   240
haftmann@34021
   241
local
haftmann@34021
   242
haftmann@34021
   243
fun activate_syntax lookup_name src_tab = Symtab.empty
haftmann@34021
   244
  |> fold_map (fn thing_identifier => fn tab => case lookup_name thing_identifier
haftmann@34021
   245
       of SOME name => (SOME name,
haftmann@34021
   246
            Symtab.update_new (name, the (Symtab.lookup src_tab thing_identifier)) tab)
haftmann@34021
   247
        | NONE => (NONE, tab)) (Symtab.keys src_tab)
haftmann@34021
   248
  |>> map_filter I;
haftmann@34021
   249
haftmann@34021
   250
fun activate_const_syntax thy literals src_tab naming = (Symtab.empty, naming)
haftmann@37854
   251
  |> fold_map (fn c => fn (tab, naming) =>
haftmann@37854
   252
      case Code_Thingol.lookup_const naming c
haftmann@34021
   253
       of SOME name => let
haftmann@34021
   254
              val (syn, naming') = Code_Printer.activate_const_syntax thy
haftmann@37854
   255
                literals c (the (Symtab.lookup src_tab c)) naming
haftmann@34021
   256
            in (SOME name, (Symtab.update_new (name, syn) tab, naming')) end
haftmann@34021
   257
        | NONE => (NONE, (tab, naming))) (Symtab.keys src_tab)
haftmann@34021
   258
  |>> map_filter I;
haftmann@34021
   259
haftmann@34021
   260
fun invoke_serializer thy abortable serializer literals reserved abs_includes 
haftmann@39136
   261
    module_alias class instance tyco const module_name args naming program2 (names1, presentation_names) width =
haftmann@34021
   262
  let
haftmann@34021
   263
    val (names_class, class') =
haftmann@34021
   264
      activate_syntax (Code_Thingol.lookup_class naming) class;
haftmann@34021
   265
    val names_inst = map_filter (Code_Thingol.lookup_instance naming)
haftmann@34021
   266
      (Symreltab.keys instance);
haftmann@34021
   267
    val (names_tyco, tyco') =
haftmann@34021
   268
      activate_syntax (Code_Thingol.lookup_tyco naming) tyco;
haftmann@34021
   269
    val (names_const, (const', _)) =
haftmann@34021
   270
      activate_const_syntax thy literals const naming;
haftmann@34021
   271
    val names_hidden = names_class @ names_inst @ names_tyco @ names_const;
haftmann@34021
   272
    val names2 = subtract (op =) names_hidden names1;
haftmann@34021
   273
    val program3 = Graph.subgraph (not o member (op =) names_hidden) program2;
haftmann@34021
   274
    val names_all = Graph.all_succs program3 names2;
haftmann@34021
   275
    val includes = abs_includes names_all;
haftmann@34021
   276
    val program4 = Graph.subgraph (member (op =) names_all) program3;
haftmann@34021
   277
    val empty_funs = filter_out (member (op =) abortable)
haftmann@34021
   278
      (Code_Thingol.empty_funs program3);
haftmann@34021
   279
    val _ = if null empty_funs then () else error ("No code equations for "
haftmann@34021
   280
      ^ commas (map (Sign.extern_const thy) empty_funs));
haftmann@34021
   281
  in
haftmann@39012
   282
    serializer module_name args (Code_Thingol.labelled_name thy program2) reserved includes
haftmann@39012
   283
      (if is_some module_name then K module_name else Symtab.lookup module_alias)
haftmann@39012
   284
      (Symtab.lookup class') (Symtab.lookup tyco') (Symtab.lookup const')
haftmann@34141
   285
      (Code_Printer.string_of_pretty width, Code_Printer.writeln_pretty width)
haftmann@39136
   286
      program4 (names1, presentation_names) width
haftmann@34021
   287
  end;
haftmann@34021
   288
haftmann@39012
   289
fun mount_serializer thy alt_serializer target some_width raw_module_name args naming program names destination =
haftmann@34021
   290
  let
haftmann@34243
   291
    val ((targets, abortable), default_width) = Targets.get thy;
haftmann@34021
   292
    fun collapse_hierarchy target =
haftmann@34021
   293
      let
haftmann@34021
   294
        val data = case Symtab.lookup targets target
haftmann@34021
   295
         of SOME data => data
haftmann@34021
   296
          | NONE => error ("Unknown code target language: " ^ quote target);
haftmann@37821
   297
      in case the_description data
haftmann@37821
   298
       of Fundamental _ => (I, data)
haftmann@37821
   299
        | Extension (super, modify) => let
haftmann@34021
   300
            val (modify', data') = collapse_hierarchy super
haftmann@34021
   301
          in (modify' #> modify naming, merge_target false target (data', data)) end
haftmann@34021
   302
      end;
haftmann@34021
   303
    val (modify, data) = collapse_hierarchy target;
haftmann@37821
   304
    val serializer = the_default (case the_description data
haftmann@37821
   305
     of Fundamental seri => #serializer seri) alt_serializer;
haftmann@39012
   306
    val presentation_names = stmt_names_of_destination destination;
haftmann@39012
   307
    val module_name = if null presentation_names
haftmann@39012
   308
      then raw_module_name else SOME "Code";
haftmann@34021
   309
    val reserved = the_reserved data;
haftmann@34021
   310
    fun select_include names_all (name, (content, cs)) =
haftmann@34021
   311
      if null cs then SOME (name, content)
haftmann@34021
   312
      else if exists (fn c => case Code_Thingol.lookup_const naming c
haftmann@34021
   313
       of SOME name => member (op =) names_all name
haftmann@34021
   314
        | NONE => false) cs
haftmann@34021
   315
      then SOME (name, content) else NONE;
haftmann@34021
   316
    fun includes names_all = map_filter (select_include names_all)
haftmann@34021
   317
      ((Symtab.dest o the_includes) data);
haftmann@39012
   318
    val module_alias = the_module_alias data 
haftmann@34021
   319
    val { class, instance, tyco, const } = the_name_syntax data;
haftmann@34021
   320
    val literals = the_literals thy target;
haftmann@34071
   321
    val width = the_default default_width some_width;
haftmann@34021
   322
  in
haftmann@34021
   323
    invoke_serializer thy abortable serializer literals reserved
haftmann@39136
   324
      includes module_alias class instance tyco const module_name args
haftmann@39136
   325
        naming (modify program) (names, presentation_names) width destination
haftmann@34021
   326
  end;
haftmann@34021
   327
haftmann@34021
   328
in
haftmann@34021
   329
haftmann@34021
   330
fun serialize thy = mount_serializer thy NONE;
haftmann@34021
   331
haftmann@37825
   332
fun check thy names_cs naming program target strict args =
haftmann@37824
   333
  let
haftmann@37824
   334
    val module_name = "Code_Test";
haftmann@37824
   335
    val { env_var, make_destination, make_command } =
haftmann@37824
   336
      (#check o the_fundamental thy) target;
haftmann@37824
   337
    val env_param = getenv env_var;
haftmann@37824
   338
    fun ext_check env_param p =
haftmann@37824
   339
      let 
haftmann@37824
   340
        val destination = make_destination p;
haftmann@37824
   341
        val _ = file destination (serialize thy target (SOME 80)
haftmann@37824
   342
          (SOME module_name) args naming program names_cs);
haftmann@39092
   343
        val cmd = make_command env_param module_name;
haftmann@37824
   344
      in if bash ("cd " ^ File.shell_path p ^ " && " ^ cmd ^ " 2>&1") <> 0
haftmann@37824
   345
        then error ("Code check failed for " ^ target ^ ": " ^ cmd)
haftmann@37824
   346
        else ()
haftmann@37824
   347
      end;
haftmann@37824
   348
  in if env_param = ""
haftmann@37825
   349
    then if strict
haftmann@37825
   350
      then error (env_var ^ " not set; cannot check code for " ^ target)
haftmann@37825
   351
      else warning (env_var ^ " not set; skipped checking code for " ^ target)
haftmann@37824
   352
    else Cache_IO.with_tmp_dir "Code_Test" (ext_check env_param)
haftmann@37824
   353
  end;
haftmann@37824
   354
haftmann@39017
   355
fun serialize_custom thy (target_name, seri) module_name naming program names =
haftmann@39017
   356
  mount_serializer thy (SOME seri) target_name NONE module_name [] naming program names (String [])
haftmann@34021
   357
  |> the;
haftmann@34021
   358
haftmann@34021
   359
end; (* local *)
haftmann@34021
   360
haftmann@34021
   361
haftmann@34021
   362
(* code presentation *)
haftmann@34021
   363
haftmann@34071
   364
fun code_of thy target some_width module_name cs names_stmt =
haftmann@34021
   365
  let
haftmann@36271
   366
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
haftmann@34021
   367
  in
haftmann@34071
   368
    string (names_stmt naming)
haftmann@34071
   369
      (serialize thy target some_width (SOME module_name) [] naming program names_cs)
haftmann@34021
   370
  end;
haftmann@34021
   371
haftmann@34021
   372
haftmann@34021
   373
(* code generation *)
haftmann@34021
   374
haftmann@34021
   375
fun transitivly_non_empty_funs thy naming program =
haftmann@34021
   376
  let
haftmann@34021
   377
    val cs = subtract (op =) (abort_allowed thy) (Code_Thingol.empty_funs program);
haftmann@34021
   378
    val names = map_filter (Code_Thingol.lookup_const naming) cs;
haftmann@34021
   379
  in subtract (op =) (Graph.all_preds program names) (Graph.keys program) end;
haftmann@34021
   380
haftmann@34021
   381
fun read_const_exprs thy cs =
haftmann@34021
   382
  let
haftmann@34021
   383
    val (cs1, cs2) = Code_Thingol.read_const_exprs thy cs;
haftmann@36271
   384
    val (names2, (naming, program)) = Code_Thingol.consts_program thy true cs2;
haftmann@36271
   385
    val names3 = transitivly_non_empty_funs thy naming program;
haftmann@36271
   386
    val cs3 = map_filter (fn (c, name) =>
haftmann@36271
   387
      if member (op =) names3 name then SOME c else NONE) (cs2 ~~ names2);
haftmann@36271
   388
  in union (op =) cs3 cs1 end;
haftmann@34021
   389
haftmann@34021
   390
fun export_code thy cs seris =
haftmann@34021
   391
  let
haftmann@37824
   392
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
haftmann@37821
   393
    fun mk_seri_dest dest = if dest = "" orelse dest = "-" then export
haftmann@37821
   394
      else file (Path.explode dest);
haftmann@34021
   395
    val _ = map (fn (((target, module), dest), args) =>
haftmann@37824
   396
      (mk_seri_dest dest (serialize thy target NONE module args naming program names_cs))) seris;
haftmann@34021
   397
  in () end;
haftmann@34021
   398
haftmann@34021
   399
fun export_code_cmd raw_cs seris thy = export_code thy (read_const_exprs thy raw_cs) seris;
haftmann@34021
   400
haftmann@37824
   401
fun check_code thy cs seris =
haftmann@37824
   402
  let
haftmann@37824
   403
    val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
haftmann@37825
   404
    val _ = map (fn ((target, strict), args) => check thy names_cs naming program
haftmann@37825
   405
      target strict args) seris;
haftmann@37824
   406
  in () end;
haftmann@37824
   407
haftmann@37824
   408
fun check_code_cmd raw_cs seris thy = check_code thy (read_const_exprs thy raw_cs) seris;
haftmann@37824
   409
haftmann@34021
   410
haftmann@28054
   411
(** serializer configuration **)
haftmann@28054
   412
haftmann@27000
   413
(* data access *)
haftmann@24219
   414
haftmann@24992
   415
fun cert_class thy class =
haftmann@24992
   416
  let
haftmann@24992
   417
    val _ = AxClass.get_info thy class;
haftmann@24992
   418
  in class end;
haftmann@24992
   419
haftmann@27103
   420
fun read_class thy = cert_class thy o Sign.intern_class thy;
haftmann@24992
   421
haftmann@24992
   422
fun cert_tyco thy tyco =
haftmann@24992
   423
  let
haftmann@24992
   424
    val _ = if Sign.declared_tyname thy tyco then ()
haftmann@24992
   425
      else error ("No such type constructor: " ^ quote tyco);
haftmann@24992
   426
  in tyco end;
haftmann@24992
   427
haftmann@27103
   428
fun read_tyco thy = cert_tyco thy o Sign.intern_type thy;
haftmann@24219
   429
haftmann@34071
   430
fun cert_inst thy (class, tyco) =
haftmann@34071
   431
  (cert_class thy class, cert_tyco thy tyco);
haftmann@34071
   432
haftmann@34071
   433
fun read_inst thy (raw_tyco, raw_class) =
haftmann@34071
   434
  (read_class thy raw_class, read_tyco thy raw_tyco);
haftmann@34071
   435
haftmann@37844
   436
fun gen_add_syntax (mapp, upd, del) prep_x prep_syn target raw_x some_raw_syn thy =
haftmann@24219
   437
  let
haftmann@37840
   438
    val x = prep_x thy raw_x;
haftmann@37844
   439
    val change = case some_raw_syn
haftmann@37844
   440
     of SOME raw_syn => upd (x, prep_syn thy x raw_syn)
haftmann@37844
   441
      | NONE => del x;
haftmann@37844
   442
  in (map_name_syntax target o mapp) change thy end;
haftmann@24219
   443
haftmann@34141
   444
fun gen_add_syntax_class prep_class =
haftmann@37844
   445
  gen_add_syntax (apfst o apfst, Symtab.update, Symtab.delete_safe) prep_class ((K o K) I);
haftmann@24219
   446
haftmann@34141
   447
fun gen_add_syntax_inst prep_inst =
haftmann@37844
   448
  gen_add_syntax (apfst o apsnd, Symreltab.update, Symreltab.delete_safe) prep_inst ((K o K) I);
haftmann@34071
   449
haftmann@34141
   450
fun gen_add_syntax_tyco prep_tyco =
haftmann@37844
   451
  gen_add_syntax (apsnd o apfst, Symtab.update, Symtab.delete_safe) prep_tyco
haftmann@37844
   452
    (fn thy => fn tyco => fn syn => if fst syn <> Sign.arity_number thy tyco
haftmann@24219
   453
      then error ("Number of arguments mismatch in syntax for type constructor " ^ quote tyco)
haftmann@37844
   454
      else syn);
haftmann@24219
   455
haftmann@37854
   456
fun gen_add_syntax_const prep_const =
haftmann@37844
   457
  gen_add_syntax (apsnd o apsnd, Symtab.update, Symtab.delete_safe) prep_const
haftmann@37854
   458
    (fn thy => fn c => fn syn =>
haftmann@37854
   459
      if Code_Printer.requires_args syn > Code.args_number thy c
haftmann@24423
   460
      then error ("Too many arguments in syntax for constant " ^ quote c)
haftmann@37854
   461
      else syn);
haftmann@24219
   462
haftmann@24219
   463
fun add_reserved target =
haftmann@24219
   464
  let
haftmann@24219
   465
    fun add sym syms = if member (op =) syms sym
haftmann@24219
   466
      then error ("Reserved symbol " ^ quote sym ^ " already declared")
haftmann@24219
   467
      else insert (op =) sym syms
haftmann@27103
   468
  in map_reserved target o add end;
haftmann@24992
   469
haftmann@28926
   470
fun gen_add_include read_const target args thy =
haftmann@24992
   471
  let
haftmann@28926
   472
    fun add (name, SOME (content, raw_cs)) incls =
haftmann@24992
   473
          let
haftmann@24992
   474
            val _ = if Symtab.defined incls name
haftmann@24992
   475
              then warning ("Overwriting existing include " ^ name)
haftmann@24992
   476
              else ();
haftmann@28926
   477
            val cs = map (read_const thy) raw_cs;
haftmann@34141
   478
          in Symtab.update (name, (Code_Printer.str content, cs)) incls end
haftmann@28926
   479
      | add (name, NONE) incls = Symtab.delete name incls;
haftmann@28926
   480
  in map_includes target (add args) thy end;
haftmann@28926
   481
haftmann@33968
   482
val add_include = gen_add_include (K I);
haftmann@31156
   483
val add_include_cmd = gen_add_include Code.read_const;
haftmann@24219
   484
haftmann@31013
   485
fun add_module_alias target (thyname, modlname) =
haftmann@31013
   486
  let
haftmann@31013
   487
    val xs = Long_Name.explode modlname;
haftmann@31036
   488
    val xs' = map (Name.desymbolize true) xs;
haftmann@31013
   489
  in if xs' = xs
haftmann@31013
   490
    then map_module_alias target (Symtab.update (thyname, modlname))
haftmann@31013
   491
    else error ("Invalid module name: " ^ quote modlname ^ "\n"
haftmann@31013
   492
      ^ "perhaps try " ^ quote (Long_Name.implode xs'))
haftmann@31013
   493
  end;
haftmann@24219
   494
haftmann@28663
   495
fun gen_allow_abort prep_const raw_c thy =
haftmann@24841
   496
  let
haftmann@28663
   497
    val c = prep_const thy raw_c;
haftmann@34243
   498
  in thy |> (Targets.map o apfst o apsnd) (insert (op =) c) end;
haftmann@24841
   499
haftmann@27000
   500
haftmann@27103
   501
(* concrete syntax *)
haftmann@27000
   502
haftmann@34021
   503
local
haftmann@34021
   504
haftmann@34141
   505
fun zip_list (x::xs) f g =
haftmann@34141
   506
  f
haftmann@37854
   507
  :|-- (fn y =>
haftmann@34141
   508
    fold_map (fn x => g |-- f >> pair x) xs
haftmann@37854
   509
    :|-- (fn xys => pair ((x, y) :: xys)));
haftmann@34141
   510
haftmann@37854
   511
fun process_multi_syntax parse_thing parse_syntax change =
haftmann@37854
   512
  (Parse.and_list1 parse_thing
haftmann@37854
   513
  :|-- (fn things => Scan.repeat1 (Parse.$$$ "(" |-- Parse.name --
haftmann@37854
   514
        (zip_list things parse_syntax (Parse.$$$ "and")) --| Parse.$$$ ")")))
haftmann@37854
   515
  >> (Toplevel.theory oo fold)
haftmann@37854
   516
    (fn (target, syns) => fold (fn (raw_x, syn) => change target raw_x syn) syns);
haftmann@24219
   517
haftmann@24219
   518
in
haftmann@24219
   519
haftmann@33968
   520
val add_syntax_class = gen_add_syntax_class cert_class;
haftmann@34071
   521
val add_syntax_inst = gen_add_syntax_inst cert_inst;
haftmann@24219
   522
val add_syntax_tyco = gen_add_syntax_tyco cert_tyco;
haftmann@37854
   523
val add_syntax_const = gen_add_syntax_const (K I);
haftmann@27103
   524
val allow_abort = gen_allow_abort (K I);
haftmann@28054
   525
val add_reserved = add_reserved;
haftmann@33968
   526
val add_include = add_include;
haftmann@24219
   527
haftmann@33968
   528
val add_syntax_class_cmd = gen_add_syntax_class read_class;
haftmann@34071
   529
val add_syntax_inst_cmd = gen_add_syntax_inst read_inst;
haftmann@24219
   530
val add_syntax_tyco_cmd = gen_add_syntax_tyco read_tyco;
haftmann@37854
   531
val add_syntax_const_cmd = gen_add_syntax_const Code.read_const;
haftmann@31156
   532
val allow_abort_cmd = gen_allow_abort Code.read_const;
haftmann@24219
   533
haftmann@28054
   534
fun parse_args f args =
wenzelm@36969
   535
  case Scan.read Token.stopper f args
haftmann@28054
   536
   of SOME x => x
haftmann@28054
   537
    | NONE => error "Bad serializer arguments";
haftmann@28054
   538
haftmann@28054
   539
haftmann@27304
   540
(** Isar setup **)
haftmann@27103
   541
haftmann@37824
   542
val (inK, module_nameK, fileK, checkingK) = ("in", "module_name", "file", "checking");
haftmann@37824
   543
haftmann@37824
   544
val code_expr_argsP = Scan.optional (Parse.$$$ "(" |-- Args.parse --| Parse.$$$ ")") [];
haftmann@27103
   545
haftmann@30492
   546
val code_exprP =
haftmann@37824
   547
  Scan.repeat1 Parse.term_group :|-- (fn raw_cs =>
haftmann@37825
   548
    ((Parse.$$$ checkingK |-- Scan.repeat (Parse.name
haftmann@37825
   549
      -- ((Parse.$$$ "?" |-- Scan.succeed false) || Scan.succeed true) -- code_expr_argsP))
haftmann@37824
   550
      >> (fn seris => check_code_cmd raw_cs seris)
haftmann@37824
   551
    || Scan.repeat (Parse.$$$ inK |-- Parse.name
haftmann@37824
   552
       -- Scan.option (Parse.$$$ module_nameK |-- Parse.name)
haftmann@37824
   553
       -- Scan.optional (Parse.$$$ fileK |-- Parse.name) ""
haftmann@37824
   554
       -- code_expr_argsP) >> (fn seris => export_code_cmd raw_cs seris)));
haftmann@27103
   555
haftmann@37824
   556
val _ = List.app Keyword.keyword [inK, module_nameK, fileK, checkingK];
wenzelm@24867
   557
wenzelm@24867
   558
val _ =
wenzelm@36970
   559
  Outer_Syntax.command "code_class" "define code syntax for class" Keyword.thy_decl (
haftmann@37854
   560
    process_multi_syntax Parse.xname (Scan.option Parse.string)
haftmann@37854
   561
    add_syntax_class_cmd);
haftmann@24219
   562
wenzelm@24867
   563
val _ =
wenzelm@36970
   564
  Outer_Syntax.command "code_instance" "define code syntax for instance" Keyword.thy_decl (
haftmann@37854
   565
    process_multi_syntax (Parse.xname --| Parse.$$$ "::" -- Parse.xname)
wenzelm@36970
   566
      (Scan.option (Parse.minus >> K ()))
haftmann@37854
   567
    add_syntax_inst_cmd);
haftmann@24219
   568
wenzelm@24867
   569
val _ =
wenzelm@36970
   570
  Outer_Syntax.command "code_type" "define code syntax for type constructor" Keyword.thy_decl (
haftmann@37854
   571
    process_multi_syntax Parse.xname Code_Printer.parse_tyco_syntax
haftmann@37854
   572
    add_syntax_tyco_cmd);
haftmann@24219
   573
wenzelm@24867
   574
val _ =
wenzelm@36970
   575
  Outer_Syntax.command "code_const" "define code syntax for constant" Keyword.thy_decl (
haftmann@37854
   576
    process_multi_syntax Parse.term_group Code_Printer.parse_const_syntax
haftmann@37854
   577
    add_syntax_const_cmd);
haftmann@24219
   578
wenzelm@24867
   579
val _ =
wenzelm@36970
   580
  Outer_Syntax.command "code_reserved" "declare words as reserved for target language"
wenzelm@36970
   581
    Keyword.thy_decl (
wenzelm@36970
   582
    Parse.name -- Scan.repeat1 Parse.name
haftmann@24219
   583
    >> (fn (target, reserveds) => (Toplevel.theory o fold (add_reserved target)) reserveds)
haftmann@24841
   584
  );
haftmann@24219
   585
wenzelm@24867
   586
val _ =
wenzelm@36970
   587
  Outer_Syntax.command "code_include" "declare piece of code to be included in generated code"
wenzelm@36970
   588
    Keyword.thy_decl (
wenzelm@36970
   589
    Parse.name -- Parse.name -- (Parse.text :|-- (fn "-" => Scan.succeed NONE
wenzelm@36970
   590
      | s => Scan.optional (Parse.$$$ "attach" |-- Scan.repeat1 Parse.term) [] >> pair s >> SOME))
haftmann@28926
   591
    >> (fn ((target, name), content_consts) =>
haftmann@28926
   592
        (Toplevel.theory o add_include_cmd target) (name, content_consts))
haftmann@24992
   593
  );
haftmann@24992
   594
haftmann@24992
   595
val _ =
wenzelm@36970
   596
  Outer_Syntax.command "code_modulename" "alias module to other name" Keyword.thy_decl (
wenzelm@36970
   597
    Parse.name -- Scan.repeat1 (Parse.name -- Parse.name)
haftmann@27103
   598
    >> (fn (target, modlnames) => (Toplevel.theory o fold (add_module_alias target)) modlnames)
haftmann@24841
   599
  );
haftmann@24219
   600
wenzelm@24867
   601
val _ =
wenzelm@36970
   602
  Outer_Syntax.command "code_abort" "permit constant to be implemented as program abort"
wenzelm@36970
   603
    Keyword.thy_decl (
wenzelm@36970
   604
    Scan.repeat1 Parse.term_group >> (Toplevel.theory o fold allow_abort_cmd)
haftmann@24841
   605
  );
haftmann@24219
   606
haftmann@27103
   607
val _ =
wenzelm@36970
   608
  Outer_Syntax.command "export_code" "generate executable code for constants"
wenzelm@36970
   609
    Keyword.diag (Parse.!!! code_exprP >> (fn f => Toplevel.keep (f o Toplevel.theory_of)));
haftmann@30492
   610
haftmann@30492
   611
fun shell_command thyname cmd = Toplevel.program (fn _ =>
wenzelm@36970
   612
  (use_thy thyname; case Scan.read Token.stopper (Parse.!!! code_exprP)
wenzelm@36970
   613
    ((filter Token.is_proper o Outer_Syntax.scan Position.none) cmd)
wenzelm@38131
   614
   of SOME f => (writeln "Now generating code..."; f (Thy_Info.get_theory thyname))
haftmann@30492
   615
    | NONE => error ("Bad directive " ^ quote cmd)))
haftmann@33968
   616
  handle Runtime.TOPLEVEL_ERROR => OS.Process.exit OS.Process.failure;
haftmann@27103
   617
haftmann@24219
   618
end; (*local*)
haftmann@24219
   619
haftmann@24219
   620
end; (*struct*)