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