BaseTools/UPT: Fix UNI file name issue

Fix the issue of creating duplicate UNI file names
Fix the issue of removing packages

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hess Chen <hesheng.chen@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
Hess Chen 2017-08-23 13:53:36 +08:00 committed by Yonghong Zhu
parent cefbbb3d08
commit f71b163020
4 changed files with 16 additions and 4 deletions

View File

@ -55,6 +55,8 @@ class DependencyRules(object):
self.PkgsToBeDepend.extend(self.GenToBeInstalledPkgList(ToBeInstalledPkgList)) self.PkgsToBeDepend.extend(self.GenToBeInstalledPkgList(ToBeInstalledPkgList))
def GenToBeInstalledPkgList(self, ToBeInstalledPkgList): def GenToBeInstalledPkgList(self, ToBeInstalledPkgList):
if not ToBeInstalledPkgList:
return []
RtnList = [] RtnList = []
for Dist in ToBeInstalledPkgList: for Dist in ToBeInstalledPkgList:
for Package in Dist.PackageSurfaceArea: for Package in Dist.PackageSurfaceArea:

View File

@ -140,7 +140,9 @@ def ModuleToInf(ModuleObject, PackageObject=None, DistHeader=None):
# #
FileHeader = GenHeaderCommentSection(ModuleAbstract, ModuleDescription, ModuleCopyright, ModuleLicense, False, \ FileHeader = GenHeaderCommentSection(ModuleAbstract, ModuleDescription, ModuleCopyright, ModuleLicense, False, \
DT.TAB_COMMENT_EDK1_SPLIT) DT.TAB_COMMENT_EDK1_SPLIT)
GenModuleUNIEncodeFile(ModuleObject, FileHeader) ModuleUniFile = GenModuleUNIEncodeFile(ModuleObject, FileHeader)
if ModuleUniFile:
ModuleObject.SetModuleUniFile(os.path.basename(ModuleUniFile))
# #
# Judge whether the INF file is an AsBuild INF. # Judge whether the INF file is an AsBuild INF.
@ -310,7 +312,7 @@ def GenDefines(ModuleObject):
# TAB_INF_DEFINES_VERSION_STRING # TAB_INF_DEFINES_VERSION_STRING
if ModuleObject.UNIFlag: if ModuleObject.UNIFlag:
Statement = (u'%s ' % DT.TAB_INF_DEFINES_MODULE_UNI_FILE).ljust(LeftOffset) + \ Statement = (u'%s ' % DT.TAB_INF_DEFINES_MODULE_UNI_FILE).ljust(LeftOffset) + \
u'= %s' % ModuleObject.GetBaseName() + '.uni' u'= %s' % ModuleObject.GetModuleUniFile()
SpecialStatementList.append(Statement) SpecialStatementList.append(Statement)
# TAB_INF_DEFINES_MODULE_TYPE # TAB_INF_DEFINES_MODULE_TYPE

View File

@ -969,6 +969,7 @@ def GetUniFileName(FilePath, FileName):
pass pass
LargestIndex = -1 LargestIndex = -1
IndexNotFound = True
for File in Files: for File in Files:
if File.upper().startswith(FileName.upper()) and File.upper().endswith('.UNI'): if File.upper().startswith(FileName.upper()) and File.upper().endswith('.UNI'):
Index = File.upper().replace(FileName.upper(), '').replace('.UNI', '') Index = File.upper().replace(FileName.upper(), '').replace('.UNI', '')
@ -978,11 +979,12 @@ def GetUniFileName(FilePath, FileName):
except Exception: except Exception:
Index = -1 Index = -1
else: else:
IndexNotFound = False
Index = 0 Index = 0
if Index > LargestIndex: if Index > LargestIndex:
LargestIndex = Index + 1 LargestIndex = Index + 1
if LargestIndex > -1: if LargestIndex > -1 and not IndexNotFound:
return os.path.normpath(os.path.join(FilePath, FileName + str(LargestIndex) + '.uni')) return os.path.normpath(os.path.join(FilePath, FileName + str(LargestIndex) + '.uni'))
else: else:
return os.path.normpath(os.path.join(FilePath, FileName + '.uni')) return os.path.normpath(os.path.join(FilePath, FileName + '.uni'))

View File

@ -1,7 +1,7 @@
## @file ## @file
# This file is used to define a class object to describe a module # This file is used to define a class object to describe a module
# #
# Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved.<BR> # Copyright (c) 2011 - 2017, Intel Corporation. All rights reserved.<BR>
# #
# This program and the accompanying materials are licensed and made available # This program and the accompanying materials are licensed and made available
# under the terms and conditions of the BSD License which accompanies this # under the terms and conditions of the BSD License which accompanies this
@ -105,6 +105,7 @@ class ModuleHeaderObject(IdentificationObject, CommonHeaderObject, BinaryHeaderO
self.PiSpecificationVersion = '' self.PiSpecificationVersion = ''
self.UefiSpecificationVersion = '' self.UefiSpecificationVersion = ''
self.UNIFlag = False self.UNIFlag = False
self.ModuleUniFile = ''
# #
# SpecObject # SpecObject
# #
@ -208,6 +209,11 @@ class ModuleHeaderObject(IdentificationObject, CommonHeaderObject, BinaryHeaderO
def GetSupArchList(self): def GetSupArchList(self):
return self.SupArchList return self.SupArchList
def SetModuleUniFile(self, ModuleUniFile):
self.ModuleUniFile = ModuleUniFile
def GetModuleUniFile(self):
return self.ModuleUniFile
## ##
# SourceFileObject # SourceFileObject
# #