Sync BaseTool trunk (version r2397) into EDKII BaseTools. The change mainly includes
1. Fix the issue that root directory of disk can’t be used as WORKSPACE. 2. Update AutoGen code style to pass C++ compiler. Signed-off-by: lgao4 Reviewed-by: jsu1 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12676 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -1118,6 +1118,34 @@ class FdfParser:
|
||||
def SetFileBufferPos(self, Pos):
|
||||
(self.CurrentLineNumber, self.CurrentOffsetWithinLine) = Pos
|
||||
|
||||
## Preprocess() method
|
||||
#
|
||||
# Preprocess comment, conditional directive, include directive, replace macro.
|
||||
# Exception will be raised if syntax error found
|
||||
#
|
||||
# @param self The object pointer
|
||||
#
|
||||
def Preprocess(self):
|
||||
self.__StringToList()
|
||||
self.PreprocessFile()
|
||||
self.PreprocessIncludeFile()
|
||||
self.__StringToList()
|
||||
self.PreprocessFile()
|
||||
self.PreprocessConditionalStatement()
|
||||
self.__StringToList()
|
||||
for Pos in self.__WipeOffArea:
|
||||
self.__ReplaceFragment(Pos[0], Pos[1])
|
||||
self.Profile.FileLinesList = ["".join(list) for list in self.Profile.FileLinesList]
|
||||
|
||||
while self.__GetDefines():
|
||||
pass
|
||||
|
||||
Index = 0
|
||||
while Index < len(self.Profile.FileLinesList):
|
||||
FileLineTuple = GetRealFileLine(self.FileName, Index + 1)
|
||||
self.Profile.FileLinesList[Index] = self.__ReplaceMacros(self.Profile.FileLinesList[Index], FileLineTuple[0], FileLineTuple[1])
|
||||
Index += 1
|
||||
|
||||
## ParseFile() method
|
||||
#
|
||||
# Parse the file profile buffer to extract fd, fv ... information
|
||||
@ -1128,26 +1156,7 @@ class FdfParser:
|
||||
def ParseFile(self):
|
||||
|
||||
try:
|
||||
self.__StringToList()
|
||||
self.PreprocessFile()
|
||||
self.PreprocessIncludeFile()
|
||||
self.__StringToList()
|
||||
self.PreprocessFile()
|
||||
self.PreprocessConditionalStatement()
|
||||
self.__StringToList()
|
||||
for Pos in self.__WipeOffArea:
|
||||
self.__ReplaceFragment(Pos[0], Pos[1])
|
||||
self.Profile.FileLinesList = ["".join(list) for list in self.Profile.FileLinesList]
|
||||
|
||||
while self.__GetDefines():
|
||||
pass
|
||||
|
||||
Index = 0
|
||||
while Index < len(self.Profile.FileLinesList):
|
||||
FileLineTuple = GetRealFileLine(self.FileName, Index + 1)
|
||||
self.Profile.FileLinesList[Index] = self.__ReplaceMacros(self.Profile.FileLinesList[Index], FileLineTuple[0], FileLineTuple[1])
|
||||
Index += 1
|
||||
|
||||
self.Preprocess()
|
||||
while self.__GetFd():
|
||||
pass
|
||||
|
||||
|
Reference in New Issue
Block a user