src/Pure/Isar/expression.ML
author wenzelm
Thu, 11 Oct 2012 15:06:27 +0200
changeset 49817 85b37aece3b3
parent 49749 f27c96e98672
child 49818 db42a1147986
permissions -rw-r--r--
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     1
(*  Title:      Pure/Isar/expression.ML
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     2
    Author:     Clemens Ballarin, TU Muenchen
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     3
32800
57fcca4e7c0e Improved comments and api names.
ballarin
parents: 32074
diff changeset
     4
Locale expressions and user interface layer of locales.
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     5
*)
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     6
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     7
signature EXPRESSION =
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     8
sig
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
     9
  (* Locale expressions *)
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    10
  datatype 'term map = Positional of 'term option list | Named of (string * 'term) list
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
    11
  type ('name, 'term) expr = ('name * ((string * bool) * 'term map)) list
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
    12
  type expression_i = (string, term) expr * (binding * typ option * mixfix) list
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
    13
  type expression = (xstring * Position.T, string) expr * (binding * string option * mixfix) list
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    14
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
    15
  (* Processing of context statements *)
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
    16
  val cert_statement: Element.context_i list -> (term * term list) list list ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    17
    Proof.context -> (term * term list) list list * Proof.context
28879
db2816a37a34 Read/cert_statement for theorem statements.
ballarin
parents: 28872
diff changeset
    18
  val read_statement: Element.context list -> (string * string list) list list ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    19
    Proof.context -> (term * term list) list list * Proof.context
28879
db2816a37a34 Read/cert_statement for theorem statements.
ballarin
parents: 28872
diff changeset
    20
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    21
  (* Declaring locales *)
29702
a7512f22e916 proper declared constants in class expressions
haftmann
parents: 29604
diff changeset
    22
  val cert_declaration: expression_i -> (Proof.context -> Proof.context) -> Element.context_i list ->
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
    23
    Proof.context -> (((string * typ) * mixfix) list * (string * morphism) list
47311
1addbe2a7458 close context elements via Expression.cert/read_declaration;
wenzelm
parents: 47287
diff changeset
    24
      * Element.context_i list * Proof.context) * ((string * typ) list * Proof.context)
29702
a7512f22e916 proper declared constants in class expressions
haftmann
parents: 29604
diff changeset
    25
  val cert_read_declaration: expression_i -> (Proof.context -> Proof.context) -> Element.context list ->
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
    26
    Proof.context -> (((string * typ) * mixfix) list * (string * morphism) list
47311
1addbe2a7458 close context elements via Expression.cert/read_declaration;
wenzelm
parents: 47287
diff changeset
    27
      * Element.context_i list * Proof.context) * ((string * typ) list * Proof.context)
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    28
      (*FIXME*)
29702
a7512f22e916 proper declared constants in class expressions
haftmann
parents: 29604
diff changeset
    29
  val read_declaration: expression -> (Proof.context -> Proof.context) -> Element.context list ->
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
    30
    Proof.context -> (((string * typ) * mixfix) list * (string * morphism) list
47311
1addbe2a7458 close context elements via Expression.cert/read_declaration;
wenzelm
parents: 47287
diff changeset
    31
      * Element.context_i list * Proof.context) * ((string * typ) list * Proof.context)
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
    32
  val add_locale: (local_theory -> local_theory) -> binding -> binding ->
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
    33
    expression_i -> Element.context_i list -> theory -> string * local_theory
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
    34
  val add_locale_cmd: (local_theory -> local_theory) -> binding -> binding ->
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
    35
    expression -> Element.context list -> theory -> string * local_theory
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
    36
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
    37
  (* Interpretation *)
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
    38
  val cert_goal_expression: expression_i -> Proof.context ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    39
    (term list list * (string * morphism) list * morphism) * Proof.context
29496
d35769eb9fc9 tuned interpretation code
haftmann
parents: 29441
diff changeset
    40
  val read_goal_expression: expression -> Proof.context ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    41
    (term list list * (string * morphism) list * morphism) * Proof.context
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
    42
  val sublocale: (local_theory -> local_theory) -> string -> expression_i ->
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
    43
    (Attrib.binding * term) list -> theory -> Proof.state
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
    44
  val sublocale_cmd: (local_theory -> local_theory) -> xstring * Position.T -> expression ->
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
    45
    (Attrib.binding * string) list -> theory -> Proof.state
47287
wenzelm
parents: 47249
diff changeset
    46
  val interpretation: expression_i -> (Attrib.binding * term) list -> theory -> Proof.state
wenzelm
parents: 47249
diff changeset
    47
  val interpretation_cmd: expression -> (Attrib.binding * string) list -> theory -> Proof.state
wenzelm
parents: 47249
diff changeset
    48
  val interpret: expression_i -> (Attrib.binding * term) list -> bool -> Proof.state -> Proof.state
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
    49
  val interpret_cmd: expression -> (Attrib.binding * string) list ->
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
    50
    bool -> Proof.state -> Proof.state
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
    51
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
    52
  (* Diagnostic *)
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
    53
  val print_dependencies: Proof.context -> bool -> expression -> unit
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    54
end;
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    55
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
    56
structure Expression : EXPRESSION =
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    57
struct
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    58
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    59
datatype ctxt = datatype Element.ctxt;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    60
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    61
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    62
(*** Expressions ***)
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    63
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
    64
datatype 'term map =
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
    65
  Positional of 'term option list |
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
    66
  Named of (string * 'term) list;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    67
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
    68
type ('name, 'term) expr = ('name * ((string * bool) * 'term map)) list;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    69
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
    70
type expression_i = (string, term) expr * (binding * typ option * mixfix) list;
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
    71
type expression = (xstring * Position.T, string) expr * (binding * string option * mixfix) list;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    72
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    73
28859
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
    74
(** Internalise locale names in expr **)
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    75
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
    76
fun check_expr thy instances = map (apfst (Locale.check thy)) instances;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    77
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    78
30778
wenzelm
parents: 30777
diff changeset
    79
(** Parameters of expression **)
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    80
30778
wenzelm
parents: 30777
diff changeset
    81
(*Sanity check of instantiations and extraction of implicit parameters.
wenzelm
parents: 30777
diff changeset
    82
  The latter only occurs iff strict = false.
wenzelm
parents: 30777
diff changeset
    83
  Positional instantiations are extended to match full length of parameter list
wenzelm
parents: 30777
diff changeset
    84
  of instantiated locale.*)
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
    85
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
    86
fun parameters_of thy strict (expr, fixed) =
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    87
  let
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    88
    fun reject_dups message xs =
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
    89
      (case duplicates (op =) xs of
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
    90
        [] => ()
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
    91
      | dups => error (message ^ commas dups));
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    92
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
    93
    fun parm_eq ((p1: string, mx1: mixfix), (p2, mx2)) = p1 = p2 andalso
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
    94
      (mx1 = mx2 orelse error ("Conflicting syntax for parameter " ^ quote p1 ^ " in expression"));
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30335
diff changeset
    95
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
    96
    fun params_loc loc = Locale.params_of thy loc |> map (apfst #1);
30778
wenzelm
parents: 30777
diff changeset
    97
    fun params_inst (loc, (prfx, Positional insts)) =
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    98
          let
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
    99
            val ps = params_loc loc;
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   100
            val d = length ps - length insts;
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   101
            val insts' =
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   102
              if d < 0 then error ("More arguments than parameters in instantiation of locale " ^
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   103
                quote (Locale.extern thy loc))
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   104
              else insts @ replicate d NONE;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   105
            val ps' = (ps ~~ insts') |>
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   106
              map_filter (fn (p, NONE) => SOME p | (_, SOME _) => NONE);
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   107
          in (ps', (loc, (prfx, Positional insts'))) end
30778
wenzelm
parents: 30777
diff changeset
   108
      | params_inst (loc, (prfx, Named insts)) =
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   109
          let
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   110
            val _ = reject_dups "Duplicate instantiation of the following parameter(s): "
28859
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
   111
              (map fst insts);
30778
wenzelm
parents: 30777
diff changeset
   112
            val ps' = (insts, params_loc loc) |-> fold (fn (p, _) => fn ps =>
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   113
              if AList.defined (op =) ps p then AList.delete (op =) p ps
30778
wenzelm
parents: 30777
diff changeset
   114
              else error (quote p ^ " not a parameter of instantiated expression"));
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   115
          in (ps', (loc, (prfx, Named insts))) end;
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   116
    fun params_expr is =
30778
wenzelm
parents: 30777
diff changeset
   117
      let
wenzelm
parents: 30777
diff changeset
   118
        val (is', ps') = fold_map (fn i => fn ps =>
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   119
          let
30778
wenzelm
parents: 30777
diff changeset
   120
            val (ps', i') = params_inst i;
wenzelm
parents: 30777
diff changeset
   121
            val ps'' = distinct parm_eq (ps @ ps');
wenzelm
parents: 30777
diff changeset
   122
          in (i', ps'') end) is []
wenzelm
parents: 30777
diff changeset
   123
      in (ps', is') end;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   124
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   125
    val (implicit, expr') = params_expr expr;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   126
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   127
    val implicit' = map #1 implicit;
42494
eef1a23c9077 tuned signature -- eliminated odd comment;
wenzelm
parents: 42482
diff changeset
   128
    val fixed' = map (Variable.check_name o #1) fixed;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   129
    val _ = reject_dups "Duplicate fixed parameter(s): " fixed';
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30335
diff changeset
   130
    val implicit'' =
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30335
diff changeset
   131
      if strict then []
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30335
diff changeset
   132
      else
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30335
diff changeset
   133
        let val _ = reject_dups
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   134
          "Parameter(s) declared simultaneously in expression and for clause: " (implicit' @ fixed')
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   135
        in map (fn (x, mx) => (Binding.name x, NONE, mx)) implicit end;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   136
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   137
  in (expr', implicit'' @ fixed) end;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   138
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   139
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   140
(** Read instantiation **)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   141
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   142
(* Parse positional or named instantiation *)
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   143
28859
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
   144
local
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
   145
29797
08ef36ed2f8a handling type classes without parameters
haftmann
parents: 29702
diff changeset
   146
fun prep_inst prep_term ctxt parms (Positional insts) =
49817
wenzelm
parents: 49749
diff changeset
   147
      (insts ~~ parms) |> map
wenzelm
parents: 49749
diff changeset
   148
        (fn (NONE, p) => Free (p, dummyT)
wenzelm
parents: 49749
diff changeset
   149
          | (SOME t, _) => prep_term ctxt t)
29797
08ef36ed2f8a handling type classes without parameters
haftmann
parents: 29702
diff changeset
   150
  | prep_inst prep_term ctxt parms (Named insts) =
49817
wenzelm
parents: 49749
diff changeset
   151
      parms |> map (fn p =>
wenzelm
parents: 49749
diff changeset
   152
        (case AList.lookup (op =) insts p of
wenzelm
parents: 49749
diff changeset
   153
          SOME t => prep_term ctxt t |
wenzelm
parents: 49749
diff changeset
   154
          NONE => Free (p, dummyT)));
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   155
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   156
in
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   157
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   158
fun parse_inst x = prep_inst Syntax.parse_term x;
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   159
fun make_inst x = prep_inst (K I) x;
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   160
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   161
end;
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   162
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   163
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   164
(* Instantiation morphism *)
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   165
30774
5daee9354a9c unified binding prefix terminology;
wenzelm
parents: 30764
diff changeset
   166
fun inst_morph (parm_names, parm_types) ((prfx, mandatory), insts') ctxt =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   167
  let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   168
    (* parameters *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   169
    val type_parm_names = fold Term.add_tfreesT parm_types [] |> map fst;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   170
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   171
    (* type inference and contexts *)
37145
01aa36932739 renamed structure TypeInfer to Type_Infer, keeping the old name as legacy alias for some time;
wenzelm
parents: 36674
diff changeset
   172
    val parm_types' = map (Type_Infer.paramify_vars o Logic.varifyT_global) parm_types;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   173
    val type_parms = fold Term.add_tvarsT parm_types' [] |> map (Logic.mk_type o TVar);
39288
f1ae2493d93f eliminated aliases of Type.constraint;
wenzelm
parents: 38757
diff changeset
   174
    val arg = type_parms @ map2 Type.constraint parm_types' insts';
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   175
    val res = Syntax.check_terms ctxt arg;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   176
    val ctxt' = ctxt |> fold Variable.auto_fixes res;
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30335
diff changeset
   177
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   178
    (* instantiation *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   179
    val (type_parms'', res') = chop (length type_parms) res;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   180
    val insts'' = (parm_names ~~ res') |> map_filter
30776
wenzelm
parents: 30774
diff changeset
   181
      (fn inst as (x, Free (y, _)) => if x = y then NONE else SOME inst
wenzelm
parents: 30774
diff changeset
   182
        | inst => SOME inst);
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   183
    val instT = Symtab.make (type_parm_names ~~ map Logic.dest_type type_parms'');
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   184
    val inst = Symtab.make insts'';
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   185
  in
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   186
    (Element.inst_morphism (Proof_Context.theory_of ctxt) (instT, inst) $>
30774
5daee9354a9c unified binding prefix terminology;
wenzelm
parents: 30764
diff changeset
   187
      Morphism.binding_morphism (Binding.prefix mandatory prfx), ctxt')
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   188
  end;
28859
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
   189
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   190
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   191
(*** Locale processing ***)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   192
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   193
(** Parsing **)
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   194
29604
0e1723e91ef8 eliminated obsolete var morphism;
wenzelm
parents: 29578
diff changeset
   195
fun parse_elem prep_typ prep_term ctxt =
0e1723e91ef8 eliminated obsolete var morphism;
wenzelm
parents: 29578
diff changeset
   196
  Element.map_ctxt
0e1723e91ef8 eliminated obsolete var morphism;
wenzelm
parents: 29578
diff changeset
   197
   {binding = I,
0e1723e91ef8 eliminated obsolete var morphism;
wenzelm
parents: 29578
diff changeset
   198
    typ = prep_typ ctxt,
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   199
    term = prep_term (Proof_Context.set_mode Proof_Context.mode_schematic ctxt),
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   200
    pattern = prep_term (Proof_Context.set_mode Proof_Context.mode_pattern ctxt),
29604
0e1723e91ef8 eliminated obsolete var morphism;
wenzelm
parents: 29578
diff changeset
   201
    fact = I,
0e1723e91ef8 eliminated obsolete var morphism;
wenzelm
parents: 29578
diff changeset
   202
    attrib = I};
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   203
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   204
fun parse_concl prep_term ctxt concl =
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   205
  (map o map) (fn (t, ps) =>
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   206
    (prep_term (Proof_Context.set_mode Proof_Context.mode_schematic ctxt) t,
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   207
      map (prep_term (Proof_Context.set_mode Proof_Context.mode_pattern ctxt)) ps)) concl;
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   208
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   209
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   210
(** Simultaneous type inference: instantiations + elements + conclusion **)
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   211
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   212
local
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   213
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   214
fun mk_type T = (Logic.mk_type T, []);
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   215
fun mk_term t = (t, []);
39288
f1ae2493d93f eliminated aliases of Type.constraint;
wenzelm
parents: 38757
diff changeset
   216
fun mk_propp (p, pats) = (Type.constraint propT p, pats);
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   217
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   218
fun dest_type (T, []) = Logic.dest_type T;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   219
fun dest_term (t, []) = t;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   220
fun dest_propp (p, pats) = (p, pats);
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   221
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   222
fun extract_inst (_, (_, ts)) = map mk_term ts;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   223
fun restore_inst ((l, (p, _)), cs) = (l, (p, map dest_term cs));
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   224
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   225
fun extract_elem (Fixes fixes) = map (#2 #> the_list #> map mk_type) fixes
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   226
  | extract_elem (Constrains csts) = map (#2 #> single #> map mk_type) csts
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   227
  | extract_elem (Assumes asms) = map (#2 #> map mk_propp) asms
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   228
  | extract_elem (Defines defs) = map (fn (_, (t, ps)) => [mk_propp (t, ps)]) defs
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   229
  | extract_elem (Notes _) = [];
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   230
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   231
fun restore_elem (Fixes fixes, css) =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   232
      (fixes ~~ css) |> map (fn ((x, _, mx), cs) =>
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   233
        (x, cs |> map dest_type |> try hd, mx)) |> Fixes
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   234
  | restore_elem (Constrains csts, css) =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   235
      (csts ~~ css) |> map (fn ((x, _), cs) =>
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   236
        (x, cs |> map dest_type |> hd)) |> Constrains
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   237
  | restore_elem (Assumes asms, css) =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   238
      (asms ~~ css) |> map (fn ((b, _), cs) => (b, map dest_propp cs)) |> Assumes
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   239
  | restore_elem (Defines defs, css) =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   240
      (defs ~~ css) |> map (fn ((b, _), [c]) => (b, dest_propp c)) |> Defines
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   241
  | restore_elem (Notes notes, _) = Notes notes;
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   242
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   243
fun check cs context =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   244
  let
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   245
    fun prep (_, pats) (ctxt, t :: ts) =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   246
      let val ctxt' = Variable.auto_fixes t ctxt
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   247
      in
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   248
        ((t, Syntax.check_props (Proof_Context.set_mode Proof_Context.mode_pattern ctxt') pats),
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   249
          (ctxt', ts))
30776
wenzelm
parents: 30774
diff changeset
   250
      end;
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   251
    val (cs', (context', _)) = fold_map prep cs
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   252
      (context, Syntax.check_terms
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   253
        (Proof_Context.set_mode Proof_Context.mode_schematic context) (map fst cs));
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   254
  in (cs', context') end;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   255
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   256
in
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   257
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   258
fun check_autofix insts elems concl ctxt =
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   259
  let
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   260
    val inst_cs = map extract_inst insts;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   261
    val elem_css = map extract_elem elems;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   262
    val concl_cs = (map o map) mk_propp concl;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   263
    (* Type inference *)
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   264
    val (inst_cs' :: css', ctxt') =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   265
      (fold_burrow o fold_burrow) check (inst_cs :: elem_css @ [concl_cs]) ctxt;
28936
f1647bf418f5 No resolution of patterns within context statements.
ballarin
parents: 28903
diff changeset
   266
    val (elem_css', [concl_cs']) = chop (length elem_css) css';
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   267
  in
30776
wenzelm
parents: 30774
diff changeset
   268
    (map restore_inst (insts ~~ inst_cs'),
wenzelm
parents: 30774
diff changeset
   269
      map restore_elem (elems ~~ elem_css'),
28936
f1647bf418f5 No resolution of patterns within context statements.
ballarin
parents: 28903
diff changeset
   270
      concl_cs', ctxt')
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   271
  end;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   272
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   273
end;
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   274
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   275
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   276
(** Prepare locale elements **)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   277
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   278
fun declare_elem prep_vars (Fixes fixes) ctxt =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   279
      let val (vars, _) = prep_vars fixes ctxt
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   280
      in ctxt |> Proof_Context.add_fixes vars |> snd end
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   281
  | declare_elem prep_vars (Constrains csts) ctxt =
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   282
      ctxt |> prep_vars (map (fn (x, T) => (Binding.name x, SOME T, NoSyn)) csts) |> snd
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   283
  | declare_elem _ (Assumes _) ctxt = ctxt
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   284
  | declare_elem _ (Defines _) ctxt = ctxt
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   285
  | declare_elem _ (Notes _) ctxt = ctxt;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   286
30776
wenzelm
parents: 30774
diff changeset
   287
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   288
(** Finish locale elements **)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   289
49817
wenzelm
parents: 49749
diff changeset
   290
fun finish_primitive parms _ (Fixes fixes) = Fixes (map (fn (binding, _, mx) =>
wenzelm
parents: 49749
diff changeset
   291
      let val x = Binding.name_of binding
wenzelm
parents: 49749
diff changeset
   292
      in (binding, AList.lookup (op =) parms x, mx) end) fixes)
wenzelm
parents: 49749
diff changeset
   293
  | finish_primitive _ _ (Constrains _) = Constrains []
wenzelm
parents: 49749
diff changeset
   294
  | finish_primitive _ close (Assumes asms) = close (Assumes asms)
wenzelm
parents: 49749
diff changeset
   295
  | finish_primitive _ close (Defines defs) = close (Defines defs)
wenzelm
parents: 49749
diff changeset
   296
  | finish_primitive _ _ (Notes facts) = Notes facts;
wenzelm
parents: 49749
diff changeset
   297
wenzelm
parents: 49749
diff changeset
   298
local
wenzelm
parents: 49749
diff changeset
   299
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   300
fun closeup _ _ false elem = elem
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   301
  | closeup ctxt parms true elem =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   302
      let
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   303
        (* FIXME consider closing in syntactic phase -- before type checking *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   304
        fun close_frees t =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   305
          let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   306
            val rev_frees =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   307
              Term.fold_aterms (fn Free (x, T) =>
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   308
                if AList.defined (op =) parms x then I else insert (op =) (x, T) | _ => I) t [];
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   309
          in fold (Logic.all o Free) rev_frees t end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   310
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   311
        fun no_binds [] = []
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   312
          | no_binds _ = error "Illegal term bindings in context element";
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   313
      in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   314
        (case elem of
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   315
          Assumes asms => Assumes (asms |> map (fn (a, propps) =>
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   316
            (a, map (fn (t, ps) => (close_frees t, no_binds ps)) propps)))
29022
54d3a31ca0f6 Default names for definitions.
ballarin
parents: 29021
diff changeset
   317
        | Defines defs => Defines (defs |> map (fn ((name, atts), (t, ps)) =>
35624
c4e29a0bb8c1 modernized structure Local_Defs;
wenzelm
parents: 35262
diff changeset
   318
            let val ((c, _), t') = Local_Defs.cert_def ctxt (close_frees t)
30434
9b94b1358b95 Thm.def_binding_optional;
wenzelm
parents: 30344
diff changeset
   319
            in ((Thm.def_binding_optional (Binding.name c) name, atts), (t', no_binds ps)) end))
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   320
        | e => e)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   321
      end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   322
49817
wenzelm
parents: 49749
diff changeset
   323
fun finish_elem ctxt parms do_close elem =
wenzelm
parents: 49749
diff changeset
   324
  finish_primitive parms (closeup ctxt parms do_close) elem;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   325
32785
ec5292653aff eliminated redundant parameters;
wenzelm
parents: 32512
diff changeset
   326
fun finish_inst ctxt (loc, (prfx, inst)) =
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   327
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   328
    val thy = Proof_Context.theory_of ctxt;
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   329
    val (parm_names, parm_types) = Locale.params_of thy loc |> map #1 |> split_list;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   330
    val (morph, _) = inst_morph (parm_names, parm_types) (prfx, inst) ctxt;
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   331
  in (loc, morph) end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   332
49817
wenzelm
parents: 49749
diff changeset
   333
in
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30335
diff changeset
   334
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   335
fun finish ctxt parms do_close insts elems =
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   336
  let
32785
ec5292653aff eliminated redundant parameters;
wenzelm
parents: 32512
diff changeset
   337
    val deps = map (finish_inst ctxt) insts;
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   338
    val elems' = map (finish_elem ctxt parms do_close) elems;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   339
  in (deps, elems') end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   340
49817
wenzelm
parents: 49749
diff changeset
   341
end;
wenzelm
parents: 49749
diff changeset
   342
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   343
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   344
(** Process full context statement: instantiations + elements + conclusion **)
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   345
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   346
(* Interleave incremental parsing and type inference over entire parsed stretch. *)
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   347
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   348
local
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   349
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
   350
fun prep_full_context_statement
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
   351
    parse_typ parse_prop prep_vars_elem prep_inst prep_vars_inst prep_expr
30786
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   352
    {strict, do_close, fixed_frees} raw_import init_body raw_elems raw_concl ctxt1 =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   353
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   354
    val thy = Proof_Context.theory_of ctxt1;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   355
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   356
    val (raw_insts, fixed) = parameters_of thy strict (apfst (prep_expr thy) raw_import);
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   357
30778
wenzelm
parents: 30777
diff changeset
   358
    fun prep_insts_cumulative (loc, (prfx, inst)) (i, insts, ctxt) =
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   359
      let
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   360
        val (parm_names, parm_types) = Locale.params_of thy loc |> map #1 |> split_list;
29797
08ef36ed2f8a handling type classes without parameters
haftmann
parents: 29702
diff changeset
   361
        val inst' = prep_inst ctxt parm_names inst;
45587
wenzelm
parents: 45290
diff changeset
   362
        val parm_types' = parm_types
wenzelm
parents: 45290
diff changeset
   363
          |> map (Type_Infer.paramify_vars o
wenzelm
parents: 45290
diff changeset
   364
              Term.map_type_tvar (fn ((x, _), S) => TVar ((x, i), S)) o Logic.varifyT_global);
39288
f1ae2493d93f eliminated aliases of Type.constraint;
wenzelm
parents: 38757
diff changeset
   365
        val inst'' = map2 Type.constraint parm_types' inst';
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   366
        val insts' = insts @ [(loc, (prfx, inst''))];
47315
89a4bbf9790d avoid duplicate PIDE markup;
wenzelm
parents: 47311
diff changeset
   367
        val (insts'', _, _, _) = check_autofix insts' [] [] ctxt;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   368
        val inst''' = insts'' |> List.last |> snd |> snd;
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   369
        val (morph, _) = inst_morph (parm_names, parm_types) (prfx, inst''') ctxt;
30764
3e3e7aa0cc7a simplified Locale.activate operations, using generic context;
wenzelm
parents: 30763
diff changeset
   370
        val ctxt'' = Locale.activate_declarations (loc, morph) ctxt;
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   371
      in (i + 1, insts', ctxt'') end;
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30335
diff changeset
   372
47315
89a4bbf9790d avoid duplicate PIDE markup;
wenzelm
parents: 47311
diff changeset
   373
    fun prep_elem insts raw_elem ctxt =
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   374
      let
47315
89a4bbf9790d avoid duplicate PIDE markup;
wenzelm
parents: 47311
diff changeset
   375
        val ctxt' = ctxt
89a4bbf9790d avoid duplicate PIDE markup;
wenzelm
parents: 47311
diff changeset
   376
          |> Context_Position.set_visible false
89a4bbf9790d avoid duplicate PIDE markup;
wenzelm
parents: 47311
diff changeset
   377
          |> declare_elem prep_vars_elem raw_elem
89a4bbf9790d avoid duplicate PIDE markup;
wenzelm
parents: 47311
diff changeset
   378
          |> Context_Position.restore_visible ctxt;
89a4bbf9790d avoid duplicate PIDE markup;
wenzelm
parents: 47311
diff changeset
   379
        val elems' = parse_elem parse_typ parse_prop ctxt' raw_elem;
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   380
      in (elems', ctxt') end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   381
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   382
    fun prep_concl raw_concl (insts, elems, ctxt) =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   383
      let
29215
f98862eb0591 Use correct mode when parsing elements and conclusion.
ballarin
parents: 29214
diff changeset
   384
        val concl = parse_concl parse_prop ctxt raw_concl;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   385
      in check_autofix insts elems concl ctxt end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   386
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   387
    val fors = prep_vars_inst fixed ctxt1 |> fst;
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   388
    val ctxt2 = ctxt1 |> Proof_Context.add_fixes fors |> snd;
30778
wenzelm
parents: 30777
diff changeset
   389
    val (_, insts', ctxt3) = fold prep_insts_cumulative raw_insts (0, [], ctxt2);
30786
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   390
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   391
    val _ =
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   392
      if fixed_frees then ()
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   393
      else
42482
42c7ef050bc3 more uniform Variable.add_frees/add_fixed etc.;
wenzelm
parents: 42440
diff changeset
   394
        (case fold (fold (Variable.add_frees ctxt3) o snd o snd) insts' [] of
30786
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   395
          [] => ()
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   396
        | frees => error ("Illegal free variables in expression: " ^
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   397
            commas_quote (map (Syntax.string_of_term ctxt3 o Free) (rev frees))));
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   398
29702
a7512f22e916 proper declared constants in class expressions
haftmann
parents: 29604
diff changeset
   399
    val ctxt4 = init_body ctxt3;
47315
89a4bbf9790d avoid duplicate PIDE markup;
wenzelm
parents: 47311
diff changeset
   400
    val (elems, ctxt5) = fold_map (prep_elem insts') raw_elems ctxt4;
30778
wenzelm
parents: 30777
diff changeset
   401
    val (insts, elems', concl, ctxt6) = prep_concl raw_concl (insts', elems, ctxt5);
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   402
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   403
    (* Retrieve parameter types *)
42494
eef1a23c9077 tuned signature -- eliminated odd comment;
wenzelm
parents: 42482
diff changeset
   404
    val xs = fold (fn Fixes fixes => (fn ps => ps @ map (Variable.check_name o #1) fixes)
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   405
      | _ => fn ps => ps) (Fixes fors :: elems') [];
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   406
    val (Ts, ctxt7) = fold_map Proof_Context.inferred_param xs ctxt6;
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   407
    val parms = xs ~~ Ts;  (* params from expression and elements *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   408
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   409
    val Fixes fors' = finish_primitive parms I (Fixes fors);
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   410
    val fixed = map (fn (b, SOME T, mx) => ((Binding.name_of b, T), mx)) fors';
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   411
    val (deps, elems'') = finish ctxt6 parms do_close insts elems';
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   412
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   413
  in ((fixed, deps, elems'', concl), (parms, ctxt7)) end
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   414
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   415
in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   416
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   417
fun cert_full_context_statement x =
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   418
  prep_full_context_statement (K I) (K I) Proof_Context.cert_vars
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   419
  make_inst Proof_Context.cert_vars (K I) x;
30776
wenzelm
parents: 30774
diff changeset
   420
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   421
fun cert_read_full_context_statement x =
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   422
  prep_full_context_statement Syntax.parse_typ Syntax.parse_prop Proof_Context.read_vars
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   423
  make_inst Proof_Context.cert_vars (K I) x;
30776
wenzelm
parents: 30774
diff changeset
   424
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   425
fun read_full_context_statement x =
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   426
  prep_full_context_statement Syntax.parse_typ Syntax.parse_prop Proof_Context.read_vars
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
   427
  parse_inst Proof_Context.read_vars check_expr x;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   428
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   429
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   430
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   431
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   432
(* Context statement: elements + conclusion *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   433
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   434
local
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   435
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   436
fun prep_statement prep activate raw_elems raw_concl context =
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   437
  let
49817
wenzelm
parents: 49749
diff changeset
   438
    val ((_, _, elems, concl), _) =
wenzelm
parents: 49749
diff changeset
   439
      prep {strict = true, do_close = false, fixed_frees = true}
30786
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   440
        ([], []) I raw_elems raw_concl context;
49817
wenzelm
parents: 49749
diff changeset
   441
    val (_, context') = context
wenzelm
parents: 49749
diff changeset
   442
      |> Proof_Context.set_stmt true
wenzelm
parents: 49749
diff changeset
   443
      |> fold_map activate elems;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   444
  in (concl, context') end;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   445
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   446
in
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   447
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   448
fun cert_statement x = prep_statement cert_full_context_statement Element.activate_i x;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   449
fun read_statement x = prep_statement read_full_context_statement Element.activate x;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   450
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   451
end;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   452
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   453
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   454
(* Locale declaration: import + elements *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   455
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   456
fun fix_params params =
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   457
  Proof_Context.add_fixes (map (fn ((x, T), mx) => (Binding.name x, SOME T, mx)) params) #> snd;
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   458
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   459
local
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   460
29702
a7512f22e916 proper declared constants in class expressions
haftmann
parents: 29604
diff changeset
   461
fun prep_declaration prep activate raw_import init_body raw_elems context =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   462
  let
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   463
    val ((fixed, deps, elems, _), (parms, ctxt')) =
30786
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   464
      prep {strict = false, do_close = true, fixed_frees = false}
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   465
        raw_import init_body raw_elems [] context;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   466
    (* Declare parameters and imported facts *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   467
    val context' = context |>
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   468
      fix_params fixed |>
38316
88e774d09fbc Revert performance improvement of 8ed3a5fb4d25 since it breaks notes element declarations.
ballarin
parents: 38211
diff changeset
   469
      fold (Context.proof_map o Locale.activate_facts NONE) deps;
47311
1addbe2a7458 close context elements via Expression.cert/read_declaration;
wenzelm
parents: 47287
diff changeset
   470
    val (elems', context'') = context' |>
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   471
      Proof_Context.set_stmt true |>
30777
9960ff945c52 simplified Element.activate(_i): singleton version;
wenzelm
parents: 30776
diff changeset
   472
      fold_map activate elems;
47311
1addbe2a7458 close context elements via Expression.cert/read_declaration;
wenzelm
parents: 47287
diff changeset
   473
  in ((fixed, deps, elems', context''), (parms, ctxt')) end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   474
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   475
in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   476
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   477
fun cert_declaration x = prep_declaration cert_full_context_statement Element.activate_i x;
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   478
fun cert_read_declaration x = prep_declaration cert_read_full_context_statement Element.activate x;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   479
fun read_declaration x = prep_declaration read_full_context_statement Element.activate x;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   480
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   481
end;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   482
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   483
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   484
(* Locale expression to set up a goal *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   485
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   486
local
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   487
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   488
fun props_of thy (name, morph) =
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   489
  let
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   490
    val (asm, defs) = Locale.specification_of thy name;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   491
  in
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   492
    (case asm of NONE => defs | SOME asm => asm :: defs) |> map (Morphism.term morph)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   493
  end;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   494
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   495
fun prep_goal_expression prep expression context =
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   496
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   497
    val thy = Proof_Context.theory_of context;
28879
db2816a37a34 Read/cert_statement for theorem statements.
ballarin
parents: 28872
diff changeset
   498
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   499
    val ((fixed, deps, _, _), _) =
30786
461f7b5f16a2 prep_full_context_statement: explicit record of flags;
wenzelm
parents: 30784
diff changeset
   500
      prep {strict = true, do_close = true, fixed_frees = true} expression I [] [] context;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   501
    (* proof obligations *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   502
    val propss = map (props_of thy) deps;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   503
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   504
    val goal_ctxt = context |>
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   505
      fix_params fixed |>
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   506
      (fold o fold) Variable.auto_fixes propss;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   507
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   508
    val export = Variable.export_morphism goal_ctxt context;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   509
    val exp_fact = Drule.zero_var_indexes_list o map Thm.strip_shyps o Morphism.fact export;
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 30786
diff changeset
   510
    val exp_term = Term_Subst.zero_var_indexes o Morphism.term export;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   511
    val exp_typ = Logic.type_map exp_term;
45289
25e9e7f527b4 slightly more explicit/syntactic modelling of morphisms;
wenzelm
parents: 43543
diff changeset
   512
    val export' =
25e9e7f527b4 slightly more explicit/syntactic modelling of morphisms;
wenzelm
parents: 43543
diff changeset
   513
      Morphism.morphism {binding = [], typ = [exp_typ], term = [exp_term], fact = [exp_fact]};
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   514
  in ((propss, deps, export'), goal_ctxt) end;
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30335
diff changeset
   515
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   516
in
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   517
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   518
fun cert_goal_expression x = prep_goal_expression cert_full_context_statement x;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   519
fun read_goal_expression x = prep_goal_expression read_full_context_statement x;
28879
db2816a37a34 Read/cert_statement for theorem statements.
ballarin
parents: 28872
diff changeset
   520
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   521
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   522
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   523
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   524
(*** Locale declarations ***)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   525
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   526
(* extract specification text *)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   527
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   528
val norm_term = Envir.beta_norm oo Term.subst_atomic;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   529
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   530
fun bind_def ctxt eq (xs, env, eqs) =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   531
  let
35624
c4e29a0bb8c1 modernized structure Local_Defs;
wenzelm
parents: 35262
diff changeset
   532
    val _ = Local_Defs.cert_def ctxt eq;
c4e29a0bb8c1 modernized structure Local_Defs;
wenzelm
parents: 35262
diff changeset
   533
    val ((y, T), b) = Local_Defs.abs_def eq;
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   534
    val b' = norm_term env b;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   535
    fun err msg = error (msg ^ ": " ^ quote y);
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   536
  in
49749
wenzelm
parents: 47315
diff changeset
   537
    (case filter (fn (Free (y', _), _) => y = y' | _ => false) env of
wenzelm
parents: 47315
diff changeset
   538
      [] => (Term.add_frees b' xs, (Free (y, T), b') :: env, eq :: eqs)
wenzelm
parents: 47315
diff changeset
   539
    | dups =>
wenzelm
parents: 47315
diff changeset
   540
        if forall (fn (_, b'') => b' aconv b'') dups then (xs, env, eqs)
wenzelm
parents: 47315
diff changeset
   541
        else err "Attempt to redefine variable")
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   542
  end;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   543
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   544
(* text has the following structure:
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   545
       (((exts, exts'), (ints, ints')), (xs, env, defs))
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   546
   where
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   547
     exts: external assumptions (terms in assumes elements)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   548
     exts': dito, normalised wrt. env
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   549
     ints: internal assumptions (terms in assumptions from insts)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   550
     ints': dito, normalised wrt. env
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   551
     xs: the free variables in exts' and ints' and rhss of definitions,
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   552
       this includes parameters except defined parameters
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   553
     env: list of term pairs encoding substitutions, where the first term
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   554
       is a free variable; substitutions represent defines elements and
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   555
       the rhs is normalised wrt. the previous env
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   556
     defs: the equations from the defines elements
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   557
   *)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   558
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   559
fun eval_text _ _ (Fixes _) text = text
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   560
  | eval_text _ _ (Constrains _) text = text
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   561
  | eval_text _ is_ext (Assumes asms)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   562
        (((exts, exts'), (ints, ints')), (xs, env, defs)) =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   563
      let
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   564
        val ts = maps (map #1 o #2) asms;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   565
        val ts' = map (norm_term env) ts;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   566
        val spec' =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   567
          if is_ext then ((exts @ ts, exts' @ ts'), (ints, ints'))
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   568
          else ((exts, exts'), (ints @ ts, ints' @ ts'));
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   569
      in (spec', (fold Term.add_frees ts' xs, env, defs)) end
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   570
  | eval_text ctxt _ (Defines defs) (spec, binds) =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   571
      (spec, fold (bind_def ctxt o #1 o #2) defs binds)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   572
  | eval_text _ _ (Notes _) text = text;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   573
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   574
fun eval_inst ctxt (loc, morph) text =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   575
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   576
    val thy = Proof_Context.theory_of ctxt;
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   577
    val (asm, defs) = Locale.specification_of thy loc;
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   578
    val asm' = Option.map (Morphism.term morph) asm;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   579
    val defs' = map (Morphism.term morph) defs;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   580
    val text' = text |>
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   581
      (if is_some asm
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   582
        then eval_text ctxt false (Assumes [(Attrib.empty_binding, [(the asm', [])])])
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   583
        else I) |>
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   584
      (if not (null defs)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   585
        then eval_text ctxt false (Defines (map (fn def => (Attrib.empty_binding, (def, []))) defs'))
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   586
        else I)
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   587
(* FIXME clone from locale.ML *)
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   588
  in text' end;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   589
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   590
fun eval_elem ctxt elem text =
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   591
  eval_text ctxt true elem text;
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   592
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   593
fun eval ctxt deps elems =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   594
  let
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   595
    val text' = fold (eval_inst ctxt) deps ((([], []), ([], [])), ([], [], []));
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   596
    val ((spec, (_, _, defs))) = fold (eval_elem ctxt) elems text';
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   597
  in (spec, defs) end;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   598
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   599
(* axiomsN: name of theorem set with destruct rules for locale predicates,
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   600
     also name suffix of delta predicates and assumptions. *)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   601
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   602
val axiomsN = "axioms";
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   603
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   604
local
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   605
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   606
(* introN: name of theorems for introduction rules of locale and
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   607
     delta predicates *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   608
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   609
val introN = "intro";
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   610
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   611
fun atomize_spec thy ts =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   612
  let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   613
    val t = Logic.mk_conjunction_balanced ts;
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35624
diff changeset
   614
    val body = Object_Logic.atomize_term thy t;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   615
    val bodyT = Term.fastype_of body;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   616
  in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   617
    if bodyT = propT then (t, propT, Thm.reflexive (Thm.cterm_of thy t))
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35624
diff changeset
   618
    else (body, bodyT, Object_Logic.atomize (Thm.cterm_of thy t))
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   619
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   620
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   621
(* achieve plain syntax for locale predicates (without "PROP") *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   622
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 41585
diff changeset
   623
fun aprop_tr' n c = (Lexicon.mark_const c, fn ctxt => fn args =>
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   624
  if length args = n then
35143
7b2538c987e7 comment;
wenzelm
parents: 35021
diff changeset
   625
    Syntax.const "_aprop" $   (* FIXME avoid old-style early externing (!??) *)
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   626
      Term.list_comb (Syntax.free (Proof_Context.extern_const ctxt c), args)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   627
  else raise Match);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   628
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   629
(* define one predicate including its intro rule and axioms
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   630
   - binding: predicate name
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   631
   - parms: locale parameters
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   632
   - defs: thms representing substitutions from defines elements
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   633
   - ts: terms representing locale assumptions (not normalised wrt. defs)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   634
   - norm_ts: terms representing locale assumptions (normalised wrt. defs)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   635
   - thy: the theory
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   636
*)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   637
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   638
fun def_pred binding parms defs ts norm_ts thy =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   639
  let
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   640
    val name = Sign.full_name thy binding;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   641
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   642
    val (body, bodyT, body_eq) = atomize_spec thy norm_ts;
29272
fb3ccf499df5 use regular Term.add_XXX etc.;
wenzelm
parents: 29254
diff changeset
   643
    val env = Term.add_free_names body [];
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   644
    val xs = filter (member (op =) env o #1) parms;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   645
    val Ts = map #2 xs;
29272
fb3ccf499df5 use regular Term.add_XXX etc.;
wenzelm
parents: 29254
diff changeset
   646
    val extraTs =
33040
cffdb7b28498 removed old-style \ and \\ infixes
haftmann
parents: 32847
diff changeset
   647
      (subtract (op =) (fold Term.add_tfreesT Ts []) (Term.add_tfrees body []))
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   648
      |> Library.sort_wrt #1 |> map TFree;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   649
    val predT = map Term.itselfT extraTs ---> Ts ---> bodyT;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   650
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   651
    val args = map Logic.mk_type extraTs @ map Free xs;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   652
    val head = Term.list_comb (Const (name, predT), args);
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35624
diff changeset
   653
    val statement = Object_Logic.ensure_propT thy head;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   654
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   655
    val ([pred_def], defs_thy) =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   656
      thy
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   657
      |> bodyT = propT ? Sign.add_advanced_trfuns ([], [], [aprop_tr' (length args) name], [])
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   658
      |> Sign.declare_const_global ((Binding.conceal binding, predT), NoSyn) |> snd
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39288
diff changeset
   659
      |> Global_Theory.add_defs false
35238
18ae6ef02fe0 Thm.def_binding;
wenzelm
parents: 35204
diff changeset
   660
        [((Binding.conceal (Thm.def_binding binding), Logic.mk_equals (head, body)), [])];
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   661
    val defs_ctxt = Proof_Context.init_global defs_thy |> Variable.declare_term head;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   662
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   663
    val cert = Thm.cterm_of defs_thy;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   664
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   665
    val intro = Goal.prove_global defs_thy [] norm_ts statement (fn _ =>
41228
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 39557
diff changeset
   666
      rewrite_goals_tac [pred_def] THEN
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   667
      Tactic.compose_tac (false, body_eq RS Drule.equal_elim_rule1, 1) 1 THEN
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   668
      Tactic.compose_tac (false,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   669
        Conjunction.intr_balanced (map (Thm.assume o cert) norm_ts), 0) 1);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   670
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   671
    val conjuncts =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   672
      (Drule.equal_elim_rule2 OF [body_eq,
41228
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 39557
diff changeset
   673
        Raw_Simplifier.rewrite_rule [pred_def] (Thm.assume (cert statement))])
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   674
      |> Conjunction.elim_balanced (length ts);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   675
    val axioms = ts ~~ conjuncts |> map (fn (t, ax) =>
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   676
      Element.prove_witness defs_ctxt t
41228
e1fce873b814 renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents: 39557
diff changeset
   677
       (rewrite_goals_tac defs THEN
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   678
        Tactic.compose_tac (false, ax, 0) 1));
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   679
  in ((statement, intro, axioms), defs_thy) end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   680
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   681
in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   682
30344
10a67c5ddddb more uniform handling of binding in targets and derived elements;
wenzelm
parents: 30335
diff changeset
   683
(* main predicate definition function *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   684
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   685
fun define_preds binding parms (((exts, exts'), (ints, ints')), defs) thy =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   686
  let
30762
cabf9ff3a129 define_prefs: removed redundant Drule.gen_all, which is already part of the norm_hhf stage of Assumption.assume;
wenzelm
parents: 30755
diff changeset
   687
    val defs' = map (cterm_of thy #> Assumption.assume #> Drule.abs_def) defs;
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29030
diff changeset
   688
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   689
    val (a_pred, a_intro, a_axioms, thy'') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   690
      if null exts then (NONE, NONE, [], thy)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   691
      else
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   692
        let
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   693
          val abinding = if null ints then binding else Binding.suffix_name ("_" ^ axiomsN) binding;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   694
          val ((statement, intro, axioms), thy') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   695
            thy
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   696
            |> def_pred abinding parms defs' exts exts';
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   697
          val (_, thy'') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   698
            thy'
35204
214ec053128e locale: more precise treatment of naming vs. binding;
wenzelm
parents: 35143
diff changeset
   699
            |> Sign.qualified_path true abinding
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39288
diff changeset
   700
            |> Global_Theory.note_thmss ""
33278
ba9f52f56356 conceal internal bindings;
wenzelm
parents: 33173
diff changeset
   701
              [((Binding.conceal (Binding.name introN), []), [([intro], [Locale.unfold_add])])]
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   702
            ||> Sign.restore_naming thy';
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   703
          in (SOME statement, SOME intro, axioms, thy'') end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   704
    val (b_pred, b_intro, b_axioms, thy'''') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   705
      if null ints then (NONE, NONE, [], thy'')
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   706
      else
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   707
        let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   708
          val ((statement, intro, axioms), thy''') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   709
            thy''
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   710
            |> def_pred binding parms defs' (ints @ the_list a_pred) (ints' @ the_list a_pred);
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   711
          val (_, thy'''') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   712
            thy'''
35204
214ec053128e locale: more precise treatment of naming vs. binding;
wenzelm
parents: 35143
diff changeset
   713
            |> Sign.qualified_path true binding
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39288
diff changeset
   714
            |> Global_Theory.note_thmss ""
33278
ba9f52f56356 conceal internal bindings;
wenzelm
parents: 33173
diff changeset
   715
                 [((Binding.conceal (Binding.name introN), []), [([intro], [Locale.intro_add])]),
ba9f52f56356 conceal internal bindings;
wenzelm
parents: 33173
diff changeset
   716
                  ((Binding.conceal (Binding.name axiomsN), []),
35021
c839a4c670c6 renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents: 33671
diff changeset
   717
                    [(map (Drule.export_without_context o Element.conclude_witness) axioms, [])])]
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   718
            ||> Sign.restore_naming thy''';
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   719
        in (SOME statement, SOME intro, axioms, thy'''') end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   720
  in ((a_pred, a_intro, a_axioms), (b_pred, b_intro, b_axioms), thy'''') end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   721
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   722
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   723
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   724
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   725
local
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   726
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   727
fun assumes_to_notes (Assumes asms) axms =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   728
      fold_map (fn (a, spec) => fn axs =>
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   729
          let val (ps, qs) = chop (length spec) axs
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   730
          in ((a, [(ps, [])]), qs) end) asms axms
33644
5266a72e0889 eliminated slightly odd (unused) "axiom" and "assumption" -- collapsed to unspecific "";
wenzelm
parents: 33643
diff changeset
   731
      |> apfst (curry Notes "")
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   732
  | assumes_to_notes e axms = (e, axms);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   733
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29030
diff changeset
   734
fun defines_to_notes thy (Defines defs) =
42440
5e7a7343ab11 discontinuend obsolete Thm.definitionK, which was hardly ever well-defined;
wenzelm
parents: 42381
diff changeset
   735
      Notes ("", map (fn (a, (def, _)) =>
29245
19728ee2b1ba Intro_locales_tac knows about defines elements; more robust export morphism.
ballarin
parents: 29241
diff changeset
   736
        (a, [([Assumption.assume (cterm_of thy def)],
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   737
          [(Attrib.internal o K) Locale.witness_add])])) defs)
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29030
diff changeset
   738
  | defines_to_notes _ e = e;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   739
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   740
fun gen_add_locale prep_decl
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
   741
    before_exit binding raw_predicate_binding raw_import raw_body thy =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   742
  let
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   743
    val name = Sign.full_name thy binding;
29391
1f6e8c00dc3e tuned signature; changed locale predicate name convention
haftmann
parents: 29362
diff changeset
   744
    val _ = Locale.defined thy name andalso
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   745
      error ("Duplicate definition of locale " ^ quote name);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   746
47311
1addbe2a7458 close context elements via Expression.cert/read_declaration;
wenzelm
parents: 47287
diff changeset
   747
    val ((fixed, deps, body_elems, _), (parms, ctxt')) =
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   748
      prep_decl raw_import I raw_body (Proof_Context.init_global thy);
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   749
    val text as (((_, exts'), _), defs) = eval ctxt' deps body_elems;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   750
37313
715d25555ca6 tuned warning;
wenzelm
parents: 37145
diff changeset
   751
    val extraTs =
715d25555ca6 tuned warning;
wenzelm
parents: 37145
diff changeset
   752
      subtract (op =) (fold Term.add_tfreesT (map snd parms) []) (fold Term.add_tfrees exts' []);
715d25555ca6 tuned warning;
wenzelm
parents: 37145
diff changeset
   753
    val _ =
715d25555ca6 tuned warning;
wenzelm
parents: 37145
diff changeset
   754
      if null extraTs then ()
715d25555ca6 tuned warning;
wenzelm
parents: 37145
diff changeset
   755
      else warning ("Additional type variable(s) in locale specification " ^
42381
309ec68442c6 added Binding.print convenience, which includes quote already;
wenzelm
parents: 42375
diff changeset
   756
          Binding.print binding ^ ": " ^
37313
715d25555ca6 tuned warning;
wenzelm
parents: 37145
diff changeset
   757
          commas (map (Syntax.string_of_typ ctxt' o TFree) (sort_wrt #1 extraTs)));
715d25555ca6 tuned warning;
wenzelm
parents: 37145
diff changeset
   758
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   759
    val predicate_binding =
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   760
      if Binding.is_empty raw_predicate_binding then binding
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   761
      else raw_predicate_binding;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   762
    val ((a_statement, a_intro, a_axioms), (b_statement, b_intro, b_axioms), thy') =
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   763
      define_preds predicate_binding parms text thy;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   764
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   765
    val a_satisfy = Element.satisfy_morphism a_axioms;
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   766
    val b_satisfy = Element.satisfy_morphism b_axioms;
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   767
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   768
    val params = fixed @
30755
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   769
      maps (fn Fixes fixes =>
7ef503d216c2 simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
wenzelm
parents: 30725
diff changeset
   770
        map (fn (b, SOME T, mx) => ((Binding.name_of b, T), mx)) fixes | _ => []) body_elems;
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   771
    val asm = if is_some b_statement then b_statement else a_statement;
29028
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   772
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   773
    val notes =
33278
ba9f52f56356 conceal internal bindings;
wenzelm
parents: 33173
diff changeset
   774
      if is_some asm then
33643
b275f26a638b eliminated obsolete "internal" kind -- collapsed to unspecific "";
wenzelm
parents: 33553
diff changeset
   775
        [("", [((Binding.conceal (Binding.suffix_name ("_" ^ axiomsN) binding), []),
33278
ba9f52f56356 conceal internal bindings;
wenzelm
parents: 33173
diff changeset
   776
          [([Assumption.assume (cterm_of thy' (the asm))],
ba9f52f56356 conceal internal bindings;
wenzelm
parents: 33173
diff changeset
   777
            [(Attrib.internal o K) Locale.witness_add])])])]
30725
c23a5b3cd1b9 register_locale: produce stamps at the spot where elements are registered;
wenzelm
parents: 30585
diff changeset
   778
      else [];
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   779
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   780
    val notes' = body_elems |>
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   781
      map (defines_to_notes thy') |>
45290
f599ac41e7f5 tuned signature -- refined terminology;
wenzelm
parents: 45289
diff changeset
   782
      map (Element.transform_ctxt a_satisfy) |>
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   783
      (fn elems => fold_map assumes_to_notes elems (map Element.conclude_witness a_axioms)) |>
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   784
      fst |>
45290
f599ac41e7f5 tuned signature -- refined terminology;
wenzelm
parents: 45289
diff changeset
   785
      map (Element.transform_ctxt b_satisfy) |>
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   786
      map_filter (fn Notes notes => SOME notes | _ => NONE);
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   787
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   788
    val deps' = map (fn (l, morph) => (l, morph $> b_satisfy)) deps;
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   789
    val axioms = map Element.conclude_witness b_axioms;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   790
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   791
    val loc_ctxt = thy'
33360
f7d9c5e5d2f9 tuned variable names of bindings; conceal predicate constants
haftmann
parents: 33315
diff changeset
   792
      |> Locale.register_locale binding (extraTs, params)
35798
fd1bb29f8170 replaced type_syntax/term_syntax by uniform syntax_declaration;
wenzelm
parents: 35625
diff changeset
   793
          (asm, rev defs) (a_intro, b_intro) axioms [] (rev notes) (rev deps')
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
   794
      |> Named_Target.init before_exit name
33671
4b0f2599ed48 modernized structure Local_Theory;
wenzelm
parents: 33670
diff changeset
   795
      |> fold (fn (kind, facts) => Local_Theory.notes_kind kind facts #> snd) notes';
29028
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   796
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   797
  in (name, loc_ctxt) end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   798
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   799
in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   800
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   801
val add_locale = gen_add_locale cert_declaration;
28902
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28898
diff changeset
   802
val add_locale_cmd = gen_add_locale read_declaration;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   803
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   804
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   805
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   806
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   807
(*** Interpretation ***)
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   808
43543
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   809
fun read_with_extended_syntax parse_prop deps ctxt props =
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   810
  let
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   811
    val deps_ctxt = fold Locale.activate_declarations deps ctxt;
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   812
  in
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   813
    map (parse_prop deps_ctxt o snd) props |> Syntax.check_terms deps_ctxt
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   814
      |> Variable.export_terms deps_ctxt ctxt
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   815
  end;
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   816
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   817
fun meta_rewrite ctxt = map (Local_Defs.meta_rewrite_rule ctxt #> Drule.abs_def);
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   818
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   819
38108
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   820
(** Interpretation in theories and proof contexts **)
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   821
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   822
local
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   823
46858
wenzelm
parents: 46856
diff changeset
   824
fun note_eqns_register deps witss attrss eqns export export' =
47249
c0481c3c2a6c added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents: 47068
diff changeset
   825
  Attrib.generic_notes Thm.lemmaK
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   826
    (attrss ~~ map (fn eqn => [([Morphism.thm (export' $> export) eqn], [])]) eqns)
46858
wenzelm
parents: 46856
diff changeset
   827
  #-> (fn facts => `(fn context => meta_rewrite (Context.proof_of context) (maps snd facts)))
wenzelm
parents: 46856
diff changeset
   828
  #-> (fn eqns => fold (fn ((dep, morph), wits) =>
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   829
    fn context =>
46858
wenzelm
parents: 46856
diff changeset
   830
      Locale.add_registration
wenzelm
parents: 46856
diff changeset
   831
        (dep, morph $> Element.satisfy_morphism (map (Element.transform_witness export') wits))
wenzelm
parents: 46856
diff changeset
   832
        (Element.eq_morphism (Context.theory_of context) eqns |> Option.map (rpair true))
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   833
        export context) (deps ~~ witss));
38108
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   834
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   835
fun gen_interpretation prep_expr parse_prop prep_attr
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   836
    expression equations thy =
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   837
  let
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   838
    val ((propss, deps, export), expr_ctxt) = Proof_Context.init_global thy
29496
d35769eb9fc9 tuned interpretation code
haftmann
parents: 29441
diff changeset
   839
      |> prep_expr expression;
43543
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   840
    val eqns = read_with_extended_syntax parse_prop deps expr_ctxt equations;
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   841
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   842
    val attrss = map (apsnd (map (prep_attr thy)) o fst) equations;
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   843
    val goal_ctxt = fold Variable.auto_fixes eqns expr_ctxt;
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   844
    val export' = Variable.export_morphism goal_ctxt expr_ctxt;
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29208
diff changeset
   845
38757
2b3e054ae6fc renamed Local_Theory.theory(_result) to Local_Theory.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 38756
diff changeset
   846
    fun after_qed witss eqns =
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   847
      (Proof_Context.background_theory o Context.theory_map)
38757
2b3e054ae6fc renamed Local_Theory.theory(_result) to Local_Theory.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 38756
diff changeset
   848
        (note_eqns_register deps witss attrss eqns export export');
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   849
29578
8c4e961fcb08 refined witness algebra
haftmann
parents: 29559
diff changeset
   850
  in Element.witness_proof_eqs after_qed propss eqns goal_ctxt end;
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   851
38108
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   852
fun gen_interpret prep_expr parse_prop prep_attr
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   853
    expression equations int state =
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   854
  let
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   855
    val _ = Proof.assert_forward_or_chain state;
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   856
    val ctxt = Proof.context_of state;
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   857
    val thy = Proof_Context.theory_of ctxt;
38108
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   858
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   859
    val ((propss, deps, export), expr_ctxt) = prep_expr expression ctxt;
43543
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   860
    val eqns = read_with_extended_syntax parse_prop deps expr_ctxt equations;
38108
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   861
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   862
    val attrss = map (apsnd (map (prep_attr thy)) o fst) equations;
38108
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   863
    val goal_ctxt = fold Variable.auto_fixes eqns expr_ctxt;
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   864
    val export' = Variable.export_morphism goal_ctxt expr_ctxt;
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   865
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   866
    fun after_qed witss eqns =
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   867
      (Proof.map_context o Context.proof_map)
46899
58110c1e02bc refined 'interpret': reset facts ("this") and print_result, which merely consist of internal / protected statement;
wenzelm
parents: 46858
diff changeset
   868
        (note_eqns_register deps witss attrss eqns export export')
47068
2027ff3136cc tuned signature;
wenzelm
parents: 46922
diff changeset
   869
      #> Proof.reset_facts;
38108
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   870
  in
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   871
    state
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   872
    |> Element.witness_local_proof_eqs after_qed "interpret" propss eqns goal_ctxt int
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   873
  end;
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   874
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   875
in
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   876
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   877
fun interpretation x = gen_interpretation cert_goal_expression (K I) (K I) x;
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29208
diff changeset
   878
fun interpretation_cmd x = gen_interpretation read_goal_expression
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   879
  Syntax.parse_prop Attrib.intern_src x;
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   880
38108
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   881
fun interpret x = gen_interpret cert_goal_expression (K I) (K I) x;
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   882
fun interpret_cmd x = gen_interpret read_goal_expression
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   883
  Syntax.parse_prop Attrib.intern_src x;
b4115423c049 Interpretation in proofs supports mixins.
ballarin
parents: 38107
diff changeset
   884
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   885
end;
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   886
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   887
32074
76d6ba08a05f simplification of locale interfaces
haftmann
parents: 31989
diff changeset
   888
(** Interpretation between locales: declaring sublocale relationships **)
76d6ba08a05f simplification of locale interfaces
haftmann
parents: 31989
diff changeset
   889
76d6ba08a05f simplification of locale interfaces
haftmann
parents: 31989
diff changeset
   890
local
76d6ba08a05f simplification of locale interfaces
haftmann
parents: 31989
diff changeset
   891
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   892
fun note_eqns_dependency target deps witss attrss eqns export export' ctxt =
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   893
  let
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   894
    val facts =
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   895
      (attrss ~~ map (fn eqn => [([Morphism.thm (export' $> export) eqn], [])]) eqns);
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   896
    val eqns' = ctxt
47249
c0481c3c2a6c added Attrib.global_notes/local_notes/generic_notes convenience;
wenzelm
parents: 47068
diff changeset
   897
      |> Attrib.local_notes Thm.lemmaK facts
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   898
      |-> (fn facts => `(fn ctxt => meta_rewrite ctxt (maps snd facts)))
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   899
      |> fst;  (* FIXME duplication to add_thmss *)
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   900
  in
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   901
    ctxt
45589
bb944d58ac19 simplified Locale.add_thmss, after partial evaluation of attributes;
wenzelm
parents: 45588
diff changeset
   902
    |> Locale.add_thmss target Thm.lemmaK (Attrib.partial_evaluation ctxt facts)
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   903
    |> Proof_Context.background_theory (fold (fn ((dep, morph), wits) =>
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   904
      fn thy =>
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   905
        Locale.add_dependency target
46856
wenzelm
parents: 45589
diff changeset
   906
          (dep, morph $> Element.satisfy_morphism (map (Element.transform_witness export') wits))
45588
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   907
          (Element.eq_morphism thy eqns' |> Option.map (rpair true))
5eb47a1e4ca7 misc tuning;
wenzelm
parents: 45587
diff changeset
   908
          export thy) (deps ~~ witss))
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   909
  end;
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   910
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
   911
fun gen_sublocale prep_expr prep_loc parse_prop prep_attr
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
   912
    before_exit raw_target expression equations thy =
32074
76d6ba08a05f simplification of locale interfaces
haftmann
parents: 31989
diff changeset
   913
  let
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
   914
    val target = prep_loc thy raw_target;
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
   915
    val target_ctxt = Named_Target.init before_exit target thy;
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   916
    val ((propss, deps, export), expr_ctxt) = prep_expr expression target_ctxt;
43543
eb8b4851b039 While reading equations of an interpretation, already allow syntax provided by the interpretation base.
ballarin
parents: 42494
diff changeset
   917
    val eqns = read_with_extended_syntax parse_prop deps expr_ctxt equations;
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   918
45587
wenzelm
parents: 45290
diff changeset
   919
    val attrss = map (apsnd (map (prep_attr thy)) o fst) equations;
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   920
    val goal_ctxt = fold Variable.auto_fixes eqns expr_ctxt;
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   921
    val export' = Variable.export_morphism goal_ctxt expr_ctxt;
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   922
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   923
    fun after_qed witss eqns =
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   924
      note_eqns_dependency target deps witss attrss eqns export export';
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   925
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   926
  in Element.witness_proof_eqs after_qed propss eqns goal_ctxt end;
32074
76d6ba08a05f simplification of locale interfaces
haftmann
parents: 31989
diff changeset
   927
in
76d6ba08a05f simplification of locale interfaces
haftmann
parents: 31989
diff changeset
   928
41270
dea60d052923 Add mixins to sublocale command.
ballarin
parents: 41228
diff changeset
   929
fun sublocale x = gen_sublocale cert_goal_expression (K I) (K I) (K I) x;
41585
45d7da4e4ccf added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
wenzelm
parents: 41435
diff changeset
   930
fun sublocale_cmd x =
46922
3717f3878714 source positions for locale and class expressions;
wenzelm
parents: 46899
diff changeset
   931
  gen_sublocale read_goal_expression Locale.check Syntax.parse_prop Attrib.intern_src x;
32074
76d6ba08a05f simplification of locale interfaces
haftmann
parents: 31989
diff changeset
   932
76d6ba08a05f simplification of locale interfaces
haftmann
parents: 31989
diff changeset
   933
end;
76d6ba08a05f simplification of locale interfaces
haftmann
parents: 31989
diff changeset
   934
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   935
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   936
(** Print the instances that would be activated by an interpretation
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   937
  of the expression in the current context (clean = false) or in an
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   938
  empty context (clean = true). **)
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   939
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   940
fun print_dependencies ctxt clean expression =
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   941
  let
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   942
    val ((_, deps, export), expr_ctxt) = read_goal_expression expression ctxt;
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   943
  in
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   944
    Locale.print_dependencies expr_ctxt clean export deps
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   945
  end;
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41270
diff changeset
   946
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   947
end;
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   948