author | wenzelm |
Tue, 14 Mar 2023 10:16:45 +0100 | |
changeset 77648 | e79a5ce8a74c |
parent 77646 | c55443f9fedd |
child 77649 | 739cb777cc75 |
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, |
77536
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
24 |
ml_platform: String = Isabelle_System.getenv("ML_PLATFORM"), |
77378
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
25 |
hostname: String = Isabelle_System.hostname(), |
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
26 |
numa_shuffling: Boolean = false, |
77315
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
27 |
build_heap: Boolean = false, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
28 |
max_jobs: Int = 1, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
29 |
fresh_build: Boolean = false, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
30 |
no_build: Boolean = false, |
77378
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
31 |
session_setup: (String, Session) => Unit = (_, _) => (), |
77579
69d3547206db
clarified signature: prefer Build_Process.Context for parameters;
wenzelm
parents:
77578
diff
changeset
|
32 |
build_uuid: String = UUID.random().toString, |
69d3547206db
clarified signature: prefer Build_Process.Context for parameters;
wenzelm
parents:
77578
diff
changeset
|
33 |
master: Boolean = false, |
77246 | 34 |
): Context = { |
77453 | 35 |
val sessions_structure = build_deps.sessions_structure |
77247 | 36 |
val build_graph = sessions_structure.build_graph |
37 |
||
77246 | 38 |
val sessions = |
39 |
Map.from( |
|
77448 | 40 |
for ((name, (info, _)) <- build_graph.iterator) |
77249
f3f1b7ad1d0d
clarified data structure: more direct access to timeout;
wenzelm
parents:
77248
diff
changeset
|
41 |
yield { |
77447
566e6e393126
proper deps from build_graph, not imports_graph (amending 0c704aba71e3);
wenzelm
parents:
77446
diff
changeset
|
42 |
val deps = info.parent.toList |
566e6e393126
proper deps from build_graph, not imports_graph (amending 0c704aba71e3);
wenzelm
parents:
77446
diff
changeset
|
43 |
val ancestors = sessions_structure.build_requirements(deps) |
77458 | 44 |
val sources_shasum = build_deps.sources_shasum(name) |
77444
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
45 |
val session_context = |
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
46 |
Build_Job.Session_Context.load( |
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
47 |
build_uuid, name, deps, ancestors, info.session_prefs, sources_shasum, |
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
48 |
info.timeout, store, progress = progress) |
77444
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
49 |
name -> session_context |
77249
f3f1b7ad1d0d
clarified data structure: more direct access to timeout;
wenzelm
parents:
77248
diff
changeset
|
50 |
}) |
77247 | 51 |
|
77248 | 52 |
val sessions_time = { |
53 |
val maximals = build_graph.maximals.toSet |
|
54 |
def descendants_time(name: String): Double = { |
|
55 |
if (maximals.contains(name)) sessions(name).old_time.seconds |
|
56 |
else { |
|
57 |
val descendants = build_graph.all_succs(List(name)).toSet |
|
58 |
val g = build_graph.restrict(descendants) |
|
59 |
(0.0 :: g.maximals.flatMap { desc => |
|
60 |
val ps = g.all_preds(List(desc)) |
|
61 |
if (ps.exists(p => !sessions.isDefinedAt(p))) None |
|
62 |
else Some(ps.map(p => sessions(p).old_time.seconds).sum) |
|
63 |
}).max |
|
64 |
} |
|
77247 | 65 |
} |
77248 | 66 |
Map.from( |
67 |
for (name <- sessions.keysIterator) |
|
68 |
yield name -> descendants_time(name)).withDefaultValue(0.0) |
|
77247 | 69 |
} |
70 |
||
77246 | 71 |
val ordering = |
72 |
new Ordering[String] { |
|
73 |
def compare(name1: String, name2: String): Int = |
|
77248 | 74 |
sessions_time(name2) compare sessions_time(name1) match { |
77246 | 75 |
case 0 => |
77249
f3f1b7ad1d0d
clarified data structure: more direct access to timeout;
wenzelm
parents:
77248
diff
changeset
|
76 |
sessions(name2).timeout compare sessions(name1).timeout match { |
77246 | 77 |
case 0 => name1 compare name2 |
78 |
case ord => ord |
|
79 |
} |
|
80 |
case ord => ord |
|
81 |
} |
|
82 |
} |
|
83 |
||
77477 | 84 |
val numa_nodes = Host.numa_nodes(enabled = numa_shuffling) |
77536
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
85 |
new Context(store, build_deps, sessions, ordering, ml_platform, hostname, numa_nodes, |
77317
b8ec3c0455db
clarified modules: NUMA is managed by Build_Process;
wenzelm
parents:
77315
diff
changeset
|
86 |
build_heap = build_heap, max_jobs = max_jobs, fresh_build = fresh_build, |
77579
69d3547206db
clarified signature: prefer Build_Process.Context for parameters;
wenzelm
parents:
77578
diff
changeset
|
87 |
no_build = no_build, session_setup, build_uuid = build_uuid, master = master) |
77246 | 88 |
} |
89 |
} |
|
90 |
||
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], |
77536
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
96 |
val ml_platform: String, |
77378
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
97 |
val hostname: String, |
77317
b8ec3c0455db
clarified modules: NUMA is managed by Build_Process;
wenzelm
parents:
77315
diff
changeset
|
98 |
val numa_nodes: List[Int], |
77315
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
99 |
val build_heap: Boolean, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
100 |
val max_jobs: Int, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
101 |
val fresh_build: Boolean, |
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
102 |
val no_build: Boolean, |
77378
f047804f4860
clarified Build_Process.Context: cover all static information;
wenzelm
parents:
77375
diff
changeset
|
103 |
val session_setup: (String, Session) => Unit, |
77579
69d3547206db
clarified signature: prefer Build_Process.Context for parameters;
wenzelm
parents:
77578
diff
changeset
|
104 |
val build_uuid: String, |
69d3547206db
clarified signature: prefer Build_Process.Context for parameters;
wenzelm
parents:
77578
diff
changeset
|
105 |
val master: Boolean |
77246 | 106 |
) { |
77561 | 107 |
override def toString: String = |
77646 | 108 |
"Build_Process.Context(build_uuid = " + quote(build_uuid) + |
109 |
if_proper(master, ", master = true") + ")" |
|
77561 | 110 |
|
77470 | 111 |
def build_options: Options = store.options |
112 |
||
77453 | 113 |
def sessions_structure: Sessions.Structure = build_deps.sessions_structure |
77257 | 114 |
|
77462 | 115 |
def sources_shasum(name: String): SHA1.Shasum = sessions(name).sources_shasum |
77458 | 116 |
|
77462 | 117 |
def old_command_timings(name: String): List[Properties.T] = |
118 |
sessions.get(name) match { |
|
77444
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
119 |
case Some(session_context) => |
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
120 |
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
|
121 |
case None => Nil |
0c704aba71e3
clarified signature: reduce explicit access to static Sessions.Structure;
wenzelm
parents:
77443
diff
changeset
|
122 |
} |
77439
d6bf9ec39d12
avoid premature Properties.uncompress: allow blob to be stored in another database;
wenzelm
parents:
77438
diff
changeset
|
123 |
|
77536
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
124 |
def prepare_database(): Unit = { |
77629 | 125 |
using_option(store.open_build_database()) { db => |
77539
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
126 |
db.transaction { |
77596 | 127 |
Data.all_tables.create_lock(db) |
77539
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
128 |
Data.clean_build(db) |
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
129 |
} |
77536
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
130 |
db.rebuild() |
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
131 |
} |
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
132 |
} |
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
133 |
|
77463 | 134 |
def store_heap(name: String): Boolean = |
77462 | 135 |
build_heap || Sessions.is_pure(name) || |
136 |
sessions.valuesIterator.exists(_.ancestors.contains(name)) |
|
77578
149d48a4801b
support for "isabelle build -j0": require external workers to make progress;
wenzelm
parents:
77561
diff
changeset
|
137 |
|
77594 | 138 |
def worker_active: Boolean = max_jobs > 0 |
77246 | 139 |
} |
77257 | 140 |
|
141 |
||
77436 | 142 |
|
143 |
/** dynamic state **/ |
|
77257 | 144 |
|
77505 | 145 |
type Progress_Messages = SortedMap[Long, Progress.Message] |
146 |
||
77631 | 147 |
case class Worker( |
148 |
worker_uuid: String, |
|
149 |
build_uuid: String, |
|
150 |
hostname: String, |
|
151 |
java_pid: Long, |
|
152 |
java_start: Date, |
|
153 |
start: Date, |
|
154 |
stamp: Date, |
|
155 |
stop: Option[Date], |
|
156 |
serial: Long |
|
157 |
) |
|
158 |
||
159 |
case class Task( |
|
160 |
name: String, |
|
161 |
deps: List[String], |
|
162 |
info: JSON.Object.T = JSON.Object.empty |
|
163 |
) { |
|
77313
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
164 |
def is_ready: Boolean = deps.isEmpty |
77585 | 165 |
def resolve(dep: String): Task = |
77313
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
166 |
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
|
167 |
} |
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
168 |
|
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
169 |
case class Job( |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
170 |
name: String, |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
171 |
worker_uuid: String, |
77634 | 172 |
build_uuid: String, |
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
173 |
node_info: Host.Node_Info, |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
174 |
build: Option[Build_Job] |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
175 |
) { |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
176 |
def no_build: Job = copy(build = None) |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
177 |
} |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
178 |
|
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
179 |
case class Result( |
77461 | 180 |
process_result: Process_Result, |
77460
ccca589d7027
tuned signature: support general Build_Job instances;
wenzelm
parents:
77459
diff
changeset
|
181 |
output_shasum: SHA1.Shasum, |
77475 | 182 |
node_info: Host.Node_Info, |
77461 | 183 |
current: Boolean |
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
184 |
) { |
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
185 |
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
|
186 |
} |
77312 | 187 |
|
77496 | 188 |
object State { |
189 |
type Sessions = Map[String, Build_Job.Session_Context] |
|
77583 | 190 |
type Workers = List[Worker] |
77585 | 191 |
type Pending = List[Task] |
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
192 |
type Running = Map[String, Job] |
77496 | 193 |
type Results = Map[String, Result] |
77513 | 194 |
|
195 |
def inc_serial(serial: Long): Long = { |
|
196 |
require(serial < java.lang.Long.MAX_VALUE, "serial overflow") |
|
197 |
serial + 1 |
|
198 |
} |
|
77496 | 199 |
} |
200 |
||
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
201 |
sealed case class State( |
77372 | 202 |
serial: Long = 0, |
77505 | 203 |
progress_seen: Long = 0, |
77525
de6fb423fd4b
clarified database content: store actual value instead of index;
wenzelm
parents:
77522
diff
changeset
|
204 |
numa_next: Int = 0, |
77496 | 205 |
sessions: State.Sessions = Map.empty, // static build targets |
77583 | 206 |
workers: State.Workers = Nil, // available worker processes |
77496 | 207 |
pending: State.Pending = Nil, // dynamic build "queue" |
208 |
running: State.Running = Map.empty, // presently running jobs |
|
209 |
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
|
210 |
) { |
77513 | 211 |
require(serial >= 0, "serial underflow") |
212 |
def inc_serial: State = copy(serial = State.inc_serial(serial)) |
|
213 |
def set_serial(i: Long): State = { |
|
214 |
require(serial <= i, "non-monotonic change of serial") |
|
215 |
copy(serial = i) |
|
216 |
} |
|
217 |
||
77522
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
218 |
def progress_serial(message_serial: Long = serial): State = |
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
219 |
if (message_serial > progress_seen) copy(progress_seen = message_serial) |
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
220 |
else error("Bad serial " + message_serial + " for progress output (already seen)") |
77505 | 221 |
|
77583 | 222 |
def set_workers(new_workers: State.Workers): State = copy(workers = new_workers) |
223 |
||
77632 | 224 |
def next_numa_node(numa_nodes: List[Int]): (Option[Int], State) = |
77343 | 225 |
if (numa_nodes.isEmpty) (None, this) |
226 |
else { |
|
227 |
val available = numa_nodes.zipWithIndex |
|
77372 | 228 |
val used = |
229 |
Set.from(for (job <- running.valuesIterator; i <- job.node_info.numa_node) yield i) |
|
77525
de6fb423fd4b
clarified database content: store actual value instead of index;
wenzelm
parents:
77522
diff
changeset
|
230 |
|
de6fb423fd4b
clarified database content: store actual value instead of index;
wenzelm
parents:
77522
diff
changeset
|
231 |
val numa_index = available.collectFirst({ case (n, i) if n == numa_next => i }).getOrElse(0) |
77343 | 232 |
val candidates = available.drop(numa_index) ::: available.take(numa_index) |
233 |
val (n, i) = |
|
234 |
candidates.find({ case (n, i) => i == numa_index && !used(n) }) orElse |
|
235 |
candidates.find({ case (n, _) => !used(n) }) getOrElse candidates.head |
|
77525
de6fb423fd4b
clarified database content: store actual value instead of index;
wenzelm
parents:
77522
diff
changeset
|
236 |
|
de6fb423fd4b
clarified database content: store actual value instead of index;
wenzelm
parents:
77522
diff
changeset
|
237 |
(Some(n), copy(numa_next = numa_nodes((i + 1) % numa_nodes.length))) |
77343 | 238 |
} |
77337 | 239 |
|
77335 | 240 |
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
|
241 |
|
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
242 |
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
|
243 |
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
|
244 |
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
|
245 |
|
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
246 |
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
|
247 |
|
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
248 |
def stop_running(): Unit = |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
249 |
for (job <- running.valuesIterator; build <- job.build) build.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
|
250 |
|
77648 | 251 |
def finished_running(): List[(String, Build_Job)] = |
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
252 |
List.from( |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
253 |
for (job <- running.valuesIterator; build <- job.build if build.is_finished) |
77648 | 254 |
yield job.name -> build) |
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
255 |
|
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
256 |
def add_running(job: Job): State = |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
257 |
copy(running = running + (job.name -> job)) |
77334
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
258 |
|
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
259 |
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
|
260 |
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
|
261 |
|
77336 | 262 |
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
|
263 |
name: String, |
77461 | 264 |
process_result: Process_Result, |
77460
ccca589d7027
tuned signature: support general Build_Job instances;
wenzelm
parents:
77459
diff
changeset
|
265 |
output_shasum: SHA1.Shasum, |
77475 | 266 |
node_info: Host.Node_Info = Host.Node_Info.none, |
77461 | 267 |
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
|
268 |
): State = { |
77461 | 269 |
val entry = name -> Build_Process.Result(process_result, output_shasum, node_info, current) |
270 |
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
|
271 |
} |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
272 |
} |
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
273 |
|
0231e62956a6
clarified state: more explicit type as plain value, which is also easier to sync with external db;
wenzelm
parents:
77333
diff
changeset
|
274 |
|
77436 | 275 |
|
276 |
/** SQL data model **/ |
|
77372 | 277 |
|
278 |
object Data { |
|
279 |
def make_table(name: String, columns: List[SQL.Column], body: String = ""): SQL.Table = |
|
280 |
SQL.Table("isabelle_build" + if_proper(name, "_" + name), columns, body = body) |
|
281 |
||
282 |
object Generic { |
|
77529
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
283 |
val build_uuid = SQL.Column.string("build_uuid") |
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
284 |
val worker_uuid = SQL.Column.string("worker_uuid") |
77372 | 285 |
val name = SQL.Column.string("name") |
286 |
||
77529
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
287 |
def sql( |
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
288 |
build_uuid: String = "", |
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
289 |
worker_uuid: String = "", |
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
290 |
name: String = "", |
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
291 |
names: Iterable[String] = Nil |
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
292 |
): SQL.Source = |
77372 | 293 |
SQL.and( |
77529
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
294 |
if_proper(build_uuid, Generic.build_uuid.equal(build_uuid)), |
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
295 |
if_proper(worker_uuid, Generic.worker_uuid.equal(worker_uuid)), |
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
296 |
if_proper(name, Generic.name.equal(name)), |
77375 | 297 |
if_proper(names, Generic.name.member(names))) |
77372 | 298 |
} |
299 |
||
77536
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
300 |
|
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
301 |
/* base table */ |
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
302 |
|
77417 | 303 |
object Base { |
77529
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
304 |
val build_uuid = Generic.build_uuid.make_primary_key |
77387
cd10b8edfdf5
clarified db content: avoid redundancy of historic ML_IDENTIFIER;
wenzelm
parents:
77385
diff
changeset
|
305 |
val ml_platform = SQL.Column.string("ml_platform") |
77372 | 306 |
val options = SQL.Column.string("options") |
77536
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
307 |
val start = SQL.Column.date("start") |
77545 | 308 |
val stop = SQL.Column.date("stop") |
77635 | 309 |
val progress_stopped = SQL.Column.bool("progress_stopped") |
77372 | 310 |
|
77635 | 311 |
val table = |
312 |
make_table("", List(build_uuid, ml_platform, options, start, stop, progress_stopped)) |
|
77536
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
313 |
} |
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
314 |
|
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
315 |
def start_build( |
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
316 |
db: SQL.Database, |
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
317 |
build_uuid: String, |
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
318 |
ml_platform: String, |
77635 | 319 |
options: String, |
320 |
progress_stopped: Boolean |
|
77536
7c7f1473e51a
clarified database content and prepare/init stages;
wenzelm
parents:
77534
diff
changeset
|
321 |
): Unit = { |
77541 | 322 |
db.execute_statement(Base.table.insert(), body = |
323 |
{ stmt => |
|
324 |
stmt.string(1) = build_uuid |
|
325 |
stmt.string(2) = ml_platform |
|
326 |
stmt.string(3) = options |
|
327 |
stmt.date(4) = db.now() |
|
328 |
stmt.date(5) = None |
|
77635 | 329 |
stmt.bool(6) = progress_stopped |
77541 | 330 |
}) |
77372 | 331 |
} |
332 |
||
77545 | 333 |
def stop_build(db: SQL.Database, build_uuid: String): Unit = |
77541 | 334 |
db.execute_statement( |
77636 | 335 |
Base.table.update(List(Base.stop), sql = Base.build_uuid.where_equal(build_uuid)), |
77541 | 336 |
body = { stmt => stmt.date(1) = db.now() }) |
77538 | 337 |
|
77539
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
338 |
def clean_build(db: SQL.Database): Unit = { |
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
339 |
val old = |
77552 | 340 |
db.execute_query_statement( |
341 |
Base.table.select(List(Base.build_uuid), sql = SQL.where(Base.stop.defined)), |
|
342 |
List.from[String], res => res.string(Base.build_uuid)) |
|
77539
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
343 |
|
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
344 |
if (old.nonEmpty) { |
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
345 |
for (table <- List(Base.table, Sessions.table, Progress.table, Workers.table)) { |
77540 | 346 |
db.execute_statement(table.delete(sql = Generic.build_uuid.where_member(old))) |
77539
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
347 |
} |
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
348 |
} |
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
349 |
} |
2b996a0df1ce
proper clean_build of old data at start of new process --- allow to inspect remains of the last process;
wenzelm
parents:
77538
diff
changeset
|
350 |
|
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
351 |
|
77531 | 352 |
/* sessions */ |
77505 | 353 |
|
77496 | 354 |
object Sessions { |
355 |
val name = Generic.name.make_primary_key |
|
356 |
val deps = SQL.Column.string("deps") |
|
357 |
val ancestors = SQL.Column.string("ancestors") |
|
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
358 |
val options = SQL.Column.string("options") |
77496 | 359 |
val sources = SQL.Column.string("sources") |
360 |
val timeout = SQL.Column.long("timeout") |
|
361 |
val old_time = SQL.Column.long("old_time") |
|
362 |
val old_command_timings = SQL.Column.bytes("old_command_timings") |
|
77529
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
363 |
val build_uuid = Generic.build_uuid |
77496 | 364 |
|
365 |
val table = make_table("sessions", |
|
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
366 |
List(name, deps, ancestors, options, sources, timeout, |
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
367 |
old_time, old_command_timings, build_uuid)) |
77496 | 368 |
} |
369 |
||
370 |
def read_sessions_domain(db: SQL.Database): Set[String] = |
|
77552 | 371 |
db.execute_query_statement( |
372 |
Sessions.table.select(List(Sessions.name)), |
|
373 |
Set.from[String], res => res.string(Sessions.name)) |
|
77496 | 374 |
|
375 |
def read_sessions(db: SQL.Database, names: Iterable[String] = Nil): State.Sessions = |
|
77552 | 376 |
db.execute_query_statement( |
377 |
Sessions.table.select(sql = if_proper(names, Sessions.name.where_member(names))), |
|
378 |
Map.from[String, Build_Job.Session_Context], |
|
379 |
{ res => |
|
380 |
val name = res.string(Sessions.name) |
|
381 |
val deps = split_lines(res.string(Sessions.deps)) |
|
382 |
val ancestors = split_lines(res.string(Sessions.ancestors)) |
|
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
383 |
val options = res.string(Sessions.options) |
77552 | 384 |
val sources_shasum = SHA1.fake_shasum(res.string(Sessions.sources)) |
385 |
val timeout = Time.ms(res.long(Sessions.timeout)) |
|
386 |
val old_time = Time.ms(res.long(Sessions.old_time)) |
|
387 |
val old_command_timings_blob = res.bytes(Sessions.old_command_timings) |
|
388 |
val build_uuid = res.string(Sessions.build_uuid) |
|
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
389 |
name -> Build_Job.Session_Context(name, deps, ancestors, options, sources_shasum, |
77552 | 390 |
timeout, old_time, old_command_timings_blob, build_uuid) |
77496 | 391 |
} |
77552 | 392 |
) |
77496 | 393 |
|
394 |
def update_sessions(db:SQL.Database, sessions: State.Sessions): Boolean = { |
|
395 |
val old_sessions = read_sessions_domain(db) |
|
396 |
val insert = sessions.iterator.filterNot(p => old_sessions.contains(p._1)).toList |
|
397 |
||
398 |
for ((name, session) <- insert) { |
|
77541 | 399 |
db.execute_statement(Sessions.table.insert(), body = |
400 |
{ stmt => |
|
401 |
stmt.string(1) = name |
|
402 |
stmt.string(2) = cat_lines(session.deps) |
|
403 |
stmt.string(3) = cat_lines(session.ancestors) |
|
77610
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
404 |
stmt.string(4) = session.session_prefs |
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
405 |
stmt.string(5) = session.sources_shasum.toString |
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
406 |
stmt.long(6) = session.timeout.ms |
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
407 |
stmt.long(7) = session.old_time.ms |
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
408 |
stmt.bytes(8) = session.old_command_timings_blob |
3b09ae9e40cb
clarified session prefs (or "options" within the database);
wenzelm
parents:
77609
diff
changeset
|
409 |
stmt.string(9) = session.build_uuid |
77541 | 410 |
}) |
77496 | 411 |
} |
412 |
||
413 |
insert.nonEmpty |
|
414 |
} |
|
415 |
||
77531 | 416 |
|
417 |
/* progress */ |
|
418 |
||
419 |
object Progress { |
|
420 |
val serial = SQL.Column.long("serial").make_primary_key |
|
421 |
val kind = SQL.Column.int("kind") |
|
422 |
val text = SQL.Column.string("text") |
|
423 |
val verbose = SQL.Column.bool("verbose") |
|
424 |
val build_uuid = Generic.build_uuid |
|
425 |
||
426 |
val table = make_table("progress", List(serial, kind, text, verbose, build_uuid)) |
|
427 |
} |
|
428 |
||
429 |
def read_progress(db: SQL.Database, seen: Long = 0, build_uuid: String = ""): Progress_Messages = |
|
77552 | 430 |
db.execute_query_statement( |
77531 | 431 |
Progress.table.select( |
432 |
sql = |
|
433 |
SQL.where( |
|
434 |
SQL.and( |
|
435 |
if (seen <= 0) "" else Progress.serial.ident + " > " + seen, |
|
77552 | 436 |
Generic.sql(build_uuid = build_uuid)))), |
437 |
SortedMap.from[Long, isabelle.Progress.Message], |
|
438 |
{ res => |
|
439 |
val serial = res.long(Progress.serial) |
|
440 |
val kind = isabelle.Progress.Kind(res.int(Progress.kind)) |
|
441 |
val text = res.string(Progress.text) |
|
442 |
val verbose = res.bool(Progress.verbose) |
|
443 |
serial -> isabelle.Progress.Message(kind, text, verbose = verbose) |
|
77531 | 444 |
} |
77552 | 445 |
) |
77531 | 446 |
|
447 |
def write_progress( |
|
448 |
db: SQL.Database, |
|
449 |
message_serial: Long, |
|
450 |
message: isabelle.Progress.Message, |
|
451 |
build_uuid: String |
|
452 |
): Unit = { |
|
77541 | 453 |
db.execute_statement(Progress.table.insert(), body = |
454 |
{ stmt => |
|
455 |
stmt.long(1) = message_serial |
|
456 |
stmt.int(2) = message.kind.id |
|
457 |
stmt.string(3) = message.text |
|
458 |
stmt.bool(4) = message.verbose |
|
459 |
stmt.string(5) = build_uuid |
|
460 |
}) |
|
77531 | 461 |
} |
462 |
||
77637 | 463 |
def sync_progress( |
464 |
db: SQL.Database, |
|
465 |
seen: Long, |
|
466 |
build_uuid: String, |
|
467 |
build_progress: Progress |
|
468 |
): (Progress_Messages, Boolean) = { |
|
469 |
require(build_uuid.nonEmpty) |
|
470 |
||
471 |
val messages = read_progress(db, seen = seen, build_uuid = build_uuid) |
|
472 |
||
77635 | 473 |
val stopped_db = |
474 |
db.execute_query_statementO[Boolean]( |
|
475 |
Base.table.select(List(Base.progress_stopped), |
|
476 |
sql = SQL.where(Base.build_uuid.equal(build_uuid))), |
|
477 |
res => res.bool(Base.progress_stopped) |
|
478 |
).getOrElse(false) |
|
479 |
||
480 |
def stop_db(): Unit = |
|
481 |
db.execute_statement( |
|
482 |
Base.table.update( |
|
77636 | 483 |
List(Base.progress_stopped), sql = Base.build_uuid.where_equal(build_uuid)), |
77635 | 484 |
body = { stmt => stmt.bool(1) = true }) |
485 |
||
486 |
val stopped = build_progress.stopped |
|
487 |
||
488 |
if (stopped_db && !stopped) build_progress.stop() |
|
489 |
if (stopped && !stopped_db) stop_db() |
|
77637 | 490 |
|
491 |
(messages, messages.isEmpty && stopped_db == stopped) |
|
77635 | 492 |
} |
493 |
||
77531 | 494 |
|
495 |
/* workers */ |
|
496 |
||
497 |
object Workers { |
|
498 |
val worker_uuid = Generic.worker_uuid.make_primary_key |
|
499 |
val build_uuid = Generic.build_uuid |
|
77584 | 500 |
val hostname = SQL.Column.string("hostname") |
501 |
val java_pid = SQL.Column.long("java_pid") |
|
502 |
val java_start = SQL.Column.date("java_start") |
|
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
503 |
val start = SQL.Column.date("start") |
77531 | 504 |
val stamp = SQL.Column.date("stamp") |
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
505 |
val stop = SQL.Column.date("stop") |
77531 | 506 |
val serial = SQL.Column.long("serial") |
507 |
||
77584 | 508 |
val table = make_table("workers", |
509 |
List(worker_uuid, build_uuid, hostname, java_pid, java_start, start, stamp, stop, serial)) |
|
77531 | 510 |
|
511 |
val serial_max = serial.copy(expr = "MAX(" + serial.ident + ")") |
|
512 |
} |
|
513 |
||
77586 | 514 |
def read_workers( |
515 |
db: SQL.Database, |
|
516 |
build_uuid: String = "", |
|
517 |
worker_uuid: String = "" |
|
518 |
): State.Workers = { |
|
519 |
db.execute_query_statement( |
|
520 |
Workers.table.select(sql = |
|
521 |
SQL.where(Generic.sql(build_uuid = build_uuid, worker_uuid = worker_uuid))), |
|
522 |
List.from[Worker], |
|
523 |
{ res => |
|
524 |
Worker( |
|
525 |
worker_uuid = res.string(Workers.worker_uuid), |
|
526 |
build_uuid = res.string(Workers.build_uuid), |
|
527 |
hostname = res.string(Workers.hostname), |
|
528 |
java_pid = res.long(Workers.java_pid), |
|
77588
066d5df144f0
assume total operation: ProcessHandle.current().info.startInstant appears to work on all platforms;
wenzelm
parents:
77587
diff
changeset
|
529 |
java_start = res.date(Workers.java_start), |
77586 | 530 |
start = res.date(Workers.start), |
531 |
stamp = res.date(Workers.stamp), |
|
532 |
stop = res.get_date(Workers.stop), |
|
533 |
serial = res.long(Workers.serial)) |
|
534 |
}) |
|
535 |
} |
|
536 |
||
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
537 |
def serial_max(db: SQL.Database): Long = |
77552 | 538 |
db.execute_query_statementO[Long]( |
539 |
Workers.table.select(List(Workers.serial_max)), |
|
540 |
res => res.long(Workers.serial) |
|
541 |
).getOrElse(0L) |
|
77531 | 542 |
|
77584 | 543 |
def start_worker( |
544 |
db: SQL.Database, |
|
545 |
worker_uuid: String, |
|
546 |
build_uuid: String, |
|
547 |
hostname: String, |
|
548 |
java_pid: Long, |
|
77588
066d5df144f0
assume total operation: ProcessHandle.current().info.startInstant appears to work on all platforms;
wenzelm
parents:
77587
diff
changeset
|
549 |
java_start: Date |
77584 | 550 |
): Long = { |
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
551 |
def err(msg: String): Nothing = |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
552 |
error("Cannot start worker " + worker_uuid + if_proper(msg, "\n" + msg)) |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
553 |
|
77552 | 554 |
val build_stop = |
555 |
db.execute_query_statementO( |
|
77636 | 556 |
Base.table.select(List(Base.stop), sql = Base.build_uuid.where_equal(build_uuid)), |
77552 | 557 |
res => res.get_date(Base.stop)) |
558 |
||
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
559 |
build_stop match { |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
560 |
case Some(None) => |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
561 |
case Some(Some(_)) => err("for already stopped build process " + build_uuid) |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
562 |
case None => err("for unknown build process " + build_uuid) |
77531 | 563 |
} |
564 |
||
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
565 |
val serial = serial_max(db) |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
566 |
db.execute_statement(Workers.table.insert(), body = |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
567 |
{ stmt => |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
568 |
val now = db.now() |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
569 |
stmt.string(1) = worker_uuid |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
570 |
stmt.string(2) = build_uuid |
77584 | 571 |
stmt.string(3) = hostname |
572 |
stmt.long(4) = java_pid |
|
573 |
stmt.date(5) = java_start |
|
574 |
stmt.date(6) = now |
|
575 |
stmt.date(7) = now |
|
576 |
stmt.date(8) = None |
|
577 |
stmt.long(9) = serial |
|
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
578 |
}) |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
579 |
serial |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
580 |
} |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
581 |
|
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
582 |
def stamp_worker( |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
583 |
db: SQL.Database, |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
584 |
worker_uuid: String, |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
585 |
serial: Long, |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
586 |
stop: Boolean = false |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
587 |
): Unit = { |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
588 |
val sql = |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
589 |
Workers.table.update(List(Workers.stamp, Workers.stop, Workers.serial), |
77636 | 590 |
sql = Workers.worker_uuid.where_equal(worker_uuid)) |
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
591 |
db.execute_statement(sql, body = |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
592 |
{ stmt => |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
593 |
val now = db.now() |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
594 |
stmt.date(1) = now |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
595 |
stmt.date(2) = if (stop) Some(now) else None |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
596 |
stmt.long(3) = serial |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
597 |
}) |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
598 |
} |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
599 |
|
77531 | 600 |
|
601 |
/* pending jobs */ |
|
602 |
||
603 |
object Pending { |
|
604 |
val name = Generic.name.make_primary_key |
|
605 |
val deps = SQL.Column.string("deps") |
|
606 |
val info = SQL.Column.string("info") |
|
607 |
||
608 |
val table = make_table("pending", List(name, deps, info)) |
|
609 |
} |
|
610 |
||
77585 | 611 |
def read_pending(db: SQL.Database): List[Task] = |
77552 | 612 |
db.execute_query_statement( |
613 |
Pending.table.select(sql = SQL.order_by(List(Pending.name))), |
|
77585 | 614 |
List.from[Task], |
77552 | 615 |
{ res => |
616 |
val name = res.string(Pending.name) |
|
617 |
val deps = res.string(Pending.deps) |
|
618 |
val info = res.string(Pending.info) |
|
77585 | 619 |
Task(name, split_lines(deps), info = JSON.Object.parse(info)) |
77552 | 620 |
}) |
77372 | 621 |
|
77496 | 622 |
def update_pending(db: SQL.Database, pending: State.Pending): Boolean = { |
77372 | 623 |
val old_pending = read_pending(db) |
624 |
val (delete, insert) = Library.symmetric_difference(old_pending, pending) |
|
625 |
||
626 |
if (delete.nonEmpty) { |
|
77540 | 627 |
db.execute_statement( |
628 |
Pending.table.delete(sql = SQL.where(Generic.sql(names = delete.map(_.name))))) |
|
77372 | 629 |
} |
630 |
||
631 |
for (entry <- insert) { |
|
77541 | 632 |
db.execute_statement(Pending.table.insert(), body = |
633 |
{ stmt => |
|
634 |
stmt.string(1) = entry.name |
|
635 |
stmt.string(2) = cat_lines(entry.deps) |
|
636 |
stmt.string(3) = JSON.Format(entry.info) |
|
637 |
}) |
|
77372 | 638 |
} |
639 |
||
640 |
delete.nonEmpty || insert.nonEmpty |
|
641 |
} |
|
642 |
||
77531 | 643 |
|
644 |
/* running jobs */ |
|
645 |
||
646 |
object Running { |
|
647 |
val name = Generic.name.make_primary_key |
|
77587 | 648 |
val worker_uuid = Generic.worker_uuid |
77634 | 649 |
val build_uuid = Generic.build_uuid |
77531 | 650 |
val hostname = SQL.Column.string("hostname") |
651 |
val numa_node = SQL.Column.int("numa_node") |
|
652 |
||
77634 | 653 |
val table = make_table("running", List(name, worker_uuid, build_uuid, hostname, numa_node)) |
77531 | 654 |
} |
655 |
||
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
656 |
def read_running(db: SQL.Database): List[Job] = |
77552 | 657 |
db.execute_query_statement( |
658 |
Running.table.select(sql = SQL.order_by(List(Running.name))), |
|
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
659 |
List.from[Job], |
77552 | 660 |
{ res => |
661 |
val name = res.string(Running.name) |
|
77587 | 662 |
val worker_uuid = res.string(Running.worker_uuid) |
77634 | 663 |
val build_uuid = res.string(Running.build_uuid) |
77552 | 664 |
val hostname = res.string(Running.hostname) |
665 |
val numa_node = res.get_int(Running.numa_node) |
|
77634 | 666 |
Job(name, worker_uuid, build_uuid, Host.Node_Info(hostname, numa_node), None) |
77552 | 667 |
} |
668 |
) |
|
77372 | 669 |
|
77496 | 670 |
def update_running(db: SQL.Database, running: State.Running): Boolean = { |
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
671 |
val running0 = read_running(db) |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
672 |
val running1 = running.valuesIterator.map(_.no_build).toList |
77372 | 673 |
|
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
674 |
val (delete, insert) = Library.symmetric_difference(running0, running1) |
77372 | 675 |
|
676 |
if (delete.nonEmpty) { |
|
77540 | 677 |
db.execute_statement( |
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
678 |
Running.table.delete(sql = SQL.where(Generic.sql(names = delete.map(_.name))))) |
77372 | 679 |
} |
680 |
||
681 |
for (job <- insert) { |
|
77541 | 682 |
db.execute_statement(Running.table.insert(), body = |
683 |
{ stmt => |
|
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
684 |
stmt.string(1) = job.name |
77587 | 685 |
stmt.string(2) = job.worker_uuid |
77634 | 686 |
stmt.string(3) = job.build_uuid |
687 |
stmt.string(4) = job.node_info.hostname |
|
688 |
stmt.int(5) = job.node_info.numa_node |
|
77541 | 689 |
}) |
77372 | 690 |
} |
691 |
||
692 |
delete.nonEmpty || insert.nonEmpty |
|
693 |
} |
|
694 |
||
77531 | 695 |
|
696 |
/* job results */ |
|
697 |
||
698 |
object Results { |
|
699 |
val name = Generic.name.make_primary_key |
|
700 |
val hostname = SQL.Column.string("hostname") |
|
701 |
val numa_node = SQL.Column.string("numa_node") |
|
702 |
val rc = SQL.Column.int("rc") |
|
703 |
val out = SQL.Column.string("out") |
|
704 |
val err = SQL.Column.string("err") |
|
705 |
val timing_elapsed = SQL.Column.long("timing_elapsed") |
|
706 |
val timing_cpu = SQL.Column.long("timing_cpu") |
|
707 |
val timing_gc = SQL.Column.long("timing_gc") |
|
708 |
||
709 |
val table = |
|
710 |
make_table("results", |
|
711 |
List(name, hostname, numa_node, rc, out, err, timing_elapsed, timing_cpu, timing_gc)) |
|
712 |
} |
|
713 |
||
77496 | 714 |
def read_results_domain(db: SQL.Database): Set[String] = |
77552 | 715 |
db.execute_query_statement( |
716 |
Results.table.select(List(Results.name)), |
|
717 |
Set.from[String], res => res.string(Results.name)) |
|
77496 | 718 |
|
77372 | 719 |
def read_results(db: SQL.Database, names: List[String] = Nil): Map[String, Build_Job.Result] = |
77552 | 720 |
db.execute_query_statement( |
721 |
Results.table.select(sql = if_proper(names, Results.name.where_member(names))), |
|
722 |
Map.from[String, Build_Job.Result], |
|
723 |
{ res => |
|
724 |
val name = res.string(Results.name) |
|
725 |
val hostname = res.string(Results.hostname) |
|
726 |
val numa_node = res.get_int(Results.numa_node) |
|
727 |
val rc = res.int(Results.rc) |
|
728 |
val out = res.string(Results.out) |
|
729 |
val err = res.string(Results.err) |
|
730 |
val timing = |
|
731 |
res.timing( |
|
732 |
Results.timing_elapsed, |
|
733 |
Results.timing_cpu, |
|
734 |
Results.timing_gc) |
|
735 |
val node_info = Host.Node_Info(hostname, numa_node) |
|
736 |
val process_result = |
|
737 |
Process_Result(rc, |
|
738 |
out_lines = split_lines(out), |
|
739 |
err_lines = split_lines(err), |
|
740 |
timing = timing) |
|
741 |
name -> Build_Job.Result(node_info, process_result) |
|
77496 | 742 |
} |
77552 | 743 |
) |
77372 | 744 |
|
77496 | 745 |
def update_results(db: SQL.Database, results: State.Results): Boolean = { |
746 |
val old_results = read_results_domain(db) |
|
77385 | 747 |
val insert = results.iterator.filterNot(p => old_results.contains(p._1)).toList |
77372 | 748 |
|
749 |
for ((name, result) <- insert) { |
|
750 |
val node_info = result.node_info |
|
751 |
val process_result = result.process_result |
|
77541 | 752 |
db.execute_statement(Results.table.insert(), body = |
753 |
{ stmt => |
|
754 |
stmt.string(1) = name |
|
755 |
stmt.string(2) = node_info.hostname |
|
756 |
stmt.int(3) = node_info.numa_node |
|
757 |
stmt.int(4) = process_result.rc |
|
758 |
stmt.string(5) = cat_lines(process_result.out_lines) |
|
759 |
stmt.string(6) = cat_lines(process_result.err_lines) |
|
760 |
stmt.long(7) = process_result.timing.elapsed.ms |
|
761 |
stmt.long(8) = process_result.timing.cpu.ms |
|
762 |
stmt.long(9) = process_result.timing.gc.ms |
|
763 |
}) |
|
77372 | 764 |
} |
765 |
||
766 |
insert.nonEmpty |
|
767 |
} |
|
768 |
||
77531 | 769 |
|
770 |
/* collective operations */ |
|
771 |
||
77596 | 772 |
val all_tables: SQL.Tables = |
773 |
SQL.Tables( |
|
77534 | 774 |
Base.table, |
775 |
Workers.table, |
|
776 |
Progress.table, |
|
777 |
Sessions.table, |
|
778 |
Pending.table, |
|
779 |
Running.table, |
|
780 |
Results.table, |
|
781 |
Host.Data.Node_Info.table) |
|
782 |
||
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
783 |
def update_database( |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
784 |
db: SQL.Database, |
77529
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
785 |
worker_uuid: String, |
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
786 |
build_uuid: String, |
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
787 |
hostname: String, |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
788 |
state: State |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
789 |
): State = { |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
790 |
val changed = |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
791 |
List( |
77496 | 792 |
update_sessions(db, state.sessions), |
77416
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
793 |
update_pending(db, state.pending), |
d88c12f22ab0
clarified scope of "serial" and "numa_index" within database;
wenzelm
parents:
77415
diff
changeset
|
794 |
update_running(db, state.running), |
77476 | 795 |
update_results(db, state.results), |
77525
de6fb423fd4b
clarified database content: store actual value instead of index;
wenzelm
parents:
77522
diff
changeset
|
796 |
Host.Data.update_numa_next(db, hostname, state.numa_next)) |
77372 | 797 |
|
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
798 |
val serial0 = serial_max(db) |
77513 | 799 |
val serial = if (changed.exists(identity)) State.inc_serial(serial0) else serial0 |
77372 | 800 |
|
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
801 |
stamp_worker(db, worker_uuid, serial) |
77583 | 802 |
state.set_serial(serial).set_workers(read_workers(db)) |
77372 | 803 |
} |
804 |
} |
|
77396 | 805 |
} |
77372 | 806 |
|
807 |
||
77436 | 808 |
|
809 |
/** main process **/ |
|
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
810 |
|
77505 | 811 |
class Build_Process( |
77530 | 812 |
protected final val build_context: Build_Process.Context, |
813 |
protected final val build_progress: Progress |
|
77505 | 814 |
) |
77436 | 815 |
extends AutoCloseable { |
816 |
/* context */ |
|
817 |
||
77530 | 818 |
protected final val store: Sessions.Store = build_context.store |
819 |
protected final val build_options: Options = store.options |
|
820 |
protected final val build_deps: Sessions.Deps = build_context.build_deps |
|
821 |
protected final val build_uuid: String = build_context.build_uuid |
|
822 |
protected final val worker_uuid: String = UUID.random().toString |
|
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
823 |
|
77638 | 824 |
override def toString: String = |
825 |
"Build_Process(worker_uuid = " + quote(worker_uuid) + ", build_uuid = " + quote(build_uuid) + |
|
826 |
if_proper(build_context.master, ", master = true") + ")" |
|
827 |
||
77436 | 828 |
|
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
829 |
/* global state: internal var vs. external database */ |
77436 | 830 |
|
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
831 |
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
|
832 |
|
77629 | 833 |
private val _database: Option[SQL.Database] = store.open_build_database() |
77372 | 834 |
|
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
835 |
def close(): Unit = synchronized { _database.foreach(_.close()) } |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
836 |
|
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
837 |
protected def synchronized_database[A](body: => A): A = |
77438 | 838 |
synchronized { |
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
839 |
_database match { |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
840 |
case None => body |
77635 | 841 |
case Some(db) => |
77637 | 842 |
@tailrec def loop(): A = { |
843 |
val sync_progress = |
|
844 |
db.transaction_lock(Build_Process.Data.all_tables) { |
|
845 |
val (messages, sync) = |
|
846 |
Build_Process.Data.sync_progress( |
|
847 |
db, _state.progress_seen, build_uuid, build_progress) |
|
848 |
if (sync) Left(body) else Right(messages) |
|
849 |
} |
|
850 |
sync_progress match { |
|
851 |
case Left(res) => res |
|
852 |
case Right(messages) => |
|
853 |
for ((message_serial, message) <- messages) { |
|
854 |
_state = _state.progress_serial(message_serial = message_serial) |
|
855 |
if (build_progress.do_output(message)) build_progress.output(message) |
|
856 |
} |
|
857 |
loop() |
|
858 |
} |
|
77635 | 859 |
} |
77637 | 860 |
loop() |
77436 | 861 |
} |
862 |
} |
|
863 |
||
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
864 |
private def sync_database(): Unit = |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
865 |
synchronized_database { |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
866 |
for (db <- _database) { |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
867 |
_state = |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
868 |
Build_Process.Data.update_database( |
77529
40ccee0fe19a
separate static build_uuid from dynamic worker_uuid, to allow multiple worker processes participate in one build process;
wenzelm
parents:
77527
diff
changeset
|
869 |
db, worker_uuid, build_uuid, build_context.hostname, _state) |
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
870 |
} |
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
871 |
} |
77436 | 872 |
|
873 |
||
77505 | 874 |
/* progress backed by database */ |
875 |
||
77533 | 876 |
private def progress_output(message: Progress.Message, build_progress_output: => Unit): Unit = { |
77522
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
877 |
synchronized_database { |
77640 | 878 |
_state = _state.inc_serial.progress_serial() |
77522
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
879 |
for (db <- _database) { |
77640 | 880 |
Build_Process.Data.write_progress(db, _state.serial, message, build_uuid) |
881 |
Build_Process.Data.stamp_worker(db, worker_uuid, _state.serial) |
|
77522
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
882 |
} |
77533 | 883 |
build_progress_output |
77522
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
884 |
} |
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
885 |
} |
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
886 |
|
77530 | 887 |
protected object progress extends Progress { |
77509
3bc49507bae5
clarified treatment of "verbose" messages, e.g. Progress.theory();
wenzelm
parents:
77505
diff
changeset
|
888 |
override def verbose: Boolean = build_progress.verbose |
77505 | 889 |
|
77509
3bc49507bae5
clarified treatment of "verbose" messages, e.g. Progress.theory();
wenzelm
parents:
77505
diff
changeset
|
890 |
override def output(message: Progress.Message): Unit = |
77522
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
891 |
progress_output(message, if (do_output(message)) build_progress.output(message)) |
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
892 |
|
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
893 |
override def theory(theory: Progress.Theory): Unit = |
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
894 |
progress_output(theory.message, build_progress.theory(theory)) |
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
895 |
|
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
896 |
override def nodes_status(nodes_status: Document_Status.Nodes_Status): Unit = |
a1d30297cd61
more complete coverage of non-final Progress methods, notably for Server.Connection_Progress;
wenzelm
parents:
77521
diff
changeset
|
897 |
build_progress.nodes_status(nodes_status) |
77505 | 898 |
|
899 |
override def stop(): Unit = build_progress.stop() |
|
900 |
override def stopped: Boolean = build_progress.stopped |
|
901 |
} |
|
902 |
||
77530 | 903 |
protected val log: Logger = Logger.make_system_log(progress, build_options) |
77505 | 904 |
|
905 |
||
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
906 |
/* policy operations */ |
77333 | 907 |
|
77415
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
908 |
protected def init_state(state: Build_Process.State): Build_Process.State = { |
77496 | 909 |
val sessions1 = |
910 |
build_context.sessions.foldLeft(state.sessions) { case (map, (name, session)) => |
|
911 |
if (state.sessions.isDefinedAt(name)) map |
|
912 |
else map + (name -> session) |
|
913 |
} |
|
914 |
||
77415
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
915 |
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
|
916 |
val new_pending = |
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
917 |
List.from( |
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
918 |
for { |
77449 | 919 |
(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
|
920 |
if !old_pending(name) |
77585 | 921 |
} yield Build_Process.Task(name, session_context.deps)) |
77496 | 922 |
val pending1 = new_pending ::: state.pending |
923 |
||
924 |
state.copy(sessions = sessions1, pending = pending1) |
|
77415
6b928419f109
clarified signature: allow more general init, e.g. from existing database;
wenzelm
parents:
77414
diff
changeset
|
925 |
} |
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
926 |
|
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
927 |
protected def next_job(state: Build_Process.State): Option[String] = |
77578
149d48a4801b
support for "isabelle build -j0": require external workers to make progress;
wenzelm
parents:
77561
diff
changeset
|
928 |
if (progress.stopped || state.running.size < build_context.max_jobs) { |
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
929 |
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
|
930 |
.sortBy(_.name)(build_context.ordering) |
f8aa1647d156
more elementary data structures, to fit better to SQL database;
wenzelm
parents:
77312
diff
changeset
|
931 |
.headOption.map(_.name) |
77296
eeaa2872320b
clarified signature: more explicit synchronized operations;
wenzelm
parents:
77295
diff
changeset
|
932 |
} |
eeaa2872320b
clarified signature: more explicit synchronized operations;
wenzelm
parents:
77295
diff
changeset
|
933 |
else None |
77259
61fc2afe4c8b
clarified signature: prefer stateful object-oriented style, to make it fit better into physical world;
wenzelm
parents:
77258
diff
changeset
|
934 |
|
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
935 |
protected def start_session(state: Build_Process.State, session_name: String): Build_Process.State = { |
77468 | 936 |
val ancestor_results = |
937 |
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
|
938 |
|
77460
ccca589d7027
tuned signature: support general Build_Job instances;
wenzelm
parents:
77459
diff
changeset
|
939 |
val input_shasum = |
77260 | 940 |
if (ancestor_results.isEmpty) { |
941 |
SHA1.shasum_meta_info(SHA1.digest(Path.explode("$POLYML_EXE"))) |
|
942 |
} |
|
77460
ccca589d7027
tuned signature: support general Build_Job instances;
wenzelm
parents:
77459
diff
changeset
|
943 |
else SHA1.flat_shasum(ancestor_results.map(_.output_shasum)) |
77257 | 944 |
|
77463 | 945 |
val store_heap = build_context.store_heap(session_name) |
77469 | 946 |
|
947 |
val (current, output_shasum) = |
|
948 |
store.check_output(session_name, |
|
949 |
sources_shasum = build_context.sources_shasum(session_name), |
|
950 |
input_shasum = input_shasum, |
|
951 |
fresh_build = build_context.fresh_build, |
|
952 |
store_heap = store_heap) |
|
953 |
||
77260 | 954 |
val all_current = current && ancestor_results.forall(_.current) |
77257 | 955 |
|
77260 | 956 |
if (all_current) { |
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
957 |
state |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
958 |
.remove_pending(session_name) |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
959 |
.make_result(session_name, Process_Result.ok, output_shasum, current = true) |
77260 | 960 |
} |
77315
f34559b24277
clarified signature: move all parameters into Build_Process.Context;
wenzelm
parents:
77314
diff
changeset
|
961 |
else if (build_context.no_build) { |
77521
5642de4d225d
clarified signature: manage "verbose" flag via "progress";
wenzelm
parents:
77514
diff
changeset
|
962 |
progress.echo("Skipping " + session_name + " ...", verbose = true) |
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
963 |
state. |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
964 |
remove_pending(session_name). |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
965 |
make_result(session_name, Process_Result.error, output_shasum) |
77260 | 966 |
} |
77578
149d48a4801b
support for "isabelle build -j0": require external workers to make progress;
wenzelm
parents:
77561
diff
changeset
|
967 |
else if (progress.stopped || !ancestor_results.forall(_.ok)) { |
77452 | 968 |
progress.echo(session_name + " CANCELLED") |
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
969 |
state |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
970 |
.remove_pending(session_name) |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
971 |
.make_result(session_name, Process_Result.undefined, output_shasum) |
77452 | 972 |
} |
973 |
else { |
|
77632 | 974 |
val (numa_node, state1) = state.next_numa_node(build_context.numa_nodes) |
77551 | 975 |
val node_info = Host.Node_Info(build_context.hostname, numa_node) |
976 |
||
977 |
progress.echo( |
|
978 |
(if (store_heap) "Building " else "Running ") + session_name + |
|
979 |
if_proper(node_info.numa_node, " on " + node_info) + " ...") |
|
77260 | 980 |
|
77472 | 981 |
store.init_output(session_name) |
77257 | 982 |
|
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
983 |
val build = |
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
984 |
Build_Job.start_session(build_context, progress, log, |
77505 | 985 |
build_deps.background(session_name), input_shasum, node_info) |
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
986 |
|
77634 | 987 |
val job = Build_Process.Job(session_name, worker_uuid, build_uuid, node_info, Some(build)) |
988 |
||
989 |
state1.add_running(job) |
|
77260 | 990 |
} |
991 |
} |
|
77257 | 992 |
|
77436 | 993 |
|
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
994 |
/* build process roles */ |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
995 |
|
77648 | 996 |
final def is_session_name(job_name: String): Boolean = !Long_Name.is_qualified(job_name) |
997 |
||
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
998 |
final def start_build(): Unit = synchronized_database { |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
999 |
for (db <- _database) { |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1000 |
Build_Process.Data.start_build(db, build_uuid, build_context.ml_platform, |
77635 | 1001 |
build_context.sessions_structure.session_prefs, progress.stopped) |
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1002 |
} |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1003 |
} |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1004 |
|
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1005 |
final def stop_build(): Unit = synchronized_database { |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1006 |
for (db <- _database) { |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1007 |
Build_Process.Data.stop_build(db, build_uuid) |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1008 |
} |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1009 |
} |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1010 |
|
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1011 |
final def start_worker(): Unit = synchronized_database { |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1012 |
for (db <- _database) { |
77584 | 1013 |
val java = ProcessHandle.current() |
1014 |
val java_pid = java.pid |
|
77588
066d5df144f0
assume total operation: ProcessHandle.current().info.startInstant appears to work on all platforms;
wenzelm
parents:
77587
diff
changeset
|
1015 |
val java_start = Date.instant(java.info.startInstant.get) |
77584 | 1016 |
val serial = |
1017 |
Build_Process.Data.start_worker( |
|
1018 |
db, worker_uuid, build_uuid, build_context.hostname, java_pid, java_start) |
|
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1019 |
_state = _state.set_serial(serial) |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1020 |
} |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1021 |
} |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1022 |
|
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1023 |
final def stop_worker(): Unit = synchronized_database { |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1024 |
for (db <- _database) { |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1025 |
Build_Process.Data.stamp_worker(db, worker_uuid, _state.serial, stop = true) |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1026 |
} |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1027 |
} |
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1028 |
|
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1029 |
|
77436 | 1030 |
/* run */ |
77372 | 1031 |
|
77579
69d3547206db
clarified signature: prefer Build_Process.Context for parameters;
wenzelm
parents:
77578
diff
changeset
|
1032 |
def run(): Map[String, Process_Result] = { |
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
1033 |
def finished(): Boolean = synchronized_database { _state.finished } |
77400
f3e5b3fe230e
clarified signature: more explicit "synchronized" regions;
wenzelm
parents:
77398
diff
changeset
|
1034 |
|
77437
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
1035 |
def sleep(): Unit = |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
1036 |
Isabelle_Thread.interrupt_handler(_ => progress.stop()) { |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
1037 |
build_options.seconds("editor_input_delay").sleep() |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
1038 |
} |
dcbf96acae27
clarified signature: do not expose global state to object-oriented variants;
wenzelm
parents:
77436
diff
changeset
|
1039 |
|
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1040 |
def start_job(): Boolean = synchronized_database { |
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
1041 |
next_job(_state) match { |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
1042 |
case Some(name) => |
77648 | 1043 |
if (is_session_name(name)) { |
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
1044 |
_state = start_session(_state, name) |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
1045 |
true |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
1046 |
} |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
1047 |
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
|
1048 |
case None => false |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
1049 |
} |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
1050 |
} |
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
1051 |
|
77335 | 1052 |
if (finished()) { |
1053 |
progress.echo_warning("Nothing to build") |
|
1054 |
Map.empty[String, Process_Result] |
|
1055 |
} |
|
1056 |
else { |
|
77579
69d3547206db
clarified signature: prefer Build_Process.Context for parameters;
wenzelm
parents:
77578
diff
changeset
|
1057 |
if (build_context.master) start_build() |
77578
149d48a4801b
support for "isabelle build -j0": require external workers to make progress;
wenzelm
parents:
77561
diff
changeset
|
1058 |
|
77580
32f9e75c92e9
clarified worker state: always maintain database content via worker_uuid;
wenzelm
parents:
77579
diff
changeset
|
1059 |
start_worker() |
32f9e75c92e9
clarified worker state: always maintain database content via worker_uuid;
wenzelm
parents:
77579
diff
changeset
|
1060 |
if (build_context.master && !build_context.worker_active) { |
32f9e75c92e9
clarified worker state: always maintain database content via worker_uuid;
wenzelm
parents:
77579
diff
changeset
|
1061 |
progress.echo("Waiting for external workers ...") |
32f9e75c92e9
clarified worker state: always maintain database content via worker_uuid;
wenzelm
parents:
77579
diff
changeset
|
1062 |
} |
77578
149d48a4801b
support for "isabelle build -j0": require external workers to make progress;
wenzelm
parents:
77561
diff
changeset
|
1063 |
|
77538 | 1064 |
try { |
1065 |
while (!finished()) { |
|
77639 | 1066 |
synchronized_database { |
1067 |
if (progress.stopped) _state.stop_running() |
|
77310 | 1068 |
|
77648 | 1069 |
for ((job_name, build) <- _state.finished_running()) { |
77639 | 1070 |
val (process_result, output_shasum) = build.join |
77538 | 1071 |
_state = _state. |
1072 |
remove_pending(job_name). |
|
1073 |
remove_running(job_name). |
|
77630
86ef80d13544
clarified signature: avoid confusion due to object-orientation;
wenzelm
parents:
77629
diff
changeset
|
1074 |
make_result(job_name, process_result, output_shasum, node_info = build.node_info) |
77538 | 1075 |
} |
1076 |
} |
|
1077 |
||
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1078 |
if (!start_job()) { |
77538 | 1079 |
sync_database() |
1080 |
sleep() |
|
77396 | 1081 |
} |
1082 |
} |
|
77310 | 1083 |
} |
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1084 |
finally { |
77580
32f9e75c92e9
clarified worker state: always maintain database content via worker_uuid;
wenzelm
parents:
77579
diff
changeset
|
1085 |
stop_worker() |
77579
69d3547206db
clarified signature: prefer Build_Process.Context for parameters;
wenzelm
parents:
77578
diff
changeset
|
1086 |
if (build_context.master) stop_build() |
77546
9b9179cda155
clarified build process roles: "worker" vs. "build";
wenzelm
parents:
77545
diff
changeset
|
1087 |
} |
77467
e27bc7957297
more robust: proper synchronization of transition from next_job to start_session;
wenzelm
parents:
77466
diff
changeset
|
1088 |
|
77466
94dcf2c3895a
more thorough synchronized_database for internal *and* external state;
wenzelm
parents:
77465
diff
changeset
|
1089 |
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
|
1090 |
for ((name, result) <- _state.results) yield name -> result.process_result |
77257 | 1091 |
} |
1092 |
} |
|
1093 |
} |
|
77238 | 1094 |
} |