blob: ffbc7894ef7a13911b239f0a708eea9a740ba254 [file] [log] [blame]
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001#!/usr/bin/env python3
2#
3# SPDX-License-Identifier: GPL-2.0-only
4#
5# Copyright (C) 2020 Richard Purdie
6#
7
8import os
9import sys
10import warnings
11import logging
12sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib'))
13
14if sys.getfilesystemencoding() != "utf-8":
15 sys.exit("Please use a locale setting which supports UTF-8 (such as LANG=en_US.UTF-8).\nPython can't change the filesystem locale after loading so we need a UTF-8 when Python starts or things won't work.")
16
17# Users shouldn't be running this code directly
18if len(sys.argv) != 10 or not sys.argv[1].startswith("decafbad"):
19 print("bitbake-server is meant for internal execution by bitbake itself, please don't use it standalone.")
20 sys.exit(1)
21
22import bb.server.process
23
24lockfd = int(sys.argv[2])
25readypipeinfd = int(sys.argv[3])
26logfile = sys.argv[4]
27lockname = sys.argv[5]
28sockname = sys.argv[6]
29timeout = sys.argv[7]
30xmlrpcinterface = (sys.argv[8], int(sys.argv[9]))
31if xmlrpcinterface[0] == "None":
32 xmlrpcinterface = (None, xmlrpcinterface[1])
33if timeout == "None":
34 timeout = None
35
36# Replace standard fds with our own
37with open('/dev/null', 'r') as si:
38 os.dup2(si.fileno(), sys.stdin.fileno())
39
40so = open(logfile, 'a+')
41os.dup2(so.fileno(), sys.stdout.fileno())
42os.dup2(so.fileno(), sys.stderr.fileno())
43
44# Have stdout and stderr be the same so log output matches chronologically
45# and there aren't two seperate buffers
46sys.stderr = sys.stdout
47
48logger = logging.getLogger("BitBake")
49# Ensure logging messages get sent to the UI as events
50handler = bb.event.LogHandler()
51logger.addHandler(handler)
52
53bb.server.process.execServer(lockfd, readypipeinfd, lockname, sockname, timeout, xmlrpcinterface)
54