Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | """ |
| 2 | BitBake 'RunQueue' implementation |
| 3 | |
| 4 | Handles preparation and execution of a queue of tasks |
| 5 | """ |
| 6 | |
| 7 | # Copyright (C) 2006-2007 Richard Purdie |
| 8 | # |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 9 | # SPDX-License-Identifier: GPL-2.0-only |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 10 | # |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 11 | |
| 12 | import copy |
| 13 | import os |
| 14 | import sys |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 15 | import stat |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 16 | import errno |
| 17 | import logging |
| 18 | import re |
| 19 | import bb |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 20 | from bb import msg, event |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 21 | from bb import monitordisk |
| 22 | import subprocess |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 23 | import pickle |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 24 | from multiprocessing import Process |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 25 | import shlex |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 26 | import pprint |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 27 | |
| 28 | bblogger = logging.getLogger("BitBake") |
| 29 | logger = logging.getLogger("BitBake.RunQueue") |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 30 | hashequiv_logger = logging.getLogger("BitBake.RunQueue.HashEquiv") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 31 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 32 | __find_sha256__ = re.compile( r'(?i)(?<![a-z0-9])[a-f0-9]{64}(?![a-z0-9])' ) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 33 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 34 | def fn_from_tid(tid): |
| 35 | return tid.rsplit(":", 1)[0] |
| 36 | |
| 37 | def taskname_from_tid(tid): |
| 38 | return tid.rsplit(":", 1)[1] |
| 39 | |
Andrew Geissler | 99467da | 2019-02-25 18:54:23 -0600 | [diff] [blame] | 40 | def mc_from_tid(tid): |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 41 | if tid.startswith('mc:') and tid.count(':') >= 2: |
Andrew Geissler | 99467da | 2019-02-25 18:54:23 -0600 | [diff] [blame] | 42 | return tid.split(':')[1] |
| 43 | return "" |
| 44 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 45 | def split_tid(tid): |
| 46 | (mc, fn, taskname, _) = split_tid_mcfn(tid) |
| 47 | return (mc, fn, taskname) |
| 48 | |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 49 | def split_mc(n): |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 50 | if n.startswith("mc:") and n.count(':') >= 2: |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 51 | _, mc, n = n.split(":", 2) |
| 52 | return (mc, n) |
| 53 | return ('', n) |
| 54 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 55 | def split_tid_mcfn(tid): |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 56 | if tid.startswith('mc:') and tid.count(':') >= 2: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 57 | elems = tid.split(':') |
| 58 | mc = elems[1] |
| 59 | fn = ":".join(elems[2:-1]) |
| 60 | taskname = elems[-1] |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 61 | mcfn = "mc:" + mc + ":" + fn |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 62 | else: |
| 63 | tid = tid.rsplit(":", 1) |
| 64 | mc = "" |
| 65 | fn = tid[0] |
| 66 | taskname = tid[1] |
| 67 | mcfn = fn |
| 68 | |
| 69 | return (mc, fn, taskname, mcfn) |
| 70 | |
| 71 | def build_tid(mc, fn, taskname): |
| 72 | if mc: |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 73 | return "mc:" + mc + ":" + fn + ":" + taskname |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 74 | return fn + ":" + taskname |
| 75 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 76 | # Index used to pair up potentially matching multiconfig tasks |
| 77 | # We match on PN, taskname and hash being equal |
| 78 | def pending_hash_index(tid, rqdata): |
| 79 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 80 | pn = rqdata.dataCaches[mc].pkg_fn[taskfn] |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 81 | h = rqdata.runtaskentries[tid].unihash |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 82 | return pn + ":" + "taskname" + h |
| 83 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 84 | class RunQueueStats: |
| 85 | """ |
| 86 | Holds statistics on the tasks handled by the associated runQueue |
| 87 | """ |
| 88 | def __init__(self, total): |
| 89 | self.completed = 0 |
| 90 | self.skipped = 0 |
| 91 | self.failed = 0 |
| 92 | self.active = 0 |
| 93 | self.total = total |
| 94 | |
| 95 | def copy(self): |
| 96 | obj = self.__class__(self.total) |
| 97 | obj.__dict__.update(self.__dict__) |
| 98 | return obj |
| 99 | |
| 100 | def taskFailed(self): |
| 101 | self.active = self.active - 1 |
| 102 | self.failed = self.failed + 1 |
| 103 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 104 | def taskCompleted(self): |
| 105 | self.active = self.active - 1 |
| 106 | self.completed = self.completed + 1 |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 107 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 108 | def taskSkipped(self): |
| 109 | self.active = self.active + 1 |
| 110 | self.skipped = self.skipped + 1 |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 111 | |
| 112 | def taskActive(self): |
| 113 | self.active = self.active + 1 |
| 114 | |
| 115 | # These values indicate the next step due to be run in the |
| 116 | # runQueue state machine |
| 117 | runQueuePrepare = 2 |
| 118 | runQueueSceneInit = 3 |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 119 | runQueueRunning = 6 |
| 120 | runQueueFailed = 7 |
| 121 | runQueueCleanUp = 8 |
| 122 | runQueueComplete = 9 |
| 123 | |
| 124 | class RunQueueScheduler(object): |
| 125 | """ |
| 126 | Control the order tasks are scheduled in. |
| 127 | """ |
| 128 | name = "basic" |
| 129 | |
| 130 | def __init__(self, runqueue, rqdata): |
| 131 | """ |
| 132 | The default scheduler just returns the first buildable task (the |
| 133 | priority map is sorted by task number) |
| 134 | """ |
| 135 | self.rq = runqueue |
| 136 | self.rqdata = rqdata |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 137 | self.numTasks = len(self.rqdata.runtaskentries) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 138 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 139 | self.prio_map = [self.rqdata.runtaskentries.keys()] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 140 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 141 | self.buildable = set() |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 142 | self.skip_maxthread = {} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 143 | self.stamps = {} |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 144 | for tid in self.rqdata.runtaskentries: |
| 145 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 146 | self.stamps[tid] = bb.build.stampfile(taskname, self.rqdata.dataCaches[mc], taskfn, noextra=True) |
| 147 | if tid in self.rq.runq_buildable: |
| 148 | self.buildable.append(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 149 | |
| 150 | self.rev_prio_map = None |
| 151 | |
| 152 | def next_buildable_task(self): |
| 153 | """ |
| 154 | Return the id of the first task we find that is buildable |
| 155 | """ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 156 | # Once tasks are running we don't need to worry about them again |
| 157 | self.buildable.difference_update(self.rq.runq_running) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 158 | buildable = set(self.buildable) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 159 | buildable.difference_update(self.rq.holdoff_tasks) |
| 160 | buildable.intersection_update(self.rq.tasks_covered | self.rq.tasks_notcovered) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 161 | if not buildable: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 162 | return None |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 163 | |
| 164 | # Filter out tasks that have a max number of threads that have been exceeded |
| 165 | skip_buildable = {} |
| 166 | for running in self.rq.runq_running.difference(self.rq.runq_complete): |
| 167 | rtaskname = taskname_from_tid(running) |
| 168 | if rtaskname not in self.skip_maxthread: |
| 169 | self.skip_maxthread[rtaskname] = self.rq.cfgData.getVarFlag(rtaskname, "number_threads") |
| 170 | if not self.skip_maxthread[rtaskname]: |
| 171 | continue |
| 172 | if rtaskname in skip_buildable: |
| 173 | skip_buildable[rtaskname] += 1 |
| 174 | else: |
| 175 | skip_buildable[rtaskname] = 1 |
| 176 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 177 | if len(buildable) == 1: |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 178 | tid = buildable.pop() |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 179 | taskname = taskname_from_tid(tid) |
| 180 | if taskname in skip_buildable and skip_buildable[taskname] >= int(self.skip_maxthread[taskname]): |
| 181 | return None |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 182 | stamp = self.stamps[tid] |
| 183 | if stamp not in self.rq.build_stamps.values(): |
| 184 | return tid |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 185 | |
| 186 | if not self.rev_prio_map: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 187 | self.rev_prio_map = {} |
| 188 | for tid in self.rqdata.runtaskentries: |
| 189 | self.rev_prio_map[tid] = self.prio_map.index(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 190 | |
| 191 | best = None |
| 192 | bestprio = None |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 193 | for tid in buildable: |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 194 | taskname = taskname_from_tid(tid) |
| 195 | if taskname in skip_buildable and skip_buildable[taskname] >= int(self.skip_maxthread[taskname]): |
| 196 | continue |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 197 | prio = self.rev_prio_map[tid] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 198 | if bestprio is None or bestprio > prio: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 199 | stamp = self.stamps[tid] |
| 200 | if stamp in self.rq.build_stamps.values(): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 201 | continue |
| 202 | bestprio = prio |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 203 | best = tid |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 204 | |
| 205 | return best |
| 206 | |
| 207 | def next(self): |
| 208 | """ |
| 209 | Return the id of the task we should build next |
| 210 | """ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 211 | if self.rq.can_start_task(): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 212 | return self.next_buildable_task() |
| 213 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 214 | def newbuildable(self, task): |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 215 | self.buildable.add(task) |
| 216 | |
| 217 | def removebuildable(self, task): |
| 218 | self.buildable.remove(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 219 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 220 | def describe_task(self, taskid): |
| 221 | result = 'ID %s' % taskid |
| 222 | if self.rev_prio_map: |
| 223 | result = result + (' pri %d' % self.rev_prio_map[taskid]) |
| 224 | return result |
| 225 | |
| 226 | def dump_prio(self, comment): |
| 227 | bb.debug(3, '%s (most important first):\n%s' % |
| 228 | (comment, |
| 229 | '\n'.join(['%d. %s' % (index + 1, self.describe_task(taskid)) for |
| 230 | index, taskid in enumerate(self.prio_map)]))) |
| 231 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 232 | class RunQueueSchedulerSpeed(RunQueueScheduler): |
| 233 | """ |
| 234 | A scheduler optimised for speed. The priority map is sorted by task weight, |
| 235 | heavier weighted tasks (tasks needed by the most other tasks) are run first. |
| 236 | """ |
| 237 | name = "speed" |
| 238 | |
| 239 | def __init__(self, runqueue, rqdata): |
| 240 | """ |
| 241 | The priority map is sorted by task weight. |
| 242 | """ |
| 243 | RunQueueScheduler.__init__(self, runqueue, rqdata) |
| 244 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 245 | weights = {} |
| 246 | for tid in self.rqdata.runtaskentries: |
| 247 | weight = self.rqdata.runtaskentries[tid].weight |
| 248 | if not weight in weights: |
| 249 | weights[weight] = [] |
| 250 | weights[weight].append(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 251 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 252 | self.prio_map = [] |
| 253 | for weight in sorted(weights): |
| 254 | for w in weights[weight]: |
| 255 | self.prio_map.append(w) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 256 | |
| 257 | self.prio_map.reverse() |
| 258 | |
| 259 | class RunQueueSchedulerCompletion(RunQueueSchedulerSpeed): |
| 260 | """ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 261 | A scheduler optimised to complete .bb files as quickly as possible. The |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 262 | priority map is sorted by task weight, but then reordered so once a given |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 263 | .bb file starts to build, it's completed as quickly as possible by |
| 264 | running all tasks related to the same .bb file one after the after. |
| 265 | This works well where disk space is at a premium and classes like OE's |
| 266 | rm_work are in force. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 267 | """ |
| 268 | name = "completion" |
| 269 | |
| 270 | def __init__(self, runqueue, rqdata): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 271 | super(RunQueueSchedulerCompletion, self).__init__(runqueue, rqdata) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 272 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 273 | # Extract list of tasks for each recipe, with tasks sorted |
| 274 | # ascending from "must run first" (typically do_fetch) to |
| 275 | # "runs last" (do_build). The speed scheduler prioritizes |
| 276 | # tasks that must run first before the ones that run later; |
| 277 | # this is what we depend on here. |
| 278 | task_lists = {} |
| 279 | for taskid in self.prio_map: |
| 280 | fn, taskname = taskid.rsplit(':', 1) |
| 281 | task_lists.setdefault(fn, []).append(taskname) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 282 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 283 | # Now unify the different task lists. The strategy is that |
| 284 | # common tasks get skipped and new ones get inserted after the |
| 285 | # preceeding common one(s) as they are found. Because task |
| 286 | # lists should differ only by their number of tasks, but not |
| 287 | # the ordering of the common tasks, this should result in a |
| 288 | # deterministic result that is a superset of the individual |
| 289 | # task ordering. |
| 290 | all_tasks = [] |
| 291 | for recipe, new_tasks in task_lists.items(): |
| 292 | index = 0 |
| 293 | old_task = all_tasks[index] if index < len(all_tasks) else None |
| 294 | for new_task in new_tasks: |
| 295 | if old_task == new_task: |
| 296 | # Common task, skip it. This is the fast-path which |
| 297 | # avoids a full search. |
| 298 | index += 1 |
| 299 | old_task = all_tasks[index] if index < len(all_tasks) else None |
| 300 | else: |
| 301 | try: |
| 302 | index = all_tasks.index(new_task) |
| 303 | # Already present, just not at the current |
| 304 | # place. We re-synchronized by changing the |
| 305 | # index so that it matches again. Now |
| 306 | # move on to the next existing task. |
| 307 | index += 1 |
| 308 | old_task = all_tasks[index] if index < len(all_tasks) else None |
| 309 | except ValueError: |
| 310 | # Not present. Insert before old_task, which |
| 311 | # remains the same (but gets shifted back). |
| 312 | all_tasks.insert(index, new_task) |
| 313 | index += 1 |
| 314 | bb.debug(3, 'merged task list: %s' % all_tasks) |
| 315 | |
| 316 | # Now reverse the order so that tasks that finish the work on one |
| 317 | # recipe are considered more imporant (= come first). The ordering |
| 318 | # is now so that do_build is most important. |
| 319 | all_tasks.reverse() |
| 320 | |
| 321 | # Group tasks of the same kind before tasks of less important |
| 322 | # kinds at the head of the queue (because earlier = lower |
| 323 | # priority number = runs earlier), while preserving the |
| 324 | # ordering by recipe. If recipe foo is more important than |
| 325 | # bar, then the goal is to work on foo's do_populate_sysroot |
| 326 | # before bar's do_populate_sysroot and on the more important |
| 327 | # tasks of foo before any of the less important tasks in any |
| 328 | # other recipe (if those other recipes are more important than |
| 329 | # foo). |
| 330 | # |
| 331 | # All of this only applies when tasks are runable. Explicit |
| 332 | # dependencies still override this ordering by priority. |
| 333 | # |
| 334 | # Here's an example why this priority re-ordering helps with |
| 335 | # minimizing disk usage. Consider a recipe foo with a higher |
| 336 | # priority than bar where foo DEPENDS on bar. Then the |
| 337 | # implicit rule (from base.bbclass) is that foo's do_configure |
| 338 | # depends on bar's do_populate_sysroot. This ensures that |
| 339 | # bar's do_populate_sysroot gets done first. Normally the |
| 340 | # tasks from foo would continue to run once that is done, and |
| 341 | # bar only gets completed and cleaned up later. By ordering |
| 342 | # bar's task that depend on bar's do_populate_sysroot before foo's |
| 343 | # do_configure, that problem gets avoided. |
| 344 | task_index = 0 |
| 345 | self.dump_prio('original priorities') |
| 346 | for task in all_tasks: |
| 347 | for index in range(task_index, self.numTasks): |
| 348 | taskid = self.prio_map[index] |
| 349 | taskname = taskid.rsplit(':', 1)[1] |
| 350 | if taskname == task: |
| 351 | del self.prio_map[index] |
| 352 | self.prio_map.insert(task_index, taskid) |
| 353 | task_index += 1 |
| 354 | self.dump_prio('completion priorities') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 355 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 356 | class RunTaskEntry(object): |
| 357 | def __init__(self): |
| 358 | self.depends = set() |
| 359 | self.revdeps = set() |
| 360 | self.hash = None |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 361 | self.unihash = None |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 362 | self.task = None |
| 363 | self.weight = 1 |
| 364 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 365 | class RunQueueData: |
| 366 | """ |
| 367 | BitBake Run Queue implementation |
| 368 | """ |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 369 | def __init__(self, rq, cooker, cfgData, dataCaches, taskData, targets): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 370 | self.cooker = cooker |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 371 | self.dataCaches = dataCaches |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 372 | self.taskData = taskData |
| 373 | self.targets = targets |
| 374 | self.rq = rq |
| 375 | self.warn_multi_bb = False |
| 376 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 377 | self.stampwhitelist = cfgData.getVar("BB_STAMP_WHITELIST") or "" |
| 378 | self.multi_provider_whitelist = (cfgData.getVar("MULTI_PROVIDER_WHITELIST") or "").split() |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 379 | self.setscenewhitelist = get_setscene_enforce_whitelist(cfgData, targets) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 380 | self.setscenewhitelist_checked = False |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 381 | self.setscene_enforce = (cfgData.getVar('BB_SETSCENE_ENFORCE') == "1") |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 382 | self.init_progress_reporter = bb.progress.DummyMultiStageProcessProgressReporter() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 383 | |
| 384 | self.reset() |
| 385 | |
| 386 | def reset(self): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 387 | self.runtaskentries = {} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 388 | |
| 389 | def runq_depends_names(self, ids): |
| 390 | import re |
| 391 | ret = [] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 392 | for id in ids: |
| 393 | nam = os.path.basename(id) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 394 | nam = re.sub("_[^,]*,", ",", nam) |
| 395 | ret.extend([nam]) |
| 396 | return ret |
| 397 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 398 | def get_task_hash(self, tid): |
| 399 | return self.runtaskentries[tid].hash |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 400 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 401 | def get_task_unihash(self, tid): |
| 402 | return self.runtaskentries[tid].unihash |
| 403 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 404 | def get_user_idstring(self, tid, task_name_suffix = ""): |
| 405 | return tid + task_name_suffix |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 406 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 407 | def get_short_user_idstring(self, task, task_name_suffix = ""): |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 408 | (mc, fn, taskname, taskfn) = split_tid_mcfn(task) |
| 409 | pn = self.dataCaches[mc].pkg_fn[taskfn] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 410 | taskname = taskname_from_tid(task) + task_name_suffix |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 411 | return "%s:%s" % (pn, taskname) |
| 412 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 413 | def circular_depchains_handler(self, tasks): |
| 414 | """ |
| 415 | Some tasks aren't buildable, likely due to circular dependency issues. |
| 416 | Identify the circular dependencies and print them in a user readable format. |
| 417 | """ |
| 418 | from copy import deepcopy |
| 419 | |
| 420 | valid_chains = [] |
| 421 | explored_deps = {} |
| 422 | msgs = [] |
| 423 | |
Andrew Geissler | 99467da | 2019-02-25 18:54:23 -0600 | [diff] [blame] | 424 | class TooManyLoops(Exception): |
| 425 | pass |
| 426 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 427 | def chain_reorder(chain): |
| 428 | """ |
| 429 | Reorder a dependency chain so the lowest task id is first |
| 430 | """ |
| 431 | lowest = 0 |
| 432 | new_chain = [] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 433 | for entry in range(len(chain)): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 434 | if chain[entry] < chain[lowest]: |
| 435 | lowest = entry |
| 436 | new_chain.extend(chain[lowest:]) |
| 437 | new_chain.extend(chain[:lowest]) |
| 438 | return new_chain |
| 439 | |
| 440 | def chain_compare_equal(chain1, chain2): |
| 441 | """ |
| 442 | Compare two dependency chains and see if they're the same |
| 443 | """ |
| 444 | if len(chain1) != len(chain2): |
| 445 | return False |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 446 | for index in range(len(chain1)): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 447 | if chain1[index] != chain2[index]: |
| 448 | return False |
| 449 | return True |
| 450 | |
| 451 | def chain_array_contains(chain, chain_array): |
| 452 | """ |
| 453 | Return True if chain_array contains chain |
| 454 | """ |
| 455 | for ch in chain_array: |
| 456 | if chain_compare_equal(ch, chain): |
| 457 | return True |
| 458 | return False |
| 459 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 460 | def find_chains(tid, prev_chain): |
| 461 | prev_chain.append(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 462 | total_deps = [] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 463 | total_deps.extend(self.runtaskentries[tid].revdeps) |
| 464 | for revdep in self.runtaskentries[tid].revdeps: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 465 | if revdep in prev_chain: |
| 466 | idx = prev_chain.index(revdep) |
| 467 | # To prevent duplicates, reorder the chain to start with the lowest taskid |
| 468 | # and search through an array of those we've already printed |
| 469 | chain = prev_chain[idx:] |
| 470 | new_chain = chain_reorder(chain) |
| 471 | if not chain_array_contains(new_chain, valid_chains): |
| 472 | valid_chains.append(new_chain) |
| 473 | msgs.append("Dependency loop #%d found:\n" % len(valid_chains)) |
| 474 | for dep in new_chain: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 475 | msgs.append(" Task %s (dependent Tasks %s)\n" % (dep, self.runq_depends_names(self.runtaskentries[dep].depends))) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 476 | msgs.append("\n") |
| 477 | if len(valid_chains) > 10: |
| 478 | msgs.append("Aborted dependency loops search after 10 matches.\n") |
Andrew Geissler | 99467da | 2019-02-25 18:54:23 -0600 | [diff] [blame] | 479 | raise TooManyLoops |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 480 | continue |
| 481 | scan = False |
| 482 | if revdep not in explored_deps: |
| 483 | scan = True |
| 484 | elif revdep in explored_deps[revdep]: |
| 485 | scan = True |
| 486 | else: |
| 487 | for dep in prev_chain: |
| 488 | if dep in explored_deps[revdep]: |
| 489 | scan = True |
| 490 | if scan: |
| 491 | find_chains(revdep, copy.deepcopy(prev_chain)) |
| 492 | for dep in explored_deps[revdep]: |
| 493 | if dep not in total_deps: |
| 494 | total_deps.append(dep) |
| 495 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 496 | explored_deps[tid] = total_deps |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 497 | |
Andrew Geissler | 99467da | 2019-02-25 18:54:23 -0600 | [diff] [blame] | 498 | try: |
| 499 | for task in tasks: |
| 500 | find_chains(task, []) |
| 501 | except TooManyLoops: |
| 502 | pass |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 503 | |
| 504 | return msgs |
| 505 | |
| 506 | def calculate_task_weights(self, endpoints): |
| 507 | """ |
| 508 | Calculate a number representing the "weight" of each task. Heavier weighted tasks |
| 509 | have more dependencies and hence should be executed sooner for maximum speed. |
| 510 | |
| 511 | This function also sanity checks the task list finding tasks that are not |
| 512 | possible to execute due to circular dependencies. |
| 513 | """ |
| 514 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 515 | numTasks = len(self.runtaskentries) |
| 516 | weight = {} |
| 517 | deps_left = {} |
| 518 | task_done = {} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 519 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 520 | for tid in self.runtaskentries: |
| 521 | task_done[tid] = False |
| 522 | weight[tid] = 1 |
| 523 | deps_left[tid] = len(self.runtaskentries[tid].revdeps) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 524 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 525 | for tid in endpoints: |
| 526 | weight[tid] = 10 |
| 527 | task_done[tid] = True |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 528 | |
| 529 | while True: |
| 530 | next_points = [] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 531 | for tid in endpoints: |
| 532 | for revdep in self.runtaskentries[tid].depends: |
| 533 | weight[revdep] = weight[revdep] + weight[tid] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 534 | deps_left[revdep] = deps_left[revdep] - 1 |
| 535 | if deps_left[revdep] == 0: |
| 536 | next_points.append(revdep) |
| 537 | task_done[revdep] = True |
| 538 | endpoints = next_points |
| 539 | if len(next_points) == 0: |
| 540 | break |
| 541 | |
| 542 | # Circular dependency sanity check |
| 543 | problem_tasks = [] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 544 | for tid in self.runtaskentries: |
| 545 | if task_done[tid] is False or deps_left[tid] != 0: |
| 546 | problem_tasks.append(tid) |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 547 | logger.debug2("Task %s is not buildable", tid) |
| 548 | logger.debug2("(Complete marker was %s and the remaining dependency count was %s)\n", task_done[tid], deps_left[tid]) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 549 | self.runtaskentries[tid].weight = weight[tid] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 550 | |
| 551 | if problem_tasks: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 552 | message = "%s unbuildable tasks were found.\n" % len(problem_tasks) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 553 | message = message + "These are usually caused by circular dependencies and any circular dependency chains found will be printed below. Increase the debug level to see a list of unbuildable tasks.\n\n" |
| 554 | message = message + "Identifying dependency loops (this may take a short while)...\n" |
| 555 | logger.error(message) |
| 556 | |
| 557 | msgs = self.circular_depchains_handler(problem_tasks) |
| 558 | |
| 559 | message = "\n" |
| 560 | for msg in msgs: |
| 561 | message = message + msg |
| 562 | bb.msg.fatal("RunQueue", message) |
| 563 | |
| 564 | return weight |
| 565 | |
| 566 | def prepare(self): |
| 567 | """ |
| 568 | Turn a set of taskData into a RunQueue and compute data needed |
| 569 | to optimise the execution order. |
| 570 | """ |
| 571 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 572 | runq_build = {} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 573 | recursivetasks = {} |
| 574 | recursiveitasks = {} |
| 575 | recursivetasksselfref = set() |
| 576 | |
| 577 | taskData = self.taskData |
| 578 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 579 | found = False |
| 580 | for mc in self.taskData: |
| 581 | if len(taskData[mc].taskentries) > 0: |
| 582 | found = True |
| 583 | break |
| 584 | if not found: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 585 | # Nothing to do |
| 586 | return 0 |
| 587 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 588 | self.init_progress_reporter.start() |
| 589 | self.init_progress_reporter.next_stage() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 590 | |
| 591 | # Step A - Work out a list of tasks to run |
| 592 | # |
| 593 | # Taskdata gives us a list of possible providers for every build and run |
| 594 | # target ordered by priority. It also gives information on each of those |
| 595 | # providers. |
| 596 | # |
| 597 | # To create the actual list of tasks to execute we fix the list of |
| 598 | # providers and then resolve the dependencies into task IDs. This |
| 599 | # process is repeated for each type of dependency (tdepends, deptask, |
| 600 | # rdeptast, recrdeptask, idepends). |
| 601 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 602 | def add_build_dependencies(depids, tasknames, depends, mc): |
| 603 | for depname in depids: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 604 | # Won't be in build_targets if ASSUME_PROVIDED |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 605 | if depname not in taskData[mc].build_targets or not taskData[mc].build_targets[depname]: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 606 | continue |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 607 | depdata = taskData[mc].build_targets[depname][0] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 608 | if depdata is None: |
| 609 | continue |
| 610 | for taskname in tasknames: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 611 | t = depdata + ":" + taskname |
| 612 | if t in taskData[mc].taskentries: |
| 613 | depends.add(t) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 614 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 615 | def add_runtime_dependencies(depids, tasknames, depends, mc): |
| 616 | for depname in depids: |
| 617 | if depname not in taskData[mc].run_targets or not taskData[mc].run_targets[depname]: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 618 | continue |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 619 | depdata = taskData[mc].run_targets[depname][0] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 620 | if depdata is None: |
| 621 | continue |
| 622 | for taskname in tasknames: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 623 | t = depdata + ":" + taskname |
| 624 | if t in taskData[mc].taskentries: |
| 625 | depends.add(t) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 626 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 627 | def add_mc_dependencies(mc, tid): |
| 628 | mcdeps = taskData[mc].get_mcdepends() |
| 629 | for dep in mcdeps: |
| 630 | mcdependency = dep.split(':') |
| 631 | pn = mcdependency[3] |
| 632 | frommc = mcdependency[1] |
| 633 | mcdep = mcdependency[2] |
| 634 | deptask = mcdependency[4] |
| 635 | if mc == frommc: |
| 636 | fn = taskData[mcdep].build_targets[pn][0] |
| 637 | newdep = '%s:%s' % (fn,deptask) |
| 638 | taskData[mc].taskentries[tid].tdepends.append(newdep) |
| 639 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 640 | for mc in taskData: |
| 641 | for tid in taskData[mc].taskentries: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 642 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 643 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 644 | #runtid = build_tid(mc, fn, taskname) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 645 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 646 | #logger.debug2("Processing %s,%s:%s", mc, fn, taskname) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 647 | |
| 648 | depends = set() |
| 649 | task_deps = self.dataCaches[mc].task_deps[taskfn] |
| 650 | |
| 651 | self.runtaskentries[tid] = RunTaskEntry() |
| 652 | |
| 653 | if fn in taskData[mc].failed_fns: |
| 654 | continue |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 655 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 656 | # We add multiconfig dependencies before processing internal task deps (tdepends) |
| 657 | if 'mcdepends' in task_deps and taskname in task_deps['mcdepends']: |
| 658 | add_mc_dependencies(mc, tid) |
| 659 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 660 | # Resolve task internal dependencies |
| 661 | # |
| 662 | # e.g. addtask before X after Y |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 663 | for t in taskData[mc].taskentries[tid].tdepends: |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 664 | (depmc, depfn, deptaskname, _) = split_tid_mcfn(t) |
| 665 | depends.add(build_tid(depmc, depfn, deptaskname)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 666 | |
| 667 | # Resolve 'deptask' dependencies |
| 668 | # |
| 669 | # e.g. do_sometask[deptask] = "do_someothertask" |
| 670 | # (makes sure sometask runs after someothertask of all DEPENDS) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 671 | if 'deptask' in task_deps and taskname in task_deps['deptask']: |
| 672 | tasknames = task_deps['deptask'][taskname].split() |
| 673 | add_build_dependencies(taskData[mc].depids[taskfn], tasknames, depends, mc) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 674 | |
| 675 | # Resolve 'rdeptask' dependencies |
| 676 | # |
| 677 | # e.g. do_sometask[rdeptask] = "do_someothertask" |
| 678 | # (makes sure sometask runs after someothertask of all RDEPENDS) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 679 | if 'rdeptask' in task_deps and taskname in task_deps['rdeptask']: |
| 680 | tasknames = task_deps['rdeptask'][taskname].split() |
| 681 | add_runtime_dependencies(taskData[mc].rdepids[taskfn], tasknames, depends, mc) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 682 | |
| 683 | # Resolve inter-task dependencies |
| 684 | # |
| 685 | # e.g. do_sometask[depends] = "targetname:do_someothertask" |
| 686 | # (makes sure sometask runs after targetname's someothertask) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 687 | idepends = taskData[mc].taskentries[tid].idepends |
| 688 | for (depname, idependtask) in idepends: |
| 689 | if depname in taskData[mc].build_targets and taskData[mc].build_targets[depname] and not depname in taskData[mc].failed_deps: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 690 | # Won't be in build_targets if ASSUME_PROVIDED |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 691 | depdata = taskData[mc].build_targets[depname][0] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 692 | if depdata is not None: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 693 | t = depdata + ":" + idependtask |
| 694 | depends.add(t) |
| 695 | if t not in taskData[mc].taskentries: |
| 696 | bb.msg.fatal("RunQueue", "Task %s in %s depends upon non-existent task %s in %s" % (taskname, fn, idependtask, depdata)) |
| 697 | irdepends = taskData[mc].taskentries[tid].irdepends |
| 698 | for (depname, idependtask) in irdepends: |
| 699 | if depname in taskData[mc].run_targets: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 700 | # Won't be in run_targets if ASSUME_PROVIDED |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 701 | if not taskData[mc].run_targets[depname]: |
| 702 | continue |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 703 | depdata = taskData[mc].run_targets[depname][0] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 704 | if depdata is not None: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 705 | t = depdata + ":" + idependtask |
| 706 | depends.add(t) |
| 707 | if t not in taskData[mc].taskentries: |
| 708 | bb.msg.fatal("RunQueue", "Task %s in %s rdepends upon non-existent task %s in %s" % (taskname, fn, idependtask, depdata)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 709 | |
| 710 | # Resolve recursive 'recrdeptask' dependencies (Part A) |
| 711 | # |
| 712 | # e.g. do_sometask[recrdeptask] = "do_someothertask" |
| 713 | # (makes sure sometask runs after someothertask of all DEPENDS, RDEPENDS and intertask dependencies, recursively) |
| 714 | # We cover the recursive part of the dependencies below |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 715 | if 'recrdeptask' in task_deps and taskname in task_deps['recrdeptask']: |
| 716 | tasknames = task_deps['recrdeptask'][taskname].split() |
| 717 | recursivetasks[tid] = tasknames |
| 718 | add_build_dependencies(taskData[mc].depids[taskfn], tasknames, depends, mc) |
| 719 | add_runtime_dependencies(taskData[mc].rdepids[taskfn], tasknames, depends, mc) |
| 720 | if taskname in tasknames: |
| 721 | recursivetasksselfref.add(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 722 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 723 | if 'recideptask' in task_deps and taskname in task_deps['recideptask']: |
| 724 | recursiveitasks[tid] = [] |
| 725 | for t in task_deps['recideptask'][taskname].split(): |
| 726 | newdep = build_tid(mc, fn, t) |
| 727 | recursiveitasks[tid].append(newdep) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 728 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 729 | self.runtaskentries[tid].depends = depends |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 730 | # Remove all self references |
| 731 | self.runtaskentries[tid].depends.discard(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 732 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 733 | #self.dump_data() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 734 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 735 | self.init_progress_reporter.next_stage() |
| 736 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 737 | # Resolve recursive 'recrdeptask' dependencies (Part B) |
| 738 | # |
| 739 | # e.g. do_sometask[recrdeptask] = "do_someothertask" |
| 740 | # (makes sure sometask runs after someothertask of all DEPENDS, RDEPENDS and intertask dependencies, recursively) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 741 | # We need to do this separately since we need all of runtaskentries[*].depends to be complete before this is processed |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 742 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 743 | # Generating/interating recursive lists of dependencies is painful and potentially slow |
| 744 | # Precompute recursive task dependencies here by: |
| 745 | # a) create a temp list of reverse dependencies (revdeps) |
| 746 | # b) walk up the ends of the chains (when a given task no longer has dependencies i.e. len(deps) == 0) |
| 747 | # c) combine the total list of dependencies in cumulativedeps |
| 748 | # d) optimise by pre-truncating 'task' off the items in cumulativedeps (keeps items in sets lower) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 749 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 750 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 751 | revdeps = {} |
| 752 | deps = {} |
| 753 | cumulativedeps = {} |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 754 | for tid in self.runtaskentries: |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 755 | deps[tid] = set(self.runtaskentries[tid].depends) |
| 756 | revdeps[tid] = set() |
| 757 | cumulativedeps[tid] = set() |
| 758 | # Generate a temp list of reverse dependencies |
| 759 | for tid in self.runtaskentries: |
| 760 | for dep in self.runtaskentries[tid].depends: |
| 761 | revdeps[dep].add(tid) |
| 762 | # Find the dependency chain endpoints |
| 763 | endpoints = set() |
| 764 | for tid in self.runtaskentries: |
| 765 | if len(deps[tid]) == 0: |
| 766 | endpoints.add(tid) |
| 767 | # Iterate the chains collating dependencies |
| 768 | while endpoints: |
| 769 | next = set() |
| 770 | for tid in endpoints: |
| 771 | for dep in revdeps[tid]: |
| 772 | cumulativedeps[dep].add(fn_from_tid(tid)) |
| 773 | cumulativedeps[dep].update(cumulativedeps[tid]) |
| 774 | if tid in deps[dep]: |
| 775 | deps[dep].remove(tid) |
| 776 | if len(deps[dep]) == 0: |
| 777 | next.add(dep) |
| 778 | endpoints = next |
| 779 | #for tid in deps: |
| 780 | # if len(deps[tid]) != 0: |
| 781 | # bb.warn("Sanity test failure, dependencies left for %s (%s)" % (tid, deps[tid])) |
| 782 | |
| 783 | # Loop here since recrdeptasks can depend upon other recrdeptasks and we have to |
| 784 | # resolve these recursively until we aren't adding any further extra dependencies |
| 785 | extradeps = True |
| 786 | while extradeps: |
| 787 | extradeps = 0 |
| 788 | for tid in recursivetasks: |
| 789 | tasknames = recursivetasks[tid] |
| 790 | |
| 791 | totaldeps = set(self.runtaskentries[tid].depends) |
| 792 | if tid in recursiveitasks: |
| 793 | totaldeps.update(recursiveitasks[tid]) |
| 794 | for dep in recursiveitasks[tid]: |
| 795 | if dep not in self.runtaskentries: |
| 796 | continue |
| 797 | totaldeps.update(self.runtaskentries[dep].depends) |
| 798 | |
| 799 | deps = set() |
| 800 | for dep in totaldeps: |
| 801 | if dep in cumulativedeps: |
| 802 | deps.update(cumulativedeps[dep]) |
| 803 | |
| 804 | for t in deps: |
| 805 | for taskname in tasknames: |
| 806 | newtid = t + ":" + taskname |
| 807 | if newtid == tid: |
| 808 | continue |
| 809 | if newtid in self.runtaskentries and newtid not in self.runtaskentries[tid].depends: |
| 810 | extradeps += 1 |
| 811 | self.runtaskentries[tid].depends.add(newtid) |
| 812 | |
| 813 | # Handle recursive tasks which depend upon other recursive tasks |
| 814 | deps = set() |
| 815 | for dep in self.runtaskentries[tid].depends.intersection(recursivetasks): |
| 816 | deps.update(self.runtaskentries[dep].depends.difference(self.runtaskentries[tid].depends)) |
| 817 | for newtid in deps: |
| 818 | for taskname in tasknames: |
| 819 | if not newtid.endswith(":" + taskname): |
| 820 | continue |
| 821 | if newtid in self.runtaskentries: |
| 822 | extradeps += 1 |
| 823 | self.runtaskentries[tid].depends.add(newtid) |
| 824 | |
| 825 | bb.debug(1, "Added %s recursive dependencies in this loop" % extradeps) |
| 826 | |
| 827 | # Remove recrdeptask circular references so that do_a[recrdeptask] = "do_a do_b" can work |
| 828 | for tid in recursivetasksselfref: |
| 829 | self.runtaskentries[tid].depends.difference_update(recursivetasksselfref) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 830 | |
| 831 | self.init_progress_reporter.next_stage() |
| 832 | |
| 833 | #self.dump_data() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 834 | |
| 835 | # Step B - Mark all active tasks |
| 836 | # |
| 837 | # Start with the tasks we were asked to run and mark all dependencies |
| 838 | # as active too. If the task is to be 'forced', clear its stamp. Once |
| 839 | # all active tasks are marked, prune the ones we don't need. |
| 840 | |
| 841 | logger.verbose("Marking Active Tasks") |
| 842 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 843 | def mark_active(tid, depth): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 844 | """ |
| 845 | Mark an item as active along with its depends |
| 846 | (calls itself recursively) |
| 847 | """ |
| 848 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 849 | if tid in runq_build: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 850 | return |
| 851 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 852 | runq_build[tid] = 1 |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 853 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 854 | depends = self.runtaskentries[tid].depends |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 855 | for depend in depends: |
| 856 | mark_active(depend, depth+1) |
| 857 | |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 858 | def invalidate_task(tid, error_nostamp): |
| 859 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 860 | taskdep = self.dataCaches[mc].task_deps[taskfn] |
| 861 | if fn + ":" + taskname not in taskData[mc].taskentries: |
| 862 | logger.warning("Task %s does not exist, invalidating this task will have no effect" % taskname) |
| 863 | if 'nostamp' in taskdep and taskname in taskdep['nostamp']: |
| 864 | if error_nostamp: |
| 865 | bb.fatal("Task %s is marked nostamp, cannot invalidate this task" % taskname) |
| 866 | else: |
| 867 | bb.debug(1, "Task %s is marked nostamp, cannot invalidate this task" % taskname) |
| 868 | else: |
| 869 | logger.verbose("Invalidate task %s, %s", taskname, fn) |
| 870 | bb.parse.siggen.invalidate_task(taskname, self.dataCaches[mc], taskfn) |
| 871 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 872 | self.target_tids = [] |
| 873 | for (mc, target, task, fn) in self.targets: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 874 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 875 | if target not in taskData[mc].build_targets or not taskData[mc].build_targets[target]: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 876 | continue |
| 877 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 878 | if target in taskData[mc].failed_deps: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 879 | continue |
| 880 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 881 | parents = False |
| 882 | if task.endswith('-'): |
| 883 | parents = True |
| 884 | task = task[:-1] |
| 885 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 886 | if fn in taskData[mc].failed_fns: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 887 | continue |
| 888 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 889 | # fn already has mc prefix |
| 890 | tid = fn + ":" + task |
| 891 | self.target_tids.append(tid) |
| 892 | if tid not in taskData[mc].taskentries: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 893 | import difflib |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 894 | tasks = [] |
| 895 | for x in taskData[mc].taskentries: |
| 896 | if x.startswith(fn + ":"): |
| 897 | tasks.append(taskname_from_tid(x)) |
| 898 | close_matches = difflib.get_close_matches(task, tasks, cutoff=0.7) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 899 | if close_matches: |
| 900 | extra = ". Close matches:\n %s" % "\n ".join(close_matches) |
| 901 | else: |
| 902 | extra = "" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 903 | bb.msg.fatal("RunQueue", "Task %s does not exist for target %s (%s)%s" % (task, target, tid, extra)) |
| 904 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 905 | # For tasks called "XXXX-", ony run their dependencies |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 906 | if parents: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 907 | for i in self.runtaskentries[tid].depends: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 908 | mark_active(i, 1) |
| 909 | else: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 910 | mark_active(tid, 1) |
| 911 | |
| 912 | self.init_progress_reporter.next_stage() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 913 | |
| 914 | # Step C - Prune all inactive tasks |
| 915 | # |
| 916 | # Once all active tasks are marked, prune the ones we don't need. |
| 917 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 918 | delcount = {} |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 919 | for tid in list(self.runtaskentries.keys()): |
| 920 | if tid not in runq_build: |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 921 | delcount[tid] = self.runtaskentries[tid] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 922 | del self.runtaskentries[tid] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 923 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 924 | # Handle --runall |
| 925 | if self.cooker.configuration.runall: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 926 | # re-run the mark_active and then drop unused tasks from new list |
| 927 | runq_build = {} |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 928 | |
| 929 | for task in self.cooker.configuration.runall: |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 930 | if not task.startswith("do_"): |
| 931 | task = "do_{0}".format(task) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 932 | runall_tids = set() |
| 933 | for tid in list(self.runtaskentries): |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 934 | wanttid = "{0}:{1}".format(fn_from_tid(tid), task) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 935 | if wanttid in delcount: |
| 936 | self.runtaskentries[wanttid] = delcount[wanttid] |
| 937 | if wanttid in self.runtaskentries: |
| 938 | runall_tids.add(wanttid) |
| 939 | |
| 940 | for tid in list(runall_tids): |
| 941 | mark_active(tid,1) |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 942 | if self.cooker.configuration.force: |
| 943 | invalidate_task(tid, False) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 944 | |
| 945 | for tid in list(self.runtaskentries.keys()): |
| 946 | if tid not in runq_build: |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 947 | delcount[tid] = self.runtaskentries[tid] |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 948 | del self.runtaskentries[tid] |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 949 | |
| 950 | if len(self.runtaskentries) == 0: |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 951 | bb.msg.fatal("RunQueue", "Could not find any tasks with the tasknames %s to run within the recipes of the taskgraphs of the targets %s" % (str(self.cooker.configuration.runall), str(self.targets))) |
| 952 | |
| 953 | self.init_progress_reporter.next_stage() |
| 954 | |
| 955 | # Handle runonly |
| 956 | if self.cooker.configuration.runonly: |
| 957 | # re-run the mark_active and then drop unused tasks from new list |
| 958 | runq_build = {} |
| 959 | |
| 960 | for task in self.cooker.configuration.runonly: |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 961 | if not task.startswith("do_"): |
| 962 | task = "do_{0}".format(task) |
| 963 | runonly_tids = { k: v for k, v in self.runtaskentries.items() if taskname_from_tid(k) == task } |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 964 | |
| 965 | for tid in list(runonly_tids): |
| 966 | mark_active(tid,1) |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 967 | if self.cooker.configuration.force: |
| 968 | invalidate_task(tid, False) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 969 | |
| 970 | for tid in list(self.runtaskentries.keys()): |
| 971 | if tid not in runq_build: |
| 972 | delcount[tid] = self.runtaskentries[tid] |
| 973 | del self.runtaskentries[tid] |
| 974 | |
| 975 | if len(self.runtaskentries) == 0: |
| 976 | bb.msg.fatal("RunQueue", "Could not find any tasks with the tasknames %s to run within the taskgraphs of the targets %s" % (str(self.cooker.configuration.runonly), str(self.targets))) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 977 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 978 | # |
| 979 | # Step D - Sanity checks and computation |
| 980 | # |
| 981 | |
| 982 | # Check to make sure we still have tasks to run |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 983 | if len(self.runtaskentries) == 0: |
| 984 | if not taskData[''].abort: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 985 | bb.msg.fatal("RunQueue", "All buildable tasks have been run but the build is incomplete (--continue mode). Errors for the tasks that failed will have been printed above.") |
| 986 | else: |
| 987 | bb.msg.fatal("RunQueue", "No active tasks and not in --continue mode?! Please report this bug.") |
| 988 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 989 | logger.verbose("Pruned %s inactive tasks, %s left", len(delcount), len(self.runtaskentries)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 990 | |
| 991 | logger.verbose("Assign Weightings") |
| 992 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 993 | self.init_progress_reporter.next_stage() |
| 994 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 995 | # Generate a list of reverse dependencies to ease future calculations |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 996 | for tid in self.runtaskentries: |
| 997 | for dep in self.runtaskentries[tid].depends: |
| 998 | self.runtaskentries[dep].revdeps.add(tid) |
| 999 | |
| 1000 | self.init_progress_reporter.next_stage() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1001 | |
| 1002 | # Identify tasks at the end of dependency chains |
| 1003 | # Error on circular dependency loops (length two) |
| 1004 | endpoints = [] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1005 | for tid in self.runtaskentries: |
| 1006 | revdeps = self.runtaskentries[tid].revdeps |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1007 | if len(revdeps) == 0: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1008 | endpoints.append(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1009 | for dep in revdeps: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1010 | if dep in self.runtaskentries[tid].depends: |
| 1011 | bb.msg.fatal("RunQueue", "Task %s has circular dependency on %s" % (tid, dep)) |
| 1012 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1013 | |
| 1014 | logger.verbose("Compute totals (have %s endpoint(s))", len(endpoints)) |
| 1015 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1016 | self.init_progress_reporter.next_stage() |
| 1017 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1018 | # Calculate task weights |
| 1019 | # Check of higher length circular dependencies |
| 1020 | self.runq_weight = self.calculate_task_weights(endpoints) |
| 1021 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1022 | self.init_progress_reporter.next_stage() |
| 1023 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1024 | # Sanity Check - Check for multiple tasks building the same provider |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1025 | for mc in self.dataCaches: |
| 1026 | prov_list = {} |
| 1027 | seen_fn = [] |
| 1028 | for tid in self.runtaskentries: |
| 1029 | (tidmc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 1030 | if taskfn in seen_fn: |
| 1031 | continue |
| 1032 | if mc != tidmc: |
| 1033 | continue |
| 1034 | seen_fn.append(taskfn) |
| 1035 | for prov in self.dataCaches[mc].fn_provides[taskfn]: |
| 1036 | if prov not in prov_list: |
| 1037 | prov_list[prov] = [taskfn] |
| 1038 | elif taskfn not in prov_list[prov]: |
| 1039 | prov_list[prov].append(taskfn) |
| 1040 | for prov in prov_list: |
| 1041 | if len(prov_list[prov]) < 2: |
| 1042 | continue |
| 1043 | if prov in self.multi_provider_whitelist: |
| 1044 | continue |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1045 | seen_pn = [] |
| 1046 | # If two versions of the same PN are being built its fatal, we don't support it. |
| 1047 | for fn in prov_list[prov]: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1048 | pn = self.dataCaches[mc].pkg_fn[fn] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1049 | if pn not in seen_pn: |
| 1050 | seen_pn.append(pn) |
| 1051 | else: |
| 1052 | bb.fatal("Multiple versions of %s are due to be built (%s). Only one version of a given PN should be built in any given build. You likely need to set PREFERRED_VERSION_%s to select the correct version or don't depend on multiple versions." % (pn, " ".join(prov_list[prov]), pn)) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1053 | msg = "Multiple .bb files are due to be built which each provide %s:\n %s" % (prov, "\n ".join(prov_list[prov])) |
| 1054 | # |
| 1055 | # Construct a list of things which uniquely depend on each provider |
| 1056 | # since this may help the user figure out which dependency is triggering this warning |
| 1057 | # |
| 1058 | msg += "\nA list of tasks depending on these providers is shown and may help explain where the dependency comes from." |
| 1059 | deplist = {} |
| 1060 | commondeps = None |
| 1061 | for provfn in prov_list[prov]: |
| 1062 | deps = set() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1063 | for tid in self.runtaskentries: |
| 1064 | fn = fn_from_tid(tid) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1065 | if fn != provfn: |
| 1066 | continue |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1067 | for dep in self.runtaskentries[tid].revdeps: |
| 1068 | fn = fn_from_tid(dep) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1069 | if fn == provfn: |
| 1070 | continue |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1071 | deps.add(dep) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1072 | if not commondeps: |
| 1073 | commondeps = set(deps) |
| 1074 | else: |
| 1075 | commondeps &= deps |
| 1076 | deplist[provfn] = deps |
| 1077 | for provfn in deplist: |
| 1078 | msg += "\n%s has unique dependees:\n %s" % (provfn, "\n ".join(deplist[provfn] - commondeps)) |
| 1079 | # |
| 1080 | # Construct a list of provides and runtime providers for each recipe |
| 1081 | # (rprovides has to cover RPROVIDES, PACKAGES, PACKAGES_DYNAMIC) |
| 1082 | # |
| 1083 | msg += "\nIt could be that one recipe provides something the other doesn't and should. The following provider and runtime provider differences may be helpful." |
| 1084 | provide_results = {} |
| 1085 | rprovide_results = {} |
| 1086 | commonprovs = None |
| 1087 | commonrprovs = None |
| 1088 | for provfn in prov_list[prov]: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1089 | provides = set(self.dataCaches[mc].fn_provides[provfn]) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1090 | rprovides = set() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1091 | for rprovide in self.dataCaches[mc].rproviders: |
| 1092 | if provfn in self.dataCaches[mc].rproviders[rprovide]: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1093 | rprovides.add(rprovide) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1094 | for package in self.dataCaches[mc].packages: |
| 1095 | if provfn in self.dataCaches[mc].packages[package]: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1096 | rprovides.add(package) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1097 | for package in self.dataCaches[mc].packages_dynamic: |
| 1098 | if provfn in self.dataCaches[mc].packages_dynamic[package]: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1099 | rprovides.add(package) |
| 1100 | if not commonprovs: |
| 1101 | commonprovs = set(provides) |
| 1102 | else: |
| 1103 | commonprovs &= provides |
| 1104 | provide_results[provfn] = provides |
| 1105 | if not commonrprovs: |
| 1106 | commonrprovs = set(rprovides) |
| 1107 | else: |
| 1108 | commonrprovs &= rprovides |
| 1109 | rprovide_results[provfn] = rprovides |
| 1110 | #msg += "\nCommon provides:\n %s" % ("\n ".join(commonprovs)) |
| 1111 | #msg += "\nCommon rprovides:\n %s" % ("\n ".join(commonrprovs)) |
| 1112 | for provfn in prov_list[prov]: |
| 1113 | msg += "\n%s has unique provides:\n %s" % (provfn, "\n ".join(provide_results[provfn] - commonprovs)) |
| 1114 | msg += "\n%s has unique rprovides:\n %s" % (provfn, "\n ".join(rprovide_results[provfn] - commonrprovs)) |
| 1115 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1116 | if self.warn_multi_bb: |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1117 | logger.verbnote(msg) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1118 | else: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1119 | logger.error(msg) |
| 1120 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1121 | self.init_progress_reporter.next_stage() |
| 1122 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1123 | # Create a whitelist usable by the stamp checks |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1124 | self.stampfnwhitelist = {} |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1125 | for mc in self.taskData: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1126 | self.stampfnwhitelist[mc] = [] |
| 1127 | for entry in self.stampwhitelist.split(): |
| 1128 | if entry not in self.taskData[mc].build_targets: |
| 1129 | continue |
| 1130 | fn = self.taskData.build_targets[entry][0] |
| 1131 | self.stampfnwhitelist[mc].append(fn) |
| 1132 | |
| 1133 | self.init_progress_reporter.next_stage() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1134 | |
| 1135 | # Iterate over the task list looking for tasks with a 'setscene' function |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1136 | self.runq_setscene_tids = set() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1137 | if not self.cooker.configuration.nosetscene: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1138 | for tid in self.runtaskentries: |
| 1139 | (mc, fn, taskname, _) = split_tid_mcfn(tid) |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 1140 | setscenetid = tid + "_setscene" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1141 | if setscenetid not in taskData[mc].taskentries: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1142 | continue |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1143 | self.runq_setscene_tids.add(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1144 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1145 | self.init_progress_reporter.next_stage() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1146 | |
| 1147 | # Invalidate task if force mode active |
| 1148 | if self.cooker.configuration.force: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1149 | for tid in self.target_tids: |
| 1150 | invalidate_task(tid, False) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1151 | |
| 1152 | # Invalidate task if invalidate mode active |
| 1153 | if self.cooker.configuration.invalidate_stamp: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1154 | for tid in self.target_tids: |
| 1155 | fn = fn_from_tid(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1156 | for st in self.cooker.configuration.invalidate_stamp.split(','): |
| 1157 | if not st.startswith("do_"): |
| 1158 | st = "do_%s" % st |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1159 | invalidate_task(fn + ":" + st, True) |
| 1160 | |
| 1161 | self.init_progress_reporter.next_stage() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1162 | |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 1163 | # Create and print to the logs a virtual/xxxx -> PN (fn) table |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1164 | for mc in taskData: |
| 1165 | virtmap = taskData[mc].get_providermap(prefix="virtual/") |
| 1166 | virtpnmap = {} |
| 1167 | for v in virtmap: |
| 1168 | virtpnmap[v] = self.dataCaches[mc].pkg_fn[virtmap[v]] |
| 1169 | bb.debug(2, "%s resolved to: %s (%s)" % (v, virtpnmap[v], virtmap[v])) |
| 1170 | if hasattr(bb.parse.siggen, "tasks_resolved"): |
| 1171 | bb.parse.siggen.tasks_resolved(virtmap, virtpnmap, self.dataCaches[mc]) |
| 1172 | |
| 1173 | self.init_progress_reporter.next_stage() |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 1174 | |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 1175 | bb.parse.siggen.set_setscene_tasks(self.runq_setscene_tids) |
| 1176 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1177 | # Iterate over the task list and call into the siggen code |
| 1178 | dealtwith = set() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1179 | todeal = set(self.runtaskentries) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1180 | while len(todeal) > 0: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1181 | for tid in todeal.copy(): |
| 1182 | if len(self.runtaskentries[tid].depends - dealtwith) == 0: |
| 1183 | dealtwith.add(tid) |
| 1184 | todeal.remove(tid) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1185 | self.prepare_task_hash(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1186 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1187 | bb.parse.siggen.writeout_file_checksum_cache() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1188 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1189 | #self.dump_data() |
| 1190 | return len(self.runtaskentries) |
| 1191 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1192 | def prepare_task_hash(self, tid): |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 1193 | dc = bb.parse.siggen.get_data_caches(self.dataCaches, mc_from_tid(tid)) |
| 1194 | bb.parse.siggen.prep_taskhash(tid, self.runtaskentries[tid].depends, dc) |
| 1195 | self.runtaskentries[tid].hash = bb.parse.siggen.get_taskhash(tid, self.runtaskentries[tid].depends, dc) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1196 | self.runtaskentries[tid].unihash = bb.parse.siggen.get_unihash(tid) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1197 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1198 | def dump_data(self): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1199 | """ |
| 1200 | Dump some debug information on the internal data structures |
| 1201 | """ |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1202 | logger.debug3("run_tasks:") |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1203 | for tid in self.runtaskentries: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1204 | logger.debug3(" %s: %s Deps %s RevDeps %s", tid, |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1205 | self.runtaskentries[tid].weight, |
| 1206 | self.runtaskentries[tid].depends, |
| 1207 | self.runtaskentries[tid].revdeps) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1208 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1209 | class RunQueueWorker(): |
| 1210 | def __init__(self, process, pipe): |
| 1211 | self.process = process |
| 1212 | self.pipe = pipe |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1213 | |
| 1214 | class RunQueue: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1215 | def __init__(self, cooker, cfgData, dataCaches, taskData, targets): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1216 | |
| 1217 | self.cooker = cooker |
| 1218 | self.cfgData = cfgData |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1219 | self.rqdata = RunQueueData(self, cooker, cfgData, dataCaches, taskData, targets) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1220 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1221 | self.stamppolicy = cfgData.getVar("BB_STAMP_POLICY") or "perfile" |
| 1222 | self.hashvalidate = cfgData.getVar("BB_HASHCHECK_FUNCTION") or None |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1223 | self.depvalidate = cfgData.getVar("BB_SETSCENE_DEPVALID") or None |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1224 | |
| 1225 | self.state = runQueuePrepare |
| 1226 | |
| 1227 | # For disk space monitor |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1228 | # Invoked at regular time intervals via the bitbake heartbeat event |
| 1229 | # while the build is running. We generate a unique name for the handler |
| 1230 | # here, just in case that there ever is more than one RunQueue instance, |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1231 | # start the handler when reaching runQueueSceneInit, and stop it when |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1232 | # done with the build. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1233 | self.dm = monitordisk.diskMonitor(cfgData) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1234 | self.dm_event_handler_name = '_bb_diskmonitor_' + str(id(self)) |
| 1235 | self.dm_event_handler_registered = False |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1236 | self.rqexe = None |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1237 | self.worker = {} |
| 1238 | self.fakeworker = {} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1239 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1240 | def _start_worker(self, mc, fakeroot = False, rqexec = None): |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1241 | logger.debug("Starting bitbake-worker") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1242 | magic = "decafbad" |
| 1243 | if self.cooker.configuration.profile: |
| 1244 | magic = "decafbadbad" |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1245 | fakerootlogs = None |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1246 | if fakeroot: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1247 | magic = magic + "beef" |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 1248 | mcdata = self.cooker.databuilder.mcdata[mc] |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1249 | fakerootcmd = shlex.split(mcdata.getVar("FAKEROOTCMD")) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1250 | fakerootenv = (mcdata.getVar("FAKEROOTBASEENV") or "").split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1251 | env = os.environ.copy() |
| 1252 | for key, value in (var.split('=') for var in fakerootenv): |
| 1253 | env[key] = value |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1254 | worker = subprocess.Popen(fakerootcmd + ["bitbake-worker", magic], stdout=subprocess.PIPE, stdin=subprocess.PIPE, env=env) |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1255 | fakerootlogs = self.rqdata.dataCaches[mc].fakerootlogs |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1256 | else: |
| 1257 | worker = subprocess.Popen(["bitbake-worker", magic], stdout=subprocess.PIPE, stdin=subprocess.PIPE) |
| 1258 | bb.utils.nonblockingfd(worker.stdout) |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1259 | workerpipe = runQueuePipe(worker.stdout, None, self.cfgData, self, rqexec, fakerootlogs=fakerootlogs) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1260 | |
| 1261 | workerdata = { |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1262 | "taskdeps" : self.rqdata.dataCaches[mc].task_deps, |
| 1263 | "fakerootenv" : self.rqdata.dataCaches[mc].fakerootenv, |
| 1264 | "fakerootdirs" : self.rqdata.dataCaches[mc].fakerootdirs, |
| 1265 | "fakerootnoenv" : self.rqdata.dataCaches[mc].fakerootnoenv, |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1266 | "sigdata" : bb.parse.siggen.get_taskdata(), |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1267 | "logdefaultlevel" : bb.msg.loggerDefaultLogLevel, |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 1268 | "build_verbose_shell" : self.cooker.configuration.build_verbose_shell, |
| 1269 | "build_verbose_stdout" : self.cooker.configuration.build_verbose_stdout, |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1270 | "logdefaultdomain" : bb.msg.loggerDefaultDomains, |
| 1271 | "prhost" : self.cooker.prhost, |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1272 | "buildname" : self.cfgData.getVar("BUILDNAME"), |
| 1273 | "date" : self.cfgData.getVar("DATE"), |
| 1274 | "time" : self.cfgData.getVar("TIME"), |
Brad Bishop | a34c030 | 2019-09-23 22:34:48 -0400 | [diff] [blame] | 1275 | "hashservaddr" : self.cooker.hashservaddr, |
Andrew Geissler | 9b4d8b0 | 2021-02-19 12:26:16 -0600 | [diff] [blame] | 1276 | "umask" : self.cfgData.getVar("BB_DEFAULT_UMASK"), |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1277 | } |
| 1278 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1279 | worker.stdin.write(b"<cookerconfig>" + pickle.dumps(self.cooker.configuration) + b"</cookerconfig>") |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1280 | worker.stdin.write(b"<extraconfigdata>" + pickle.dumps(self.cooker.extraconfigdata) + b"</extraconfigdata>") |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1281 | worker.stdin.write(b"<workerdata>" + pickle.dumps(workerdata) + b"</workerdata>") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1282 | worker.stdin.flush() |
| 1283 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1284 | return RunQueueWorker(worker, workerpipe) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1285 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1286 | def _teardown_worker(self, worker): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1287 | if not worker: |
| 1288 | return |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1289 | logger.debug("Teardown for bitbake-worker") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1290 | try: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1291 | worker.process.stdin.write(b"<quit></quit>") |
| 1292 | worker.process.stdin.flush() |
| 1293 | worker.process.stdin.close() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1294 | except IOError: |
| 1295 | pass |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1296 | while worker.process.returncode is None: |
| 1297 | worker.pipe.read() |
| 1298 | worker.process.poll() |
| 1299 | while worker.pipe.read(): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1300 | continue |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1301 | worker.pipe.close() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1302 | |
| 1303 | def start_worker(self): |
| 1304 | if self.worker: |
| 1305 | self.teardown_workers() |
| 1306 | self.teardown = False |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1307 | for mc in self.rqdata.dataCaches: |
| 1308 | self.worker[mc] = self._start_worker(mc) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1309 | |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 1310 | def start_fakeworker(self, rqexec, mc): |
| 1311 | if not mc in self.fakeworker: |
| 1312 | self.fakeworker[mc] = self._start_worker(mc, True, rqexec) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1313 | |
| 1314 | def teardown_workers(self): |
| 1315 | self.teardown = True |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1316 | for mc in self.worker: |
| 1317 | self._teardown_worker(self.worker[mc]) |
| 1318 | self.worker = {} |
| 1319 | for mc in self.fakeworker: |
| 1320 | self._teardown_worker(self.fakeworker[mc]) |
| 1321 | self.fakeworker = {} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1322 | |
| 1323 | def read_workers(self): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1324 | for mc in self.worker: |
| 1325 | self.worker[mc].pipe.read() |
| 1326 | for mc in self.fakeworker: |
| 1327 | self.fakeworker[mc].pipe.read() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1328 | |
| 1329 | def active_fds(self): |
| 1330 | fds = [] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1331 | for mc in self.worker: |
| 1332 | fds.append(self.worker[mc].pipe.input) |
| 1333 | for mc in self.fakeworker: |
| 1334 | fds.append(self.fakeworker[mc].pipe.input) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1335 | return fds |
| 1336 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1337 | def check_stamp_task(self, tid, taskname = None, recurse = False, cache = None): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1338 | def get_timestamp(f): |
| 1339 | try: |
| 1340 | if not os.access(f, os.F_OK): |
| 1341 | return None |
| 1342 | return os.stat(f)[stat.ST_MTIME] |
| 1343 | except: |
| 1344 | return None |
| 1345 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1346 | (mc, fn, tn, taskfn) = split_tid_mcfn(tid) |
| 1347 | if taskname is None: |
| 1348 | taskname = tn |
| 1349 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1350 | if self.stamppolicy == "perfile": |
| 1351 | fulldeptree = False |
| 1352 | else: |
| 1353 | fulldeptree = True |
| 1354 | stampwhitelist = [] |
| 1355 | if self.stamppolicy == "whitelist": |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1356 | stampwhitelist = self.rqdata.stampfnwhitelist[mc] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1357 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1358 | stampfile = bb.build.stampfile(taskname, self.rqdata.dataCaches[mc], taskfn) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1359 | |
| 1360 | # If the stamp is missing, it's not current |
| 1361 | if not os.access(stampfile, os.F_OK): |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1362 | logger.debug2("Stampfile %s not available", stampfile) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1363 | return False |
| 1364 | # If it's a 'nostamp' task, it's not current |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1365 | taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1366 | if 'nostamp' in taskdep and taskname in taskdep['nostamp']: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1367 | logger.debug2("%s.%s is nostamp\n", fn, taskname) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1368 | return False |
| 1369 | |
| 1370 | if taskname != "do_setscene" and taskname.endswith("_setscene"): |
| 1371 | return True |
| 1372 | |
| 1373 | if cache is None: |
| 1374 | cache = {} |
| 1375 | |
| 1376 | iscurrent = True |
| 1377 | t1 = get_timestamp(stampfile) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1378 | for dep in self.rqdata.runtaskentries[tid].depends: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1379 | if iscurrent: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1380 | (mc2, fn2, taskname2, taskfn2) = split_tid_mcfn(dep) |
| 1381 | stampfile2 = bb.build.stampfile(taskname2, self.rqdata.dataCaches[mc2], taskfn2) |
| 1382 | stampfile3 = bb.build.stampfile(taskname2 + "_setscene", self.rqdata.dataCaches[mc2], taskfn2) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1383 | t2 = get_timestamp(stampfile2) |
| 1384 | t3 = get_timestamp(stampfile3) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1385 | if t3 and not t2: |
| 1386 | continue |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1387 | if t3 and t3 > t2: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1388 | continue |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1389 | if fn == fn2 or (fulldeptree and fn2 not in stampwhitelist): |
| 1390 | if not t2: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1391 | logger.debug2('Stampfile %s does not exist', stampfile2) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1392 | iscurrent = False |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1393 | break |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1394 | if t1 < t2: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1395 | logger.debug2('Stampfile %s < %s', stampfile, stampfile2) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1396 | iscurrent = False |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1397 | break |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1398 | if recurse and iscurrent: |
| 1399 | if dep in cache: |
| 1400 | iscurrent = cache[dep] |
| 1401 | if not iscurrent: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1402 | logger.debug2('Stampfile for dependency %s:%s invalid (cached)' % (fn2, taskname2)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1403 | else: |
| 1404 | iscurrent = self.check_stamp_task(dep, recurse=True, cache=cache) |
| 1405 | cache[dep] = iscurrent |
| 1406 | if recurse: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1407 | cache[tid] = iscurrent |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1408 | return iscurrent |
| 1409 | |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 1410 | def validate_hashes(self, tocheck, data, currentcount=0, siginfo=False, summary=True): |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1411 | valid = set() |
| 1412 | if self.hashvalidate: |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1413 | sq_data = {} |
| 1414 | sq_data['hash'] = {} |
| 1415 | sq_data['hashfn'] = {} |
| 1416 | sq_data['unihash'] = {} |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1417 | for tid in tocheck: |
| 1418 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1419 | sq_data['hash'][tid] = self.rqdata.runtaskentries[tid].hash |
| 1420 | sq_data['hashfn'][tid] = self.rqdata.dataCaches[mc].hashfn[taskfn] |
| 1421 | sq_data['unihash'][tid] = self.rqdata.runtaskentries[tid].unihash |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1422 | |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 1423 | valid = self.validate_hash(sq_data, data, siginfo, currentcount, summary) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1424 | |
| 1425 | return valid |
| 1426 | |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 1427 | def validate_hash(self, sq_data, d, siginfo, currentcount, summary): |
| 1428 | locs = {"sq_data" : sq_data, "d" : d, "siginfo" : siginfo, "currentcount" : currentcount, "summary" : summary} |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1429 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1430 | # Metadata has **kwargs so args can be added, sq_data can also gain new fields |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 1431 | call = self.hashvalidate + "(sq_data, d, siginfo=siginfo, currentcount=currentcount, summary=summary)" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1432 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1433 | return bb.utils.better_eval(call, locs) |
| 1434 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1435 | def _execute_runqueue(self): |
| 1436 | """ |
| 1437 | Run the tasks in a queue prepared by rqdata.prepare() |
| 1438 | Upon failure, optionally try to recover the build using any alternate providers |
| 1439 | (if the abort on failure configuration option isn't set) |
| 1440 | """ |
| 1441 | |
| 1442 | retval = True |
| 1443 | |
| 1444 | if self.state is runQueuePrepare: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1445 | # NOTE: if you add, remove or significantly refactor the stages of this |
| 1446 | # process then you should recalculate the weightings here. This is quite |
| 1447 | # easy to do - just change the next line temporarily to pass debug=True as |
| 1448 | # the last parameter and you'll get a printout of the weightings as well |
| 1449 | # as a map to the lines where next_stage() was called. Of course this isn't |
| 1450 | # critical, but it helps to keep the progress reporting accurate. |
| 1451 | self.rqdata.init_progress_reporter = bb.progress.MultiStageProcessProgressReporter(self.cooker.data, |
| 1452 | "Initialising tasks", |
| 1453 | [43, 967, 4, 3, 1, 5, 3, 7, 13, 1, 2, 1, 1, 246, 35, 1, 38, 1, 35, 2, 338, 204, 142, 3, 3, 37, 244]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1454 | if self.rqdata.prepare() == 0: |
| 1455 | self.state = runQueueComplete |
| 1456 | else: |
| 1457 | self.state = runQueueSceneInit |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 1458 | bb.parse.siggen.save_unitaskhashes() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1459 | |
| 1460 | if self.state is runQueueSceneInit: |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1461 | self.rqdata.init_progress_reporter.next_stage() |
| 1462 | |
| 1463 | # we are ready to run, emit dependency info to any UI or class which |
| 1464 | # needs it |
| 1465 | depgraph = self.cooker.buildDependTree(self, self.rqdata.taskData) |
| 1466 | self.rqdata.init_progress_reporter.next_stage() |
| 1467 | bb.event.fire(bb.event.DepTreeGenerated(depgraph), self.cooker.data) |
| 1468 | |
Brad Bishop | e2d5b61 | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 1469 | if not self.dm_event_handler_registered: |
| 1470 | res = bb.event.register(self.dm_event_handler_name, |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1471 | lambda x: self.dm.check(self) if self.state in [runQueueRunning, runQueueCleanUp] else False, |
Andrew Geissler | 9b4d8b0 | 2021-02-19 12:26:16 -0600 | [diff] [blame] | 1472 | ('bb.event.HeartbeatEvent',), data=self.cfgData) |
Brad Bishop | e2d5b61 | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 1473 | self.dm_event_handler_registered = True |
| 1474 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1475 | dump = self.cooker.configuration.dump_signatures |
| 1476 | if dump: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1477 | self.rqdata.init_progress_reporter.finish() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1478 | if 'printdiff' in dump: |
| 1479 | invalidtasks = self.print_diffscenetasks() |
| 1480 | self.dump_signatures(dump) |
| 1481 | if 'printdiff' in dump: |
| 1482 | self.write_diffscenetasks(invalidtasks) |
| 1483 | self.state = runQueueComplete |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1484 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1485 | if self.state is runQueueSceneInit: |
| 1486 | self.rqdata.init_progress_reporter.next_stage() |
| 1487 | self.start_worker() |
| 1488 | self.rqdata.init_progress_reporter.next_stage() |
| 1489 | self.rqexe = RunQueueExecute(self) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1490 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1491 | # If we don't have any setscene functions, skip execution |
| 1492 | if len(self.rqdata.runq_setscene_tids) == 0: |
| 1493 | logger.info('No setscene tasks') |
| 1494 | for tid in self.rqdata.runtaskentries: |
| 1495 | if len(self.rqdata.runtaskentries[tid].depends) == 0: |
| 1496 | self.rqexe.setbuildable(tid) |
| 1497 | self.rqexe.tasks_notcovered.add(tid) |
| 1498 | self.rqexe.sqdone = True |
| 1499 | logger.info('Executing Tasks') |
| 1500 | self.state = runQueueRunning |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1501 | |
| 1502 | if self.state is runQueueRunning: |
| 1503 | retval = self.rqexe.execute() |
| 1504 | |
| 1505 | if self.state is runQueueCleanUp: |
| 1506 | retval = self.rqexe.finish() |
| 1507 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1508 | build_done = self.state is runQueueComplete or self.state is runQueueFailed |
| 1509 | |
| 1510 | if build_done and self.dm_event_handler_registered: |
Andrew Geissler | 9b4d8b0 | 2021-02-19 12:26:16 -0600 | [diff] [blame] | 1511 | bb.event.remove(self.dm_event_handler_name, None, data=self.cfgData) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1512 | self.dm_event_handler_registered = False |
| 1513 | |
| 1514 | if build_done and self.rqexe: |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1515 | bb.parse.siggen.save_unitaskhashes() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1516 | self.teardown_workers() |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1517 | if self.rqexe: |
| 1518 | if self.rqexe.stats.failed: |
| 1519 | logger.info("Tasks Summary: Attempted %d tasks of which %d didn't need to be rerun and %d failed.", self.rqexe.stats.completed + self.rqexe.stats.failed, self.rqexe.stats.skipped, self.rqexe.stats.failed) |
| 1520 | else: |
| 1521 | # Let's avoid the word "failed" if nothing actually did |
| 1522 | logger.info("Tasks Summary: Attempted %d tasks of which %d didn't need to be rerun and all succeeded.", self.rqexe.stats.completed, self.rqexe.stats.skipped) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1523 | |
| 1524 | if self.state is runQueueFailed: |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1525 | raise bb.runqueue.TaskFailure(self.rqexe.failed_tids) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1526 | |
| 1527 | if self.state is runQueueComplete: |
| 1528 | # All done |
| 1529 | return False |
| 1530 | |
| 1531 | # Loop |
| 1532 | return retval |
| 1533 | |
| 1534 | def execute_runqueue(self): |
| 1535 | # Catch unexpected exceptions and ensure we exit when an error occurs, not loop. |
| 1536 | try: |
| 1537 | return self._execute_runqueue() |
| 1538 | except bb.runqueue.TaskFailure: |
| 1539 | raise |
| 1540 | except SystemExit: |
| 1541 | raise |
| 1542 | except bb.BBHandledException: |
| 1543 | try: |
| 1544 | self.teardown_workers() |
| 1545 | except: |
| 1546 | pass |
| 1547 | self.state = runQueueComplete |
| 1548 | raise |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1549 | except Exception as err: |
| 1550 | logger.exception("An uncaught exception occurred in runqueue") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1551 | try: |
| 1552 | self.teardown_workers() |
| 1553 | except: |
| 1554 | pass |
| 1555 | self.state = runQueueComplete |
| 1556 | raise |
| 1557 | |
| 1558 | def finish_runqueue(self, now = False): |
| 1559 | if not self.rqexe: |
| 1560 | self.state = runQueueComplete |
| 1561 | return |
| 1562 | |
| 1563 | if now: |
| 1564 | self.rqexe.finish_now() |
| 1565 | else: |
| 1566 | self.rqexe.finish() |
| 1567 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1568 | def rq_dump_sigfn(self, fn, options): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1569 | bb_cache = bb.cache.NoCache(self.cooker.databuilder) |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 1570 | mc = bb.runqueue.mc_from_tid(fn) |
| 1571 | the_data = bb_cache.loadDataFull(fn, self.cooker.collections[mc].get_file_appends(fn)) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1572 | siggen = bb.parse.siggen |
| 1573 | dataCaches = self.rqdata.dataCaches |
| 1574 | siggen.dump_sigfn(fn, dataCaches, options) |
| 1575 | |
| 1576 | def dump_signatures(self, options): |
| 1577 | fns = set() |
| 1578 | bb.note("Reparsing files to collect dependency data") |
| 1579 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1580 | for tid in self.rqdata.runtaskentries: |
| 1581 | fn = fn_from_tid(tid) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1582 | fns.add(fn) |
| 1583 | |
| 1584 | max_process = int(self.cfgData.getVar("BB_NUMBER_PARSE_THREADS") or os.cpu_count() or 1) |
| 1585 | # We cannot use the real multiprocessing.Pool easily due to some local data |
| 1586 | # that can't be pickled. This is a cheap multi-process solution. |
| 1587 | launched = [] |
| 1588 | while fns: |
| 1589 | if len(launched) < max_process: |
| 1590 | p = Process(target=self.rq_dump_sigfn, args=(fns.pop(), options)) |
| 1591 | p.start() |
| 1592 | launched.append(p) |
| 1593 | for q in launched: |
| 1594 | # The finished processes are joined when calling is_alive() |
| 1595 | if not q.is_alive(): |
| 1596 | launched.remove(q) |
| 1597 | for p in launched: |
| 1598 | p.join() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1599 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1600 | bb.parse.siggen.dump_sigs(self.rqdata.dataCaches, options) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1601 | |
| 1602 | return |
| 1603 | |
| 1604 | def print_diffscenetasks(self): |
| 1605 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1606 | noexec = [] |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1607 | tocheck = set() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1608 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1609 | for tid in self.rqdata.runtaskentries: |
| 1610 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 1611 | taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1612 | |
| 1613 | if 'noexec' in taskdep and taskname in taskdep['noexec']: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1614 | noexec.append(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1615 | continue |
| 1616 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1617 | tocheck.add(tid) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1618 | |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 1619 | valid_new = self.validate_hashes(tocheck, self.cooker.data, 0, True, summary=False) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1620 | |
| 1621 | # Tasks which are both setscene and noexec never care about dependencies |
| 1622 | # We therefore find tasks which are setscene and noexec and mark their |
| 1623 | # unique dependencies as valid. |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1624 | for tid in noexec: |
| 1625 | if tid not in self.rqdata.runq_setscene_tids: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1626 | continue |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1627 | for dep in self.rqdata.runtaskentries[tid].depends: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1628 | hasnoexecparents = True |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1629 | for dep2 in self.rqdata.runtaskentries[dep].revdeps: |
| 1630 | if dep2 in self.rqdata.runq_setscene_tids and dep2 in noexec: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1631 | continue |
| 1632 | hasnoexecparents = False |
| 1633 | break |
| 1634 | if hasnoexecparents: |
| 1635 | valid_new.add(dep) |
| 1636 | |
| 1637 | invalidtasks = set() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1638 | for tid in self.rqdata.runtaskentries: |
| 1639 | if tid not in valid_new and tid not in noexec: |
| 1640 | invalidtasks.add(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1641 | |
| 1642 | found = set() |
| 1643 | processed = set() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1644 | for tid in invalidtasks: |
| 1645 | toprocess = set([tid]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1646 | while toprocess: |
| 1647 | next = set() |
| 1648 | for t in toprocess: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1649 | for dep in self.rqdata.runtaskentries[t].depends: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1650 | if dep in invalidtasks: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1651 | found.add(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1652 | if dep not in processed: |
| 1653 | processed.add(dep) |
| 1654 | next.add(dep) |
| 1655 | toprocess = next |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1656 | if tid in found: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1657 | toprocess = set() |
| 1658 | |
| 1659 | tasklist = [] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1660 | for tid in invalidtasks.difference(found): |
| 1661 | tasklist.append(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1662 | |
| 1663 | if tasklist: |
| 1664 | bb.plain("The differences between the current build and any cached tasks start at the following tasks:\n" + "\n".join(tasklist)) |
| 1665 | |
| 1666 | return invalidtasks.difference(found) |
| 1667 | |
| 1668 | def write_diffscenetasks(self, invalidtasks): |
| 1669 | |
| 1670 | # Define recursion callback |
| 1671 | def recursecb(key, hash1, hash2): |
| 1672 | hashes = [hash1, hash2] |
| 1673 | hashfiles = bb.siggen.find_siginfo(key, None, hashes, self.cfgData) |
| 1674 | |
| 1675 | recout = [] |
| 1676 | if len(hashfiles) == 2: |
| 1677 | out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb) |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1678 | recout.extend(list(' ' + l for l in out2)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1679 | else: |
| 1680 | recout.append("Unable to find matching sigdata for %s with hashes %s or %s" % (key, hash1, hash2)) |
| 1681 | |
| 1682 | return recout |
| 1683 | |
| 1684 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1685 | for tid in invalidtasks: |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 1686 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 1687 | pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1688 | h = self.rqdata.runtaskentries[tid].hash |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1689 | matches = bb.siggen.find_siginfo(pn, taskname, [], self.cfgData) |
| 1690 | match = None |
| 1691 | for m in matches: |
| 1692 | if h in m: |
| 1693 | match = m |
| 1694 | if match is None: |
| 1695 | bb.fatal("Can't find a task we're supposed to have written out? (hash: %s)?" % h) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1696 | matches = {k : v for k, v in iter(matches.items()) if h not in k} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1697 | if matches: |
| 1698 | latestmatch = sorted(matches.keys(), key=lambda f: matches[f])[-1] |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1699 | prevh = __find_sha256__.search(latestmatch).group(0) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1700 | output = bb.siggen.compare_sigfiles(latestmatch, match, recursecb) |
| 1701 | bb.plain("\nTask %s:%s couldn't be used from the cache because:\n We need hash %s, closest matching task was %s\n " % (pn, taskname, h, prevh) + '\n '.join(output)) |
| 1702 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1703 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1704 | class RunQueueExecute: |
| 1705 | |
| 1706 | def __init__(self, rq): |
| 1707 | self.rq = rq |
| 1708 | self.cooker = rq.cooker |
| 1709 | self.cfgData = rq.cfgData |
| 1710 | self.rqdata = rq.rqdata |
| 1711 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1712 | self.number_tasks = int(self.cfgData.getVar("BB_NUMBER_THREADS") or 1) |
| 1713 | self.scheduler = self.cfgData.getVar("BB_SCHEDULER") or "speed" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1714 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1715 | self.sq_buildable = set() |
| 1716 | self.sq_running = set() |
| 1717 | self.sq_live = set() |
| 1718 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1719 | self.updated_taskhash_queue = [] |
| 1720 | self.pending_migrations = set() |
| 1721 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1722 | self.runq_buildable = set() |
| 1723 | self.runq_running = set() |
| 1724 | self.runq_complete = set() |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1725 | self.runq_tasksrun = set() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1726 | |
| 1727 | self.build_stamps = {} |
| 1728 | self.build_stamps2 = [] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1729 | self.failed_tids = [] |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1730 | self.sq_deferred = {} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1731 | |
| 1732 | self.stampcache = {} |
| 1733 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1734 | self.holdoff_tasks = set() |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 1735 | self.holdoff_need_update = True |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1736 | self.sqdone = False |
| 1737 | |
| 1738 | self.stats = RunQueueStats(len(self.rqdata.runtaskentries)) |
| 1739 | self.sq_stats = RunQueueStats(len(self.rqdata.runq_setscene_tids)) |
| 1740 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1741 | for mc in rq.worker: |
| 1742 | rq.worker[mc].pipe.setrunqueueexec(self) |
| 1743 | for mc in rq.fakeworker: |
| 1744 | rq.fakeworker[mc].pipe.setrunqueueexec(self) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1745 | |
| 1746 | if self.number_tasks <= 0: |
| 1747 | bb.fatal("Invalid BB_NUMBER_THREADS %s" % self.number_tasks) |
| 1748 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1749 | # List of setscene tasks which we've covered |
| 1750 | self.scenequeue_covered = set() |
| 1751 | # List of tasks which are covered (including setscene ones) |
| 1752 | self.tasks_covered = set() |
| 1753 | self.tasks_scenequeue_done = set() |
| 1754 | self.scenequeue_notcovered = set() |
| 1755 | self.tasks_notcovered = set() |
| 1756 | self.scenequeue_notneeded = set() |
| 1757 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1758 | # We can't skip specified target tasks which aren't setscene tasks |
| 1759 | self.cantskip = set(self.rqdata.target_tids) |
| 1760 | self.cantskip.difference_update(self.rqdata.runq_setscene_tids) |
| 1761 | self.cantskip.intersection_update(self.rqdata.runtaskentries) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1762 | |
| 1763 | schedulers = self.get_schedulers() |
| 1764 | for scheduler in schedulers: |
| 1765 | if self.scheduler == scheduler.name: |
| 1766 | self.sched = scheduler(self, self.rqdata) |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1767 | logger.debug("Using runqueue scheduler '%s'", scheduler.name) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1768 | break |
| 1769 | else: |
| 1770 | bb.fatal("Invalid scheduler '%s'. Available schedulers: %s" % |
| 1771 | (self.scheduler, ", ".join(obj.name for obj in schedulers))) |
| 1772 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1773 | #if len(self.rqdata.runq_setscene_tids) > 0: |
| 1774 | self.sqdata = SQData() |
| 1775 | build_scenequeue_data(self.sqdata, self.rqdata, self.rq, self.cooker, self.stampcache, self) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1776 | |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1777 | def runqueue_process_waitpid(self, task, status, fakerootlog=None): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1778 | |
| 1779 | # self.build_stamps[pid] may not exist when use shared work directory. |
| 1780 | if task in self.build_stamps: |
| 1781 | self.build_stamps2.remove(self.build_stamps[task]) |
| 1782 | del self.build_stamps[task] |
| 1783 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1784 | if task in self.sq_live: |
| 1785 | if status != 0: |
| 1786 | self.sq_task_fail(task, status) |
| 1787 | else: |
| 1788 | self.sq_task_complete(task) |
| 1789 | self.sq_live.remove(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1790 | else: |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1791 | if status != 0: |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1792 | self.task_fail(task, status, fakerootlog=fakerootlog) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1793 | else: |
| 1794 | self.task_complete(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1795 | return True |
| 1796 | |
| 1797 | def finish_now(self): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1798 | for mc in self.rq.worker: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1799 | try: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1800 | self.rq.worker[mc].process.stdin.write(b"<finishnow></finishnow>") |
| 1801 | self.rq.worker[mc].process.stdin.flush() |
| 1802 | except IOError: |
| 1803 | # worker must have died? |
| 1804 | pass |
| 1805 | for mc in self.rq.fakeworker: |
| 1806 | try: |
| 1807 | self.rq.fakeworker[mc].process.stdin.write(b"<finishnow></finishnow>") |
| 1808 | self.rq.fakeworker[mc].process.stdin.flush() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1809 | except IOError: |
| 1810 | # worker must have died? |
| 1811 | pass |
| 1812 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1813 | if len(self.failed_tids) != 0: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1814 | self.rq.state = runQueueFailed |
| 1815 | return |
| 1816 | |
| 1817 | self.rq.state = runQueueComplete |
| 1818 | return |
| 1819 | |
| 1820 | def finish(self): |
| 1821 | self.rq.state = runQueueCleanUp |
| 1822 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1823 | active = self.stats.active + self.sq_stats.active |
| 1824 | if active > 0: |
| 1825 | bb.event.fire(runQueueExitWait(active), self.cfgData) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1826 | self.rq.read_workers() |
| 1827 | return self.rq.active_fds() |
| 1828 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1829 | if len(self.failed_tids) != 0: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1830 | self.rq.state = runQueueFailed |
| 1831 | return True |
| 1832 | |
| 1833 | self.rq.state = runQueueComplete |
| 1834 | return True |
| 1835 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1836 | # Used by setscene only |
| 1837 | def check_dependencies(self, task, taskdeps): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1838 | if not self.rq.depvalidate: |
| 1839 | return False |
| 1840 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1841 | # Must not edit parent data |
| 1842 | taskdeps = set(taskdeps) |
| 1843 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1844 | taskdata = {} |
| 1845 | taskdeps.add(task) |
| 1846 | for dep in taskdeps: |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 1847 | (mc, fn, taskname, taskfn) = split_tid_mcfn(dep) |
| 1848 | pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1849 | taskdata[dep] = [pn, taskname, fn] |
| 1850 | call = self.rq.depvalidate + "(task, taskdata, notneeded, d)" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1851 | locs = { "task" : task, "taskdata" : taskdata, "notneeded" : self.scenequeue_notneeded, "d" : self.cooker.data } |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1852 | valid = bb.utils.better_eval(call, locs) |
| 1853 | return valid |
| 1854 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1855 | def can_start_task(self): |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1856 | active = self.stats.active + self.sq_stats.active |
| 1857 | can_start = active < self.number_tasks |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1858 | return can_start |
| 1859 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1860 | def get_schedulers(self): |
| 1861 | schedulers = set(obj for obj in globals().values() |
| 1862 | if type(obj) is type and |
| 1863 | issubclass(obj, RunQueueScheduler)) |
| 1864 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1865 | user_schedulers = self.cfgData.getVar("BB_SCHEDULERS") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1866 | if user_schedulers: |
| 1867 | for sched in user_schedulers.split(): |
| 1868 | if not "." in sched: |
| 1869 | bb.note("Ignoring scheduler '%s' from BB_SCHEDULERS: not an import" % sched) |
| 1870 | continue |
| 1871 | |
| 1872 | modname, name = sched.rsplit(".", 1) |
| 1873 | try: |
| 1874 | module = __import__(modname, fromlist=(name,)) |
| 1875 | except ImportError as exc: |
| 1876 | logger.critical("Unable to import scheduler '%s' from '%s': %s" % (name, modname, exc)) |
| 1877 | raise SystemExit(1) |
| 1878 | else: |
| 1879 | schedulers.add(getattr(module, name)) |
| 1880 | return schedulers |
| 1881 | |
| 1882 | def setbuildable(self, task): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1883 | self.runq_buildable.add(task) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1884 | self.sched.newbuildable(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1885 | |
| 1886 | def task_completeoutright(self, task): |
| 1887 | """ |
| 1888 | Mark a task as completed |
| 1889 | Look at the reverse dependencies and mark any task with |
| 1890 | completed dependencies as buildable |
| 1891 | """ |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1892 | self.runq_complete.add(task) |
| 1893 | for revdep in self.rqdata.runtaskentries[task].revdeps: |
| 1894 | if revdep in self.runq_running: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1895 | continue |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1896 | if revdep in self.runq_buildable: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1897 | continue |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1898 | alldeps = True |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1899 | for dep in self.rqdata.runtaskentries[revdep].depends: |
| 1900 | if dep not in self.runq_complete: |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1901 | alldeps = False |
| 1902 | break |
| 1903 | if alldeps: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1904 | self.setbuildable(revdep) |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1905 | logger.debug("Marking task %s as buildable", revdep) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1906 | |
| 1907 | def task_complete(self, task): |
| 1908 | self.stats.taskCompleted() |
| 1909 | bb.event.fire(runQueueTaskCompleted(task, self.stats, self.rq), self.cfgData) |
| 1910 | self.task_completeoutright(task) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1911 | self.runq_tasksrun.add(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1912 | |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1913 | def task_fail(self, task, exitcode, fakerootlog=None): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1914 | """ |
| 1915 | Called when a task has failed |
| 1916 | Updates the state engine with the failure |
| 1917 | """ |
| 1918 | self.stats.taskFailed() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1919 | self.failed_tids.append(task) |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1920 | |
| 1921 | fakeroot_log = "" |
| 1922 | if fakerootlog and os.path.exists(fakerootlog): |
| 1923 | with open(fakerootlog) as fakeroot_log_file: |
| 1924 | fakeroot_failed = False |
| 1925 | for line in reversed(fakeroot_log_file.readlines()): |
| 1926 | for fakeroot_error in ['mismatch', 'error', 'fatal']: |
| 1927 | if fakeroot_error in line.lower(): |
| 1928 | fakeroot_failed = True |
| 1929 | if 'doing new pid setup and server start' in line: |
| 1930 | break |
| 1931 | fakeroot_log = line + fakeroot_log |
| 1932 | |
| 1933 | if not fakeroot_failed: |
| 1934 | fakeroot_log = None |
| 1935 | |
| 1936 | bb.event.fire(runQueueTaskFailed(task, self.stats, exitcode, self.rq, fakeroot_log=fakeroot_log), self.cfgData) |
| 1937 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1938 | if self.rqdata.taskData[''].abort: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1939 | self.rq.state = runQueueCleanUp |
| 1940 | |
| 1941 | def task_skip(self, task, reason): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1942 | self.runq_running.add(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1943 | self.setbuildable(task) |
| 1944 | bb.event.fire(runQueueTaskSkipped(task, self.stats, self.rq, reason), self.cfgData) |
| 1945 | self.task_completeoutright(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1946 | self.stats.taskSkipped() |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1947 | self.stats.taskCompleted() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1948 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1949 | def summarise_scenequeue_errors(self): |
| 1950 | err = False |
| 1951 | if not self.sqdone: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 1952 | logger.debug('We could skip tasks %s', "\n".join(sorted(self.scenequeue_covered))) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1953 | completeevent = sceneQueueComplete(self.sq_stats, self.rq) |
| 1954 | bb.event.fire(completeevent, self.cfgData) |
| 1955 | if self.sq_deferred: |
| 1956 | logger.error("Scenequeue had deferred entries: %s" % pprint.pformat(self.sq_deferred)) |
| 1957 | err = True |
| 1958 | if self.updated_taskhash_queue: |
| 1959 | logger.error("Scenequeue had unprocessed changed taskhash entries: %s" % pprint.pformat(self.updated_taskhash_queue)) |
| 1960 | err = True |
| 1961 | if self.holdoff_tasks: |
| 1962 | logger.error("Scenequeue had holdoff tasks: %s" % pprint.pformat(self.holdoff_tasks)) |
| 1963 | err = True |
| 1964 | |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 1965 | for tid in self.scenequeue_covered.intersection(self.scenequeue_notcovered): |
| 1966 | # No task should end up in both covered and uncovered, that is a bug. |
| 1967 | logger.error("Setscene task %s in both covered and notcovered." % tid) |
| 1968 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 1969 | for tid in self.rqdata.runq_setscene_tids: |
| 1970 | if tid not in self.scenequeue_covered and tid not in self.scenequeue_notcovered: |
| 1971 | err = True |
| 1972 | logger.error("Setscene Task %s was never marked as covered or not covered" % tid) |
| 1973 | if tid not in self.sq_buildable: |
| 1974 | err = True |
| 1975 | logger.error("Setscene Task %s was never marked as buildable" % tid) |
| 1976 | if tid not in self.sq_running: |
| 1977 | err = True |
| 1978 | logger.error("Setscene Task %s was never marked as running" % tid) |
| 1979 | |
| 1980 | for x in self.rqdata.runtaskentries: |
| 1981 | if x not in self.tasks_covered and x not in self.tasks_notcovered: |
| 1982 | logger.error("Task %s was never moved from the setscene queue" % x) |
| 1983 | err = True |
| 1984 | if x not in self.tasks_scenequeue_done: |
| 1985 | logger.error("Task %s was never processed by the setscene code" % x) |
| 1986 | err = True |
| 1987 | if len(self.rqdata.runtaskentries[x].depends) == 0 and x not in self.runq_buildable: |
| 1988 | logger.error("Task %s was never marked as buildable by the setscene code" % x) |
| 1989 | err = True |
| 1990 | return err |
| 1991 | |
| 1992 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1993 | def execute(self): |
| 1994 | """ |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 1995 | Run the tasks in a queue prepared by prepare_runqueue |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1996 | """ |
| 1997 | |
| 1998 | self.rq.read_workers() |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1999 | if self.updated_taskhash_queue or self.pending_migrations: |
| 2000 | self.process_possible_migrations() |
| 2001 | |
| 2002 | if not hasattr(self, "sorted_setscene_tids"): |
| 2003 | # Don't want to sort this set every execution |
| 2004 | self.sorted_setscene_tids = sorted(self.rqdata.runq_setscene_tids) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2005 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2006 | task = None |
| 2007 | if not self.sqdone and self.can_start_task(): |
| 2008 | # Find the next setscene to run |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2009 | for nexttask in self.sorted_setscene_tids: |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2010 | if nexttask in self.sq_buildable and nexttask not in self.sq_running and self.sqdata.stamps[nexttask] not in self.build_stamps.values(): |
| 2011 | if nexttask not in self.sqdata.unskippable and len(self.sqdata.sq_revdeps[nexttask]) > 0 and self.sqdata.sq_revdeps[nexttask].issubset(self.scenequeue_covered) and self.check_dependencies(nexttask, self.sqdata.sq_revdeps[nexttask]): |
| 2012 | if nexttask not in self.rqdata.target_tids: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2013 | logger.debug2("Skipping setscene for task %s" % nexttask) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2014 | self.sq_task_skip(nexttask) |
| 2015 | self.scenequeue_notneeded.add(nexttask) |
| 2016 | if nexttask in self.sq_deferred: |
| 2017 | del self.sq_deferred[nexttask] |
| 2018 | return True |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2019 | # If covered tasks are running, need to wait for them to complete |
| 2020 | for t in self.sqdata.sq_covered_tasks[nexttask]: |
| 2021 | if t in self.runq_running and t not in self.runq_complete: |
| 2022 | continue |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2023 | if nexttask in self.sq_deferred: |
| 2024 | if self.sq_deferred[nexttask] not in self.runq_complete: |
| 2025 | continue |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2026 | logger.debug("Task %s no longer deferred" % nexttask) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2027 | del self.sq_deferred[nexttask] |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 2028 | valid = self.rq.validate_hashes(set([nexttask]), self.cooker.data, 0, False, summary=False) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2029 | if not valid: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2030 | logger.debug("%s didn't become valid, skipping setscene" % nexttask) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2031 | self.sq_task_failoutright(nexttask) |
| 2032 | return True |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2033 | if nexttask in self.sqdata.outrightfail: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2034 | logger.debug2('No package found, so skipping setscene task %s', nexttask) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2035 | self.sq_task_failoutright(nexttask) |
| 2036 | return True |
| 2037 | if nexttask in self.sqdata.unskippable: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2038 | logger.debug2("Setscene task %s is unskippable" % nexttask) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2039 | task = nexttask |
| 2040 | break |
| 2041 | if task is not None: |
| 2042 | (mc, fn, taskname, taskfn) = split_tid_mcfn(task) |
| 2043 | taskname = taskname + "_setscene" |
| 2044 | if self.rq.check_stamp_task(task, taskname_from_tid(task), recurse = True, cache=self.stampcache): |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2045 | logger.debug2('Stamp for underlying task %s is current, so skipping setscene variant', task) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2046 | self.sq_task_failoutright(task) |
| 2047 | return True |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2048 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2049 | if self.cooker.configuration.force: |
| 2050 | if task in self.rqdata.target_tids: |
| 2051 | self.sq_task_failoutright(task) |
| 2052 | return True |
| 2053 | |
| 2054 | if self.rq.check_stamp_task(task, taskname, cache=self.stampcache): |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2055 | logger.debug2('Setscene stamp current task %s, so skip it and its dependencies', task) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2056 | self.sq_task_skip(task) |
| 2057 | return True |
| 2058 | |
| 2059 | if self.cooker.configuration.skipsetscene: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2060 | logger.debug2('No setscene tasks should be executed. Skipping %s', task) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2061 | self.sq_task_failoutright(task) |
| 2062 | return True |
| 2063 | |
| 2064 | startevent = sceneQueueTaskStarted(task, self.sq_stats, self.rq) |
| 2065 | bb.event.fire(startevent, self.cfgData) |
| 2066 | |
| 2067 | taskdepdata = self.sq_build_taskdepdata(task) |
| 2068 | |
| 2069 | taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] |
| 2070 | taskhash = self.rqdata.get_task_hash(task) |
| 2071 | unihash = self.rqdata.get_task_unihash(task) |
| 2072 | if 'fakeroot' in taskdep and taskname in taskdep['fakeroot'] and not self.cooker.configuration.dry_run: |
| 2073 | if not mc in self.rq.fakeworker: |
| 2074 | self.rq.start_fakeworker(self, mc) |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 2075 | self.rq.fakeworker[mc].process.stdin.write(b"<runtask>" + pickle.dumps((taskfn, task, taskname, taskhash, unihash, True, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, False)) + b"</runtask>") |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2076 | self.rq.fakeworker[mc].process.stdin.flush() |
| 2077 | else: |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 2078 | self.rq.worker[mc].process.stdin.write(b"<runtask>" + pickle.dumps((taskfn, task, taskname, taskhash, unihash, True, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, False)) + b"</runtask>") |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2079 | self.rq.worker[mc].process.stdin.flush() |
| 2080 | |
| 2081 | self.build_stamps[task] = bb.build.stampfile(taskname, self.rqdata.dataCaches[mc], taskfn, noextra=True) |
| 2082 | self.build_stamps2.append(self.build_stamps[task]) |
| 2083 | self.sq_running.add(task) |
| 2084 | self.sq_live.add(task) |
| 2085 | self.sq_stats.taskActive() |
| 2086 | if self.can_start_task(): |
| 2087 | return True |
| 2088 | |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2089 | self.update_holdofftasks() |
| 2090 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2091 | if not self.sq_live and not self.sqdone and not self.sq_deferred and not self.updated_taskhash_queue and not self.holdoff_tasks: |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2092 | hashequiv_logger.verbose("Setscene tasks completed") |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2093 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2094 | err = self.summarise_scenequeue_errors() |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2095 | if err: |
| 2096 | self.rq.state = runQueueFailed |
| 2097 | return True |
| 2098 | |
| 2099 | if self.cooker.configuration.setsceneonly: |
| 2100 | self.rq.state = runQueueComplete |
| 2101 | return True |
| 2102 | self.sqdone = True |
| 2103 | |
| 2104 | if self.stats.total == 0: |
| 2105 | # nothing to do |
| 2106 | self.rq.state = runQueueComplete |
| 2107 | return True |
| 2108 | |
| 2109 | if self.cooker.configuration.setsceneonly: |
| 2110 | task = None |
| 2111 | else: |
| 2112 | task = self.sched.next() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2113 | if task is not None: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2114 | (mc, fn, taskname, taskfn) = split_tid_mcfn(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2115 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2116 | if self.rqdata.setscenewhitelist is not None: |
| 2117 | if self.check_setscenewhitelist(task): |
| 2118 | self.task_fail(task, "setscene whitelist") |
| 2119 | return True |
| 2120 | |
| 2121 | if task in self.tasks_covered: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2122 | logger.debug2("Setscene covered task %s", task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2123 | self.task_skip(task, "covered") |
| 2124 | return True |
| 2125 | |
| 2126 | if self.rq.check_stamp_task(task, taskname, cache=self.stampcache): |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2127 | logger.debug2("Stamp current task %s", task) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2128 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2129 | self.task_skip(task, "existing") |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2130 | self.runq_tasksrun.add(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2131 | return True |
| 2132 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2133 | taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2134 | if 'noexec' in taskdep and taskname in taskdep['noexec']: |
| 2135 | startevent = runQueueTaskStarted(task, self.stats, self.rq, |
| 2136 | noexec=True) |
| 2137 | bb.event.fire(startevent, self.cfgData) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2138 | self.runq_running.add(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2139 | self.stats.taskActive() |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 2140 | if not (self.cooker.configuration.dry_run or self.rqdata.setscene_enforce): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2141 | bb.build.make_stamp(taskname, self.rqdata.dataCaches[mc], taskfn) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2142 | self.task_complete(task) |
| 2143 | return True |
| 2144 | else: |
| 2145 | startevent = runQueueTaskStarted(task, self.stats, self.rq) |
| 2146 | bb.event.fire(startevent, self.cfgData) |
| 2147 | |
| 2148 | taskdepdata = self.build_taskdepdata(task) |
| 2149 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2150 | taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 2151 | taskhash = self.rqdata.get_task_hash(task) |
| 2152 | unihash = self.rqdata.get_task_unihash(task) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 2153 | if 'fakeroot' in taskdep and taskname in taskdep['fakeroot'] and not (self.cooker.configuration.dry_run or self.rqdata.setscene_enforce): |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 2154 | if not mc in self.rq.fakeworker: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2155 | try: |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 2156 | self.rq.start_fakeworker(self, mc) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2157 | except OSError as exc: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2158 | logger.critical("Failed to spawn fakeroot worker to run %s: %s" % (task, str(exc))) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2159 | self.rq.state = runQueueFailed |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2160 | self.stats.taskFailed() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2161 | return True |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 2162 | self.rq.fakeworker[mc].process.stdin.write(b"<runtask>" + pickle.dumps((taskfn, task, taskname, taskhash, unihash, False, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, self.rqdata.setscene_enforce)) + b"</runtask>") |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2163 | self.rq.fakeworker[mc].process.stdin.flush() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2164 | else: |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 2165 | self.rq.worker[mc].process.stdin.write(b"<runtask>" + pickle.dumps((taskfn, task, taskname, taskhash, unihash, False, self.cooker.collections[mc].get_file_appends(taskfn), taskdepdata, self.rqdata.setscene_enforce)) + b"</runtask>") |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2166 | self.rq.worker[mc].process.stdin.flush() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2167 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2168 | self.build_stamps[task] = bb.build.stampfile(taskname, self.rqdata.dataCaches[mc], taskfn, noextra=True) |
| 2169 | self.build_stamps2.append(self.build_stamps[task]) |
| 2170 | self.runq_running.add(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2171 | self.stats.taskActive() |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 2172 | if self.can_start_task(): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2173 | return True |
| 2174 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2175 | if self.stats.active > 0 or self.sq_stats.active > 0: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2176 | self.rq.read_workers() |
| 2177 | return self.rq.active_fds() |
| 2178 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2179 | # No more tasks can be run. If we have deferred setscene tasks we should run them. |
| 2180 | if self.sq_deferred: |
| 2181 | tid = self.sq_deferred.pop(list(self.sq_deferred.keys())[0]) |
| 2182 | logger.warning("Runqeueue deadlocked on deferred tasks, forcing task %s" % tid) |
| 2183 | self.sq_task_failoutright(tid) |
| 2184 | return True |
| 2185 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2186 | if len(self.failed_tids) != 0: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2187 | self.rq.state = runQueueFailed |
| 2188 | return True |
| 2189 | |
| 2190 | # Sanity Checks |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2191 | err = self.summarise_scenequeue_errors() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2192 | for task in self.rqdata.runtaskentries: |
| 2193 | if task not in self.runq_buildable: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2194 | logger.error("Task %s never buildable!", task) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2195 | err = True |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2196 | elif task not in self.runq_running: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2197 | logger.error("Task %s never ran!", task) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2198 | err = True |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2199 | elif task not in self.runq_complete: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2200 | logger.error("Task %s never completed!", task) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2201 | err = True |
| 2202 | |
| 2203 | if err: |
| 2204 | self.rq.state = runQueueFailed |
| 2205 | else: |
| 2206 | self.rq.state = runQueueComplete |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2207 | |
| 2208 | return True |
| 2209 | |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2210 | def filtermcdeps(self, task, mc, deps): |
Andrew Geissler | 99467da | 2019-02-25 18:54:23 -0600 | [diff] [blame] | 2211 | ret = set() |
Andrew Geissler | 99467da | 2019-02-25 18:54:23 -0600 | [diff] [blame] | 2212 | for dep in deps: |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2213 | thismc = mc_from_tid(dep) |
| 2214 | if thismc != mc: |
Andrew Geissler | 99467da | 2019-02-25 18:54:23 -0600 | [diff] [blame] | 2215 | continue |
| 2216 | ret.add(dep) |
| 2217 | return ret |
| 2218 | |
Brad Bishop | a34c030 | 2019-09-23 22:34:48 -0400 | [diff] [blame] | 2219 | # We filter out multiconfig dependencies from taskdepdata we pass to the tasks |
Andrew Geissler | 99467da | 2019-02-25 18:54:23 -0600 | [diff] [blame] | 2220 | # as most code can't handle them |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2221 | def build_taskdepdata(self, task): |
| 2222 | taskdepdata = {} |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2223 | mc = mc_from_tid(task) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2224 | next = self.rqdata.runtaskentries[task].depends.copy() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2225 | next.add(task) |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2226 | next = self.filtermcdeps(task, mc, next) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2227 | while next: |
| 2228 | additional = [] |
| 2229 | for revdep in next: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2230 | (mc, fn, taskname, taskfn) = split_tid_mcfn(revdep) |
| 2231 | pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] |
| 2232 | deps = self.rqdata.runtaskentries[revdep].depends |
| 2233 | provides = self.rqdata.dataCaches[mc].fn_provides[taskfn] |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 2234 | taskhash = self.rqdata.runtaskentries[revdep].hash |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 2235 | unihash = self.rqdata.runtaskentries[revdep].unihash |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2236 | deps = self.filtermcdeps(task, mc, deps) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 2237 | taskdepdata[revdep] = [pn, taskname, fn, deps, provides, taskhash, unihash] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2238 | for revdep2 in deps: |
| 2239 | if revdep2 not in taskdepdata: |
| 2240 | additional.append(revdep2) |
| 2241 | next = additional |
| 2242 | |
| 2243 | #bb.note("Task %s: " % task + str(taskdepdata).replace("], ", "],\n")) |
| 2244 | return taskdepdata |
| 2245 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2246 | def update_holdofftasks(self): |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2247 | |
| 2248 | if not self.holdoff_need_update: |
| 2249 | return |
| 2250 | |
| 2251 | notcovered = set(self.scenequeue_notcovered) |
| 2252 | notcovered |= self.cantskip |
| 2253 | for tid in self.scenequeue_notcovered: |
| 2254 | notcovered |= self.sqdata.sq_covered_tasks[tid] |
| 2255 | notcovered |= self.sqdata.unskippable.difference(self.rqdata.runq_setscene_tids) |
| 2256 | notcovered.intersection_update(self.tasks_scenequeue_done) |
| 2257 | |
| 2258 | covered = set(self.scenequeue_covered) |
| 2259 | for tid in self.scenequeue_covered: |
| 2260 | covered |= self.sqdata.sq_covered_tasks[tid] |
| 2261 | covered.difference_update(notcovered) |
| 2262 | covered.intersection_update(self.tasks_scenequeue_done) |
| 2263 | |
| 2264 | for tid in notcovered | covered: |
| 2265 | if len(self.rqdata.runtaskentries[tid].depends) == 0: |
| 2266 | self.setbuildable(tid) |
| 2267 | elif self.rqdata.runtaskentries[tid].depends.issubset(self.runq_complete): |
| 2268 | self.setbuildable(tid) |
| 2269 | |
| 2270 | self.tasks_covered = covered |
| 2271 | self.tasks_notcovered = notcovered |
| 2272 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2273 | self.holdoff_tasks = set() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2274 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2275 | for tid in self.rqdata.runq_setscene_tids: |
| 2276 | if tid not in self.scenequeue_covered and tid not in self.scenequeue_notcovered: |
| 2277 | self.holdoff_tasks.add(tid) |
| 2278 | |
| 2279 | for tid in self.holdoff_tasks.copy(): |
| 2280 | for dep in self.sqdata.sq_covered_tasks[tid]: |
| 2281 | if dep not in self.runq_complete: |
| 2282 | self.holdoff_tasks.add(dep) |
| 2283 | |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2284 | self.holdoff_need_update = False |
| 2285 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2286 | def process_possible_migrations(self): |
| 2287 | |
| 2288 | changed = set() |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2289 | toprocess = set() |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2290 | for tid, unihash in self.updated_taskhash_queue.copy(): |
| 2291 | if tid in self.runq_running and tid not in self.runq_complete: |
| 2292 | continue |
| 2293 | |
| 2294 | self.updated_taskhash_queue.remove((tid, unihash)) |
| 2295 | |
| 2296 | if unihash != self.rqdata.runtaskentries[tid].unihash: |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 2297 | # Make sure we rehash any other tasks with the same task hash that we're deferred against. |
| 2298 | torehash = [tid] |
| 2299 | for deftid in self.sq_deferred: |
| 2300 | if self.sq_deferred[deftid] == tid: |
| 2301 | torehash.append(deftid) |
| 2302 | for hashtid in torehash: |
| 2303 | hashequiv_logger.verbose("Task %s unihash changed to %s" % (hashtid, unihash)) |
| 2304 | self.rqdata.runtaskentries[hashtid].unihash = unihash |
| 2305 | bb.parse.siggen.set_unihash(hashtid, unihash) |
| 2306 | toprocess.add(hashtid) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2307 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2308 | # Work out all tasks which depend upon these |
| 2309 | total = set() |
| 2310 | next = set() |
| 2311 | for p in toprocess: |
| 2312 | next |= self.rqdata.runtaskentries[p].revdeps |
| 2313 | while next: |
| 2314 | current = next.copy() |
| 2315 | total = total | next |
| 2316 | next = set() |
| 2317 | for ntid in current: |
| 2318 | next |= self.rqdata.runtaskentries[ntid].revdeps |
| 2319 | next.difference_update(total) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2320 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2321 | # Now iterate those tasks in dependency order to regenerate their taskhash/unihash |
| 2322 | next = set() |
| 2323 | for p in total: |
| 2324 | if len(self.rqdata.runtaskentries[p].depends) == 0: |
| 2325 | next.add(p) |
| 2326 | elif self.rqdata.runtaskentries[p].depends.isdisjoint(total): |
| 2327 | next.add(p) |
| 2328 | |
| 2329 | # When an item doesn't have dependencies in total, we can process it. Drop items from total when handled |
| 2330 | while next: |
| 2331 | current = next.copy() |
| 2332 | next = set() |
| 2333 | for tid in current: |
| 2334 | if len(self.rqdata.runtaskentries[p].depends) and not self.rqdata.runtaskentries[tid].depends.isdisjoint(total): |
| 2335 | continue |
| 2336 | orighash = self.rqdata.runtaskentries[tid].hash |
Andrew Geissler | 5a43b43 | 2020-06-13 10:46:56 -0500 | [diff] [blame] | 2337 | dc = bb.parse.siggen.get_data_caches(self.rqdata.dataCaches, mc_from_tid(tid)) |
| 2338 | newhash = bb.parse.siggen.get_taskhash(tid, self.rqdata.runtaskentries[tid].depends, dc) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2339 | origuni = self.rqdata.runtaskentries[tid].unihash |
| 2340 | newuni = bb.parse.siggen.get_unihash(tid) |
| 2341 | # FIXME, need to check it can come from sstate at all for determinism? |
| 2342 | remapped = False |
| 2343 | if newuni == origuni: |
| 2344 | # Nothing to do, we match, skip code below |
| 2345 | remapped = True |
| 2346 | elif tid in self.scenequeue_covered or tid in self.sq_live: |
| 2347 | # Already ran this setscene task or it running. Report the new taskhash |
| 2348 | bb.parse.siggen.report_unihash_equiv(tid, newhash, origuni, newuni, self.rqdata.dataCaches) |
| 2349 | hashequiv_logger.verbose("Already covered setscene for %s so ignoring rehash (remap)" % (tid)) |
| 2350 | remapped = True |
| 2351 | |
| 2352 | if not remapped: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2353 | #logger.debug("Task %s hash changes: %s->%s %s->%s" % (tid, orighash, newhash, origuni, newuni)) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2354 | self.rqdata.runtaskentries[tid].hash = newhash |
| 2355 | self.rqdata.runtaskentries[tid].unihash = newuni |
| 2356 | changed.add(tid) |
| 2357 | |
| 2358 | next |= self.rqdata.runtaskentries[tid].revdeps |
| 2359 | total.remove(tid) |
| 2360 | next.intersection_update(total) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2361 | |
| 2362 | if changed: |
| 2363 | for mc in self.rq.worker: |
| 2364 | self.rq.worker[mc].process.stdin.write(b"<newtaskhashes>" + pickle.dumps(bb.parse.siggen.get_taskhashes()) + b"</newtaskhashes>") |
| 2365 | for mc in self.rq.fakeworker: |
| 2366 | self.rq.fakeworker[mc].process.stdin.write(b"<newtaskhashes>" + pickle.dumps(bb.parse.siggen.get_taskhashes()) + b"</newtaskhashes>") |
| 2367 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2368 | hashequiv_logger.debug(pprint.pformat("Tasks changed:\n%s" % (changed))) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2369 | |
| 2370 | for tid in changed: |
| 2371 | if tid not in self.rqdata.runq_setscene_tids: |
| 2372 | continue |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2373 | if tid not in self.pending_migrations: |
| 2374 | self.pending_migrations.add(tid) |
| 2375 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2376 | update_tasks = [] |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2377 | for tid in self.pending_migrations.copy(): |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2378 | if tid in self.runq_running or tid in self.sq_live: |
Brad Bishop | 6dbb316 | 2019-11-25 09:41:34 -0500 | [diff] [blame] | 2379 | # Too late, task already running, not much we can do now |
| 2380 | self.pending_migrations.remove(tid) |
| 2381 | continue |
| 2382 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2383 | valid = True |
| 2384 | # Check no tasks this covers are running |
| 2385 | for dep in self.sqdata.sq_covered_tasks[tid]: |
| 2386 | if dep in self.runq_running and dep not in self.runq_complete: |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2387 | hashequiv_logger.debug2("Task %s is running which blocks setscene for %s from running" % (dep, tid)) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2388 | valid = False |
| 2389 | break |
| 2390 | if not valid: |
| 2391 | continue |
| 2392 | |
| 2393 | self.pending_migrations.remove(tid) |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2394 | changed = True |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2395 | |
| 2396 | if tid in self.tasks_scenequeue_done: |
| 2397 | self.tasks_scenequeue_done.remove(tid) |
| 2398 | for dep in self.sqdata.sq_covered_tasks[tid]: |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2399 | if dep in self.runq_complete and dep not in self.runq_tasksrun: |
| 2400 | bb.error("Task %s marked as completed but now needing to rerun? Aborting build." % dep) |
| 2401 | self.failed_tids.append(tid) |
| 2402 | self.rq.state = runQueueCleanUp |
| 2403 | return |
| 2404 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2405 | if dep not in self.runq_complete: |
| 2406 | if dep in self.tasks_scenequeue_done and dep not in self.sqdata.unskippable: |
| 2407 | self.tasks_scenequeue_done.remove(dep) |
| 2408 | |
| 2409 | if tid in self.sq_buildable: |
| 2410 | self.sq_buildable.remove(tid) |
| 2411 | if tid in self.sq_running: |
| 2412 | self.sq_running.remove(tid) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2413 | harddepfail = False |
| 2414 | for t in self.sqdata.sq_harddeps: |
| 2415 | if tid in self.sqdata.sq_harddeps[t] and t in self.scenequeue_notcovered: |
| 2416 | harddepfail = True |
| 2417 | break |
| 2418 | if not harddepfail and self.sqdata.sq_revdeps[tid].issubset(self.scenequeue_covered | self.scenequeue_notcovered): |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2419 | if tid not in self.sq_buildable: |
| 2420 | self.sq_buildable.add(tid) |
| 2421 | if len(self.sqdata.sq_revdeps[tid]) == 0: |
| 2422 | self.sq_buildable.add(tid) |
| 2423 | |
| 2424 | if tid in self.sqdata.outrightfail: |
| 2425 | self.sqdata.outrightfail.remove(tid) |
| 2426 | if tid in self.scenequeue_notcovered: |
| 2427 | self.scenequeue_notcovered.remove(tid) |
| 2428 | if tid in self.scenequeue_covered: |
| 2429 | self.scenequeue_covered.remove(tid) |
| 2430 | if tid in self.scenequeue_notneeded: |
| 2431 | self.scenequeue_notneeded.remove(tid) |
| 2432 | |
| 2433 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 2434 | self.sqdata.stamps[tid] = bb.build.stampfile(taskname + "_setscene", self.rqdata.dataCaches[mc], taskfn, noextra=True) |
| 2435 | |
| 2436 | if tid in self.stampcache: |
| 2437 | del self.stampcache[tid] |
| 2438 | |
| 2439 | if tid in self.build_stamps: |
| 2440 | del self.build_stamps[tid] |
| 2441 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2442 | update_tasks.append((tid, harddepfail, tid in self.sqdata.valid)) |
| 2443 | |
| 2444 | if update_tasks: |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2445 | self.sqdone = False |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 2446 | for tid in [t[0] for t in update_tasks]: |
| 2447 | h = pending_hash_index(tid, self.rqdata) |
| 2448 | if h in self.sqdata.hashes and tid != self.sqdata.hashes[h]: |
| 2449 | self.sq_deferred[tid] = self.sqdata.hashes[h] |
| 2450 | bb.note("Deferring %s after %s" % (tid, self.sqdata.hashes[h])) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2451 | update_scenequeue_data([t[0] for t in update_tasks], self.sqdata, self.rqdata, self.rq, self.cooker, self.stampcache, self, summary=False) |
| 2452 | |
| 2453 | for (tid, harddepfail, origvalid) in update_tasks: |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 2454 | if tid in self.sqdata.valid and not origvalid: |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2455 | hashequiv_logger.verbose("Setscene task %s became valid" % tid) |
| 2456 | if harddepfail: |
| 2457 | self.sq_task_failoutright(tid) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2458 | |
| 2459 | if changed: |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2460 | self.holdoff_need_update = True |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2461 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2462 | def scenequeue_updatecounters(self, task, fail=False): |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2463 | |
| 2464 | for dep in sorted(self.sqdata.sq_deps[task]): |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2465 | if fail and task in self.sqdata.sq_harddeps and dep in self.sqdata.sq_harddeps[task]: |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 2466 | if dep in self.scenequeue_covered or dep in self.scenequeue_notcovered: |
| 2467 | # dependency could be already processed, e.g. noexec setscene task |
| 2468 | continue |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 2469 | noexec, stamppresent = check_setscene_stamps(dep, self.rqdata, self.rq, self.stampcache) |
| 2470 | if noexec or stamppresent: |
| 2471 | continue |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2472 | logger.debug2("%s was unavailable and is a hard dependency of %s so skipping" % (task, dep)) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2473 | self.sq_task_failoutright(dep) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2474 | continue |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2475 | if self.sqdata.sq_revdeps[dep].issubset(self.scenequeue_covered | self.scenequeue_notcovered): |
| 2476 | if dep not in self.sq_buildable: |
| 2477 | self.sq_buildable.add(dep) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2478 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2479 | next = set([task]) |
| 2480 | while next: |
| 2481 | new = set() |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2482 | for t in sorted(next): |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2483 | self.tasks_scenequeue_done.add(t) |
| 2484 | # Look down the dependency chain for non-setscene things which this task depends on |
| 2485 | # and mark as 'done' |
| 2486 | for dep in self.rqdata.runtaskentries[t].depends: |
| 2487 | if dep in self.rqdata.runq_setscene_tids or dep in self.tasks_scenequeue_done: |
| 2488 | continue |
| 2489 | if self.rqdata.runtaskentries[dep].revdeps.issubset(self.tasks_scenequeue_done): |
| 2490 | new.add(dep) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2491 | next = new |
| 2492 | |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 2493 | self.holdoff_need_update = True |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2494 | |
| 2495 | def sq_task_completeoutright(self, task): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2496 | """ |
| 2497 | Mark a task as completed |
| 2498 | Look at the reverse dependencies and mark any task with |
| 2499 | completed dependencies as buildable |
| 2500 | """ |
| 2501 | |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 2502 | logger.debug('Found task %s which could be accelerated', task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2503 | self.scenequeue_covered.add(task) |
| 2504 | self.scenequeue_updatecounters(task) |
| 2505 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2506 | def sq_check_taskfail(self, task): |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 2507 | if self.rqdata.setscenewhitelist is not None: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2508 | realtask = task.split('_setscene')[0] |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 2509 | (mc, fn, taskname, taskfn) = split_tid_mcfn(realtask) |
| 2510 | pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2511 | if not check_setscene_enforce_whitelist(pn, taskname, self.rqdata.setscenewhitelist): |
| 2512 | logger.error('Task %s.%s failed' % (pn, taskname + "_setscene")) |
| 2513 | self.rq.state = runQueueCleanUp |
| 2514 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2515 | def sq_task_complete(self, task): |
| 2516 | self.sq_stats.taskCompleted() |
| 2517 | bb.event.fire(sceneQueueTaskCompleted(task, self.sq_stats, self.rq), self.cfgData) |
| 2518 | self.sq_task_completeoutright(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2519 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2520 | def sq_task_fail(self, task, result): |
| 2521 | self.sq_stats.taskFailed() |
| 2522 | bb.event.fire(sceneQueueTaskFailed(task, self.sq_stats, result, self), self.cfgData) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2523 | self.scenequeue_notcovered.add(task) |
| 2524 | self.scenequeue_updatecounters(task, True) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2525 | self.sq_check_taskfail(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2526 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2527 | def sq_task_failoutright(self, task): |
| 2528 | self.sq_running.add(task) |
| 2529 | self.sq_buildable.add(task) |
| 2530 | self.sq_stats.taskSkipped() |
| 2531 | self.sq_stats.taskCompleted() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2532 | self.scenequeue_notcovered.add(task) |
| 2533 | self.scenequeue_updatecounters(task, True) |
| 2534 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2535 | def sq_task_skip(self, task): |
| 2536 | self.sq_running.add(task) |
| 2537 | self.sq_buildable.add(task) |
| 2538 | self.sq_task_completeoutright(task) |
| 2539 | self.sq_stats.taskSkipped() |
| 2540 | self.sq_stats.taskCompleted() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2541 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2542 | def sq_build_taskdepdata(self, task): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 2543 | def getsetscenedeps(tid): |
| 2544 | deps = set() |
| 2545 | (mc, fn, taskname, _) = split_tid_mcfn(tid) |
| 2546 | realtid = tid + "_setscene" |
| 2547 | idepends = self.rqdata.taskData[mc].taskentries[realtid].idepends |
| 2548 | for (depname, idependtask) in idepends: |
| 2549 | if depname not in self.rqdata.taskData[mc].build_targets: |
| 2550 | continue |
| 2551 | |
| 2552 | depfn = self.rqdata.taskData[mc].build_targets[depname][0] |
| 2553 | if depfn is None: |
| 2554 | continue |
| 2555 | deptid = depfn + ":" + idependtask.replace("_setscene", "") |
| 2556 | deps.add(deptid) |
| 2557 | return deps |
| 2558 | |
| 2559 | taskdepdata = {} |
| 2560 | next = getsetscenedeps(task) |
| 2561 | next.add(task) |
| 2562 | while next: |
| 2563 | additional = [] |
| 2564 | for revdep in next: |
| 2565 | (mc, fn, taskname, taskfn) = split_tid_mcfn(revdep) |
| 2566 | pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] |
| 2567 | deps = getsetscenedeps(revdep) |
| 2568 | provides = self.rqdata.dataCaches[mc].fn_provides[taskfn] |
| 2569 | taskhash = self.rqdata.runtaskentries[revdep].hash |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 2570 | unihash = self.rqdata.runtaskentries[revdep].unihash |
| 2571 | taskdepdata[revdep] = [pn, taskname, fn, deps, provides, taskhash, unihash] |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 2572 | for revdep2 in deps: |
| 2573 | if revdep2 not in taskdepdata: |
| 2574 | additional.append(revdep2) |
| 2575 | next = additional |
| 2576 | |
| 2577 | #bb.note("Task %s: " % task + str(taskdepdata).replace("], ", "],\n")) |
| 2578 | return taskdepdata |
| 2579 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2580 | def check_setscenewhitelist(self, tid): |
| 2581 | # Check task that is going to run against the whitelist |
| 2582 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 2583 | # Ignore covered tasks |
| 2584 | if tid in self.tasks_covered: |
| 2585 | return False |
| 2586 | # Ignore stamped tasks |
| 2587 | if self.rq.check_stamp_task(tid, taskname, cache=self.stampcache): |
| 2588 | return False |
| 2589 | # Ignore noexec tasks |
| 2590 | taskdep = self.rqdata.dataCaches[mc].task_deps[taskfn] |
| 2591 | if 'noexec' in taskdep and taskname in taskdep['noexec']: |
| 2592 | return False |
| 2593 | |
| 2594 | pn = self.rqdata.dataCaches[mc].pkg_fn[taskfn] |
| 2595 | if not check_setscene_enforce_whitelist(pn, taskname, self.rqdata.setscenewhitelist): |
| 2596 | if tid in self.rqdata.runq_setscene_tids: |
| 2597 | msg = 'Task %s.%s attempted to execute unexpectedly and should have been setscened' % (pn, taskname) |
| 2598 | else: |
| 2599 | msg = 'Task %s.%s attempted to execute unexpectedly' % (pn, taskname) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 2600 | for t in self.scenequeue_notcovered: |
| 2601 | msg = msg + "\nTask %s, unihash %s, taskhash %s" % (t, self.rqdata.runtaskentries[t].unihash, self.rqdata.runtaskentries[t].hash) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2602 | logger.error(msg + '\nThis is usually due to missing setscene tasks. Those missing in this build were: %s' % pprint.pformat(self.scenequeue_notcovered)) |
| 2603 | return True |
| 2604 | return False |
| 2605 | |
| 2606 | class SQData(object): |
| 2607 | def __init__(self): |
| 2608 | # SceneQueue dependencies |
| 2609 | self.sq_deps = {} |
| 2610 | # SceneQueue reverse dependencies |
| 2611 | self.sq_revdeps = {} |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2612 | # Injected inter-setscene task dependencies |
| 2613 | self.sq_harddeps = {} |
| 2614 | # Cache of stamp files so duplicates can't run in parallel |
| 2615 | self.stamps = {} |
| 2616 | # Setscene tasks directly depended upon by the build |
| 2617 | self.unskippable = set() |
| 2618 | # List of setscene tasks which aren't present |
| 2619 | self.outrightfail = set() |
| 2620 | # A list of normal tasks a setscene task covers |
| 2621 | self.sq_covered_tasks = {} |
| 2622 | |
| 2623 | def build_scenequeue_data(sqdata, rqdata, rq, cooker, stampcache, sqrq): |
| 2624 | |
| 2625 | sq_revdeps = {} |
| 2626 | sq_revdeps_squash = {} |
| 2627 | sq_collated_deps = {} |
| 2628 | |
| 2629 | # We need to construct a dependency graph for the setscene functions. Intermediate |
| 2630 | # dependencies between the setscene tasks only complicate the code. This code |
| 2631 | # therefore aims to collapse the huge runqueue dependency tree into a smaller one |
| 2632 | # only containing the setscene functions. |
| 2633 | |
| 2634 | rqdata.init_progress_reporter.next_stage() |
| 2635 | |
| 2636 | # First process the chains up to the first setscene task. |
| 2637 | endpoints = {} |
| 2638 | for tid in rqdata.runtaskentries: |
| 2639 | sq_revdeps[tid] = copy.copy(rqdata.runtaskentries[tid].revdeps) |
| 2640 | sq_revdeps_squash[tid] = set() |
| 2641 | if (len(sq_revdeps[tid]) == 0) and tid not in rqdata.runq_setscene_tids: |
| 2642 | #bb.warn("Added endpoint %s" % (tid)) |
| 2643 | endpoints[tid] = set() |
| 2644 | |
| 2645 | rqdata.init_progress_reporter.next_stage() |
| 2646 | |
| 2647 | # Secondly process the chains between setscene tasks. |
| 2648 | for tid in rqdata.runq_setscene_tids: |
| 2649 | sq_collated_deps[tid] = set() |
| 2650 | #bb.warn("Added endpoint 2 %s" % (tid)) |
| 2651 | for dep in rqdata.runtaskentries[tid].depends: |
| 2652 | if tid in sq_revdeps[dep]: |
| 2653 | sq_revdeps[dep].remove(tid) |
| 2654 | if dep not in endpoints: |
| 2655 | endpoints[dep] = set() |
| 2656 | #bb.warn(" Added endpoint 3 %s" % (dep)) |
| 2657 | endpoints[dep].add(tid) |
| 2658 | |
| 2659 | rqdata.init_progress_reporter.next_stage() |
| 2660 | |
| 2661 | def process_endpoints(endpoints): |
| 2662 | newendpoints = {} |
| 2663 | for point, task in endpoints.items(): |
| 2664 | tasks = set() |
| 2665 | if task: |
| 2666 | tasks |= task |
| 2667 | if sq_revdeps_squash[point]: |
| 2668 | tasks |= sq_revdeps_squash[point] |
| 2669 | if point not in rqdata.runq_setscene_tids: |
| 2670 | for t in tasks: |
| 2671 | sq_collated_deps[t].add(point) |
| 2672 | sq_revdeps_squash[point] = set() |
| 2673 | if point in rqdata.runq_setscene_tids: |
| 2674 | sq_revdeps_squash[point] = tasks |
| 2675 | tasks = set() |
| 2676 | continue |
| 2677 | for dep in rqdata.runtaskentries[point].depends: |
| 2678 | if point in sq_revdeps[dep]: |
| 2679 | sq_revdeps[dep].remove(point) |
| 2680 | if tasks: |
| 2681 | sq_revdeps_squash[dep] |= tasks |
| 2682 | if len(sq_revdeps[dep]) == 0 and dep not in rqdata.runq_setscene_tids: |
| 2683 | newendpoints[dep] = task |
| 2684 | if len(newendpoints) != 0: |
| 2685 | process_endpoints(newendpoints) |
| 2686 | |
| 2687 | process_endpoints(endpoints) |
| 2688 | |
| 2689 | rqdata.init_progress_reporter.next_stage() |
| 2690 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2691 | # Build a list of tasks which are "unskippable" |
| 2692 | # These are direct endpoints referenced by the build upto and including setscene tasks |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2693 | # Take the build endpoints (no revdeps) and find the sstate tasks they depend upon |
| 2694 | new = True |
| 2695 | for tid in rqdata.runtaskentries: |
| 2696 | if len(rqdata.runtaskentries[tid].revdeps) == 0: |
| 2697 | sqdata.unskippable.add(tid) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2698 | sqdata.unskippable |= sqrq.cantskip |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2699 | while new: |
| 2700 | new = False |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2701 | orig = sqdata.unskippable.copy() |
| 2702 | for tid in sorted(orig, reverse=True): |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2703 | if tid in rqdata.runq_setscene_tids: |
| 2704 | continue |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2705 | if len(rqdata.runtaskentries[tid].depends) == 0: |
| 2706 | # These are tasks which have no setscene tasks in their chain, need to mark as directly buildable |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2707 | sqrq.setbuildable(tid) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2708 | sqdata.unskippable |= rqdata.runtaskentries[tid].depends |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2709 | if sqdata.unskippable != orig: |
| 2710 | new = True |
| 2711 | |
| 2712 | sqrq.tasks_scenequeue_done |= sqdata.unskippable.difference(rqdata.runq_setscene_tids) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2713 | |
| 2714 | rqdata.init_progress_reporter.next_stage(len(rqdata.runtaskentries)) |
| 2715 | |
| 2716 | # Sanity check all dependencies could be changed to setscene task references |
| 2717 | for taskcounter, tid in enumerate(rqdata.runtaskentries): |
| 2718 | if tid in rqdata.runq_setscene_tids: |
| 2719 | pass |
| 2720 | elif len(sq_revdeps_squash[tid]) != 0: |
| 2721 | bb.msg.fatal("RunQueue", "Something went badly wrong during scenequeue generation, aborting. Please report this problem.") |
| 2722 | else: |
| 2723 | del sq_revdeps_squash[tid] |
| 2724 | rqdata.init_progress_reporter.update(taskcounter) |
| 2725 | |
| 2726 | rqdata.init_progress_reporter.next_stage() |
| 2727 | |
| 2728 | # Resolve setscene inter-task dependencies |
| 2729 | # e.g. do_sometask_setscene[depends] = "targetname:do_someothertask_setscene" |
| 2730 | # Note that anything explicitly depended upon will have its reverse dependencies removed to avoid circular dependencies |
| 2731 | for tid in rqdata.runq_setscene_tids: |
| 2732 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 2733 | realtid = tid + "_setscene" |
| 2734 | idepends = rqdata.taskData[mc].taskentries[realtid].idepends |
| 2735 | sqdata.stamps[tid] = bb.build.stampfile(taskname + "_setscene", rqdata.dataCaches[mc], taskfn, noextra=True) |
| 2736 | for (depname, idependtask) in idepends: |
| 2737 | |
| 2738 | if depname not in rqdata.taskData[mc].build_targets: |
| 2739 | continue |
| 2740 | |
| 2741 | depfn = rqdata.taskData[mc].build_targets[depname][0] |
| 2742 | if depfn is None: |
| 2743 | continue |
| 2744 | deptid = depfn + ":" + idependtask.replace("_setscene", "") |
| 2745 | if deptid not in rqdata.runtaskentries: |
| 2746 | bb.msg.fatal("RunQueue", "Task %s depends upon non-existent task %s:%s" % (realtid, depfn, idependtask)) |
| 2747 | |
| 2748 | if not deptid in sqdata.sq_harddeps: |
| 2749 | sqdata.sq_harddeps[deptid] = set() |
| 2750 | sqdata.sq_harddeps[deptid].add(tid) |
| 2751 | |
| 2752 | sq_revdeps_squash[tid].add(deptid) |
| 2753 | # Have to zero this to avoid circular dependencies |
| 2754 | sq_revdeps_squash[deptid] = set() |
| 2755 | |
| 2756 | rqdata.init_progress_reporter.next_stage() |
| 2757 | |
| 2758 | for task in sqdata.sq_harddeps: |
| 2759 | for dep in sqdata.sq_harddeps[task]: |
| 2760 | sq_revdeps_squash[dep].add(task) |
| 2761 | |
| 2762 | rqdata.init_progress_reporter.next_stage() |
| 2763 | |
| 2764 | #for tid in sq_revdeps_squash: |
| 2765 | # data = "" |
| 2766 | # for dep in sq_revdeps_squash[tid]: |
| 2767 | # data = data + "\n %s" % dep |
| 2768 | # bb.warn("Task %s_setscene: is %s " % (tid, data)) |
| 2769 | |
| 2770 | sqdata.sq_revdeps = sq_revdeps_squash |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2771 | sqdata.sq_covered_tasks = sq_collated_deps |
| 2772 | |
| 2773 | # Build reverse version of revdeps to populate deps structure |
| 2774 | for tid in sqdata.sq_revdeps: |
| 2775 | sqdata.sq_deps[tid] = set() |
| 2776 | for tid in sqdata.sq_revdeps: |
| 2777 | for dep in sqdata.sq_revdeps[tid]: |
| 2778 | sqdata.sq_deps[dep].add(tid) |
| 2779 | |
| 2780 | rqdata.init_progress_reporter.next_stage() |
| 2781 | |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2782 | sqdata.multiconfigs = set() |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2783 | for tid in sqdata.sq_revdeps: |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2784 | sqdata.multiconfigs.add(mc_from_tid(tid)) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2785 | if len(sqdata.sq_revdeps[tid]) == 0: |
| 2786 | sqrq.sq_buildable.add(tid) |
| 2787 | |
| 2788 | rqdata.init_progress_reporter.finish() |
| 2789 | |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2790 | sqdata.noexec = set() |
| 2791 | sqdata.stamppresent = set() |
| 2792 | sqdata.valid = set() |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2793 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 2794 | sqdata.hashes = {} |
| 2795 | sqrq.sq_deferred = {} |
| 2796 | for mc in sorted(sqdata.multiconfigs): |
| 2797 | for tid in sorted(sqdata.sq_revdeps): |
| 2798 | if mc_from_tid(tid) != mc: |
| 2799 | continue |
| 2800 | h = pending_hash_index(tid, rqdata) |
| 2801 | if h not in sqdata.hashes: |
| 2802 | sqdata.hashes[h] = tid |
| 2803 | else: |
| 2804 | sqrq.sq_deferred[tid] = sqdata.hashes[h] |
| 2805 | bb.note("Deferring %s after %s" % (tid, sqdata.hashes[h])) |
| 2806 | |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 2807 | update_scenequeue_data(sqdata.sq_revdeps, sqdata, rqdata, rq, cooker, stampcache, sqrq, summary=True) |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2808 | |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 2809 | # Compute a list of 'stale' sstate tasks where the current hash does not match the one |
| 2810 | # in any stamp files. Pass the list out to metadata as an event. |
| 2811 | found = {} |
| 2812 | for tid in rqdata.runq_setscene_tids: |
| 2813 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 2814 | stamps = bb.build.find_stale_stamps(taskname, rqdata.dataCaches[mc], taskfn) |
| 2815 | if stamps: |
| 2816 | if mc not in found: |
| 2817 | found[mc] = {} |
| 2818 | found[mc][tid] = stamps |
| 2819 | for mc in found: |
| 2820 | event = bb.event.StaleSetSceneTasks(found[mc]) |
| 2821 | bb.event.fire(event, cooker.databuilder.mcdata[mc]) |
| 2822 | |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 2823 | def check_setscene_stamps(tid, rqdata, rq, stampcache, noexecstamp=False): |
| 2824 | |
| 2825 | (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) |
| 2826 | |
| 2827 | taskdep = rqdata.dataCaches[mc].task_deps[taskfn] |
| 2828 | |
| 2829 | if 'noexec' in taskdep and taskname in taskdep['noexec']: |
| 2830 | bb.build.make_stamp(taskname + "_setscene", rqdata.dataCaches[mc], taskfn) |
| 2831 | return True, False |
| 2832 | |
| 2833 | if rq.check_stamp_task(tid, taskname + "_setscene", cache=stampcache): |
| 2834 | logger.debug2('Setscene stamp current for task %s', tid) |
| 2835 | return False, True |
| 2836 | |
| 2837 | if rq.check_stamp_task(tid, taskname, recurse = True, cache=stampcache): |
| 2838 | logger.debug2('Normal stamp current for task %s', tid) |
| 2839 | return False, True |
| 2840 | |
| 2841 | return False, False |
| 2842 | |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 2843 | def update_scenequeue_data(tids, sqdata, rqdata, rq, cooker, stampcache, sqrq, summary=True): |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2844 | |
| 2845 | tocheck = set() |
| 2846 | |
| 2847 | for tid in sorted(tids): |
| 2848 | if tid in sqdata.stamppresent: |
| 2849 | sqdata.stamppresent.remove(tid) |
| 2850 | if tid in sqdata.valid: |
| 2851 | sqdata.valid.remove(tid) |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 2852 | if tid in sqdata.outrightfail: |
| 2853 | sqdata.outrightfail.remove(tid) |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2854 | |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 2855 | noexec, stamppresent = check_setscene_stamps(tid, rqdata, rq, stampcache, noexecstamp=True) |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2856 | |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 2857 | if noexec: |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2858 | sqdata.noexec.add(tid) |
| 2859 | sqrq.sq_task_skip(tid) |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2860 | continue |
| 2861 | |
Andrew Geissler | 3b8a17c | 2021-04-15 15:55:55 -0500 | [diff] [blame] | 2862 | if stamppresent: |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2863 | sqdata.stamppresent.add(tid) |
| 2864 | sqrq.sq_task_skip(tid) |
| 2865 | continue |
| 2866 | |
| 2867 | tocheck.add(tid) |
| 2868 | |
Brad Bishop | 1d80a2e | 2019-11-15 16:35:03 -0500 | [diff] [blame] | 2869 | sqdata.valid |= rq.validate_hashes(tocheck, cooker.data, len(sqdata.stamppresent), False, summary=summary) |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 2870 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 2871 | for tid in tids: |
| 2872 | if tid in sqdata.stamppresent: |
| 2873 | continue |
| 2874 | if tid in sqdata.valid: |
| 2875 | continue |
| 2876 | if tid in sqdata.noexec: |
| 2877 | continue |
| 2878 | if tid in sqrq.scenequeue_covered: |
| 2879 | continue |
| 2880 | if tid in sqrq.scenequeue_notcovered: |
| 2881 | continue |
| 2882 | if tid in sqrq.sq_deferred: |
| 2883 | continue |
| 2884 | sqdata.outrightfail.add(tid) |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 2885 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2886 | class TaskFailure(Exception): |
| 2887 | """ |
| 2888 | Exception raised when a task in a runqueue fails |
| 2889 | """ |
| 2890 | def __init__(self, x): |
| 2891 | self.args = x |
| 2892 | |
| 2893 | |
| 2894 | class runQueueExitWait(bb.event.Event): |
| 2895 | """ |
| 2896 | Event when waiting for task processes to exit |
| 2897 | """ |
| 2898 | |
| 2899 | def __init__(self, remain): |
| 2900 | self.remain = remain |
| 2901 | self.message = "Waiting for %s active tasks to finish" % remain |
| 2902 | bb.event.Event.__init__(self) |
| 2903 | |
| 2904 | class runQueueEvent(bb.event.Event): |
| 2905 | """ |
| 2906 | Base runQueue event class |
| 2907 | """ |
| 2908 | def __init__(self, task, stats, rq): |
| 2909 | self.taskid = task |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2910 | self.taskstring = task |
| 2911 | self.taskname = taskname_from_tid(task) |
| 2912 | self.taskfile = fn_from_tid(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2913 | self.taskhash = rq.rqdata.get_task_hash(task) |
| 2914 | self.stats = stats.copy() |
| 2915 | bb.event.Event.__init__(self) |
| 2916 | |
| 2917 | class sceneQueueEvent(runQueueEvent): |
| 2918 | """ |
| 2919 | Base sceneQueue event class |
| 2920 | """ |
| 2921 | def __init__(self, task, stats, rq, noexec=False): |
| 2922 | runQueueEvent.__init__(self, task, stats, rq) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 2923 | self.taskstring = task + "_setscene" |
| 2924 | self.taskname = taskname_from_tid(task) + "_setscene" |
| 2925 | self.taskfile = fn_from_tid(task) |
| 2926 | self.taskhash = rq.rqdata.get_task_hash(task) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2927 | |
| 2928 | class runQueueTaskStarted(runQueueEvent): |
| 2929 | """ |
| 2930 | Event notifying a task was started |
| 2931 | """ |
| 2932 | def __init__(self, task, stats, rq, noexec=False): |
| 2933 | runQueueEvent.__init__(self, task, stats, rq) |
| 2934 | self.noexec = noexec |
| 2935 | |
| 2936 | class sceneQueueTaskStarted(sceneQueueEvent): |
| 2937 | """ |
| 2938 | Event notifying a setscene task was started |
| 2939 | """ |
| 2940 | def __init__(self, task, stats, rq, noexec=False): |
| 2941 | sceneQueueEvent.__init__(self, task, stats, rq) |
| 2942 | self.noexec = noexec |
| 2943 | |
| 2944 | class runQueueTaskFailed(runQueueEvent): |
| 2945 | """ |
| 2946 | Event notifying a task failed |
| 2947 | """ |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 2948 | def __init__(self, task, stats, exitcode, rq, fakeroot_log=None): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2949 | runQueueEvent.__init__(self, task, stats, rq) |
| 2950 | self.exitcode = exitcode |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 2951 | self.fakeroot_log = fakeroot_log |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2952 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 2953 | def __str__(self): |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 2954 | if self.fakeroot_log: |
| 2955 | return "Task (%s) failed with exit code '%s' \nPseudo log:\n%s" % (self.taskstring, self.exitcode, self.fakeroot_log) |
| 2956 | else: |
| 2957 | return "Task (%s) failed with exit code '%s'" % (self.taskstring, self.exitcode) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 2958 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2959 | class sceneQueueTaskFailed(sceneQueueEvent): |
| 2960 | """ |
| 2961 | Event notifying a setscene task failed |
| 2962 | """ |
| 2963 | def __init__(self, task, stats, exitcode, rq): |
| 2964 | sceneQueueEvent.__init__(self, task, stats, rq) |
| 2965 | self.exitcode = exitcode |
| 2966 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 2967 | def __str__(self): |
| 2968 | return "Setscene task (%s) failed with exit code '%s' - real task will be run instead" % (self.taskstring, self.exitcode) |
| 2969 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2970 | class sceneQueueComplete(sceneQueueEvent): |
| 2971 | """ |
| 2972 | Event when all the sceneQueue tasks are complete |
| 2973 | """ |
| 2974 | def __init__(self, stats, rq): |
| 2975 | self.stats = stats.copy() |
| 2976 | bb.event.Event.__init__(self) |
| 2977 | |
| 2978 | class runQueueTaskCompleted(runQueueEvent): |
| 2979 | """ |
| 2980 | Event notifying a task completed |
| 2981 | """ |
| 2982 | |
| 2983 | class sceneQueueTaskCompleted(sceneQueueEvent): |
| 2984 | """ |
| 2985 | Event notifying a setscene task completed |
| 2986 | """ |
| 2987 | |
| 2988 | class runQueueTaskSkipped(runQueueEvent): |
| 2989 | """ |
| 2990 | Event notifying a task was skipped |
| 2991 | """ |
| 2992 | def __init__(self, task, stats, rq, reason): |
| 2993 | runQueueEvent.__init__(self, task, stats, rq) |
| 2994 | self.reason = reason |
| 2995 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 2996 | class taskUniHashUpdate(bb.event.Event): |
| 2997 | """ |
| 2998 | Base runQueue event class |
| 2999 | """ |
| 3000 | def __init__(self, task, unihash): |
| 3001 | self.taskid = task |
| 3002 | self.unihash = unihash |
| 3003 | bb.event.Event.__init__(self) |
| 3004 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3005 | class runQueuePipe(): |
| 3006 | """ |
| 3007 | Abstraction for a pipe between a worker thread and the server |
| 3008 | """ |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 3009 | def __init__(self, pipein, pipeout, d, rq, rqexec, fakerootlogs=None): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3010 | self.input = pipein |
| 3011 | if pipeout: |
| 3012 | pipeout.close() |
| 3013 | bb.utils.nonblockingfd(self.input) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3014 | self.queue = b"" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3015 | self.d = d |
| 3016 | self.rq = rq |
| 3017 | self.rqexec = rqexec |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 3018 | self.fakerootlogs = fakerootlogs |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3019 | |
| 3020 | def setrunqueueexec(self, rqexec): |
| 3021 | self.rqexec = rqexec |
| 3022 | |
| 3023 | def read(self): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3024 | for workers, name in [(self.rq.worker, "Worker"), (self.rq.fakeworker, "Fakeroot")]: |
| 3025 | for worker in workers.values(): |
| 3026 | worker.process.poll() |
| 3027 | if worker.process.returncode is not None and not self.rq.teardown: |
| 3028 | bb.error("%s process (%s) exited unexpectedly (%s), shutting down..." % (name, worker.process.pid, str(worker.process.returncode))) |
| 3029 | self.rq.finish_runqueue(True) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3030 | |
| 3031 | start = len(self.queue) |
| 3032 | try: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3033 | self.queue = self.queue + (self.input.read(102400) or b"") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3034 | except (OSError, IOError) as e: |
| 3035 | if e.errno != errno.EAGAIN: |
| 3036 | raise |
| 3037 | end = len(self.queue) |
| 3038 | found = True |
| 3039 | while found and len(self.queue): |
| 3040 | found = False |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3041 | index = self.queue.find(b"</event>") |
| 3042 | while index != -1 and self.queue.startswith(b"<event>"): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3043 | try: |
| 3044 | event = pickle.loads(self.queue[7:index]) |
Andrew Geissler | 475cb72 | 2020-07-10 16:00:51 -0500 | [diff] [blame] | 3045 | except (ValueError, pickle.UnpicklingError, AttributeError, IndexError) as e: |
| 3046 | if isinstance(e, pickle.UnpicklingError) and "truncated" in str(e): |
| 3047 | # The pickled data could contain "</event>" so search for the next occurance |
| 3048 | # unpickling again, this should be the only way an unpickle error could occur |
| 3049 | index = self.queue.find(b"</event>", index + 1) |
| 3050 | continue |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3051 | bb.msg.fatal("RunQueue", "failed load pickle '%s': '%s'" % (e, self.queue[7:index])) |
| 3052 | bb.event.fire_from_worker(event, self.d) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 3053 | if isinstance(event, taskUniHashUpdate): |
| 3054 | self.rqexec.updated_taskhash_queue.append((event.taskid, event.unihash)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3055 | found = True |
| 3056 | self.queue = self.queue[index+8:] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3057 | index = self.queue.find(b"</event>") |
| 3058 | index = self.queue.find(b"</exitcode>") |
| 3059 | while index != -1 and self.queue.startswith(b"<exitcode>"): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3060 | try: |
| 3061 | task, status = pickle.loads(self.queue[10:index]) |
Andrew Geissler | 475cb72 | 2020-07-10 16:00:51 -0500 | [diff] [blame] | 3062 | except (ValueError, pickle.UnpicklingError, AttributeError, IndexError) as e: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3063 | bb.msg.fatal("RunQueue", "failed load pickle '%s': '%s'" % (e, self.queue[10:index])) |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 3064 | (_, _, _, taskfn) = split_tid_mcfn(task) |
| 3065 | fakerootlog = None |
| 3066 | if self.fakerootlogs and taskfn and taskfn in self.fakerootlogs: |
| 3067 | fakerootlog = self.fakerootlogs[taskfn] |
| 3068 | self.rqexec.runqueue_process_waitpid(task, status, fakerootlog=fakerootlog) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3069 | found = True |
| 3070 | self.queue = self.queue[index+11:] |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3071 | index = self.queue.find(b"</exitcode>") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3072 | return (end > start) |
| 3073 | |
| 3074 | def close(self): |
| 3075 | while self.read(): |
| 3076 | continue |
| 3077 | if len(self.queue) > 0: |
| 3078 | print("Warning, worker left partial message: %s" % self.queue) |
| 3079 | self.input.close() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3080 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 3081 | def get_setscene_enforce_whitelist(d, targets): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 3082 | if d.getVar('BB_SETSCENE_ENFORCE') != '1': |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3083 | return None |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 3084 | whitelist = (d.getVar("BB_SETSCENE_ENFORCE_WHITELIST") or "").split() |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3085 | outlist = [] |
| 3086 | for item in whitelist[:]: |
| 3087 | if item.startswith('%:'): |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 3088 | for (mc, target, task, fn) in targets: |
| 3089 | outlist.append(target + ':' + item.split(':')[1]) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3090 | else: |
| 3091 | outlist.append(item) |
| 3092 | return outlist |
| 3093 | |
| 3094 | def check_setscene_enforce_whitelist(pn, taskname, whitelist): |
| 3095 | import fnmatch |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 3096 | if whitelist is not None: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 3097 | item = '%s:%s' % (pn, taskname) |
| 3098 | for whitelist_item in whitelist: |
| 3099 | if fnmatch.fnmatch(item, whitelist_item): |
| 3100 | return True |
| 3101 | return False |
| 3102 | return True |