diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-12 15:56:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-08-14 17:28:23 +0100 |
commit | 5f5bc81b3eb740374cef6e9bb4125e038b5add17 (patch) | |
tree | e617a30fe18d4e6ce826579be360c210654f8723 /bitbake/lib/bb | |
parent | abda938d665bacc867e6328926892fbeb414f517 (diff) | |
download | poky-5f5bc81b3eb740374cef6e9bb4125e038b5add17.tar.gz |
bitbake: cooker: Improve hash server startup code to avoid exit tracebacks
At exit the hashserv code was causing tracebacks as join() wasn't
being called from the thread that started the process. Ensure that
the hashserver is started from the pre_serve hook which is the
final thread the cooker runs in. This avoids the traceback at the
expense of some horrific poking into data stores which will ultimately
need improving through a proper API.
(Bitbake rev: 05888700e5f6cba48a26c8a4c447634a28e3baa6)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index ec1b35d724..0607fcc708 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -371,22 +371,10 @@ class BBCooker: | |||
371 | 371 | ||
372 | self.data.setVar('BB_CMDLINE', self.ui_cmdline) | 372 | self.data.setVar('BB_CMDLINE', self.ui_cmdline) |
373 | 373 | ||
374 | if self.data.getVar("BB_HASHSERVE") == "localhost:0": | ||
375 | if not self.hashserv: | ||
376 | dbfile = (self.data.getVar("PERSISTENT_DIR") or self.data.getVar("CACHE")) + "/hashserv.db" | ||
377 | self.hashserv = hashserv.create_server(('localhost', 0), dbfile, '') | ||
378 | self.hashservport = "localhost:" + str(self.hashserv.server_port) | ||
379 | self.hashserv.process = multiprocessing.Process(target=self.hashserv.serve_forever) | ||
380 | self.hashserv.process.daemon = True | ||
381 | self.hashserv.process.start() | ||
382 | self.data.setVar("BB_HASHSERVE", self.hashservport) | ||
383 | |||
384 | # | 374 | # |
385 | # Copy of the data store which has been expanded. | 375 | # Copy of the data store which has been expanded. |
386 | # Used for firing events and accessing variables where expansion needs to be accounted for | 376 | # Used for firing events and accessing variables where expansion needs to be accounted for |
387 | # | 377 | # |
388 | bb.parse.init_parser(self.data) | ||
389 | |||
390 | if CookerFeatures.BASEDATASTORE_TRACKING in self.featureset: | 378 | if CookerFeatures.BASEDATASTORE_TRACKING in self.featureset: |
391 | self.disableDataTracking() | 379 | self.disableDataTracking() |
392 | 380 | ||
@@ -404,6 +392,22 @@ class BBCooker: | |||
404 | except prserv.serv.PRServiceConfigError as e: | 392 | except prserv.serv.PRServiceConfigError as e: |
405 | bb.fatal("Unable to start PR Server, exitting") | 393 | bb.fatal("Unable to start PR Server, exitting") |
406 | 394 | ||
395 | if self.data.getVar("BB_HASHSERVE") == "localhost:0": | ||
396 | if not self.hashserv: | ||
397 | dbfile = (self.data.getVar("PERSISTENT_DIR") or self.data.getVar("CACHE")) + "/hashserv.db" | ||
398 | self.hashserv = hashserv.create_server(('localhost', 0), dbfile, '') | ||
399 | self.hashservport = "localhost:" + str(self.hashserv.server_port) | ||
400 | self.hashserv.process = multiprocessing.Process(target=self.hashserv.serve_forever) | ||
401 | self.hashserv.process.daemon = True | ||
402 | self.hashserv.process.start() | ||
403 | self.data.setVar("BB_HASHSERVE", self.hashservport) | ||
404 | self.databuilder.origdata.setVar("BB_HASHSERVE", self.hashservport) | ||
405 | self.databuilder.data.setVar("BB_HASHSERVE", self.hashservport) | ||
406 | for mc in self.databuilder.mcdata: | ||
407 | self.databuilder.mcdata[mc].setVar("BB_HASHSERVE", self.hashservport) | ||
408 | |||
409 | bb.parse.init_parser(self.data) | ||
410 | |||
407 | def enableDataTracking(self): | 411 | def enableDataTracking(self): |
408 | self.configuration.tracking = True | 412 | self.configuration.tracking = True |
409 | if hasattr(self, "data"): | 413 | if hasattr(self, "data"): |
@@ -1677,6 +1681,7 @@ class BBCooker: | |||
1677 | 1681 | ||
1678 | def reset(self): | 1682 | def reset(self): |
1679 | self.initConfigurationData() | 1683 | self.initConfigurationData() |
1684 | self.handlePRServ() | ||
1680 | 1685 | ||
1681 | def clientComplete(self): | 1686 | def clientComplete(self): |
1682 | """Called when the client is done using the server""" | 1687 | """Called when the client is done using the server""" |