src/Tools/Code/code_target.ML
author wenzelm
Sat, 30 Mar 2019 20:54:47 +0100
changeset 70015 c8e08d8ffb93
parent 70011 9dde788b0128
child 70021 e6e634836556
permissions -rw-r--r--
clarified signature: more explicit type Path.binding; tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37745
6315b6426200 checking generated code for various target languages
haftmann
parents: 37528
diff changeset
     1
(*  Title:      Tools/Code/code_target.ML
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     3
38910
6af1d8673cbf width is a formal parameter of serialization
haftmann
parents: 38909
diff changeset
     4
Generic infrastructure for target language data.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     5
*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     6
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     7
signature CODE_TARGET =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     8
sig
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
     9
  val cert_tyco: Proof.context -> string -> string
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    10
  val read_tyco: Proof.context -> string -> string
36471
5aae37575885 exported cert_tyco, read_tyco
haftmann
parents: 36271
diff changeset
    11
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
    12
  datatype pretty_modules = Singleton of string * Pretty.T | Hierarchy of (string list * Pretty.T) list;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
    13
70015
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
    14
  val export_code_for: ({physical: bool} * (Path.T * Position.T)) option -> string -> string
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
    15
    -> int option -> Token.T list  -> Code_Thingol.program -> bool -> Code_Symbol.T list
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
    16
    -> local_theory -> local_theory
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
    17
  val produce_code_for: Proof.context -> string -> string -> int option -> Token.T list
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
    18
    -> Code_Thingol.program -> bool -> Code_Symbol.T list -> (string list * string) list * string option list
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
    19
  val present_code_for: Proof.context -> string -> string -> int option -> Token.T list
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
    20
    -> Code_Thingol.program -> Code_Symbol.T list * Code_Symbol.T list -> string
69999
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
    21
  val check_code_for: string -> bool -> Token.T list
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
    22
    -> Code_Thingol.program -> bool -> Code_Symbol.T list -> local_theory -> local_theory
38918
haftmann
parents: 38917
diff changeset
    23
69999
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
    24
  val export_code: bool -> string list
70015
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
    25
    -> (((string * string) * ({physical: bool} * (Path.T * Position.T)) option) * Token.T list) list
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
    26
    -> local_theory -> local_theory
70001
6430327079c2 more exports: avoid clones in AFP;
wenzelm
parents: 70000
diff changeset
    27
  val export_code_cmd: bool -> string list
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
    28
    -> (((string * string) * ({physical: bool} * (string * Position.T)) option) * Token.T list) list
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
    29
    -> local_theory -> local_theory
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    30
  val produce_code: Proof.context -> bool -> string list
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
    31
    -> string -> string -> int option -> Token.T list -> (string list * string) list * string option list
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    32
  val present_code: Proof.context -> string list -> Code_Symbol.T list
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
    33
    -> string -> string -> int option -> Token.T list -> string
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
    34
  val check_code: bool -> string list -> ((string * bool) * Token.T list) list
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
    35
    -> local_theory -> local_theory
38918
haftmann
parents: 38917
diff changeset
    36
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
    37
  val codeN: string
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
    38
  val generatedN: string
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 63164
diff changeset
    39
  val compilation_text: Proof.context -> string -> Code_Thingol.program
55684
ee49b4f7edc8 keep only identifiers public which are explicitly requested or demanded by dependencies
haftmann
parents: 55683
diff changeset
    40
    -> Code_Symbol.T list -> bool -> ((string * class list) list * Code_Thingol.itype) * Code_Thingol.iterm
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
    41
    -> (string list * string) list * string
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
    42
  val compilation_text': Proof.context -> string -> string option -> Code_Thingol.program
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
    43
    -> Code_Symbol.T list -> bool -> ((string * class list) list * Code_Thingol.itype) * Code_Thingol.iterm
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
    44
    -> ((string list * string) list * string) * (Code_Symbol.T -> string option)
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
    45
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    46
  type serializer
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    47
  type literals = Code_Printer.literals
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
    48
  type language
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
    49
  type ancestry
59479
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
    50
  val assert_target: theory -> string -> string
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
    51
  val add_language: string * language -> theory -> theory
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
    52
  val add_derived_target: string * ancestry -> theory -> theory
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    53
  val the_literals: Proof.context -> string -> literals
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36537
diff changeset
    54
  val parse_args: 'a parser -> Token.T list -> 'a
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
    55
  val default_code_width: int Config.T
38917
haftmann
parents: 38916
diff changeset
    56
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    57
  type ('a, 'b, 'c, 'd, 'e, 'f) symbol_attr_decl
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
    58
  val set_identifiers: (string, string, string, string, string, string) symbol_attr_decl
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
    59
    -> theory -> theory
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
    60
  val set_printings: (Code_Printer.raw_const_syntax, Code_Printer.tyco_syntax, string, unit, unit, string * Code_Symbol.T list) symbol_attr_decl
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    61
    -> theory -> theory
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    62
  val add_reserved: string -> string -> theory -> theory
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    63
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    64
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    65
structure Code_Target : CODE_TARGET =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    66
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    67
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
    68
open Basic_Code_Symbol;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
    69
open Basic_Code_Thingol;
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    70
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    71
type literals = Code_Printer.literals;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    72
type ('a, 'b, 'c, 'd, 'e, 'f) symbol_attr_decl =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    73
  (string * (string * 'a option) list, string * (string * 'b option) list,
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    74
    class * (string * 'c option) list, (class * class) * (string * 'd option) list,
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    75
    (class * string) * (string * 'e option) list,
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    76
    string * (string * 'f option) list) Code_Symbol.attr;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
    77
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    78
type tyco_syntax = Code_Printer.tyco_syntax;
55153
eedd549de3ef more suitable names, without any notion of "activating"
haftmann
parents: 55150
diff changeset
    79
type raw_const_syntax = Code_Printer.raw_const_syntax;
34152
8e5b596d8c73 clarified various user-defined syntax issues
haftmann
parents: 34081
diff changeset
    80
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    81
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    82
(** checking and parsing of symbols **)
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    83
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    84
fun cert_const ctxt const =
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    85
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    86
    val _ = if Sign.declared_const (Proof_Context.theory_of ctxt) const then ()
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    87
      else error ("No such constant: " ^ quote const);
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    88
  in const end;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    89
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    90
fun read_const ctxt = Code.read_const (Proof_Context.theory_of ctxt);
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    91
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    92
fun cert_tyco ctxt tyco =
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    93
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    94
    val _ = if Sign.declared_tyname (Proof_Context.theory_of ctxt) tyco then ()
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    95
      else error ("No such type constructor: " ^ quote tyco);
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    96
  in tyco end;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
    97
55951
c07d184aebe9 tuned signature -- more uniform check_type_name/read_type_name;
wenzelm
parents: 55776
diff changeset
    98
fun read_tyco ctxt =
56002
2028467b4df4 tuned signature;
wenzelm
parents: 55951
diff changeset
    99
  #1 o dest_Type o Proof_Context.read_type_name {proper = true, strict = true} ctxt;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   100
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   101
fun cert_class ctxt class =
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   102
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   103
    val _ = Axclass.get_info (Proof_Context.theory_of ctxt) class;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   104
  in class end;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   105
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   106
val parse_classrel_ident = Parse.class --| \<^keyword>\<open><\<close> -- Parse.class;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   107
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   108
fun cert_inst ctxt (class, tyco) =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   109
  (cert_class ctxt class, cert_tyco ctxt tyco);
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   110
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   111
fun read_inst ctxt (raw_tyco, raw_class) =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   112
  (read_tyco ctxt raw_tyco, Proof_Context.read_class ctxt raw_class);
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   113
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   114
val parse_inst_ident = Parse.name --| \<^keyword>\<open>::\<close> -- Parse.class;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   115
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   116
fun cert_syms ctxt =
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   117
  Code_Symbol.map_attr (cert_const ctxt) (cert_tyco ctxt)
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   118
    (cert_class ctxt) (apply2 (cert_class ctxt)) (cert_inst ctxt) I;
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   119
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   120
fun read_syms ctxt =
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   121
  Code_Symbol.map_attr (read_const ctxt) (read_tyco ctxt)
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   122
    (Proof_Context.read_class ctxt) (apply2 (Proof_Context.read_class ctxt)) (read_inst ctxt) I;
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   123
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   124
fun cert_syms' ctxt =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   125
  Code_Symbol.map_attr (apfst (cert_const ctxt)) (apfst (cert_tyco ctxt))
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58928
diff changeset
   126
    (apfst (cert_class ctxt)) ((apfst o apply2) (cert_class ctxt)) (apfst (cert_inst ctxt)) I;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   127
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   128
fun read_syms' ctxt =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   129
  Code_Symbol.map_attr (apfst (read_const ctxt)) (apfst (read_tyco ctxt))
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58928
diff changeset
   130
    (apfst (Proof_Context.read_class ctxt)) ((apfst o apply2) (Proof_Context.read_class ctxt)) (apfst (read_inst ctxt)) I;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   131
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   132
fun check_name is_module s =
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   133
  let
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   134
    val _ = if s = "" then error "Bad empty code name" else ();
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   135
    val xs = Long_Name.explode s;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   136
    val xs' = if is_module
56826
ba18bd41e510 enforce case of identifiers only to accomodate strict language requirements (or clear separation of constructors from variables in the case of SML)
haftmann
parents: 56811
diff changeset
   137
        then map (Name.desymbolize NONE) xs
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   138
      else if length xs < 2
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   139
        then error ("Bad code name without module component: " ^ quote s)
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   140
      else
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   141
        let
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   142
          val (ys, y) = split_last xs;
56826
ba18bd41e510 enforce case of identifiers only to accomodate strict language requirements (or clear separation of constructors from variables in the case of SML)
haftmann
parents: 56811
diff changeset
   143
          val ys' = map (Name.desymbolize NONE) ys;
ba18bd41e510 enforce case of identifiers only to accomodate strict language requirements (or clear separation of constructors from variables in the case of SML)
haftmann
parents: 56811
diff changeset
   144
          val y' = Name.desymbolize NONE y;
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   145
        in ys' @ [y'] end;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   146
  in if xs' = xs
55291
82780e5f7622 tuned storage of code identifiers
haftmann
parents: 55188
diff changeset
   147
    then if is_module then (xs, "") else split_last xs
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   148
    else error ("Invalid code name: " ^ quote s ^ "\n"
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   149
      ^ "better try " ^ quote (Long_Name.implode xs'))
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   150
  end;
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   151
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   152
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   153
(** theory data **)
27014
a5f53d9d2b60 yet another attempt to circumvent printmode problems
haftmann
parents: 27001
diff changeset
   154
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   155
datatype pretty_modules = Singleton of string * Pretty.T | Hierarchy of (string list * Pretty.T) list;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   156
39142
f63715f00fdd dropped names from serializer interface
haftmann
parents: 39102
diff changeset
   157
type serializer = Token.T list
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   158
  -> Proof.context
39142
f63715f00fdd dropped names from serializer interface
haftmann
parents: 39102
diff changeset
   159
  -> {
38926
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   160
    reserved_syms: string list,
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   161
    identifiers: Code_Printer.identifiers,
38926
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   162
    includes: (string * Pretty.T) list,
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   163
    class_syntax: string -> string option,
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   164
    tyco_syntax: string -> Code_Printer.tyco_syntax option,
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   165
    const_syntax: string -> Code_Printer.const_syntax option,
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   166
    module_name: string }
41342
3519e0dd8f75 more explicit structure for serializer invocation
haftmann
parents: 41307
diff changeset
   167
  -> Code_Thingol.program
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   168
  -> Code_Symbol.T list
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   169
  -> pretty_modules * (Code_Symbol.T -> string option);
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   170
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   171
type language = {serializer: serializer, literals: literals,
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   172
  check: {env_var: string, make_destination: Path.T -> Path.T, make_command: string -> string},
69998
c61f6bc9cf5c tuned whitespace;
wenzelm
parents: 69906
diff changeset
   173
  evaluation_args: Token.T list};
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   174
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   175
type ancestry = (string * (Code_Thingol.program -> Code_Thingol.program)) list;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   176
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   177
val merge_ancestry : ancestry * ancestry -> ancestry = AList.join (op =) (K snd);
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   178
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   179
type target = {serial: serial, language: language, ancestry: ancestry};
27437
727297fcf7c8 cached code for code antiquotation
haftmann
parents: 27436
diff changeset
   180
34248
6fb7dd3fd81a modernized
haftmann
parents: 34173
diff changeset
   181
structure Targets = Theory_Data
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   182
(
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   183
  type T = (target * Code_Printer.data) Symtab.table * int;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   184
  val empty = (Symtab.empty, 0);
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   185
  fun extend (targets, _) = (targets, 0);
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   186
  fun merge ((targets1, _), (targets2, _)) : T =
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   187
    let val targets' =
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   188
      Symtab.join (fn target_name => fn ((target1, data1), (target2, data2)) =>
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   189
        if #serial target1 = #serial target2 then
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   190
        ({serial = #serial target1, language = #language target1,
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   191
          ancestry = merge_ancestry (#ancestry target1, #ancestry target2)},
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   192
          Code_Printer.merge_data (data1, data2))
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   193
        else error ("Incompatible targets: " ^ quote target_name)) (targets1, targets2)
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   194
    in (targets', 0) end;
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   195
);
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   196
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   197
val exists_target = Symtab.defined o #1 o Targets.get;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   198
val lookup_target_data = Symtab.lookup o #1 o Targets.get;
59479
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   199
fun assert_target thy target_name =
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   200
  if exists_target thy target_name
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   201
  then target_name
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   202
  else error ("Unknown code target language: " ^ quote target_name);
59100
haftmann
parents: 59099
diff changeset
   203
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   204
fun next_export thy =
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   205
  let
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   206
    val thy' = (Targets.map o apsnd) (fn i => i + 1) thy;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   207
    val i = #2 (Targets.get thy');
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   208
  in ("export" ^ string_of_int i, thy') end;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   209
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   210
fun fold1 f xs = fold f (tl xs) (hd xs);
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   211
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   212
fun join_ancestry thy target_name =
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   213
  let
69998
c61f6bc9cf5c tuned whitespace;
wenzelm
parents: 69906
diff changeset
   214
    val _ = assert_target thy target_name;
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   215
    val the_target_data = the o lookup_target_data thy;
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   216
    val (target, this_data) = the_target_data target_name;
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   217
    val ancestry = #ancestry target;
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   218
    val modifies = rev (map snd ancestry);
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   219
    val modify = fold (curry (op o)) modifies I;
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   220
    val datas = rev (map (snd o the_target_data o fst) ancestry) @ [this_data];
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   221
    val data = fold1 (fn data' => fn data => Code_Printer.merge_data (data, data')) datas;
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   222
  in (modify, (target, data)) end;
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   223
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   224
fun allocate_target target_name target thy =
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   225
  let
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   226
    val _ = if exists_target thy target_name
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   227
      then error ("Attempt to overwrite existing target " ^ quote target_name)
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   228
      else ();
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   229
  in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   230
    thy
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   231
    |> (Targets.map o apfst o Symtab.update) (target_name, (target, Code_Printer.empty_data))
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   232
  end;
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   233
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   234
fun add_language (target_name, language) =
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   235
  allocate_target target_name {serial = serial (), language = language,
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   236
    ancestry = []};
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   237
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   238
fun add_derived_target (target_name, initial_ancestry) thy =
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   239
  let
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   240
    val _ = if null initial_ancestry
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   241
      then error "Must derive from existing target(s)" else ();
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   242
    fun the_target_data target_name' = case lookup_target_data thy target_name' of
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   243
      NONE => error ("Unknown code target language: " ^ quote target_name')
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   244
    | SOME target_data' => target_data';
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   245
    val targets = rev (map (fst o the_target_data o fst) initial_ancestry);
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   246
    val supremum = fold1 (fn target' => fn target =>
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   247
      if #serial target = #serial target'
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   248
      then target else error "Incompatible targets") targets;
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   249
    val ancestries = map #ancestry targets @ [initial_ancestry];
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   250
    val ancestry = fold1 (fn ancestry' => fn ancestry =>
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 59103
diff changeset
   251
      merge_ancestry (ancestry, ancestry')) ancestries;
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   252
  in
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   253
    allocate_target target_name {serial = #serial supremum, language = #language supremum,
69998
c61f6bc9cf5c tuned whitespace;
wenzelm
parents: 69906
diff changeset
   254
      ancestry = ancestry} thy
59101
6dc48c98303c tuned target inheritance bookkeeping: ancestry is always fully maintained at current entry using canonical merge;
haftmann
parents: 59100
diff changeset
   255
  end;
69998
c61f6bc9cf5c tuned whitespace;
wenzelm
parents: 69906
diff changeset
   256
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   257
fun map_data target_name f thy =
27436
9581777503e9 code antiquotation roaring ahead
haftmann
parents: 27372
diff changeset
   258
  let
59479
b36379a730f4 explicit error message for non-existing targets
haftmann
parents: 59430
diff changeset
   259
    val _ = assert_target thy target_name;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   260
  in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   261
    thy
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   262
    |> (Targets.map o apfst o Symtab.map_entry target_name o apsnd o Code_Printer.map_data) f
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   263
  end;
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   264
69998
c61f6bc9cf5c tuned whitespace;
wenzelm
parents: 69906
diff changeset
   265
fun map_reserved target_name = map_data target_name o @{apply 3(1)};
c61f6bc9cf5c tuned whitespace;
wenzelm
parents: 69906
diff changeset
   266
fun map_identifiers target_name = map_data target_name o @{apply 3(2)};
c61f6bc9cf5c tuned whitespace;
wenzelm
parents: 69906
diff changeset
   267
fun map_printings target_name = map_data target_name o @{apply 3(3)};
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   268
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   269
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   270
(** serializers **)
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   271
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   272
val codeN = "code";
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   273
val generatedN = "Generated_Code";
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   274
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   275
local
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   276
70015
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   277
fun export_logical (file_prefix, file_pos) format pretty_modules =
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   278
  let
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   279
    val prefix = Path.append (Path.basic codeN) file_prefix;
70011
9dde788b0128 clarified 'file_prefix';
wenzelm
parents: 70009
diff changeset
   280
    fun export path content thy =
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   281
      let
70015
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   282
        val binding = Path.binding (path, file_pos);
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   283
        val thy' = thy |> Generated_Files.add_files (binding, content);
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   284
        val _ = Export.export thy' binding [content];
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   285
      in thy' end;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   286
  in
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   287
    (case pretty_modules of
70011
9dde788b0128 clarified 'file_prefix';
wenzelm
parents: 70009
diff changeset
   288
      Singleton (ext, p) => export (Path.ext ext prefix) (format p)
9dde788b0128 clarified 'file_prefix';
wenzelm
parents: 70009
diff changeset
   289
    | Hierarchy modules =>
9dde788b0128 clarified 'file_prefix';
wenzelm
parents: 70009
diff changeset
   290
        fold (fn (names, p) => export (Path.append prefix (Path.make names)) (format p)) modules)
9dde788b0128 clarified 'file_prefix';
wenzelm
parents: 70009
diff changeset
   291
    #> tap (fn thy => writeln (Export.message thy (Path.basic codeN)))
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   292
  end;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   293
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   294
fun export_physical root format pretty_modules =
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   295
  (case pretty_modules of
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   296
    Singleton (_, p) => File.write root (format p)
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   297
  | Hierarchy code_modules =>
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   298
      (Isabelle_System.mkdirs root;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   299
        List.app (fn (names, p) =>
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   300
          File.write (Path.appends (root :: map Path.basic names)) (format p)) code_modules));
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   301
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   302
in
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   303
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   304
fun export_result some_file format (pretty_code, _) thy =
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   305
  (case some_file of
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   306
    NONE =>
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   307
      let val (file_prefix, thy') = next_export thy;
70015
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   308
      in export_logical (Path.basic file_prefix, Position.none) format pretty_code thy' end
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   309
  | SOME ({physical = false}, file_prefix) =>
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   310
      export_logical file_prefix format pretty_code thy
70015
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   311
  | SOME ({physical = true}, (file, _)) =>
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   312
      let
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   313
        val root = File.full_path (Resources.master_directory thy) file;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   314
        val _ = File.check_dir (Path.dir root);
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   315
        val _ = export_physical root format pretty_code;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   316
      in thy end);
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   317
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   318
fun produce_result syms width pretty_modules =
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   319
  let val format = Code_Printer.format [] width in
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   320
    (case pretty_modules of
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   321
      (Singleton (_, p), deresolve) => ([([], format p)], map deresolve syms)
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   322
    | (Hierarchy code_modules, deresolve) =>
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   323
        ((map o apsnd) format code_modules, map deresolve syms))
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   324
  end;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   325
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   326
fun present_result selects width (pretty_modules, _) =
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   327
  let val format = Code_Printer.format selects width in
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   328
    (case pretty_modules of
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   329
      Singleton (_, p) => format p
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   330
    | Hierarchy code_modules => space_implode "\n\n" (map (format o #2) code_modules))
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   331
  end;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   332
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   333
end;
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   334
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   335
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   336
(** serializer usage **)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   337
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   338
(* technical aside: pretty printing width *)
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   339
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   340
val default_code_width = Attrib.setup_config_int \<^binding>\<open>default_code_width\<close> (K 80);
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   341
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   342
fun default_width ctxt = Config.get ctxt default_code_width;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   343
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   344
val the_width = the_default o default_width;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   345
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   346
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   347
(* montage *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   348
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   349
fun the_language ctxt =
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   350
  #language o fst o the o lookup_target_data (Proof_Context.theory_of ctxt);
37822
cf3588177676 use generic description slot for formal code checking
haftmann
parents: 37821
diff changeset
   351
59102
2c0005cc623f tuned data structures
haftmann
parents: 59101
diff changeset
   352
fun the_literals ctxt = #literals o the_language ctxt;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   353
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   354
fun the_evaluation_args ctxt = #evaluation_args o the_language ctxt;
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   355
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   356
local
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   357
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   358
fun activate_target ctxt target_name =
39817
5228c6b20273 check whole target hierarchy for existing reserved symbols
haftmann
parents: 39750
diff changeset
   359
  let
59324
f5f9993a168d prefer option for default code printing width
haftmann
parents: 59323
diff changeset
   360
    val thy = Proof_Context.theory_of ctxt;
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   361
    val (modify, (target, data)) = join_ancestry thy target_name;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   362
    val serializer = (#serializer o #language) target;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   363
  in { serializer = serializer, data = data, modify = modify } end;
38927
haftmann
parents: 38926
diff changeset
   364
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   365
fun project_program_for_syms ctxt syms_hidden syms1 program1 =
38927
haftmann
parents: 38926
diff changeset
   366
  let
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   367
    val syms2 = subtract (op =) syms_hidden syms1;
69527
3626ccf644e1 more correct handling of symbols for includes
haftmann
parents: 69485
diff changeset
   368
    val program2 = Code_Symbol.Graph.restrict (not o member (op =) syms_hidden) program1;
3626ccf644e1 more correct handling of symbols for includes
haftmann
parents: 69485
diff changeset
   369
    val unimplemented = Code_Thingol.unimplemented program2;
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41940
diff changeset
   370
    val _ =
54889
4121d64fde90 explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents: 54312
diff changeset
   371
      if null unimplemented then ()
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41940
diff changeset
   372
      else error ("No code equations for " ^
55304
55ac31bc08a4 more formal markup;
wenzelm
parents: 55188
diff changeset
   373
        commas (map (Proof_Context.markup_const ctxt) unimplemented));
69527
3626ccf644e1 more correct handling of symbols for includes
haftmann
parents: 69485
diff changeset
   374
    val syms3 = Code_Symbol.Graph.all_succs program2 syms2;
3626ccf644e1 more correct handling of symbols for includes
haftmann
parents: 69485
diff changeset
   375
    val program3 = Code_Symbol.Graph.restrict (member (op =) syms3) program2;
3626ccf644e1 more correct handling of symbols for includes
haftmann
parents: 69485
diff changeset
   376
  in program3 end;
38927
haftmann
parents: 38926
diff changeset
   377
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   378
fun project_includes_for_syms syms includes =
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   379
   let
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   380
     fun select_include (name, (content, cs)) =
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   381
       if null cs orelse exists (member (op =) syms) cs
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   382
       then SOME (name, content) else NONE;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   383
  in map_filter select_include includes end;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   384
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   385
fun prepare_serializer ctxt target_name module_name args proto_program syms =
38927
haftmann
parents: 38926
diff changeset
   386
  let
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   387
    val { serializer, data, modify } = activate_target ctxt target_name;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   388
    val printings = Code_Printer.the_printings data;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   389
    val _ = if module_name = "" then () else (check_name true module_name; ())
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   390
    val hidden_syms = Code_Symbol.symbols_of printings;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   391
    val prepared_program = project_program_for_syms ctxt hidden_syms syms proto_program;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   392
    val prepared_syms = subtract (op =) hidden_syms syms;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   393
    val all_syms = Code_Symbol.Graph.all_succs proto_program syms;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   394
    val includes = project_includes_for_syms all_syms
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   395
      (Code_Symbol.dest_module_data printings);
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   396
    val prepared_serializer = serializer args ctxt {
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   397
      reserved_syms = Code_Printer.the_reserved data,
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   398
      identifiers = Code_Printer.the_identifiers data,
38926
24f82786cc57 record argument for serializers
haftmann
parents: 38925
diff changeset
   399
      includes = includes,
55149
626d8f08d479 immediate "activation" of const syntax at declaration time
haftmann
parents: 55147
diff changeset
   400
      const_syntax = Code_Symbol.lookup_constant_data printings,
626d8f08d479 immediate "activation" of const syntax at declaration time
haftmann
parents: 55147
diff changeset
   401
      tyco_syntax = Code_Symbol.lookup_type_constructor_data printings,
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   402
      class_syntax = Code_Symbol.lookup_type_class_data printings,
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   403
      module_name = module_name };
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   404
  in
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   405
    (prepared_serializer o modify, (prepared_program, prepared_syms))
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   406
  end;
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   407
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   408
fun invoke_serializer ctxt target_name module_name args program all_public syms =
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   409
  let
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   410
    val (prepared_serializer, (prepared_program, prepared_syms)) =
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   411
      prepare_serializer ctxt target_name module_name args program syms;
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   412
    val exports = if all_public then [] else prepared_syms;
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   413
  in
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   414
    Code_Preproc.timed_exec "serializing"
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   415
      (fn () => prepared_serializer prepared_program exports) ctxt
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   416
  end;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   417
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   418
fun assert_module_name "" = error "Empty module name not allowed here"
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
   419
  | assert_module_name module_name = module_name;
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38929
diff changeset
   420
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   421
in
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   422
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   423
fun export_code_for some_file target_name module_name some_width args program all_public cs lthy =
69999
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   424
  let
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   425
    val format = Code_Printer.format [] (the_width lthy some_width);
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   426
    val res = invoke_serializer lthy target_name module_name args program all_public cs;
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   427
  in Local_Theory.background_theory (export_result some_file format res) lthy end;
38918
haftmann
parents: 38917
diff changeset
   428
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   429
fun produce_code_for ctxt target_name module_name some_width args =
39102
4ae1d212100f hand out deresolver from serializer invocation
haftmann
parents: 39058
diff changeset
   430
  let
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   431
    val serializer = invoke_serializer ctxt target_name (assert_module_name module_name) args;
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   432
  in fn program => fn all_public => fn syms =>
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   433
    produce_result syms (the_width ctxt some_width)
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   434
      (serializer program all_public syms)
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   435
  end;
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   436
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   437
fun present_code_for ctxt target_name module_name some_width args =
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   438
  let
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   439
    val serializer = invoke_serializer ctxt target_name (assert_module_name module_name) args;
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   440
  in fn program => fn (syms, selects) =>
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   441
    present_result selects (the_width ctxt some_width) (serializer program false syms)
39484
505f95975a5a closures separate serializer initialization from serializer invocation as far as appropriate
haftmann
parents: 39480
diff changeset
   442
  end;
38918
haftmann
parents: 38917
diff changeset
   443
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   444
fun check_code_for target_name strict args program all_public syms lthy =
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   445
  let
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   446
    val { env_var, make_destination, make_command } = #check (the_language lthy target_name);
70000
wenzelm
parents: 69999
diff changeset
   447
    val format = Code_Printer.format [] 80;
41939
wenzelm
parents: 41364
diff changeset
   448
    fun ext_check p =
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43324
diff changeset
   449
      let
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   450
        val destination = make_destination p;
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   451
        val lthy' = lthy
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   452
          |> Local_Theory.background_theory
70015
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   453
            (export_result (SOME ({physical = true}, (destination, Position.none))) format
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   454
              (invoke_serializer lthy target_name generatedN args program all_public syms));
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 48426
diff changeset
   455
        val cmd = make_command generatedN;
69906
55534affe445 migrated from Nums to Zarith as library for OCaml integer arithmetic
haftmann
parents: 69784
diff changeset
   456
        val context_cmd = "cd " ^ File.bash_path p ^ " && " ^ cmd ^ " 2>&1";
43850
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43564
diff changeset
   457
      in
69906
55534affe445 migrated from Nums to Zarith as library for OCaml integer arithmetic
haftmann
parents: 69784
diff changeset
   458
        if Isabelle_System.bash context_cmd <> 0
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   459
        then error ("Code check failed for " ^ target_name ^ ": " ^ cmd)
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   460
        else lthy'
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   461
      end;
43850
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43564
diff changeset
   462
  in
69999
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   463
    if not (env_var = "") andalso getenv env_var = "" then
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   464
      if strict
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   465
      then error (env_var ^ " not set; cannot check code for " ^ target_name)
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   466
      else (warning (env_var ^ " not set; skipped checking code for " ^ target_name); lthy)
41939
wenzelm
parents: 41364
diff changeset
   467
    else Isabelle_System.with_tmp_dir "Code_Test" ext_check
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   468
  end;
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   469
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   470
fun dynamic_compilation_text prepared_serializer width prepared_program syms all_public ((vs, ty), t) =
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   471
  let
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   472
    val _ = if Code_Thingol.contains_dict_var t then
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   473
      error "Term to be evaluated contains free dictionaries" else ();
43324
2b47822868e4 discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents: 42361
diff changeset
   474
    val v' = singleton (Name.variant_list (map fst vs)) "a";
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   475
    val vs' = (v', []) :: vs;
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   476
    val ty' = ITyVar v' `-> ty;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   477
    val program = prepared_program
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   478
      |> Code_Symbol.Graph.new_node (Code_Symbol.value,
57249
5c75baf68b77 formal variable name: IVar NONE is strictly spoken not supported on lhs of function definitions, e.g. in Scala
haftmann
parents: 56920
diff changeset
   479
          Code_Thingol.Fun (((vs', ty'), [(([IVar (SOME "dummy")], t), (NONE, true))]), NONE))
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   480
      |> fold (curry (perhaps o try o
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 55146
diff changeset
   481
          Code_Symbol.Graph.add_edge) Code_Symbol.value) syms;
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   482
    val (pretty_code, deresolve) =
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   483
      prepared_serializer program (if all_public then [] else [Code_Symbol.value]);
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   484
    val (compilation_code, [SOME value_name]) =
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   485
      produce_result [Code_Symbol.value] width (pretty_code, deresolve);
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   486
  in ((compilation_code, value_name), deresolve) end;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   487
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
   488
fun compilation_text' ctxt target_name some_module_name program syms =
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   489
  let
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   490
    val width = default_width ctxt;
67207
ad538f6c5d2f dedicated case option for code generation to Scala
haftmann
parents: 66586
diff changeset
   491
    val evaluation_args = the_evaluation_args ctxt target_name;
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   492
    val (prepared_serializer, (prepared_program, _)) =
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   493
      prepare_serializer ctxt target_name (the_default generatedN some_module_name) evaluation_args program syms;
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   494
  in
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   495
    Code_Preproc.timed_exec "serializing"
69623
ef02c5e051e5 explicit model concerning files of generated code
haftmann
parents: 69593
diff changeset
   496
      (fn () => dynamic_compilation_text prepared_serializer width prepared_program syms) ctxt
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63159
diff changeset
   497
  end;
41344
d990badc97a3 evaluator separating static and dynamic operations
haftmann
parents: 41342
diff changeset
   498
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
   499
fun compilation_text ctxt target_name program syms =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64957
diff changeset
   500
  fst oo compilation_text' ctxt target_name NONE program syms
69998
c61f6bc9cf5c tuned whitespace;
wenzelm
parents: 69906
diff changeset
   501
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   502
end; (* local *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   503
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   504
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   505
(* code generation *)
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   506
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   507
fun prep_destination (location, (s, pos)) =
70015
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   508
  if location = {physical = false}
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   509
  then (location, Path.explode_pos (s, pos))
66586
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   510
  else
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   511
    let
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   512
      val _ =
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   513
        if s = ""
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   514
        then error ("Bad bad empty " ^ Markup.markup Markup.keyword2 "file" ^ " argument")
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   515
        else ();
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   516
      val _ =
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   517
        legacy_feature
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   518
          (Markup.markup Markup.keyword1 "export_code" ^ " with " ^
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   519
            Markup.markup Markup.keyword2 "file" ^ " argument" ^ Position.here pos);
66586
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   520
      val _ = Position.report pos Markup.language_path;
70015
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   521
      val path = #1 (Path.explode_pos (s, pos));
66586
e5e56c330976 more PIDE markup;
wenzelm
parents: 64959
diff changeset
   522
      val _ = Position.report pos (Markup.path (Path.smart_implode path));
70015
c8e08d8ffb93 clarified signature: more explicit type Path.binding;
wenzelm
parents: 70011
diff changeset
   523
    in (location, (path, pos)) end;
38918
haftmann
parents: 38917
diff changeset
   524
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   525
fun export_code all_public cs seris lthy =
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   526
  let
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   527
    val program = Code_Thingol.consts_program lthy cs;
69999
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   528
  in
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   529
    (seris, lthy) |-> fold (fn (((target_name, module_name), some_file), args) =>
69999
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   530
      export_code_for some_file target_name module_name NONE args
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   531
        program all_public (map Constant cs))
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   532
  end;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   533
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   534
fun export_code_cmd all_public raw_cs seris lthy =
69999
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   535
  let
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   536
    val cs = Code_Thingol.read_const_exprs lthy raw_cs;
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   537
  in export_code all_public cs ((map o apfst o apsnd o Option.map) prep_destination seris) lthy end;
38918
haftmann
parents: 38917
diff changeset
   538
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   539
fun produce_code ctxt all_public cs target_name some_width some_module_name args =
38918
haftmann
parents: 38917
diff changeset
   540
  let
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   541
    val program = Code_Thingol.consts_program ctxt cs;
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   542
  in produce_code_for ctxt target_name some_width some_module_name args program all_public (map Constant cs) end;
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   543
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   544
fun present_code ctxt cs syms target_name some_width some_module_name args =
38929
d9ac9dee764d distinguish code production and code presentation
haftmann
parents: 38928
diff changeset
   545
  let
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   546
    val program = Code_Thingol.consts_program ctxt cs;
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   547
  in present_code_for ctxt target_name some_width some_module_name args program (map Constant cs, syms) end;
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   548
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   549
fun check_code all_public cs seris lthy =
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   550
  let
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   551
    val program = Code_Thingol.consts_program lthy cs;
69999
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   552
  in
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   553
    (seris, lthy) |-> fold (fn ((target_name, strict), args) =>
69999
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   554
      check_code_for target_name strict args program all_public (map Constant cs))
76554a0cafe3 export_code/check_code formally updates the theory -- this opens further possibilities concerning Generated_Files;
wenzelm
parents: 69998
diff changeset
   555
  end;
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   556
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   557
fun check_code_cmd all_public raw_cs seris lthy =
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   558
  check_code all_public (Code_Thingol.read_const_exprs lthy raw_cs) seris lthy;
37824
365e37fe93f3 added Isar syntax for code checking
haftmann
parents: 37822
diff changeset
   559
34021
e820ed4bfd94 tuned inner structure
haftmann
parents: 33969
diff changeset
   560
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   561
(** serializer configuration **)
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   562
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   563
(* reserved symbol names *)
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   564
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   565
fun add_reserved target_name sym thy =
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   566
  let
59103
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   567
    val (_, (_, data)) = join_ancestry thy target_name;
788db6d6b8a5 tuned module structure
haftmann
parents: 59102
diff changeset
   568
    val _ = if member (op =) (Code_Printer.the_reserved data) sym
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   569
      then error ("Reserved symbol " ^ quote sym ^ " already declared")
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   570
      else ();
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   571
  in
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   572
    thy
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   573
    |> map_reserved target_name (insert (op =) sym)
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   574
  end;
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   575
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   576
52377
afa72aaed518 more consistent parsing and reading of classes and type constructors
haftmann
parents: 52218
diff changeset
   577
(* checking of syntax *)
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   578
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   579
fun check_const_syntax ctxt target_name c syn =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   580
  if Code_Printer.requires_args syn > Code.args_number (Proof_Context.theory_of ctxt) c
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   581
  then error ("Too many arguments in syntax for constant " ^ quote c)
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   582
  else Code_Printer.prep_const_syntax (Proof_Context.theory_of ctxt) (the_literals ctxt target_name) c syn;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   583
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   584
fun check_tyco_syntax ctxt target_name tyco syn =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   585
  if fst syn <> Sign.arity_number (Proof_Context.theory_of ctxt) tyco
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   586
  then error ("Number of arguments mismatch in syntax for type constructor " ^ quote tyco)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   587
  else syn;
34071
93bfbb557e2e default_code_width is now proper theory data
haftmann
parents: 34021
diff changeset
   588
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   589
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   590
(* custom symbol names *)
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   591
52218
b3a5c6f2cb67 make SML/NJ happy;
wenzelm
parents: 52161
diff changeset
   592
fun arrange_name_decls x =
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   593
  let
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   594
    fun arrange is_module (sym, target_names) = map (fn (target, some_name) =>
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   595
      (target, (sym, Option.map (check_name is_module) some_name))) target_names;
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   596
  in
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   597
    Code_Symbol.maps_attr' (arrange false) (arrange false) (arrange false)
52218
b3a5c6f2cb67 make SML/NJ happy;
wenzelm
parents: 52161
diff changeset
   598
      (arrange false) (arrange false) (arrange true) x
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   599
  end;
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   600
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   601
fun cert_name_decls ctxt = cert_syms' ctxt #> arrange_name_decls;
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   602
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   603
fun read_name_decls ctxt = read_syms' ctxt #> arrange_name_decls;
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   604
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   605
fun set_identifier (target_name, sym_name) = map_identifiers target_name (Code_Symbol.set_data sym_name);
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   606
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   607
fun gen_set_identifiers prep_name_decl raw_name_decls thy =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   608
  fold set_identifier (prep_name_decl (Proof_Context.init_global thy) raw_name_decls) thy;
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   609
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   610
val set_identifiers = gen_set_identifiers cert_name_decls;
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   611
val set_identifiers_cmd = gen_set_identifiers read_name_decls;
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   612
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   613
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   614
(* custom printings *)
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   615
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   616
fun arrange_printings prep_syms ctxt =
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   617
  let
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   618
    fun arrange check (sym, target_syns) =
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   619
      map (fn (target_name, some_syn) =>
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   620
        (target_name, (sym, Option.map (check ctxt target_name sym) some_syn))) target_syns;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   621
  in
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   622
    Code_Symbol.maps_attr'
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   623
      (arrange check_const_syntax) (arrange check_tyco_syntax)
55149
626d8f08d479 immediate "activation" of const syntax at declaration time
haftmann
parents: 55147
diff changeset
   624
        (arrange ((K o K o K) I)) (arrange ((K o K o K) I)) (arrange ((K o K o K) I))
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   625
        (arrange (fn ctxt => fn _ => fn _ => fn (raw_content, raw_syms) =>
59430
b65809f05dc9 more direct Output.output;
wenzelm
parents: 59324
diff changeset
   626
          (Pretty.blk (0, Pretty.fbreaks (map Code_Printer.str (split_lines raw_content))),
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   627
            map (prep_syms ctxt) raw_syms)))
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   628
  end;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   629
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   630
fun cert_printings ctxt = cert_syms' ctxt #> arrange_printings cert_syms ctxt;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   631
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   632
fun read_printings ctxt = read_syms' ctxt #> arrange_printings read_syms ctxt;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   633
59099
62ee9676b7ed tuned names
haftmann
parents: 59083
diff changeset
   634
fun set_printing (target_name, sym_syn) = map_printings target_name (Code_Symbol.set_data sym_syn);
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   635
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   636
fun gen_set_printings prep_print_decl raw_print_decls thy =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   637
  fold set_printing (prep_print_decl (Proof_Context.init_global thy) raw_print_decls) thy;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   638
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   639
val set_printings = gen_set_printings cert_printings;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   640
val set_printings_cmd = gen_set_printings read_printings;
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   641
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   642
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   643
(* concrete syntax *)
27000
e8a40d8b7897 new serializer interface
haftmann
parents: 26998
diff changeset
   644
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   645
fun parse_args f args =
36959
f5417836dbea renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents: 36537
diff changeset
   646
  case Scan.read Token.stopper f args
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   647
   of SOME x => x
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   648
    | NONE => error "Bad serializer arguments";
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   649
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27868
diff changeset
   650
27304
720c8115d723 explicit thm context for error messages
haftmann
parents: 27103
diff changeset
   651
(** Isar setup **)
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   652
69698
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   653
val (constantK, type_constructorK, type_classK, class_relationK, class_instanceK, code_moduleK) =
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   654
  (\<^keyword>\<open>constant\<close>, \<^keyword>\<open>type_constructor\<close>, \<^keyword>\<open>type_class\<close>,
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   655
    \<^keyword>\<open>class_relation\<close>, \<^keyword>\<open>class_instance\<close>, \<^keyword>\<open>code_module\<close>);
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   656
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   657
local
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   658
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   659
val parse_constants = constantK |-- Scan.repeat1 Parse.term >> map Constant;
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   660
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   661
val parse_type_constructors = type_constructorK |-- Scan.repeat1 Parse.type_const >> map Type_Constructor;
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   662
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   663
val parse_classes = type_classK |-- Scan.repeat1 Parse.class >> map Type_Class;
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   664
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   665
val parse_class_relations = class_relationK |-- Scan.repeat1 parse_classrel_ident >> map Class_Relation;
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   666
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   667
val parse_instances = class_instanceK |-- Scan.repeat1 parse_inst_ident >> map Class_Instance;
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   668
69698
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   669
val parse_simple_symbols = Scan.repeats1 (parse_constants || parse_type_constructors || parse_classes
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   670
  || parse_class_relations || parse_instances);
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   671
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   672
fun parse_single_symbol_pragma parse_keyword parse_isa parse_target =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   673
  parse_keyword |-- Parse.!!! (parse_isa --| (\<^keyword>\<open>\<rightharpoonup>\<close> || \<^keyword>\<open>=>\<close>)
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   674
    -- Parse.and_list1 (\<^keyword>\<open>(\<close> |-- (Parse.name --| \<^keyword>\<open>)\<close> -- Scan.option parse_target)));
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   675
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   676
fun parse_symbol_pragma parse_const parse_tyco parse_class parse_classrel parse_inst parse_module =
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   677
  parse_single_symbol_pragma constantK Parse.term parse_const
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   678
    >> Constant
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   679
  || parse_single_symbol_pragma type_constructorK Parse.type_const parse_tyco
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   680
    >> Type_Constructor
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   681
  || parse_single_symbol_pragma type_classK Parse.class parse_class
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   682
    >> Type_Class
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   683
  || parse_single_symbol_pragma class_relationK parse_classrel_ident parse_classrel
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   684
    >> Class_Relation
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   685
  || parse_single_symbol_pragma class_instanceK parse_inst_ident parse_inst
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55149
diff changeset
   686
    >> Class_Instance
69485
b734ff28e405 proper attach mechanism for any kind of symbols, not just constants
haftmann
parents: 69484
diff changeset
   687
  || parse_single_symbol_pragma code_moduleK Parse.name parse_module
69698
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   688
    >> Module;
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   689
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   690
fun parse_symbol_pragmas parse_const parse_tyco parse_class parse_classrel parse_inst parse_module =
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   691
  Parse.enum1 "|" (Parse.group (fn () => "code symbol pragma")
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   692
    (parse_symbol_pragma parse_const parse_tyco parse_class parse_classrel parse_inst parse_module));
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   693
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   694
val code_expr_argsP = Scan.optional (\<^keyword>\<open>(\<close> |-- Parse.args --| \<^keyword>\<open>)\<close>) [];
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   695
69645
wenzelm
parents: 69624
diff changeset
   696
fun code_expr_inP (all_public, raw_cs) =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   697
  Scan.repeat (\<^keyword>\<open>in\<close> |-- Parse.!!! (Parse.name
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   698
    -- Scan.optional (\<^keyword>\<open>module_name\<close> |-- Parse.name) ""
70009
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   699
    -- Scan.option
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   700
        ((\<^keyword>\<open>file_prefix\<close> >> K {physical = false} || \<^keyword>\<open>file\<close> >> K {physical = true})
435fb018e8ee "export_code ... file_prefix ..." is the preferred way to produce output within the logical file-system within the theory context, as well as session exports;
wenzelm
parents: 70002
diff changeset
   701
          -- Parse.!!! (Parse.position Parse.path))
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   702
    -- code_expr_argsP))
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   703
      >> (fn seri_args => export_code_cmd all_public raw_cs seri_args);
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   704
69645
wenzelm
parents: 69624
diff changeset
   705
fun code_expr_checkingP (all_public, raw_cs) =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   706
  (\<^keyword>\<open>checking\<close> |-- Parse.!!!
69645
wenzelm
parents: 69624
diff changeset
   707
    (Scan.repeat (Parse.name -- (Scan.optional (\<^keyword>\<open>?\<close> >> K false) true) -- code_expr_argsP)))
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55372
diff changeset
   708
      >> (fn seri_args => check_code_cmd all_public raw_cs seri_args);
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 52377
diff changeset
   709
69698
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   710
in
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   711
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   712
val _ =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   713
  Outer_Syntax.command \<^command_keyword>\<open>code_reserved\<close>
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   714
    "declare words as reserved for target language"
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   715
    (Parse.name -- Scan.repeat1 Parse.name
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   716
      >> (fn (target, reserveds) => (Toplevel.theory o fold (add_reserved target)) reserveds));
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   717
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   718
val _ =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   719
  Outer_Syntax.command \<^command_keyword>\<open>code_identifier\<close> "declare mandatory names for code symbols"
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   720
    (parse_symbol_pragmas Parse.name Parse.name Parse.name Parse.name Parse.name Parse.name
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   721
      >> (Toplevel.theory o fold set_identifiers_cmd));
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   722
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 52137
diff changeset
   723
val _ =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69527
diff changeset
   724
  Outer_Syntax.command \<^command_keyword>\<open>code_printing\<close> "declare dedicated printing for code symbols"
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   725
    (parse_symbol_pragmas (Code_Printer.parse_const_syntax) (Code_Printer.parse_tyco_syntax)
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   726
      Parse.string (Parse.minus >> K ()) (Parse.minus >> K ())
69698
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   727
      (Parse.text -- Scan.optional (\<^keyword>\<open>for\<close> |-- parse_simple_symbols) [])
52137
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   728
      >> (Toplevel.theory o fold set_printings_cmd));
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   729
7f7337447b1b use generic data for code symbols for unified "code_printing" syntax for custom serialisations
haftmann
parents: 52068
diff changeset
   730
val _ =
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   731
  Outer_Syntax.local_theory \<^command_keyword>\<open>export_code\<close> "generate executable code for constants"
69646
aac49f64051d clarified -- removed pointless Parse.!!!;
wenzelm
parents: 69645
diff changeset
   732
    (Scan.optional (\<^keyword>\<open>open\<close> >> K true) false -- Scan.repeat1 Parse.term
70002
0addec5ab4ad proper local_theory command;
wenzelm
parents: 70001
diff changeset
   733
      :|-- (fn args => (code_expr_checkingP args || code_expr_inP args)));
30494
c150e6fa4e0d consider exit status of code generation direcitve
haftmann
parents: 30242
diff changeset
   734
69698
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   735
end;
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   736
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   737
local
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   738
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   739
val parse_const_terms = Args.theory -- Scan.repeat1 Args.term
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   740
  >> uncurry (fn thy => map (Code.check_const thy));
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   741
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   742
fun parse_symbols keyword parse internalize mark_symbol =
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   743
  Scan.lift (keyword --| Args.colon) |-- Args.theory -- Scan.repeat1 parse
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   744
  >> uncurry (fn thy => map (mark_symbol o internalize thy));
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   745
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   746
val parse_consts = parse_symbols constantK Args.term
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   747
  Code.check_const Constant;
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   748
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   749
val parse_types = parse_symbols type_constructorK (Scan.lift Args.name)
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   750
  Sign.intern_type Type_Constructor;
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   751
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   752
val parse_classes = parse_symbols type_classK (Scan.lift Args.name)
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   753
  Sign.intern_class Type_Class;
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   754
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   755
val parse_instances = parse_symbols class_instanceK (Scan.lift (Args.name --| Args.$$$ "::" -- Args.name))
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   756
  (fn thy => fn (raw_tyco, raw_class) =>
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   757
    (Sign.intern_class thy raw_tyco, Sign.intern_type thy raw_class)) Class_Instance;
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   758
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   759
in
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   760
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   761
val _ = Theory.setup
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   762
  (Thy_Output.antiquotation_raw \<^binding>\<open>code_stmts\<close>
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   763
    (parse_const_terms --
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   764
      Scan.repeats (parse_consts || parse_types || parse_classes || parse_instances)
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   765
      -- Scan.lift (Args.parens (Args.name -- Scan.option Parse.int)))
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   766
    (fn ctxt => fn ((consts, symbols), (target_name, some_width)) =>
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   767
       present_code ctxt consts symbols
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   768
         target_name "Example" some_width []
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   769
       |> trim_line
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   770
       |> Thy_Output.verbatim (Config.put Document_Antiquotation.thy_output_display true ctxt)));
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   771
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   772
end;
1a249d1c884b more conventional parsing of code_stmts antiquotation
haftmann
parents: 69697
diff changeset
   773
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   774
end; (*struct*)