BaseTools: Update ECC tool to support multiple workspaces

Update ECC to refer MultipleWorkspace class to convert
the file path from WORKSPACE and PACKAGES_PATH.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Li YangX <yangx.li@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18581 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Li YangX 2015-10-08 09:28:51 +00:00 committed by lgao4
parent fb0f8067ea
commit c4f52e128f
3 changed files with 15 additions and 11 deletions

View File

@ -19,6 +19,7 @@ from MetaDataParser import ParseHeaderCommentSection
import EccGlobalData import EccGlobalData
import c import c
from Common.LongFilePathSupport import OpenLongFilePath as open from Common.LongFilePathSupport import OpenLongFilePath as open
from Common.MultipleWorkspace import MultipleWorkspace as mws
## Check ## Check
# #
@ -380,9 +381,7 @@ class Check(object):
for Key in RecordDict: for Key in RecordDict:
if len(RecordDict[Key]) > 1: if len(RecordDict[Key]) > 1:
for Item in RecordDict[Key]: for Item in RecordDict[Key]:
Path = Item[1].replace(EccGlobalData.gWorkspace, '') Path = mws.relpath(Item[1], EccGlobalData.gWorkspace)
if Path.startswith('\\') or Path.startswith('/'):
Path = Path[1:]
if not EccGlobalData.gException.IsException(ERROR_INCLUDE_FILE_CHECK_NAME, Path): if not EccGlobalData.gException.IsException(ERROR_INCLUDE_FILE_CHECK_NAME, Path):
EccGlobalData.gDb.TblReport.Insert(ERROR_INCLUDE_FILE_CHECK_NAME, OtherMsg="The file name for [%s] is duplicate" % Path, BelongsToTable='File', BelongsToItem=Item[0]) EccGlobalData.gDb.TblReport.Insert(ERROR_INCLUDE_FILE_CHECK_NAME, OtherMsg="The file name for [%s] is duplicate" % Path, BelongsToTable='File', BelongsToItem=Item[0])
@ -653,7 +652,7 @@ class Check(object):
if LibraryClass[1].upper() == 'NULL' or LibraryClass[1].startswith('!ifdef') or LibraryClass[1].startswith('!ifndef') or LibraryClass[1].endswith('!endif'): if LibraryClass[1].upper() == 'NULL' or LibraryClass[1].startswith('!ifdef') or LibraryClass[1].startswith('!ifndef') or LibraryClass[1].endswith('!endif'):
continue continue
else: else:
LibraryIns = os.path.normpath(os.path.join(EccGlobalData.gWorkspace, LibraryClass[2])) LibraryIns = os.path.normpath(mws.join(EccGlobalData.gWorkspace, LibraryClass[2]))
SqlCommand = """select Value3 from Inf where BelongsToFile = SqlCommand = """select Value3 from Inf where BelongsToFile =
(select ID from File where lower(FullPath) = lower('%s')) (select ID from File where lower(FullPath) = lower('%s'))
and Value2 = '%s'""" % (LibraryIns, 'LIBRARY_CLASS') and Value2 = '%s'""" % (LibraryIns, 'LIBRARY_CLASS')
@ -729,7 +728,7 @@ class Check(object):
for Record in RecordSet: for Record in RecordSet:
FdfID = Record[0] FdfID = Record[0]
FilePath = Record[1] FilePath = Record[1]
FilePath = os.path.normpath(os.path.join(EccGlobalData.gWorkspace, FilePath)) FilePath = os.path.normpath(mws.join(EccGlobalData.gWorkspace, FilePath))
SqlCommand = """select ID from Inf where Model = %s and BelongsToFile = (select ID from File where FullPath like '%s') SqlCommand = """select ID from Inf where Model = %s and BelongsToFile = (select ID from File where FullPath like '%s')
""" % (MODEL_EFI_SOURCE_FILE, FilePath) """ % (MODEL_EFI_SOURCE_FILE, FilePath)
NewRecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand) NewRecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)
@ -913,9 +912,7 @@ class Check(object):
RecordSet = Table.Exec(SqlCommand) RecordSet = Table.Exec(SqlCommand)
Path = "" Path = ""
for Record in RecordSet: for Record in RecordSet:
Path = Record[0].replace(EccGlobalData.gWorkspace, '') Path = mws.relpath(Record[0], EccGlobalData.gWorkspace)
if Path.startswith('\\') or Path.startswith('/'):
Path = Path[1:]
return Path return Path
# Check whether two module INFs under one workspace has the same FILE_GUID value # Check whether two module INFs under one workspace has the same FILE_GUID value

View File

@ -38,6 +38,7 @@ import c
import re, string import re, string
from Exception import * from Exception import *
from Common.LongFilePathSupport import OpenLongFilePath as open from Common.LongFilePathSupport import OpenLongFilePath as open
from Common.MultipleWorkspace import MultipleWorkspace as mws
## Ecc ## Ecc
# #
@ -70,8 +71,13 @@ class Ecc(object):
# #
WorkspaceDir = os.path.normcase(os.path.normpath(os.environ["WORKSPACE"])) WorkspaceDir = os.path.normcase(os.path.normpath(os.environ["WORKSPACE"]))
os.environ["WORKSPACE"] = WorkspaceDir os.environ["WORKSPACE"] = WorkspaceDir
# set multiple workspace
PackagesPath = os.getenv("PACKAGES_PATH")
mws.setWs(WorkspaceDir, PackagesPath)
if "ECP_SOURCE" not in os.environ: if "ECP_SOURCE" not in os.environ:
os.environ["ECP_SOURCE"] = os.path.join(WorkspaceDir, GlobalData.gEdkCompatibilityPkg) os.environ["ECP_SOURCE"] = mws.join(WorkspaceDir, GlobalData.gEdkCompatibilityPkg)
if "EFI_SOURCE" not in os.environ: if "EFI_SOURCE" not in os.environ:
os.environ["EFI_SOURCE"] = os.environ["ECP_SOURCE"] os.environ["EFI_SOURCE"] = os.environ["ECP_SOURCE"]
if "EDK_SOURCE" not in os.environ: if "EDK_SOURCE" not in os.environ:

View File

@ -14,6 +14,7 @@
import Common.LongFilePathOs as os import Common.LongFilePathOs as os
from CommonDataClass.DataClass import * from CommonDataClass.DataClass import *
from EccToolError import * from EccToolError import *
from Common.MultipleWorkspace import MultipleWorkspace as mws
import EccGlobalData import EccGlobalData
import re import re
## Get the inlcude path list for a source file ## Get the inlcude path list for a source file
@ -33,8 +34,8 @@ def GetIncludeListOfFile(WorkSpace, Filepath, Db):
% (MODEL_META_DATA_PACKAGE, MODEL_EFI_SOURCE_FILE, '\\', Filepath) % (MODEL_META_DATA_PACKAGE, MODEL_EFI_SOURCE_FILE, '\\', Filepath)
RecordSet = Db.TblFile.Exec(SqlCommand) RecordSet = Db.TblFile.Exec(SqlCommand)
for Record in RecordSet: for Record in RecordSet:
DecFullPath = os.path.normpath(os.path.join(WorkSpace, Record[0])) DecFullPath = os.path.normpath(mws.join(WorkSpace, Record[0]))
InfFullPath = os.path.normpath(os.path.join(WorkSpace, Record[1])) InfFullPath = os.path.normpath(mws.join(WorkSpace, Record[1]))
(DecPath, DecName) = os.path.split(DecFullPath) (DecPath, DecName) = os.path.split(DecFullPath)
(InfPath, InfName) = os.path.split(InfFullPath) (InfPath, InfName) = os.path.split(InfFullPath)
SqlCommand = """select Value1 from Dec where BelongsToFile = SqlCommand = """select Value1 from Dec where BelongsToFile =