| # Copyright 2019 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. |
| |
| # This class contains the basic functionality needed to run any interpreter |
| # or an interpreter-based tool. |
| |
| from .common import CMakeException |
| from .. import mlog |
| |
| from typing import List, Tuple, Optional |
| import re |
| import os |
| |
| class CMakeTraceLine: |
| def __init__(self, file, line, func, args): |
| self.file = file |
| self.line = line |
| self.func = func.lower() |
| self.args = args |
| |
| def __repr__(self): |
| s = 'CMake TRACE: {0}:{1} {2}({3})' |
| return s.format(self.file, self.line, self.func, self.args) |
| |
| class CMakeTarget: |
| def __init__(self, name, target_type, properies=None): |
| if properies is None: |
| properies = {} |
| self.name = name |
| self.type = target_type |
| self.properies = properies |
| |
| def __repr__(self): |
| s = 'CMake TARGET:\n -- name: {}\n -- type: {}\n -- properies: {{\n{} }}' |
| propSTR = '' |
| for i in self.properies: |
| propSTR += " '{}': {}\n".format(i, self.properies[i]) |
| return s.format(self.name, self.type, propSTR) |
| |
| class CMakeGeneratorTarget: |
| def __init__(self): |
| self.outputs = [] # type: List[str] |
| self.command = [] # type: List[List[str]] |
| self.working_dir = None # type: Optional[str] |
| self.depends = [] # type: List[str] |
| |
| class CMakeTraceParser: |
| def __init__(self, permissive: bool = False): |
| # Dict of CMake variables: '<var_name>': ['list', 'of', 'values'] |
| self.vars = {} |
| |
| # Dict of CMakeTarget |
| self.targets = {} |
| |
| # List of targes that were added with add_custom_command to generate files |
| self.custom_targets = [] # type: List[CMakeGeneratorTarget] |
| |
| self.permissive = permissive # type: bool |
| |
| def parse(self, trace: str) -> None: |
| # First parse the trace |
| lexer1 = self._lex_trace(trace) |
| |
| # All supported functions |
| functions = { |
| 'set': self._cmake_set, |
| 'unset': self._cmake_unset, |
| 'add_executable': self._cmake_add_executable, |
| 'add_library': self._cmake_add_library, |
| 'add_custom_command': self._cmake_add_custom_command, |
| 'add_custom_target': self._cmake_add_custom_target, |
| 'set_property': self._cmake_set_property, |
| 'set_target_properties': self._cmake_set_target_properties |
| } |
| |
| # Primary pass -- parse everything |
| for l in lexer1: |
| # "Execute" the CMake function if supported |
| fn = functions.get(l.func, None) |
| if(fn): |
| fn(l) |
| |
| def get_first_cmake_var_of(self, var_list: List[str]) -> List[str]: |
| # Return the first found CMake variable in list var_list |
| for i in var_list: |
| if i in self.vars: |
| return self.vars[i] |
| |
| return [] |
| |
| def get_cmake_var(self, var: str) -> List[str]: |
| # Return the value of the CMake variable var or an empty list if var does not exist |
| if var in self.vars: |
| return self.vars[var] |
| |
| return [] |
| |
| def var_to_bool(self, var): |
| if var not in self.vars: |
| return False |
| |
| if len(self.vars[var]) < 1: |
| return False |
| |
| if self.vars[var][0].upper() in ['1', 'ON', 'TRUE']: |
| return True |
| return False |
| |
| def _gen_exception(self, function: str, error: str, tline: CMakeTraceLine) -> None: |
| # Generate an exception if the parser is not in permissive mode |
| |
| if self.permissive: |
| mlog.debug('CMake trace warning: {}() {}\n{}'.format(function, error, tline)) |
| return None |
| raise CMakeException('CMake: {}() {}\n{}'.format(function, error, tline)) |
| |
| def _cmake_set(self, tline: CMakeTraceLine) -> None: |
| """Handler for the CMake set() function in all variaties. |
| |
| comes in three flavors: |
| set(<var> <value> [PARENT_SCOPE]) |
| set(<var> <value> CACHE <type> <docstring> [FORCE]) |
| set(ENV{<var>} <value>) |
| |
| We don't support the ENV variant, and any uses of it will be ignored |
| silently. the other two variates are supported, with some caveats: |
| - we don't properly handle scoping, so calls to set() inside a |
| function without PARENT_SCOPE set could incorrectly shadow the |
| outer scope. |
| - We don't honor the type of CACHE arguments |
| """ |
| # DOC: https://cmake.org/cmake/help/latest/command/set.html |
| |
| # 1st remove PARENT_SCOPE and CACHE from args |
| args = [] |
| for i in tline.args: |
| if not i or i == 'PARENT_SCOPE': |
| continue |
| |
| # Discard everything after the CACHE keyword |
| if i == 'CACHE': |
| break |
| |
| args.append(i) |
| |
| if len(args) < 1: |
| return self._gen_exception('set', 'requires at least one argument', tline) |
| |
| # Now that we've removed extra arguments all that should be left is the |
| # variable identifier and the value, join the value back together to |
| # ensure spaces in the value are correctly handled. This assumes that |
| # variable names don't have spaces. Please don't do that... |
| identifier = args.pop(0) |
| value = ' '.join(args) |
| |
| if not value: |
| # Same as unset |
| if identifier in self.vars: |
| del self.vars[identifier] |
| else: |
| self.vars[identifier] = value.split(';') |
| |
| def _cmake_unset(self, tline: CMakeTraceLine): |
| # DOC: https://cmake.org/cmake/help/latest/command/unset.html |
| if len(tline.args) < 1: |
| return self._gen_exception('unset', 'requires at least one argument', tline) |
| |
| if tline.args[0] in self.vars: |
| del self.vars[tline.args[0]] |
| |
| def _cmake_add_executable(self, tline: CMakeTraceLine): |
| # DOC: https://cmake.org/cmake/help/latest/command/add_executable.html |
| args = list(tline.args) # Make a working copy |
| |
| # Make sure the exe is imported |
| if 'IMPORTED' not in args: |
| return self._gen_exception('add_executable', 'non imported executables are not supported', tline) |
| |
| args.remove('IMPORTED') |
| |
| if len(args) < 1: |
| return self._gen_exception('add_executable', 'requires at least 1 argument', tline) |
| |
| self.targets[args[0]] = CMakeTarget(args[0], 'EXECUTABLE', {}) |
| |
| def _cmake_add_library(self, tline: CMakeTraceLine): |
| # DOC: https://cmake.org/cmake/help/latest/command/add_library.html |
| args = list(tline.args) # Make a working copy |
| |
| # Make sure the lib is imported |
| if 'IMPORTED' not in args: |
| return self._gen_exception('add_library', 'non imported libraries are not supported', tline) |
| |
| args.remove('IMPORTED') |
| |
| # No only look at the first two arguments (target_name and target_type) and ignore the rest |
| if len(args) < 2: |
| return self._gen_exception('add_library', 'requires at least 2 arguments', tline) |
| |
| self.targets[args[0]] = CMakeTarget(args[0], args[1], {}) |
| |
| def _cmake_add_custom_command(self, tline: CMakeTraceLine): |
| # DOC: https://cmake.org/cmake/help/latest/command/add_custom_command.html |
| args = list(tline.args) # Make a working copy |
| |
| if not args: |
| return self._gen_exception('add_custom_command', 'requires at least 1 argument', tline) |
| |
| # Skip the second function signature |
| if args[0] == 'TARGET': |
| return self._gen_exception('add_custom_command', 'TARGET syntax is currently not supported', tline) |
| |
| magic_keys = ['OUTPUT', 'COMMAND', 'MAIN_DEPENDENCY', 'DEPENDS', 'BYPRODUCTS', |
| 'IMPLICIT_DEPENDS', 'WORKING_DIRECTORY', 'COMMENT', 'DEPFILE', |
| 'JOB_POOL', 'VERBATIM', 'APPEND', 'USES_TERMINAL', 'COMMAND_EXPAND_LISTS'] |
| |
| target = CMakeGeneratorTarget() |
| |
| def handle_output(key: str, target: CMakeGeneratorTarget) -> None: |
| target.outputs += [key] |
| |
| def handle_command(key: str, target: CMakeGeneratorTarget) -> None: |
| if key == 'ARGS': |
| return |
| target.command[-1] += [key] |
| |
| def handle_depends(key: str, target: CMakeGeneratorTarget) -> None: |
| target.depends += [key] |
| |
| def handle_working_dir(key: str, target: CMakeGeneratorTarget) -> None: |
| if target.working_dir is None: |
| target.working_dir = key |
| else: |
| target.working_dir += ' ' |
| target.working_dir += key |
| |
| fn = None |
| |
| for i in args: |
| if i in magic_keys: |
| if i == 'OUTPUT': |
| fn = handle_output |
| elif i == 'DEPENDS': |
| fn = handle_depends |
| elif i == 'WORKING_DIRECTORY': |
| fn = handle_working_dir |
| elif i == 'COMMAND': |
| fn = handle_command |
| target.command += [[]] |
| else: |
| fn = None |
| continue |
| |
| if fn is not None: |
| fn(i, target) |
| |
| target.outputs = self._guess_files(target.outputs) |
| target.depends = self._guess_files(target.depends) |
| target.command = [self._guess_files(x) for x in target.command] |
| |
| self.custom_targets += [target] |
| |
| def _cmake_add_custom_target(self, tline: CMakeTraceLine): |
| # DOC: https://cmake.org/cmake/help/latest/command/add_custom_target.html |
| # We only the first parameter (the target name) is interesting |
| if len(tline.args) < 1: |
| return self._gen_exception('add_custom_target', 'requires at least one argument', tline) |
| |
| self.targets[tline.args[0]] = CMakeTarget(tline.args[0], 'CUSTOM', {}) |
| |
| def _cmake_set_property(self, tline: CMakeTraceLine) -> None: |
| # DOC: https://cmake.org/cmake/help/latest/command/set_property.html |
| args = list(tline.args) |
| |
| # We only care for TARGET properties |
| if args.pop(0) != 'TARGET': |
| return |
| |
| append = False |
| targets = [] |
| while args: |
| curr = args.pop(0) |
| # XXX: APPEND_STRING is specifically *not* supposed to create a |
| # list, is treating them as aliases really okay? |
| if curr == 'APPEND' or curr == 'APPEND_STRING': |
| append = True |
| continue |
| |
| if curr == 'PROPERTY': |
| break |
| |
| targets.append(curr) |
| |
| if not args: |
| return self._gen_exception('set_property', 'faild to parse argument list', tline) |
| |
| if len(args) == 1: |
| # Tries to set property to nothing so nothing has to be done |
| return |
| |
| identifier = args.pop(0) |
| value = ' '.join(args).split(';') |
| if not value: |
| return |
| |
| for i in targets: |
| if i not in self.targets: |
| return self._gen_exception('set_property', 'TARGET {} not found'.format(i), tline) |
| |
| if identifier not in self.targets[i].properies: |
| self.targets[i].properies[identifier] = [] |
| |
| if append: |
| self.targets[i].properies[identifier] += value |
| else: |
| self.targets[i].properies[identifier] = value |
| |
| def _cmake_set_target_properties(self, tline: CMakeTraceLine) -> None: |
| # DOC: https://cmake.org/cmake/help/latest/command/set_target_properties.html |
| args = list(tline.args) |
| |
| targets = [] |
| while args: |
| curr = args.pop(0) |
| if curr == 'PROPERTIES': |
| break |
| |
| targets.append(curr) |
| |
| # Now we need to try to reconsitute the original quoted format of the |
| # arguments, as a property value could have spaces in it. Unlike |
| # set_property() this is not context free. There are two approaches I |
| # can think of, both have drawbacks: |
| # |
| # 1. Assume that the property will be capitalized, this is convention |
| # but cmake doesn't require it. |
| # 2. Maintain a copy of the list here: https://cmake.org/cmake/help/latest/manual/cmake-properties.7.html#target-properties |
| # |
| # Neither of these is awesome for obvious reasons. I'm going to try |
| # option 1 first and fall back to 2, as 1 requires less code and less |
| # synchroniztion for cmake changes. |
| |
| arglist = [] # type: List[Tuple[str, List[str]]] |
| name = args.pop(0) |
| values = [] |
| for a in args: |
| if a.isupper(): |
| if values: |
| arglist.append((name, ' '.join(values).split(';'))) |
| name = a |
| values = [] |
| else: |
| values.append(a) |
| if values: |
| arglist.append((name, ' '.join(values).split(';'))) |
| |
| for name, value in arglist: |
| for i in targets: |
| if i not in self.targets: |
| return self._gen_exception('set_target_properties', 'TARGET {} not found'.format(i), tline) |
| |
| self.targets[i].properies[name] = value |
| |
| def _lex_trace(self, trace): |
| # The trace format is: '<file>(<line>): <func>(<args -- can contain \n> )\n' |
| reg_tline = re.compile(r'\s*(.*\.(cmake|txt))\(([0-9]+)\):\s*(\w+)\(([\s\S]*?) ?\)\s*\n', re.MULTILINE) |
| reg_other = re.compile(r'[^\n]*\n') |
| reg_genexp = re.compile(r'\$<.*>') |
| loc = 0 |
| while loc < len(trace): |
| mo_file_line = reg_tline.match(trace, loc) |
| if not mo_file_line: |
| skip_match = reg_other.match(trace, loc) |
| if not skip_match: |
| print(trace[loc:]) |
| raise CMakeException('Failed to parse CMake trace') |
| |
| loc = skip_match.end() |
| continue |
| |
| loc = mo_file_line.end() |
| |
| file = mo_file_line.group(1) |
| line = mo_file_line.group(3) |
| func = mo_file_line.group(4) |
| args = mo_file_line.group(5).split(' ') |
| args = list(map(lambda x: x.strip(), args)) |
| args = list(map(lambda x: reg_genexp.sub('', x), args)) # Remove generator expressions |
| |
| yield CMakeTraceLine(file, line, func, args) |
| |
| def _guess_files(self, broken_list: List[str]) -> List[str]: |
| #Try joining file paths that contain spaces |
| |
| reg_start = re.compile(r'^([A-Za-z]:)?/.*/[^./]+$') |
| reg_end = re.compile(r'^.*\.[a-zA-Z]+$') |
| |
| fixed_list = [] # type: List[str] |
| curr_str = None # type: Optional[str] |
| |
| for i in broken_list: |
| if curr_str is None: |
| curr_str = i |
| elif os.path.isfile(curr_str): |
| # Abort concatination if curr_str is an existing file |
| fixed_list += [curr_str] |
| curr_str = i |
| elif not reg_start.match(curr_str): |
| # Abort concatination if curr_str no longer matches the regex |
| fixed_list += [curr_str] |
| curr_str = i |
| elif reg_end.match(i): |
| # File detected |
| curr_str = '{} {}'.format(curr_str, i) |
| fixed_list += [curr_str] |
| curr_str = None |
| else: |
| curr_str = '{} {}'.format(curr_str, i) |
| |
| if curr_str: |
| fixed_list += [curr_str] |
| return fixed_list |