author | wenzelm |
Fri, 27 Jul 2012 14:15:04 +0200 | |
changeset 48549 | cc7990d6eb38 |
parent 48548 | 49afe0e92163 |
child 48552 | b1819875b76a |
permissions | -rw-r--r-- |
48276 | 1 |
/* Title: Pure/System/build.scala |
2 |
Author: Makarius |
|
3 |
||
4 |
Build and manage Isabelle sessions. |
|
5 |
*/ |
|
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
48548 | 10 |
import java.io.{BufferedInputStream, FileInputStream, |
48494 | 11 |
BufferedReader, InputStreamReader, IOException} |
12 |
import java.util.zip.GZIPInputStream |
|
48335 | 13 |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
14 |
import scala.collection.mutable |
48340
6f4fc030882a
allow explicit specification of additional session directories;
wenzelm
parents:
48339
diff
changeset
|
15 |
import scala.annotation.tailrec |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
16 |
|
48335 | 17 |
|
48276 | 18 |
object Build |
19 |
{ |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
20 |
/** session information **/ |
48334 | 21 |
|
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
22 |
object Session |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
23 |
{ |
48421 | 24 |
/* Info */ |
25 |
||
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
26 |
sealed case class Info( |
48509 | 27 |
groups: List[String], |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
28 |
dir: Path, |
48418 | 29 |
parent: Option[String], |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
30 |
description: String, |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
31 |
options: Options, |
48421 | 32 |
theories: List[(Options, List[Path])], |
33 |
files: List[Path], |
|
48544 | 34 |
entry_digest: SHA1.Digest) |
48421 | 35 |
|
36 |
||
37 |
/* Queue */ |
|
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
38 |
|
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
39 |
object Queue |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
40 |
{ |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
41 |
val empty: Queue = new Queue() |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
42 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
43 |
|
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
44 |
final class Queue private(graph: Graph[String, Info] = Graph.string) |
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
45 |
extends PartialFunction[String, Info] |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
46 |
{ |
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
47 |
def apply(name: String): Info = graph.get_node(name) |
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
48 |
def isDefinedAt(name: String): Boolean = graph.defined(name) |
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
49 |
|
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
50 |
def is_inner(name: String): Boolean = !graph.is_maximal(name) |
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
51 |
|
48425 | 52 |
def is_empty: Boolean = graph.is_empty |
53 |
||
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
54 |
def + (name: String, info: Info): Queue = |
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
55 |
new Queue( |
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
56 |
try { graph.new_node(name, info).add_deps_acyclic(name, info.parent.toList) } |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
57 |
catch { |
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
58 |
case _: Graph.Duplicate[_] => error("Duplicate session: " + quote(name)) |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
59 |
case exn: Graph.Cycles[_] => |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
60 |
error(cat_lines(exn.cycles.map(cycle => |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
61 |
"Cyclic session dependency of " + |
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
62 |
cycle.map(c => quote(c.toString)).mkString(" via ")))) |
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
63 |
}) |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
64 |
|
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
65 |
def - (name: String): Queue = new Queue(graph.del_node(name)) |
48425 | 66 |
|
48509 | 67 |
def required(groups: List[String], names: List[String]): Queue = |
68 |
{ |
|
69 |
val selected_group = groups.toSet |
|
70 |
val selected_name = names.toSet |
|
71 |
val selected = |
|
72 |
graph.keys.filter(name => |
|
73 |
selected_name(name) || apply(name).groups.exists(selected_group)).toList |
|
74 |
new Queue(graph.restrict(graph.all_preds(selected).toSet)) |
|
75 |
} |
|
48363 | 76 |
|
48425 | 77 |
def dequeue(skip: String => Boolean): Option[(String, Info)] = |
78 |
{ |
|
79 |
val it = graph.entries.dropWhile( |
|
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
80 |
{ case (name, (_, (deps, _))) => !deps.isEmpty || skip(name) }) |
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
81 |
if (it.hasNext) { val (name, (info, _)) = it.next; Some((name, info)) } |
48425 | 82 |
else None |
83 |
} |
|
84 |
||
48422
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
85 |
def topological_order: List[(String, Info)] = |
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
86 |
graph.topological_order.map(name => (name, graph.get_node(name))) |
48349
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
87 |
} |
a78e5d399599
support Session.Queue with ordering and dependencies;
wenzelm
parents:
48347
diff
changeset
|
88 |
} |
48334 | 89 |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
90 |
|
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
91 |
/* parsing */ |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
92 |
|
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
93 |
private case class Session_Entry( |
48544 | 94 |
base_name: String, |
48462
424fd5364f15
clarified "this_name" vs. former "reset" feature -- imitate the latter by loading other session sources directly;
wenzelm
parents:
48459
diff
changeset
|
95 |
this_name: Boolean, |
48509 | 96 |
groups: List[String], |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
97 |
path: Option[String], |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
98 |
parent: Option[String], |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
99 |
description: String, |
48421 | 100 |
options: List[Options.Spec], |
101 |
theories: List[(List[Options.Spec], List[String])], |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
102 |
files: List[String]) |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
103 |
|
48334 | 104 |
private object Parser extends Parse.Parser |
105 |
{ |
|
106 |
val SESSION = "session" |
|
107 |
val IN = "in" |
|
108 |
val DESCRIPTION = "description" |
|
109 |
val OPTIONS = "options" |
|
110 |
val THEORIES = "theories" |
|
111 |
val FILES = "files" |
|
112 |
||
113 |
val syntax = |
|
48336 | 114 |
Outer_Syntax.empty + "!" + "(" + ")" + "+" + "," + "=" + "[" + "]" + |
115 |
SESSION + IN + DESCRIPTION + OPTIONS + THEORIES + FILES |
|
48334 | 116 |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
117 |
val session_entry: Parser[Session_Entry] = |
48334 | 118 |
{ |
119 |
val session_name = atom("session name", _.is_name) |
|
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
120 |
|
48334 | 121 |
val option = |
122 |
name ~ opt(keyword("=") ~! name ^^ { case _ ~ x => x }) ^^ { case x ~ y => (x, y) } |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
123 |
val options = keyword("[") ~> repsep(option, keyword(",")) <~ keyword("]") |
48334 | 124 |
|
125 |
val theories = |
|
126 |
keyword(THEORIES) ~! ((options | success(Nil)) ~ rep1(theory_name)) ^^ |
|
127 |
{ case _ ~ (x ~ y) => (x, y) } |
|
128 |
||
129 |
((keyword(SESSION) ~! session_name) ^^ { case _ ~ x => x }) ~ |
|
48336 | 130 |
(keyword("!") ^^^ true | success(false)) ~ |
48509 | 131 |
(keyword("(") ~! (rep1(name) <~ keyword(")")) ^^ { case _ ~ x => x } | success(Nil)) ~ |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
132 |
(opt(keyword(IN) ~! string ^^ { case _ ~ x => x })) ~ |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
133 |
(keyword("=") ~> opt(session_name <~ keyword("+"))) ~ |
48334 | 134 |
(keyword(DESCRIPTION) ~! text ^^ { case _ ~ x => x } | success("")) ~ |
135 |
(keyword(OPTIONS) ~! options ^^ { case _ ~ x => x } | success(Nil)) ~ |
|
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
136 |
rep(theories) ~ |
48336 | 137 |
(keyword(FILES) ~! rep1(path) ^^ { case _ ~ x => x } | success(Nil)) ^^ |
48509 | 138 |
{ case a ~ b ~ c ~ d ~ e ~ f ~ g ~ h ~ i => Session_Entry(a, b, c, d, e, f, g, h, i) } |
48334 | 139 |
} |
140 |
||
48548 | 141 |
def parse_entries(root: Path): List[Session_Entry] = |
48334 | 142 |
{ |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
48409
diff
changeset
|
143 |
val toks = syntax.scan(File.read(root)) |
48548 | 144 |
parse_all(rep(session_entry), Token.reader(toks, root.implode)) match { |
48334 | 145 |
case Success(result, _) => result |
146 |
case bad => error(bad.toString) |
|
147 |
} |
|
148 |
} |
|
149 |
} |
|
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
150 |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
151 |
|
48341 | 152 |
/* find sessions */ |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
153 |
|
48361 | 154 |
private val ROOT = Path.explode("ROOT") |
155 |
private val SESSIONS = Path.explode("etc/sessions") |
|
156 |
||
48364 | 157 |
private def is_pure(name: String): Boolean = name == "RAW" || name == "Pure" |
158 |
||
48548 | 159 |
private def sessions_root(options: Options, dir: Path, root: Path, queue: Session.Queue) |
48421 | 160 |
: Session.Queue = |
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
161 |
{ |
48361 | 162 |
(queue /: Parser.parse_entries(root))((queue1, entry) => |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
163 |
try { |
48544 | 164 |
if (entry.base_name == "") error("Bad session name") |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
165 |
|
48541
f31ef1a0285a
more precise imitation of usedir wrt. Session.name (cf. 45137257399a);
wenzelm
parents:
48537
diff
changeset
|
166 |
val full_name = |
48544 | 167 |
if (is_pure(entry.base_name)) { |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
168 |
if (entry.parent.isDefined) error("Illegal parent session") |
48544 | 169 |
else entry.base_name |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
170 |
} |
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
171 |
else |
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
172 |
entry.parent match { |
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
173 |
case Some(parent_name) if queue1.isDefinedAt(parent_name) => |
48482
45137257399a
pass parent_base_name, which is required for Session.init sanity check;
wenzelm
parents:
48478
diff
changeset
|
174 |
val full_name = |
48544 | 175 |
if (entry.this_name) entry.base_name |
176 |
else parent_name + "-" + entry.base_name |
|
48541
f31ef1a0285a
more precise imitation of usedir wrt. Session.name (cf. 45137257399a);
wenzelm
parents:
48537
diff
changeset
|
177 |
full_name |
48351 | 178 |
case _ => error("Bad parent session") |
48347
8bb27ab9e841
more explicit treatment of initial Pure sessions;
wenzelm
parents:
48346
diff
changeset
|
179 |
} |
48339 | 180 |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
181 |
val path = |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
182 |
entry.path match { |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
183 |
case Some(p) => Path.explode(p) |
48544 | 184 |
case None => Path.basic(entry.base_name) |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
185 |
} |
48339 | 186 |
|
48467
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
187 |
val session_options = options ++ entry.options |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
188 |
|
48421 | 189 |
val theories = |
48467
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
190 |
entry.theories.map({ case (opts, thys) => |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
191 |
(session_options ++ opts, thys.map(Path.explode(_))) }) |
48421 | 192 |
val files = entry.files.map(Path.explode(_)) |
48544 | 193 |
val entry_digest = |
194 |
SHA1.digest((full_name, entry.parent, entry.options, entry.theories).toString) |
|
48423
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
wenzelm
parents:
48422
diff
changeset
|
195 |
|
48418 | 196 |
val info = |
48544 | 197 |
Session.Info(entry.groups, dir + path, entry.parent, entry.description, |
198 |
session_options, theories, files, entry_digest) |
|
48351 | 199 |
|
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
200 |
queue1 + (full_name, info) |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
201 |
} |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
202 |
catch { |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
203 |
case ERROR(msg) => |
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
204 |
error(msg + "\nThe error(s) above occurred in session entry " + |
48548 | 205 |
quote(entry.base_name) + Position.str_of(root.position)) |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
206 |
}) |
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
207 |
} |
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
208 |
|
48421 | 209 |
private def sessions_dir(options: Options, strict: Boolean, dir: Path, queue: Session.Queue) |
210 |
: Session.Queue = |
|
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
211 |
{ |
48548 | 212 |
val root = dir + ROOT |
213 |
if (root.is_file) sessions_root(options, dir, root, queue) |
|
214 |
else if (strict) error("Bad session root file: " + root.toString) |
|
48361 | 215 |
else queue |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
216 |
} |
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
217 |
|
48548 | 218 |
private def sessions_catalog(options: Options, dir: Path, catalog: Path, queue: Session.Queue) |
48421 | 219 |
: Session.Queue = |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
220 |
{ |
48354 | 221 |
val dirs = |
48411
5b3440850d36
more abstract file system operations in Scala, corresponding to ML version;
wenzelm
parents:
48409
diff
changeset
|
222 |
split_lines(File.read(catalog)).filterNot(line => line == "" || line.startsWith("#")) |
48361 | 223 |
(queue /: dirs)((queue1, dir1) => |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
224 |
try { |
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
225 |
val dir2 = dir + Path.explode(dir1) |
48548 | 226 |
if (dir2.is_dir) sessions_dir(options, true, dir2, queue1) |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
227 |
else error("Bad session directory: " + dir2.toString) |
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
228 |
} |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
229 |
catch { |
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
230 |
case ERROR(msg) => |
48548 | 231 |
error(msg + "\nThe error(s) above occurred in session catalog " + catalog.toString) |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
232 |
}) |
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
233 |
} |
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
234 |
|
48509 | 235 |
def find_sessions(options: Options, more_dirs: List[Path], |
236 |
all_sessions: Boolean, session_groups: List[String], sessions: List[String]): Session.Queue = |
|
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
237 |
{ |
48361 | 238 |
var queue = Session.Queue.empty |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
239 |
|
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
240 |
for (dir <- Isabelle_System.components()) { |
48421 | 241 |
queue = sessions_dir(options, false, dir, queue) |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
242 |
|
48548 | 243 |
val catalog = dir + SESSIONS |
244 |
if (catalog.is_file) queue = sessions_catalog(options, dir, catalog, queue) |
|
48337
9c7f8e5805b4
cumulate semantic Session_Info, based on syntactic Session_Entry;
wenzelm
parents:
48336
diff
changeset
|
245 |
} |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
246 |
|
48421 | 247 |
for (dir <- more_dirs) queue = sessions_dir(options, true, dir, queue) |
48352
7fbf98ee265f
include COMPONENT/etc/sessions as catalog for more directories, for improved scalability with hundreds of entries (notably AFP);
wenzelm
parents:
48351
diff
changeset
|
248 |
|
48508
5a59e4c03957
discontinued slightly odd session order, which did not quite work out;
wenzelm
parents:
48505
diff
changeset
|
249 |
sessions.filter(name => !queue.isDefinedAt(name)) match { |
48419 | 250 |
case Nil => |
251 |
case bad => error("Undefined session(s): " + commas_quote(bad)) |
|
252 |
} |
|
253 |
||
48509 | 254 |
if (all_sessions) queue else queue.required(session_groups, sessions) |
48280
7d86239986c2
basic support for session ROOT files, with examples for FOL and ZF;
wenzelm
parents:
48276
diff
changeset
|
255 |
} |
48341 | 256 |
|
257 |
||
48424 | 258 |
|
259 |
/** build **/ |
|
260 |
||
48478 | 261 |
private def echo(msg: String) { java.lang.System.out.println(msg) } |
262 |
private def sleep(): Unit = Thread.sleep(500) |
|
263 |
||
264 |
||
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
265 |
/* source dependencies */ |
48422
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
266 |
|
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
267 |
sealed case class Node( |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
268 |
loaded_theories: Set[String], |
48423
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
wenzelm
parents:
48422
diff
changeset
|
269 |
sources: List[(Path, SHA1.Digest)]) |
48422
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
270 |
|
48423
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
wenzelm
parents:
48422
diff
changeset
|
271 |
sealed case class Deps(deps: Map[String, Node]) |
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
wenzelm
parents:
48422
diff
changeset
|
272 |
{ |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
273 |
def sources(name: String): List[SHA1.Digest] = deps(name).sources.map(_._2) |
48423
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
wenzelm
parents:
48422
diff
changeset
|
274 |
} |
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
wenzelm
parents:
48422
diff
changeset
|
275 |
|
48478 | 276 |
def dependencies(verbose: Boolean, queue: Session.Queue): Deps = |
48423
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
wenzelm
parents:
48422
diff
changeset
|
277 |
Deps((Map.empty[String, Node] /: queue.topological_order)( |
48422
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
278 |
{ case (deps, (name, info)) => |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
279 |
val preloaded = |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
280 |
info.parent match { |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
281 |
case None => Set.empty[String] |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
282 |
case Some(parent) => deps(parent).loaded_theories |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
283 |
} |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
284 |
val thy_info = new Thy_Info(new Thy_Load(preloaded)) |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
285 |
|
48546 | 286 |
if (verbose) echo("Checking " + name + " ...") |
48478 | 287 |
|
48422
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
288 |
val thy_deps = |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
289 |
thy_info.dependencies( |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
290 |
info.theories.map(_._2).flatten. |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
291 |
map(thy => Document.Node.Name(info.dir + Thy_Load.thy_path(thy)))) |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
292 |
|
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
293 |
val loaded_theories = preloaded ++ thy_deps.map(_._1.theory) |
48423
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
wenzelm
parents:
48422
diff
changeset
|
294 |
|
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
wenzelm
parents:
48422
diff
changeset
|
295 |
val all_files = |
48422
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
296 |
thy_deps.map({ case (n, h) => |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
297 |
val thy = Path.explode(n.node).expand |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
298 |
val uses = |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
299 |
h match { |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
300 |
case Exn.Res(d) => |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
301 |
d.uses.map(p => (Path.explode(n.dir) + Path.explode(p._1)).expand) |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
302 |
case _ => Nil |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
303 |
} |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
304 |
thy :: uses |
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
305 |
}).flatten ::: info.files.map(file => info.dir + file) |
48485 | 306 |
val sources = |
307 |
try { all_files.map(p => (p, SHA1.digest(p))) } |
|
308 |
catch { |
|
309 |
case ERROR(msg) => |
|
310 |
error(msg + "\nThe error(s) above occurred in session " + quote(name)) |
|
311 |
} |
|
48422
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
312 |
|
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
313 |
deps + (name -> Node(loaded_theories, sources)) |
48423
0ccf143a2a69
maintain set of source digests, including relevant parts of session entry;
wenzelm
parents:
48422
diff
changeset
|
314 |
})) |
48422
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
315 |
|
9613780a805b
determine source dependencies, relatively to preloaded theories;
wenzelm
parents:
48421
diff
changeset
|
316 |
|
48424 | 317 |
/* jobs */ |
48341 | 318 |
|
48548 | 319 |
private class Job(dir: Path, env: Map[String, String], script: String, args: String, |
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
320 |
output: Path, do_output: Boolean) |
48364 | 321 |
{ |
48418 | 322 |
private val args_file = File.tmp_file("args") |
323 |
private val env1 = env + ("ARGS_FILE" -> Isabelle_System.posix_path(args_file.getPath)) |
|
324 |
File.write(args_file, args) |
|
325 |
||
48424 | 326 |
private val (thread, result) = |
48548 | 327 |
Simple_Thread.future("build") { Isabelle_System.bash_env(dir.file, env1, script) } |
48418 | 328 |
|
329 |
def terminate: Unit = thread.interrupt |
|
330 |
def is_finished: Boolean = result.is_finished |
|
48425 | 331 |
def join: (String, String, Int) = { val res = result.join; args_file.delete; res } |
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
332 |
def output_path: Option[Path] = if (do_output) Some(output) else None |
48418 | 333 |
} |
334 |
||
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
335 |
private def start_job(name: String, info: Session.Info, output: Path, do_output: Boolean, |
48545 | 336 |
options: Options, verbose: Boolean, browser_info: Path): Job = |
48418 | 337 |
{ |
48467
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
338 |
// global browser info dir |
48548 | 339 |
if (options.bool("browser_info") && !(browser_info + Path.explode("index.html")).is_file) |
48467
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
340 |
{ |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
341 |
browser_info.file.mkdirs() |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
342 |
File.copy(Path.explode("~~/lib/logo/isabelle.gif"), |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
343 |
browser_info + Path.explode("isabelle.gif")) |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
344 |
File.write(browser_info + Path.explode("index.html"), |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
345 |
File.read(Path.explode("~~/lib/html/library_index_header.template")) + |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
346 |
File.read(Path.explode("~~/lib/html/library_index_content.template")) + |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
347 |
File.read(Path.explode("~~/lib/html/library_index_footer.template"))) |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
348 |
} |
a4318c36a829
more precise propagation of options: build, session, theories;
wenzelm
parents:
48462
diff
changeset
|
349 |
|
48418 | 350 |
val parent = info.parent.getOrElse("") |
351 |
||
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
352 |
val env = |
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
353 |
Map("INPUT" -> parent, "TARGET" -> name, "OUTPUT" -> Isabelle_System.standard_path(output)) |
48364 | 354 |
val script = |
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
355 |
if (is_pure(name)) { |
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
356 |
if (do_output) "./build " + name + " \"$OUTPUT\"" |
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
357 |
else """ rm -f "$OUTPUT"; ./build """ + name |
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
358 |
} |
48418 | 359 |
else { |
360 |
""" |
|
361 |
. "$ISABELLE_HOME/lib/scripts/timestart.bash" |
|
362 |
""" + |
|
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
363 |
(if (do_output) |
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
364 |
""" |
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
365 |
"$ISABELLE_PROCESS" -e "Build.build \"$ARGS_FILE\";" -q -w "$INPUT" "$OUTPUT" |
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
366 |
""" |
48418 | 367 |
else |
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
368 |
""" |
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
369 |
rm -f "$OUTPUT"; "$ISABELLE_PROCESS" -e "Build.build \"$ARGS_FILE\";" -r -q "$INPUT" |
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
370 |
""") + |
48418 | 371 |
""" |
372 |
RC="$?" |
|
373 |
||
374 |
. "$ISABELLE_HOME/lib/scripts/timestop.bash" |
|
375 |
||
376 |
if [ "$RC" -eq 0 ]; then |
|
377 |
echo "Finished $TARGET ($TIMES_REPORT)" >&2 |
|
378 |
fi |
|
379 |
||
380 |
exit "$RC" |
|
381 |
""" |
|
382 |
} |
|
383 |
val args_xml = |
|
384 |
{ |
|
385 |
import XML.Encode._ |
|
48545 | 386 |
pair(bool, pair(Options.encode, pair(bool, pair(Path.encode, pair(string, |
387 |
pair(string, list(pair(Options.encode, list(Path.encode)))))))))( |
|
388 |
(do_output, (options, (verbose, (browser_info, (parent, |
|
389 |
(name, info.theories))))))) |
|
48418 | 390 |
} |
48548 | 391 |
new Job(info.dir, env, script, YXML.string_of_body(args_xml), output, do_output) |
48364 | 392 |
} |
393 |
||
48424 | 394 |
|
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
395 |
/* log files and corresponding heaps */ |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
396 |
|
48505 | 397 |
private val LOG = Path.explode("log") |
398 |
private def log(name: String): Path = LOG + Path.basic(name) |
|
399 |
private def log_gz(name: String): Path = log(name).ext("gz") |
|
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
400 |
|
48505 | 401 |
private def sources_stamp(digests: List[SHA1.Digest]): String = |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
402 |
digests.map(_.toString).sorted.mkString("sources: ", " ", "") |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
403 |
|
48505 | 404 |
private def heap_stamp(output: Option[Path]): String = |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
405 |
{ |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
406 |
"heap: " + |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
407 |
(output match { |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
408 |
case Some(path) => |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
409 |
val file = path.file |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
410 |
if (file.isFile) file.length.toString + " " + file.lastModified.toString |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
411 |
else "-" |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
412 |
case None => "-" |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
413 |
}) |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
414 |
} |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
415 |
|
48505 | 416 |
private def check_stamps(dir: Path, name: String): Option[(String, Boolean)] = |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
417 |
{ |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
418 |
val file = (dir + log_gz(name)).file |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
419 |
if (file.isFile) { |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
420 |
val stream = new GZIPInputStream (new BufferedInputStream(new FileInputStream(file))) |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
421 |
val reader = new BufferedReader(new InputStreamReader(stream, Standard_System.charset)) |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
422 |
val (s, h) = try { (reader.readLine, reader.readLine) } finally { reader.close } |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
423 |
if (s != null && s.startsWith("sources: ") && h != null && h.startsWith("heap: ") && |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
424 |
h == heap_stamp(Some(dir + Path.basic(name)))) Some((s, h != "heap: -")) |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
425 |
else None |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
426 |
} |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
427 |
else None |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
428 |
} |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
429 |
|
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
430 |
|
48425 | 431 |
/* build */ |
48424 | 432 |
|
48509 | 433 |
def build( |
434 |
all_sessions: Boolean = false, |
|
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
435 |
build_heap: Boolean = false, |
48509 | 436 |
more_dirs: List[Path] = Nil, |
437 |
session_groups: List[String] = Nil, |
|
438 |
max_jobs: Int = 1, |
|
439 |
no_build: Boolean = false, |
|
440 |
build_options: List[String] = Nil, |
|
441 |
system_mode: Boolean = false, |
|
442 |
verbose: Boolean = false, |
|
443 |
sessions: List[String] = Nil): Int = |
|
48341 | 444 |
{ |
48509 | 445 |
val options = (Options.init() /: build_options)(_.define_simple(_)) |
446 |
val queue = find_sessions(options, more_dirs, all_sessions, session_groups, sessions) |
|
48478 | 447 |
val deps = dependencies(verbose, queue) |
48368 | 448 |
|
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
449 |
def make_stamp(name: String): String = |
48544 | 450 |
sources_stamp(queue(name).entry_digest :: deps.sources(name)) |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
451 |
|
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
452 |
val (input_dirs, output_dir, browser_info) = |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
453 |
if (system_mode) { |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
454 |
val output_dir = Path.explode("~~/heaps/$ML_IDENTIFIER") |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
455 |
(List(output_dir), output_dir, Path.explode("~~/browser_info")) |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
456 |
} |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
457 |
else { |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
458 |
val output_dir = Path.explode("$ISABELLE_OUTPUT") |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
459 |
(output_dir :: Isabelle_System.find_logics_dirs(), output_dir, |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
460 |
Path.explode("$ISABELLE_BROWSER_INFO")) |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
461 |
} |
48363 | 462 |
|
48373 | 463 |
// prepare log dir |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
464 |
(output_dir + LOG).file.mkdirs() |
48373 | 465 |
|
48425 | 466 |
// scheduler loop |
467 |
@tailrec def loop( |
|
468 |
pending: Session.Queue, |
|
469 |
running: Map[String, Job], |
|
48537
ba0dd46b9214
further refinement of current/all_current status, which needs to be propagated through the hierarchy (see also Thy_Info.require_thys);
wenzelm
parents:
48528
diff
changeset
|
470 |
results: Map[String, (Boolean, Int)]): Map[String, (Boolean, Int)] = |
48425 | 471 |
{ |
472 |
if (pending.is_empty) results |
|
48547 | 473 |
else |
474 |
running.find({ case (_, job) => job.is_finished }) match { |
|
475 |
case Some((name, job)) => |
|
476 |
// finish job |
|
48424 | 477 |
|
48547 | 478 |
val (out, err, rc) = job.join |
479 |
echo(Library.trim_line(err)) |
|
48373 | 480 |
|
48547 | 481 |
if (rc == 0) { |
482 |
val sources = make_stamp(name) |
|
483 |
val heap = heap_stamp(job.output_path) |
|
48549 | 484 |
(output_dir + log(name)).file.delete |
48547 | 485 |
File.write_gzip(output_dir + log_gz(name), sources + "\n" + heap + "\n" + out) |
486 |
} |
|
487 |
else { |
|
48549 | 488 |
(output_dir + log_gz(name)).file.delete |
48547 | 489 |
File.write(output_dir + log(name), out) |
490 |
echo(name + " FAILED") |
|
491 |
echo("(see also " + log(name).file.toString + ")") |
|
492 |
val lines = split_lines(out) |
|
493 |
val tail = lines.drop(lines.length - 20 max 0) |
|
494 |
echo("\n" + cat_lines(tail)) |
|
495 |
} |
|
496 |
loop(pending - name, running - name, results + (name -> (false, rc))) |
|
48528
784c6f63d79c
proper all_current, which regards parent status as well;
wenzelm
parents:
48511
diff
changeset
|
497 |
|
48547 | 498 |
case None if (running.size < (max_jobs max 1)) => |
499 |
// check/start next job |
|
500 |
pending.dequeue(running.isDefinedAt(_)) match { |
|
501 |
case Some((name, info)) => |
|
502 |
val parent_result = info.parent.map(results(_)) |
|
503 |
val parent_current = parent_result.forall(_._1) |
|
504 |
val parent_ok = parent_result.forall(_._2 == 0) |
|
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
505 |
|
48547 | 506 |
val output = output_dir + Path.basic(name) |
507 |
val do_output = build_heap || queue.is_inner(name) |
|
508 |
||
509 |
val current = |
|
510 |
{ |
|
48548 | 511 |
input_dirs.find(dir => (dir + log_gz(name)).is_file) match { |
48547 | 512 |
case Some(dir) => |
513 |
check_stamps(dir, name) match { |
|
514 |
case Some((s, h)) => s == make_stamp(name) && (h || !do_output) |
|
515 |
case None => false |
|
516 |
} |
|
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
517 |
case None => false |
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
518 |
} |
48547 | 519 |
} |
520 |
val all_current = current && parent_current |
|
48528
784c6f63d79c
proper all_current, which regards parent status as well;
wenzelm
parents:
48511
diff
changeset
|
521 |
|
48547 | 522 |
if (all_current) |
523 |
loop(pending - name, running, results + (name -> (true, 0))) |
|
524 |
else if (no_build) |
|
525 |
loop(pending - name, running, results + (name -> (false, 1))) |
|
526 |
else if (parent_ok) { |
|
527 |
echo((if (do_output) "Building " else "Running ") + name + " ...") |
|
528 |
val job = |
|
529 |
start_job(name, info, output, do_output, info.options, verbose, browser_info) |
|
530 |
loop(pending, running + (name -> job), results) |
|
531 |
} |
|
532 |
else { |
|
533 |
echo(name + " CANCELLED") |
|
534 |
loop(pending - name, running, results + (name -> (false, 1))) |
|
535 |
} |
|
536 |
case None => sleep(); loop(pending, running, results) |
|
48425 | 537 |
} |
538 |
case None => sleep(); loop(pending, running, results) |
|
48373 | 539 |
} |
48425 | 540 |
} |
541 |
||
48473 | 542 |
val results = loop(queue, Map.empty, Map.empty) |
48537
ba0dd46b9214
further refinement of current/all_current status, which needs to be propagated through the hierarchy (see also Thy_Info.require_thys);
wenzelm
parents:
48528
diff
changeset
|
543 |
val rc = (0 /: results)({ case (rc1, (_, (_, rc2))) => rc1 max rc2 }) |
48504
21dfd6c04482
actually check source vs. target stamps, based on information from log files;
wenzelm
parents:
48494
diff
changeset
|
544 |
if (rc != 0 && (verbose || !no_build)) { |
48473 | 545 |
val unfinished = (for ((name, r) <- results.iterator if r != 0) yield name).toList.sorted |
546 |
echo("Unfinished session(s): " + commas(unfinished)) |
|
547 |
} |
|
548 |
rc |
|
48341 | 549 |
} |
550 |
||
551 |
||
48346
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
552 |
/* command line entry point */ |
48341 | 553 |
|
554 |
def main(args: Array[String]) |
|
555 |
{ |
|
48346
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
556 |
Command_Line.tool { |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
557 |
args.toList match { |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
558 |
case |
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
559 |
Properties.Value.Boolean(all_sessions) :: |
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
560 |
Properties.Value.Boolean(build_heap) :: |
48425 | 561 |
Properties.Value.Int(max_jobs) :: |
48469 | 562 |
Properties.Value.Boolean(no_build) :: |
48447
ef600ce4559c
added system build mode: produce output in ISABELLE_HOME;
wenzelm
parents:
48425
diff
changeset
|
563 |
Properties.Value.Boolean(system_mode) :: |
48425 | 564 |
Properties.Value.Boolean(verbose) :: |
48509 | 565 |
Command_Line.Chunks(more_dirs, session_groups, build_options, sessions) => |
48511
37999ee01156
remove old output heaps, to ensure that result is valid wrt. check_stamps;
wenzelm
parents:
48509
diff
changeset
|
566 |
build(all_sessions, build_heap, more_dirs.map(Path.explode), session_groups, |
48545 | 567 |
max_jobs, no_build, build_options, system_mode, verbose, sessions) |
48346
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
568 |
case _ => error("Bad arguments:\n" + cat_lines(args)) |
48341 | 569 |
} |
48346
e2382bede914
more general support for Isabelle/Scala command line tools;
wenzelm
parents:
48344
diff
changeset
|
570 |
} |
48341 | 571 |
} |
48276 | 572 |
} |
573 |