1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
from codingType import Coding, CodingType, isCodingType
import re
def isVariableName(text : str):
if ("[" in text and "]" in text):
text = text.split("[")[0] # Array indices are ok
return re.fullmatch("[a-z][a-z0-9]*(_[a-z0-9]+)+", text)
def isFunctionCall(text : str):
if (not "(" in text or not ")" in text):
return False
return isVariableName(text.split("(")[0].strip())
def removeComments(text : str):
commentStart = text.find("/*")
while (commentStart != -1):
commentEnd = text.find("*/")
if (commentEnd == -1):
return text
if (commentEnd <= commentStart):
raise SyntaxError("Error removing comment. End before start. Line: " + text)
text = text[0:commentStart] + text[commentEnd+2:]
commentStart = text.find("/*")
return text.strip()
def cleanCondition(text : str):
text = text.strip()
text = text.replace("=\xa0=", "==")
text = text.replace("|\xa0|", "||")
text = text.replace("[\xa0", "[")
text = text.replace("\xa0]", "]")
text = text.replace("\xa0", " ")
text = text.replace(" ", " ")
text = text.replace("\n", "")
text = text.replace("\t", "")
text = text.replace("\u2212", "-")
text = text.replace('−', '-')
if (text.find("\xa0") != -1):
raise SyntaxError("There still is a char to replace in the condition. This must be cleaned up first.")
return text
def cleanArgument(text : str):
text = text.strip()
text = text.replace("[\xa0", "[")
text = text.replace("\xa0]", "]")
text = text.replace("\xa0", " ")
text = text.replace("\u2212", "-")
text = text.replace('−', '-')
if (text.find("\xa0") != -1):
raise SyntaxError("There still is a char to replace in the argument. This must be cleaned up first.")
return text
def cleanComment(text : str):
text = text.strip()
text = text.replace("=\xa0=", "==")
text = text.replace("[\xa0", "[")
text = text.replace("\xa0]", "]")
text = text.replace("\xa0", " ")
text = text.replace("\n", " ")
text = text.replace("\t", "")
text = text.replace("( ", "(")
text = text.replace(" )", ")")
text = text.replace("\u2212", "-")
text = text.replace('−', '-')
if (text.find("\xa0") != -1):
raise SyntaxError("There still is a char to replace in the comment. This must be cleaned up first.")
return text
def cleanConditionPart(text : str):
text = text.strip()
text = text.replace("\xa0−\xa0", " - ")
text = text.replace('−', '-')
if (text.find("\xa0") != -1):
raise SyntaxError("There still is a char to replace in the condition. This must be cleaned up first.")
return text
def cleanIncrement(text : str):
text = text.strip()
text = text.replace("-\xa0-", "--")
text = text.replace("−\xa0−", "--")
text = text.replace('−', '-')
if (text.find("\xa0") != -1):
raise SyntaxError("There still is a char to replace in the increment. This must be cleaned up first.")
return text
def getEntryType(text : str):
text = removeComments(text)
if isVariableName(text):
return "Variable"
if isFunctionCall(text):
return "FunctionCall"
if text.startswith("for"):
return "for"
if text.startswith("if") or text.startswith("else if") or text.startswith("} else") or text.startswith("else"):
return "if"
if text.startswith("while"):
return "while"
if text.startswith("do"):
return "do"
class ParsingItem:
def __init__(self, parent):
self.parent = parent
class Variable(ParsingItem):
def __init__(self, parent):
super().__init__(parent)
self.name = None
self.arrayIndex = None
self.coding = None
self.description = None
def fromText(self, name : str, descriptor : str, variableDescriptions : dict):
if ("[" in name and "]" in name):
self.arrayIndex = []
openBracket = name.find("[")
self.name = name[0:openBracket]
while (True):
closeBracket = name.find("]")
newIndex = cleanArgument(name[openBracket+1:closeBracket].strip())
self.arrayIndex.append(newIndex)
name = name[closeBracket+1:]
openBracket = name.find("[")
if (openBracket == -1):
break
else:
self.name = name
if (self.name in variableDescriptions):
self.description = variableDescriptions[self.name]
self.coding = CodingType(descriptor)
def __str__(self):
s = ""
for _ in range(self.parent.depth):
s += " "
s += self.name
if (self.arrayIndex):
s += str(self.arrayIndex)
return f"{s} --> {self.coding}"
class CommentEntry(ParsingItem):
def __init__(self, parent):
super().__init__(parent)
self.text = None
def fromText(self, text : str):
self.text = cleanComment(text)
def __str__(self):
s = ""
for _ in range(self.parent.depth):
s += " "
return f"{s}//{self.text}"
class FunctionCall(ParsingItem):
def __init__(self, parent):
super().__init__(parent)
self.functionName = None
self.arguments = None
def fromText(self, name : str):
self.functionName = name.split("(")[0]
self.arguments = []
for argument in (name.split("(")[1].split(")")[0].split(",")):
c = cleanArgument(argument)
if (len(c) > 0):
self.arguments.append(cleanArgument(argument))
debugStop = 234
def __str__(self):
spaces = ""
for _ in range(self.parent.depth):
spaces += " "
return f"{spaces}{self.functionName}({self.arguments})"
class Container(ParsingItem):
def __init__(self, parent):
super().__init__(parent)
self.children = []
self.depth = 0
self.depth = 0
def parseChildren(self, table, tableIndex, variableDescriptions):
# Get the initial depth
t0_full = table.cell(0, tableIndex).text
while (t0_full.lstrip("\t").startswith("/*")):
# Ignore comments
tableIndex += 2
t0_full = table.cell(0, tableIndex).text
self.depth = len(t0_full) - len(t0_full.lstrip("\t"))
try:
while (True):
t0_full = table.cell(0, tableIndex).text
newDepth = len(t0_full) - len(t0_full.lstrip("\t"))
startsWithComment = t0_full.lstrip("\t").startswith("/*")
if (newDepth < self.depth and not startsWithComment):
# End of container
return tableIndex
if (newDepth > self.depth):
raise SyntaxError(f"The depth of the line is higher then the container depth. Line: {t0_full}")
t0 = t0_full.strip()
t1 = table.cell(0, tableIndex+1).text.strip()
entryType = getEntryType(t0)
lastEntry = False
try:
t2 = table.cell(0, tableIndex+2).text.strip()
if (t2 == t1):
# Skip identical entries. This may be the aforementioned glitch.
tableIndex += 1
except IndexError:
# No more data
lastEntry = True
tableIndex += 2
if (entryType == "Variable"):
v = Variable(self)
v.fromText(t0, t1, variableDescriptions)
#print(f"{v}")
self.children.append(v)
elif (entryType == "FunctionCall"):
f = FunctionCall(self)
f.fromText(t0)
#print(f"{f}")
self.children.append(f)
elif (entryType == "for"):
f = ContainerFor(self)
f.fromText(t0)
#print(f"{f}")
self.children.append(f)
tableIndex = f.parseChildren(table, tableIndex, variableDescriptions)
elif (entryType == "if"):
i = ContainerIf(self)
i.fromText(t0)
#print(f"{i}")
self.children.append(i)
tableIndex = i.parseChildren(table, tableIndex, variableDescriptions)
elif (entryType == "while"):
w = ContainerWhile(self)
w.fromText(t0)
#print(f"{w}")
self.children.append(w)
tableIndex = w.parseChildren(table, tableIndex, variableDescriptions)
elif (entryType == "do"):
d = ContainerDo(self)
d.fromText(t0)
#print(d.getDoText())
tableIndex = d.parseChildren(table, tableIndex, variableDescriptions)
tableIndex = d.parseClosingWhile(table, tableIndex)
#print(f"{d}")
self.children.append(d)
elif (entryType == "comment"):
c = CommentEntry(self)
c.fromText(t0)
#print(f"{c}")
self.children.append(c)
elif (entryType != None):
raise SyntaxError(f"Entry type is unknown. Line: {t0_full}")
else:
if (t0.strip() != "}"):
c = CommentEntry(self)
c.fromText(t0)
#print(f"{c}")
self.children.append(c)
if (lastEntry):
return tableIndex
except Exception as ex:
print(f"Error parsing {self}: {ex}")
return tableIndex
class ContainerTable(Container):
def __init__(self):
super().__init__(None)
def parseContainer(self, table, variableDescriptions):
self.parseHeader(table.cell(0, 0).text)
t1 = table.cell(0, 1).text.strip()
t2 = table.cell(0, 2).text.strip()
if (t2 == t1):
self.parseChildren(table, 3, variableDescriptions)
else:
self.parseChildren(table, 2, variableDescriptions)
def parseHeader(self, header):
header = header.replace(u'\xa0', u' ')
bracketOpen = header.find("(")
bracketClose = header.find(")")
self.name = header[:bracketOpen]
self.arguments = []
for a in header[bracketOpen+1 : bracketClose].split(","):
self.arguments.append(a.strip())
print(f"Table: {self.name}")
class ContainerIf(Container):
def __init__(self, parent):
super().__init__(parent)
self.condition = None
self.isElseIf = False
self.isElse = False
def fromText(self, text : str):
if (not text.startswith("if") and not text.startswith("else if") and not text.startswith("} else") and not text.startswith("else")):
raise SyntaxError("If container does not start with if or else if")
if (text.startswith("else if")):
self.isElseIf = True
if (text.startswith("} else") or text.startswith("else")):
self.isElse = True
return
start = text.find("(")
end = text.rfind(")")
if (start == -1 or end == -1):
raise SyntaxError("If condition does not contain brackets")
self.condition = cleanCondition(text[start+1:end])
def __str__(self):
spaces = ""
for _ in range(self.parent.depth):
spaces += " "
if (self.isElse):
return f"{spaces}else"
if (self.isElseIf):
return f"{spaces}else if({self.condition})"
return f"{spaces}if({self.condition})"
class ContainerWhile(Container):
def __init__(self, parent):
super().__init__(parent)
self.condition = None
def fromText(self, text : str):
if (not text.startswith("while")):
raise SyntaxError("While container does not start with while")
start = text.find("(")
end = text.rfind(")")
if (start == -1 or end == -1):
raise SyntaxError("While loop does not contain brackets")
self.condition = cleanCondition(text[start+1:end])
def __str__(self):
spaces = ""
for _ in range(self.parent.depth):
spaces += " "
return f"{spaces}while({self.condition})"
class ContainerDo(Container):
def __init__(self, parent):
super().__init__(parent)
self.condition = None
def fromText(self, text : str):
if (not text.startswith("do")):
raise SyntaxError("Do container does not start with do")
def parseClosingWhile(self, table, tableIndex : int):
t0_full = table.cell(0, tableIndex).text
text = t0_full.strip()
if (not text.startswith("} while")):
raise SyntaxError("do does not end with while")
start = text.find("(")
end = text.rfind(")")
if (start == -1 or end == -1):
raise SyntaxError("Do ... while loop does not contain brackets")
self.condition = cleanCondition(text[start+1:end])
t1 = table.cell(0, tableIndex+1).text.strip()
try:
t2 = table.cell(0, tableIndex+2).text.strip()
if (t2 == t1):
# Skip identical entries. This may be the aforementioned glitch.
tableIndex += 1
except IndexError:
# No more data
pass
tableIndex += 2
return tableIndex
def getDoText(self):
spaces = ""
for _ in range(self.parent.depth):
spaces += " "
return f"{spaces}do"
def __str__(self):
spaces = ""
for _ in range(self.parent.depth):
spaces += " "
return f"{spaces}while ({self.condition})"
class ContainerFor(Container):
def __init__(self, parent):
super().__init__(parent)
self.variableName = None
self.initialValue = None
self.breakCondition = None
self.increment = None
def fromText(self, text : str):
split = text.split(";")
if (not split[0].startswith("for")):
raise SyntaxError("For container does not start with for")
firstPart = split[0][split[0].find("(") + 1:]
self.variableName = cleanConditionPart(firstPart.split("=")[0])
self.initialValue = cleanConditionPart(firstPart.split("=")[1])
self.breakCondition = cleanCondition(split[1])
self.increment = cleanIncrement(split[2][0:split[2].find(")")])
def __str__(self):
spaces = ""
for _ in range(self.parent.depth):
spaces += " "
return f"{spaces}for({self.variableName} = {self.initialValue}; {self.breakCondition}; {self.increment})"
def parseDocumentTables(document, variableDescriptions):
parsedTables = []
firstLastEntry = ["nal_unit_header", "slice_data"]
skipEntries = ["sei_rbsp"]
firstEntryFound = False
for table in document.tables:
entryName = table.cell(0, 0).text.split("(")[0]
if (not firstEntryFound and entryName == firstLastEntry[0]):
firstEntryFound = True
if (firstEntryFound and entryName == firstLastEntry[1]):
break
if (entryName in skipEntries):
continue
if firstEntryFound:
tableItem = ContainerTable()
tableItem.parseContainer(table, variableDescriptions)
parsedTables.append(tableItem)
return parsedTables
|