| author | wenzelm | 
| Thu, 04 Aug 2022 13:44:21 +0200 | |
| changeset 75753 | d0037f04bba0 | 
| parent 75747 | 8dc9d979bbac | 
| child 75763 | 8cf14d4ebec4 | 
| permissions | -rw-r--r-- | 
| 68171 | 1  | 
/* Title: Pure/Thy/export_theory.scala  | 
2  | 
Author: Makarius  | 
|
3  | 
||
4  | 
Export foundational theory content.  | 
|
5  | 
*/  | 
|
6  | 
||
7  | 
package isabelle  | 
|
8  | 
||
9  | 
||
| 
71015
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
10  | 
import scala.collection.immutable.SortedMap  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
11  | 
|
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
12  | 
|
| 75393 | 13  | 
object Export_Theory {
 | 
| 68206 | 14  | 
/** session content **/  | 
15  | 
||
| 75393 | 16  | 
  sealed case class Session(name: String, theory_graph: Graph[String, Option[Theory]]) {
 | 
| 68206 | 17  | 
override def toString: String = name  | 
18  | 
||
| 70789 | 19  | 
def theory(theory_name: String): Option[Theory] =  | 
| 68206 | 20  | 
if (theory_graph.defined(theory_name)) theory_graph.get_node(theory_name)  | 
| 70789 | 21  | 
else None  | 
| 68206 | 22  | 
|
23  | 
def theories: List[Theory] =  | 
|
| 71601 | 24  | 
theory_graph.topological_order.flatMap(theory)  | 
| 68206 | 25  | 
}  | 
26  | 
||
| 
70790
 
73514ccad7a6
clarified signature: read full session requirements;
 
wenzelm 
parents: 
70789 
diff
changeset
 | 
27  | 
def read_session(  | 
| 
 
73514ccad7a6
clarified signature: read full session requirements;
 
wenzelm 
parents: 
70789 
diff
changeset
 | 
28  | 
store: Sessions.Store,  | 
| 
 
73514ccad7a6
clarified signature: read full session requirements;
 
wenzelm 
parents: 
70789 
diff
changeset
 | 
29  | 
sessions_structure: Sessions.Structure,  | 
| 68209 | 30  | 
session_name: String,  | 
| 
71726
 
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
 
wenzelm 
parents: 
71601 
diff
changeset
 | 
31  | 
progress: Progress = new Progress,  | 
| 75393 | 32  | 
    cache: Term.Cache = Term.Cache.make()): Session = {
 | 
| 68206 | 33  | 
val thys =  | 
| 
70790
 
73514ccad7a6
clarified signature: read full session requirements;
 
wenzelm 
parents: 
70789 
diff
changeset
 | 
34  | 
sessions_structure.build_requirements(List(session_name)).flatMap(session =>  | 
| 75394 | 35  | 
        using(store.open_database(session)) { db =>
 | 
| 75746 | 36  | 
val provider = Export.Provider.database(db, store.cache, session)  | 
| 
75753
 
d0037f04bba0
clarified signature: Export.Provider knows its (accidental) theory_names;
 
wenzelm 
parents: 
75747 
diff
changeset
 | 
37  | 
for (theory <- provider.theory_names)  | 
| 
75739
 
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
 
wenzelm 
parents: 
75726 
diff
changeset
 | 
38  | 
          yield {
 | 
| 
 
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
 
wenzelm 
parents: 
75726 
diff
changeset
 | 
39  | 
            progress.echo("Reading theory " + theory)
 | 
| 
 
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
 
wenzelm 
parents: 
75726 
diff
changeset
 | 
40  | 
read_theory(provider, session, theory, cache = cache)  | 
| 
70790
 
73514ccad7a6
clarified signature: read full session requirements;
 
wenzelm 
parents: 
70789 
diff
changeset
 | 
41  | 
}  | 
| 75394 | 42  | 
})  | 
| 68206 | 43  | 
|
44  | 
val graph0 =  | 
|
| 73359 | 45  | 
      thys.foldLeft(Graph.string[Option[Theory]]) {
 | 
46  | 
case (g, thy) => g.default_node(thy.name, Some(thy))  | 
|
47  | 
}  | 
|
| 68206 | 48  | 
val graph1 =  | 
| 73359 | 49  | 
      thys.foldLeft(graph0) {
 | 
50  | 
case (g0, thy) =>  | 
|
51  | 
          thy.parents.foldLeft(g0) {
 | 
|
52  | 
case (g1, parent) => g1.default_node(parent, None).add_edge_acyclic(parent, thy.name)  | 
|
53  | 
}  | 
|
54  | 
}  | 
|
| 68206 | 55  | 
|
56  | 
Session(session_name, graph1)  | 
|
57  | 
}  | 
|
58  | 
||
59  | 
||
60  | 
||
| 68203 | 61  | 
/** theory content **/  | 
62  | 
||
| 68208 | 63  | 
sealed case class Theory(name: String, parents: List[String],  | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
64  | 
types: List[Entity[Type]],  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
65  | 
consts: List[Entity[Const]],  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
66  | 
axioms: List[Entity[Axiom]],  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
67  | 
thms: List[Entity[Thm]],  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
68  | 
classes: List[Entity[Class]],  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
69  | 
locales: List[Entity[Locale]],  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
70  | 
locale_dependencies: List[Entity[Locale_Dependency]],  | 
| 68295 | 71  | 
classrel: List[Classrel],  | 
| 68862 | 72  | 
arities: List[Arity],  | 
| 70920 | 73  | 
constdefs: List[Constdef],  | 
| 71202 | 74  | 
typedefs: List[Typedef],  | 
| 71248 | 75  | 
datatypes: List[Datatype],  | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
76  | 
spec_rules: List[Spec_Rule],  | 
| 75393 | 77  | 
others: Map[String, List[Entity[Other]]]  | 
78  | 
  ) {
 | 
|
| 68206 | 79  | 
override def toString: String = name  | 
| 68267 | 80  | 
|
| 75726 | 81  | 
def entity_iterator: Iterator[Entity0] =  | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
82  | 
types.iterator.map(_.no_content) ++  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
83  | 
consts.iterator.map(_.no_content) ++  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
84  | 
axioms.iterator.map(_.no_content) ++  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
85  | 
thms.iterator.map(_.no_content) ++  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
86  | 
classes.iterator.map(_.no_content) ++  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
87  | 
locales.iterator.map(_.no_content) ++  | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
88  | 
locale_dependencies.iterator.map(_.no_content) ++  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
89  | 
      (for { (_, xs) <- others; x <- xs.iterator } yield x.no_content)
 | 
| 68711 | 90  | 
|
| 68267 | 91  | 
def cache(cache: Term.Cache): Theory =  | 
92  | 
Theory(cache.string(name),  | 
|
| 73866 | 93  | 
parents.map(cache.string),  | 
| 68267 | 94  | 
types.map(_.cache(cache)),  | 
95  | 
consts.map(_.cache(cache)),  | 
|
96  | 
axioms.map(_.cache(cache)),  | 
|
| 
70579
 
5a8e3e4b3760
clarified export of axioms and theorems (identified derivations instead of projected facts);
 
wenzelm 
parents: 
70539 
diff
changeset
 | 
97  | 
thms.map(_.cache(cache)),  | 
| 68267 | 98  | 
classes.map(_.cache(cache)),  | 
| 68862 | 99  | 
locales.map(_.cache(cache)),  | 
| 
69069
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
100  | 
locale_dependencies.map(_.cache(cache)),  | 
| 68295 | 101  | 
classrel.map(_.cache(cache)),  | 
| 68862 | 102  | 
arities.map(_.cache(cache)),  | 
| 70920 | 103  | 
constdefs.map(_.cache(cache)),  | 
| 71202 | 104  | 
typedefs.map(_.cache(cache)),  | 
| 71248 | 105  | 
datatypes.map(_.cache(cache)),  | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
106  | 
spec_rules.map(_.cache(cache)),  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
107  | 
(for ((k, xs) <- others.iterator) yield cache.string(k) -> xs.map(_.cache(cache))).toMap)  | 
| 68206 | 108  | 
}  | 
109  | 
||
| 75393 | 110  | 
  def read_theory_parents(provider: Export.Provider, theory_name: String): Option[List[String]] = {
 | 
| 74688 | 111  | 
if (theory_name == Thy_Header.PURE) Some(Nil)  | 
112  | 
    else {
 | 
|
| 75746 | 113  | 
provider.focus(theory_name)(Export.THEORY_PREFIX + "parents")  | 
| 74688 | 114  | 
.map(entry => split_lines(entry.uncompressed.text))  | 
115  | 
}  | 
|
116  | 
}  | 
|
117  | 
||
| 
74694
 
2d9d92116fac
clarified Theory_Cache: prefer immutable data with Synchronized variable;
 
wenzelm 
parents: 
74688 
diff
changeset
 | 
118  | 
def no_theory: Theory =  | 
| 
 
2d9d92116fac
clarified Theory_Cache: prefer immutable data with Synchronized variable;
 
wenzelm 
parents: 
74688 
diff
changeset
 | 
119  | 
    Theory("", Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Map.empty)
 | 
| 
 
2d9d92116fac
clarified Theory_Cache: prefer immutable data with Synchronized variable;
 
wenzelm 
parents: 
74688 
diff
changeset
 | 
120  | 
|
| 75393 | 121  | 
def read_theory(  | 
122  | 
provider: Export.Provider,  | 
|
123  | 
session_name: String,  | 
|
124  | 
theory_name: String,  | 
|
| 75747 | 125  | 
permissive: Boolean = false,  | 
| 75393 | 126  | 
cache: Term.Cache = Term.Cache.none  | 
127  | 
  ): Theory = {
 | 
|
| 75746 | 128  | 
val theory_provider = provider.focus(theory_name)  | 
| 75747 | 129  | 
    read_theory_parents(theory_provider, theory_name) match {
 | 
130  | 
case None if permissive => no_theory  | 
|
131  | 
case None =>  | 
|
| 74688 | 132  | 
        error("Missing theory export in session " + quote(session_name) + ": " + quote(theory_name))
 | 
| 75747 | 133  | 
case Some(parents) =>  | 
134  | 
val theory =  | 
|
135  | 
Theory(theory_name, parents,  | 
|
136  | 
read_types(theory_provider),  | 
|
137  | 
read_consts(theory_provider),  | 
|
138  | 
read_axioms(theory_provider),  | 
|
139  | 
read_thms(theory_provider),  | 
|
140  | 
read_classes(theory_provider),  | 
|
141  | 
read_locales(theory_provider),  | 
|
142  | 
read_locale_dependencies(theory_provider),  | 
|
143  | 
read_classrel(theory_provider),  | 
|
144  | 
read_arities(theory_provider),  | 
|
145  | 
read_constdefs(theory_provider),  | 
|
146  | 
read_typedefs(theory_provider),  | 
|
147  | 
read_datatypes(theory_provider),  | 
|
148  | 
read_spec_rules(theory_provider),  | 
|
149  | 
read_others(theory_provider))  | 
|
150  | 
if (cache.no_cache) theory else theory.cache(cache)  | 
|
151  | 
}  | 
|
| 68203 | 152  | 
}  | 
153  | 
||
| 75393 | 154  | 
  def read_pure[A](store: Sessions.Store, read: (Export.Provider, String, String) => A): A = {
 | 
| 68710 | 155  | 
val session_name = Thy_Header.PURE  | 
156  | 
val theory_name = Thy_Header.PURE  | 
|
157  | 
||
| 75394 | 158  | 
    using(store.open_database(session_name)) { db =>
 | 
| 75746 | 159  | 
val provider = Export.Provider.database(db, store.cache, session_name)  | 
| 
75739
 
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
 
wenzelm 
parents: 
75726 
diff
changeset
 | 
160  | 
read(provider, session_name, theory_name)  | 
| 75394 | 161  | 
}  | 
| 68710 | 162  | 
}  | 
163  | 
||
| 73024 | 164  | 
def read_pure_theory(store: Sessions.Store, cache: Term.Cache = Term.Cache.none): Theory =  | 
| 70883 | 165  | 
read_pure(store, read_theory(_, _, _, cache = cache))  | 
166  | 
||
| 
70899
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
167  | 
def read_pure_proof(  | 
| 73024 | 168  | 
store: Sessions.Store, id: Thm_Id, cache: Term.Cache = Term.Cache.none): Option[Proof] =  | 
| 70884 | 169  | 
read_pure(store, (provider, _, _) => read_proof(provider, id, cache = cache))  | 
| 70883 | 170  | 
|
| 68203 | 171  | 
|
| 68171 | 172  | 
/* entities */  | 
173  | 
||
| 75393 | 174  | 
  object Kind {
 | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
175  | 
val TYPE = "type"  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
176  | 
val CONST = "const"  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
177  | 
val THM = "thm"  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
178  | 
val PROOF = "proof"  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
179  | 
val LOCALE_DEPENDENCY = "locale_dependency"  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
180  | 
val DOCUMENT_HEADING = "document_heading"  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
181  | 
val DOCUMENT_TEXT = "document_text"  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
182  | 
val PROOF_TEXT = "proof_text"  | 
| 68714 | 183  | 
}  | 
184  | 
||
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
185  | 
def export_kind(kind: String): String =  | 
| 
74681
 
84e5b4339db6
tuned -- eliminate clones stemming from d28a51dd9da6;
 
wenzelm 
parents: 
74657 
diff
changeset
 | 
186  | 
if (kind == Markup.TYPE_NAME) Kind.TYPE  | 
| 
 
84e5b4339db6
tuned -- eliminate clones stemming from d28a51dd9da6;
 
wenzelm 
parents: 
74657 
diff
changeset
 | 
187  | 
else if (kind == Markup.CONSTANT) Kind.CONST  | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
188  | 
else kind  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
189  | 
|
| 
74694
 
2d9d92116fac
clarified Theory_Cache: prefer immutable data with Synchronized variable;
 
wenzelm 
parents: 
74688 
diff
changeset
 | 
190  | 
def export_kind_name(kind: String, name: String): String =  | 
| 
 
2d9d92116fac
clarified Theory_Cache: prefer immutable data with Synchronized variable;
 
wenzelm 
parents: 
74688 
diff
changeset
 | 
191  | 
name + "|" + export_kind(kind)  | 
| 
 
2d9d92116fac
clarified Theory_Cache: prefer immutable data with Synchronized variable;
 
wenzelm 
parents: 
74688 
diff
changeset
 | 
192  | 
|
| 75393 | 193  | 
  abstract class Content[T] {
 | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
194  | 
def cache(cache: Term.Cache): T  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
195  | 
}  | 
| 75393 | 196  | 
  sealed case class No_Content() extends Content[No_Content] {
 | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
197  | 
def cache(cache: Term.Cache): No_Content = this  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
198  | 
}  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
199  | 
sealed case class Entity[A <: Content[A]](  | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
200  | 
kind: String,  | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
201  | 
name: String,  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
202  | 
xname: String,  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
203  | 
pos: Position.T,  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
204  | 
id: Option[Long],  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
205  | 
serial: Long,  | 
| 75393 | 206  | 
content: Option[A]  | 
207  | 
  ) {
 | 
|
| 
74694
 
2d9d92116fac
clarified Theory_Cache: prefer immutable data with Synchronized variable;
 
wenzelm 
parents: 
74688 
diff
changeset
 | 
208  | 
val kname: String = export_kind_name(kind, name)  | 
| 
 
2d9d92116fac
clarified Theory_Cache: prefer immutable data with Synchronized variable;
 
wenzelm 
parents: 
74688 
diff
changeset
 | 
209  | 
val range: Symbol.Range = Position.Range.unapply(pos).getOrElse(Text.Range.offside)  | 
| 
 
2d9d92116fac
clarified Theory_Cache: prefer immutable data with Synchronized variable;
 
wenzelm 
parents: 
74688 
diff
changeset
 | 
210  | 
|
| 
74681
 
84e5b4339db6
tuned -- eliminate clones stemming from d28a51dd9da6;
 
wenzelm 
parents: 
74657 
diff
changeset
 | 
211  | 
def export_kind: String = Export_Theory.export_kind(kind)  | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
212  | 
override def toString: String = export_kind + " " + quote(name)  | 
| 68267 | 213  | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
214  | 
def the_content: A =  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
215  | 
      if (content.isDefined) content.get else error("No content for " + toString)
 | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
216  | 
|
| 75726 | 217  | 
def no_content: Entity0 = copy(content = None)  | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
218  | 
|
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
219  | 
def cache(cache: Term.Cache): Entity[A] =  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
220  | 
Entity(  | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
221  | 
cache.string(kind),  | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
222  | 
cache.string(name),  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
223  | 
cache.string(xname),  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
224  | 
cache.position(pos),  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
225  | 
id,  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
226  | 
serial,  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
227  | 
content.map(_.cache(cache)))  | 
| 68171 | 228  | 
}  | 
| 75726 | 229  | 
type Entity0 = Entity[No_Content]  | 
| 68171 | 230  | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
231  | 
def read_entities[A <: Content[A]](  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
232  | 
provider: Export.Provider,  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
233  | 
export_name: String,  | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
234  | 
kind: String,  | 
| 75393 | 235  | 
decode: XML.Decode.T[A]  | 
236  | 
  ): List[Entity[A]] = {
 | 
|
237  | 
    def decode_entity(tree: XML.Tree): Entity[A] = {
 | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
238  | 
def err(): Nothing = throw new XML.XML_Body(List(tree))  | 
| 68171 | 239  | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
240  | 
      tree match {
 | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
241  | 
case XML.Elem(Markup(Markup.ENTITY, props), body) =>  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
242  | 
val name = Markup.Name.unapply(props) getOrElse err()  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
243  | 
val xname = Markup.XName.unapply(props) getOrElse err()  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
244  | 
val pos = props.filter(p => Markup.position_property(p) && p._1 != Markup.ID)  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
245  | 
val id = Position.Id.unapply(props)  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
246  | 
val serial = Markup.Serial.unapply(props) getOrElse err()  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
247  | 
val content = if (body.isEmpty) None else Some(decode(body))  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
248  | 
Entity(kind, name, xname, pos, id, serial, content)  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
249  | 
case _ => err()  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
250  | 
}  | 
| 68171 | 251  | 
}  | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
252  | 
provider.uncompressed_yxml(export_name).map(decode_entity)  | 
| 68171 | 253  | 
}  | 
254  | 
||
255  | 
||
| 
69077
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
256  | 
/* approximative syntax */  | 
| 69003 | 257  | 
|
| 75393 | 258  | 
  object Assoc extends Enumeration {
 | 
| 69003 | 259  | 
val NO_ASSOC, LEFT_ASSOC, RIGHT_ASSOC = Value  | 
260  | 
}  | 
|
261  | 
||
| 
69077
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
262  | 
sealed abstract class Syntax  | 
| 
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
263  | 
case object No_Syntax extends Syntax  | 
| 
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
264  | 
case class Prefix(delim: String) extends Syntax  | 
| 
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
265  | 
case class Infix(assoc: Assoc.Value, delim: String, pri: Int) extends Syntax  | 
| 69003 | 266  | 
|
| 
69077
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
267  | 
def decode_syntax: XML.Decode.T[Syntax] =  | 
| 
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
268  | 
XML.Decode.variant(List(  | 
| 75436 | 269  | 
      { case (Nil, Nil) => No_Syntax },
 | 
270  | 
      { case (List(delim), Nil) => Prefix(delim) },
 | 
|
| 
69077
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
271  | 
      { case (Nil, body) =>
 | 
| 
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
272  | 
import XML.Decode._  | 
| 
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
273  | 
val (ass, delim, pri) = triple(int, string, int)(body)  | 
| 75436 | 274  | 
Infix(Assoc(ass), delim, pri) }))  | 
| 69003 | 275  | 
|
276  | 
||
| 68171 | 277  | 
/* types */  | 
278  | 
||
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
279  | 
sealed case class Type(syntax: Syntax, args: List[String], abbrev: Option[Term.Typ])  | 
| 75393 | 280  | 
  extends Content[Type] {
 | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
281  | 
override def cache(cache: Term.Cache): Type =  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
282  | 
Type(  | 
| 69003 | 283  | 
syntax,  | 
| 73866 | 284  | 
args.map(cache.string),  | 
285  | 
abbrev.map(cache.typ))  | 
|
| 68267 | 286  | 
}  | 
| 68171 | 287  | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
288  | 
def read_types(provider: Export.Provider): List[Entity[Type]] =  | 
| 75393 | 289  | 
read_entities(provider, Export.THEORY_PREFIX + "types", Markup.TYPE_NAME,  | 
| 75394 | 290  | 
      { body =>
 | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
291  | 
import XML.Decode._  | 
| 69003 | 292  | 
val (syntax, args, abbrev) =  | 
| 
69077
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
293  | 
triple(decode_syntax, list(string), option(Term_XML.Decode.typ))(body)  | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
294  | 
Type(syntax, args, abbrev)  | 
| 68418 | 295  | 
})  | 
| 68171 | 296  | 
|
297  | 
||
298  | 
/* consts */  | 
|
299  | 
||
| 68173 | 300  | 
sealed case class Const(  | 
| 
69077
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
301  | 
syntax: Syntax,  | 
| 69003 | 302  | 
typargs: List[String],  | 
303  | 
typ: Term.Typ,  | 
|
| 69988 | 304  | 
abbrev: Option[Term.Term],  | 
| 75393 | 305  | 
propositional: Boolean  | 
306  | 
  ) extends Content[Const] {
 | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
307  | 
override def cache(cache: Term.Cache): Const =  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
308  | 
Const(  | 
| 69003 | 309  | 
syntax,  | 
| 73866 | 310  | 
typargs.map(cache.string),  | 
| 68267 | 311  | 
cache.typ(typ),  | 
| 73866 | 312  | 
abbrev.map(cache.term),  | 
| 
71222
 
2bc39c80a95d
clarified export of consts: recursion is accessible via spec_rules;
 
wenzelm 
parents: 
71211 
diff
changeset
 | 
313  | 
propositional)  | 
| 68267 | 314  | 
}  | 
| 68171 | 315  | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
316  | 
def read_consts(provider: Export.Provider): List[Entity[Const]] =  | 
| 75393 | 317  | 
read_entities(provider, Export.THEORY_PREFIX + "consts", Markup.CONSTANT,  | 
| 75394 | 318  | 
      { body =>
 | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
319  | 
import XML.Decode._  | 
| 
71222
 
2bc39c80a95d
clarified export of consts: recursion is accessible via spec_rules;
 
wenzelm 
parents: 
71211 
diff
changeset
 | 
320  | 
val (syntax, (typargs, (typ, (abbrev, propositional)))) =  | 
| 
69992
 
bd3c10813cc4
more informative Spec_Rules.Equational, notably primrec argument types;
 
wenzelm 
parents: 
69988 
diff
changeset
 | 
321  | 
pair(decode_syntax,  | 
| 
 
bd3c10813cc4
more informative Spec_Rules.Equational, notably primrec argument types;
 
wenzelm 
parents: 
69988 
diff
changeset
 | 
322  | 
pair(list(string),  | 
| 
 
bd3c10813cc4
more informative Spec_Rules.Equational, notably primrec argument types;
 
wenzelm 
parents: 
69988 
diff
changeset
 | 
323  | 
pair(Term_XML.Decode.typ,  | 
| 
71222
 
2bc39c80a95d
clarified export of consts: recursion is accessible via spec_rules;
 
wenzelm 
parents: 
71211 
diff
changeset
 | 
324  | 
pair(option(Term_XML.Decode.term), bool))))(body)  | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
325  | 
Const(syntax, typargs, typ, abbrev, propositional)  | 
| 68418 | 326  | 
})  | 
| 68208 | 327  | 
|
328  | 
||
| 
70579
 
5a8e3e4b3760
clarified export of axioms and theorems (identified derivations instead of projected facts);
 
wenzelm 
parents: 
70539 
diff
changeset
 | 
329  | 
/* axioms */  | 
| 68232 | 330  | 
|
| 68726 | 331  | 
sealed case class Prop(  | 
332  | 
typargs: List[(String, Term.Sort)],  | 
|
333  | 
args: List[(String, Term.Typ)],  | 
|
| 75393 | 334  | 
term: Term.Term  | 
335  | 
  ) extends Content[Prop] {
 | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
336  | 
override def cache(cache: Term.Cache): Prop =  | 
| 68726 | 337  | 
Prop(  | 
338  | 
        typargs.map({ case (name, sort) => (cache.string(name), cache.sort(sort)) }),
 | 
|
339  | 
        args.map({ case (name, typ) => (cache.string(name), cache.typ(typ)) }),
 | 
|
340  | 
cache.term(term))  | 
|
| 68232 | 341  | 
}  | 
| 68208 | 342  | 
|
| 75393 | 343  | 
  def decode_prop(body: XML.Body): Prop = {
 | 
344  | 
    val (typargs, args, t) = {
 | 
|
| 68726 | 345  | 
import XML.Decode._  | 
346  | 
import Term_XML.Decode._  | 
|
347  | 
triple(list(pair(string, sort)), list(pair(string, typ)), term)(body)  | 
|
348  | 
}  | 
|
349  | 
Prop(typargs, args, t)  | 
|
| 68267 | 350  | 
}  | 
| 68208 | 351  | 
|
| 75393 | 352  | 
  sealed case class Axiom(prop: Prop) extends Content[Axiom] {
 | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
353  | 
override def cache(cache: Term.Cache): Axiom = Axiom(prop.cache(cache))  | 
| 
70534
 
fb876ebbf5a7
export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
 
wenzelm 
parents: 
70384 
diff
changeset
 | 
354  | 
}  | 
| 
 
fb876ebbf5a7
export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
 
wenzelm 
parents: 
70384 
diff
changeset
 | 
355  | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
356  | 
def read_axioms(provider: Export.Provider): List[Entity[Axiom]] =  | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
357  | 
read_entities(provider, Export.THEORY_PREFIX + "axioms", Markup.AXIOM,  | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
358  | 
body => Axiom(decode_prop(body)))  | 
| 68232 | 359  | 
|
| 
70579
 
5a8e3e4b3760
clarified export of axioms and theorems (identified derivations instead of projected facts);
 
wenzelm 
parents: 
70539 
diff
changeset
 | 
360  | 
|
| 
 
5a8e3e4b3760
clarified export of axioms and theorems (identified derivations instead of projected facts);
 
wenzelm 
parents: 
70539 
diff
changeset
 | 
361  | 
/* theorems */  | 
| 
 
5a8e3e4b3760
clarified export of axioms and theorems (identified derivations instead of projected facts);
 
wenzelm 
parents: 
70539 
diff
changeset
 | 
362  | 
|
| 75393 | 363  | 
  sealed case class Thm_Id(serial: Long, theory_name: String) {
 | 
| 70884 | 364  | 
def pure: Boolean = theory_name == Thy_Header.PURE  | 
365  | 
}  | 
|
366  | 
||
367  | 
sealed case class Thm(  | 
|
368  | 
prop: Prop,  | 
|
369  | 
deps: List[String],  | 
|
| 75393 | 370  | 
proof: Term.Proof)  | 
371  | 
  extends Content[Thm] {
 | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
372  | 
override def cache(cache: Term.Cache): Thm =  | 
| 70884 | 373  | 
Thm(  | 
374  | 
prop.cache(cache),  | 
|
| 73866 | 375  | 
deps.map(cache.string),  | 
| 70896 | 376  | 
cache.proof(proof))  | 
| 
70579
 
5a8e3e4b3760
clarified export of axioms and theorems (identified derivations instead of projected facts);
 
wenzelm 
parents: 
70539 
diff
changeset
 | 
377  | 
}  | 
| 
 
5a8e3e4b3760
clarified export of axioms and theorems (identified derivations instead of projected facts);
 
wenzelm 
parents: 
70539 
diff
changeset
 | 
378  | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
379  | 
def read_thms(provider: Export.Provider): List[Entity[Thm]] =  | 
| 75393 | 380  | 
read_entities(provider, Export.THEORY_PREFIX + "thms", Kind.THM,  | 
| 75394 | 381  | 
      { body =>
 | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
382  | 
import XML.Decode._  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
383  | 
import Term_XML.Decode._  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
384  | 
val (prop, deps, prf) = triple(decode_prop, list(string), proof)(body)  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
385  | 
Thm(prop, deps, prf)  | 
| 68418 | 386  | 
})  | 
| 68264 | 387  | 
|
| 70881 | 388  | 
sealed case class Proof(  | 
389  | 
typargs: List[(String, Term.Sort)],  | 
|
390  | 
args: List[(String, Term.Typ)],  | 
|
391  | 
term: Term.Term,  | 
|
| 75393 | 392  | 
proof: Term.Proof  | 
393  | 
  ) {
 | 
|
| 70883 | 394  | 
def prop: Prop = Prop(typargs, args, term)  | 
395  | 
||
| 70881 | 396  | 
def cache(cache: Term.Cache): Proof =  | 
397  | 
Proof(  | 
|
398  | 
        typargs.map({ case (name, sort) => (cache.string(name), cache.sort(sort)) }),
 | 
|
399  | 
        args.map({ case (name, typ) => (cache.string(name), cache.typ(typ)) }),
 | 
|
400  | 
cache.term(term),  | 
|
401  | 
cache.proof(proof))  | 
|
402  | 
}  | 
|
403  | 
||
| 
70899
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
404  | 
def read_proof(  | 
| 75393 | 405  | 
provider: Export.Provider,  | 
406  | 
id: Thm_Id,  | 
|
407  | 
cache: Term.Cache = Term.Cache.none  | 
|
408  | 
  ): Option[Proof] = {
 | 
|
| 72691 | 409  | 
    for { entry <- provider.focus(id.theory_name)(Export.PROOFS_PREFIX + id.serial) }
 | 
| 
70899
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
410  | 
    yield {
 | 
| 
72847
 
9dda93a753b1
clarified signature: provide XZ.Cache where Export.Entry is created;
 
wenzelm 
parents: 
72708 
diff
changeset
 | 
411  | 
val body = entry.uncompressed_yxml  | 
| 75393 | 412  | 
      val (typargs, (args, (prop_body, proof_body))) = {
 | 
| 
70899
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
413  | 
import XML.Decode._  | 
| 
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
414  | 
import Term_XML.Decode._  | 
| 
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
415  | 
pair(list(pair(string, sort)), pair(list(pair(string, typ)), pair(x => x, x => x)))(body)  | 
| 
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
416  | 
}  | 
| 
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
417  | 
val env = args.toMap  | 
| 
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
418  | 
val prop = Term_XML.Decode.term_env(env)(prop_body)  | 
| 
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
419  | 
val proof = Term_XML.Decode.proof_env(env)(proof_body)  | 
| 
70843
 
cc987440d776
more compact XML: separate environment for free variables;
 
wenzelm 
parents: 
70790 
diff
changeset
 | 
420  | 
|
| 
70899
 
5f6dea6a7a4c
clarified signature: support partial read_proof to accommodate proof term normalization vs. approximative proof_boxes as upper bound;
 
wenzelm 
parents: 
70896 
diff
changeset
 | 
421  | 
val result = Proof(typargs, args, prop, proof)  | 
| 73024 | 422  | 
if (cache.no_cache) result else result.cache(cache)  | 
| 
70843
 
cc987440d776
more compact XML: separate environment for free variables;
 
wenzelm 
parents: 
70790 
diff
changeset
 | 
423  | 
}  | 
| 
70539
 
30b3c58a1933
support Export_Theory.read_proof, based on theory_name and serial;
 
wenzelm 
parents: 
70534 
diff
changeset
 | 
424  | 
}  | 
| 
 
30b3c58a1933
support Export_Theory.read_proof, based on theory_name and serial;
 
wenzelm 
parents: 
70534 
diff
changeset
 | 
425  | 
|
| 
71015
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
426  | 
def read_proof_boxes(  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
427  | 
store: Sessions.Store,  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
428  | 
provider: Export.Provider,  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
429  | 
proof: Term.Proof,  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
430  | 
suppress: Thm_Id => Boolean = _ => false,  | 
| 75393 | 431  | 
cache: Term.Cache = Term.Cache.none  | 
432  | 
  ): List[(Thm_Id, Proof)] = {
 | 
|
| 
71015
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
433  | 
var seen = Set.empty[Long]  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
434  | 
var result = SortedMap.empty[Long, (Thm_Id, Proof)]  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
435  | 
|
| 75393 | 436  | 
    def boxes(context: Option[(Long, Term.Proof)], prf: Term.Proof): Unit = {
 | 
| 
71015
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
437  | 
      prf match {
 | 
| 71016 | 438  | 
case Term.Abst(_, _, p) => boxes(context, p)  | 
439  | 
case Term.AbsP(_, _, p) => boxes(context, p)  | 
|
440  | 
case Term.Appt(p, _) => boxes(context, p)  | 
|
441  | 
case Term.AppP(p, q) => boxes(context, p); boxes(context, q)  | 
|
| 
71015
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
442  | 
case thm: Term.PThm if !seen(thm.serial) =>  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
443  | 
seen += thm.serial  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
444  | 
val id = Thm_Id(thm.serial, thm.theory_name)  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
445  | 
          if (!suppress(id)) {
 | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
446  | 
val read =  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
447  | 
if (id.pure) Export_Theory.read_pure_proof(store, id, cache = cache)  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
448  | 
else Export_Theory.read_proof(provider, id, cache = cache)  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
449  | 
            read match {
 | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
450  | 
case Some(p) =>  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
451  | 
result += (thm.serial -> (id -> p))  | 
| 71016 | 452  | 
boxes(Some((thm.serial, p.proof)), p.proof)  | 
| 
71015
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
453  | 
case None =>  | 
| 71016 | 454  | 
                error("Missing proof " + thm.serial + " (theory " + quote (thm.theory_name) + ")" +
 | 
455  | 
                  (context match {
 | 
|
456  | 
case None => ""  | 
|
457  | 
case Some((i, p)) => " in proof " + i + ":\n" + p  | 
|
458  | 
}))  | 
|
| 
71015
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
459  | 
}  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
460  | 
}  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
461  | 
case _ =>  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
462  | 
}  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
463  | 
}  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
464  | 
|
| 71016 | 465  | 
boxes(None, proof)  | 
| 
71015
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
466  | 
result.iterator.map(_._2).toList  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
467  | 
}  | 
| 
 
bb49abc2ecbb
determine proof boxes from exported proof (NB: thm_boxes is not sufficient due to OfClass proofs);
 
wenzelm 
parents: 
70920 
diff
changeset
 | 
468  | 
|
| 68264 | 469  | 
|
470  | 
/* type classes */  | 
|
471  | 
||
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
472  | 
sealed case class Class(params: List[(String, Term.Typ)], axioms: List[Prop])  | 
| 75393 | 473  | 
  extends Content[Class] {
 | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
474  | 
override def cache(cache: Term.Cache): Class =  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
475  | 
Class(  | 
| 68267 | 476  | 
        params.map({ case (name, typ) => (cache.string(name), cache.typ(typ)) }),
 | 
| 
69023
 
cef000855cf4
clarified standardization of variables, with proper treatment of local variables;
 
wenzelm 
parents: 
69019 
diff
changeset
 | 
477  | 
axioms.map(_.cache(cache)))  | 
| 68267 | 478  | 
}  | 
| 68264 | 479  | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
480  | 
def read_classes(provider: Export.Provider): List[Entity[Class]] =  | 
| 75393 | 481  | 
read_entities(provider, Export.THEORY_PREFIX + "classes", Markup.CLASS,  | 
| 75394 | 482  | 
      { body =>
 | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
483  | 
import XML.Decode._  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
484  | 
import Term_XML.Decode._  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
485  | 
val (params, axioms) = pair(list(pair(string, typ)), list(decode_prop))(body)  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
486  | 
Class(params, axioms)  | 
| 68418 | 487  | 
})  | 
| 68264 | 488  | 
|
489  | 
||
| 68862 | 490  | 
/* locales */  | 
491  | 
||
492  | 
sealed case class Locale(  | 
|
| 69019 | 493  | 
typargs: List[(String, Term.Sort)],  | 
| 
69077
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
494  | 
args: List[((String, Term.Typ), Syntax)],  | 
| 75393 | 495  | 
axioms: List[Prop]  | 
496  | 
  ) extends Content[Locale] {
 | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
497  | 
override def cache(cache: Term.Cache): Locale =  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
498  | 
Locale(  | 
| 68864 | 499  | 
        typargs.map({ case (name, sort) => (cache.string(name), cache.sort(sort)) }),
 | 
| 69076 | 500  | 
        args.map({ case ((name, typ), syntax) => ((cache.string(name), cache.typ(typ)), syntax) }),
 | 
| 
69023
 
cef000855cf4
clarified standardization of variables, with proper treatment of local variables;
 
wenzelm 
parents: 
69019 
diff
changeset
 | 
501  | 
axioms.map(_.cache(cache)))  | 
| 68862 | 502  | 
}  | 
503  | 
||
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
504  | 
def read_locales(provider: Export.Provider): List[Entity[Locale]] =  | 
| 75393 | 505  | 
read_entities(provider, Export.THEORY_PREFIX + "locales", Markup.LOCALE,  | 
| 75394 | 506  | 
      { body =>
 | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
507  | 
import XML.Decode._  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
508  | 
import Term_XML.Decode._  | 
| 69019 | 509  | 
val (typargs, args, axioms) =  | 
| 
69077
 
11529ae45786
more approximative prefix syntax, including binder;
 
wenzelm 
parents: 
69076 
diff
changeset
 | 
510  | 
triple(list(pair(string, sort)), list(pair(pair(string, typ), decode_syntax)),  | 
| 69076 | 511  | 
list(decode_prop))(body)  | 
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
512  | 
Locale(typargs, args, axioms)  | 
| 68862 | 513  | 
})  | 
514  | 
||
515  | 
||
| 
69069
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
516  | 
/* locale dependencies */  | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
517  | 
|
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
518  | 
sealed case class Locale_Dependency(  | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
519  | 
source: String,  | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
520  | 
target: String,  | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
521  | 
prefix: List[(String, Boolean)],  | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
522  | 
subst_types: List[((String, Term.Sort), Term.Typ)],  | 
| 75393 | 523  | 
subst_terms: List[((String, Term.Typ), Term.Term)]  | 
524  | 
  ) extends Content[Locale_Dependency] {
 | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
525  | 
override def cache(cache: Term.Cache): Locale_Dependency =  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
526  | 
Locale_Dependency(  | 
| 
69069
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
527  | 
cache.string(source),  | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
528  | 
cache.string(target),  | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
529  | 
        prefix.map({ case (name, mandatory) => (cache.string(name), mandatory) }),
 | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
530  | 
        subst_types.map({ case ((a, s), ty) => ((cache.string(a), cache.sort(s)), cache.typ(ty)) }),
 | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
531  | 
        subst_terms.map({ case ((x, ty), t) => ((cache.string(x), cache.typ(ty)), cache.term(t)) }))
 | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
532  | 
|
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
533  | 
def is_inclusion: Boolean =  | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
534  | 
subst_types.isEmpty && subst_terms.isEmpty  | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
535  | 
}  | 
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
536  | 
|
| 
74114
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
537  | 
def read_locale_dependencies(provider: Export.Provider): List[Entity[Locale_Dependency]] =  | 
| 
 
700e5bd59c7d
clarified export of formal entities: name space info is always present, but content depends on option "export_theory";
 
wenzelm 
parents: 
73866 
diff
changeset
 | 
538  | 
read_entities(provider, Export.THEORY_PREFIX + "locale_dependencies", Kind.LOCALE_DEPENDENCY,  | 
| 75394 | 539  | 
      { body =>
 | 
| 75393 | 540  | 
import XML.Decode._  | 
541  | 
import Term_XML.Decode._  | 
|
542  | 
val (source, (target, (prefix, (subst_types, subst_terms)))) =  | 
|
543  | 
pair(string, pair(string, pair(list(pair(string, bool)),  | 
|
544  | 
pair(list(pair(pair(string, sort), typ)), list(pair(pair(string, typ), term))))))(body)  | 
|
545  | 
Locale_Dependency(source, target, prefix, subst_types, subst_terms)  | 
|
546  | 
})  | 
|
| 
69069
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
547  | 
|
| 
 
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
 
wenzelm 
parents: 
69023 
diff
changeset
 | 
548  | 
|
| 68295 | 549  | 
/* sort algebra */  | 
550  | 
||
| 75393 | 551  | 
  sealed case class Classrel(class1: String, class2: String, prop: Prop) {
 | 
| 68295 | 552  | 
def cache(cache: Term.Cache): Classrel =  | 
| 
70384
 
8ce08b154aa1
clarified export of sort algebra: avoid logical operations in Isabelle/Scala;
 
wenzelm 
parents: 
69996 
diff
changeset
 | 
553  | 
Classrel(cache.string(class1), cache.string(class2), prop.cache(cache))  | 
| 68295 | 554  | 
}  | 
555  | 
||
| 75393 | 556  | 
  def read_classrel(provider: Export.Provider): List[Classrel] = {
 | 
| 72691 | 557  | 
val body = provider.uncompressed_yxml(Export.THEORY_PREFIX + "classrel")  | 
| 75393 | 558  | 
    val classrel = {
 | 
| 68418 | 559  | 
import XML.Decode._  | 
| 
70384
 
8ce08b154aa1
clarified export of sort algebra: avoid logical operations in Isabelle/Scala;
 
wenzelm 
parents: 
69996 
diff
changeset
 | 
560  | 
list(pair(decode_prop, pair(string, string)))(body)  | 
| 68418 | 561  | 
}  | 
| 
70384
 
8ce08b154aa1
clarified export of sort algebra: avoid logical operations in Isabelle/Scala;
 
wenzelm 
parents: 
69996 
diff
changeset
 | 
562  | 
for ((prop, (c1, c2)) <- classrel) yield Classrel(c1, c2, prop)  | 
| 68418 | 563  | 
}  | 
| 68295 | 564  | 
|
| 75393 | 565  | 
sealed case class Arity(  | 
566  | 
type_name: String,  | 
|
567  | 
domain: List[Term.Sort],  | 
|
568  | 
codomain: String,  | 
|
569  | 
prop: Prop  | 
|
570  | 
  ) {
 | 
|
| 68295 | 571  | 
def cache(cache: Term.Cache): Arity =  | 
| 73866 | 572  | 
Arity(cache.string(type_name), domain.map(cache.sort), cache.string(codomain),  | 
| 
70384
 
8ce08b154aa1
clarified export of sort algebra: avoid logical operations in Isabelle/Scala;
 
wenzelm 
parents: 
69996 
diff
changeset
 | 
573  | 
prop.cache(cache))  | 
| 68295 | 574  | 
}  | 
575  | 
||
| 75393 | 576  | 
  def read_arities(provider: Export.Provider): List[Arity] = {
 | 
| 72691 | 577  | 
val body = provider.uncompressed_yxml(Export.THEORY_PREFIX + "arities")  | 
| 75393 | 578  | 
    val arities = {
 | 
| 68418 | 579  | 
import XML.Decode._  | 
580  | 
import Term_XML.Decode._  | 
|
| 
70384
 
8ce08b154aa1
clarified export of sort algebra: avoid logical operations in Isabelle/Scala;
 
wenzelm 
parents: 
69996 
diff
changeset
 | 
581  | 
list(pair(decode_prop, triple(string, list(sort), string)))(body)  | 
| 68418 | 582  | 
}  | 
| 
70384
 
8ce08b154aa1
clarified export of sort algebra: avoid logical operations in Isabelle/Scala;
 
wenzelm 
parents: 
69996 
diff
changeset
 | 
583  | 
for ((prop, (a, b, c)) <- arities) yield Arity(a, b, c, prop)  | 
| 68418 | 584  | 
}  | 
| 68295 | 585  | 
|
586  | 
||
| 70920 | 587  | 
/* Pure constdefs */  | 
588  | 
||
| 75393 | 589  | 
  sealed case class Constdef(name: String, axiom_name: String) {
 | 
| 70920 | 590  | 
def cache(cache: Term.Cache): Constdef =  | 
591  | 
Constdef(cache.string(name), cache.string(axiom_name))  | 
|
592  | 
}  | 
|
593  | 
||
| 75393 | 594  | 
  def read_constdefs(provider: Export.Provider): List[Constdef] = {
 | 
| 72691 | 595  | 
val body = provider.uncompressed_yxml(Export.THEORY_PREFIX + "constdefs")  | 
| 75393 | 596  | 
    val constdefs = {
 | 
| 70920 | 597  | 
import XML.Decode._  | 
598  | 
list(pair(string, string))(body)  | 
|
599  | 
}  | 
|
600  | 
for ((name, axiom_name) <- constdefs) yield Constdef(name, axiom_name)  | 
|
601  | 
}  | 
|
602  | 
||
603  | 
||
| 68264 | 604  | 
/* HOL typedefs */  | 
605  | 
||
| 75393 | 606  | 
sealed case class Typedef(  | 
607  | 
name: String,  | 
|
608  | 
rep_type: Term.Typ,  | 
|
609  | 
abs_type: Term.Typ,  | 
|
610  | 
rep_name: String,  | 
|
611  | 
abs_name: String,  | 
|
612  | 
axiom_name: String  | 
|
613  | 
  ) {
 | 
|
| 68267 | 614  | 
def cache(cache: Term.Cache): Typedef =  | 
615  | 
Typedef(cache.string(name),  | 
|
616  | 
cache.typ(rep_type),  | 
|
617  | 
cache.typ(abs_type),  | 
|
618  | 
cache.string(rep_name),  | 
|
619  | 
cache.string(abs_name),  | 
|
620  | 
cache.string(axiom_name))  | 
|
621  | 
}  | 
|
| 68264 | 622  | 
|
| 75393 | 623  | 
  def read_typedefs(provider: Export.Provider): List[Typedef] = {
 | 
| 72691 | 624  | 
val body = provider.uncompressed_yxml(Export.THEORY_PREFIX + "typedefs")  | 
| 75393 | 625  | 
    val typedefs = {
 | 
| 68418 | 626  | 
import XML.Decode._  | 
627  | 
import Term_XML.Decode._  | 
|
628  | 
list(pair(string, pair(typ, pair(typ, pair(string, pair(string, string))))))(body)  | 
|
629  | 
}  | 
|
630  | 
    for { (name, (rep_type, (abs_type, (rep_name, (abs_name, axiom_name))))) <- typedefs }
 | 
|
631  | 
yield Typedef(name, rep_type, abs_type, rep_name, abs_name, axiom_name)  | 
|
632  | 
}  | 
|
| 71202 | 633  | 
|
634  | 
||
| 71248 | 635  | 
/* HOL datatypes */  | 
636  | 
||
637  | 
sealed case class Datatype(  | 
|
638  | 
pos: Position.T,  | 
|
639  | 
name: String,  | 
|
640  | 
co: Boolean,  | 
|
641  | 
typargs: List[(String, Term.Sort)],  | 
|
642  | 
typ: Term.Typ,  | 
|
| 75393 | 643  | 
constructors: List[(Term.Term, Term.Typ)]  | 
644  | 
  ) {
 | 
|
| 71248 | 645  | 
def id: Option[Long] = Position.Id.unapply(pos)  | 
646  | 
||
647  | 
def cache(cache: Term.Cache): Datatype =  | 
|
648  | 
Datatype(  | 
|
649  | 
cache.position(pos),  | 
|
650  | 
cache.string(name),  | 
|
651  | 
co,  | 
|
652  | 
        typargs.map({ case (name, sort) => (cache.string(name), cache.sort(sort)) }),
 | 
|
653  | 
cache.typ(typ),  | 
|
654  | 
        constructors.map({ case (term, typ) => (cache.term(term), cache.typ(typ)) }))
 | 
|
655  | 
}  | 
|
656  | 
||
| 75393 | 657  | 
  def read_datatypes(provider: Export.Provider): List[Datatype] = {
 | 
| 72691 | 658  | 
val body = provider.uncompressed_yxml(Export.THEORY_PREFIX + "datatypes")  | 
| 75393 | 659  | 
    val datatypes = {
 | 
| 71248 | 660  | 
import XML.Decode._  | 
661  | 
import Term_XML.Decode._  | 
|
662  | 
list(pair(properties, pair(string, pair(bool, pair(list(pair(string, sort)),  | 
|
663  | 
pair(typ, list(pair(term, typ))))))))(body)  | 
|
664  | 
}  | 
|
665  | 
for ((pos, (name, (co, (typargs, (typ, constructors))))) <- datatypes)  | 
|
666  | 
yield Datatype(pos, name, co, typargs, typ, constructors)  | 
|
667  | 
}  | 
|
668  | 
||
669  | 
||
| 71202 | 670  | 
/* Pure spec rules */  | 
671  | 
||
| 75393 | 672  | 
  sealed abstract class Recursion {
 | 
| 71202 | 673  | 
def cache(cache: Term.Cache): Recursion =  | 
674  | 
      this match {
 | 
|
675  | 
case Primrec(types) => Primrec(types.map(cache.string))  | 
|
676  | 
case Primcorec(types) => Primcorec(types.map(cache.string))  | 
|
677  | 
case _ => this  | 
|
678  | 
}  | 
|
679  | 
}  | 
|
680  | 
case class Primrec(types: List[String]) extends Recursion  | 
|
681  | 
case object Recdef extends Recursion  | 
|
682  | 
case class Primcorec(types: List[String]) extends Recursion  | 
|
683  | 
case object Corec extends Recursion  | 
|
684  | 
case object Unknown_Recursion extends Recursion  | 
|
685  | 
||
| 75393 | 686  | 
  val decode_recursion: XML.Decode.T[Recursion] = {
 | 
| 71202 | 687  | 
import XML.Decode._  | 
688  | 
variant(List(  | 
|
| 75436 | 689  | 
      { case (Nil, a) => Primrec(list(string)(a)) },
 | 
690  | 
      { case (Nil, Nil) => Recdef },
 | 
|
691  | 
      { case (Nil, a) => Primcorec(list(string)(a)) },
 | 
|
692  | 
      { case (Nil, Nil) => Corec },
 | 
|
693  | 
      { case (Nil, Nil) => Unknown_Recursion }))
 | 
|
| 71202 | 694  | 
}  | 
695  | 
||
696  | 
||
| 75393 | 697  | 
  sealed abstract class Rough_Classification {
 | 
| 71202 | 698  | 
def is_equational: Boolean = this.isInstanceOf[Equational]  | 
699  | 
def is_inductive: Boolean = this == Inductive  | 
|
700  | 
def is_co_inductive: Boolean = this == Co_Inductive  | 
|
701  | 
def is_relational: Boolean = is_inductive || is_co_inductive  | 
|
702  | 
def is_unknown: Boolean = this == Unknown  | 
|
703  | 
||
704  | 
def cache(cache: Term.Cache): Rough_Classification =  | 
|
705  | 
      this match {
 | 
|
706  | 
case Equational(recursion) => Equational(recursion.cache(cache))  | 
|
707  | 
case _ => this  | 
|
708  | 
}  | 
|
709  | 
}  | 
|
710  | 
case class Equational(recursion: Recursion) extends Rough_Classification  | 
|
711  | 
case object Inductive extends Rough_Classification  | 
|
712  | 
case object Co_Inductive extends Rough_Classification  | 
|
713  | 
case object Unknown extends Rough_Classification  | 
|
714  | 
||
| 75393 | 715  | 
  val decode_rough_classification: XML.Decode.T[Rough_Classification] = {
 | 
| 71202 | 716  | 
import XML.Decode._  | 
717  | 
variant(List(  | 
|
| 75436 | 718  | 
      { case (Nil, a) => Equational(decode_recursion(a)) },
 | 
719  | 
      { case (Nil, Nil) => Inductive },
 | 
|
720  | 
      { case (Nil, Nil) => Co_Inductive },
 | 
|
721  | 
      { case (Nil, Nil) => Unknown }))
 | 
|
| 71202 | 722  | 
}  | 
723  | 
||
724  | 
||
725  | 
sealed case class Spec_Rule(  | 
|
| 
71207
 
8af82f3e03c9
formal position for spec rule (not significant for equality);
 
wenzelm 
parents: 
71202 
diff
changeset
 | 
726  | 
pos: Position.T,  | 
| 71202 | 727  | 
name: String,  | 
728  | 
rough_classification: Rough_Classification,  | 
|
| 
71208
 
5e0050eb64f2
clarified export of spec rules: more like locale;
 
wenzelm 
parents: 
71207 
diff
changeset
 | 
729  | 
typargs: List[(String, Term.Sort)],  | 
| 
 
5e0050eb64f2
clarified export of spec rules: more like locale;
 
wenzelm 
parents: 
71207 
diff
changeset
 | 
730  | 
args: List[(String, Term.Typ)],  | 
| 71211 | 731  | 
terms: List[(Term.Term, Term.Typ)],  | 
| 75393 | 732  | 
rules: List[Term.Term]  | 
733  | 
  ) {
 | 
|
| 
71207
 
8af82f3e03c9
formal position for spec rule (not significant for equality);
 
wenzelm 
parents: 
71202 
diff
changeset
 | 
734  | 
def id: Option[Long] = Position.Id.unapply(pos)  | 
| 
 
8af82f3e03c9
formal position for spec rule (not significant for equality);
 
wenzelm 
parents: 
71202 
diff
changeset
 | 
735  | 
|
| 71202 | 736  | 
def cache(cache: Term.Cache): Spec_Rule =  | 
737  | 
Spec_Rule(  | 
|
| 
71207
 
8af82f3e03c9
formal position for spec rule (not significant for equality);
 
wenzelm 
parents: 
71202 
diff
changeset
 | 
738  | 
cache.position(pos),  | 
| 71202 | 739  | 
cache.string(name),  | 
740  | 
rough_classification.cache(cache),  | 
|
| 
71208
 
5e0050eb64f2
clarified export of spec rules: more like locale;
 
wenzelm 
parents: 
71207 
diff
changeset
 | 
741  | 
        typargs.map({ case (name, sort) => (cache.string(name), cache.sort(sort)) }),
 | 
| 
 
5e0050eb64f2
clarified export of spec rules: more like locale;
 
wenzelm 
parents: 
71207 
diff
changeset
 | 
742  | 
        args.map({ case (name, typ) => (cache.string(name), cache.typ(typ)) }),
 | 
| 71211 | 743  | 
        terms.map({ case (term, typ) => (cache.term(term), cache.typ(typ)) }),
 | 
| 73866 | 744  | 
rules.map(cache.term))  | 
| 71202 | 745  | 
}  | 
746  | 
||
| 75393 | 747  | 
  def read_spec_rules(provider: Export.Provider): List[Spec_Rule] = {
 | 
| 72691 | 748  | 
val body = provider.uncompressed_yxml(Export.THEORY_PREFIX + "spec_rules")  | 
| 75393 | 749  | 
    val spec_rules = {
 | 
| 71202 | 750  | 
import XML.Decode._  | 
751  | 
import Term_XML.Decode._  | 
|
| 
71207
 
8af82f3e03c9
formal position for spec rule (not significant for equality);
 
wenzelm 
parents: 
71202 
diff
changeset
 | 
752  | 
list(  | 
| 
 
8af82f3e03c9
formal position for spec rule (not significant for equality);
 
wenzelm 
parents: 
71202 
diff
changeset
 | 
753  | 
pair(properties, pair(string, pair(decode_rough_classification,  | 
| 
71208
 
5e0050eb64f2
clarified export of spec rules: more like locale;
 
wenzelm 
parents: 
71207 
diff
changeset
 | 
754  | 
pair(list(pair(string, sort)), pair(list(pair(string, typ)),  | 
| 71211 | 755  | 
pair(list(pair(term, typ)), list(term))))))))(body)  | 
| 71202 | 756  | 
}  | 
| 
71208
 
5e0050eb64f2
clarified export of spec rules: more like locale;
 
wenzelm 
parents: 
71207 
diff
changeset
 | 
757  | 
for ((pos, (name, (rough_classification, (typargs, (args, (terms, rules)))))) <- spec_rules)  | 
| 
 
5e0050eb64f2
clarified export of spec rules: more like locale;
 
wenzelm 
parents: 
71207 
diff
changeset
 | 
758  | 
yield Spec_Rule(pos, name, rough_classification, typargs, args, terms, rules)  | 
| 71202 | 759  | 
}  | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
760  | 
|
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
761  | 
|
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
762  | 
/* other entities */  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
763  | 
|
| 75393 | 764  | 
  sealed case class Other() extends Content[Other] {
 | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
765  | 
override def cache(cache: Term.Cache): Other = this  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
766  | 
}  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
767  | 
|
| 75393 | 768  | 
  def read_others(provider: Export.Provider): Map[String, List[Entity[Other]]] = {
 | 
| 
74261
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
769  | 
val kinds =  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
770  | 
      provider(Export.THEORY_PREFIX + "other_kinds") match {
 | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
771  | 
case Some(entry) => split_lines(entry.uncompressed.text)  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
772  | 
case None => Nil  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
773  | 
}  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
774  | 
val other = Other()  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
775  | 
def read_other(kind: String): List[Entity[Other]] =  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
776  | 
read_entities(provider, Export.THEORY_PREFIX + "other/" + kind, kind, _ => other)  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
777  | 
|
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
778  | 
kinds.map(kind => kind -> read_other(kind)).toMap  | 
| 
 
d28a51dd9da6
export other entities, e.g. relevant for formal document output;
 
wenzelm 
parents: 
74119 
diff
changeset
 | 
779  | 
}  | 
| 68171 | 780  | 
}  |