author | Fabian Huch <huch@in.tum.de> |
Sun, 17 Mar 2024 21:04:00 +0100 | |
changeset 79926 | dc4a387a6f02 |
parent 79844 | ac40138234ce |
child 80303 | 11fee9e6ba43 |
permissions | -rw-r--r-- |
79502 | 1 |
/* Title: Pure/Build/export.scala |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
3 |
|
79502 | 4 |
Manage per-session theory exports: compressed blobs. |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
5 |
*/ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
6 |
|
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
7 |
package isabelle |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
8 |
|
68116 | 9 |
|
10 |
import scala.annotation.tailrec |
|
11 |
import scala.util.matching.Regex |
|
78541
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
12 |
import scala.collection.mutable |
68116 | 13 |
|
14 |
||
75393 | 15 |
object Export { |
72691 | 16 |
/* artefact names */ |
17 |
||
78531 | 18 |
val DOCUMENT_ID: String = "PIDE/document_id" |
19 |
val FILES: String = "PIDE/files" |
|
20 |
val MARKUP: String = "PIDE/markup" |
|
21 |
val MESSAGES: String = "PIDE/messages" |
|
22 |
val DOCUMENT_PREFIX: String = "document/" |
|
23 |
val DOCUMENT_LATEX: String = DOCUMENT_PREFIX + "latex" |
|
72691 | 24 |
val THEORY_PREFIX: String = "theory/" |
25 |
val PROOFS_PREFIX: String = "proofs/" |
|
69634 | 26 |
|
69756 | 27 |
def explode_name(s: String): List[String] = space_explode('/', s) |
28 |
def implode_name(elems: Iterable[String]): String = elems.mkString("/") |
|
69634 | 29 |
|
30 |
||
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
31 |
/* SQL data model */ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
32 |
|
78396
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
33 |
object private_data extends SQL.Data() { |
79844
ac40138234ce
tuned signature: more uniform SQL.Data instances;
wenzelm
parents:
79675
diff
changeset
|
34 |
override lazy val tables: SQL.Tables = SQL.Tables(Base.table) |
78210 | 35 |
|
78208 | 36 |
object Base { |
37 |
val session_name = SQL.Column.string("session_name").make_primary_key |
|
38 |
val theory_name = SQL.Column.string("theory_name").make_primary_key |
|
39 |
val name = SQL.Column.string("name").make_primary_key |
|
40 |
val executable = SQL.Column.bool("executable") |
|
41 |
val compressed = SQL.Column.bool("compressed") |
|
42 |
val body = SQL.Column.bytes("body") |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
43 |
|
78208 | 44 |
val table = |
45 |
SQL.Table("isabelle_exports", |
|
46 |
List(session_name, theory_name, name, executable, compressed, body)) |
|
47 |
} |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
48 |
|
68116 | 49 |
def where_equal(session_name: String, theory_name: String = "", name: String = ""): SQL.Source = |
78153 | 50 |
SQL.where_and( |
78208 | 51 |
Base.session_name.equal(session_name), |
52 |
if_proper(theory_name, Base.theory_name.equal(theory_name)), |
|
53 |
if_proper(name, Base.name.equal(name))) |
|
78209 | 54 |
|
78260
0a7f7abbe4f0
more robust transaction_lock: avoid overlapping data spaces;
wenzelm
parents:
78211
diff
changeset
|
55 |
def clean_session(db: SQL.Database, session_name: String): Unit = |
0a7f7abbe4f0
more robust transaction_lock: avoid overlapping data spaces;
wenzelm
parents:
78211
diff
changeset
|
56 |
db.execute_statement(Base.table.delete(sql = where_equal(session_name))) |
0a7f7abbe4f0
more robust transaction_lock: avoid overlapping data spaces;
wenzelm
parents:
78211
diff
changeset
|
57 |
|
78541
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
58 |
def known_entries(db: SQL.Database, entry_names: Iterable[Entry_Name]): Set[Entry_Name] = { |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
59 |
val it = entry_names.iterator |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
60 |
if (it.isEmpty) Set.empty[Entry_Name] |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
61 |
else { |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
62 |
val sql_preds = |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
63 |
List.from( |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
64 |
for (entry_name <- it) yield { |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
65 |
SQL.and( |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
66 |
Base.session_name.equal(entry_name.session), |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
67 |
Base.theory_name.equal(entry_name.theory), |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
68 |
Base.name.equal(entry_name.name) |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
69 |
) |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
70 |
}) |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
71 |
db.execute_query_statement( |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
72 |
Base.table.select(List(Base.session_name, Base.theory_name, Base.name), |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
73 |
sql = SQL.where(SQL.OR(sql_preds))), |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
74 |
Set.from[Entry_Name], |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
75 |
{ res => |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
76 |
val session_name = res.string(Base.session_name) |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
77 |
val theory_name = res.string(Base.theory_name) |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
78 |
val name = res.string(Base.name) |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
79 |
Entry_Name(session_name, theory_name, name) |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
80 |
}) |
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
81 |
} |
78209 | 82 |
} |
83 |
||
84 |
def read_entry(db: SQL.Database, entry_name: Entry_Name, cache: XML.Cache): Option[Entry] = |
|
85 |
db.execute_query_statementO[Entry]( |
|
78210 | 86 |
Base.table.select(List(Base.executable, Base.compressed, Base.body), |
78396
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
87 |
sql = private_data.where_equal(entry_name.session, entry_name.theory, entry_name.name)), |
78209 | 88 |
{ res => |
78210 | 89 |
val executable = res.bool(Base.executable) |
90 |
val compressed = res.bool(Base.compressed) |
|
91 |
val bytes = res.bytes(Base.body) |
|
78209 | 92 |
val body = Future.value(compressed, bytes) |
93 |
Entry(entry_name, executable, body, cache) |
|
94 |
} |
|
95 |
) |
|
96 |
||
78554
54991440905e
clarified signature: proper treatment of implicit state (amending d0c9d277620e);
wenzelm
parents:
78551
diff
changeset
|
97 |
def write_entries(db: SQL.Database, entries: List[Entry]): Unit = |
78551
d0c9d277620e
clarified signature: more robust treatment of implicit state;
wenzelm
parents:
78543
diff
changeset
|
98 |
db.execute_batch_statement(Base.table.insert(), batch = |
78554
54991440905e
clarified signature: proper treatment of implicit state (amending d0c9d277620e);
wenzelm
parents:
78551
diff
changeset
|
99 |
for (entry <- entries) yield { (stmt: SQL.Statement) => |
54991440905e
clarified signature: proper treatment of implicit state (amending d0c9d277620e);
wenzelm
parents:
78551
diff
changeset
|
100 |
val (compressed, bs) = entry.body.join |
54991440905e
clarified signature: proper treatment of implicit state (amending d0c9d277620e);
wenzelm
parents:
78551
diff
changeset
|
101 |
stmt.string(1) = entry.session_name |
54991440905e
clarified signature: proper treatment of implicit state (amending d0c9d277620e);
wenzelm
parents:
78551
diff
changeset
|
102 |
stmt.string(2) = entry.theory_name |
54991440905e
clarified signature: proper treatment of implicit state (amending d0c9d277620e);
wenzelm
parents:
78551
diff
changeset
|
103 |
stmt.string(3) = entry.name |
54991440905e
clarified signature: proper treatment of implicit state (amending d0c9d277620e);
wenzelm
parents:
78551
diff
changeset
|
104 |
stmt.bool(4) = entry.executable |
54991440905e
clarified signature: proper treatment of implicit state (amending d0c9d277620e);
wenzelm
parents:
78551
diff
changeset
|
105 |
stmt.bool(5) = compressed |
54991440905e
clarified signature: proper treatment of implicit state (amending d0c9d277620e);
wenzelm
parents:
78551
diff
changeset
|
106 |
stmt.bytes(6) = bs |
78541
d95497dcd9bc
more scalable write_entries and Export.consumer via db.execute_batch_statement;
wenzelm
parents:
78531
diff
changeset
|
107 |
}) |
78210 | 108 |
|
109 |
def read_theory_names(db: SQL.Database, session_name: String): List[String] = |
|
110 |
db.execute_query_statement( |
|
111 |
Base.table.select(List(Base.theory_name), distinct = true, |
|
78396
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
112 |
sql = private_data.where_equal(session_name) + SQL.order_by(List(Base.theory_name))), |
78210 | 113 |
List.from[String], res => res.string(Base.theory_name)) |
114 |
||
115 |
def read_entry_names(db: SQL.Database, session_name: String): List[Entry_Name] = |
|
116 |
db.execute_query_statement( |
|
117 |
Base.table.select(List(Base.theory_name, Base.name), |
|
78396
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
118 |
sql = private_data.where_equal(session_name)) + SQL.order_by(List(Base.theory_name, Base.name)), |
78210 | 119 |
List.from[Entry_Name], |
120 |
{ res => |
|
121 |
Entry_Name( |
|
122 |
session = session_name, |
|
123 |
theory = res.string(Base.theory_name), |
|
124 |
name = res.string(Base.name)) |
|
125 |
}) |
|
68116 | 126 |
} |
127 |
||
75674 | 128 |
def compound_name(a: String, b: String): String = |
129 |
if (a.isEmpty) b else a + ":" + b |
|
130 |
||
75672 | 131 |
sealed case class Entry_Name(session: String = "", theory: String = "", name: String = "") { |
75674 | 132 |
val compound_name: String = Export.compound_name(theory, name) |
133 |
||
75680 | 134 |
def make_path(prune: Int = 0): Path = { |
75675 | 135 |
val elems = theory :: space_explode('/', name) |
136 |
if (elems.length < prune + 1) { |
|
137 |
error("Cannot prune path by " + prune + " element(s): " + Path.make(elems)) |
|
138 |
} |
|
75680 | 139 |
else Path.make(elems.drop(prune)) |
75675 | 140 |
} |
68222 | 141 |
} |
142 |
||
68104 | 143 |
def message(msg: String, theory_name: String, name: String): String = |
144 |
msg + " " + quote(name) + " for theory " + quote(theory_name) |
|
145 |
||
76851 | 146 |
object Entry { |
147 |
def apply( |
|
148 |
entry_name: Entry_Name, |
|
149 |
executable: Boolean, |
|
150 |
body: Future[(Boolean, Bytes)], |
|
151 |
cache: XML.Cache |
|
152 |
): Entry = new Entry(entry_name, executable, body, cache) |
|
153 |
||
154 |
def empty(theory_name: String, name: String): Entry = |
|
155 |
Entry(Entry_Name(theory = theory_name, name = name), |
|
156 |
false, Future.value(false, Bytes.empty), XML.Cache.none) |
|
72634
5cea0993ee4f
clarified access to single database server vs. collection of database files;
wenzelm
parents:
72375
diff
changeset
|
157 |
|
76851 | 158 |
def make( |
159 |
session_name: String, |
|
160 |
args: Protocol.Export.Args, |
|
161 |
bytes: Bytes, |
|
162 |
cache: XML.Cache |
|
163 |
): Entry = { |
|
164 |
val body = |
|
165 |
if (args.compress) Future.fork(bytes.maybe_compress(cache = cache.compress)) |
|
166 |
else Future.value((false, bytes)) |
|
167 |
val entry_name = |
|
168 |
Entry_Name(session = session_name, theory = args.theory_name, name = args.name) |
|
169 |
Entry(entry_name, args.executable, body, cache) |
|
170 |
} |
|
171 |
} |
|
172 |
||
173 |
final class Entry private( |
|
174 |
val entry_name: Entry_Name, |
|
175 |
val executable: Boolean, |
|
78209 | 176 |
val body: Future[(Boolean, Bytes)], |
177 |
val cache: XML.Cache |
|
75393 | 178 |
) { |
75671 | 179 |
def session_name: String = entry_name.session |
180 |
def theory_name: String = entry_name.theory |
|
181 |
def name: String = entry_name.name |
|
69635 | 182 |
override def toString: String = name |
69630 | 183 |
|
76851 | 184 |
def is_finished: Boolean = body.is_finished |
185 |
def cancel(): Unit = body.cancel() |
|
186 |
||
75674 | 187 |
def compound_name: String = entry_name.compound_name |
71141 | 188 |
|
72691 | 189 |
def name_has_prefix(s: String): Boolean = name.startsWith(s) |
69634 | 190 |
val name_elems: List[String] = explode_name(name) |
191 |
||
192 |
def name_extends(elems: List[String]): Boolean = |
|
193 |
name_elems.startsWith(elems) && name_elems != elems |
|
194 |
||
76852 | 195 |
def bytes: Bytes = { |
196 |
val (compressed, bs) = body.join |
|
197 |
if (compressed) bs.uncompress(cache = cache.compress) else bs |
|
69629 | 198 |
} |
199 |
||
76852 | 200 |
def text: String = bytes.text |
201 |
||
202 |
def yxml: XML.Body = YXML.parse_body(UTF8.decode_permissive(bytes), cache = cache) |
|
68116 | 203 |
} |
204 |
||
75393 | 205 |
def make_regex(pattern: String): Regex = { |
68116 | 206 |
@tailrec def make(result: List[String], depth: Int, chs: List[Char]): Regex = |
207 |
chs match { |
|
208 |
case '*' :: '*' :: rest => make("[^:]*" :: result, depth, rest) |
|
209 |
case '*' :: rest => make("[^:/]*" :: result, depth, rest) |
|
210 |
case '?' :: rest => make("[^:/]" :: result, depth, rest) |
|
211 |
case '\\' :: c :: rest => make(("\\" + c) :: result, depth, rest) |
|
212 |
case '{' :: rest => make("(" :: result, depth + 1, rest) |
|
213 |
case ',' :: rest if depth > 0 => make("|" :: result, depth, rest) |
|
214 |
case '}' :: rest if depth > 0 => make(")" :: result, depth - 1, rest) |
|
215 |
case c :: rest if ".+()".contains(c) => make(("\\" + c) :: result, depth, rest) |
|
216 |
case c :: rest => make(c.toString :: result, depth, rest) |
|
217 |
case Nil => result.reverse.mkString.r |
|
218 |
} |
|
219 |
make(Nil, 0, pattern.toList) |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
220 |
} |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
221 |
|
75674 | 222 |
def make_matcher(pats: List[String]): Entry_Name => Boolean = { |
75658
5905c7f484b3
clarified signature: read_theory_exports is already ordered;
wenzelm
parents:
75394
diff
changeset
|
223 |
val regs = pats.map(make_regex) |
76098 | 224 |
(entry_name: Entry_Name) => regs.exists(_.matches(entry_name.compound_name)) |
68151 | 225 |
} |
226 |
||
78260
0a7f7abbe4f0
more robust transaction_lock: avoid overlapping data spaces;
wenzelm
parents:
78211
diff
changeset
|
227 |
def clean_session(db: SQL.Database, session_name: String): Unit = |
78396
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
228 |
private_data.transaction_lock(db, create = true, label = "Export.clean_session") { |
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
229 |
private_data.clean_session(db, session_name) |
78356 | 230 |
} |
78260
0a7f7abbe4f0
more robust transaction_lock: avoid overlapping data spaces;
wenzelm
parents:
78211
diff
changeset
|
231 |
|
78211 | 232 |
def read_theory_names(db: SQL.Database, session_name: String): List[String] = |
78396
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
233 |
private_data.transaction_lock(db, label = "Export.read_theory_names") { |
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
234 |
private_data.read_theory_names(db, session_name) |
78356 | 235 |
} |
78211 | 236 |
|
237 |
def read_entry_names(db: SQL.Database, session_name: String): List[Entry_Name] = |
|
78396
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
238 |
private_data.transaction_lock(db, label = "Export.read_entry_names") { |
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
239 |
private_data.read_entry_names(db, session_name) |
78356 | 240 |
} |
78211 | 241 |
|
242 |
def read_entry(db: SQL.Database, entry_name: Entry_Name, cache: XML.Cache): Option[Entry] = |
|
78396
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
243 |
private_data.transaction_lock(db, label = "Export.read_entry") { |
7853d9072d1b
renamed object Data to private_data, to emphasize its intended scope (but it is publicly accessible in the database);
wenzelm
parents:
78379
diff
changeset
|
244 |
private_data.read_entry(db, entry_name, cache) |
78356 | 245 |
} |
78211 | 246 |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
247 |
|
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
248 |
/* database consumer thread */ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
249 |
|
74255 | 250 |
def consumer(db: SQL.Database, cache: XML.Cache, progress: Progress = new Progress): Consumer = |
251 |
new Consumer(db, cache, progress) |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
252 |
|
75393 | 253 |
class Consumer private[Export](db: SQL.Database, cache: XML.Cache, progress: Progress) { |
68924 | 254 |
private val errors = Synchronized[List[String]](Nil) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
255 |
|
78564 | 256 |
private def consume(args: List[(Entry, Boolean)]): List[Exn.Result[Unit]] = { |
257 |
for ((entry, _) <- args) { |
|
258 |
if (progress.stopped) entry.cancel() else entry.body.join |
|
259 |
} |
|
260 |
private_data.transaction_lock(db, label = "Export.consumer(" + args.length + ")") { |
|
261 |
var known = private_data.known_entries(db, args.map(p => p._1.entry_name)) |
|
262 |
val buffer = new mutable.ListBuffer[Option[Entry]] |
|
263 |
||
264 |
for ((entry, strict) <- args) { |
|
265 |
if (progress.stopped || known(entry.entry_name)) { |
|
266 |
buffer += None |
|
267 |
if (strict && known(entry.entry_name)) { |
|
268 |
val msg = message("Duplicate export", entry.theory_name, entry.name) |
|
269 |
errors.change(msg :: _) |
|
270 |
} |
|
271 |
} |
|
272 |
else { |
|
273 |
buffer += Some(entry) |
|
274 |
known += entry.entry_name |
|
275 |
} |
|
276 |
} |
|
277 |
||
278 |
val entries = buffer.toList |
|
279 |
try { |
|
280 |
private_data.write_entries(db, entries.flatten) |
|
281 |
val ok = Exn.Res[Unit](()) |
|
282 |
entries.map(_ => ok) |
|
283 |
} |
|
284 |
catch { |
|
285 |
case exn: Throwable => |
|
286 |
val err = Exn.Exn[Unit](exn) |
|
287 |
entries.map(_ => err) |
|
288 |
} |
|
289 |
} |
|
290 |
} |
|
291 |
||
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
292 |
private val consumer = |
71145
2f782d5f5d5a
improved performance of session exports via bulk transactions;
wenzelm
parents:
71141
diff
changeset
|
293 |
Consumer_Thread.fork_bulk[(Entry, Boolean)](name = "export")( |
76851 | 294 |
bulk = { case (entry, _) => entry.is_finished }, |
78564 | 295 |
consume = args => (args.grouped(20).toList.flatMap(consume), true)) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
296 |
|
77681
1db732e6c3d2
back to compression in Isabelle/Scala (in contrast to f7174238b5e3), e.g. relevant for old_command_timings_blob, but also for prospective heaps;
wenzelm
parents:
77599
diff
changeset
|
297 |
def make_entry(session_name: String, args: Protocol.Export.Args, body: Bytes): Unit = { |
75762
985c3a64748c
clarified signature: more uniform treatment of empty exports;
wenzelm
parents:
75759
diff
changeset
|
298 |
if (!progress.stopped && !body.is_empty) { |
76851 | 299 |
consumer.send(Entry.make(session_name, args, body, cache) -> args.strict) |
74257 | 300 |
} |
301 |
} |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
302 |
|
75393 | 303 |
def shutdown(close: Boolean = false): List[String] = { |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
304 |
consumer.shutdown() |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
305 |
if (close) db.close() |
74255 | 306 |
errors.value.reverse ::: (if (progress.stopped) List("Export stopped") else Nil) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
307 |
} |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
308 |
} |
68116 | 309 |
|
310 |
||
75786 | 311 |
/* context for database access */ |
75772 | 312 |
|
78379 | 313 |
def open_database_context(store: Store, server: SSH.Server = SSH.no_server): Database_Context = |
314 |
new Database_Context(store, store.maybe_open_database_server(server = server)) |
|
75786 | 315 |
|
78379 | 316 |
def open_session_context0( |
317 |
store: Store, |
|
318 |
session: String, |
|
319 |
server: SSH.Server = SSH.no_server |
|
320 |
): Session_Context = { |
|
321 |
open_database_context(store, server = server) |
|
322 |
.open_session0(session, close_database_context = true) |
|
323 |
} |
|
75772 | 324 |
|
75786 | 325 |
def open_session_context( |
78178 | 326 |
store: Store, |
76656 | 327 |
session_background: Sessions.Background, |
78379 | 328 |
document_snapshot: Option[Document.Snapshot] = None, |
329 |
server: SSH.Server = SSH.no_server |
|
75786 | 330 |
): Session_Context = { |
78379 | 331 |
open_database_context(store, server = server).open_session( |
76656 | 332 |
session_background, document_snapshot = document_snapshot, close_database_context = true) |
75786 | 333 |
} |
75771 | 334 |
|
75786 | 335 |
class Database_Context private[Export]( |
78178 | 336 |
val store: Store, |
75786 | 337 |
val database_server: Option[SQL.Database] |
338 |
) extends AutoCloseable { |
|
339 |
database_context => |
|
75782
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
340 |
|
75786 | 341 |
override def toString: String = { |
342 |
val s = |
|
343 |
database_server match { |
|
344 |
case Some(db) => db.toString |
|
345 |
case None => "input_dirs = " + store.input_dirs.map(_.absolute).mkString(", ") |
|
346 |
} |
|
347 |
"Database_Context(" + s + ")" |
|
348 |
} |
|
349 |
||
350 |
def cache: Term.Cache = store.cache |
|
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
351 |
|
75786 | 352 |
def close(): Unit = database_server.foreach(_.close()) |
353 |
||
75970 | 354 |
def open_database(session: String, output: Boolean = false): Session_Database = |
75786 | 355 |
database_server match { |
75787 | 356 |
case Some(db) => new Session_Database(session, db) |
357 |
case None => |
|
75970 | 358 |
new Session_Database(session, store.open_database(session, output = output)) { |
75787 | 359 |
override def close(): Unit = db.close() |
360 |
} |
|
75786 | 361 |
} |
362 |
||
363 |
def open_session0(session: String, close_database_context: Boolean = false): Session_Context = |
|
76656 | 364 |
open_session(Sessions.background0(session), close_database_context = close_database_context) |
75779
5470c67bd772
clarified signature: prefer Export.Session_Context;
wenzelm
parents:
75778
diff
changeset
|
365 |
|
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
366 |
def open_session( |
76656 | 367 |
session_background: Sessions.Background, |
75772 | 368 |
document_snapshot: Option[Document.Snapshot] = None, |
75786 | 369 |
close_database_context: Boolean = false |
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
370 |
): Session_Context = { |
76656 | 371 |
val session_name = session_background.check_errors.session_name |
372 |
val session_hierarchy = session_background.sessions_structure.build_hierarchy(session_name) |
|
75773
11b2bf6f90d8
clarified signature: less redundant -- Sessions.Base_Info already specifies the main session;
wenzelm
parents:
75772
diff
changeset
|
373 |
val session_databases = |
75786 | 374 |
database_server match { |
75771 | 375 |
case Some(db) => session_hierarchy.map(name => new Session_Database(name, db)) |
376 |
case None => |
|
75775
70a65ee4a738
clarified signature: more robust treatment of server;
wenzelm
parents:
75774
diff
changeset
|
377 |
val attempts = |
78367 | 378 |
for (name <- session_hierarchy) |
379 |
yield name -> store.try_open_database(name, server_mode = false) |
|
75771 | 380 |
attempts.collectFirst({ case (name, None) => name }) match { |
381 |
case Some(bad) => |
|
78592 | 382 |
for (case (_, Some(db)) <- attempts) db.close() |
75791 | 383 |
store.error_database(bad) |
75764
07e097f60b85
clarified signature: more robust close operation;
wenzelm
parents:
75762
diff
changeset
|
384 |
case None => |
78592 | 385 |
for (case (name, Some(db)) <- attempts) yield { |
75764
07e097f60b85
clarified signature: more robust close operation;
wenzelm
parents:
75762
diff
changeset
|
386 |
new Session_Database(name, db) { override def close(): Unit = this.db.close() } |
07e097f60b85
clarified signature: more robust close operation;
wenzelm
parents:
75762
diff
changeset
|
387 |
} |
07e097f60b85
clarified signature: more robust close operation;
wenzelm
parents:
75762
diff
changeset
|
388 |
} |
75771 | 389 |
} |
76656 | 390 |
new Session_Context( |
391 |
database_context, session_background, session_databases, document_snapshot) { |
|
75772 | 392 |
override def close(): Unit = { |
393 |
session_databases.foreach(_.close()) |
|
75786 | 394 |
if (close_database_context) database_context.close() |
75772 | 395 |
} |
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
396 |
} |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
397 |
} |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
398 |
} |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
399 |
|
75789 | 400 |
class Session_Database private[Export](val session: String, val db: SQL.Database) |
401 |
extends AutoCloseable { |
|
402 |
def close(): Unit = () |
|
403 |
||
78211 | 404 |
lazy private [Export] val theory_names: List[String] = read_theory_names(db, session) |
405 |
lazy private [Export] val entry_names: List[Entry_Name] = read_entry_names(db, session) |
|
75789 | 406 |
} |
407 |
||
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
408 |
class Session_Context private[Export]( |
75786 | 409 |
val database_context: Database_Context, |
76656 | 410 |
session_background: Sessions.Background, |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
411 |
db_hierarchy: List[Session_Database], |
77005 | 412 |
val document_snapshot: Option[Document.Snapshot] |
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
413 |
) extends AutoCloseable { |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
414 |
session_context => |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
415 |
|
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
416 |
def close(): Unit = () |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
417 |
|
75786 | 418 |
def cache: Term.Cache = database_context.cache |
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
419 |
|
76656 | 420 |
def sessions_structure: Sessions.Structure = session_background.sessions_structure |
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
421 |
|
76656 | 422 |
def session_base: Sessions.Base = session_background.base |
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
423 |
|
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
424 |
def session_name: String = |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
425 |
if (document_snapshot.isDefined) Sessions.DRAFT |
75773
11b2bf6f90d8
clarified signature: less redundant -- Sessions.Base_Info already specifies the main session;
wenzelm
parents:
75772
diff
changeset
|
426 |
else session_base.session_name |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
427 |
|
75780
f49c4f160b84
clarified signature: find session_database within Session_Context.db_hierarchy;
wenzelm
parents:
75779
diff
changeset
|
428 |
def session_database(session: String = session_name): Option[Session_Database] = |
f49c4f160b84
clarified signature: find session_database within Session_Context.db_hierarchy;
wenzelm
parents:
75779
diff
changeset
|
429 |
db_hierarchy.find(_.session == session) |
f49c4f160b84
clarified signature: find session_database within Session_Context.db_hierarchy;
wenzelm
parents:
75779
diff
changeset
|
430 |
|
f49c4f160b84
clarified signature: find session_database within Session_Context.db_hierarchy;
wenzelm
parents:
75779
diff
changeset
|
431 |
def session_db(session: String = session_name): Option[SQL.Database] = |
f49c4f160b84
clarified signature: find session_database within Session_Context.db_hierarchy;
wenzelm
parents:
75779
diff
changeset
|
432 |
session_database(session = session).map(_.db) |
f49c4f160b84
clarified signature: find session_database within Session_Context.db_hierarchy;
wenzelm
parents:
75779
diff
changeset
|
433 |
|
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
434 |
def session_stack: List[String] = |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
435 |
((if (document_snapshot.isDefined) List(session_name) else Nil) ::: |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
436 |
db_hierarchy.map(_.session)).reverse |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
437 |
|
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
438 |
private def select[A]( |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
439 |
session: String, |
75860
2b2c09f4e7b5
proper export theory_names: theory/parents are not necessarily present (amending 4d27b520622a);
wenzelm
parents:
75825
diff
changeset
|
440 |
select: Session_Database => List[A], |
2b2c09f4e7b5
proper export theory_names: theory/parents are not necessarily present (amending 4d27b520622a);
wenzelm
parents:
75825
diff
changeset
|
441 |
project: Entry_Name => A, |
2b2c09f4e7b5
proper export theory_names: theory/parents are not necessarily present (amending 4d27b520622a);
wenzelm
parents:
75825
diff
changeset
|
442 |
sort_key: A => String |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
443 |
): List[A] = { |
75860
2b2c09f4e7b5
proper export theory_names: theory/parents are not necessarily present (amending 4d27b520622a);
wenzelm
parents:
75825
diff
changeset
|
444 |
def result(name: String): List[A] = |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
445 |
if (name == Sessions.DRAFT) { |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
446 |
(for { |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
447 |
snapshot <- document_snapshot.iterator |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
448 |
entry_name <- snapshot.all_exports.keysIterator |
75860
2b2c09f4e7b5
proper export theory_names: theory/parents are not necessarily present (amending 4d27b520622a);
wenzelm
parents:
75825
diff
changeset
|
449 |
} yield project(entry_name)).toSet.toList.sortBy(sort_key) |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
450 |
} |
75860
2b2c09f4e7b5
proper export theory_names: theory/parents are not necessarily present (amending 4d27b520622a);
wenzelm
parents:
75825
diff
changeset
|
451 |
else session_database(name).map(select).getOrElse(Nil) |
2b2c09f4e7b5
proper export theory_names: theory/parents are not necessarily present (amending 4d27b520622a);
wenzelm
parents:
75825
diff
changeset
|
452 |
|
2b2c09f4e7b5
proper export theory_names: theory/parents are not necessarily present (amending 4d27b520622a);
wenzelm
parents:
75825
diff
changeset
|
453 |
if (session.nonEmpty) result(session) else session_stack.flatMap(result) |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
454 |
} |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
455 |
|
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
456 |
def entry_names(session: String = session_name): List[Entry_Name] = |
75860
2b2c09f4e7b5
proper export theory_names: theory/parents are not necessarily present (amending 4d27b520622a);
wenzelm
parents:
75825
diff
changeset
|
457 |
select(session, _.entry_names, identity, _.compound_name) |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
458 |
|
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
459 |
def theory_names(session: String = session_name): List[String] = |
75860
2b2c09f4e7b5
proper export theory_names: theory/parents are not necessarily present (amending 4d27b520622a);
wenzelm
parents:
75825
diff
changeset
|
460 |
select(session, _.theory_names, _.theory, identity) |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
461 |
|
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
462 |
def get(theory: String, name: String): Option[Entry] = |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
463 |
{ |
75784 | 464 |
def snapshot_entry: Option[Entry] = |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
465 |
for { |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
466 |
snapshot <- document_snapshot |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
467 |
entry_name = Entry_Name(session = Sessions.DRAFT, theory = theory, name = name) |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
468 |
entry <- snapshot.all_exports.get(entry_name) |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
469 |
} yield entry |
75784 | 470 |
def db_entry: Option[Entry] = |
78209 | 471 |
db_hierarchy.view.map { database => |
472 |
val entry_name = Export.Entry_Name(session = database.session, theory = theory, name = name) |
|
78211 | 473 |
read_entry(database.db, entry_name, cache) |
78209 | 474 |
}.collectFirst({ case Some(entry) => entry }) |
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
475 |
|
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
476 |
snapshot_entry orElse db_entry |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
477 |
} |
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
478 |
|
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
479 |
def apply(theory: String, name: String, permissive: Boolean = false): Entry = |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
480 |
get(theory, name) match { |
76851 | 481 |
case None if permissive => Entry.empty(theory, name) |
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
482 |
case None => error("Missing export entry " + quote(compound_name(theory, name))) |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
483 |
case Some(entry) => entry |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
484 |
} |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
485 |
|
75790
0ab8a9177e41
clarified signature: more uniform treatment of cache for Export.read_session vs. Export.read_theory;
wenzelm
parents:
75789
diff
changeset
|
486 |
def theory(theory: String, other_cache: Option[Term.Cache] = None): Theory_Context = |
0ab8a9177e41
clarified signature: more uniform treatment of cache for Export.read_session vs. Export.read_theory;
wenzelm
parents:
75789
diff
changeset
|
487 |
new Theory_Context(session_context, theory, other_cache) |
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
488 |
|
78178 | 489 |
def get_source_file(name: String): Option[Store.Source_File] = { |
76909 | 490 |
val store = database_context.store |
491 |
(for { |
|
492 |
database <- db_hierarchy.iterator |
|
493 |
file <- store.read_sources(database.db, database.session, name = name).iterator |
|
494 |
} yield file).nextOption() |
|
495 |
} |
|
496 |
||
78178 | 497 |
def source_file(name: String): Store.Source_File = |
76910 | 498 |
get_source_file(name).getOrElse(error("Missing session source file " + quote(name))) |
499 |
||
77023
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
500 |
def theory_source(theory: String, unicode_symbols: Boolean = false): String = { |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
501 |
def snapshot_source: Option[String] = |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
502 |
for { |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
503 |
snapshot <- document_snapshot |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
504 |
text <- snapshot.version.nodes.iterator.collectFirst( |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
505 |
{ case (name, node) if name.theory == theory => node.source }) |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
506 |
if text.nonEmpty |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
507 |
} yield Symbol.output(unicode_symbols, text) |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
508 |
|
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
509 |
def db_source: Option[String] = { |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
510 |
val theory_context = session_context.theory(theory) |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
511 |
for { |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
512 |
name <- theory_context.files0(permissive = true).headOption |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
513 |
file <- get_source_file(name) |
77168
547d140f0780
more uniform use of Symbol.output, even in situations where its Symbol.encode is usually redundant;
wenzelm
parents:
77026
diff
changeset
|
514 |
} yield Symbol.output(unicode_symbols, file.bytes.text) |
77023
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
515 |
} |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
516 |
|
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
517 |
snapshot_source orElse db_source getOrElse "" |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
518 |
} |
474a07221c27
more robust theory_source -- in contrast to node_source from fffb978dd683: theory name is more reliable than Document.Node.Name, explicit unicode_symbols;
wenzelm
parents:
77005
diff
changeset
|
519 |
|
75825 | 520 |
def classpath(): List[File.Content] = { |
75782
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
521 |
(for { |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
522 |
session <- session_stack.iterator |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
523 |
info <- sessions_structure.get(session).iterator |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
524 |
if info.export_classpath.nonEmpty |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
525 |
matcher = make_matcher(info.export_classpath) |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
526 |
entry_name <- entry_names(session = session).iterator |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
527 |
if matcher(entry_name) |
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
528 |
entry <- get(entry_name.theory, entry_name.name).iterator |
76852 | 529 |
} yield File.content(entry.entry_name.make_path(), entry.bytes)).toList |
75918 | 530 |
} |
75782
dba571dd0ba9
clarified signature: prefer Export.Session_Context over Sessions.Database_Context;
wenzelm
parents:
75780
diff
changeset
|
531 |
|
75918 | 532 |
override def toString: String = |
75770
62e2c6f65f9a
clarified Document.Snapshot.all_exports: refer to material from this (virtual) session;
wenzelm
parents:
75769
diff
changeset
|
533 |
"Export.Session_Context(" + commas_quote(session_stack) + ")" |
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
534 |
} |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
535 |
|
75774
efc25bf4b795
discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents:
75773
diff
changeset
|
536 |
class Theory_Context private[Export]( |
efc25bf4b795
discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents:
75773
diff
changeset
|
537 |
val session_context: Session_Context, |
75790
0ab8a9177e41
clarified signature: more uniform treatment of cache for Export.read_session vs. Export.read_theory;
wenzelm
parents:
75789
diff
changeset
|
538 |
val theory: String, |
0ab8a9177e41
clarified signature: more uniform treatment of cache for Export.read_session vs. Export.read_theory;
wenzelm
parents:
75789
diff
changeset
|
539 |
other_cache: Option[Term.Cache] |
75774
efc25bf4b795
discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents:
75773
diff
changeset
|
540 |
) { |
75790
0ab8a9177e41
clarified signature: more uniform treatment of cache for Export.read_session vs. Export.read_theory;
wenzelm
parents:
75789
diff
changeset
|
541 |
def cache: Term.Cache = other_cache getOrElse session_context.cache |
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
542 |
|
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
543 |
def get(name: String): Option[Entry] = session_context.get(theory, name) |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
544 |
def apply(name: String, permissive: Boolean = false): Entry = |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
545 |
session_context.apply(theory, name, permissive = permissive) |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
546 |
|
76854 | 547 |
def yxml(name: String): XML.Body = |
75774
efc25bf4b795
discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents:
75773
diff
changeset
|
548 |
get(name) match { |
76852 | 549 |
case Some(entry) => entry.yxml |
75774
efc25bf4b795
discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents:
75773
diff
changeset
|
550 |
case None => Nil |
efc25bf4b795
discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents:
75773
diff
changeset
|
551 |
} |
efc25bf4b795
discontinued Export.Provider in favour of Export.Context and its derivatives;
wenzelm
parents:
75773
diff
changeset
|
552 |
|
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
553 |
def document_id(): Option[Long] = |
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
554 |
apply(DOCUMENT_ID, permissive = true).text match { |
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
555 |
case Value.Long(id) => Some(id) |
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
556 |
case _ => None |
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
557 |
} |
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
558 |
|
75901 | 559 |
def files0(permissive: Boolean = false): List[String] = |
560 |
split_lines(apply(FILES, permissive = permissive).text) |
|
561 |
||
562 |
def files(permissive: Boolean = false): Option[(String, List[String])] = |
|
563 |
files0(permissive = permissive) match { |
|
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
564 |
case Nil => None |
75901 | 565 |
case a :: bs => Some((a, bs)) |
75778
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
566 |
} |
d18c96b9b955
prefer Export.Context/Session_Context/Theory_Context over Sessions.Database_Context;
wenzelm
parents:
75775
diff
changeset
|
567 |
|
75759
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
568 |
override def toString: String = "Export.Theory_Context(" + quote(theory) + ")" |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
569 |
} |
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
570 |
|
0cdccd0d1699
clarified context for retrieval: more explicit types, with optional close() operation;
wenzelm
parents:
75757
diff
changeset
|
571 |
|
68288 | 572 |
/* export to file-system */ |
573 |
||
574 |
def export_files( |
|
78178 | 575 |
store: Store, |
68288 | 576 |
session_name: String, |
577 |
export_dir: Path, |
|
71726
a5fda30edae2
clarified signature: more uniform treatment of stopped/interrupted state;
wenzelm
parents:
71624
diff
changeset
|
578 |
progress: Progress = new Progress, |
69671 | 579 |
export_prune: Int = 0, |
68288 | 580 |
export_list: Boolean = false, |
75393 | 581 |
export_patterns: List[String] = Nil |
582 |
): Unit = { |
|
75394 | 583 |
using(store.open_database(session_name)) { db => |
78211 | 584 |
val entry_names = read_entry_names(db, session_name) |
68288 | 585 |
|
75739
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
586 |
// list |
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
587 |
if (export_list) { |
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
588 |
for (entry_name <- entry_names) progress.echo(entry_name.compound_name) |
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
589 |
} |
68288 | 590 |
|
75739
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
591 |
// export |
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
592 |
if (export_patterns.nonEmpty) { |
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
593 |
val matcher = make_matcher(export_patterns) |
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
594 |
for { |
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
595 |
entry_name <- entry_names if matcher(entry_name) |
78211 | 596 |
entry <- read_entry(db, entry_name, store.cache) |
75739
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
597 |
} { |
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
598 |
val path = export_dir + entry_name.make_path(prune = export_prune) |
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
599 |
progress.echo("export " + path + (if (entry.executable) " (executable)" else "")) |
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
600 |
Isabelle_System.make_directory(path.dir) |
76852 | 601 |
val bytes = entry.bytes |
75739
5b37466c1463
removed somewhat pointless transaction: db is meant to be finished (or updated monotonically);
wenzelm
parents:
75736
diff
changeset
|
602 |
if (!path.is_file || Bytes.read(path) != bytes) Bytes.write(path, bytes) |
78298
3b0f8f1010f2
clarified signature, with subtle change of semantics (amending 8b5a2e4b16d4);
wenzelm
parents:
78260
diff
changeset
|
603 |
File.set_executable(path, reset = !entry.executable) |
68288 | 604 |
} |
605 |
} |
|
75394 | 606 |
} |
68288 | 607 |
} |
608 |
||
609 |
||
68116 | 610 |
/* Isabelle tool wrapper */ |
611 |
||
71601 | 612 |
val default_export_dir: Path = Path.explode("export") |
68116 | 613 |
|
75394 | 614 |
val isabelle_tool = |
615 |
Isabelle_Tool("export", "retrieve theory exports", Scala_Project.here, |
|
616 |
{ args => |
|
617 |
/* arguments */ |
|
68116 | 618 |
|
75394 | 619 |
var export_dir = default_export_dir |
620 |
var dirs: List[Path] = Nil |
|
621 |
var export_list = false |
|
622 |
var no_build = false |
|
623 |
var options = Options.init() |
|
624 |
var export_prune = 0 |
|
625 |
var export_patterns: List[String] = Nil |
|
68116 | 626 |
|
75394 | 627 |
val getopts = Getopts(""" |
68116 | 628 |
Usage: isabelle export [OPTIONS] SESSION |
629 |
||
630 |
Options are: |
|
68314
2acbf8129d8b
clarified option -O: avoid conflict with build/dump option -D;
wenzelm
parents:
68305
diff
changeset
|
631 |
-O DIR output directory for exported files (default: """ + default_export_dir + """) |
68116 | 632 |
-d DIR include session directory |
633 |
-l list exports |
|
634 |
-n no build of session |
|
635 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
|
69671 | 636 |
-p NUM prune path of exported files by NUM elements |
68116 | 637 |
-x PATTERN extract files matching pattern (e.g. "*:**" for all) |
638 |
||
639 |
List or export theory exports for SESSION: named blobs produced by |
|
68290 | 640 |
isabelle build. Option -l or -x is required; option -x may be repeated. |
68116 | 641 |
|
642 |
The PATTERN language resembles glob patterns in the shell, with ? and * |
|
643 |
(both excluding ":" and "/"), ** (excluding ":"), and [abc] or [^abc], |
|
644 |
and variants {pattern1,pattern2,pattern3}. |
|
645 |
""", |
|
75394 | 646 |
"O:" -> (arg => export_dir = Path.explode(arg)), |
647 |
"d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))), |
|
648 |
"l" -> (_ => export_list = true), |
|
649 |
"n" -> (_ => no_build = true), |
|
650 |
"o:" -> (arg => options = options + arg), |
|
651 |
"p:" -> (arg => export_prune = Value.Int.parse(arg)), |
|
652 |
"x:" -> (arg => export_patterns ::= arg)) |
|
68116 | 653 |
|
75394 | 654 |
val more_args = getopts(args) |
655 |
val session_name = |
|
656 |
more_args match { |
|
657 |
case List(session_name) if export_list || export_patterns.nonEmpty => session_name |
|
658 |
case _ => getopts.usage() |
|
659 |
} |
|
68116 | 660 |
|
75394 | 661 |
val progress = new Console_Progress() |
68305 | 662 |
|
68116 | 663 |
|
75394 | 664 |
/* build */ |
68116 | 665 |
|
75394 | 666 |
if (!no_build) { |
667 |
val rc = |
|
668 |
progress.interrupt_handler { |
|
669 |
Build.build_logic(options, session_name, progress = progress, dirs = dirs) |
|
670 |
} |
|
671 |
if (rc != Process_Result.RC.ok) sys.exit(rc) |
|
68331 | 672 |
} |
68116 | 673 |
|
674 |
||
75394 | 675 |
/* export files */ |
68116 | 676 |
|
79675 | 677 |
export_files(Store(options), session_name, export_dir, progress = progress, |
678 |
export_prune = export_prune, export_list = export_list, export_patterns = export_patterns) |
|
75394 | 679 |
}) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
680 |
} |