summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-09-22 16:44:29 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2019-09-23 05:28:05 +0000
commit5f856a6d0c347bb8ed18be80e7ae3ebd5c9fe850 (patch)
tree26ba049d76d387b1765bd4d455983eb823ce0eb1
parentf0a22bd78dcd07834dcede4f25587eb619c684ba (diff)
pro2cmake: Handle if() conditions with pyparsing
Previously we used a regular expression that matched parentheses, but the regexp didn't match the parantheses in a balanced way if there was more than one pair. Instead use a helper function that uses pyparsing to match balanced parantheses, and removes the if keyword, leaving just the nested expression. Change-Id: Ie621e6a305e57aa411838288599366ccfba063cc Reviewed-by: Simon Hausmann <simon.hausmann@qt.io> Reviewed-by: Qt CMake Build Bot
-rwxr-xr-xutil/cmake/pro2cmake.py21
1 files changed, 15 insertions, 6 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index 831bda0e6a..4411dc8c2c 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -1420,6 +1420,19 @@ def parseProFile(file: str, *, debug=False):
return parser.parseFile(file)
+# Given "if(a|b):c" returns "(a|b):c". Uses pyparsing to keep the parentheses
+# balanced.
+def unwrap_if(input_string):
+ # Compute the grammar only once.
+ if not hasattr(unwrap_if, "if_grammar"):
+ expr_with_parentheses = pp.originalTextFor(pp.nestedExpr())
+ if_keyword = pp.Suppress(pp.Keyword("if"))
+ unwrap_if.if_grammar = if_keyword + expr_with_parentheses
+
+ output_string = unwrap_if.if_grammar.transformString(input_string)
+ return output_string
+
+
def map_condition(condition: str) -> str:
# Some hardcoded cases that are too bothersome to generalize.
condition = re.sub(
@@ -1450,12 +1463,8 @@ def map_condition(condition: str) -> str:
pattern = r"(equals|greaterThan|lessThan)\(QT_GCC_([A-Z]+)_VERSION,[ ]*([0-9]+)\)"
condition = re.sub(pattern, gcc_version_handler, condition)
- # TODO: the current if(...) replacement makes the parentheses
- # unbalanced when there are nested expressions.
- # Need to fix this either with pypi regex recursive regexps,
- # using pyparsing, or some other proper means of handling
- # balanced parentheses.
- condition = re.sub(r"\bif\s*\((.*?)\)", r"\1", condition)
+ # Handle if(...) conditions.
+ condition = unwrap_if(condition)
condition = re.sub(r"\bisEmpty\s*\((.*?)\)", r"\1_ISEMPTY", condition)
condition = re.sub(r'\bcontains\s*\((.*?),\s*"?(.*?)"?\)', r"\1___contains___\2", condition)