mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
1) remove wildcard imports and use explicit imports 2) refactor to use shared variables from Common/DataType 3) rename to not shadow imports 4) don't assign a variable in a loop (just do final assignment) 5) remove spaces, parens, unused or commented out code, etc. 6) merge unnecessary parent classes into child 7) refactor to share DXE and PEI apriori GUIDs from one place this includes changes to Build and EOT files 8) for PEP8, dont use __ for custom methods. Cc: Yonghong Zhu <yonghong.zhu@intel.com> Cc: Liming Gao <liming.gao@intel.com> Cc: Bob C Feng <bob.c.feng@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
339 lines
8.3 KiB
Python
339 lines
8.3 KiB
Python
## @file
|
|
# classes represent data in FDF
|
|
#
|
|
# Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
#
|
|
# This program and the accompanying materials
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
#
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
#
|
|
|
|
## FD data in FDF
|
|
#
|
|
#
|
|
class FDClassObject:
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
self.FdUiName = ''
|
|
self.CreateFileName = None
|
|
self.BaseAddress = None
|
|
self.BaseAddressPcd = None
|
|
self.Size = None
|
|
self.SizePcd = None
|
|
self.ErasePolarity = None
|
|
# 3-tuple list (blockSize, numBlocks, pcd)
|
|
self.BlockSizeList = []
|
|
# DefineVarDict[var] = value
|
|
self.DefineVarDict = {}
|
|
# SetVarDict[var] = value
|
|
self.SetVarDict = {}
|
|
self.RegionList = []
|
|
self.vtfRawDict = {}
|
|
|
|
## FFS data in FDF
|
|
#
|
|
#
|
|
class FfsClassObject:
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
self.NameGuid = None
|
|
self.Fixed = False
|
|
self.CheckSum = False
|
|
self.Alignment = None
|
|
self.SectionList = []
|
|
|
|
## FILE statement data in FDF
|
|
#
|
|
#
|
|
class FileStatementClassObject (FfsClassObject) :
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
FfsClassObject.__init__(self)
|
|
self.FvFileType = None
|
|
self.FileName = None
|
|
self.KeyStringList = []
|
|
self.FvName = None
|
|
self.FdName = None
|
|
self.DefineVarDict = {}
|
|
self.KeepReloc = None
|
|
|
|
## INF statement data in FDF
|
|
#
|
|
#
|
|
class FfsInfStatementClassObject(FfsClassObject):
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
FfsClassObject.__init__(self)
|
|
self.Rule = None
|
|
self.Version = None
|
|
self.Ui = None
|
|
self.InfFileName = None
|
|
self.BuildNum = ''
|
|
self.KeyStringList = []
|
|
self.KeepReloc = None
|
|
self.UseArch = None
|
|
|
|
## section data in FDF
|
|
#
|
|
#
|
|
class SectionClassObject:
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
self.Alignment = None
|
|
|
|
## Depex expression section in FDF
|
|
#
|
|
#
|
|
class DepexSectionClassObject (SectionClassObject):
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
self.DepexType = None
|
|
self.Expression = None
|
|
self.ExpressionProcessed = False
|
|
|
|
## Compress section data in FDF
|
|
#
|
|
#
|
|
class CompressSectionClassObject (SectionClassObject) :
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
SectionClassObject.__init__(self)
|
|
self.CompType = None
|
|
self.SectionList = []
|
|
|
|
## Data section data in FDF
|
|
#
|
|
#
|
|
class DataSectionClassObject (SectionClassObject):
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
SectionClassObject.__init__(self)
|
|
self.SecType = None
|
|
self.SectFileName = None
|
|
self.SectionList = []
|
|
self.KeepReloc = True
|
|
|
|
## Rule section data in FDF
|
|
#
|
|
#
|
|
class EfiSectionClassObject (SectionClassObject):
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
SectionClassObject.__init__(self)
|
|
self.SectionType = None
|
|
self.Optional = False
|
|
self.FileType = None
|
|
self.StringData = None
|
|
self.FileName = None
|
|
self.FileExtension = None
|
|
self.BuildNum = None
|
|
self.KeepReloc = None
|
|
|
|
## FV image section data in FDF
|
|
#
|
|
#
|
|
class FvImageSectionClassObject (SectionClassObject):
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
SectionClassObject.__init__(self)
|
|
self.Fv = None
|
|
self.FvName = None
|
|
self.FvFileType = None
|
|
self.FvFileName = None
|
|
self.FvFileExtension = None
|
|
self.FvAddr = None
|
|
|
|
## GUIDed section data in FDF
|
|
#
|
|
#
|
|
class GuidSectionClassObject (SectionClassObject) :
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
SectionClassObject.__init__(self)
|
|
self.NameGuid = None
|
|
self.SectionList = []
|
|
self.SectionType = None
|
|
self.ProcessRequired = False
|
|
self.AuthStatusValid = False
|
|
self.ExtraHeaderSize = -1
|
|
self.FvAddr = []
|
|
self.FvParentAddr = None
|
|
self.IncludeFvSection = False
|
|
|
|
## UI section data in FDF
|
|
#
|
|
#
|
|
class UiSectionClassObject (SectionClassObject):
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
SectionClassObject.__init__(self)
|
|
self.StringData = None
|
|
self.FileName = None
|
|
|
|
## Version section data in FDF
|
|
#
|
|
#
|
|
class VerSectionClassObject (SectionClassObject):
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
SectionClassObject.__init__(self)
|
|
self.BuildNum = None
|
|
self.StringData = None
|
|
self.FileName = None
|
|
|
|
## Rule data in FDF
|
|
#
|
|
#
|
|
class RuleClassObject :
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
self.Arch = None
|
|
self.ModuleType = None # For Module Type
|
|
self.TemplateName = None
|
|
self.NameGuid = None
|
|
self.Fixed = False
|
|
self.Alignment = None
|
|
self.SectAlignment = None
|
|
self.CheckSum = False
|
|
self.FvFileType = None # for Ffs File Type
|
|
self.KeyStringList = []
|
|
self.KeepReloc = None
|
|
|
|
## Complex rule data in FDF
|
|
#
|
|
#
|
|
class RuleComplexFileClassObject(RuleClassObject) :
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
RuleClassObject.__init__(self)
|
|
self.SectionList = []
|
|
|
|
## Simple rule data in FDF
|
|
#
|
|
#
|
|
class RuleSimpleFileClassObject(RuleClassObject) :
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
RuleClassObject.__init__(self)
|
|
self.FileName = None
|
|
self.SectionType = ''
|
|
self.FileExtension = None
|
|
|
|
## File extension rule data in FDF
|
|
#
|
|
#
|
|
class RuleFileExtensionClassObject(RuleClassObject):
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
RuleClassObject.__init__(self)
|
|
self.FileExtension = None
|
|
|
|
## Capsule data in FDF
|
|
#
|
|
#
|
|
class CapsuleClassObject :
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
self.SpecName = None
|
|
self.UiCapsuleName = None
|
|
self.CreateFile = None
|
|
self.GroupIdNumber = None
|
|
# DefineVarDict[var] = value
|
|
self.DefineVarDict = {}
|
|
# SetVarDict[var] = value
|
|
self.SetVarDict = {}
|
|
# TokensDict[var] = value
|
|
self.TokensDict = {}
|
|
self.CapsuleDataList = []
|
|
self.FmpPayloadList = []
|
|
|
|
## VTF component data in FDF
|
|
#
|
|
#
|
|
class ComponentStatementClassObject :
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
self.CompName = None
|
|
self.CompLoc = None
|
|
self.CompType = None
|
|
self.CompVer = None
|
|
self.CompCs = None
|
|
self.CompBin = None
|
|
self.CompSym = None
|
|
self.CompSize = None
|
|
self.FilePos = None
|
|
|
|
## OptionROM data in FDF
|
|
#
|
|
#
|
|
class OptionRomClassObject:
|
|
## The constructor
|
|
#
|
|
# @param self The object pointer
|
|
#
|
|
def __init__(self):
|
|
self.DriverName = None
|
|
self.FfsList = []
|
|
|