author | wenzelm |
Sat, 10 Aug 2019 12:53:35 +0200 | |
changeset 70499 | f389019024ce |
parent 69854 | cc0b3e177b49 |
child 70539 | 30b3c58a1933 |
permissions | -rw-r--r-- |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
1 |
/* Title: Pure/Thy/export.scala |
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 |
|
68102 | 4 |
Manage 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 |
|
12 |
||
13 |
||
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
14 |
object Export |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
15 |
{ |
69756 | 16 |
/* name structure */ |
69634 | 17 |
|
69756 | 18 |
def explode_name(s: String): List[String] = space_explode('/', s) |
19 |
def implode_name(elems: Iterable[String]): String = elems.mkString("/") |
|
69634 | 20 |
|
21 |
||
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
22 |
/* SQL data model */ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
23 |
|
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
24 |
object Data |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
25 |
{ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
26 |
val session_name = SQL.Column.string("session_name").make_primary_key |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
27 |
val theory_name = SQL.Column.string("theory_name").make_primary_key |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
28 |
val name = SQL.Column.string("name").make_primary_key |
69788 | 29 |
val executable = SQL.Column.bool("executable") |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
30 |
val compressed = SQL.Column.bool("compressed") |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
31 |
val body = SQL.Column.bytes("body") |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
32 |
|
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
33 |
val table = |
69788 | 34 |
SQL.Table("isabelle_exports", |
35 |
List(session_name, theory_name, name, executable, compressed, body)) |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
36 |
|
68116 | 37 |
def where_equal(session_name: String, theory_name: String = "", name: String = ""): SQL.Source = |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
38 |
"WHERE " + Data.session_name.equal(session_name) + |
68116 | 39 |
(if (theory_name == "") "" else " AND " + Data.theory_name.equal(theory_name)) + |
40 |
(if (name == "") "" else " AND " + Data.name.equal(name)) |
|
41 |
} |
|
42 |
||
43 |
def read_name(db: SQL.Database, session_name: String, theory_name: String, name: String): Boolean = |
|
44 |
{ |
|
45 |
val select = |
|
46 |
Data.table.select(List(Data.name), Data.where_equal(session_name, theory_name, name)) |
|
47 |
db.using_statement(select)(stmt => stmt.execute_query().next()) |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
48 |
} |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
49 |
|
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
50 |
def read_names(db: SQL.Database, session_name: String, theory_name: String): List[String] = |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
51 |
{ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
52 |
val select = Data.table.select(List(Data.name), Data.where_equal(session_name, theory_name)) |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
53 |
db.using_statement(select)(stmt => |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
54 |
stmt.execute_query().iterator(res => res.string(Data.name)).toList) |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
55 |
} |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
56 |
|
68222 | 57 |
def read_theory_names(db: SQL.Database, session_name: String): List[String] = |
58 |
{ |
|
59 |
val select = |
|
60 |
Data.table.select(List(Data.theory_name), Data.where_equal(session_name), distinct = true) |
|
61 |
db.using_statement(select)(stmt => |
|
62 |
stmt.execute_query().iterator(_.string(Data.theory_name)).toList) |
|
63 |
} |
|
64 |
||
65 |
def read_theory_exports(db: SQL.Database, session_name: String): List[(String, String)] = |
|
68115 | 66 |
{ |
68116 | 67 |
val select = Data.table.select(List(Data.theory_name, Data.name), Data.where_equal(session_name)) |
68 |
db.using_statement(select)(stmt => |
|
69 |
stmt.execute_query().iterator(res => |
|
70 |
(res.string(Data.theory_name), res.string(Data.name))).toList) |
|
68115 | 71 |
} |
72 |
||
68104 | 73 |
def message(msg: String, theory_name: String, name: String): String = |
74 |
msg + " " + quote(name) + " for theory " + quote(theory_name) |
|
75 |
||
68116 | 76 |
def compound_name(a: String, b: String): String = a + ":" + b |
77 |
||
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
78 |
sealed case class Entry( |
68103
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
wenzelm
parents:
68102
diff
changeset
|
79 |
session_name: String, |
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
wenzelm
parents:
68102
diff
changeset
|
80 |
theory_name: String, |
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
wenzelm
parents:
68102
diff
changeset
|
81 |
name: String, |
69788 | 82 |
executable: Boolean, |
68167 | 83 |
body: Future[(Boolean, Bytes)]) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
84 |
{ |
69635 | 85 |
override def toString: String = name |
69630 | 86 |
|
69634 | 87 |
val name_elems: List[String] = explode_name(name) |
88 |
||
89 |
def name_extends(elems: List[String]): Boolean = |
|
90 |
name_elems.startsWith(elems) && name_elems != elems |
|
91 |
||
69630 | 92 |
def text: String = uncompressed().text |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
93 |
|
69629 | 94 |
def uncompressed(cache: XZ.Cache = XZ.cache()): Bytes = |
95 |
{ |
|
96 |
val (compressed, bytes) = body.join |
|
97 |
if (compressed) bytes.uncompress(cache = cache) else bytes |
|
98 |
} |
|
99 |
||
100 |
def uncompressed_yxml(cache: XZ.Cache = XZ.cache()): XML.Body = |
|
101 |
YXML.parse_body(UTF8.decode_permissive(uncompressed(cache = cache))) |
|
102 |
||
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
103 |
def write(db: SQL.Database) |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
104 |
{ |
68167 | 105 |
val (compressed, bytes) = body.join |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
106 |
db.using_statement(Data.table.insert())(stmt => |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
107 |
{ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
108 |
stmt.string(1) = session_name |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
109 |
stmt.string(2) = theory_name |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
110 |
stmt.string(3) = name |
69788 | 111 |
stmt.bool(4) = executable |
112 |
stmt.bool(5) = compressed |
|
113 |
stmt.bytes(6) = bytes |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
114 |
stmt.execute() |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
115 |
}) |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
116 |
} |
68116 | 117 |
} |
118 |
||
119 |
def make_regex(pattern: String): Regex = |
|
120 |
{ |
|
121 |
@tailrec def make(result: List[String], depth: Int, chs: List[Char]): Regex = |
|
122 |
chs match { |
|
123 |
case '*' :: '*' :: rest => make("[^:]*" :: result, depth, rest) |
|
124 |
case '*' :: rest => make("[^:/]*" :: result, depth, rest) |
|
125 |
case '?' :: rest => make("[^:/]" :: result, depth, rest) |
|
126 |
case '\\' :: c :: rest => make(("\\" + c) :: result, depth, rest) |
|
127 |
case '{' :: rest => make("(" :: result, depth + 1, rest) |
|
128 |
case ',' :: rest if depth > 0 => make("|" :: result, depth, rest) |
|
129 |
case '}' :: rest if depth > 0 => make(")" :: result, depth - 1, rest) |
|
130 |
case c :: rest if ".+()".contains(c) => make(("\\" + c) :: result, depth, rest) |
|
131 |
case c :: rest => make(c.toString :: result, depth, rest) |
|
132 |
case Nil => result.reverse.mkString.r |
|
133 |
} |
|
134 |
make(Nil, 0, pattern.toList) |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
135 |
} |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
136 |
|
68151 | 137 |
def make_matcher(pattern: String): (String, String) => Boolean = |
138 |
{ |
|
139 |
val regex = make_regex(pattern) |
|
140 |
(theory_name: String, name: String) => |
|
141 |
regex.pattern.matcher(compound_name(theory_name, name)).matches |
|
142 |
} |
|
143 |
||
68166 | 144 |
def make_entry(session_name: String, args: Markup.Export.Args, body: Bytes, |
145 |
cache: XZ.Cache = XZ.cache()): Entry = |
|
68101 | 146 |
{ |
69788 | 147 |
Entry(session_name, args.theory_name, args.name, args.executable, |
68167 | 148 |
if (args.compress) Future.fork(body.maybe_compress(cache = cache)) |
149 |
else Future.value((false, body))) |
|
68101 | 150 |
} |
151 |
||
68202 | 152 |
def read_entry(db: SQL.Database, session_name: String, theory_name: String, name: String) |
153 |
: Option[Entry] = |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
154 |
{ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
155 |
val select = |
69788 | 156 |
Data.table.select(List(Data.executable, Data.compressed, Data.body), |
68116 | 157 |
Data.where_equal(session_name, theory_name, name)) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
158 |
db.using_statement(select)(stmt => |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
159 |
{ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
160 |
val res = stmt.execute_query() |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
161 |
if (res.next()) { |
69788 | 162 |
val executable = res.bool(Data.executable) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
163 |
val compressed = res.bool(Data.compressed) |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
164 |
val body = res.bytes(Data.body) |
69788 | 165 |
Some(Entry(session_name, theory_name, name, executable, Future.value(compressed, body))) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
166 |
} |
68202 | 167 |
else None |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
168 |
}) |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
169 |
} |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
170 |
|
68831 | 171 |
def read_entry(dir: Path, session_name: String, theory_name: String, name: String): Option[Entry] = |
172 |
{ |
|
173 |
val path = dir + Path.basic(theory_name) + Path.explode(name) |
|
174 |
if (path.is_file) { |
|
69788 | 175 |
val executable = File.is_executable(path) |
68831 | 176 |
val uncompressed = Bytes.read(path) |
69788 | 177 |
Some(Entry(session_name, theory_name, name, executable, Future.value((false, uncompressed)))) |
68831 | 178 |
} |
179 |
else None |
|
180 |
} |
|
181 |
||
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
182 |
|
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
183 |
/* database consumer thread */ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
184 |
|
68289 | 185 |
def consumer(db: SQL.Database, cache: XZ.Cache = XZ.cache()): Consumer = new Consumer(db, cache) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
186 |
|
68289 | 187 |
class Consumer private[Export](db: SQL.Database, cache: XZ.Cache) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
188 |
{ |
68924 | 189 |
private val errors = Synchronized[List[String]](Nil) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
190 |
|
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
191 |
private val consumer = |
70499 | 192 |
Consumer_Thread.fork(name = "export")(consume = (arg: (Entry, Boolean)) => |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
193 |
{ |
70499 | 194 |
val (entry, strict) = arg |
68103
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
wenzelm
parents:
68102
diff
changeset
|
195 |
entry.body.join |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
196 |
db.transaction { |
68115 | 197 |
if (read_name(db, entry.session_name, entry.theory_name, entry.name)) { |
70499 | 198 |
if (strict) { |
199 |
val msg = message("Duplicate export", entry.theory_name, entry.name) |
|
200 |
errors.change(msg :: _) |
|
201 |
} |
|
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
202 |
} |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
203 |
else entry.write(db) |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
204 |
} |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
205 |
true |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
206 |
}) |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
207 |
|
68103
c5764b8b2a87
more robust (synchronous) management of Export.Entry: Future.fork happens inside the data structure;
wenzelm
parents:
68102
diff
changeset
|
208 |
def apply(session_name: String, args: Markup.Export.Args, body: Bytes): Unit = |
70499 | 209 |
consumer.send(make_entry(session_name, args, body, cache = cache) -> args.strict) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
210 |
|
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
211 |
def shutdown(close: Boolean = false): List[String] = |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
212 |
{ |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
213 |
consumer.shutdown() |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
214 |
if (close) db.close() |
68924 | 215 |
errors.value.reverse |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
216 |
} |
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
217 |
} |
68116 | 218 |
|
219 |
||
68418 | 220 |
/* abstract provider */ |
221 |
||
222 |
object Provider |
|
223 |
{ |
|
224 |
def database(db: SQL.Database, session_name: String, theory_name: String): Provider = |
|
225 |
new Provider { |
|
226 |
def apply(export_name: String): Option[Entry] = |
|
227 |
read_entry(db, session_name, theory_name, export_name) |
|
68832 | 228 |
|
229 |
override def toString: String = db.toString |
|
68418 | 230 |
} |
231 |
||
232 |
def snapshot(snapshot: Document.Snapshot): Provider = |
|
233 |
new Provider { |
|
234 |
def apply(export_name: String): Option[Entry] = |
|
235 |
snapshot.exports_map.get(export_name) |
|
68832 | 236 |
|
237 |
override def toString: String = snapshot.toString |
|
68418 | 238 |
} |
68831 | 239 |
|
240 |
def directory(dir: Path, session_name: String, theory_name: String): Provider = |
|
241 |
new Provider { |
|
242 |
def apply(export_name: String): Option[Entry] = |
|
243 |
read_entry(dir, session_name, theory_name, export_name) |
|
68832 | 244 |
|
245 |
override def toString: String = dir.toString |
|
68831 | 246 |
} |
68418 | 247 |
} |
248 |
||
249 |
trait Provider |
|
250 |
{ |
|
251 |
def apply(export_name: String): Option[Entry] |
|
252 |
||
253 |
def uncompressed_yxml(export_name: String, cache: XZ.Cache = XZ.cache()): XML.Body = |
|
254 |
apply(export_name) match { |
|
255 |
case Some(entry) => entry.uncompressed_yxml(cache = cache) |
|
256 |
case None => Nil |
|
257 |
} |
|
258 |
} |
|
259 |
||
260 |
||
68288 | 261 |
/* export to file-system */ |
262 |
||
263 |
def export_files( |
|
264 |
store: Sessions.Store, |
|
265 |
session_name: String, |
|
266 |
export_dir: Path, |
|
267 |
progress: Progress = No_Progress, |
|
69671 | 268 |
export_prune: Int = 0, |
68288 | 269 |
export_list: Boolean = false, |
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69789
diff
changeset
|
270 |
export_patterns: List[String] = Nil) |
68288 | 271 |
{ |
272 |
using(store.open_database(session_name))(db => |
|
273 |
{ |
|
274 |
db.transaction { |
|
275 |
val export_names = read_theory_exports(db, session_name) |
|
276 |
||
277 |
// list |
|
278 |
if (export_list) { |
|
279 |
(for ((theory_name, name) <- export_names) yield compound_name(theory_name, name)). |
|
68291 | 280 |
sorted.foreach(progress.echo(_)) |
68288 | 281 |
} |
282 |
||
283 |
// export |
|
68290 | 284 |
if (export_patterns.nonEmpty) { |
285 |
val exports = |
|
286 |
(for { |
|
287 |
export_pattern <- export_patterns.iterator |
|
288 |
matcher = make_matcher(export_pattern) |
|
289 |
(theory_name, name) <- export_names if matcher(theory_name, name) |
|
290 |
} yield (theory_name, name)).toSet |
|
68288 | 291 |
for { |
68290 | 292 |
(theory_name, group) <- exports.toList.groupBy(_._1).toList.sortBy(_._1) |
293 |
name <- group.map(_._2).sorted |
|
68288 | 294 |
entry <- read_entry(db, session_name, theory_name, name) |
295 |
} { |
|
69671 | 296 |
val elems = theory_name :: space_explode('/', name) |
297 |
val path = |
|
298 |
if (elems.length < export_prune + 1) { |
|
299 |
error("Cannot prune path by " + export_prune + " element(s): " + Path.make(elems)) |
|
300 |
} |
|
301 |
else export_dir + Path.make(elems.drop(export_prune)) |
|
302 |
||
69811
18f61ce86425
clarified 'export_files' in session ROOT: require explicit "isabelle build -e";
wenzelm
parents:
69789
diff
changeset
|
303 |
progress.echo("export " + path + (if (entry.executable) " (executable)" else "")) |
68288 | 304 |
Isabelle_System.mkdirs(path.dir) |
68289 | 305 |
Bytes.write(path, entry.uncompressed(cache = store.xz_cache)) |
69789
2c3e5e58d93f
more thorough File.set_executable, notably for Windows;
wenzelm
parents:
69788
diff
changeset
|
306 |
File.set_executable(path, entry.executable) |
68288 | 307 |
} |
308 |
} |
|
309 |
} |
|
310 |
}) |
|
311 |
} |
|
312 |
||
313 |
||
68116 | 314 |
/* Isabelle tool wrapper */ |
315 |
||
316 |
val default_export_dir = Path.explode("export") |
|
317 |
||
318 |
val isabelle_tool = Isabelle_Tool("export", "retrieve theory exports", args => |
|
319 |
{ |
|
320 |
/* arguments */ |
|
321 |
||
322 |
var export_dir = default_export_dir |
|
323 |
var dirs: List[Path] = Nil |
|
324 |
var export_list = false |
|
325 |
var no_build = false |
|
326 |
var options = Options.init() |
|
69671 | 327 |
var export_prune = 0 |
68290 | 328 |
var export_patterns: List[String] = Nil |
68116 | 329 |
|
330 |
val getopts = Getopts(""" |
|
331 |
Usage: isabelle export [OPTIONS] SESSION |
|
332 |
||
333 |
Options are: |
|
68314
2acbf8129d8b
clarified option -O: avoid conflict with build/dump option -D;
wenzelm
parents:
68305
diff
changeset
|
334 |
-O DIR output directory for exported files (default: """ + default_export_dir + """) |
68116 | 335 |
-d DIR include session directory |
336 |
-l list exports |
|
337 |
-n no build of session |
|
338 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
|
69671 | 339 |
-p NUM prune path of exported files by NUM elements |
68116 | 340 |
-x PATTERN extract files matching pattern (e.g. "*:**" for all) |
341 |
||
342 |
List or export theory exports for SESSION: named blobs produced by |
|
68290 | 343 |
isabelle build. Option -l or -x is required; option -x may be repeated. |
68116 | 344 |
|
345 |
The PATTERN language resembles glob patterns in the shell, with ? and * |
|
346 |
(both excluding ":" and "/"), ** (excluding ":"), and [abc] or [^abc], |
|
347 |
and variants {pattern1,pattern2,pattern3}. |
|
348 |
""", |
|
68314
2acbf8129d8b
clarified option -O: avoid conflict with build/dump option -D;
wenzelm
parents:
68305
diff
changeset
|
349 |
"O:" -> (arg => export_dir = Path.explode(arg)), |
68116 | 350 |
"d:" -> (arg => dirs = dirs ::: List(Path.explode(arg))), |
351 |
"l" -> (_ => export_list = true), |
|
352 |
"n" -> (_ => no_build = true), |
|
353 |
"o:" -> (arg => options = options + arg), |
|
69671 | 354 |
"p:" -> (arg => export_prune = Value.Int.parse(arg)), |
68290 | 355 |
"x:" -> (arg => export_patterns ::= arg)) |
68116 | 356 |
|
357 |
val more_args = getopts(args) |
|
358 |
val session_name = |
|
359 |
more_args match { |
|
68290 | 360 |
case List(session_name) if export_list || export_patterns.nonEmpty => session_name |
68116 | 361 |
case _ => getopts.usage() |
362 |
} |
|
363 |
||
68305 | 364 |
val progress = new Console_Progress() |
365 |
||
68116 | 366 |
|
367 |
/* build */ |
|
368 |
||
68305 | 369 |
if (!no_build) { |
370 |
val rc = |
|
68331 | 371 |
progress.interrupt_handler { |
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69811
diff
changeset
|
372 |
Build.build_logic(options, session_name, progress = progress, dirs = dirs) |
68331 | 373 |
} |
68305 | 374 |
if (rc != 0) sys.exit(rc) |
68116 | 375 |
} |
376 |
||
377 |
||
68288 | 378 |
/* export files */ |
68116 | 379 |
|
69854
cc0b3e177b49
system option "system_heaps" supersedes various command-line options for "system build mode";
wenzelm
parents:
69811
diff
changeset
|
380 |
val store = Sessions.store(options) |
69671 | 381 |
export_files(store, session_name, export_dir, progress = progress, export_prune = export_prune, |
68290 | 382 |
export_list = export_list, export_patterns = export_patterns) |
68116 | 383 |
}) |
68092
888d35a19866
store exports in session database, with asynchronous / parallel compression;
wenzelm
parents:
diff
changeset
|
384 |
} |