author | wenzelm |
Sat, 04 Mar 2023 16:45:21 +0100 | |
changeset 77505 | 7ee426daafa3 |
parent 77496 | f0d9f9196b9b |
child 77509 | 3bc49507bae5 |
permissions | -rw-r--r-- |
77238 | 1 |
/* Title: Pure/Tools/build_process.scala |
2 |
Author: Makarius |
|
3 |
||
4 |
Build process for sessions, with build database, optional heap, and |
|
5 |
optional presentation. |
|
6 |
*/ |
|
7 |
||
8 |
package isabelle |
|
9 |
||
10 |
||
77505 | 11 |
import scala.collection.immutable.SortedMap |
77246 | 12 |
import scala.math.Ordering |
77257 | 13 |
import scala.annotation.tailrec |
77246 | 14 |
|
15 |
||
77238 | 16 |
object Build_Process { |
77436 | 17 |
/** static context **/ |
77238 | 18 |
|
77246 | 19 |
object Context { |
20 |
def apply( |
|
21 |
store: Sessions.Store, |
|
77453 | 22 |
build_deps: Sessions.Deps, |
77315
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
23 |
progress: Progress = new Progress, |
77378
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
24 |
hostname: String = Isabelle_System.hostname(), |
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
25 |
numa_shuffling: Boolean = false, |
77315
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
26 |
build_heap: Boolean = false, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
27 |
max_jobs: Int = 1, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
28 |
fresh_build: Boolean = false, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
29 |
no_build: Boolean = false, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
30 |
verbose: Boolean = false, |
77378
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
31 |
session_setup: (String, Session) => Unit = (_, _) => (), |
77456
4fec9413f14b
identify Build_Process.Context.instance with Sessions.Build_Info (see also ff164add75cd);
wenzelm
parents:
77455
diff
changeset
|
32 |
uuid: String = UUID.random().toString |
77246 | 33 |
): Context = { |
77453 | 34 |
val sessions_structure = build_deps.sessions_structure |
77247 | 35 |
val build_graph = sessions_structure.build_graph |
36 |
||
77246 | 37 |
val sessions = |
38 |
Map.from( |
|
77448 | 39 |
for ((name, (info, _)) <- build_graph.iterator) |
77249
f3f1b7ad1d0d
clarified data structure: more direct access to timeout;
wenzelm
parents:
77248
diff
changeset
|
40 |
yield { |
77447
566e6e393126
proper deps from build_graph, not imports_graph (amending 0c704aba71e3);
wenzelm
parents:
77446
diff
changeset
|
41 |
val deps = info.parent.toList |
566e6e393126
proper deps from build_graph, not imports_graph (amending 0c704aba71e3);
wenzelm
parents:
77446
diff
changeset
|
42 |
val ancestors = sessions_structure.build_requirements(deps) |
77458 | 43 |
val sources_shasum = build_deps.sources_shasum(name) |
77444
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
44 |
val session_context = |
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
45 |
Build_Job.Session_Context.load( |
77496 | 46 |
uuid, name, deps, ancestors, sources_shasum, info.timeout, store, |
47 |
progress = progress) |
|
77444
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
48 |
name -> session_context |
77249
f3f1b7ad1d0d
clarified data structure: more direct access to timeout;
wenzelm
parents:
77248
diff
changeset
|
49 |
}) |
77247 | 50 |
|
77248 | 51 |
val sessions_time = { |
52 |
val maximals = build_graph.maximals.toSet |
|
53 |
def descendants_time(name: String): Double = { |
|
54 |
if (maximals.contains(name)) sessions(name).old_time.seconds |
|
55 |
else { |
|
56 |
val descendants = build_graph.all_succs(List(name)).toSet |
|
57 |
val g = build_graph.restrict(descendants) |
|
58 |
(0.0 :: g.maximals.flatMap { desc => |
|
59 |
val ps = g.all_preds(List(desc)) |
|
60 |
if (ps.exists(p => !sessions.isDefinedAt(p))) None |
|
61 |
else Some(ps.map(p => sessions(p).old_time.seconds).sum) |
|
62 |
}).max |
|
63 |
} |
|
77247 | 64 |
} |
77248 | 65 |
Map.from( |
66 |
for (name <- sessions.keysIterator) |
|
67 |
yield name -> descendants_time(name)).withDefaultValue(0.0) |
|
77247 | 68 |
} |
69 |
||
77246 | 70 |
val ordering = |
71 |
new Ordering[String] { |
|
72 |
def compare(name1: String, name2: String): Int = |
|
77248 | 73 |
sessions_time(name2) compare sessions_time(name1) match { |
77246 | 74 |
case 0 => |
77249
f3f1b7ad1d0d
clarified data structure: more direct access to timeout;
wenzelm
parents:
77248
diff
changeset
|
75 |
sessions(name2).timeout compare sessions(name1).timeout match { |
77246 | 76 |
case 0 => name1 compare name2 |
77 |
case ord => ord |
|
78 |
} |
|
79 |
case ord => ord |
|
80 |
} |
|
81 |
} |
|
82 |
||
77477 | 83 |
val numa_nodes = Host.numa_nodes(enabled = numa_shuffling) |
77505 | 84 |
new Context(store, build_deps, sessions, ordering, hostname, numa_nodes, |
77317
b8ec3c0455db
clarified modules: NUMA is managed by Build_Process;
wenzelm
parents:
77315
diff
changeset
|
85 |
build_heap = build_heap, max_jobs = max_jobs, fresh_build = fresh_build, |
77457 | 86 |
no_build = no_build, verbose = verbose, session_setup, uuid = uuid) |
77246 | 87 |
} |
88 |
} |
|
89 |
||
77496 | 90 |
// static context of one particular instance, identified by uuid |
77246 | 91 |
final class Context private( |
77257 | 92 |
val store: Sessions.Store, |
77453 | 93 |
val build_deps: Sessions.Deps, |
77496 | 94 |
val sessions: State.Sessions, |
77257 | 95 |
val ordering: Ordering[String], |
77378
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
96 |
val hostname: String, |
77317
b8ec3c0455db
clarified modules: NUMA is managed by Build_Process;
wenzelm
parents:
77315
diff
changeset
|
97 |
val numa_nodes: List[Int], |
77315
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
98 |
val build_heap: Boolean, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
99 |
val max_jobs: Int, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
100 |
val fresh_build: Boolean, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
101 |
val no_build: Boolean, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
102 |
val verbose: Boolean, |
77378
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
103 |
val session_setup: (String, Session) => Unit, |
77457 | 104 |
val uuid: String |
77246 | 105 |
) { |
77470 | 106 |
def build_options: Options = store.options |
107 |
||
77453 | 108 |
def sessions_structure: Sessions.Structure = build_deps.sessions_structure |
77257 | 109 |
|
77462 | 110 |
def sources_shasum(name: String): SHA1.Shasum = sessions(name).sources_shasum |
77458 | 111 |
|
77462 | 112 |
def old_command_timings(name: String): List[Properties.T] = |
113 |
sessions.get(name) match { |
|
77444
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
114 |
case Some(session_context) => |
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
115 |
Properties.uncompress(session_context.old_command_timings_blob, cache = store.cache) |
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
116 |
case None => Nil |
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
117 |
} |
77439
d6bf9ec39d12
avoid premature Properties.uncompress: allow blob to be stored in another database;
wenzelm
parents:
77438
diff
changeset
|
118 |
|
77463 | 119 |
def store_heap(name: String): Boolean = |
77462 | 120 |
build_heap || Sessions.is_pure(name) || |
121 |
sessions.valuesIterator.exists(_.ancestors.contains(name)) |
|
77246 | 122 |
} |
77257 | 123 |
|
124 |
||
77436 | 125 |
|
126 |
/** dynamic state **/ |
|
77257 | 127 |
|
77505 | 128 |
type Progress_Messages = SortedMap[Long, Progress.Message] |
129 |
||
77344 | 130 |
case class Entry(name: String, deps: List[String], info: JSON.Object.T = JSON.Object.empty) { |
77313
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
131 |
def is_ready: Boolean = deps.isEmpty |
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
132 |
def resolve(dep: String): Entry = |
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
133 |
if (deps.contains(dep)) copy(deps = deps.filterNot(_ == dep)) else this |
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
134 |
} |
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
135 |
|
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
136 |
case class Result( |
77461 | 137 |
process_result: Process_Result, |
77460
ccca589d7027
tuned signature: support general Build_Job instances;
wenzelm
parents:
77459
diff
changeset
|
138 |
output_shasum: SHA1.Shasum, |
77475 | 139 |
node_info: Host.Node_Info, |
77461 | 140 |
current: Boolean |
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
141 |
) { |
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
142 |
def ok: Boolean = process_result.ok |
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
143 |
} |
77312 | 144 |
|
77496 | 145 |
object State { |
146 |
type Sessions = Map[String, Build_Job.Session_Context] |
|
147 |
type Pending = List[Entry] |
|
148 |
type Running = Map[String, Build_Job] |
|
149 |
type Results = Map[String, Result] |
|
150 |
} |
|
151 |
||
152 |
// dynamic state of various instances, distinguished by uuid |
|
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
153 |
sealed case class State( |
77372 | 154 |
serial: Long = 0, |
77505 | 155 |
progress_seen: Long = 0, |
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
156 |
numa_index: Int = 0, |
77496 | 157 |
sessions: State.Sessions = Map.empty, // static build targets |
158 |
pending: State.Pending = Nil, // dynamic build "queue" |
|
159 |
running: State.Running = Map.empty, // presently running jobs |
|
160 |
results: State.Results = Map.empty // finished results |
|
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
161 |
) { |
77505 | 162 |
def echo(progress: Progress, message_serial: Long, message: Progress.Message): State = |
163 |
if (message_serial > progress_seen) { |
|
164 |
progress.echo(message) |
|
165 |
copy(progress_seen = message_serial) |
|
166 |
} |
|
167 |
else { |
|
168 |
error("Bad serial " + message_serial + " (already seen) for progress message:\n" + message) |
|
169 |
} |
|
170 |
||
77343 | 171 |
def numa_next(numa_nodes: List[Int]): (Option[Int], State) = |
172 |
if (numa_nodes.isEmpty) (None, this) |
|
173 |
else { |
|
174 |
val available = numa_nodes.zipWithIndex |
|
77372 | 175 |
val used = |
176 |
Set.from(for (job <- running.valuesIterator; i <- job.node_info.numa_node) yield i) |
|
77343 | 177 |
val candidates = available.drop(numa_index) ::: available.take(numa_index) |
178 |
val (n, i) = |
|
179 |
candidates.find({ case (n, i) => i == numa_index && !used(n) }) orElse |
|
180 |
candidates.find({ case (n, _) => !used(n) }) getOrElse candidates.head |
|
181 |
(Some(n), copy(numa_index = (i + 1) % available.length)) |
|
182 |
} |
|
77337 | 183 |
|
77335 | 184 |
def finished: Boolean = pending.isEmpty |
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
185 |
|
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
186 |
def remove_pending(name: String): State = |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
187 |
copy(pending = pending.flatMap( |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
188 |
entry => if (entry.name == name) None else Some(entry.resolve(name)))) |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
189 |
|
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
190 |
def is_running(name: String): Boolean = running.isDefinedAt(name) |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
191 |
|
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77477
diff
changeset
|
192 |
def stop_running(): Unit = running.valuesIterator.foreach(_.cancel()) |
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
193 |
|
77398
19e9cafaafc5
clarified signature: works for general Build_Job;
wenzelm
parents:
77396
diff
changeset
|
194 |
def finished_running(): List[Build_Job] = |
19e9cafaafc5
clarified signature: works for general Build_Job;
wenzelm
parents:
77396
diff
changeset
|
195 |
List.from(running.valuesIterator.filter(_.is_finished)) |
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
196 |
|
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
197 |
def add_running(name: String, job: Build_Job): State = |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
198 |
copy(running = running + (name -> job)) |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
199 |
|
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
200 |
def remove_running(name: String): State = |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
201 |
copy(running = running - name) |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
202 |
|
77336 | 203 |
def make_result( |
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
204 |
name: String, |
77461 | 205 |
process_result: Process_Result, |
77460
ccca589d7027
tuned signature: support general Build_Job instances;
wenzelm
parents:
77459
diff
changeset
|
206 |
output_shasum: SHA1.Shasum, |
77475 | 207 |
node_info: Host.Node_Info = Host.Node_Info.none, |
77461 | 208 |
current: Boolean = false |
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
209 |
): State = { |
77461 | 210 |
val entry = name -> Build_Process.Result(process_result, output_shasum, node_info, current) |
211 |
copy(results = results + entry) |
|
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
212 |
} |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
213 |
} |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
214 |
|
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
215 |
|
77436 | 216 |
|
217 |
/** SQL data model **/ |
|
77372 | 218 |
|
219 |
object Data { |
|
220 |
val database = Path.explode("$ISABELLE_HOME_USER/build.db") |
|
221 |
||
222 |
def make_table(name: String, columns: List[SQL.Column], body: String = ""): SQL.Table = |
|
223 |
SQL.Table("isabelle_build" + if_proper(name, "_" + name), columns, body = body) |
|
224 |
||
225 |
object Generic { |
|
77456
4fec9413f14b
identify Build_Process.Context.instance with Sessions.Build_Info (see also ff164add75cd);
wenzelm
parents:
77455
diff
changeset
|
226 |
val uuid = SQL.Column.string("uuid") |
77372 | 227 |
val name = SQL.Column.string("name") |
228 |
||
77456
4fec9413f14b
identify Build_Process.Context.instance with Sessions.Build_Info (see also ff164add75cd);
wenzelm
parents:
77455
diff
changeset
|
229 |
def sql_equal(uuid: String = "", name: String = ""): SQL.Source = |
77372 | 230 |
SQL.and( |
77456
4fec9413f14b
identify Build_Process.Context.instance with Sessions.Build_Info (see also ff164add75cd);
wenzelm
parents:
77455
diff
changeset
|
231 |
if_proper(uuid, Generic.uuid.equal(uuid)), |
77372 | 232 |
if_proper(name, Generic.name.equal(name))) |
233 |
||
77456
4fec9413f14b
identify Build_Process.Context.instance with Sessions.Build_Info (see also ff164add75cd);
wenzelm
parents:
77455
diff
changeset
|
234 |
def sql_member(uuid: String = "", names: Iterable[String] = Nil): SQL.Source = |
77372 | 235 |
SQL.and( |
77456
4fec9413f14b
identify Build_Process.Context.instance with Sessions.Build_Info (see also ff164add75cd);
wenzelm
parents:
77455
diff
changeset
|
236 |
if_proper(uuid, Generic.uuid.equal(uuid)), |
77375 | 237 |
if_proper(names, Generic.name.member(names))) |
77372 | 238 |
} |
239 |
||
77417 | 240 |
object Base { |
77456
4fec9413f14b
identify Build_Process.Context.instance with Sessions.Build_Info (see also ff164add75cd);
wenzelm
parents:
77455
diff
changeset
|
241 |
val uuid = Generic.uuid.make_primary_key |
77387
cd10b8edfdf5
clarified db content: avoid redundancy of historic ML_IDENTIFIER;
wenzelm
parents:
77385
diff
changeset
|
242 |
val ml_platform = SQL.Column.string("ml_platform") |
77372 | 243 |
val options = SQL.Column.string("options") |
244 |
||
77456
4fec9413f14b
identify Build_Process.Context.instance with Sessions.Build_Info (see also ff164add75cd);
wenzelm
parents:
77455
diff
changeset
|
245 |
val table = make_table("", List(uuid, ml_platform, options)) |
77372 | 246 |
} |
247 |
||
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
248 |
object Serial { |
77372 | 249 |
val serial = SQL.Column.long("serial") |
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
250 |
|
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
251 |
val table = make_table("serial", List(serial)) |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
252 |
} |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
253 |
|
77505 | 254 |
object Progress { |
255 |
val serial = SQL.Column.long("serial").make_primary_key |
|
256 |
val kind = SQL.Column.int("kind") |
|
257 |
val text = SQL.Column.string("text") |
|
258 |
val uuid = Generic.uuid |
|
259 |
||
260 |
val table = make_table("progress", List(serial, kind, text, uuid)) |
|
261 |
} |
|
262 |
||
77496 | 263 |
object Sessions { |
264 |
val name = Generic.name.make_primary_key |
|
265 |
val deps = SQL.Column.string("deps") |
|
266 |
val ancestors = SQL.Column.string("ancestors") |
|
267 |
val sources = SQL.Column.string("sources") |
|
268 |
val timeout = SQL.Column.long("timeout") |
|
269 |
val old_time = SQL.Column.long("old_time") |
|
270 |
val old_command_timings = SQL.Column.bytes("old_command_timings") |
|
271 |
val uuid = Generic.uuid |
|
272 |
||
273 |
val table = make_table("sessions", |
|
274 |
List(name, deps, ancestors, sources, timeout, old_time, old_command_timings, uuid)) |
|
275 |
} |
|
276 |
||
77372 | 277 |
object Pending { |
278 |
val name = Generic.name.make_primary_key |
|
279 |
val deps = SQL.Column.string("deps") |
|
280 |
val info = SQL.Column.string("info") |
|
281 |
||
282 |
val table = make_table("pending", List(name, deps, info)) |
|
283 |
} |
|
284 |
||
285 |
object Running { |
|
286 |
val name = Generic.name.make_primary_key |
|
287 |
val hostname = SQL.Column.string("hostname") |
|
288 |
val numa_node = SQL.Column.int("numa_node") |
|
289 |
||
290 |
val table = make_table("running", List(name, hostname, numa_node)) |
|
291 |
} |
|
292 |
||
293 |
object Results { |
|
294 |
val name = Generic.name.make_primary_key |
|
295 |
val hostname = SQL.Column.string("hostname") |
|
296 |
val numa_node = SQL.Column.string("numa_node") |
|
297 |
val rc = SQL.Column.int("rc") |
|
298 |
val out = SQL.Column.string("out") |
|
299 |
val err = SQL.Column.string("err") |
|
300 |
val timing_elapsed = SQL.Column.long("timing_elapsed") |
|
301 |
val timing_cpu = SQL.Column.long("timing_cpu") |
|
302 |
val timing_gc = SQL.Column.long("timing_gc") |
|
303 |
||
304 |
val table = |
|
305 |
make_table("results", |
|
306 |
List(name, hostname, numa_node, rc, out, err, timing_elapsed, timing_cpu, timing_gc)) |
|
307 |
} |
|
308 |
||
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
309 |
def get_serial(db: SQL.Database): Long = |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
310 |
db.using_statement(Serial.table.select())(stmt => |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
311 |
stmt.execute_query().iterator(_.long(Serial.serial)).nextOption.getOrElse(0L)) |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
312 |
|
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
313 |
def set_serial(db: SQL.Database, serial: Long): Unit = |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
314 |
if (get_serial(db) != serial) { |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
315 |
db.using_statement(Serial.table.delete())(_.execute()) |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
316 |
db.using_statement(Serial.table.insert()) { stmt => |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
317 |
stmt.long(1) = serial |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
318 |
stmt.execute() |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
319 |
} |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
320 |
} |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
321 |
|
77505 | 322 |
def read_progress(db: SQL.Database, seen: Long = 0, uuid: String = ""): Progress_Messages = |
323 |
db.using_statement( |
|
324 |
Progress.table.select( |
|
325 |
sql = |
|
326 |
SQL.where( |
|
327 |
SQL.and( |
|
328 |
if (seen <= 0) "" else Progress.serial.ident + " > " + seen, |
|
329 |
Generic.sql_equal(uuid = uuid)))) |
|
330 |
) { stmt => |
|
331 |
SortedMap.from(stmt.execute_query().iterator { res => |
|
332 |
val serial = res.long(Progress.serial) |
|
333 |
val kind = isabelle.Progress.Kind(res.int(Progress.kind)) |
|
334 |
val text = res.string(Progress.text) |
|
335 |
serial -> isabelle.Progress.Message(kind, text) |
|
336 |
}) |
|
337 |
} |
|
338 |
||
339 |
def write_progress( |
|
340 |
db: SQL.Database, |
|
341 |
message_serial: Long, |
|
342 |
message: isabelle.Progress.Message, |
|
343 |
uuid: String |
|
344 |
): Unit = { |
|
345 |
db.using_statement(Progress.table.insert()) { stmt => |
|
346 |
stmt.long(1) = message_serial |
|
347 |
stmt.int(2) = message.kind.id |
|
348 |
stmt.string(3) = message.text |
|
349 |
stmt.string(4) = uuid |
|
350 |
stmt.execute() |
|
351 |
} |
|
352 |
} |
|
353 |
||
77496 | 354 |
def read_sessions_domain(db: SQL.Database): Set[String] = |
355 |
db.using_statement(Sessions.table.select(List(Sessions.name)))(stmt => |
|
356 |
Set.from(stmt.execute_query().iterator(_.string(Sessions.name)))) |
|
357 |
||
358 |
def read_sessions(db: SQL.Database, names: Iterable[String] = Nil): State.Sessions = |
|
359 |
db.using_statement( |
|
360 |
Sessions.table.select(sql = if_proper(names, Sessions.name.where_member(names))) |
|
361 |
) { stmt => |
|
362 |
Map.from(stmt.execute_query().iterator { res => |
|
363 |
val name = res.string(Sessions.name) |
|
364 |
val deps = split_lines(res.string(Sessions.deps)) |
|
365 |
val ancestors = split_lines(res.string(Sessions.ancestors)) |
|
366 |
val sources_shasum = SHA1.fake_shasum(res.string(Sessions.sources)) |
|
367 |
val timeout = Time.ms(res.long(Sessions.timeout)) |
|
368 |
val old_time = Time.ms(res.long(Sessions.old_time)) |
|
369 |
val old_command_timings_blob = res.bytes(Sessions.old_command_timings) |
|
370 |
val uuid = res.string(Sessions.uuid) |
|
371 |
name -> Build_Job.Session_Context(name, deps, ancestors, sources_shasum, |
|
372 |
timeout, old_time, old_command_timings_blob, uuid) |
|
373 |
}) |
|
374 |
} |
|
375 |
||
376 |
def update_sessions(db:SQL.Database, sessions: State.Sessions): Boolean = { |
|
377 |
val old_sessions = read_sessions_domain(db) |
|
378 |
val insert = sessions.iterator.filterNot(p => old_sessions.contains(p._1)).toList |
|
379 |
||
380 |
for ((name, session) <- insert) { |
|
381 |
db.using_statement(Sessions.table.insert()) { stmt => |
|
382 |
stmt.string(1) = name |
|
383 |
stmt.string(2) = cat_lines(session.deps) |
|
384 |
stmt.string(3) = cat_lines(session.ancestors) |
|
385 |
stmt.string(4) = session.sources_shasum.toString |
|
386 |
stmt.long(5) = session.timeout.ms |
|
387 |
stmt.long(6) = session.old_time.ms |
|
388 |
stmt.bytes(7) = session.old_command_timings_blob |
|
389 |
stmt.string(8) = session.uuid |
|
390 |
stmt.execute() |
|
391 |
} |
|
392 |
} |
|
393 |
||
394 |
insert.nonEmpty |
|
395 |
} |
|
396 |
||
77372 | 397 |
def read_pending(db: SQL.Database): List[Entry] = |
77381
a86e346b20d8
misc tuning and clarification: more uniform use of optional "sql" in SQL.Table.delete/select;
wenzelm
parents:
77380
diff
changeset
|
398 |
db.using_statement(Pending.table.select(sql = SQL.order_by(List(Pending.name)))) { stmt => |
77372 | 399 |
List.from( |
400 |
stmt.execute_query().iterator { res => |
|
401 |
val name = res.string(Pending.name) |
|
402 |
val deps = res.string(Pending.deps) |
|
403 |
val info = res.string(Pending.info) |
|
404 |
Entry(name, split_lines(deps), info = JSON.Object.parse(info)) |
|
405 |
}) |
|
406 |
} |
|
407 |
||
77496 | 408 |
def update_pending(db: SQL.Database, pending: State.Pending): Boolean = { |
77372 | 409 |
val old_pending = read_pending(db) |
410 |
val (delete, insert) = Library.symmetric_difference(old_pending, pending) |
|
411 |
||
412 |
if (delete.nonEmpty) { |
|
413 |
db.using_statement( |
|
77381
a86e346b20d8
misc tuning and clarification: more uniform use of optional "sql" in SQL.Table.delete/select;
wenzelm
parents:
77380
diff
changeset
|
414 |
Pending.table.delete( |
a86e346b20d8
misc tuning and clarification: more uniform use of optional "sql" in SQL.Table.delete/select;
wenzelm
parents:
77380
diff
changeset
|
415 |
sql = SQL.where(Generic.sql_member(names = delete.map(_.name)))))(_.execute()) |
77372 | 416 |
} |
417 |
||
418 |
for (entry <- insert) { |
|
419 |
db.using_statement(Pending.table.insert()) { stmt => |
|
420 |
stmt.string(1) = entry.name |
|
421 |
stmt.string(2) = cat_lines(entry.deps) |
|
422 |
stmt.string(3) = JSON.Format(entry.info) |
|
423 |
stmt.execute() |
|
424 |
} |
|
425 |
} |
|
426 |
||
427 |
delete.nonEmpty || insert.nonEmpty |
|
428 |
} |
|
429 |
||
430 |
def read_running(db: SQL.Database): List[Build_Job.Abstract] = |
|
77381
a86e346b20d8
misc tuning and clarification: more uniform use of optional "sql" in SQL.Table.delete/select;
wenzelm
parents:
77380
diff
changeset
|
431 |
db.using_statement(Running.table.select(sql = SQL.order_by(List(Running.name)))) { stmt => |
77372 | 432 |
List.from( |
433 |
stmt.execute_query().iterator { res => |
|
434 |
val name = res.string(Running.name) |
|
435 |
val hostname = res.string(Running.hostname) |
|
436 |
val numa_node = res.get_int(Running.numa_node) |
|
77475 | 437 |
Build_Job.Abstract(name, Host.Node_Info(hostname, numa_node)) |
77372 | 438 |
}) |
439 |
} |
|
440 |
||
77496 | 441 |
def update_running(db: SQL.Database, running: State.Running): Boolean = { |
77372 | 442 |
val old_running = read_running(db) |
443 |
val abs_running = running.valuesIterator.map(_.make_abstract).toList |
|
444 |
||
445 |
val (delete, insert) = Library.symmetric_difference(old_running, abs_running) |
|
446 |
||
447 |
if (delete.nonEmpty) { |
|
448 |
db.using_statement( |
|
77381
a86e346b20d8
misc tuning and clarification: more uniform use of optional "sql" in SQL.Table.delete/select;
wenzelm
parents:
77380
diff
changeset
|
449 |
Running.table.delete( |
a86e346b20d8
misc tuning and clarification: more uniform use of optional "sql" in SQL.Table.delete/select;
wenzelm
parents:
77380
diff
changeset
|
450 |
sql = SQL.where(Generic.sql_member(names = delete.map(_.job_name)))))(_.execute()) |
77372 | 451 |
} |
452 |
||
453 |
for (job <- insert) { |
|
454 |
db.using_statement(Running.table.insert()) { stmt => |
|
455 |
stmt.string(1) = job.job_name |
|
456 |
stmt.string(2) = job.node_info.hostname |
|
457 |
stmt.int(3) = job.node_info.numa_node |
|
458 |
stmt.execute() |
|
459 |
} |
|
460 |
} |
|
461 |
||
462 |
delete.nonEmpty || insert.nonEmpty |
|
463 |
} |
|
464 |
||
77496 | 465 |
def read_results_domain(db: SQL.Database): Set[String] = |
466 |
db.using_statement(Results.table.select(List(Results.name)))(stmt => |
|
467 |
Set.from(stmt.execute_query().iterator(_.string(Results.name)))) |
|
468 |
||
77372 | 469 |
def read_results(db: SQL.Database, names: List[String] = Nil): Map[String, Build_Job.Result] = |
470 |
db.using_statement( |
|
77496 | 471 |
Results.table.select(sql = if_proper(names, Results.name.where_member(names))) |
472 |
) { stmt => |
|
473 |
Map.from(stmt.execute_query().iterator { res => |
|
77372 | 474 |
val name = res.string(Results.name) |
475 |
val hostname = res.string(Results.hostname) |
|
476 |
val numa_node = res.get_int(Results.numa_node) |
|
477 |
val rc = res.int(Results.rc) |
|
478 |
val out = res.string(Results.out) |
|
479 |
val err = res.string(Results.err) |
|
77495 | 480 |
val timing = |
481 |
res.timing( |
|
482 |
Results.timing_elapsed, |
|
483 |
Results.timing_cpu, |
|
484 |
Results.timing_gc) |
|
77475 | 485 |
val node_info = Host.Node_Info(hostname, numa_node) |
77372 | 486 |
val process_result = |
487 |
Process_Result(rc, |
|
488 |
out_lines = split_lines(out), |
|
489 |
err_lines = split_lines(err), |
|
77495 | 490 |
timing = timing) |
77372 | 491 |
name -> Build_Job.Result(node_info, process_result) |
492 |
}) |
|
77496 | 493 |
} |
77372 | 494 |
|
77496 | 495 |
def update_results(db: SQL.Database, results: State.Results): Boolean = { |
496 |
val old_results = read_results_domain(db) |
|
77385 | 497 |
val insert = results.iterator.filterNot(p => old_results.contains(p._1)).toList |
77372 | 498 |
|
499 |
for ((name, result) <- insert) { |
|
500 |
val node_info = result.node_info |
|
501 |
val process_result = result.process_result |
|
502 |
db.using_statement(Results.table.insert()) { stmt => |
|
503 |
stmt.string(1) = name |
|
504 |
stmt.string(2) = node_info.hostname |
|
505 |
stmt.int(3) = node_info.numa_node |
|
506 |
stmt.int(4) = process_result.rc |
|
507 |
stmt.string(5) = cat_lines(process_result.out_lines) |
|
508 |
stmt.string(6) = cat_lines(process_result.err_lines) |
|
509 |
stmt.long(7) = process_result.timing.elapsed.ms |
|
510 |
stmt.long(8) = process_result.timing.cpu.ms |
|
511 |
stmt.long(9) = process_result.timing.gc.ms |
|
512 |
stmt.execute() |
|
513 |
} |
|
514 |
} |
|
515 |
||
516 |
insert.nonEmpty |
|
517 |
} |
|
518 |
||
77378
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
519 |
def init_database(db: SQL.Database, build_context: Build_Process.Context): Unit = { |
77372 | 520 |
val tables = |
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
521 |
List( |
77417 | 522 |
Base.table, |
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
523 |
Serial.table, |
77505 | 524 |
Progress.table, |
77496 | 525 |
Sessions.table, |
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
526 |
Pending.table, |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
527 |
Running.table, |
77476 | 528 |
Results.table, |
529 |
Host.Data.Node_Info.table) |
|
77372 | 530 |
|
531 |
for (table <- tables) db.create_table(table) |
|
532 |
||
533 |
val old_pending = Data.read_pending(db) |
|
534 |
if (old_pending.nonEmpty) { |
|
535 |
error("Cannot init build process, because of unfinished " + |
|
536 |
commas_quote(old_pending.map(_.name))) |
|
537 |
} |
|
538 |
||
539 |
for (table <- tables) db.using_statement(table.delete())(_.execute()) |
|
540 |
||
77417 | 541 |
db.using_statement(Base.table.insert()) { stmt => |
77456
4fec9413f14b
identify Build_Process.Context.instance with Sessions.Build_Info (see also ff164add75cd);
wenzelm
parents:
77455
diff
changeset
|
542 |
stmt.string(1) = build_context.uuid |
77417 | 543 |
stmt.string(2) = Isabelle_System.getenv("ML_PLATFORM") |
544 |
stmt.string(3) = build_context.store.options.make_prefs(Options.init(prefs = "")) |
|
545 |
stmt.execute() |
|
546 |
} |
|
77372 | 547 |
} |
548 |
||
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
549 |
def update_database( |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
550 |
db: SQL.Database, |
77456
4fec9413f14b
identify Build_Process.Context.instance with Sessions.Build_Info (see also ff164add75cd);
wenzelm
parents:
77455
diff
changeset
|
551 |
uuid: String, |
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
552 |
hostname: String, |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
553 |
state: State |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
554 |
): State = { |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
555 |
val changed = |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
556 |
List( |
77496 | 557 |
update_sessions(db, state.sessions), |
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
558 |
update_pending(db, state.pending), |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
559 |
update_running(db, state.running), |
77476 | 560 |
update_results(db, state.results), |
561 |
Host.Data.update_numa_index(db, hostname, state.numa_index)) |
|
77372 | 562 |
|
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
563 |
val serial0 = get_serial(db) |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
564 |
val serial = if (changed.exists(identity)) serial0 + 1 else serial0 |
77372 | 565 |
|
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
566 |
set_serial(db, serial) |
77372 | 567 |
state.copy(serial = serial) |
568 |
} |
|
569 |
} |
|
77396 | 570 |
} |
77372 | 571 |
|
572 |
||
77436 | 573 |
|
574 |
/** main process **/ |
|
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
575 |
|
77505 | 576 |
class Build_Process( |
577 |
protected val build_context: Build_Process.Context, |
|
578 |
protected val build_progress: Progress |
|
579 |
) |
|
77436 | 580 |
extends AutoCloseable { |
581 |
/* context */ |
|
582 |
||
77338
0a91c697a18a
tuned signature: avoid warnings in IntelliJ IDEA;
wenzelm
parents:
77337
diff
changeset
|
583 |
protected val store: Sessions.Store = build_context.store |
0a91c697a18a
tuned signature: avoid warnings in IntelliJ IDEA;
wenzelm
parents:
77337
diff
changeset
|
584 |
protected val build_options: Options = store.options |
77453 | 585 |
protected val build_deps: Sessions.Deps = build_context.build_deps |
77338
0a91c697a18a
tuned signature: avoid warnings in IntelliJ IDEA;
wenzelm
parents:
77337
diff
changeset
|
586 |
protected val verbose: Boolean = build_context.verbose |
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
587 |
|
77436 | 588 |
|
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
589 |
/* global state: internal var vs. external database */ |
77436 | 590 |
|
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
591 |
private var _state: Build_Process.State = init_state(Build_Process.State()) |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
592 |
|
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
593 |
private val _database: Option[SQL.Database] = |
77390
ff43a524aa5d
clarified system option: guard for testing, until the database layout has stabilized;
wenzelm
parents:
77387
diff
changeset
|
594 |
if (!build_options.bool("build_database_test")) None |
77372 | 595 |
else if (store.database_server) Some(store.open_database_server()) |
77383
cb75171d8c9f
clarified permissions of build.db, following server.db;
wenzelm
parents:
77381
diff
changeset
|
596 |
else { |
cb75171d8c9f
clarified permissions of build.db, following server.db;
wenzelm
parents:
77381
diff
changeset
|
597 |
val db = SQLite.open_database(Build_Process.Data.database) |
cb75171d8c9f
clarified permissions of build.db, following server.db;
wenzelm
parents:
77381
diff
changeset
|
598 |
try { Isabelle_System.chmod("600", Build_Process.Data.database) } |
cb75171d8c9f
clarified permissions of build.db, following server.db;
wenzelm
parents:
77381
diff
changeset
|
599 |
catch { case exn: Throwable => db.close(); throw exn } |
cb75171d8c9f
clarified permissions of build.db, following server.db;
wenzelm
parents:
77381
diff
changeset
|
600 |
Some(db) |
cb75171d8c9f
clarified permissions of build.db, following server.db;
wenzelm
parents:
77381
diff
changeset
|
601 |
} |
77372 | 602 |
|
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
603 |
def close(): Unit = synchronized { _database.foreach(_.close()) } |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
604 |
|
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
605 |
private def setup_database(): Unit = |
77438 | 606 |
synchronized { |
607 |
for (db <- _database) { |
|
608 |
db.transaction { Build_Process.Data.init_database(db, build_context) } |
|
609 |
db.rebuild() |
|
77436 | 610 |
} |
611 |
} |
|
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
612 |
|
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
613 |
protected def synchronized_database[A](body: => A): A = |
77438 | 614 |
synchronized { |
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
615 |
_database match { |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
616 |
case None => body |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
617 |
case Some(db) => db.transaction { body } |
77436 | 618 |
} |
619 |
} |
|
620 |
||
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
621 |
private def sync_database(): Unit = |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
622 |
synchronized_database { |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
623 |
for (db <- _database) { |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
624 |
_state = |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
625 |
Build_Process.Data.update_database( |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
626 |
db, build_context.uuid, build_context.hostname, _state) |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
627 |
} |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
628 |
} |
77436 | 629 |
|
630 |
||
77505 | 631 |
/* progress backed by database */ |
632 |
||
633 |
object progress extends Progress { |
|
634 |
override def echo(message: Progress.Message): Unit = |
|
635 |
synchronized_database { |
|
636 |
val serial1 = _state.serial + 1 |
|
637 |
_state = _state.echo(build_progress, serial1, message).copy(serial = serial1) |
|
638 |
||
639 |
for (db <- _database) { |
|
640 |
Build_Process.Data.write_progress(db, serial1, message, build_context.uuid) |
|
641 |
Build_Process.Data.set_serial(db, serial1) |
|
642 |
} |
|
643 |
} |
|
644 |
||
645 |
override def verbose: Boolean = build_progress.verbose |
|
646 |
override def stop(): Unit = build_progress.stop() |
|
647 |
override def stopped: Boolean = build_progress.stopped |
|
648 |
} |
|
649 |
||
650 |
val log: Logger = |
|
651 |
build_options.string("system_log") match { |
|
652 |
case "" => No_Logger |
|
653 |
case "-" => Logger.make(progress) |
|
654 |
case log_file => Logger.make(Some(Path.explode(log_file))) |
|
655 |
} |
|
656 |
||
657 |
||
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
658 |
/* policy operations */ |
77333 | 659 |
|
77415
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
660 |
protected def init_state(state: Build_Process.State): Build_Process.State = { |
77496 | 661 |
val sessions1 = |
662 |
build_context.sessions.foldLeft(state.sessions) { case (map, (name, session)) => |
|
663 |
if (state.sessions.isDefinedAt(name)) map |
|
664 |
else map + (name -> session) |
|
665 |
} |
|
666 |
||
77415
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
667 |
val old_pending = state.pending.iterator.map(_.name).toSet |
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
668 |
val new_pending = |
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
669 |
List.from( |
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
670 |
for { |
77449 | 671 |
(name, session_context) <- build_context.sessions.iterator |
77415
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
672 |
if !old_pending(name) |
77449 | 673 |
} yield Build_Process.Entry(name, session_context.deps)) |
77496 | 674 |
val pending1 = new_pending ::: state.pending |
675 |
||
676 |
state.copy(sessions = sessions1, pending = pending1) |
|
77415
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
677 |
} |
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
678 |
|
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
679 |
protected def next_job(state: Build_Process.State): Option[String] = |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
680 |
if (state.running.size < (build_context.max_jobs max 1)) { |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
681 |
state.pending.filter(entry => entry.is_ready && !state.is_running(entry.name)) |
77313
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
682 |
.sortBy(_.name)(build_context.ordering) |
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
683 |
.headOption.map(_.name) |
77296
eeaa2872320b
clarified signature: more explicit synchronized operations;
wenzelm
parents:
77295
diff
changeset
|
684 |
} |
eeaa2872320b
clarified signature: more explicit synchronized operations;
wenzelm
parents:
77295
diff
changeset
|
685 |
else None |
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
686 |
|
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
687 |
protected def start_session(state: Build_Process.State, session_name: String): Build_Process.State = { |
77468 | 688 |
val ancestor_results = |
689 |
for (a <- build_context.sessions(session_name).ancestors) yield state.results(a) |
|
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
690 |
|
77460
ccca589d7027
tuned signature: support general Build_Job instances;
wenzelm
parents:
77459
diff
changeset
|
691 |
val input_shasum = |
77260 | 692 |
if (ancestor_results.isEmpty) { |
693 |
SHA1.shasum_meta_info(SHA1.digest(Path.explode("$POLYML_EXE"))) |
|
694 |
} |
|
77460
ccca589d7027
tuned signature: support general Build_Job instances;
wenzelm
parents:
77459
diff
changeset
|
695 |
else SHA1.flat_shasum(ancestor_results.map(_.output_shasum)) |
77257 | 696 |
|
77463 | 697 |
val store_heap = build_context.store_heap(session_name) |
77469 | 698 |
|
699 |
val (current, output_shasum) = |
|
700 |
store.check_output(session_name, |
|
701 |
sources_shasum = build_context.sources_shasum(session_name), |
|
702 |
input_shasum = input_shasum, |
|
703 |
fresh_build = build_context.fresh_build, |
|
704 |
store_heap = store_heap) |
|
705 |
||
77260 | 706 |
val all_current = current && ancestor_results.forall(_.current) |
77257 | 707 |
|
77260 | 708 |
if (all_current) { |
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
709 |
state |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
710 |
.remove_pending(session_name) |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
711 |
.make_result(session_name, Process_Result.ok, output_shasum, current = true) |
77260 | 712 |
} |
77315
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
713 |
else if (build_context.no_build) { |
77260 | 714 |
progress.echo_if(verbose, "Skipping " + session_name + " ...") |
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
715 |
state. |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
716 |
remove_pending(session_name). |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
717 |
make_result(session_name, Process_Result.error, output_shasum) |
77260 | 718 |
} |
77452 | 719 |
else if (!ancestor_results.forall(_.ok) || progress.stopped) { |
720 |
progress.echo(session_name + " CANCELLED") |
|
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
721 |
state |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
722 |
.remove_pending(session_name) |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
723 |
.make_result(session_name, Process_Result.undefined, output_shasum) |
77452 | 724 |
} |
725 |
else { |
|
77463 | 726 |
progress.echo((if (store_heap) "Building " else "Running ") + session_name + " ...") |
77260 | 727 |
|
77472 | 728 |
store.init_output(session_name) |
77257 | 729 |
|
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
730 |
val (numa_node, state1) = state.numa_next(build_context.numa_nodes) |
77475 | 731 |
val node_info = Host.Node_Info(build_context.hostname, numa_node) |
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
732 |
val job = |
77505 | 733 |
Build_Job.start_session(build_context, progress, log, |
734 |
build_deps.background(session_name), input_shasum, node_info) |
|
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
735 |
state1.add_running(session_name, job) |
77260 | 736 |
} |
737 |
} |
|
77257 | 738 |
|
77436 | 739 |
|
740 |
/* run */ |
|
77372 | 741 |
|
77310 | 742 |
def run(): Map[String, Process_Result] = { |
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
743 |
def finished(): Boolean = synchronized_database { _state.finished } |
77400
f3e5b3fe230e
clarified signature: more explicit "synchronized" regions;
wenzelm
parents:
77398
diff
changeset
|
744 |
|
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
745 |
def sleep(): Unit = |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
746 |
Isabelle_Thread.interrupt_handler(_ => progress.stop()) { |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
747 |
build_options.seconds("editor_input_delay").sleep() |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
748 |
} |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
749 |
|
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
750 |
def start(): Boolean = synchronized_database { |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
751 |
next_job(_state) match { |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
752 |
case Some(name) => |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
753 |
if (Build_Job.is_session_name(name)) { |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
754 |
_state = start_session(_state, name) |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
755 |
true |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
756 |
} |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
757 |
else error("Unsupported build job name " + quote(name)) |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
758 |
case None => false |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
759 |
} |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
760 |
} |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
761 |
|
77335 | 762 |
if (finished()) { |
763 |
progress.echo_warning("Nothing to build") |
|
764 |
Map.empty[String, Process_Result] |
|
765 |
} |
|
766 |
else { |
|
77372 | 767 |
setup_database() |
77335 | 768 |
while (!finished()) { |
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
769 |
if (progress.stopped) synchronized_database { _state.stop_running() } |
77310 | 770 |
|
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
771 |
for (job <- synchronized_database { _state.finished_running() }) { |
77398
19e9cafaafc5
clarified signature: works for general Build_Job;
wenzelm
parents:
77396
diff
changeset
|
772 |
val job_name = job.job_name |
77486
032c76e04475
clarified execution context: main work happens within Future.thread;
wenzelm
parents:
77477
diff
changeset
|
773 |
val (process_result, output_shasum) = job.join |
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
774 |
synchronized_database { |
77396 | 775 |
_state = _state. |
77398
19e9cafaafc5
clarified signature: works for general Build_Job;
wenzelm
parents:
77396
diff
changeset
|
776 |
remove_pending(job_name). |
19e9cafaafc5
clarified signature: works for general Build_Job;
wenzelm
parents:
77396
diff
changeset
|
777 |
remove_running(job_name). |
77461 | 778 |
make_result(job_name, process_result, output_shasum, node_info = job.node_info) |
77396 | 779 |
} |
780 |
} |
|
77260 | 781 |
|
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
782 |
if (!start()) { |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
783 |
sync_database() |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
784 |
sleep() |
77310 | 785 |
} |
786 |
} |
|
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
787 |
|
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
788 |
synchronized_database { |
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
789 |
for ((name, result) <- _state.results) yield name -> result.process_result |
77257 | 790 |
} |
791 |
} |
|
792 |
} |
|
77238 | 793 |
} |