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 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
|
import sys, os.path
from globals import *
import macroparser
class EOF(Exception):
def __init__ (self):
pass
def str (self):
return "end of file"
class BOF(Exception):
def __init__ (self):
pass
def str (self):
return "beginning of file"
def removeHeaderQuotes (orig):
if len(orig) <= 2:
return orig
elif orig[0] == orig[-1] == '"':
return orig[1:-1]
elif orig[0] == '<' and orig[-1] == '>':
return orig[1:-1]
return orig
def dumpTokens (tokens, toError=False):
scope = 0
indent = " "
line = ''
chars = ''
for token in tokens:
if token in '{<':
if len(line) > 0:
chars += indent*scope + line + "\n"
line = ''
chars += indent*scope + token + "\n"
scope += 1
elif token in '}>':
if len(line) > 0:
chars += indent*scope + line + "\n"
line = ''
scope -= 1
chars += indent*scope + token
elif token == ';':
if len(line) > 0:
chars += indent*scope + line + ";\n"
line = ''
else:
chars += ";\n"
elif len(token) > 0:
line += token + ' '
if len(line) > 0:
chars += line
chars += "\n"
if toError:
sys.stderr.write(chars)
else:
sys.stdout.write(chars)
class HeaderData(object):
def __init__ (self):
self.defines = {}
self.tokens = []
class SrcLexer(object):
"""Lexicographical analyzer for .src format.
The role of a lexer is to parse the source file and break it into
appropriate tokens. Such tokens are later passed to a parser to
build the syntax tree.
"""
headerCache = {}
VISIBLE = 0
INVISIBLE_PRE = 1
INVISIBLE_POST = 2
def __init__ (self, chars, filepath = None):
self.filepath = filepath
self.parentLexer = None
self.chars = chars
self.bufsize = len(self.chars)
# TODO: use parameters for this
# Properties that can be copied.
self.headerDict = dict ()
self.debug = False
self.debugMacro = False
self.includeDirs = list ()
self.expandHeaders = True
self.inMacroDefine = False
self.stopOnHeader = False
def copyProperties (self, other):
"""Copy properties from another instance of SrcLexer."""
# TODO: use parameters for this
self.headerDict = other.headerDict
self.debug = other.debug
self.debugMacro = other.debugMacro
self.includeDirs = other.includeDirs[:]
self.expandHeaders = other.expandHeaders
self.inMacroDefine = other.inMacroDefine
self.stopOnHeader = other.stopOnHeader
def init (self):
self.firstNonBlank = ''
self.token = ''
self.tokens = []
self.defines = {}
self.visibilityStack = []
def getTokens (self):
return self.tokens
def getDefines (self):
return self.defines
def nextPos (self, i):
while True:
i += 1
try:
c = self.chars[i]
except IndexError:
raise EOF
if ord(c) in [0x0D]:
continue
break
return i
def prevPos (self, i):
while True:
i -= 1
try:
c = self.chars[i]
except IndexError:
raise BOF
if ord(c) in [0x0D]:
continue
break
return i
def isCodeVisible (self):
if len(self.visibilityStack) == 0:
return True
for item in self.visibilityStack:
if item != SrcLexer.VISIBLE:
return False
return True
def tokenize (self):
self.init()
i = 0
while True:
c = self.chars[i]
if self.firstNonBlank == '' and not c in [' ', "\n", "\t"]:
# Store the first non-blank in a line.
self.firstNonBlank = c
elif c == "\n":
self.firstNonBlank = ''
if c == '#':
i = self.pound(i)
elif c == '/':
i = self.slash(i)
elif c == "\n":
i = self.lineBreak(i)
elif c == '"':
i = self.doubleQuote(i)
elif c in [' ', "\t"]:
i = self.blank(i)
elif c in ";()[]{}<>,=+-*":
# Any outstanding single-character token.
i = self.anyToken(i, c)
elif self.isCodeVisible():
self.token += c
try:
i = self.nextPos(i)
except EOF:
break
if len(self.token):
self.tokens.append(self.token)
if not self.parentLexer and self.debug:
progress ("-"*68 + "\n")
progress ("All defines found in this translation unit:\n")
keys = self.defines.keys()
keys.sort()
for key in keys:
progress ("@ %s\n"%key)
def dumpTokens (self, toError=False):
dumpTokens(self.tokens, toError)
def maybeAddToken (self):
if len(self.token) > 0:
self.tokens.append(self.token)
self.token = ''
#--------------------------------------------------------------------
# character handlers
def blank (self, i):
if not self.isCodeVisible():
return i
self.maybeAddToken()
return i
def pound (self, i):
if self.inMacroDefine:
return i
if not self.firstNonBlank == '#':
return i
self.maybeAddToken()
# We are in preprocessing mode.
# Get the macro command name '#<command> .....'
command, define, buf = '', '', ''
firstNonBlank = False
while True:
try:
i = self.nextPos(i)
c = self.chars[i]
if c == '\\' and self.chars[self.nextPos(i)] == "\n":
i = self.nextPos(i)
continue
except EOF:
break
if c == "\n":
if len(buf) > 0 and len(command) == 0:
command = buf
i = self.prevPos(i)
break
elif c in [' ', "\t"]:
if not firstNonBlank:
# Ignore any leading blanks after the '#'.
continue
if len(command) == 0:
command = buf
buf = ''
else:
buf += ' '
elif c == '(':
if len(buf) > 0 and len(command) == 0:
command = buf
buf += c
else:
if not firstNonBlank:
firstNonBlank = True
buf += c
if command == 'define':
self.handleMacroDefine(buf)
elif command == 'include':
self.handleMacroInclude(buf)
elif command == 'ifdef':
defineName = buf.strip()
if self.defines.has_key(defineName):
self.visibilityStack.append(SrcLexer.VISIBLE)
else:
self.visibilityStack.append(SrcLexer.INVISIBLE_PRE)
elif command == 'ifndef':
defineName = buf.strip()
if self.defines.has_key(defineName):
self.visibilityStack.append(SrcLexer.INVISIBLE_PRE)
else:
self.visibilityStack.append(SrcLexer.VISIBLE)
elif command == 'if':
if self.evalCodeVisibility(buf):
self.visibilityStack.append(SrcLexer.VISIBLE)
else:
self.visibilityStack.append(SrcLexer.INVISIBLE_PRE)
elif command == 'elif':
if len(self.visibilityStack) == 0:
raise ParseError ('')
if self.visibilityStack[-1] == SrcLexer.VISIBLE:
self.visibilityStack[-1] = SrcLexer.INVISIBLE_POST
elif self.visibilityStack[-1] == SrcLexer.INVISIBLE_PRE:
# Evaluate only if the current visibility is false.
if self.evalCodeVisibility(buf):
self.visibilityStack[-1] = SrcLexer.VISIBLE
elif command == 'else':
if len(self.visibilityStack) == 0:
raise ParseError ('')
if self.visibilityStack[-1] == SrcLexer.VISIBLE:
self.visibilityStack[-1] = SrcLexer.INVISIBLE_POST
if self.visibilityStack[-1] == SrcLexer.INVISIBLE_PRE:
self.visibilityStack[-1] = SrcLexer.VISIBLE
elif command == 'endif':
if len(self.visibilityStack) == 0:
raise ParseError ('')
self.visibilityStack.pop()
elif command == 'undef':
pass
elif command in ['error', 'pragma']:
pass
else:
print "'%s' '%s'"%(command, buf)
print self.filepath
sys.exit(0)
return i
def evalCodeVisibility (self, buf):
try:
return eval(buf)
except:
return True
def handleMacroDefine (self, buf):
mparser = macroparser.MacroParser(buf)
mparser.debug = self.debugMacro
mparser.parse()
macro = mparser.getMacro()
if macro:
self.defines[macro.name] = macro
def handleMacroInclude (self, buf):
# Strip excess string if any.
pos = buf.find(' ')
if pos >= 0:
buf = buf[:pos]
headerSub = removeHeaderQuotes(buf)
if not self.expandHeaders:
# We don't want to expand headers. Bail out.
if self.debug:
progress ("%s ignored\n"%headerSub)
return
defines = {}
headerPath = None
for includeDir in self.includeDirs:
hpath = includeDir + '/' + headerSub
if os.path.isfile(hpath) and hpath != self.filepath:
headerPath = hpath
break
if not headerPath:
error("included header file " + headerSub + " not found\n", self.stopOnHeader)
return
if self.debug:
progress ("%s found\n"%headerPath)
if headerPath in self.headerDict:
if self.debug:
progress ("%s already included\n"%headerPath)
return
if SrcLexer.headerCache.has_key(headerPath):
if self.debug:
progress ("%s in cache\n"%headerPath)
for key in SrcLexer.headerCache[headerPath].defines.keys():
self.defines[key] = SrcLexer.headerCache[headerPath].defines[key]
return
chars = open(headerPath, 'r').read()
mclexer = SrcLexer(chars, headerPath)
mclexer.copyProperties(self)
mclexer.parentLexer = self
mclexer.tokenize()
hdrData = HeaderData()
hdrData.tokens = mclexer.getTokens()
headerDefines = mclexer.getDefines()
for key in headerDefines.keys():
defines[key] = headerDefines[key]
hdrData.defines[key] = headerDefines[key]
self.headerDict[headerPath] = True
SrcLexer.headerCache[headerPath] = hdrData
# Update the list of headers that have already been expaneded.
for key in mclexer.headerDict.keys():
self.headerDict[key] = True
if self.debug:
progress ("defines found in header %s:\n"%headerSub)
for key in defines.keys():
progress (" '%s'\n"%key)
for key in defines.keys():
self.defines[key] = defines[key]
def slash (self, i):
if not self.isCodeVisible():
return i
if i < self.bufsize - 1 and self.chars[i+1] == '/':
# Parse line comment.
line = ''
i += 2
while i < self.bufsize:
c = self.chars[i]
if ord(c) in [0x0A, 0x0D]:
return i - 1
line += c
i += 1
self.token = ''
elif i < self.bufsize - 1 and self.chars[i+1] == '*':
comment = ''
i += 2
while i < self.bufsize:
c = self.chars[i]
if c == '/' and self.chars[i-1] == '*':
return i
comment += c
i += 1
else:
return self.anyToken(i, '/')
return i
def lineBreak (self, i):
if not self.isCodeVisible():
return i
self.maybeAddToken()
return i
def doubleQuote (self, i):
if not self.isCodeVisible():
return i
literal = ''
i += 1
while i < self.bufsize:
c = self.chars[i]
if c == '"':
self.tokens.append('"'+literal+'"')
break
literal += c
i += 1
return i
def anyToken (self, i, token):
if not self.isCodeVisible():
return i
self.maybeAddToken()
self.token = token
self.maybeAddToken()
return i
|