| author | wenzelm |
| Tue, 28 Aug 2018 15:25:28 +0200 | |
| changeset 68835 | 2e59da922630 |
| parent 68830 | 44ec6fdaacf8 |
| child 68862 | 47e9912c53c3 |
| 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 |
||
10 |
object Export_Theory |
|
11 |
{
|
|
| 68206 | 12 |
/** session content **/ |
13 |
||
14 |
sealed case class Session(name: String, theory_graph: Graph[String, Theory]) |
|
15 |
{
|
|
16 |
override def toString: String = name |
|
17 |
||
18 |
def theory(theory_name: String): Theory = |
|
19 |
if (theory_graph.defined(theory_name)) theory_graph.get_node(theory_name) |
|
20 |
else error("Bad theory " + quote(theory_name))
|
|
21 |
||
22 |
def theories: List[Theory] = |
|
23 |
theory_graph.topological_order.map(theory_graph.get_node(_)) |
|
24 |
} |
|
25 |
||
| 68209 | 26 |
def read_session(store: Sessions.Store, |
27 |
session_name: String, |
|
| 68206 | 28 |
types: Boolean = true, |
| 68264 | 29 |
consts: Boolean = true, |
30 |
axioms: Boolean = true, |
|
31 |
facts: Boolean = true, |
|
32 |
classes: Boolean = true, |
|
| 68267 | 33 |
typedefs: Boolean = true, |
| 68295 | 34 |
classrel: Boolean = true, |
35 |
arities: Boolean = true, |
|
| 68267 | 36 |
cache: Term.Cache = Term.make_cache()): Session = |
| 68206 | 37 |
{
|
38 |
val thys = |
|
| 68210 | 39 |
using(store.open_database(session_name))(db => |
| 68206 | 40 |
{
|
41 |
db.transaction {
|
|
| 68222 | 42 |
Export.read_theory_names(db, session_name).map((theory_name: String) => |
| 68418 | 43 |
read_theory(Export.Provider.database(db, session_name, theory_name), |
44 |
session_name, theory_name, types = types, consts = consts, |
|
| 68267 | 45 |
axioms = axioms, facts = facts, classes = classes, typedefs = typedefs, |
46 |
cache = Some(cache))) |
|
| 68206 | 47 |
} |
48 |
}) |
|
49 |
||
50 |
val graph0 = |
|
51 |
(Graph.string[Theory] /: thys) { case (g, thy) => g.new_node(thy.name, thy) }
|
|
52 |
val graph1 = |
|
53 |
(graph0 /: thys) { case (g0, thy) =>
|
|
54 |
(g0 /: thy.parents) { case (g1, parent) =>
|
|
55 |
g1.default_node(parent, empty_theory(parent)).add_edge_acyclic(parent, thy.name) } } |
|
56 |
||
57 |
Session(session_name, graph1) |
|
58 |
} |
|
59 |
||
60 |
||
61 |
||
| 68203 | 62 |
/** theory content **/ |
63 |
||
| 68346 | 64 |
val export_prefix: String = "theory/" |
65 |
||
| 68208 | 66 |
sealed case class Theory(name: String, parents: List[String], |
67 |
types: List[Type], |
|
68 |
consts: List[Const], |
|
| 68726 | 69 |
axioms: List[Fact_Single], |
70 |
facts: List[Fact_Multi], |
|
| 68264 | 71 |
classes: List[Class], |
| 68295 | 72 |
typedefs: List[Typedef], |
73 |
classrel: List[Classrel], |
|
74 |
arities: List[Arity]) |
|
| 68206 | 75 |
{
|
76 |
override def toString: String = name |
|
| 68267 | 77 |
|
| 68711 | 78 |
lazy val entities: Set[Long] = |
79 |
Set.empty[Long] ++ |
|
80 |
types.iterator.map(_.entity.serial) ++ |
|
81 |
consts.iterator.map(_.entity.serial) ++ |
|
82 |
axioms.iterator.map(_.entity.serial) ++ |
|
83 |
facts.iterator.map(_.entity.serial) ++ |
|
84 |
classes.iterator.map(_.entity.serial) |
|
85 |
||
| 68267 | 86 |
def cache(cache: Term.Cache): Theory = |
87 |
Theory(cache.string(name), |
|
88 |
parents.map(cache.string(_)), |
|
89 |
types.map(_.cache(cache)), |
|
90 |
consts.map(_.cache(cache)), |
|
91 |
axioms.map(_.cache(cache)), |
|
92 |
facts.map(_.cache(cache)), |
|
93 |
classes.map(_.cache(cache)), |
|
| 68295 | 94 |
typedefs.map(_.cache(cache)), |
95 |
classrel.map(_.cache(cache)), |
|
96 |
arities.map(_.cache(cache))) |
|
| 68206 | 97 |
} |
98 |
||
| 68295 | 99 |
def empty_theory(name: String): Theory = |
100 |
Theory(name, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil) |
|
| 68203 | 101 |
|
| 68418 | 102 |
def read_theory(provider: Export.Provider, session_name: String, theory_name: String, |
| 68203 | 103 |
types: Boolean = true, |
| 68208 | 104 |
consts: Boolean = true, |
| 68232 | 105 |
axioms: Boolean = true, |
| 68264 | 106 |
facts: Boolean = true, |
107 |
classes: Boolean = true, |
|
| 68267 | 108 |
typedefs: Boolean = true, |
| 68295 | 109 |
classrel: Boolean = true, |
110 |
arities: Boolean = true, |
|
| 68267 | 111 |
cache: Option[Term.Cache] = None): Theory = |
| 68203 | 112 |
{
|
| 68206 | 113 |
val parents = |
| 68418 | 114 |
provider(export_prefix + "parents") match {
|
| 68231 | 115 |
case Some(entry) => split_lines(entry.uncompressed().text) |
| 68206 | 116 |
case None => |
117 |
error("Missing theory export in session " + quote(session_name) + ": " +
|
|
118 |
quote(theory_name)) |
|
119 |
} |
|
| 68267 | 120 |
val theory = |
121 |
Theory(theory_name, parents, |
|
| 68418 | 122 |
if (types) read_types(provider) else Nil, |
123 |
if (consts) read_consts(provider) else Nil, |
|
124 |
if (axioms) read_axioms(provider) else Nil, |
|
125 |
if (facts) read_facts(provider) else Nil, |
|
126 |
if (classes) read_classes(provider) else Nil, |
|
127 |
if (typedefs) read_typedefs(provider) else Nil, |
|
128 |
if (classrel) read_classrel(provider) else Nil, |
|
129 |
if (arities) read_arities(provider) else Nil) |
|
| 68267 | 130 |
if (cache.isDefined) theory.cache(cache.get) else theory |
| 68203 | 131 |
} |
132 |
||
| 68711 | 133 |
def read_pure_theory(store: Sessions.Store, cache: Option[Term.Cache] = None): Theory = |
| 68710 | 134 |
{
|
135 |
val session_name = Thy_Header.PURE |
|
136 |
val theory_name = Thy_Header.PURE |
|
137 |
||
138 |
using(store.open_database(session_name))(db => |
|
139 |
{
|
|
140 |
db.transaction {
|
|
141 |
read_theory(Export.Provider.database(db, session_name, theory_name), |
|
| 68711 | 142 |
session_name, theory_name, cache = cache) |
| 68710 | 143 |
} |
144 |
}) |
|
145 |
} |
|
146 |
||
| 68203 | 147 |
|
| 68171 | 148 |
/* entities */ |
149 |
||
| 68714 | 150 |
object Kind extends Enumeration |
| 68171 | 151 |
{
|
| 68714 | 152 |
val TYPE = Value("type")
|
153 |
val CONST = Value("const")
|
|
154 |
val AXIOM = Value("axiom")
|
|
155 |
val FACT = Value("fact")
|
|
156 |
val CLASS = Value("class")
|
|
157 |
} |
|
158 |
||
| 68835 | 159 |
sealed case class Entity( |
160 |
kind: Kind.Value, name: String, pos: Position.T, id: Option[Long], serial: Long) |
|
| 68714 | 161 |
{
|
| 68718 | 162 |
override def toString: String = kind.toString + " " + quote(name) |
| 68267 | 163 |
|
164 |
def cache(cache: Term.Cache): Entity = |
|
|
68830
44ec6fdaacf8
retain original id, which is command_id/exec_id for PIDE;
wenzelm
parents:
68726
diff
changeset
|
165 |
Entity(kind, cache.string(name), cache.position(pos), id, serial) |
| 68171 | 166 |
} |
167 |
||
| 68714 | 168 |
def decode_entity(kind: Kind.Value, tree: XML.Tree): (Entity, XML.Body) = |
| 68171 | 169 |
{
|
170 |
def err(): Nothing = throw new XML.XML_Body(List(tree)) |
|
171 |
||
172 |
tree match {
|
|
173 |
case XML.Elem(Markup(Markup.ENTITY, props), body) => |
|
174 |
val name = Markup.Name.unapply(props) getOrElse err() |
|
|
68830
44ec6fdaacf8
retain original id, which is command_id/exec_id for PIDE;
wenzelm
parents:
68726
diff
changeset
|
175 |
val pos = props.filter({ case (a, _) => Markup.POSITION_PROPERTIES(a) && a != Markup.ID })
|
| 68835 | 176 |
val id = Position.Id.unapply(props) |
| 68171 | 177 |
val serial = Markup.Serial.unapply(props) getOrElse err() |
|
68830
44ec6fdaacf8
retain original id, which is command_id/exec_id for PIDE;
wenzelm
parents:
68726
diff
changeset
|
178 |
(Entity(kind, name, pos, id, serial), body) |
| 68171 | 179 |
case _ => err() |
180 |
} |
|
181 |
} |
|
182 |
||
183 |
||
184 |
/* types */ |
|
185 |
||
186 |
sealed case class Type(entity: Entity, args: List[String], abbrev: Option[Term.Typ]) |
|
| 68267 | 187 |
{
|
188 |
def cache(cache: Term.Cache): Type = |
|
189 |
Type(entity.cache(cache), |
|
190 |
args.map(cache.string(_)), |
|
191 |
abbrev.map(cache.typ(_))) |
|
192 |
} |
|
| 68171 | 193 |
|
| 68418 | 194 |
def read_types(provider: Export.Provider): List[Type] = |
195 |
provider.uncompressed_yxml(export_prefix + "types").map((tree: XML.Tree) => |
|
196 |
{
|
|
| 68714 | 197 |
val (entity, body) = decode_entity(Kind.TYPE, tree) |
| 68418 | 198 |
val (args, abbrev) = |
| 68203 | 199 |
{
|
| 68418 | 200 |
import XML.Decode._ |
201 |
pair(list(string), option(Term_XML.Decode.typ))(body) |
|
202 |
} |
|
203 |
Type(entity, args, abbrev) |
|
204 |
}) |
|
| 68171 | 205 |
|
206 |
||
207 |
/* consts */ |
|
208 |
||
| 68173 | 209 |
sealed case class Const( |
210 |
entity: Entity, typargs: List[String], typ: Term.Typ, abbrev: Option[Term.Term]) |
|
| 68267 | 211 |
{
|
212 |
def cache(cache: Term.Cache): Const = |
|
213 |
Const(entity.cache(cache), |
|
214 |
typargs.map(cache.string(_)), |
|
215 |
cache.typ(typ), |
|
216 |
abbrev.map(cache.term(_))) |
|
217 |
} |
|
| 68171 | 218 |
|
| 68418 | 219 |
def read_consts(provider: Export.Provider): List[Const] = |
220 |
provider.uncompressed_yxml(export_prefix + "consts").map((tree: XML.Tree) => |
|
221 |
{
|
|
| 68714 | 222 |
val (entity, body) = decode_entity(Kind.CONST, tree) |
| 68418 | 223 |
val (args, typ, abbrev) = |
| 68203 | 224 |
{
|
| 68418 | 225 |
import XML.Decode._ |
226 |
triple(list(string), Term_XML.Decode.typ, option(Term_XML.Decode.term))(body) |
|
227 |
} |
|
228 |
Const(entity, args, typ, abbrev) |
|
229 |
}) |
|
| 68208 | 230 |
|
231 |
||
| 68726 | 232 |
/* facts */ |
| 68232 | 233 |
|
| 68726 | 234 |
sealed case class Prop( |
235 |
typargs: List[(String, Term.Sort)], |
|
236 |
args: List[(String, Term.Typ)], |
|
237 |
term: Term.Term) |
|
| 68232 | 238 |
{
|
| 68726 | 239 |
def cache(cache: Term.Cache): Prop = |
240 |
Prop( |
|
241 |
typargs.map({ case (name, sort) => (cache.string(name), cache.sort(sort)) }),
|
|
242 |
args.map({ case (name, typ) => (cache.string(name), cache.typ(typ)) }),
|
|
243 |
cache.term(term)) |
|
| 68232 | 244 |
} |
| 68208 | 245 |
|
| 68726 | 246 |
def decode_prop(body: XML.Body): Prop = |
| 68267 | 247 |
{
|
| 68726 | 248 |
val (typargs, args, t) = |
249 |
{
|
|
250 |
import XML.Decode._ |
|
251 |
import Term_XML.Decode._ |
|
252 |
triple(list(pair(string, sort)), list(pair(string, typ)), term)(body) |
|
253 |
} |
|
254 |
Prop(typargs, args, t) |
|
| 68267 | 255 |
} |
| 68208 | 256 |
|
| 68726 | 257 |
sealed case class Fact_Single(entity: Entity, prop: Prop) |
258 |
{
|
|
259 |
def cache(cache: Term.Cache): Fact_Single = |
|
260 |
Fact_Single(entity.cache(cache), prop.cache(cache)) |
|
261 |
} |
|
262 |
||
263 |
sealed case class Fact_Multi(entity: Entity, props: List[Prop]) |
|
264 |
{
|
|
265 |
def cache(cache: Term.Cache): Fact_Multi = |
|
266 |
Fact_Multi(entity.cache(cache), props.map(_.cache(cache))) |
|
267 |
||
268 |
def split: List[Fact_Single] = |
|
269 |
props match {
|
|
270 |
case List(prop) => List(Fact_Single(entity, prop)) |
|
271 |
case _ => |
|
272 |
for ((prop, i) <- props.zipWithIndex) |
|
273 |
yield Fact_Single(entity.copy(name = entity.name + "(" + (i + 1) + ")"), prop)
|
|
274 |
} |
|
275 |
} |
|
276 |
||
277 |
def read_axioms(provider: Export.Provider): List[Fact_Single] = |
|
| 68418 | 278 |
provider.uncompressed_yxml(export_prefix + "axioms").map((tree: XML.Tree) => |
279 |
{
|
|
| 68714 | 280 |
val (entity, body) = decode_entity(Kind.AXIOM, tree) |
| 68726 | 281 |
val prop = decode_prop(body) |
282 |
Fact_Single(entity, prop) |
|
| 68418 | 283 |
}) |
| 68232 | 284 |
|
| 68726 | 285 |
def read_facts(provider: Export.Provider): List[Fact_Multi] = |
| 68418 | 286 |
provider.uncompressed_yxml(export_prefix + "facts").map((tree: XML.Tree) => |
287 |
{
|
|
| 68714 | 288 |
val (entity, body) = decode_entity(Kind.FACT, tree) |
| 68726 | 289 |
val props = XML.Decode.list(decode_prop)(body) |
290 |
Fact_Multi(entity, props) |
|
| 68418 | 291 |
}) |
| 68264 | 292 |
|
293 |
||
294 |
/* type classes */ |
|
295 |
||
296 |
sealed case class Class( |
|
297 |
entity: Entity, params: List[(String, Term.Typ)], axioms: List[Term.Term]) |
|
| 68267 | 298 |
{
|
299 |
def cache(cache: Term.Cache): Class = |
|
300 |
Class(entity.cache(cache), |
|
301 |
params.map({ case (name, typ) => (cache.string(name), cache.typ(typ)) }),
|
|
302 |
axioms.map(cache.term(_))) |
|
303 |
} |
|
| 68264 | 304 |
|
| 68418 | 305 |
def read_classes(provider: Export.Provider): List[Class] = |
306 |
provider.uncompressed_yxml(export_prefix + "classes").map((tree: XML.Tree) => |
|
307 |
{
|
|
| 68714 | 308 |
val (entity, body) = decode_entity(Kind.CLASS, tree) |
| 68418 | 309 |
val (params, axioms) = |
| 68264 | 310 |
{
|
| 68418 | 311 |
import XML.Decode._ |
312 |
import Term_XML.Decode._ |
|
313 |
pair(list(pair(string, typ)), list(term))(body) |
|
314 |
} |
|
315 |
Class(entity, params, axioms) |
|
316 |
}) |
|
| 68264 | 317 |
|
318 |
||
| 68295 | 319 |
/* sort algebra */ |
320 |
||
321 |
sealed case class Classrel(class_name: String, super_names: List[String]) |
|
322 |
{
|
|
323 |
def cache(cache: Term.Cache): Classrel = |
|
324 |
Classrel(cache.string(class_name), super_names.map(cache.string(_))) |
|
325 |
} |
|
326 |
||
| 68418 | 327 |
def read_classrel(provider: Export.Provider): List[Classrel] = |
328 |
{
|
|
329 |
val body = provider.uncompressed_yxml(export_prefix + "classrel") |
|
330 |
val classrel = |
|
331 |
{
|
|
332 |
import XML.Decode._ |
|
333 |
list(pair(string, list(string)))(body) |
|
334 |
} |
|
335 |
for ((c, cs) <- classrel) yield Classrel(c, cs) |
|
336 |
} |
|
| 68295 | 337 |
|
338 |
sealed case class Arity(type_name: String, domain: List[Term.Sort], codomain: String) |
|
339 |
{
|
|
340 |
def cache(cache: Term.Cache): Arity = |
|
341 |
Arity(cache.string(type_name), domain.map(cache.sort(_)), cache.string(codomain)) |
|
342 |
} |
|
343 |
||
| 68418 | 344 |
def read_arities(provider: Export.Provider): List[Arity] = |
345 |
{
|
|
346 |
val body = provider.uncompressed_yxml(export_prefix + "arities") |
|
347 |
val arities = |
|
348 |
{
|
|
349 |
import XML.Decode._ |
|
350 |
import Term_XML.Decode._ |
|
351 |
list(triple(string, list(sort), string))(body) |
|
352 |
} |
|
353 |
for ((a, b, c) <- arities) yield Arity(a, b, c) |
|
354 |
} |
|
| 68295 | 355 |
|
356 |
||
| 68264 | 357 |
/* HOL typedefs */ |
358 |
||
359 |
sealed case class Typedef(name: String, |
|
360 |
rep_type: Term.Typ, abs_type: Term.Typ, rep_name: String, abs_name: String, axiom_name: String) |
|
| 68267 | 361 |
{
|
362 |
def cache(cache: Term.Cache): Typedef = |
|
363 |
Typedef(cache.string(name), |
|
364 |
cache.typ(rep_type), |
|
365 |
cache.typ(abs_type), |
|
366 |
cache.string(rep_name), |
|
367 |
cache.string(abs_name), |
|
368 |
cache.string(axiom_name)) |
|
369 |
} |
|
| 68264 | 370 |
|
| 68418 | 371 |
def read_typedefs(provider: Export.Provider): List[Typedef] = |
372 |
{
|
|
373 |
val body = provider.uncompressed_yxml(export_prefix + "typedefs") |
|
374 |
val typedefs = |
|
375 |
{
|
|
376 |
import XML.Decode._ |
|
377 |
import Term_XML.Decode._ |
|
378 |
list(pair(string, pair(typ, pair(typ, pair(string, pair(string, string))))))(body) |
|
379 |
} |
|
380 |
for { (name, (rep_type, (abs_type, (rep_name, (abs_name, axiom_name))))) <- typedefs }
|
|
381 |
yield Typedef(name, rep_type, abs_type, rep_name, abs_name, axiom_name) |
|
382 |
} |
|
| 68171 | 383 |
} |