Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | # |
| 2 | # BitBake Process based server. |
| 3 | # |
| 4 | # Copyright (C) 2010 Bob Foerster <robert@erafx.com> |
| 5 | # |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 6 | # SPDX-License-Identifier: GPL-2.0-only |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 7 | # |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 8 | |
| 9 | """ |
| 10 | This module implements a multiprocessing.Process based server for bitbake. |
| 11 | """ |
| 12 | |
| 13 | import bb |
| 14 | import bb.event |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 15 | import logging |
| 16 | import multiprocessing |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 17 | import threading |
| 18 | import array |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 19 | import os |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 20 | import sys |
| 21 | import time |
| 22 | import select |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 23 | import socket |
| 24 | import subprocess |
| 25 | import errno |
| 26 | import re |
| 27 | import datetime |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 28 | import pickle |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 29 | import bb.server.xmlrpcserver |
| 30 | from bb import daemonize |
| 31 | from multiprocessing import queues |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 32 | |
| 33 | logger = logging.getLogger('BitBake') |
| 34 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 35 | class ProcessTimeout(SystemExit): |
| 36 | pass |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 37 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 38 | def serverlog(msg): |
| 39 | print(str(os.getpid()) + " " + datetime.datetime.now().strftime('%H:%M:%S.%f') + " " + msg) |
| 40 | sys.stdout.flush() |
| 41 | |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 42 | class ProcessServer(): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 43 | profile_filename = "profile.log" |
| 44 | profile_processed_filename = "profile.log.processed" |
| 45 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 46 | def __init__(self, lock, lockname, sock, sockname, server_timeout, xmlrpcinterface): |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 47 | self.command_channel = False |
| 48 | self.command_channel_reply = False |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 49 | self.quit = False |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 50 | self.heartbeat_seconds = 1 # default, BB_HEARTBEAT_EVENT will be checked once we have a datastore. |
| 51 | self.next_heartbeat = time.time() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 52 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 53 | self.event_handle = None |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 54 | self.hadanyui = False |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 55 | self.haveui = False |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 56 | self.maxuiwait = 30 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 57 | self.xmlrpc = False |
| 58 | |
| 59 | self._idlefuns = {} |
| 60 | |
| 61 | self.bitbake_lock = lock |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 62 | self.bitbake_lock_name = lockname |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 63 | self.sock = sock |
| 64 | self.sockname = sockname |
| 65 | |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 66 | self.server_timeout = server_timeout |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 67 | self.timeout = self.server_timeout |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 68 | self.xmlrpcinterface = xmlrpcinterface |
| 69 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 70 | def register_idle_function(self, function, data): |
| 71 | """Register a function to be called while the server is idle""" |
| 72 | assert hasattr(function, '__call__') |
| 73 | self._idlefuns[function] = data |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 74 | |
| 75 | def run(self): |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 76 | |
| 77 | if self.xmlrpcinterface[0]: |
| 78 | self.xmlrpc = bb.server.xmlrpcserver.BitBakeXMLRPCServer(self.xmlrpcinterface, self.cooker, self) |
| 79 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 80 | serverlog("Bitbake XMLRPC server address: %s, server port: %s" % (self.xmlrpc.host, self.xmlrpc.port)) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 81 | |
| 82 | try: |
| 83 | self.bitbake_lock.seek(0) |
| 84 | self.bitbake_lock.truncate() |
| 85 | if self.xmlrpc: |
| 86 | self.bitbake_lock.write("%s %s:%s\n" % (os.getpid(), self.xmlrpc.host, self.xmlrpc.port)) |
| 87 | else: |
| 88 | self.bitbake_lock.write("%s\n" % (os.getpid())) |
| 89 | self.bitbake_lock.flush() |
| 90 | except Exception as e: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 91 | serverlog("Error writing to lock file: %s" % str(e)) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 92 | pass |
| 93 | |
| 94 | if self.cooker.configuration.profile: |
| 95 | try: |
| 96 | import cProfile as profile |
| 97 | except: |
| 98 | import profile |
| 99 | prof = profile.Profile() |
| 100 | |
| 101 | ret = profile.Profile.runcall(prof, self.main) |
| 102 | |
| 103 | prof.dump_stats("profile.log") |
| 104 | bb.utils.process_profilelog("profile.log") |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 105 | serverlog("Raw profiling information saved to profile.log and processed statistics to profile.log.processed") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 106 | |
| 107 | else: |
| 108 | ret = self.main() |
| 109 | |
| 110 | return ret |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 111 | |
| 112 | def main(self): |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 113 | self.cooker.pre_serve() |
| 114 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 115 | bb.utils.set_process_name("Cooker") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 116 | |
| 117 | ready = [] |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 118 | newconnections = [] |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 119 | |
| 120 | self.controllersock = False |
| 121 | fds = [self.sock] |
| 122 | if self.xmlrpc: |
| 123 | fds.append(self.xmlrpc) |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 124 | seendata = False |
| 125 | serverlog("Entering server connection loop") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 126 | |
| 127 | def disconnect_client(self, fds): |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 128 | serverlog("Disconnecting Client") |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 129 | if self.controllersock: |
| 130 | fds.remove(self.controllersock) |
| 131 | self.controllersock.close() |
| 132 | self.controllersock = False |
| 133 | if self.haveui: |
| 134 | fds.remove(self.command_channel) |
| 135 | bb.event.unregister_UIHhandler(self.event_handle, True) |
| 136 | self.command_channel_reply.writer.close() |
| 137 | self.event_writer.writer.close() |
| 138 | self.command_channel.close() |
| 139 | self.command_channel = False |
| 140 | del self.event_writer |
| 141 | self.lastui = time.time() |
| 142 | self.cooker.clientComplete() |
| 143 | self.haveui = False |
| 144 | ready = select.select(fds,[],[],0)[0] |
| 145 | if newconnections: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 146 | serverlog("Starting new client") |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 147 | conn = newconnections.pop(-1) |
| 148 | fds.append(conn) |
| 149 | self.controllersock = conn |
| 150 | elif self.timeout is None and not ready: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 151 | serverlog("No timeout, exiting.") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 152 | self.quit = True |
| 153 | |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 154 | self.lastui = time.time() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 155 | while not self.quit: |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 156 | if self.sock in ready: |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 157 | while select.select([self.sock],[],[],0)[0]: |
| 158 | controllersock, address = self.sock.accept() |
| 159 | if self.controllersock: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 160 | serverlog("Queuing %s (%s)" % (str(ready), str(newconnections))) |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 161 | newconnections.append(controllersock) |
| 162 | else: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 163 | serverlog("Accepting %s (%s)" % (str(ready), str(newconnections))) |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 164 | self.controllersock = controllersock |
| 165 | fds.append(controllersock) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 166 | if self.controllersock in ready: |
| 167 | try: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 168 | serverlog("Processing Client") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 169 | ui_fds = recvfds(self.controllersock, 3) |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 170 | serverlog("Connecting Client") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 171 | |
| 172 | # Where to write events to |
| 173 | writer = ConnectionWriter(ui_fds[0]) |
| 174 | self.event_handle = bb.event.register_UIHhandler(writer, True) |
| 175 | self.event_writer = writer |
| 176 | |
| 177 | # Where to read commands from |
| 178 | reader = ConnectionReader(ui_fds[1]) |
| 179 | fds.append(reader) |
| 180 | self.command_channel = reader |
| 181 | |
| 182 | # Where to send command return values to |
| 183 | writer = ConnectionWriter(ui_fds[2]) |
| 184 | self.command_channel_reply = writer |
| 185 | |
| 186 | self.haveui = True |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 187 | self.hadanyui = True |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 188 | |
| 189 | except (EOFError, OSError): |
| 190 | disconnect_client(self, fds) |
| 191 | |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 192 | if not self.timeout == -1.0 and not self.haveui and self.timeout and \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 193 | (self.lastui + self.timeout) < time.time(): |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 194 | serverlog("Server timeout, exiting.") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 195 | self.quit = True |
| 196 | |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 197 | # If we don't see a UI connection within maxuiwait, its unlikely we're going to see |
| 198 | # one. We have had issue with processes hanging indefinitely so timing out UI-less |
| 199 | # servers is useful. |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 200 | if not self.hadanyui and not self.xmlrpc and not self.timeout and (self.lastui + self.maxuiwait) < time.time(): |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 201 | serverlog("No UI connection within max timeout, exiting to avoid infinite loop.") |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 202 | self.quit = True |
| 203 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 204 | if self.command_channel in ready: |
| 205 | try: |
| 206 | command = self.command_channel.get() |
| 207 | except EOFError: |
| 208 | # Client connection shutting down |
| 209 | ready = [] |
| 210 | disconnect_client(self, fds) |
| 211 | continue |
| 212 | if command[0] == "terminateServer": |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 213 | self.quit = True |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 214 | continue |
| 215 | try: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 216 | serverlog("Running command %s" % command) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 217 | self.command_channel_reply.send(self.cooker.command.runCommand(command)) |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 218 | serverlog("Command Completed") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 219 | except Exception as e: |
Andrew Geissler | f034379 | 2020-11-18 10:42:21 -0600 | [diff] [blame] | 220 | serverlog('Exception in server main event loop running command %s (%s)' % (command, str(e))) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 221 | logger.exception('Exception in server main event loop running command %s (%s)' % (command, str(e))) |
| 222 | |
| 223 | if self.xmlrpc in ready: |
| 224 | self.xmlrpc.handle_requests() |
| 225 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 226 | if not seendata and hasattr(self.cooker, "data"): |
| 227 | heartbeat_event = self.cooker.data.getVar('BB_HEARTBEAT_EVENT') |
| 228 | if heartbeat_event: |
| 229 | try: |
| 230 | self.heartbeat_seconds = float(heartbeat_event) |
| 231 | except: |
| 232 | bb.warn('Ignoring invalid BB_HEARTBEAT_EVENT=%s, must be a float specifying seconds.' % heartbeat_event) |
| 233 | |
| 234 | self.timeout = self.server_timeout or self.cooker.data.getVar('BB_SERVER_TIMEOUT') |
| 235 | try: |
| 236 | if self.timeout: |
| 237 | self.timeout = float(self.timeout) |
| 238 | except: |
| 239 | bb.warn('Ignoring invalid BB_SERVER_TIMEOUT=%s, must be a float specifying seconds.' % self.timeout) |
| 240 | seendata = True |
| 241 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 242 | ready = self.idle_commands(.1, fds) |
| 243 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 244 | if len(threading.enumerate()) != 1: |
| 245 | serverlog("More than one thread left?: " + str(threading.enumerate())) |
| 246 | |
| 247 | serverlog("Exiting") |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 248 | # Remove the socket file so we don't get any more connections to avoid races |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 249 | try: |
| 250 | os.unlink(self.sockname) |
| 251 | except: |
| 252 | pass |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 253 | self.sock.close() |
| 254 | |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 255 | try: |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 256 | self.cooker.shutdown(True) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 257 | self.cooker.notifier.stop() |
| 258 | self.cooker.confignotifier.stop() |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 259 | except: |
| 260 | pass |
| 261 | |
| 262 | self.cooker.post_serve() |
| 263 | |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 264 | # Flush logs before we release the lock |
| 265 | sys.stdout.flush() |
| 266 | sys.stderr.flush() |
| 267 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 268 | # Finally release the lockfile but warn about other processes holding it open |
| 269 | lock = self.bitbake_lock |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 270 | lockfile = self.bitbake_lock_name |
| 271 | |
| 272 | def get_lock_contents(lockfile): |
| 273 | try: |
| 274 | with open(lockfile, "r") as f: |
| 275 | return f.readlines() |
| 276 | except FileNotFoundError: |
| 277 | return None |
| 278 | |
| 279 | lockcontents = get_lock_contents(lockfile) |
| 280 | serverlog("Original lockfile contents: " + str(lockcontents)) |
| 281 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 282 | lock.close() |
| 283 | lock = None |
| 284 | |
| 285 | while not lock: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 286 | i = 0 |
| 287 | lock = None |
| 288 | while not lock and i < 30: |
| 289 | lock = bb.utils.lockfile(lockfile, shared=False, retry=False, block=False) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 290 | if not lock: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 291 | newlockcontents = get_lock_contents(lockfile) |
| 292 | if newlockcontents != lockcontents: |
| 293 | # A new server was started, the lockfile contents changed, we can exit |
| 294 | serverlog("Lockfile now contains different contents, exiting: " + str(newlockcontents)) |
| 295 | return |
| 296 | time.sleep(0.1) |
| 297 | i += 1 |
| 298 | if lock: |
| 299 | # We hold the lock so we can remove the file (hide stale pid data) |
| 300 | # via unlockfile. |
| 301 | bb.utils.unlockfile(lock) |
| 302 | serverlog("Exiting as we could obtain the lock") |
| 303 | return |
| 304 | |
| 305 | if not lock: |
| 306 | # Some systems may not have lsof available |
| 307 | procs = None |
| 308 | try: |
| 309 | procs = subprocess.check_output(["lsof", '-w', lockfile], stderr=subprocess.STDOUT) |
| 310 | except subprocess.CalledProcessError: |
| 311 | # File was deleted? |
| 312 | continue |
| 313 | except OSError as e: |
| 314 | if e.errno != errno.ENOENT: |
| 315 | raise |
| 316 | if procs is None: |
| 317 | # Fall back to fuser if lsof is unavailable |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 318 | try: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 319 | procs = subprocess.check_output(["fuser", '-v', lockfile], stderr=subprocess.STDOUT) |
| 320 | except subprocess.CalledProcessError: |
| 321 | # File was deleted? |
| 322 | continue |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 323 | except OSError as e: |
| 324 | if e.errno != errno.ENOENT: |
| 325 | raise |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 326 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 327 | msg = "Delaying shutdown due to active processes which appear to be holding bitbake.lock" |
| 328 | if procs: |
| 329 | msg += ":\n%s" % str(procs.decode("utf-8")) |
| 330 | serverlog(msg) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 331 | |
| 332 | def idle_commands(self, delay, fds=None): |
| 333 | nextsleep = delay |
| 334 | if not fds: |
| 335 | fds = [] |
| 336 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 337 | for function, data in list(self._idlefuns.items()): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 338 | try: |
| 339 | retval = function(self, data, False) |
| 340 | if retval is False: |
| 341 | del self._idlefuns[function] |
| 342 | nextsleep = None |
| 343 | elif retval is True: |
| 344 | nextsleep = None |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 345 | elif isinstance(retval, float) and nextsleep: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 346 | if (retval < nextsleep): |
| 347 | nextsleep = retval |
| 348 | elif nextsleep is None: |
| 349 | continue |
| 350 | else: |
| 351 | fds = fds + retval |
| 352 | except SystemExit: |
| 353 | raise |
| 354 | except Exception as exc: |
| 355 | if not isinstance(exc, bb.BBHandledException): |
| 356 | logger.exception('Running idle function') |
| 357 | del self._idlefuns[function] |
| 358 | self.quit = True |
| 359 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 360 | # Create new heartbeat event? |
| 361 | now = time.time() |
| 362 | if now >= self.next_heartbeat: |
| 363 | # We might have missed heartbeats. Just trigger once in |
| 364 | # that case and continue after the usual delay. |
| 365 | self.next_heartbeat += self.heartbeat_seconds |
| 366 | if self.next_heartbeat <= now: |
| 367 | self.next_heartbeat = now + self.heartbeat_seconds |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 368 | if hasattr(self.cooker, "data"): |
| 369 | heartbeat = bb.event.HeartbeatEvent(now) |
| 370 | bb.event.fire(heartbeat, self.cooker.data) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 371 | if nextsleep and now + nextsleep > self.next_heartbeat: |
| 372 | # Shorten timeout so that we we wake up in time for |
| 373 | # the heartbeat. |
| 374 | nextsleep = self.next_heartbeat - now |
| 375 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 376 | if nextsleep is not None: |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 377 | if self.xmlrpc: |
| 378 | nextsleep = self.xmlrpc.get_timeout(nextsleep) |
| 379 | try: |
| 380 | return select.select(fds,[],[],nextsleep)[0] |
| 381 | except InterruptedError: |
| 382 | # Ignore EINTR |
| 383 | return [] |
| 384 | else: |
| 385 | return select.select(fds,[],[],0)[0] |
| 386 | |
| 387 | |
| 388 | class ServerCommunicator(): |
| 389 | def __init__(self, connection, recv): |
| 390 | self.connection = connection |
| 391 | self.recv = recv |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 392 | |
| 393 | def runCommand(self, command): |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 394 | self.connection.send(command) |
| 395 | if not self.recv.poll(30): |
Andrew Geissler | b7d2861 | 2020-07-24 16:15:54 -0500 | [diff] [blame] | 396 | logger.info("No reply from server in 30s") |
Andrew Geissler | 475cb72 | 2020-07-10 16:00:51 -0500 | [diff] [blame] | 397 | if not self.recv.poll(30): |
| 398 | raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)") |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 399 | ret, exc = self.recv.get() |
| 400 | # Should probably turn all exceptions in exc back into exceptions? |
| 401 | # For now, at least handle BBHandledException |
| 402 | if exc and ("BBHandledException" in exc or "SystemExit" in exc): |
| 403 | raise bb.BBHandledException() |
| 404 | return ret, exc |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 405 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 406 | def updateFeatureSet(self, featureset): |
| 407 | _, error = self.runCommand(["setFeatures", featureset]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 408 | if error: |
| 409 | logger.error("Unable to set the cooker to the correct featureset: %s" % error) |
| 410 | raise BaseException(error) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 411 | |
| 412 | def getEventHandle(self): |
| 413 | handle, error = self.runCommand(["getUIHandlerNum"]) |
| 414 | if error: |
| 415 | logger.error("Unable to get UI Handler Number: %s" % error) |
| 416 | raise BaseException(error) |
| 417 | |
| 418 | return handle |
| 419 | |
| 420 | def terminateServer(self): |
| 421 | self.connection.send(['terminateServer']) |
| 422 | return |
| 423 | |
| 424 | class BitBakeProcessServerConnection(object): |
| 425 | def __init__(self, ui_channel, recv, eq, sock): |
| 426 | self.connection = ServerCommunicator(ui_channel, recv) |
| 427 | self.events = eq |
| 428 | # Save sock so it doesn't get gc'd for the life of our connection |
| 429 | self.socket_connection = sock |
| 430 | |
| 431 | def terminate(self): |
| 432 | self.socket_connection.close() |
| 433 | self.connection.connection.close() |
| 434 | self.connection.recv.close() |
| 435 | return |
| 436 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 437 | start_log_format = '--- Starting bitbake server pid %s at %s ---' |
| 438 | start_log_datetime_format = '%Y-%m-%d %H:%M:%S.%f' |
| 439 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 440 | class BitBakeServer(object): |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 441 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 442 | def __init__(self, lock, sockname, featureset, server_timeout, xmlrpcinterface): |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 443 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 444 | self.server_timeout = server_timeout |
| 445 | self.xmlrpcinterface = xmlrpcinterface |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 446 | self.featureset = featureset |
| 447 | self.sockname = sockname |
| 448 | self.bitbake_lock = lock |
| 449 | self.readypipe, self.readypipein = os.pipe() |
| 450 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 451 | # Place the log in the builddirectory alongside the lock file |
| 452 | logfile = os.path.join(os.path.dirname(self.bitbake_lock.name), "bitbake-cookerdaemon.log") |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 453 | self.logfile = logfile |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 454 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 455 | startdatetime = datetime.datetime.now() |
| 456 | bb.daemonize.createDaemon(self._startServer, logfile) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 457 | self.bitbake_lock.close() |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 458 | os.close(self.readypipein) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 459 | |
| 460 | ready = ConnectionReader(self.readypipe) |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 461 | r = ready.poll(5) |
| 462 | if not r: |
| 463 | bb.note("Bitbake server didn't start within 5 seconds, waiting for 90") |
| 464 | r = ready.poll(90) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 465 | if r: |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 466 | try: |
| 467 | r = ready.get() |
| 468 | except EOFError: |
| 469 | # Trap the child exitting/closing the pipe and error out |
| 470 | r = None |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 471 | if not r or r[0] != "r": |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 472 | ready.close() |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 473 | bb.error("Unable to start bitbake server (%s)" % str(r)) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 474 | if os.path.exists(logfile): |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 475 | logstart_re = re.compile(start_log_format % ('([0-9]+)', '([0-9-]+ [0-9:.]+)')) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 476 | started = False |
| 477 | lines = [] |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 478 | lastlines = [] |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 479 | with open(logfile, "r") as f: |
| 480 | for line in f: |
| 481 | if started: |
| 482 | lines.append(line) |
| 483 | else: |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 484 | lastlines.append(line) |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 485 | res = logstart_re.search(line.rstrip()) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 486 | if res: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 487 | ldatetime = datetime.datetime.strptime(res.group(2), start_log_datetime_format) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 488 | if ldatetime >= startdatetime: |
| 489 | started = True |
| 490 | lines.append(line) |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 491 | if len(lastlines) > 60: |
| 492 | lastlines = lastlines[-60:] |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 493 | if lines: |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 494 | if len(lines) > 60: |
| 495 | bb.error("Last 60 lines of server log for this session (%s):\n%s" % (logfile, "".join(lines[-60:]))) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 496 | else: |
| 497 | bb.error("Server log for this session (%s):\n%s" % (logfile, "".join(lines))) |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 498 | elif lastlines: |
| 499 | bb.error("Server didn't start, last 60 loglines (%s):\n%s" % (logfile, "".join(lastlines))) |
| 500 | else: |
| 501 | bb.error("%s doesn't exist" % logfile) |
| 502 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 503 | raise SystemExit(1) |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 504 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 505 | ready.close() |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 506 | |
| 507 | def _startServer(self): |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 508 | os.close(self.readypipe) |
| 509 | os.set_inheritable(self.bitbake_lock.fileno(), True) |
| 510 | os.set_inheritable(self.readypipein, True) |
| 511 | serverscript = os.path.realpath(os.path.dirname(__file__) + "/../../../bin/bitbake-server") |
| 512 | os.execl(sys.executable, "bitbake-server", serverscript, "decafbad", str(self.bitbake_lock.fileno()), str(self.readypipein), self.logfile, self.bitbake_lock.name, self.sockname, str(self.server_timeout), str(self.xmlrpcinterface[0]), str(self.xmlrpcinterface[1])) |
Brad Bishop | e2d5b61 | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 513 | |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 514 | def execServer(lockfd, readypipeinfd, lockname, sockname, server_timeout, xmlrpcinterface): |
| 515 | |
| 516 | import bb.cookerdata |
| 517 | import bb.cooker |
| 518 | |
| 519 | serverlog(start_log_format % (os.getpid(), datetime.datetime.now().strftime(start_log_datetime_format))) |
| 520 | |
| 521 | try: |
| 522 | bitbake_lock = os.fdopen(lockfd, "w") |
| 523 | |
| 524 | # Create server control socket |
| 525 | if os.path.exists(sockname): |
| 526 | os.unlink(sockname) |
| 527 | |
| 528 | sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) |
| 529 | # AF_UNIX has path length issues so chdir here to workaround |
| 530 | cwd = os.getcwd() |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 531 | try: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 532 | os.chdir(os.path.dirname(sockname)) |
| 533 | sock.bind(os.path.basename(sockname)) |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 534 | finally: |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 535 | os.chdir(cwd) |
| 536 | sock.listen(1) |
| 537 | |
| 538 | server = ProcessServer(bitbake_lock, lockname, sock, sockname, server_timeout, xmlrpcinterface) |
| 539 | writer = ConnectionWriter(readypipeinfd) |
| 540 | try: |
| 541 | featureset = [] |
| 542 | cooker = bb.cooker.BBCooker(featureset, server.register_idle_function) |
| 543 | except bb.BBHandledException: |
| 544 | return None |
| 545 | writer.send("r") |
| 546 | writer.close() |
| 547 | server.cooker = cooker |
| 548 | serverlog("Started bitbake server pid %d" % os.getpid()) |
| 549 | |
| 550 | server.run() |
| 551 | finally: |
| 552 | # Flush any ,essages/errors to the logfile before exit |
| 553 | sys.stdout.flush() |
| 554 | sys.stderr.flush() |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 555 | |
| 556 | def connectProcessServer(sockname, featureset): |
| 557 | # Connect to socket |
| 558 | sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) |
| 559 | # AF_UNIX has path length issues so chdir here to workaround |
| 560 | cwd = os.getcwd() |
| 561 | |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 562 | readfd = writefd = readfd1 = writefd1 = readfd2 = writefd2 = None |
| 563 | eq = command_chan_recv = command_chan = None |
| 564 | |
| 565 | sock.settimeout(10) |
| 566 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 567 | try: |
Brad Bishop | e2d5b61 | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 568 | try: |
| 569 | os.chdir(os.path.dirname(sockname)) |
Brad Bishop | f058f49 | 2019-01-28 23:50:33 -0500 | [diff] [blame] | 570 | finished = False |
| 571 | while not finished: |
| 572 | try: |
| 573 | sock.connect(os.path.basename(sockname)) |
| 574 | finished = True |
| 575 | except IOError as e: |
| 576 | if e.errno == errno.EWOULDBLOCK: |
| 577 | pass |
Richard Purdie | 3da1114 | 2019-02-05 21:34:37 +0000 | [diff] [blame] | 578 | raise |
Brad Bishop | e2d5b61 | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 579 | finally: |
| 580 | os.chdir(cwd) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 581 | |
| 582 | # Send an fd for the remote to write events to |
| 583 | readfd, writefd = os.pipe() |
| 584 | eq = BBUIEventQueue(readfd) |
| 585 | # Send an fd for the remote to recieve commands from |
| 586 | readfd1, writefd1 = os.pipe() |
| 587 | command_chan = ConnectionWriter(writefd1) |
| 588 | # Send an fd for the remote to write commands results to |
| 589 | readfd2, writefd2 = os.pipe() |
| 590 | command_chan_recv = ConnectionReader(readfd2) |
| 591 | |
| 592 | sendfds(sock, [writefd, readfd1, writefd2]) |
| 593 | |
| 594 | server_connection = BitBakeProcessServerConnection(command_chan, command_chan_recv, eq, sock) |
| 595 | |
| 596 | # Close the ends of the pipes we won't use |
| 597 | for i in [writefd, readfd1, writefd2]: |
| 598 | os.close(i) |
| 599 | |
| 600 | server_connection.connection.updateFeatureSet(featureset) |
| 601 | |
| 602 | except (Exception, SystemExit) as e: |
| 603 | if command_chan_recv: |
| 604 | command_chan_recv.close() |
| 605 | if command_chan: |
| 606 | command_chan.close() |
| 607 | for i in [writefd, readfd1, writefd2]: |
| 608 | try: |
Brad Bishop | e2d5b61 | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 609 | if i: |
| 610 | os.close(i) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 611 | except OSError: |
| 612 | pass |
| 613 | sock.close() |
| 614 | raise |
| 615 | |
| 616 | return server_connection |
| 617 | |
| 618 | def sendfds(sock, fds): |
| 619 | '''Send an array of fds over an AF_UNIX socket.''' |
| 620 | fds = array.array('i', fds) |
| 621 | msg = bytes([len(fds) % 256]) |
| 622 | sock.sendmsg([msg], [(socket.SOL_SOCKET, socket.SCM_RIGHTS, fds)]) |
| 623 | |
| 624 | def recvfds(sock, size): |
| 625 | '''Receive an array of fds over an AF_UNIX socket.''' |
| 626 | a = array.array('i') |
| 627 | bytes_size = a.itemsize * size |
| 628 | msg, ancdata, flags, addr = sock.recvmsg(1, socket.CMSG_LEN(bytes_size)) |
| 629 | if not msg and not ancdata: |
| 630 | raise EOFError |
| 631 | try: |
| 632 | if len(ancdata) != 1: |
| 633 | raise RuntimeError('received %d items of ancdata' % |
| 634 | len(ancdata)) |
| 635 | cmsg_level, cmsg_type, cmsg_data = ancdata[0] |
| 636 | if (cmsg_level == socket.SOL_SOCKET and |
| 637 | cmsg_type == socket.SCM_RIGHTS): |
| 638 | if len(cmsg_data) % a.itemsize != 0: |
| 639 | raise ValueError |
| 640 | a.frombytes(cmsg_data) |
| 641 | assert len(a) % 256 == msg[0] |
| 642 | return list(a) |
| 643 | except (ValueError, IndexError): |
| 644 | pass |
| 645 | raise RuntimeError('Invalid data received') |
| 646 | |
| 647 | class BBUIEventQueue: |
| 648 | def __init__(self, readfd): |
| 649 | |
| 650 | self.eventQueue = [] |
| 651 | self.eventQueueLock = threading.Lock() |
| 652 | self.eventQueueNotify = threading.Event() |
| 653 | |
| 654 | self.reader = ConnectionReader(readfd) |
| 655 | |
| 656 | self.t = threading.Thread() |
| 657 | self.t.setDaemon(True) |
| 658 | self.t.run = self.startCallbackHandler |
| 659 | self.t.start() |
| 660 | |
| 661 | def getEvent(self): |
| 662 | self.eventQueueLock.acquire() |
| 663 | |
| 664 | if len(self.eventQueue) == 0: |
| 665 | self.eventQueueLock.release() |
| 666 | return None |
| 667 | |
| 668 | item = self.eventQueue.pop(0) |
| 669 | |
| 670 | if len(self.eventQueue) == 0: |
| 671 | self.eventQueueNotify.clear() |
| 672 | |
| 673 | self.eventQueueLock.release() |
| 674 | return item |
| 675 | |
| 676 | def waitEvent(self, delay): |
| 677 | self.eventQueueNotify.wait(delay) |
| 678 | return self.getEvent() |
| 679 | |
| 680 | def queue_event(self, event): |
| 681 | self.eventQueueLock.acquire() |
| 682 | self.eventQueue.append(event) |
| 683 | self.eventQueueNotify.set() |
| 684 | self.eventQueueLock.release() |
| 685 | |
| 686 | def send_event(self, event): |
| 687 | self.queue_event(pickle.loads(event)) |
| 688 | |
| 689 | def startCallbackHandler(self): |
| 690 | bb.utils.set_process_name("UIEventQueue") |
| 691 | while True: |
| 692 | try: |
| 693 | self.reader.wait() |
| 694 | event = self.reader.get() |
| 695 | self.queue_event(event) |
| 696 | except EOFError: |
| 697 | # Easiest way to exit is to close the file descriptor to cause an exit |
| 698 | break |
| 699 | self.reader.close() |
| 700 | |
| 701 | class ConnectionReader(object): |
| 702 | |
| 703 | def __init__(self, fd): |
| 704 | self.reader = multiprocessing.connection.Connection(fd, writable=False) |
| 705 | self.rlock = multiprocessing.Lock() |
| 706 | |
| 707 | def wait(self, timeout=None): |
| 708 | return multiprocessing.connection.wait([self.reader], timeout) |
| 709 | |
| 710 | def poll(self, timeout=None): |
| 711 | return self.reader.poll(timeout) |
| 712 | |
| 713 | def get(self): |
| 714 | with self.rlock: |
| 715 | res = self.reader.recv_bytes() |
| 716 | return multiprocessing.reduction.ForkingPickler.loads(res) |
| 717 | |
| 718 | def fileno(self): |
| 719 | return self.reader.fileno() |
| 720 | |
| 721 | def close(self): |
| 722 | return self.reader.close() |
| 723 | |
| 724 | |
| 725 | class ConnectionWriter(object): |
| 726 | |
| 727 | def __init__(self, fd): |
| 728 | self.writer = multiprocessing.connection.Connection(fd, readable=False) |
| 729 | self.wlock = multiprocessing.Lock() |
| 730 | # Why bb.event needs this I have no idea |
| 731 | self.event = self |
| 732 | |
| 733 | def send(self, obj): |
| 734 | obj = multiprocessing.reduction.ForkingPickler.dumps(obj) |
| 735 | with self.wlock: |
| 736 | self.writer.send_bytes(obj) |
| 737 | |
| 738 | def fileno(self): |
| 739 | return self.writer.fileno() |
| 740 | |
| 741 | def close(self): |
| 742 | return self.writer.close() |