|
|
|
# Copyright 2012-2015 The Meson development team
|
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
"""A library of random helper functionality."""
|
|
|
|
|
|
|
|
import stat
|
tree-wide: remove unused imports
./setup.py:17:1: F401 'os' imported but unused
import os
^
./setup.py:37:1: F401 'stat.ST_MODE' imported but unused
from stat import ST_MODE
^
./run_tests.py:17:1: F401 'os' imported but unused
import subprocess, sys, os
^
./run_tests.py:18:1: F401 'shutil' imported but unused
import shutil
^
./run_unittests.py:23:1: F401 'mesonbuild.dependencies.Qt5Dependency' imported but unused
from mesonbuild.dependencies import PkgConfigDependency, Qt5Dependency
^
./mesonbuild/build.py:15:1: F401 '.coredata' imported but unused
from . import coredata
^
./mesonbuild/interpreter.py:32:1: F401 'subprocess' imported but unused
import os, sys, subprocess, shutil, uuid, re
^
./mesonbuild/interpreter.py:32:1: F401 're' imported but unused
import os, sys, subprocess, shutil, uuid, re
^
./mesonbuild/dependencies.py:23:1: F401 'subprocess' imported but unused
import os, stat, glob, subprocess, shutil
^
./mesonbuild/mesonlib.py:17:1: F401 'sys' imported but unused
import platform, subprocess, operator, os, shutil, re, sys
^
./mesonbuild/modules/qt5.py:15:1: F401 'subprocess' imported but unused
import os, subprocess
^
./mesonbuild/modules/pkgconfig.py:15:1: F401 '..coredata' imported but unused
from .. import coredata, build
^
./mesonbuild/scripts/scanbuild.py:15:1: F401 'sys' imported but unused
import sys, os
^
./mesonbuild/scripts/meson_exe.py:20:1: F401 'subprocess' imported but unused
import subprocess
^
./mesonbuild/scripts/meson_exe.py:22:1: F401 '..mesonlib.MesonException' imported but unused
from ..mesonlib import MesonException, Popen_safe
^
./mesonbuild/scripts/symbolextractor.py:23:1: F401 'subprocess' imported but unused
import os, sys, subprocess
^
./mesonbuild/scripts/symbolextractor.py:25:1: F401 '..mesonlib.MesonException' imported but unused
from ..mesonlib import MesonException, Popen_safe
^
./mesonbuild/scripts/meson_install.py:19:1: F401 '..mesonlib.MesonException' imported but unused
from ..mesonlib import MesonException, Popen_safe
^
./mesonbuild/scripts/yelphelper.py:15:1: F401 'sys' imported but unused
import sys, os
^
./mesonbuild/scripts/yelphelper.py:20:1: F401 '..mesonlib.MesonException' imported but unused
from ..mesonlib import MesonException
^
./mesonbuild/backend/vs2010backend.py:17:1: F401 're' imported but unused
import re
^
./test cases/vala/8 generated sources/src/copy_file.py:3:1: F401 'os' imported but unused
import os
^
./test cases/common/107 postconf/postconf.py:3:1: F401 'sys' imported but unused
import sys, os
^
./test cases/common/129 object only target/obj_generator.py:5:1: F401 'shutil' imported but unused
import sys, shutil, subprocess
^
./test cases/common/57 custom target chain/usetarget/subcomp.py:3:1: F401 'os' imported but unused
import sys, os
^
./test cases/common/95 dep fallback/subprojects/boblib/genbob.py:3:1: F401 'os' imported but unused
import os
^
./test cases/common/98 gen extra/srcgen.py:4:1: F401 'os' imported but unused
import os
^
./test cases/common/113 generatorcustom/gen.py:3:1: F401 'os' imported but unused
import sys, os
^
./test cases/common/113 generatorcustom/catter.py:3:1: F401 'os' imported but unused
import sys, os
^
./test cases/common/59 object generator/obj_generator.py:5:1: F401 'shutil' imported but unused
import sys, shutil, subprocess
^
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
8 years ago
|
|
|
import platform, subprocess, operator, os, shutil, re
|
|
|
|
|
|
|
|
from glob import glob
|
|
|
|
|
|
|
|
class MesonException(Exception):
|
|
|
|
'''Exceptions thrown by Meson'''
|
|
|
|
|
Fix several more lint errors
Found by Igor Gnatenko
************* Module mesonbuild.interpreter
E:1232,33: No value for argument 'interp' in constructor call (no-value-for-parameter)
************* Module mesonbuild.dependencies
E: 68, 4: An attribute defined in mesonbuild.dependencies line 39 hides this method (method-hidden)
************* Module mesonbuild.environment
E: 26, 0: class already defined line 19 (function-redefined)
E: 68,18: Undefined variable 'InterpreterException' (undefined-variable)
E:641,39: Undefined variable 'want_cross' (undefined-variable)
E:850,94: Undefined variable 'varname' (undefined-variable)
E:854,94: Undefined variable 'varname' (undefined-variable)
E:860,102: Undefined variable 'varname' (undefined-variable)
E:863,94: Undefined variable 'varname' (undefined-variable)
************* Module mesonbuild.modules.gnome
E:438,26: Undefined variable 'compilers' (undefined-variable)
8 years ago
|
|
|
class EnvironmentException(MesonException):
|
|
|
|
'''Exceptions thrown while processing and creating the build environment'''
|
Fix several more lint errors
Found by Igor Gnatenko
************* Module mesonbuild.interpreter
E:1232,33: No value for argument 'interp' in constructor call (no-value-for-parameter)
************* Module mesonbuild.dependencies
E: 68, 4: An attribute defined in mesonbuild.dependencies line 39 hides this method (method-hidden)
************* Module mesonbuild.environment
E: 26, 0: class already defined line 19 (function-redefined)
E: 68,18: Undefined variable 'InterpreterException' (undefined-variable)
E:641,39: Undefined variable 'want_cross' (undefined-variable)
E:850,94: Undefined variable 'varname' (undefined-variable)
E:854,94: Undefined variable 'varname' (undefined-variable)
E:860,102: Undefined variable 'varname' (undefined-variable)
E:863,94: Undefined variable 'varname' (undefined-variable)
************* Module mesonbuild.modules.gnome
E:438,26: Undefined variable 'compilers' (undefined-variable)
8 years ago
|
|
|
|
|
|
|
class FileMode:
|
|
|
|
# The first triad is for owner permissions, the second for group permissions,
|
|
|
|
# and the third for others (everyone else).
|
|
|
|
# For the 1st character:
|
|
|
|
# 'r' means can read
|
|
|
|
# '-' means not allowed
|
|
|
|
# For the 2nd character:
|
|
|
|
# 'w' means can write
|
|
|
|
# '-' means not allowed
|
|
|
|
# For the 3rd character:
|
|
|
|
# 'x' means can execute
|
|
|
|
# 's' means can execute and setuid/setgid is set (owner/group triads only)
|
|
|
|
# 'S' means cannot execute and setuid/setgid is set (owner/group triads only)
|
|
|
|
# 't' means can execute and sticky bit is set ("others" triads only)
|
|
|
|
# 'T' means cannot execute and sticky bit is set ("others" triads only)
|
|
|
|
# '-' means none of these are allowed
|
|
|
|
#
|
|
|
|
# The meanings of 'rwx' perms is not obvious for directories; see:
|
|
|
|
# https://www.hackinglinuxexposed.com/articles/20030424.html
|
|
|
|
#
|
|
|
|
# For information on this notation such as setuid/setgid/sticky bits, see:
|
|
|
|
# https://en.wikipedia.org/wiki/File_system_permissions#Symbolic_notation
|
|
|
|
symbolic_perms_regex = re.compile('[r-][w-][xsS-]' # Owner perms
|
|
|
|
'[r-][w-][xsS-]' # Group perms
|
|
|
|
'[r-][w-][xtT-]') # Others perms
|
|
|
|
|
|
|
|
def __init__(self, perms=None, owner=None, group=None):
|
|
|
|
self.perms_s = perms
|
|
|
|
self.perms = self.perms_s_to_bits(perms)
|
|
|
|
self.owner = owner
|
|
|
|
self.group = group
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
ret = '<FileMode: {!r} owner={} group={}'
|
|
|
|
return ret.format(self.perms_s, self.owner, self.group)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def perms_s_to_bits(cls, perms_s):
|
|
|
|
'''
|
|
|
|
Does the opposite of stat.filemode(), converts strings of the form
|
|
|
|
'rwxr-xr-x' to st_mode enums which can be passed to os.chmod()
|
|
|
|
'''
|
|
|
|
if perms_s is None:
|
|
|
|
# No perms specified, we will not touch the permissions
|
|
|
|
return -1
|
|
|
|
eg = 'rwxr-xr-x'
|
|
|
|
if not isinstance(perms_s, str):
|
|
|
|
msg = 'Install perms must be a string. For example, {!r}'
|
|
|
|
raise MesonException(msg.format(eg))
|
|
|
|
if len(perms_s) != 9 or not cls.symbolic_perms_regex.match(perms_s):
|
|
|
|
msg = 'File perms {!r} must be exactly 9 chars. For example, {!r}'
|
|
|
|
raise MesonException(msg.format(perms_s, eg))
|
|
|
|
perms = 0
|
|
|
|
# Owner perms
|
|
|
|
if perms_s[0] == 'r':
|
|
|
|
perms |= stat.S_IRUSR
|
|
|
|
if perms_s[1] == 'w':
|
|
|
|
perms |= stat.S_IWUSR
|
|
|
|
if perms_s[2] == 'x':
|
|
|
|
perms |= stat.S_IXUSR
|
|
|
|
elif perms_s[2] == 'S':
|
|
|
|
perms |= stat.S_ISUID
|
|
|
|
elif perms_s[2] == 's':
|
|
|
|
perms |= stat.S_IXUSR
|
|
|
|
perms |= stat.S_ISUID
|
|
|
|
# Group perms
|
|
|
|
if perms_s[3] == 'r':
|
|
|
|
perms |= stat.S_IRGRP
|
|
|
|
if perms_s[4] == 'w':
|
|
|
|
perms |= stat.S_IWGRP
|
|
|
|
if perms_s[5] == 'x':
|
|
|
|
perms |= stat.S_IXGRP
|
|
|
|
elif perms_s[5] == 'S':
|
|
|
|
perms |= stat.S_ISGID
|
|
|
|
elif perms_s[5] == 's':
|
|
|
|
perms |= stat.S_IXGRP
|
|
|
|
perms |= stat.S_ISGID
|
|
|
|
# Others perms
|
|
|
|
if perms_s[6] == 'r':
|
|
|
|
perms |= stat.S_IROTH
|
|
|
|
if perms_s[7] == 'w':
|
|
|
|
perms |= stat.S_IWOTH
|
|
|
|
if perms_s[8] == 'x':
|
|
|
|
perms |= stat.S_IXOTH
|
|
|
|
elif perms_s[8] == 'T':
|
|
|
|
perms |= stat.S_ISVTX
|
|
|
|
elif perms_s[8] == 't':
|
|
|
|
perms |= stat.S_IXOTH
|
|
|
|
perms |= stat.S_ISVTX
|
|
|
|
return perms
|
|
|
|
|
|
|
|
class File:
|
|
|
|
def __init__(self, is_built, subdir, fname):
|
|
|
|
self.is_built = is_built
|
|
|
|
self.subdir = subdir
|
|
|
|
self.fname = fname
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return os.path.join(self.subdir, self.fname)
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
ret = '<File: {0}'
|
|
|
|
if not self.is_built:
|
|
|
|
ret += ' (not built)'
|
|
|
|
ret += '>'
|
|
|
|
return ret.format(os.path.join(self.subdir, self.fname))
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def from_source_file(source_root, subdir, fname):
|
|
|
|
if not os.path.isfile(os.path.join(source_root, subdir, fname)):
|
|
|
|
raise MesonException('File %s does not exist.' % fname)
|
|
|
|
return File(False, subdir, fname)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def from_built_file(subdir, fname):
|
|
|
|
return File(True, subdir, fname)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def from_absolute_file(fname):
|
|
|
|
return File(False, '', fname)
|
|
|
|
|
|
|
|
def rel_to_builddir(self, build_to_src):
|
|
|
|
if self.is_built:
|
|
|
|
return os.path.join(self.subdir, self.fname)
|
|
|
|
else:
|
|
|
|
return os.path.join(build_to_src, self.subdir, self.fname)
|
|
|
|
|
|
|
|
def absolute_path(self, srcdir, builddir):
|
|
|
|
if self.is_built:
|
|
|
|
return os.path.join(builddir, self.subdir, self.fname)
|
|
|
|
else:
|
|
|
|
return os.path.join(srcdir, self.subdir, self.fname)
|
|
|
|
|
|
|
|
def endswith(self, ending):
|
|
|
|
return self.fname.endswith(ending)
|
|
|
|
|
|
|
|
def split(self, s):
|
|
|
|
return self.fname.split(s)
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
return (self.fname, self.subdir, self.is_built) == (other.fname, other.subdir, other.is_built)
|
|
|
|
|
|
|
|
def __hash__(self):
|
|
|
|
return hash((self.fname, self.subdir, self.is_built))
|
|
|
|
|
|
|
|
def relative_name(self):
|
|
|
|
return os.path.join(self.subdir, self.fname)
|
|
|
|
|
|
|
|
def get_compiler_for_source(compilers, src):
|
|
|
|
for comp in compilers:
|
|
|
|
if comp.can_compile(src):
|
|
|
|
return comp
|
|
|
|
raise RuntimeError('No specified compiler can handle file {!s}'.format(src))
|
|
|
|
|
|
|
|
def classify_unity_sources(compilers, sources):
|
|
|
|
compsrclist = {}
|
|
|
|
for src in sources:
|
|
|
|
comp = get_compiler_for_source(compilers, src)
|
|
|
|
if comp not in compsrclist:
|
|
|
|
compsrclist[comp] = [src]
|
|
|
|
else:
|
|
|
|
compsrclist[comp].append(src)
|
|
|
|
return compsrclist
|
|
|
|
|
|
|
|
def flatten(item):
|
|
|
|
if not isinstance(item, list):
|
|
|
|
return item
|
|
|
|
result = []
|
|
|
|
for i in item:
|
|
|
|
if isinstance(i, list):
|
|
|
|
result += flatten(i)
|
|
|
|
else:
|
|
|
|
result.append(i)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def is_osx():
|
|
|
|
return platform.system().lower() == 'darwin'
|
|
|
|
|
|
|
|
def is_linux():
|
|
|
|
return platform.system().lower() == 'linux'
|
|
|
|
|
|
|
|
def is_windows():
|
|
|
|
platname = platform.system().lower()
|
|
|
|
return platname == 'windows' or 'mingw' in platname
|
|
|
|
|
|
|
|
def is_debianlike():
|
|
|
|
return os.path.isfile('/etc/debian_version')
|
|
|
|
|
|
|
|
def exe_exists(arglist):
|
|
|
|
try:
|
|
|
|
p = subprocess.Popen(arglist, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
p.communicate()
|
|
|
|
if p.returncode == 0:
|
|
|
|
return True
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
|
|
|
return False
|
|
|
|
|
|
|
|
def detect_vcs(source_dir):
|
|
|
|
vcs_systems = [
|
|
|
|
dict(name = 'git', cmd = 'git', repo_dir = '.git', get_rev = 'git describe --dirty=+', rev_regex = '(.*)', dep = '.git/logs/HEAD'),
|
|
|
|
dict(name = 'mercurial', cmd = 'hg', repo_dir = '.hg', get_rev = 'hg id -i', rev_regex = '(.*)', dep = '.hg/dirstate'),
|
|
|
|
dict(name = 'subversion', cmd = 'svn', repo_dir = '.svn', get_rev = 'svn info', rev_regex = 'Revision: (.*)', dep = '.svn/wc.db'),
|
|
|
|
dict(name = 'bazaar', cmd = 'bzr', repo_dir = '.bzr', get_rev = 'bzr revno', rev_regex = '(.*)', dep = '.bzr'),
|
|
|
|
]
|
|
|
|
|
|
|
|
segs = source_dir.replace('\\', '/').split('/')
|
|
|
|
for i in range(len(segs), -1, -1):
|
|
|
|
curdir = '/'.join(segs[:i])
|
|
|
|
for vcs in vcs_systems:
|
|
|
|
if os.path.isdir(os.path.join(curdir, vcs['repo_dir'])) and shutil.which(vcs['cmd']):
|
|
|
|
vcs['wc_dir'] = curdir
|
|
|
|
return vcs
|
|
|
|
return None
|
|
|
|
|
|
|
|
def grab_leading_numbers(vstr, strict=False):
|
|
|
|
result = []
|
|
|
|
for x in vstr.split('.'):
|
|
|
|
try:
|
|
|
|
result.append(int(x))
|
|
|
|
except ValueError as e:
|
|
|
|
if strict:
|
|
|
|
msg = 'Invalid version to compare against: {!r}; only ' \
|
|
|
|
'numeric digits separated by "." are allowed: ' + str(e)
|
|
|
|
raise MesonException(msg.format(vstr))
|
|
|
|
break
|
|
|
|
return result
|
|
|
|
|
|
|
|
numpart = re.compile('[0-9.]+')
|
|
|
|
|
|
|
|
def version_compare(vstr1, vstr2, strict=False):
|
|
|
|
match = numpart.match(vstr1.strip())
|
|
|
|
if match is None:
|
|
|
|
msg = 'Uncomparable version string {!r}.'
|
|
|
|
raise MesonException(msg.format(vstr1))
|
|
|
|
vstr1 = match.group(0)
|
|
|
|
if vstr2.startswith('>='):
|
|
|
|
cmpop = operator.ge
|
|
|
|
vstr2 = vstr2[2:]
|
|
|
|
elif vstr2.startswith('<='):
|
|
|
|
cmpop = operator.le
|
|
|
|
vstr2 = vstr2[2:]
|
|
|
|
elif vstr2.startswith('!='):
|
|
|
|
cmpop = operator.ne
|
|
|
|
vstr2 = vstr2[2:]
|
|
|
|
elif vstr2.startswith('=='):
|
|
|
|
cmpop = operator.eq
|
|
|
|
vstr2 = vstr2[2:]
|
|
|
|
elif vstr2.startswith('='):
|
|
|
|
cmpop = operator.eq
|
|
|
|
vstr2 = vstr2[1:]
|
|
|
|
elif vstr2.startswith('>'):
|
|
|
|
cmpop = operator.gt
|
|
|
|
vstr2 = vstr2[1:]
|
|
|
|
elif vstr2.startswith('<'):
|
|
|
|
cmpop = operator.lt
|
|
|
|
vstr2 = vstr2[1:]
|
|
|
|
else:
|
|
|
|
cmpop = operator.eq
|
|
|
|
varr1 = grab_leading_numbers(vstr1, strict)
|
|
|
|
varr2 = grab_leading_numbers(vstr2, strict)
|
|
|
|
return cmpop(varr1, varr2)
|
|
|
|
|
|
|
|
def version_compare_many(vstr1, conditions):
|
|
|
|
if not isinstance(conditions, (list, tuple)):
|
|
|
|
conditions = [conditions]
|
|
|
|
found = []
|
|
|
|
not_found = []
|
|
|
|
for req in conditions:
|
|
|
|
if not version_compare(vstr1, req, strict=True):
|
|
|
|
not_found.append(req)
|
|
|
|
else:
|
|
|
|
found.append(req)
|
|
|
|
return not_found == [], not_found, found
|
|
|
|
|
|
|
|
def default_libdir():
|
|
|
|
if is_debianlike():
|
|
|
|
try:
|
|
|
|
pc = subprocess.Popen(['dpkg-architecture', '-qDEB_HOST_MULTIARCH'],
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.DEVNULL)
|
|
|
|
(stdo, _) = pc.communicate()
|
|
|
|
if pc.returncode == 0:
|
|
|
|
archpath = stdo.decode().strip()
|
|
|
|
return 'lib/' + archpath
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
if os.path.isdir('/usr/lib64') and not os.path.islink('/usr/lib64'):
|
|
|
|
return 'lib64'
|
|
|
|
return 'lib'
|
|
|
|
|
|
|
|
def default_libexecdir():
|
|
|
|
# There is no way to auto-detect this, so it must be set at build time
|
|
|
|
return 'libexec'
|
|
|
|
|
|
|
|
def default_prefix():
|
|
|
|
return 'c:/' if is_windows() else '/usr/local'
|
|
|
|
|
|
|
|
def get_library_dirs():
|
|
|
|
if is_windows():
|
|
|
|
return ['C:/mingw/lib'] # Fixme
|
|
|
|
if is_osx():
|
|
|
|
return ['/usr/lib'] # Fix me as well.
|
|
|
|
# The following is probably Debian/Ubuntu specific.
|
|
|
|
# /usr/local/lib is first because it contains stuff
|
|
|
|
# installed by the sysadmin and is probably more up-to-date
|
|
|
|
# than /usr/lib. If you feel that this search order is
|
|
|
|
# problematic, please raise the issue on the mailing list.
|
|
|
|
unixdirs = ['/usr/local/lib', '/usr/lib', '/lib']
|
|
|
|
plat = subprocess.check_output(['uname', '-m']).decode().strip()
|
|
|
|
# This is a terrible hack. I admit it and I'm really sorry.
|
|
|
|
# I just don't know what the correct solution is.
|
|
|
|
if plat == 'i686':
|
|
|
|
plat = 'i386'
|
|
|
|
if plat.startswith('arm'):
|
|
|
|
plat = 'arm'
|
|
|
|
unixdirs += glob('/usr/lib/' + plat + '*')
|
|
|
|
if os.path.exists('/usr/lib64'):
|
|
|
|
unixdirs.append('/usr/lib64')
|
|
|
|
unixdirs += glob('/lib/' + plat + '*')
|
|
|
|
if os.path.exists('/lib64'):
|
|
|
|
unixdirs.append('/lib64')
|
|
|
|
unixdirs += glob('/lib/' + plat + '*')
|
|
|
|
return unixdirs
|
|
|
|
|
|
|
|
|
|
|
|
def do_replacement(regex, line, confdata):
|
|
|
|
match = re.search(regex, line)
|
|
|
|
while match:
|
|
|
|
varname = match.group(1)
|
|
|
|
if varname in confdata.keys():
|
|
|
|
(var, desc) = confdata.get(varname)
|
|
|
|
if isinstance(var, str):
|
|
|
|
pass
|
|
|
|
elif isinstance(var, int):
|
|
|
|
var = str(var)
|
|
|
|
else:
|
|
|
|
raise RuntimeError('Tried to replace a variable with something other than a string or int.')
|
|
|
|
else:
|
|
|
|
var = ''
|
|
|
|
line = line.replace('@' + varname + '@', var)
|
|
|
|
match = re.search(regex, line)
|
|
|
|
return line
|
|
|
|
|
|
|
|
def do_mesondefine(line, confdata):
|
|
|
|
arr = line.split()
|
|
|
|
if len(arr) != 2:
|
|
|
|
raise MesonException('#mesondefine does not contain exactly two tokens: %s', line.strip())
|
|
|
|
varname = arr[1]
|
|
|
|
try:
|
|
|
|
(v, desc) = confdata.get(varname)
|
|
|
|
except KeyError:
|
|
|
|
return '/* #undef %s */\n' % varname
|
|
|
|
if isinstance(v, bool):
|
|
|
|
if v:
|
|
|
|
return '#define %s\n' % varname
|
|
|
|
else:
|
|
|
|
return '#undef %s\n' % varname
|
|
|
|
elif isinstance(v, int):
|
|
|
|
return '#define %s %d\n' % (varname, v)
|
|
|
|
elif isinstance(v, str):
|
|
|
|
return '#define %s %s\n' % (varname, v)
|
|
|
|
else:
|
|
|
|
raise MesonException('#mesondefine argument "%s" is of unknown type.' % varname)
|
|
|
|
|
|
|
|
|
|
|
|
def do_conf_file(src, dst, confdata):
|
|
|
|
try:
|
|
|
|
with open(src, encoding='utf-8') as f:
|
|
|
|
data = f.readlines()
|
|
|
|
except Exception as e:
|
|
|
|
raise MesonException('Could not read input file %s: %s' % (src, str(e)))
|
|
|
|
# Only allow (a-z, A-Z, 0-9, _, -) as valid characters for a define
|
|
|
|
# Also allow escaping '@' with '\@'
|
|
|
|
regex = re.compile(r'[^\\]?@([-a-zA-Z0-9_]+)@')
|
|
|
|
result = []
|
|
|
|
for line in data:
|
|
|
|
if line.startswith('#mesondefine'):
|
|
|
|
line = do_mesondefine(line, confdata)
|
|
|
|
else:
|
|
|
|
line = do_replacement(regex, line, confdata)
|
|
|
|
result.append(line)
|
|
|
|
dst_tmp = dst + '~'
|
|
|
|
with open(dst_tmp, 'w', encoding='utf-8') as f:
|
|
|
|
f.writelines(result)
|
|
|
|
shutil.copymode(src, dst_tmp)
|
|
|
|
replace_if_different(dst, dst_tmp)
|
|
|
|
|
|
|
|
def dump_conf_header(ofilename, cdata):
|
|
|
|
with open(ofilename, 'w', encoding='utf-8') as ofile:
|
|
|
|
ofile.write('''/*
|
|
|
|
* Autogenerated by the Meson build system.
|
|
|
|
* Do not edit, your changes will be lost.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
''')
|
|
|
|
for k in sorted(cdata.keys()):
|
|
|
|
(v, desc) = cdata.get(k)
|
|
|
|
if desc:
|
|
|
|
ofile.write('/* %s */\n' % desc)
|
|
|
|
if isinstance(v, bool):
|
|
|
|
if v:
|
|
|
|
ofile.write('#define %s\n\n' % k)
|
|
|
|
else:
|
|
|
|
ofile.write('#undef %s\n\n' % k)
|
|
|
|
elif isinstance(v, (int, str)):
|
|
|
|
ofile.write('#define %s %s\n\n' % (k, v))
|
|
|
|
else:
|
|
|
|
raise MesonException('Unknown data type in configuration file entry: ' + k)
|
|
|
|
|
|
|
|
def replace_if_different(dst, dst_tmp):
|
|
|
|
# If contents are identical, don't touch the file to prevent
|
|
|
|
# unnecessary rebuilds.
|
|
|
|
different = True
|
|
|
|
try:
|
|
|
|
with open(dst, 'r') as f1, open(dst_tmp, 'r') as f2:
|
|
|
|
if f1.read() == f2.read():
|
|
|
|
different = False
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
|
|
|
if different:
|
|
|
|
os.replace(dst_tmp, dst)
|
|
|
|
else:
|
|
|
|
os.unlink(dst_tmp)
|
|
|
|
|
|
|
|
def stringintlistify(item):
|
|
|
|
if isinstance(item, (str, int)):
|
|
|
|
item = [item]
|
|
|
|
if not isinstance(item, list):
|
|
|
|
raise MesonException('Item must be a list, a string, or an int')
|
|
|
|
for i in item:
|
|
|
|
if not isinstance(i, (str, int, type(None))):
|
|
|
|
raise MesonException('List item must be a string or an int')
|
|
|
|
return item
|
|
|
|
|
|
|
|
def stringlistify(item):
|
|
|
|
if isinstance(item, str):
|
|
|
|
item = [item]
|
|
|
|
if not isinstance(item, list):
|
|
|
|
raise MesonException('Item is not a list')
|
|
|
|
for i in item:
|
|
|
|
if not isinstance(i, str):
|
|
|
|
raise MesonException('List item not a string.')
|
|
|
|
return item
|
|
|
|
|
|
|
|
def expand_arguments(args):
|
|
|
|
expended_args = []
|
|
|
|
for arg in args:
|
|
|
|
if not arg.startswith('@'):
|
|
|
|
expended_args.append(arg)
|
|
|
|
continue
|
|
|
|
|
|
|
|
args_file = arg[1:]
|
|
|
|
try:
|
|
|
|
with open(args_file) as f:
|
|
|
|
extended_args = f.read().split()
|
|
|
|
expended_args += extended_args
|
|
|
|
except Exception as e:
|
|
|
|
print('Error expanding command line arguments, %s not found' % args_file)
|
|
|
|
print(e)
|
|
|
|
return None
|
|
|
|
return expended_args
|
|
|
|
|
|
|
|
def Popen_safe(args, write=None, stderr=subprocess.PIPE, **kwargs):
|
|
|
|
p = subprocess.Popen(args, universal_newlines=True,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=stderr, **kwargs)
|
|
|
|
o, e = p.communicate(write)
|
|
|
|
return p, o, e
|
|
|
|
|
|
|
|
def commonpath(paths):
|
|
|
|
'''
|
|
|
|
For use on Python 3.4 where os.path.commonpath is not available.
|
|
|
|
We currently use it everywhere so this receives enough testing.
|
|
|
|
'''
|
|
|
|
# XXX: Replace me with os.path.commonpath when we start requiring Python 3.5
|
|
|
|
import pathlib
|
|
|
|
if not paths:
|
|
|
|
raise ValueError('arg is an empty sequence')
|
|
|
|
common = pathlib.PurePath(paths[0])
|
|
|
|
for path in paths[1:]:
|
|
|
|
new = []
|
|
|
|
path = pathlib.PurePath(path)
|
|
|
|
for c, p in zip(common.parts, path.parts):
|
|
|
|
if c != p:
|
|
|
|
break
|
|
|
|
new.append(c)
|
|
|
|
# Don't convert '' into '.'
|
|
|
|
if not new:
|
|
|
|
common = ''
|
|
|
|
break
|
|
|
|
new = os.path.join(*new)
|
|
|
|
common = pathlib.PurePath(new)
|
|
|
|
return str(common)
|