# Copyright 2018 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. import re import os, os.path, pathlib import shutil import typing as T from . import ExtensionModule, ModuleReturnValue from .. import build, dependencies, mesonlib, mlog from ..cmake import SingleTargetOptions, TargetOptions, cmake_defines_to_args from ..interpreter import ConfigurationDataHolder, InterpreterException, SubprojectHolder, DependencyHolder from ..interpreterbase import ( InterpreterObject, ObjectHolder, FeatureNew, FeatureNewKwargs, FeatureDeprecatedKwargs, stringArgs, permittedKwargs, noPosargs, noKwargs, InvalidArguments, ) COMPATIBILITIES = ['AnyNewerVersion', 'SameMajorVersion', 'SameMinorVersion', 'ExactVersion'] # Taken from https://github.com/Kitware/CMake/blob/master/Modules/CMakePackageConfigHelpers.cmake PACKAGE_INIT_BASE = ''' ####### Expanded from \\@PACKAGE_INIT\\@ by configure_package_config_file() ####### ####### Any changes to this file will be overwritten by the next CMake run #### ####### The input file was @inputFileName@ ######## get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/@PACKAGE_RELATIVE_PATH@" ABSOLUTE) ''' PACKAGE_INIT_EXT = ''' # Use original install prefix when loaded through a "/usr move" # cross-prefix symbolic link such as /lib -> /usr/lib. get_filename_component(_realCurr "${CMAKE_CURRENT_LIST_DIR}" REALPATH) get_filename_component(_realOrig "@absInstallDir@" REALPATH) if(_realCurr STREQUAL _realOrig) set(PACKAGE_PREFIX_DIR "@installPrefix@") endif() unset(_realOrig) unset(_realCurr) ''' PACKAGE_INIT_SET_AND_CHECK = ''' macro(set_and_check _var _file) set(${_var} "${_file}") if(NOT EXISTS "${_file}") message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") endif() endmacro() #################################################################################### ''' class CMakeSubprojectHolder(InterpreterObject, ObjectHolder): def __init__(self, subp, pv): assert(isinstance(subp, SubprojectHolder)) assert(hasattr(subp, 'cm_interpreter')) InterpreterObject.__init__(self) ObjectHolder.__init__(self, subp, pv) self.methods.update({'get_variable': self.get_variable, 'dependency': self.dependency, 'include_directories': self.include_directories, 'target': self.target, 'target_type': self.target_type, 'target_list': self.target_list, 'found': self.found_method, }) def _args_to_info(self, args): if len(args) != 1: raise InterpreterException('Exactly one argument is required.') tgt = args[0] res = self.held_object.cm_interpreter.target_info(tgt) if res is None: raise InterpreterException('The CMake target {} does not exist\n'.format(tgt) + ' Use the following command in your meson.build to list all available targets:\n\n' + ' message(\'CMaket targets:\\n - \' + \'\\n - \'.join(.target_list()))') # Make sure that all keys are present (if not this is a bug) assert(all([x in res for x in ['inc', 'src', 'dep', 'tgt', 'func']])) return res @noKwargs @stringArgs def get_variable(self, args, kwargs): return self.held_object.get_variable_method(args, kwargs) @FeatureNewKwargs('dependency', '0.56.0', ['include_type']) @permittedKwargs({'include_type'}) @stringArgs def dependency(self, args, kwargs): info = self._args_to_info(args) orig = self.get_variable([info['dep']], {}) assert isinstance(orig, DependencyHolder) actual = orig.include_type_method([], {}) if 'include_type' in kwargs and kwargs['include_type'] != actual: mlog.debug('Current include type is {}. Converting to requested {}'.format(actual, kwargs['include_type'])) return orig.as_system_method([kwargs['include_type']], {}) return orig @noKwargs @stringArgs def include_directories(self, args, kwargs): info = self._args_to_info(args) return self.get_variable([info['inc']], kwargs) @noKwargs @stringArgs def target(self, args, kwargs): info = self._args_to_info(args) return self.get_variable([info['tgt']], kwargs) @noKwargs @stringArgs def target_type(self, args, kwargs): info = self._args_to_info(args) return info['func'] @noPosargs @noKwargs def target_list(self, args, kwargs): return self.held_object.cm_interpreter.target_list() @noPosargs @noKwargs @FeatureNew('CMakeSubproject.found()', '0.53.2') def found_method(self, args, kwargs): return self.held_object is not None class CMakeSubprojectOptions(InterpreterObject): def __init__(self) -> None: super().__init__() self.cmake_options = [] # type: T.List[str] self.target_options = TargetOptions() self.methods.update( { 'add_cmake_defines': self.add_cmake_defines, 'set_override_option': self.set_override_option, 'set_install': self.set_install, 'append_compile_args': self.append_compile_args, 'append_link_args': self.append_link_args, 'clear': self.clear, } ) def _get_opts(self, kwargs: dict) -> SingleTargetOptions: if 'target' in kwargs: return self.target_options[kwargs['target']] return self.target_options.global_options @noKwargs def add_cmake_defines(self, args, kwargs) -> None: self.cmake_options += cmake_defines_to_args(args) @stringArgs @permittedKwargs({'target'}) def set_override_option(self, args, kwargs) -> None: if len(args) != 2: raise InvalidArguments('set_override_option takes exactly 2 positional arguments') self._get_opts(kwargs).set_opt(args[0], args[1]) @permittedKwargs({'target'}) def set_install(self, args, kwargs) -> None: if len(args) != 1 or not isinstance(args[0], bool): raise InvalidArguments('set_install takes exactly 1 boolean argument') self._get_opts(kwargs).set_install(args[0]) @stringArgs @permittedKwargs({'target'}) def append_compile_args(self, args, kwargs) -> None: if len(args) < 2: raise InvalidArguments('append_compile_args takes at least 2 positional arguments') self._get_opts(kwargs).append_args(args[0], args[1:]) @stringArgs @permittedKwargs({'target'}) def append_link_args(self, args, kwargs) -> None: if not args: raise InvalidArguments('append_link_args takes at least 1 positional argument') self._get_opts(kwargs).append_link_args(args) @noPosargs @noKwargs def clear(self, args, kwargs) -> None: self.cmake_options.clear() self.target_options = TargetOptions() class CmakeModule(ExtensionModule): cmake_detected = False cmake_root = None def __init__(self, interpreter): super().__init__(interpreter) self.snippets.add('configure_package_config_file') self.snippets.add('subproject') def detect_voidp_size(self, env): compilers = env.coredata.compilers.host compiler = compilers.get('c', None) if not compiler: compiler = compilers.get('cpp', None) if not compiler: raise mesonlib.MesonException('Requires a C or C++ compiler to compute sizeof(void *).') return compiler.sizeof('void *', '', env) def detect_cmake(self): if self.cmake_detected: return True cmakebin = dependencies.ExternalProgram('cmake', silent=False) p, stdout, stderr = mesonlib.Popen_safe(cmakebin.get_command() + ['--system-information', '-G', 'Ninja'])[0:3] if p.returncode != 0: mlog.log('error retrieving cmake information: returnCode={0} stdout={1} stderr={2}'.format(p.returncode, stdout, stderr)) return False match = re.search('\nCMAKE_ROOT \\"([^"]+)"\n', stdout.strip()) if not match: mlog.log('unable to determine cmake root') return False cmakePath = pathlib.PurePath(match.group(1)) self.cmake_root = os.path.join(*cmakePath.parts) self.cmake_detected = True return True @permittedKwargs({'version', 'name', 'compatibility', 'install_dir'}) def write_basic_package_version_file(self, state, _args, kwargs): version = kwargs.get('version', None) if not isinstance(version, str): raise mesonlib.MesonException('Version must be specified.') name = kwargs.get('name', None) if not isinstance(name, str): raise mesonlib.MesonException('Name not specified.') compatibility = kwargs.get('compatibility', 'AnyNewerVersion') if not isinstance(compatibility, str): raise mesonlib.MesonException('compatibility is not string.') if compatibility not in COMPATIBILITIES: raise mesonlib.MesonException('compatibility must be either AnyNewerVersion, SameMajorVersion or ExactVersion.') if not self.detect_cmake(): raise mesonlib.MesonException('Unable to find cmake') pkgroot = kwargs.get('install_dir', None) if pkgroot is None: pkgroot = os.path.join(state.environment.coredata.get_builtin_option('libdir'), 'cmake', name) if not isinstance(pkgroot, str): raise mesonlib.MesonException('Install_dir must be a string.') template_file = os.path.join(self.cmake_root, 'Modules', 'BasicConfigVersion-{}.cmake.in'.format(compatibility)) if not os.path.exists(template_file): raise mesonlib.MesonException('your cmake installation doesn\'t support the {} compatibility'.format(compatibility)) version_file = os.path.join(state.environment.scratch_dir, '{}ConfigVersion.cmake'.format(name)) conf = { 'CVF_VERSION': (version, ''), 'CMAKE_SIZEOF_VOID_P': (str(self.detect_voidp_size(state.environment)), '') } mesonlib.do_conf_file(template_file, version_file, conf, 'meson') res = build.Data(mesonlib.File(True, state.environment.get_scratch_dir(), version_file), pkgroot) return ModuleReturnValue(res, [res]) def create_package_file(self, infile, outfile, PACKAGE_RELATIVE_PATH, extra, confdata): package_init = PACKAGE_INIT_BASE.replace('@PACKAGE_RELATIVE_PATH@', PACKAGE_RELATIVE_PATH) package_init = package_init.replace('@inputFileName@', infile) package_init += extra package_init += PACKAGE_INIT_SET_AND_CHECK try: with open(infile, "r") as fin: data = fin.readlines() except Exception as e: raise mesonlib.MesonException('Could not read input file %s: %s' % (infile, str(e))) result = [] regex = re.compile(r'(?:\\\\)+(?=\\?@)|\\@|@([-a-zA-Z0-9_]+)@') for line in data: line = line.replace('@PACKAGE_INIT@', package_init) line, _missing = mesonlib.do_replacement(regex, line, 'meson', confdata) result.append(line) outfile_tmp = outfile + "~" with open(outfile_tmp, "w", encoding='utf-8') as fout: fout.writelines(result) shutil.copymode(infile, outfile_tmp) mesonlib.replace_if_different(outfile, outfile_tmp) @permittedKwargs({'input', 'name', 'install_dir', 'configuration'}) def configure_package_config_file(self, interpreter, state, args, kwargs): if args: raise mesonlib.MesonException('configure_package_config_file takes only keyword arguments.') if 'input' not in kwargs: raise mesonlib.MesonException('configure_package_config_file requires "input" keyword.') inputfile = kwargs['input'] if isinstance(inputfile, list): if len(inputfile) != 1: m = "Keyword argument 'input' requires exactly one file" raise mesonlib.MesonException(m) inputfile = inputfile[0] if not isinstance(inputfile, (str, mesonlib.File)): raise mesonlib.MesonException("input must be a string or a file") if isinstance(inputfile, str): inputfile = mesonlib.File.from_source_file(state.environment.source_dir, state.subdir, inputfile) ifile_abs = inputfile.absolute_path(state.environment.source_dir, state.environment.build_dir) if 'name' not in kwargs: raise mesonlib.MesonException('"name" not specified.') name = kwargs['name'] (ofile_path, ofile_fname) = os.path.split(os.path.join(state.subdir, '{}Config.cmake'.format(name))) ofile_abs = os.path.join(state.environment.build_dir, ofile_path, ofile_fname) install_dir = kwargs.get('install_dir', os.path.join(state.environment.coredata.get_builtin_option('libdir'), 'cmake', name)) if not isinstance(install_dir, str): raise mesonlib.MesonException('"install_dir" must be a string.') if 'configuration' not in kwargs: raise mesonlib.MesonException('"configuration" not specified.') conf = kwargs['configuration'] if not isinstance(conf, ConfigurationDataHolder): raise mesonlib.MesonException('Argument "configuration" is not of type configuration_data') prefix = state.environment.coredata.get_builtin_option('prefix') abs_install_dir = install_dir if not os.path.isabs(abs_install_dir): abs_install_dir = os.path.join(prefix, install_dir) PACKAGE_RELATIVE_PATH = os.path.relpath(prefix, abs_install_dir) extra = '' if re.match('^(/usr)?/lib(64)?/.+', abs_install_dir): extra = PACKAGE_INIT_EXT.replace('@absInstallDir@', abs_install_dir) extra = extra.replace('@installPrefix@', prefix) self.create_package_file(ifile_abs, ofile_abs, PACKAGE_RELATIVE_PATH, extra, conf.held_object) conf.mark_used() conffile = os.path.normpath(inputfile.relative_name()) if conffile not in interpreter.build_def_files: interpreter.build_def_files.append(conffile) res = build.Data(mesonlib.File(True, ofile_path, ofile_fname), install_dir) interpreter.build.data.append(res) return res @FeatureNew('subproject', '0.51.0') @FeatureNewKwargs('subproject', '0.55.0', ['options']) @FeatureDeprecatedKwargs('subproject', '0.55.0', ['cmake_options']) @permittedKwargs({'cmake_options', 'required', 'options'}) @stringArgs def subproject(self, interpreter, state, args, kwargs): if len(args) != 1: raise InterpreterException('Subproject takes exactly one argument') if 'cmake_options' in kwargs and 'options' in kwargs: raise InterpreterException('"options" cannot be used together with "cmake_options"') dirname = args[0] subp = interpreter.do_subproject(dirname, 'cmake', kwargs) if not subp.held_object: return subp return CMakeSubprojectHolder(subp, dirname) @FeatureNew('subproject_options', '0.55.0') @noKwargs @noPosargs def subproject_options(self, state, args, kwargs) -> ModuleReturnValue: opts = CMakeSubprojectOptions() return ModuleReturnValue(opts, []) def initialize(*args, **kwargs): return CmakeModule(*args, **kwargs)