author | wenzelm |
Tue, 25 Sep 2018 20:41:27 +0200 | |
changeset 69069 | b9aca3b9619f |
parent 69023 | cef000855cf4 |
child 69076 | 90cce2f79e77 |
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, |
|
68862 | 33 |
locales: Boolean = true, |
69069
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
34 |
locale_dependencies: Boolean = true, |
68295 | 35 |
classrel: Boolean = true, |
36 |
arities: Boolean = true, |
|
68862 | 37 |
typedefs: Boolean = true, |
68267 | 38 |
cache: Term.Cache = Term.make_cache()): Session = |
68206 | 39 |
{ |
40 |
val thys = |
|
68210 | 41 |
using(store.open_database(session_name))(db => |
68206 | 42 |
{ |
43 |
db.transaction { |
|
68222 | 44 |
Export.read_theory_names(db, session_name).map((theory_name: String) => |
68418 | 45 |
read_theory(Export.Provider.database(db, session_name, theory_name), |
46 |
session_name, theory_name, types = types, consts = consts, |
|
68862 | 47 |
axioms = axioms, facts = facts, classes = classes, locales = locales, |
69069
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
48 |
locale_dependencies = locale_dependencies, classrel = classrel, arities = arities, |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
49 |
typedefs = typedefs, cache = Some(cache))) |
68206 | 50 |
} |
51 |
}) |
|
52 |
||
53 |
val graph0 = |
|
54 |
(Graph.string[Theory] /: thys) { case (g, thy) => g.new_node(thy.name, thy) } |
|
55 |
val graph1 = |
|
56 |
(graph0 /: thys) { case (g0, thy) => |
|
57 |
(g0 /: thy.parents) { case (g1, parent) => |
|
58 |
g1.default_node(parent, empty_theory(parent)).add_edge_acyclic(parent, thy.name) } } |
|
59 |
||
60 |
Session(session_name, graph1) |
|
61 |
} |
|
62 |
||
63 |
||
64 |
||
68203 | 65 |
/** theory content **/ |
66 |
||
68346 | 67 |
val export_prefix: String = "theory/" |
68 |
||
68208 | 69 |
sealed case class Theory(name: String, parents: List[String], |
70 |
types: List[Type], |
|
71 |
consts: List[Const], |
|
68726 | 72 |
axioms: List[Fact_Single], |
73 |
facts: List[Fact_Multi], |
|
68264 | 74 |
classes: List[Class], |
68862 | 75 |
locales: List[Locale], |
69069
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
76 |
locale_dependencies: List[Locale_Dependency], |
68295 | 77 |
classrel: List[Classrel], |
68862 | 78 |
arities: List[Arity], |
79 |
typedefs: List[Typedef]) |
|
68206 | 80 |
{ |
81 |
override def toString: String = name |
|
68267 | 82 |
|
68711 | 83 |
lazy val entities: Set[Long] = |
84 |
Set.empty[Long] ++ |
|
85 |
types.iterator.map(_.entity.serial) ++ |
|
86 |
consts.iterator.map(_.entity.serial) ++ |
|
87 |
axioms.iterator.map(_.entity.serial) ++ |
|
88 |
facts.iterator.map(_.entity.serial) ++ |
|
68862 | 89 |
classes.iterator.map(_.entity.serial) ++ |
69069
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
90 |
locales.iterator.map(_.entity.serial) ++ |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
91 |
locale_dependencies.iterator.map(_.entity.serial) |
68711 | 92 |
|
68267 | 93 |
def cache(cache: Term.Cache): Theory = |
94 |
Theory(cache.string(name), |
|
95 |
parents.map(cache.string(_)), |
|
96 |
types.map(_.cache(cache)), |
|
97 |
consts.map(_.cache(cache)), |
|
98 |
axioms.map(_.cache(cache)), |
|
99 |
facts.map(_.cache(cache)), |
|
100 |
classes.map(_.cache(cache)), |
|
68862 | 101 |
locales.map(_.cache(cache)), |
69069
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
102 |
locale_dependencies.map(_.cache(cache)), |
68295 | 103 |
classrel.map(_.cache(cache)), |
68862 | 104 |
arities.map(_.cache(cache)), |
105 |
typedefs.map(_.cache(cache))) |
|
68206 | 106 |
} |
107 |
||
68295 | 108 |
def empty_theory(name: String): Theory = |
69069
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
109 |
Theory(name, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil, Nil) |
68203 | 110 |
|
68418 | 111 |
def read_theory(provider: Export.Provider, session_name: String, theory_name: String, |
68203 | 112 |
types: Boolean = true, |
68208 | 113 |
consts: Boolean = true, |
68232 | 114 |
axioms: Boolean = true, |
68264 | 115 |
facts: Boolean = true, |
116 |
classes: Boolean = true, |
|
68862 | 117 |
locales: Boolean = true, |
69069
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
118 |
locale_dependencies: Boolean = true, |
68295 | 119 |
classrel: Boolean = true, |
120 |
arities: Boolean = true, |
|
68862 | 121 |
typedefs: Boolean = true, |
68267 | 122 |
cache: Option[Term.Cache] = None): Theory = |
68203 | 123 |
{ |
68206 | 124 |
val parents = |
68418 | 125 |
provider(export_prefix + "parents") match { |
68231 | 126 |
case Some(entry) => split_lines(entry.uncompressed().text) |
68206 | 127 |
case None => |
128 |
error("Missing theory export in session " + quote(session_name) + ": " + |
|
129 |
quote(theory_name)) |
|
130 |
} |
|
68267 | 131 |
val theory = |
132 |
Theory(theory_name, parents, |
|
68418 | 133 |
if (types) read_types(provider) else Nil, |
134 |
if (consts) read_consts(provider) else Nil, |
|
135 |
if (axioms) read_axioms(provider) else Nil, |
|
136 |
if (facts) read_facts(provider) else Nil, |
|
137 |
if (classes) read_classes(provider) else Nil, |
|
68862 | 138 |
if (locales) read_locales(provider) else Nil, |
69069
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
139 |
if (locale_dependencies) read_locale_dependencies(provider) else Nil, |
68418 | 140 |
if (classrel) read_classrel(provider) else Nil, |
68862 | 141 |
if (arities) read_arities(provider) else Nil, |
142 |
if (typedefs) read_typedefs(provider) else Nil) |
|
68267 | 143 |
if (cache.isDefined) theory.cache(cache.get) else theory |
68203 | 144 |
} |
145 |
||
68711 | 146 |
def read_pure_theory(store: Sessions.Store, cache: Option[Term.Cache] = None): Theory = |
68710 | 147 |
{ |
148 |
val session_name = Thy_Header.PURE |
|
149 |
val theory_name = Thy_Header.PURE |
|
150 |
||
151 |
using(store.open_database(session_name))(db => |
|
152 |
{ |
|
153 |
db.transaction { |
|
154 |
read_theory(Export.Provider.database(db, session_name, theory_name), |
|
68711 | 155 |
session_name, theory_name, cache = cache) |
68710 | 156 |
} |
157 |
}) |
|
158 |
} |
|
159 |
||
68203 | 160 |
|
68171 | 161 |
/* entities */ |
162 |
||
68714 | 163 |
object Kind extends Enumeration |
68171 | 164 |
{ |
68714 | 165 |
val TYPE = Value("type") |
166 |
val CONST = Value("const") |
|
167 |
val AXIOM = Value("axiom") |
|
168 |
val FACT = Value("fact") |
|
169 |
val CLASS = Value("class") |
|
68862 | 170 |
val LOCALE = Value("locale") |
69069
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
171 |
val LOCALE_DEPENDENCY = Value("locale_dependency") |
68714 | 172 |
} |
173 |
||
68835 | 174 |
sealed case class Entity( |
68997 | 175 |
kind: Kind.Value, name: String, xname: String, pos: Position.T, id: Option[Long], serial: Long) |
68714 | 176 |
{ |
68718 | 177 |
override def toString: String = kind.toString + " " + quote(name) |
68267 | 178 |
|
179 |
def cache(cache: Term.Cache): Entity = |
|
68997 | 180 |
Entity(kind, cache.string(name), cache.string(xname), cache.position(pos), id, serial) |
68171 | 181 |
} |
182 |
||
68714 | 183 |
def decode_entity(kind: Kind.Value, tree: XML.Tree): (Entity, XML.Body) = |
68171 | 184 |
{ |
185 |
def err(): Nothing = throw new XML.XML_Body(List(tree)) |
|
186 |
||
187 |
tree match { |
|
188 |
case XML.Elem(Markup(Markup.ENTITY, props), body) => |
|
189 |
val name = Markup.Name.unapply(props) getOrElse err() |
|
68997 | 190 |
val xname = Markup.XName.unapply(props) getOrElse err() |
68830
44ec6fdaacf8
retain original id, which is command_id/exec_id for PIDE;
wenzelm
parents:
68726
diff
changeset
|
191 |
val pos = props.filter({ case (a, _) => Markup.POSITION_PROPERTIES(a) && a != Markup.ID }) |
68835 | 192 |
val id = Position.Id.unapply(props) |
68171 | 193 |
val serial = Markup.Serial.unapply(props) getOrElse err() |
68997 | 194 |
(Entity(kind, name, xname, pos, id, serial), body) |
68171 | 195 |
case _ => err() |
196 |
} |
|
197 |
} |
|
198 |
||
199 |
||
69003 | 200 |
/* infix syntax */ |
201 |
||
202 |
object Assoc extends Enumeration |
|
203 |
{ |
|
204 |
val NO_ASSOC, LEFT_ASSOC, RIGHT_ASSOC = Value |
|
205 |
} |
|
206 |
||
207 |
sealed case class Infix(assoc: Assoc.Value, delim: String, pri: Int) |
|
208 |
||
209 |
def decode_infix(body: XML.Body): Infix = |
|
210 |
{ |
|
211 |
import XML.Decode._ |
|
212 |
val (ass, delim, pri) = triple(int, string, int)(body) |
|
213 |
Infix(Assoc(ass), delim, pri) |
|
214 |
} |
|
215 |
||
216 |
||
68171 | 217 |
/* types */ |
218 |
||
69003 | 219 |
sealed case class Type( |
220 |
entity: Entity, syntax: Option[Infix], args: List[String], abbrev: Option[Term.Typ]) |
|
68267 | 221 |
{ |
222 |
def cache(cache: Term.Cache): Type = |
|
223 |
Type(entity.cache(cache), |
|
69003 | 224 |
syntax, |
68267 | 225 |
args.map(cache.string(_)), |
226 |
abbrev.map(cache.typ(_))) |
|
227 |
} |
|
68171 | 228 |
|
68418 | 229 |
def read_types(provider: Export.Provider): List[Type] = |
230 |
provider.uncompressed_yxml(export_prefix + "types").map((tree: XML.Tree) => |
|
231 |
{ |
|
68714 | 232 |
val (entity, body) = decode_entity(Kind.TYPE, tree) |
69003 | 233 |
val (syntax, args, abbrev) = |
68203 | 234 |
{ |
68418 | 235 |
import XML.Decode._ |
69003 | 236 |
triple(option(decode_infix), list(string), option(Term_XML.Decode.typ))(body) |
68418 | 237 |
} |
69003 | 238 |
Type(entity, syntax, args, abbrev) |
68418 | 239 |
}) |
68171 | 240 |
|
241 |
||
242 |
/* consts */ |
|
243 |
||
68173 | 244 |
sealed case class Const( |
69003 | 245 |
entity: Entity, |
246 |
syntax: Option[Infix], |
|
247 |
typargs: List[String], |
|
248 |
typ: Term.Typ, |
|
249 |
abbrev: Option[Term.Term]) |
|
68267 | 250 |
{ |
251 |
def cache(cache: Term.Cache): Const = |
|
252 |
Const(entity.cache(cache), |
|
69003 | 253 |
syntax, |
68267 | 254 |
typargs.map(cache.string(_)), |
255 |
cache.typ(typ), |
|
256 |
abbrev.map(cache.term(_))) |
|
257 |
} |
|
68171 | 258 |
|
68418 | 259 |
def read_consts(provider: Export.Provider): List[Const] = |
260 |
provider.uncompressed_yxml(export_prefix + "consts").map((tree: XML.Tree) => |
|
261 |
{ |
|
68714 | 262 |
val (entity, body) = decode_entity(Kind.CONST, tree) |
69003 | 263 |
val (syntax, (args, (typ, abbrev))) = |
68203 | 264 |
{ |
68418 | 265 |
import XML.Decode._ |
69003 | 266 |
pair(option(decode_infix), pair(list(string), |
267 |
pair(Term_XML.Decode.typ, option(Term_XML.Decode.term))))(body) |
|
68418 | 268 |
} |
69003 | 269 |
Const(entity, syntax, args, typ, abbrev) |
68418 | 270 |
}) |
68208 | 271 |
|
272 |
||
68726 | 273 |
/* facts */ |
68232 | 274 |
|
68726 | 275 |
sealed case class Prop( |
276 |
typargs: List[(String, Term.Sort)], |
|
277 |
args: List[(String, Term.Typ)], |
|
278 |
term: Term.Term) |
|
68232 | 279 |
{ |
68726 | 280 |
def cache(cache: Term.Cache): Prop = |
281 |
Prop( |
|
282 |
typargs.map({ case (name, sort) => (cache.string(name), cache.sort(sort)) }), |
|
283 |
args.map({ case (name, typ) => (cache.string(name), cache.typ(typ)) }), |
|
284 |
cache.term(term)) |
|
68232 | 285 |
} |
68208 | 286 |
|
68726 | 287 |
def decode_prop(body: XML.Body): Prop = |
68267 | 288 |
{ |
68726 | 289 |
val (typargs, args, t) = |
290 |
{ |
|
291 |
import XML.Decode._ |
|
292 |
import Term_XML.Decode._ |
|
293 |
triple(list(pair(string, sort)), list(pair(string, typ)), term)(body) |
|
294 |
} |
|
295 |
Prop(typargs, args, t) |
|
68267 | 296 |
} |
68208 | 297 |
|
68726 | 298 |
sealed case class Fact_Single(entity: Entity, prop: Prop) |
299 |
{ |
|
300 |
def cache(cache: Term.Cache): Fact_Single = |
|
301 |
Fact_Single(entity.cache(cache), prop.cache(cache)) |
|
302 |
} |
|
303 |
||
304 |
sealed case class Fact_Multi(entity: Entity, props: List[Prop]) |
|
305 |
{ |
|
306 |
def cache(cache: Term.Cache): Fact_Multi = |
|
307 |
Fact_Multi(entity.cache(cache), props.map(_.cache(cache))) |
|
308 |
||
309 |
def split: List[Fact_Single] = |
|
310 |
props match { |
|
311 |
case List(prop) => List(Fact_Single(entity, prop)) |
|
312 |
case _ => |
|
313 |
for ((prop, i) <- props.zipWithIndex) |
|
314 |
yield Fact_Single(entity.copy(name = entity.name + "(" + (i + 1) + ")"), prop) |
|
315 |
} |
|
316 |
} |
|
317 |
||
318 |
def read_axioms(provider: Export.Provider): List[Fact_Single] = |
|
68418 | 319 |
provider.uncompressed_yxml(export_prefix + "axioms").map((tree: XML.Tree) => |
320 |
{ |
|
68714 | 321 |
val (entity, body) = decode_entity(Kind.AXIOM, tree) |
68726 | 322 |
val prop = decode_prop(body) |
323 |
Fact_Single(entity, prop) |
|
68418 | 324 |
}) |
68232 | 325 |
|
68726 | 326 |
def read_facts(provider: Export.Provider): List[Fact_Multi] = |
68418 | 327 |
provider.uncompressed_yxml(export_prefix + "facts").map((tree: XML.Tree) => |
328 |
{ |
|
68714 | 329 |
val (entity, body) = decode_entity(Kind.FACT, tree) |
68726 | 330 |
val props = XML.Decode.list(decode_prop)(body) |
331 |
Fact_Multi(entity, props) |
|
68418 | 332 |
}) |
68264 | 333 |
|
334 |
||
335 |
/* type classes */ |
|
336 |
||
337 |
sealed case class Class( |
|
69023
cef000855cf4
clarified standardization of variables, with proper treatment of local variables;
wenzelm
parents:
69019
diff
changeset
|
338 |
entity: Entity, params: List[(String, Term.Typ)], axioms: List[Prop]) |
68267 | 339 |
{ |
340 |
def cache(cache: Term.Cache): Class = |
|
341 |
Class(entity.cache(cache), |
|
342 |
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
|
343 |
axioms.map(_.cache(cache))) |
68267 | 344 |
} |
68264 | 345 |
|
68418 | 346 |
def read_classes(provider: Export.Provider): List[Class] = |
347 |
provider.uncompressed_yxml(export_prefix + "classes").map((tree: XML.Tree) => |
|
348 |
{ |
|
68714 | 349 |
val (entity, body) = decode_entity(Kind.CLASS, tree) |
68418 | 350 |
val (params, axioms) = |
68264 | 351 |
{ |
68418 | 352 |
import XML.Decode._ |
353 |
import Term_XML.Decode._ |
|
69023
cef000855cf4
clarified standardization of variables, with proper treatment of local variables;
wenzelm
parents:
69019
diff
changeset
|
354 |
pair(list(pair(string, typ)), list(decode_prop))(body) |
68418 | 355 |
} |
356 |
Class(entity, params, axioms) |
|
357 |
}) |
|
68264 | 358 |
|
359 |
||
68862 | 360 |
/* locales */ |
361 |
||
362 |
sealed case class Locale( |
|
69019 | 363 |
entity: Entity, |
364 |
typargs: List[(String, Term.Sort)], |
|
365 |
args: List[(String, Term.Typ)], |
|
69023
cef000855cf4
clarified standardization of variables, with proper treatment of local variables;
wenzelm
parents:
69019
diff
changeset
|
366 |
axioms: List[Prop]) |
68862 | 367 |
{ |
368 |
def cache(cache: Term.Cache): Locale = |
|
369 |
Locale(entity.cache(cache), |
|
68864 | 370 |
typargs.map({ case (name, sort) => (cache.string(name), cache.sort(sort)) }), |
371 |
args.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
|
372 |
axioms.map(_.cache(cache))) |
68862 | 373 |
} |
374 |
||
375 |
def read_locales(provider: Export.Provider): List[Locale] = |
|
376 |
provider.uncompressed_yxml(export_prefix + "locales").map((tree: XML.Tree) => |
|
377 |
{ |
|
378 |
val (entity, body) = decode_entity(Kind.LOCALE, tree) |
|
69019 | 379 |
val (typargs, args, axioms) = |
68862 | 380 |
{ |
381 |
import XML.Decode._ |
|
382 |
import Term_XML.Decode._ |
|
69023
cef000855cf4
clarified standardization of variables, with proper treatment of local variables;
wenzelm
parents:
69019
diff
changeset
|
383 |
triple(list(pair(string, sort)), list(pair(string, typ)), list(decode_prop))(body) |
68862 | 384 |
} |
69019 | 385 |
Locale(entity, typargs, args, axioms) |
68862 | 386 |
}) |
387 |
||
388 |
||
69069
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
389 |
/* locale dependencies */ |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
390 |
|
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
391 |
sealed case class Locale_Dependency( |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
392 |
entity: Entity, |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
393 |
source: String, |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
394 |
target: String, |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
395 |
prefix: List[(String, Boolean)], |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
396 |
subst_types: List[((String, Term.Sort), Term.Typ)], |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
397 |
subst_terms: List[((String, Term.Typ), Term.Term)]) |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
398 |
{ |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
399 |
def cache(cache: Term.Cache): Locale_Dependency = |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
400 |
Locale_Dependency(entity.cache(cache), |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
401 |
cache.string(source), |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
402 |
cache.string(target), |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
403 |
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
|
404 |
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
|
405 |
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
|
406 |
|
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
407 |
def is_inclusion: Boolean = |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
408 |
subst_types.isEmpty && subst_terms.isEmpty |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
409 |
} |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
410 |
|
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
411 |
def read_locale_dependencies(provider: Export.Provider): List[Locale_Dependency] = |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
412 |
provider.uncompressed_yxml(export_prefix + "locale_dependencies").map((tree: XML.Tree) => |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
413 |
{ |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
414 |
val (entity, body) = decode_entity(Kind.LOCALE_DEPENDENCY, tree) |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
415 |
val (source, (target, (prefix, (subst_types, subst_terms)))) = |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
416 |
{ |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
417 |
import XML.Decode._ |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
418 |
import Term_XML.Decode._ |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
419 |
pair(string, pair(string, pair(list(pair(string, bool)), |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
420 |
pair(list(pair(pair(string, sort), typ)), list(pair(pair(string, typ), term))))))(body) |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
421 |
} |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
422 |
Locale_Dependency(entity, source, target, prefix, subst_types, subst_terms) |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
423 |
}) |
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
424 |
|
b9aca3b9619f
export locale dependencies, with approx. morphism as type/term substitution;
wenzelm
parents:
69023
diff
changeset
|
425 |
|
68295 | 426 |
/* sort algebra */ |
427 |
||
428 |
sealed case class Classrel(class_name: String, super_names: List[String]) |
|
429 |
{ |
|
430 |
def cache(cache: Term.Cache): Classrel = |
|
431 |
Classrel(cache.string(class_name), super_names.map(cache.string(_))) |
|
432 |
} |
|
433 |
||
68418 | 434 |
def read_classrel(provider: Export.Provider): List[Classrel] = |
435 |
{ |
|
436 |
val body = provider.uncompressed_yxml(export_prefix + "classrel") |
|
437 |
val classrel = |
|
438 |
{ |
|
439 |
import XML.Decode._ |
|
440 |
list(pair(string, list(string)))(body) |
|
441 |
} |
|
442 |
for ((c, cs) <- classrel) yield Classrel(c, cs) |
|
443 |
} |
|
68295 | 444 |
|
445 |
sealed case class Arity(type_name: String, domain: List[Term.Sort], codomain: String) |
|
446 |
{ |
|
447 |
def cache(cache: Term.Cache): Arity = |
|
448 |
Arity(cache.string(type_name), domain.map(cache.sort(_)), cache.string(codomain)) |
|
449 |
} |
|
450 |
||
68418 | 451 |
def read_arities(provider: Export.Provider): List[Arity] = |
452 |
{ |
|
453 |
val body = provider.uncompressed_yxml(export_prefix + "arities") |
|
454 |
val arities = |
|
455 |
{ |
|
456 |
import XML.Decode._ |
|
457 |
import Term_XML.Decode._ |
|
458 |
list(triple(string, list(sort), string))(body) |
|
459 |
} |
|
460 |
for ((a, b, c) <- arities) yield Arity(a, b, c) |
|
461 |
} |
|
68295 | 462 |
|
463 |
||
68264 | 464 |
/* HOL typedefs */ |
465 |
||
466 |
sealed case class Typedef(name: String, |
|
467 |
rep_type: Term.Typ, abs_type: Term.Typ, rep_name: String, abs_name: String, axiom_name: String) |
|
68267 | 468 |
{ |
469 |
def cache(cache: Term.Cache): Typedef = |
|
470 |
Typedef(cache.string(name), |
|
471 |
cache.typ(rep_type), |
|
472 |
cache.typ(abs_type), |
|
473 |
cache.string(rep_name), |
|
474 |
cache.string(abs_name), |
|
475 |
cache.string(axiom_name)) |
|
476 |
} |
|
68264 | 477 |
|
68418 | 478 |
def read_typedefs(provider: Export.Provider): List[Typedef] = |
479 |
{ |
|
480 |
val body = provider.uncompressed_yxml(export_prefix + "typedefs") |
|
481 |
val typedefs = |
|
482 |
{ |
|
483 |
import XML.Decode._ |
|
484 |
import Term_XML.Decode._ |
|
485 |
list(pair(string, pair(typ, pair(typ, pair(string, pair(string, string))))))(body) |
|
486 |
} |
|
487 |
for { (name, (rep_type, (abs_type, (rep_name, (abs_name, axiom_name))))) <- typedefs } |
|
488 |
yield Typedef(name, rep_type, abs_type, rep_name, abs_name, axiom_name) |
|
489 |
} |
|
68171 | 490 |
} |