blob: ce11e2a528a66e662ab4b92f0b7dd245f9ce3645 [file] [log] [blame]
# Copyright (C) 2014 The Android Open Source Project
#
# 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.
from common.logger import Logger
from file_format.checker.struct import RegexExpression
import re
def headAndTail(list):
return list[0], list[1:]
def splitAtSeparators(expressions):
""" Splits a list of RegexExpressions at separators. """
splitExpressions = []
wordStart = 0
for index, expression in enumerate(expressions):
if expression.variant == RegexExpression.Variant.Separator:
splitExpressions.append(expressions[wordStart:index])
wordStart = index + 1
splitExpressions.append(expressions[wordStart:])
return splitExpressions
def matchWords(checkerWord, stringWord, variables, pos):
""" Attempts to match a list of RegexExpressions against a string.
Returns updated variable dictionary if successful and None otherwise.
"""
for expression in checkerWord:
# If `expression` is a variable reference, replace it with the value.
if expression.variant == RegexExpression.Variant.VarRef:
if expression.name in variables:
pattern = re.escape(variables[expression.name])
else:
Logger.testFailed("Missing definition of variable \"{}\"".format(expression.name),
pos.fileName, pos.lineNo)
else:
pattern = expression.pattern
# Match the expression's regex pattern against the remainder of the word.
# Note: re.match will succeed only if matched from the beginning.
match = re.match(pattern, stringWord)
if not match:
return None
# If `expression` was a variable definition, set the variable's value.
if expression.variant == RegexExpression.Variant.VarDef:
if expression.name not in variables:
variables = variables.copyWith(expression.name, stringWord[:match.end()])
else:
Logger.testFailed("Multiple definitions of variable \"{}\"".format(expression.name),
pos.fileName, pos.lineNo)
# Move cursor by deleting the matched characters.
stringWord = stringWord[match.end():]
# Make sure the entire word matched, i.e. `stringWord` is empty.
if stringWord:
return None
return variables
def MatchLines(checkerLine, stringLine, variables):
""" Attempts to match a CHECK line against a string. Returns variable state
after the match if successful and None otherwise.
"""
checkerWords = splitAtSeparators(checkerLine.expressions)
stringWords = stringLine.split()
while checkerWords:
# Get the next run of RegexExpressions which must match one string word.
checkerWord, checkerWords = headAndTail(checkerWords)
# Keep reading words until a match is found.
wordMatched = False
while stringWords:
stringWord, stringWords = headAndTail(stringWords)
newVariables = matchWords(checkerWord, stringWord, variables, checkerLine)
if newVariables is not None:
wordMatched = True
variables = newVariables
break
if not wordMatched:
return None
# All RegexExpressions matched. Return new variable state.
return variables