]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/AutoGen/AutoGen.py
562f3f63fc6054cb6e1a533841e3c5ffbdc0bd0c
[mirror_edk2.git] / BaseTools / Source / Python / AutoGen / AutoGen.py
1 ## @file
2 # Generate AutoGen.h, AutoGen.c and *.depex files
3 #
4 # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
5 # This program and the accompanying materials
6 # are licensed and made available under the terms and conditions of the BSD License
7 # which accompanies this distribution. The full text of the license may be found at
8 # http://opensource.org/licenses/bsd-license.php
9 #
10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 #
13
14 ## Import Modules
15 #
16 import Common.LongFilePathOs as os
17 import re
18 import os.path as path
19 import copy
20 import uuid
21
22 import GenC
23 import GenMake
24 import GenDepex
25 from StringIO import StringIO
26
27 from StrGather import *
28 from BuildEngine import BuildRule
29
30 from Common.LongFilePathSupport import CopyLongFilePath
31 from Common.BuildToolError import *
32 from Common.DataType import *
33 from Common.Misc import *
34 from Common.String import *
35 import Common.GlobalData as GlobalData
36 from GenFds.FdfParser import *
37 from CommonDataClass.CommonClass import SkuInfoClass
38 from Workspace.BuildClassObject import *
39 from GenPatchPcdTable.GenPatchPcdTable import parsePcdInfoFromMapFile
40 import Common.VpdInfoFile as VpdInfoFile
41 from GenPcdDb import CreatePcdDatabaseCode
42 from Workspace.MetaFileCommentParser import UsageList
43 from Common.MultipleWorkspace import MultipleWorkspace as mws
44 import InfSectionParser
45 import datetime
46 import hashlib
47 from GenVar import VariableMgr,var_info
48 from collections import OrderedDict
49 from collections import defaultdict
50
51 ## Regular expression for splitting Dependency Expression string into tokens
52 gDepexTokenPattern = re.compile("(\(|\)|\w+| \S+\.inf)")
53
54 ## Regular expression for match: PCD(xxxx.yyy)
55 gPCDAsGuidPattern = re.compile(r"^PCD\(.+\..+\)$")
56
57 #
58 # Regular expression for finding Include Directories, the difference between MSFT and INTEL/GCC/RVCT
59 # is the former use /I , the Latter used -I to specify include directories
60 #
61 gBuildOptIncludePatternMsft = re.compile(r"(?:.*?)/I[ \t]*([^ ]*)", re.MULTILINE | re.DOTALL)
62 gBuildOptIncludePatternOther = re.compile(r"(?:.*?)-I[ \t]*([^ ]*)", re.MULTILINE | re.DOTALL)
63
64 #
65 # Match name = variable
66 #
67 gEfiVarStoreNamePattern = re.compile("\s*name\s*=\s*(\w+)")
68 #
69 # The format of guid in efivarstore statement likes following and must be correct:
70 # guid = {0xA04A27f4, 0xDF00, 0x4D42, {0xB5, 0x52, 0x39, 0x51, 0x13, 0x02, 0x11, 0x3D}}
71 #
72 gEfiVarStoreGuidPattern = re.compile("\s*guid\s*=\s*({.*?{.*?}\s*})")
73
74 ## Mapping Makefile type
75 gMakeTypeMap = {"MSFT":"nmake", "GCC":"gmake"}
76
77
78 ## Build rule configuration file
79 gDefaultBuildRuleFile = 'build_rule.txt'
80
81 ## Tools definition configuration file
82 gDefaultToolsDefFile = 'tools_def.txt'
83
84 ## Build rule default version
85 AutoGenReqBuildRuleVerNum = "0.1"
86
87 ## default file name for AutoGen
88 gAutoGenCodeFileName = "AutoGen.c"
89 gAutoGenHeaderFileName = "AutoGen.h"
90 gAutoGenStringFileName = "%(module_name)sStrDefs.h"
91 gAutoGenStringFormFileName = "%(module_name)sStrDefs.hpk"
92 gAutoGenDepexFileName = "%(module_name)s.depex"
93 gAutoGenImageDefFileName = "%(module_name)sImgDefs.h"
94 gAutoGenIdfFileName = "%(module_name)sIdf.hpk"
95 gInfSpecVersion = "0x00010017"
96
97 #
98 # Template string to generic AsBuilt INF
99 #
100 gAsBuiltInfHeaderString = TemplateString("""${header_comments}
101
102 # DO NOT EDIT
103 # FILE auto-generated
104
105 [Defines]
106 INF_VERSION = ${module_inf_version}
107 BASE_NAME = ${module_name}
108 FILE_GUID = ${module_guid}
109 MODULE_TYPE = ${module_module_type}${BEGIN}
110 VERSION_STRING = ${module_version_string}${END}${BEGIN}
111 PCD_IS_DRIVER = ${pcd_is_driver_string}${END}${BEGIN}
112 UEFI_SPECIFICATION_VERSION = ${module_uefi_specification_version}${END}${BEGIN}
113 PI_SPECIFICATION_VERSION = ${module_pi_specification_version}${END}${BEGIN}
114 ENTRY_POINT = ${module_entry_point}${END}${BEGIN}
115 UNLOAD_IMAGE = ${module_unload_image}${END}${BEGIN}
116 CONSTRUCTOR = ${module_constructor}${END}${BEGIN}
117 DESTRUCTOR = ${module_destructor}${END}${BEGIN}
118 SHADOW = ${module_shadow}${END}${BEGIN}
119 PCI_VENDOR_ID = ${module_pci_vendor_id}${END}${BEGIN}
120 PCI_DEVICE_ID = ${module_pci_device_id}${END}${BEGIN}
121 PCI_CLASS_CODE = ${module_pci_class_code}${END}${BEGIN}
122 PCI_REVISION = ${module_pci_revision}${END}${BEGIN}
123 BUILD_NUMBER = ${module_build_number}${END}${BEGIN}
124 SPEC = ${module_spec}${END}${BEGIN}
125 UEFI_HII_RESOURCE_SECTION = ${module_uefi_hii_resource_section}${END}${BEGIN}
126 MODULE_UNI_FILE = ${module_uni_file}${END}
127
128 [Packages.${module_arch}]${BEGIN}
129 ${package_item}${END}
130
131 [Binaries.${module_arch}]${BEGIN}
132 ${binary_item}${END}
133
134 [PatchPcd.${module_arch}]${BEGIN}
135 ${patchablepcd_item}
136 ${END}
137
138 [Protocols.${module_arch}]${BEGIN}
139 ${protocol_item}
140 ${END}
141
142 [Ppis.${module_arch}]${BEGIN}
143 ${ppi_item}
144 ${END}
145
146 [Guids.${module_arch}]${BEGIN}
147 ${guid_item}
148 ${END}
149
150 [PcdEx.${module_arch}]${BEGIN}
151 ${pcd_item}
152 ${END}
153
154 [LibraryClasses.${module_arch}]
155 ## @LIB_INSTANCES${BEGIN}
156 # ${libraryclasses_item}${END}
157
158 ${depexsection_item}
159
160 ${userextension_tianocore_item}
161
162 ${tail_comments}
163
164 [BuildOptions.${module_arch}]
165 ## @AsBuilt${BEGIN}
166 ## ${flags_item}${END}
167 """)
168
169 ## Base class for AutoGen
170 #
171 # This class just implements the cache mechanism of AutoGen objects.
172 #
173 class AutoGen(object):
174 # database to maintain the objects in each child class
175 __ObjectCache = {} # (BuildTarget, ToolChain, ARCH, platform file): AutoGen object
176
177 ## Factory method
178 #
179 # @param Class class object of real AutoGen class
180 # (WorkspaceAutoGen, ModuleAutoGen or PlatformAutoGen)
181 # @param Workspace Workspace directory or WorkspaceAutoGen object
182 # @param MetaFile The path of meta file
183 # @param Target Build target
184 # @param Toolchain Tool chain name
185 # @param Arch Target arch
186 # @param *args The specific class related parameters
187 # @param **kwargs The specific class related dict parameters
188 #
189 def __new__(cls, Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs):
190 # check if the object has been created
191 Key = (Target, Toolchain, Arch, MetaFile)
192 try:
193 # if it exists, just return it directly
194 return cls.__ObjectCache[Key]
195 except:
196 # it didnt exist. create it, cache it, then return it
197 cls.__ObjectCache[Key] = super(AutoGen, cls).__new__(cls)
198 return cls.__ObjectCache[Key]
199
200 def __init__ (self, Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs):
201 super(AutoGen, self).__init__(self, Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs)
202
203 ## hash() operator
204 #
205 # The file path of platform file will be used to represent hash value of this object
206 #
207 # @retval int Hash value of the file path of platform file
208 #
209 def __hash__(self):
210 return hash(self.MetaFile)
211
212 ## str() operator
213 #
214 # The file path of platform file will be used to represent this object
215 #
216 # @retval string String of platform file path
217 #
218 def __str__(self):
219 return str(self.MetaFile)
220
221 ## "==" operator
222 def __eq__(self, Other):
223 return Other and self.MetaFile == Other
224
225 ## Workspace AutoGen class
226 #
227 # This class is used mainly to control the whole platform build for different
228 # architecture. This class will generate top level makefile.
229 #
230 class WorkspaceAutoGen(AutoGen):
231 # call super().__init__ then call the worker function with different parameter count
232 def __init__(self, Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs):
233 try:
234 self._Init
235 except:
236 super(WorkspaceAutoGen, self).__init__(Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs)
237 self._InitWorker(Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs)
238 self._Init = True
239
240 ## Initialize WorkspaceAutoGen
241 #
242 # @param WorkspaceDir Root directory of workspace
243 # @param ActivePlatform Meta-file of active platform
244 # @param Target Build target
245 # @param Toolchain Tool chain name
246 # @param ArchList List of architecture of current build
247 # @param MetaFileDb Database containing meta-files
248 # @param BuildConfig Configuration of build
249 # @param ToolDefinition Tool chain definitions
250 # @param FlashDefinitionFile File of flash definition
251 # @param Fds FD list to be generated
252 # @param Fvs FV list to be generated
253 # @param Caps Capsule list to be generated
254 # @param SkuId SKU id from command line
255 #
256 def _InitWorker(self, WorkspaceDir, ActivePlatform, Target, Toolchain, ArchList, MetaFileDb,
257 BuildConfig, ToolDefinition, FlashDefinitionFile='', Fds=None, Fvs=None, Caps=None, SkuId='', UniFlag=None,
258 Progress=None, BuildModule=None):
259 if Fds is None:
260 Fds = []
261 if Fvs is None:
262 Fvs = []
263 if Caps is None:
264 Caps = []
265 self.BuildDatabase = MetaFileDb
266 self.MetaFile = ActivePlatform
267 self.WorkspaceDir = WorkspaceDir
268 self.Platform = self.BuildDatabase[self.MetaFile, 'COMMON', Target, Toolchain]
269 GlobalData.gActivePlatform = self.Platform
270 self.BuildTarget = Target
271 self.ToolChain = Toolchain
272 self.ArchList = ArchList
273 self.SkuId = SkuId
274 self.UniFlag = UniFlag
275
276 self.TargetTxt = BuildConfig
277 self.ToolDef = ToolDefinition
278 self.FdfFile = FlashDefinitionFile
279 self.FdTargetList = Fds
280 self.FvTargetList = Fvs
281 self.CapTargetList = Caps
282 self.AutoGenObjectList = []
283 self._BuildDir = None
284 self._FvDir = None
285 self._MakeFileDir = None
286 self._BuildCommand = None
287 self._GuidDict = {}
288
289 # there's many relative directory operations, so ...
290 os.chdir(self.WorkspaceDir)
291
292 #
293 # Merge Arch
294 #
295 if not self.ArchList:
296 ArchList = set(self.Platform.SupArchList)
297 else:
298 ArchList = set(self.ArchList) & set(self.Platform.SupArchList)
299 if not ArchList:
300 EdkLogger.error("build", PARAMETER_INVALID,
301 ExtraData = "Invalid ARCH specified. [Valid ARCH: %s]" % (" ".join(self.Platform.SupArchList)))
302 elif self.ArchList and len(ArchList) != len(self.ArchList):
303 SkippedArchList = set(self.ArchList).symmetric_difference(set(self.Platform.SupArchList))
304 EdkLogger.verbose("\nArch [%s] is ignored because the platform supports [%s] only!"
305 % (" ".join(SkippedArchList), " ".join(self.Platform.SupArchList)))
306 self.ArchList = tuple(ArchList)
307
308 # Validate build target
309 if self.BuildTarget not in self.Platform.BuildTargets:
310 EdkLogger.error("build", PARAMETER_INVALID,
311 ExtraData="Build target [%s] is not supported by the platform. [Valid target: %s]"
312 % (self.BuildTarget, " ".join(self.Platform.BuildTargets)))
313
314
315 # parse FDF file to get PCDs in it, if any
316 if not self.FdfFile:
317 self.FdfFile = self.Platform.FlashDefinition
318
319 EdkLogger.info("")
320 if self.ArchList:
321 EdkLogger.info('%-16s = %s' % ("Architecture(s)", ' '.join(self.ArchList)))
322 EdkLogger.info('%-16s = %s' % ("Build target", self.BuildTarget))
323 EdkLogger.info('%-16s = %s' % ("Toolchain", self.ToolChain))
324
325 EdkLogger.info('\n%-24s = %s' % ("Active Platform", self.Platform))
326 if BuildModule:
327 EdkLogger.info('%-24s = %s' % ("Active Module", BuildModule))
328
329 if self.FdfFile:
330 EdkLogger.info('%-24s = %s' % ("Flash Image Definition", self.FdfFile))
331
332 EdkLogger.verbose("\nFLASH_DEFINITION = %s" % self.FdfFile)
333
334 if Progress:
335 Progress.Start("\nProcessing meta-data")
336
337 if self.FdfFile:
338 #
339 # Mark now build in AutoGen Phase
340 #
341 GlobalData.gAutoGenPhase = True
342 Fdf = FdfParser(self.FdfFile.Path)
343 Fdf.ParseFile()
344 GlobalData.gFdfParser = Fdf
345 GlobalData.gAutoGenPhase = False
346 PcdSet = Fdf.Profile.PcdDict
347 if Fdf.CurrentFdName and Fdf.CurrentFdName in Fdf.Profile.FdDict:
348 FdDict = Fdf.Profile.FdDict[Fdf.CurrentFdName]
349 for FdRegion in FdDict.RegionList:
350 if str(FdRegion.RegionType) is 'FILE' and self.Platform.VpdToolGuid in str(FdRegion.RegionDataList):
351 if int(FdRegion.Offset) % 8 != 0:
352 EdkLogger.error("build", FORMAT_INVALID, 'The VPD Base Address %s must be 8-byte aligned.' % (FdRegion.Offset))
353 ModuleList = Fdf.Profile.InfList
354 self.FdfProfile = Fdf.Profile
355 for fvname in self.FvTargetList:
356 if fvname.upper() not in self.FdfProfile.FvDict:
357 EdkLogger.error("build", OPTION_VALUE_INVALID,
358 "No such an FV in FDF file: %s" % fvname)
359
360 # In DSC file may use FILE_GUID to override the module, then in the Platform.Modules use FILE_GUIDmodule.inf as key,
361 # but the path (self.MetaFile.Path) is the real path
362 for key in self.FdfProfile.InfDict:
363 if key == 'ArchTBD':
364 Platform_cache = {}
365 MetaFile_cache = {}
366 for Arch in self.ArchList:
367 Platform_cache[Arch] = self.BuildDatabase[self.MetaFile, Arch, Target, Toolchain]
368 MetaFile_cache[Arch] = set()
369 for Pkey in Platform_cache[Arch].Modules:
370 MetaFile_cache[Arch].add(Platform_cache[Arch].Modules[Pkey].MetaFile)
371 for Inf in self.FdfProfile.InfDict[key]:
372 ModuleFile = PathClass(NormPath(Inf), GlobalData.gWorkspace, Arch)
373 for Arch in self.ArchList:
374 if ModuleFile in MetaFile_cache[Arch]:
375 break
376 else:
377 ModuleData = self.BuildDatabase[ModuleFile, Arch, Target, Toolchain]
378 if not ModuleData.IsBinaryModule:
379 EdkLogger.error('build', PARSER_ERROR, "Module %s NOT found in DSC file; Is it really a binary module?" % ModuleFile)
380
381 else:
382 for Arch in self.ArchList:
383 if Arch == key:
384 Platform = self.BuildDatabase[self.MetaFile, Arch, Target, Toolchain]
385 MetaFileList = set()
386 for Pkey in Platform.Modules:
387 MetaFileList.add(Platform.Modules[Pkey].MetaFile)
388 for Inf in self.FdfProfile.InfDict[key]:
389 ModuleFile = PathClass(NormPath(Inf), GlobalData.gWorkspace, Arch)
390 if ModuleFile in MetaFileList:
391 continue
392 ModuleData = self.BuildDatabase[ModuleFile, Arch, Target, Toolchain]
393 if not ModuleData.IsBinaryModule:
394 EdkLogger.error('build', PARSER_ERROR, "Module %s NOT found in DSC file; Is it really a binary module?" % ModuleFile)
395
396 else:
397 PcdSet = {}
398 ModuleList = []
399 self.FdfProfile = None
400 if self.FdTargetList:
401 EdkLogger.info("No flash definition file found. FD [%s] will be ignored." % " ".join(self.FdTargetList))
402 self.FdTargetList = []
403 if self.FvTargetList:
404 EdkLogger.info("No flash definition file found. FV [%s] will be ignored." % " ".join(self.FvTargetList))
405 self.FvTargetList = []
406 if self.CapTargetList:
407 EdkLogger.info("No flash definition file found. Capsule [%s] will be ignored." % " ".join(self.CapTargetList))
408 self.CapTargetList = []
409
410 # apply SKU and inject PCDs from Flash Definition file
411 for Arch in self.ArchList:
412 Platform = self.BuildDatabase[self.MetaFile, Arch, Target, Toolchain]
413
414 SourcePcdDict = {'DynamicEx':set(), 'PatchableInModule':set(),'Dynamic':set(),'FixedAtBuild':set()}
415 BinaryPcdDict = {'DynamicEx':set(), 'PatchableInModule':set()}
416 SourcePcdDict_Keys = SourcePcdDict.keys()
417 BinaryPcdDict_Keys = BinaryPcdDict.keys()
418
419 # generate the SourcePcdDict and BinaryPcdDict
420 PGen = PlatformAutoGen(self, self.MetaFile, Target, Toolchain, Arch)
421 for BuildData in PGen.BuildDatabase._CACHE_.values():
422 if BuildData.Arch != Arch:
423 continue
424 if BuildData.MetaFile.Ext == '.inf':
425 for key in BuildData.Pcds:
426 if BuildData.Pcds[key].Pending:
427 if key in Platform.Pcds:
428 PcdInPlatform = Platform.Pcds[key]
429 if PcdInPlatform.Type not in [None, '']:
430 BuildData.Pcds[key].Type = PcdInPlatform.Type
431
432 if BuildData.MetaFile in Platform.Modules:
433 PlatformModule = Platform.Modules[str(BuildData.MetaFile)]
434 if key in PlatformModule.Pcds:
435 PcdInPlatform = PlatformModule.Pcds[key]
436 if PcdInPlatform.Type not in [None, '']:
437 BuildData.Pcds[key].Type = PcdInPlatform.Type
438
439 if 'DynamicEx' in BuildData.Pcds[key].Type:
440 if BuildData.IsBinaryModule:
441 BinaryPcdDict['DynamicEx'].add((BuildData.Pcds[key].TokenCName, BuildData.Pcds[key].TokenSpaceGuidCName))
442 else:
443 SourcePcdDict['DynamicEx'].add((BuildData.Pcds[key].TokenCName, BuildData.Pcds[key].TokenSpaceGuidCName))
444
445 elif 'PatchableInModule' in BuildData.Pcds[key].Type:
446 if BuildData.MetaFile.Ext == '.inf':
447 if BuildData.IsBinaryModule:
448 BinaryPcdDict['PatchableInModule'].add((BuildData.Pcds[key].TokenCName, BuildData.Pcds[key].TokenSpaceGuidCName))
449 else:
450 SourcePcdDict['PatchableInModule'].add((BuildData.Pcds[key].TokenCName, BuildData.Pcds[key].TokenSpaceGuidCName))
451
452 elif 'Dynamic' in BuildData.Pcds[key].Type:
453 SourcePcdDict['Dynamic'].add((BuildData.Pcds[key].TokenCName, BuildData.Pcds[key].TokenSpaceGuidCName))
454 elif 'FixedAtBuild' in BuildData.Pcds[key].Type:
455 SourcePcdDict['FixedAtBuild'].add((BuildData.Pcds[key].TokenCName, BuildData.Pcds[key].TokenSpaceGuidCName))
456 else:
457 pass
458 #
459 # A PCD can only use one type for all source modules
460 #
461 for i in SourcePcdDict_Keys:
462 for j in SourcePcdDict_Keys:
463 if i != j:
464 Intersections = SourcePcdDict[i].intersection(SourcePcdDict[j])
465 if len(Intersections) > 0:
466 EdkLogger.error(
467 'build',
468 FORMAT_INVALID,
469 "Building modules from source INFs, following PCD use %s and %s access method. It must be corrected to use only one access method." % (i, j),
470 ExtraData="%s" % '\n\t'.join([str(P[1]+'.'+P[0]) for P in Intersections])
471 )
472
473 #
474 # intersection the BinaryPCD for Mixed PCD
475 #
476 for i in BinaryPcdDict_Keys:
477 for j in BinaryPcdDict_Keys:
478 if i != j:
479 Intersections = BinaryPcdDict[i].intersection(BinaryPcdDict[j])
480 for item in Intersections:
481 NewPcd1 = (item[0] + '_' + i, item[1])
482 NewPcd2 = (item[0] + '_' + j, item[1])
483 if item not in GlobalData.MixedPcd:
484 GlobalData.MixedPcd[item] = [NewPcd1, NewPcd2]
485 else:
486 if NewPcd1 not in GlobalData.MixedPcd[item]:
487 GlobalData.MixedPcd[item].append(NewPcd1)
488 if NewPcd2 not in GlobalData.MixedPcd[item]:
489 GlobalData.MixedPcd[item].append(NewPcd2)
490
491 #
492 # intersection the SourcePCD and BinaryPCD for Mixed PCD
493 #
494 for i in SourcePcdDict_Keys:
495 for j in BinaryPcdDict_Keys:
496 if i != j:
497 Intersections = SourcePcdDict[i].intersection(BinaryPcdDict[j])
498 for item in Intersections:
499 NewPcd1 = (item[0] + '_' + i, item[1])
500 NewPcd2 = (item[0] + '_' + j, item[1])
501 if item not in GlobalData.MixedPcd:
502 GlobalData.MixedPcd[item] = [NewPcd1, NewPcd2]
503 else:
504 if NewPcd1 not in GlobalData.MixedPcd[item]:
505 GlobalData.MixedPcd[item].append(NewPcd1)
506 if NewPcd2 not in GlobalData.MixedPcd[item]:
507 GlobalData.MixedPcd[item].append(NewPcd2)
508
509 for BuildData in PGen.BuildDatabase._CACHE_.values():
510 if BuildData.Arch != Arch:
511 continue
512 for key in BuildData.Pcds:
513 for SinglePcd in GlobalData.MixedPcd:
514 if (BuildData.Pcds[key].TokenCName, BuildData.Pcds[key].TokenSpaceGuidCName) == SinglePcd:
515 for item in GlobalData.MixedPcd[SinglePcd]:
516 Pcd_Type = item[0].split('_')[-1]
517 if (Pcd_Type == BuildData.Pcds[key].Type) or (Pcd_Type == TAB_PCDS_DYNAMIC_EX and BuildData.Pcds[key].Type in GenC.gDynamicExPcd) or \
518 (Pcd_Type == TAB_PCDS_DYNAMIC and BuildData.Pcds[key].Type in GenC.gDynamicPcd):
519 Value = BuildData.Pcds[key]
520 Value.TokenCName = BuildData.Pcds[key].TokenCName + '_' + Pcd_Type
521 if len(key) == 2:
522 newkey = (Value.TokenCName, key[1])
523 elif len(key) == 3:
524 newkey = (Value.TokenCName, key[1], key[2])
525 del BuildData.Pcds[key]
526 BuildData.Pcds[newkey] = Value
527 break
528 break
529
530 # handle the mixed pcd in FDF file
531 for key in PcdSet:
532 if key in GlobalData.MixedPcd:
533 Value = PcdSet[key]
534 del PcdSet[key]
535 for item in GlobalData.MixedPcd[key]:
536 PcdSet[item] = Value
537
538 #Collect package set information from INF of FDF
539 PkgSet = set()
540 for Inf in ModuleList:
541 ModuleFile = PathClass(NormPath(Inf), GlobalData.gWorkspace, Arch)
542 if ModuleFile in Platform.Modules:
543 continue
544 ModuleData = self.BuildDatabase[ModuleFile, Arch, Target, Toolchain]
545 PkgSet.update(ModuleData.Packages)
546 Pkgs = list(PkgSet) + list(PGen.PackageList)
547 DecPcds = set()
548 DecPcdsKey = set()
549 for Pkg in Pkgs:
550 for Pcd in Pkg.Pcds:
551 DecPcds.add((Pcd[0], Pcd[1]))
552 DecPcdsKey.add((Pcd[0], Pcd[1], Pcd[2]))
553
554 Platform.SkuName = self.SkuId
555 for Name, Guid in PcdSet:
556 if (Name, Guid) not in DecPcds:
557 EdkLogger.error(
558 'build',
559 PARSER_ERROR,
560 "PCD (%s.%s) used in FDF is not declared in DEC files." % (Guid, Name),
561 File = self.FdfProfile.PcdFileLineDict[Name, Guid][0],
562 Line = self.FdfProfile.PcdFileLineDict[Name, Guid][1]
563 )
564 else:
565 # Check whether Dynamic or DynamicEx PCD used in FDF file. If used, build break and give a error message.
566 if (Name, Guid, TAB_PCDS_FIXED_AT_BUILD) in DecPcdsKey \
567 or (Name, Guid, TAB_PCDS_PATCHABLE_IN_MODULE) in DecPcdsKey \
568 or (Name, Guid, TAB_PCDS_FEATURE_FLAG) in DecPcdsKey:
569 Platform.AddPcd(Name, Guid, PcdSet[Name, Guid])
570 continue
571 elif (Name, Guid, TAB_PCDS_DYNAMIC) in DecPcdsKey or (Name, Guid, TAB_PCDS_DYNAMIC_EX) in DecPcdsKey:
572 EdkLogger.error(
573 'build',
574 PARSER_ERROR,
575 "Using Dynamic or DynamicEx type of PCD [%s.%s] in FDF file is not allowed." % (Guid, Name),
576 File = self.FdfProfile.PcdFileLineDict[Name, Guid][0],
577 Line = self.FdfProfile.PcdFileLineDict[Name, Guid][1]
578 )
579
580 Pa = PlatformAutoGen(self, self.MetaFile, Target, Toolchain, Arch)
581 #
582 # Explicitly collect platform's dynamic PCDs
583 #
584 Pa.CollectPlatformDynamicPcds()
585 Pa.CollectFixedAtBuildPcds()
586 self.AutoGenObjectList.append(Pa)
587
588 #
589 # Generate Package level hash value
590 #
591 GlobalData.gPackageHash[Arch] = {}
592 if GlobalData.gUseHashCache:
593 for Pkg in Pkgs:
594 self._GenPkgLevelHash(Pkg)
595
596 #
597 # Check PCDs token value conflict in each DEC file.
598 #
599 self._CheckAllPcdsTokenValueConflict()
600
601 #
602 # Check PCD type and definition between DSC and DEC
603 #
604 self._CheckPcdDefineAndType()
605
606 # if self.FdfFile:
607 # self._CheckDuplicateInFV(Fdf)
608
609 #
610 # Create BuildOptions Macro & PCD metafile, also add the Active Platform and FDF file.
611 #
612 content = 'gCommandLineDefines: '
613 content += str(GlobalData.gCommandLineDefines)
614 content += os.linesep
615 content += 'BuildOptionPcd: '
616 content += str(GlobalData.BuildOptionPcd)
617 content += os.linesep
618 content += 'Active Platform: '
619 content += str(self.Platform)
620 content += os.linesep
621 if self.FdfFile:
622 content += 'Flash Image Definition: '
623 content += str(self.FdfFile)
624 content += os.linesep
625 SaveFileOnChange(os.path.join(self.BuildDir, 'BuildOptions'), content, False)
626
627 #
628 # Create PcdToken Number file for Dynamic/DynamicEx Pcd.
629 #
630 PcdTokenNumber = 'PcdTokenNumber: '
631 if Pa.PcdTokenNumber:
632 if Pa.DynamicPcdList:
633 for Pcd in Pa.DynamicPcdList:
634 PcdTokenNumber += os.linesep
635 PcdTokenNumber += str((Pcd.TokenCName, Pcd.TokenSpaceGuidCName))
636 PcdTokenNumber += ' : '
637 PcdTokenNumber += str(Pa.PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName])
638 SaveFileOnChange(os.path.join(self.BuildDir, 'PcdTokenNumber'), PcdTokenNumber, False)
639
640 #
641 # Get set of workspace metafiles
642 #
643 AllWorkSpaceMetaFiles = self._GetMetaFiles(Target, Toolchain, Arch)
644
645 #
646 # Retrieve latest modified time of all metafiles
647 #
648 SrcTimeStamp = 0
649 for f in AllWorkSpaceMetaFiles:
650 if os.stat(f)[8] > SrcTimeStamp:
651 SrcTimeStamp = os.stat(f)[8]
652 self._SrcTimeStamp = SrcTimeStamp
653
654 if GlobalData.gUseHashCache:
655 m = hashlib.md5()
656 for files in AllWorkSpaceMetaFiles:
657 if files.endswith('.dec'):
658 continue
659 f = open(files, 'r')
660 Content = f.read()
661 f.close()
662 m.update(Content)
663 SaveFileOnChange(os.path.join(self.BuildDir, 'AutoGen.hash'), m.hexdigest(), True)
664 GlobalData.gPlatformHash = m.hexdigest()
665
666 #
667 # Write metafile list to build directory
668 #
669 AutoGenFilePath = os.path.join(self.BuildDir, 'AutoGen')
670 if os.path.exists (AutoGenFilePath):
671 os.remove(AutoGenFilePath)
672 if not os.path.exists(self.BuildDir):
673 os.makedirs(self.BuildDir)
674 with open(os.path.join(self.BuildDir, 'AutoGen'), 'w+') as file:
675 for f in AllWorkSpaceMetaFiles:
676 print >> file, f
677 return True
678
679 def _GenPkgLevelHash(self, Pkg):
680 PkgDir = os.path.join(self.BuildDir, Pkg.Arch, Pkg.PackageName)
681 CreateDirectory(PkgDir)
682 HashFile = os.path.join(PkgDir, Pkg.PackageName + '.hash')
683 m = hashlib.md5()
684 # Get .dec file's hash value
685 f = open(Pkg.MetaFile.Path, 'r')
686 Content = f.read()
687 f.close()
688 m.update(Content)
689 # Get include files hash value
690 if Pkg.Includes:
691 for inc in Pkg.Includes:
692 for Root, Dirs, Files in os.walk(str(inc)):
693 for File in Files:
694 File_Path = os.path.join(Root, File)
695 f = open(File_Path, 'r')
696 Content = f.read()
697 f.close()
698 m.update(Content)
699 SaveFileOnChange(HashFile, m.hexdigest(), True)
700 if Pkg.PackageName not in GlobalData.gPackageHash[Pkg.Arch]:
701 GlobalData.gPackageHash[Pkg.Arch][Pkg.PackageName] = m.hexdigest()
702
703 def _GetMetaFiles(self, Target, Toolchain, Arch):
704 AllWorkSpaceMetaFiles = set()
705 #
706 # add fdf
707 #
708 if self.FdfFile:
709 AllWorkSpaceMetaFiles.add (self.FdfFile.Path)
710 if self.FdfFile:
711 FdfFiles = GlobalData.gFdfParser.GetAllIncludedFile()
712 for f in FdfFiles:
713 AllWorkSpaceMetaFiles.add (f.FileName)
714 #
715 # add dsc
716 #
717 AllWorkSpaceMetaFiles.add(self.MetaFile.Path)
718
719 #
720 # add build_rule.txt & tools_def.txt
721 #
722 AllWorkSpaceMetaFiles.add(os.path.join(GlobalData.gConfDirectory, gDefaultBuildRuleFile))
723 AllWorkSpaceMetaFiles.add(os.path.join(GlobalData.gConfDirectory, gDefaultToolsDefFile))
724
725 # add BuildOption metafile
726 #
727 AllWorkSpaceMetaFiles.add(os.path.join(self.BuildDir, 'BuildOptions'))
728
729 # add PcdToken Number file for Dynamic/DynamicEx Pcd
730 #
731 AllWorkSpaceMetaFiles.add(os.path.join(self.BuildDir, 'PcdTokenNumber'))
732
733 for Arch in self.ArchList:
734 Platform = self.BuildDatabase[self.MetaFile, Arch, Target, Toolchain]
735 PGen = PlatformAutoGen(self, self.MetaFile, Target, Toolchain, Arch)
736
737 #
738 # add dec
739 #
740 for Package in PGen.PackageList:
741 AllWorkSpaceMetaFiles.add(Package.MetaFile.Path)
742
743 #
744 # add included dsc
745 #
746 for filePath in Platform._RawData.IncludedFiles:
747 AllWorkSpaceMetaFiles.add(filePath.Path)
748
749 return AllWorkSpaceMetaFiles
750
751 ## _CheckDuplicateInFV() method
752 #
753 # Check whether there is duplicate modules/files exist in FV section.
754 # The check base on the file GUID;
755 #
756 def _CheckDuplicateInFV(self, Fdf):
757 for Fv in Fdf.Profile.FvDict:
758 _GuidDict = {}
759 for FfsFile in Fdf.Profile.FvDict[Fv].FfsList:
760 if FfsFile.InfFileName and FfsFile.NameGuid is None:
761 #
762 # Get INF file GUID
763 #
764 InfFoundFlag = False
765 for Pa in self.AutoGenObjectList:
766 if InfFoundFlag:
767 break
768 for Module in Pa.ModuleAutoGenList:
769 if path.normpath(Module.MetaFile.File) == path.normpath(FfsFile.InfFileName):
770 InfFoundFlag = True
771 if not Module.Guid.upper() in _GuidDict.keys():
772 _GuidDict[Module.Guid.upper()] = FfsFile
773 break
774 else:
775 EdkLogger.error("build",
776 FORMAT_INVALID,
777 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile.CurrentLineNum,
778 FfsFile.CurrentLineContent,
779 _GuidDict[Module.Guid.upper()].CurrentLineNum,
780 _GuidDict[Module.Guid.upper()].CurrentLineContent,
781 Module.Guid.upper()),
782 ExtraData=self.FdfFile)
783 #
784 # Some INF files not have entity in DSC file.
785 #
786 if not InfFoundFlag:
787 if FfsFile.InfFileName.find('$') == -1:
788 InfPath = NormPath(FfsFile.InfFileName)
789 if not os.path.exists(InfPath):
790 EdkLogger.error('build', GENFDS_ERROR, "Non-existant Module %s !" % (FfsFile.InfFileName))
791
792 PathClassObj = PathClass(FfsFile.InfFileName, self.WorkspaceDir)
793 #
794 # Here we just need to get FILE_GUID from INF file, use 'COMMON' as ARCH attribute. and use
795 # BuildObject from one of AutoGenObjectList is enough.
796 #
797 InfObj = self.AutoGenObjectList[0].BuildDatabase.WorkspaceDb.BuildObject[PathClassObj, 'COMMON', self.BuildTarget, self.ToolChain]
798 if not InfObj.Guid.upper() in _GuidDict.keys():
799 _GuidDict[InfObj.Guid.upper()] = FfsFile
800 else:
801 EdkLogger.error("build",
802 FORMAT_INVALID,
803 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile.CurrentLineNum,
804 FfsFile.CurrentLineContent,
805 _GuidDict[InfObj.Guid.upper()].CurrentLineNum,
806 _GuidDict[InfObj.Guid.upper()].CurrentLineContent,
807 InfObj.Guid.upper()),
808 ExtraData=self.FdfFile)
809 InfFoundFlag = False
810
811 if FfsFile.NameGuid is not None:
812 #
813 # If the NameGuid reference a PCD name.
814 # The style must match: PCD(xxxx.yyy)
815 #
816 if gPCDAsGuidPattern.match(FfsFile.NameGuid):
817 #
818 # Replace the PCD value.
819 #
820 _PcdName = FfsFile.NameGuid.lstrip("PCD(").rstrip(")")
821 PcdFoundFlag = False
822 for Pa in self.AutoGenObjectList:
823 if not PcdFoundFlag:
824 for PcdItem in Pa.AllPcdList:
825 if (PcdItem.TokenSpaceGuidCName + "." + PcdItem.TokenCName) == _PcdName:
826 #
827 # First convert from CFormatGuid to GUID string
828 #
829 _PcdGuidString = GuidStructureStringToGuidString(PcdItem.DefaultValue)
830
831 if not _PcdGuidString:
832 #
833 # Then try Byte array.
834 #
835 _PcdGuidString = GuidStructureByteArrayToGuidString(PcdItem.DefaultValue)
836
837 if not _PcdGuidString:
838 #
839 # Not Byte array or CFormat GUID, raise error.
840 #
841 EdkLogger.error("build",
842 FORMAT_INVALID,
843 "The format of PCD value is incorrect. PCD: %s , Value: %s\n" % (_PcdName, PcdItem.DefaultValue),
844 ExtraData=self.FdfFile)
845
846 if not _PcdGuidString.upper() in _GuidDict.keys():
847 _GuidDict[_PcdGuidString.upper()] = FfsFile
848 PcdFoundFlag = True
849 break
850 else:
851 EdkLogger.error("build",
852 FORMAT_INVALID,
853 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile.CurrentLineNum,
854 FfsFile.CurrentLineContent,
855 _GuidDict[_PcdGuidString.upper()].CurrentLineNum,
856 _GuidDict[_PcdGuidString.upper()].CurrentLineContent,
857 FfsFile.NameGuid.upper()),
858 ExtraData=self.FdfFile)
859
860 if not FfsFile.NameGuid.upper() in _GuidDict.keys():
861 _GuidDict[FfsFile.NameGuid.upper()] = FfsFile
862 else:
863 #
864 # Two raw file GUID conflict.
865 #
866 EdkLogger.error("build",
867 FORMAT_INVALID,
868 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s" % (FfsFile.CurrentLineNum,
869 FfsFile.CurrentLineContent,
870 _GuidDict[FfsFile.NameGuid.upper()].CurrentLineNum,
871 _GuidDict[FfsFile.NameGuid.upper()].CurrentLineContent,
872 FfsFile.NameGuid.upper()),
873 ExtraData=self.FdfFile)
874
875
876 def _CheckPcdDefineAndType(self):
877 PcdTypeList = [
878 "FixedAtBuild", "PatchableInModule", "FeatureFlag",
879 "Dynamic", #"DynamicHii", "DynamicVpd",
880 "DynamicEx", # "DynamicExHii", "DynamicExVpd"
881 ]
882
883 # This dict store PCDs which are not used by any modules with specified arches
884 UnusedPcd = OrderedDict()
885 for Pa in self.AutoGenObjectList:
886 # Key of DSC's Pcds dictionary is PcdCName, TokenSpaceGuid
887 for Pcd in Pa.Platform.Pcds:
888 PcdType = Pa.Platform.Pcds[Pcd].Type
889
890 # If no PCD type, this PCD comes from FDF
891 if not PcdType:
892 continue
893
894 # Try to remove Hii and Vpd suffix
895 if PcdType.startswith("DynamicEx"):
896 PcdType = "DynamicEx"
897 elif PcdType.startswith("Dynamic"):
898 PcdType = "Dynamic"
899
900 for Package in Pa.PackageList:
901 # Key of DEC's Pcds dictionary is PcdCName, TokenSpaceGuid, PcdType
902 if (Pcd[0], Pcd[1], PcdType) in Package.Pcds:
903 break
904 for Type in PcdTypeList:
905 if (Pcd[0], Pcd[1], Type) in Package.Pcds:
906 EdkLogger.error(
907 'build',
908 FORMAT_INVALID,
909 "Type [%s] of PCD [%s.%s] in DSC file doesn't match the type [%s] defined in DEC file." \
910 % (Pa.Platform.Pcds[Pcd].Type, Pcd[1], Pcd[0], Type),
911 ExtraData=None
912 )
913 return
914 else:
915 UnusedPcd.setdefault(Pcd, []).append(Pa.Arch)
916
917 for Pcd in UnusedPcd:
918 EdkLogger.warn(
919 'build',
920 "The PCD was not specified by any INF module in the platform for the given architecture.\n"
921 "\tPCD: [%s.%s]\n\tPlatform: [%s]\n\tArch: %s"
922 % (Pcd[1], Pcd[0], os.path.basename(str(self.MetaFile)), str(UnusedPcd[Pcd])),
923 ExtraData=None
924 )
925
926 def __repr__(self):
927 return "%s [%s]" % (self.MetaFile, ", ".join(self.ArchList))
928
929 ## Return the directory to store FV files
930 def _GetFvDir(self):
931 if self._FvDir is None:
932 self._FvDir = path.join(self.BuildDir, 'FV')
933 return self._FvDir
934
935 ## Return the directory to store all intermediate and final files built
936 def _GetBuildDir(self):
937 if self._BuildDir is None:
938 return self.AutoGenObjectList[0].BuildDir
939
940 ## Return the build output directory platform specifies
941 def _GetOutputDir(self):
942 return self.Platform.OutputDirectory
943
944 ## Return platform name
945 def _GetName(self):
946 return self.Platform.PlatformName
947
948 ## Return meta-file GUID
949 def _GetGuid(self):
950 return self.Platform.Guid
951
952 ## Return platform version
953 def _GetVersion(self):
954 return self.Platform.Version
955
956 ## Return paths of tools
957 def _GetToolDefinition(self):
958 return self.AutoGenObjectList[0].ToolDefinition
959
960 ## Return directory of platform makefile
961 #
962 # @retval string Makefile directory
963 #
964 def _GetMakeFileDir(self):
965 if self._MakeFileDir is None:
966 self._MakeFileDir = self.BuildDir
967 return self._MakeFileDir
968
969 ## Return build command string
970 #
971 # @retval string Build command string
972 #
973 def _GetBuildCommand(self):
974 if self._BuildCommand is None:
975 # BuildCommand should be all the same. So just get one from platform AutoGen
976 self._BuildCommand = self.AutoGenObjectList[0].BuildCommand
977 return self._BuildCommand
978
979 ## Check the PCDs token value conflict in each DEC file.
980 #
981 # Will cause build break and raise error message while two PCDs conflict.
982 #
983 # @return None
984 #
985 def _CheckAllPcdsTokenValueConflict(self):
986 for Pa in self.AutoGenObjectList:
987 for Package in Pa.PackageList:
988 PcdList = Package.Pcds.values()
989 PcdList.sort(lambda x, y: cmp(int(x.TokenValue, 0), int(y.TokenValue, 0)))
990 Count = 0
991 while (Count < len(PcdList) - 1) :
992 Item = PcdList[Count]
993 ItemNext = PcdList[Count + 1]
994 #
995 # Make sure in the same token space the TokenValue should be unique
996 #
997 if (int(Item.TokenValue, 0) == int(ItemNext.TokenValue, 0)):
998 SameTokenValuePcdList = []
999 SameTokenValuePcdList.append(Item)
1000 SameTokenValuePcdList.append(ItemNext)
1001 RemainPcdListLength = len(PcdList) - Count - 2
1002 for ValueSameCount in range(RemainPcdListLength):
1003 if int(PcdList[len(PcdList) - RemainPcdListLength + ValueSameCount].TokenValue, 0) == int(Item.TokenValue, 0):
1004 SameTokenValuePcdList.append(PcdList[len(PcdList) - RemainPcdListLength + ValueSameCount])
1005 else:
1006 break;
1007 #
1008 # Sort same token value PCD list with TokenGuid and TokenCName
1009 #
1010 SameTokenValuePcdList.sort(lambda x, y: cmp("%s.%s" % (x.TokenSpaceGuidCName, x.TokenCName), "%s.%s" % (y.TokenSpaceGuidCName, y.TokenCName)))
1011 SameTokenValuePcdListCount = 0
1012 while (SameTokenValuePcdListCount < len(SameTokenValuePcdList) - 1):
1013 Flag = False
1014 TemListItem = SameTokenValuePcdList[SameTokenValuePcdListCount]
1015 TemListItemNext = SameTokenValuePcdList[SameTokenValuePcdListCount + 1]
1016
1017 if (TemListItem.TokenSpaceGuidCName == TemListItemNext.TokenSpaceGuidCName) and (TemListItem.TokenCName != TemListItemNext.TokenCName):
1018 for PcdItem in GlobalData.MixedPcd:
1019 if (TemListItem.TokenCName, TemListItem.TokenSpaceGuidCName) in GlobalData.MixedPcd[PcdItem] or \
1020 (TemListItemNext.TokenCName, TemListItemNext.TokenSpaceGuidCName) in GlobalData.MixedPcd[PcdItem]:
1021 Flag = True
1022 if not Flag:
1023 EdkLogger.error(
1024 'build',
1025 FORMAT_INVALID,
1026 "The TokenValue [%s] of PCD [%s.%s] is conflict with: [%s.%s] in %s"\
1027 % (TemListItem.TokenValue, TemListItem.TokenSpaceGuidCName, TemListItem.TokenCName, TemListItemNext.TokenSpaceGuidCName, TemListItemNext.TokenCName, Package),
1028 ExtraData=None
1029 )
1030 SameTokenValuePcdListCount += 1
1031 Count += SameTokenValuePcdListCount
1032 Count += 1
1033
1034 PcdList = Package.Pcds.values()
1035 PcdList.sort(lambda x, y: cmp("%s.%s" % (x.TokenSpaceGuidCName, x.TokenCName), "%s.%s" % (y.TokenSpaceGuidCName, y.TokenCName)))
1036 Count = 0
1037 while (Count < len(PcdList) - 1) :
1038 Item = PcdList[Count]
1039 ItemNext = PcdList[Count + 1]
1040 #
1041 # Check PCDs with same TokenSpaceGuidCName.TokenCName have same token value as well.
1042 #
1043 if (Item.TokenSpaceGuidCName == ItemNext.TokenSpaceGuidCName) and (Item.TokenCName == ItemNext.TokenCName) and (int(Item.TokenValue, 0) != int(ItemNext.TokenValue, 0)):
1044 EdkLogger.error(
1045 'build',
1046 FORMAT_INVALID,
1047 "The TokenValue [%s] of PCD [%s.%s] in %s defined in two places should be same as well."\
1048 % (Item.TokenValue, Item.TokenSpaceGuidCName, Item.TokenCName, Package),
1049 ExtraData=None
1050 )
1051 Count += 1
1052 ## Generate fds command
1053 def _GenFdsCommand(self):
1054 return (GenMake.TopLevelMakefile(self)._TEMPLATE_.Replace(GenMake.TopLevelMakefile(self)._TemplateDict)).strip()
1055
1056 ## Create makefile for the platform and modules in it
1057 #
1058 # @param CreateDepsMakeFile Flag indicating if the makefile for
1059 # modules will be created as well
1060 #
1061 def CreateMakeFile(self, CreateDepsMakeFile=False):
1062 if CreateDepsMakeFile:
1063 for Pa in self.AutoGenObjectList:
1064 Pa.CreateMakeFile(CreateDepsMakeFile)
1065
1066 ## Create autogen code for platform and modules
1067 #
1068 # Since there's no autogen code for platform, this method will do nothing
1069 # if CreateModuleCodeFile is set to False.
1070 #
1071 # @param CreateDepsCodeFile Flag indicating if creating module's
1072 # autogen code file or not
1073 #
1074 def CreateCodeFile(self, CreateDepsCodeFile=False):
1075 if not CreateDepsCodeFile:
1076 return
1077 for Pa in self.AutoGenObjectList:
1078 Pa.CreateCodeFile(CreateDepsCodeFile)
1079
1080 ## Create AsBuilt INF file the platform
1081 #
1082 def CreateAsBuiltInf(self):
1083 return
1084
1085 Name = property(_GetName)
1086 Guid = property(_GetGuid)
1087 Version = property(_GetVersion)
1088 OutputDir = property(_GetOutputDir)
1089
1090 ToolDefinition = property(_GetToolDefinition) # toolcode : tool path
1091
1092 BuildDir = property(_GetBuildDir)
1093 FvDir = property(_GetFvDir)
1094 MakeFileDir = property(_GetMakeFileDir)
1095 BuildCommand = property(_GetBuildCommand)
1096 GenFdsCommand = property(_GenFdsCommand)
1097
1098 ## AutoGen class for platform
1099 #
1100 # PlatformAutoGen class will process the original information in platform
1101 # file in order to generate makefile for platform.
1102 #
1103 class PlatformAutoGen(AutoGen):
1104 # call super().__init__ then call the worker function with different parameter count
1105 def __init__(self, Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs):
1106 try:
1107 self._Init
1108 except:
1109 super(PlatformAutoGen, self).__init__(self, Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs)
1110 self._InitWorker(Workspace, MetaFile, Target, Toolchain, Arch)
1111 self._Init = True
1112 #
1113 # Used to store all PCDs for both PEI and DXE phase, in order to generate
1114 # correct PCD database
1115 #
1116 _DynaPcdList_ = []
1117 _NonDynaPcdList_ = []
1118 _PlatformPcds = {}
1119
1120 #
1121 # The priority list while override build option
1122 #
1123 PrioList = {"0x11111" : 16, # TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE (Highest)
1124 "0x01111" : 15, # ******_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
1125 "0x10111" : 14, # TARGET_*********_ARCH_COMMANDTYPE_ATTRIBUTE
1126 "0x00111" : 13, # ******_*********_ARCH_COMMANDTYPE_ATTRIBUTE
1127 "0x11011" : 12, # TARGET_TOOLCHAIN_****_COMMANDTYPE_ATTRIBUTE
1128 "0x01011" : 11, # ******_TOOLCHAIN_****_COMMANDTYPE_ATTRIBUTE
1129 "0x10011" : 10, # TARGET_*********_****_COMMANDTYPE_ATTRIBUTE
1130 "0x00011" : 9, # ******_*********_****_COMMANDTYPE_ATTRIBUTE
1131 "0x11101" : 8, # TARGET_TOOLCHAIN_ARCH_***********_ATTRIBUTE
1132 "0x01101" : 7, # ******_TOOLCHAIN_ARCH_***********_ATTRIBUTE
1133 "0x10101" : 6, # TARGET_*********_ARCH_***********_ATTRIBUTE
1134 "0x00101" : 5, # ******_*********_ARCH_***********_ATTRIBUTE
1135 "0x11001" : 4, # TARGET_TOOLCHAIN_****_***********_ATTRIBUTE
1136 "0x01001" : 3, # ******_TOOLCHAIN_****_***********_ATTRIBUTE
1137 "0x10001" : 2, # TARGET_*********_****_***********_ATTRIBUTE
1138 "0x00001" : 1} # ******_*********_****_***********_ATTRIBUTE (Lowest)
1139
1140 ## Initialize PlatformAutoGen
1141 #
1142 #
1143 # @param Workspace WorkspaceAutoGen object
1144 # @param PlatformFile Platform file (DSC file)
1145 # @param Target Build target (DEBUG, RELEASE)
1146 # @param Toolchain Name of tool chain
1147 # @param Arch arch of the platform supports
1148 #
1149 def _InitWorker(self, Workspace, PlatformFile, Target, Toolchain, Arch):
1150 EdkLogger.debug(EdkLogger.DEBUG_9, "AutoGen platform [%s] [%s]" % (PlatformFile, Arch))
1151 GlobalData.gProcessingFile = "%s [%s, %s, %s]" % (PlatformFile, Arch, Toolchain, Target)
1152
1153 self.MetaFile = PlatformFile
1154 self.Workspace = Workspace
1155 self.WorkspaceDir = Workspace.WorkspaceDir
1156 self.ToolChain = Toolchain
1157 self.BuildTarget = Target
1158 self.Arch = Arch
1159 self.SourceDir = PlatformFile.SubDir
1160 self.SourceOverrideDir = None
1161 self.FdTargetList = self.Workspace.FdTargetList
1162 self.FvTargetList = self.Workspace.FvTargetList
1163 self.AllPcdList = []
1164 # get the original module/package/platform objects
1165 self.BuildDatabase = Workspace.BuildDatabase
1166 self.DscBuildDataObj = Workspace.Platform
1167 self._GuidDict = Workspace._GuidDict
1168
1169 # flag indicating if the makefile/C-code file has been created or not
1170 self.IsMakeFileCreated = False
1171 self.IsCodeFileCreated = False
1172
1173 self._Platform = None
1174 self._Name = None
1175 self._Guid = None
1176 self._Version = None
1177
1178 self._BuildRule = None
1179 self._SourceDir = None
1180 self._BuildDir = None
1181 self._OutputDir = None
1182 self._FvDir = None
1183 self._MakeFileDir = None
1184 self._FdfFile = None
1185
1186 self._PcdTokenNumber = None # (TokenCName, TokenSpaceGuidCName) : GeneratedTokenNumber
1187 self._DynamicPcdList = None # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
1188 self._NonDynamicPcdList = None # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
1189 self._NonDynamicPcdDict = {}
1190
1191 self._ToolDefinitions = None
1192 self._ToolDefFile = None # toolcode : tool path
1193 self._ToolChainFamily = None
1194 self._BuildRuleFamily = None
1195 self._BuildOption = None # toolcode : option
1196 self._EdkBuildOption = None # edktoolcode : option
1197 self._EdkIIBuildOption = None # edkiitoolcode : option
1198 self._PackageList = None
1199 self._ModuleAutoGenList = None
1200 self._LibraryAutoGenList = None
1201 self._BuildCommand = None
1202 self._AsBuildInfList = []
1203 self._AsBuildModuleList = []
1204
1205 self.VariableInfo = None
1206
1207 if GlobalData.gFdfParser is not None:
1208 self._AsBuildInfList = GlobalData.gFdfParser.Profile.InfList
1209 for Inf in self._AsBuildInfList:
1210 InfClass = PathClass(NormPath(Inf), GlobalData.gWorkspace, self.Arch)
1211 M = self.BuildDatabase[InfClass, self.Arch, self.BuildTarget, self.ToolChain]
1212 if not M.IsSupportedArch:
1213 continue
1214 self._AsBuildModuleList.append(InfClass)
1215 # get library/modules for build
1216 self.LibraryBuildDirectoryList = []
1217 self.ModuleBuildDirectoryList = []
1218
1219 return True
1220
1221 def __repr__(self):
1222 return "%s [%s]" % (self.MetaFile, self.Arch)
1223
1224 ## Create autogen code for platform and modules
1225 #
1226 # Since there's no autogen code for platform, this method will do nothing
1227 # if CreateModuleCodeFile is set to False.
1228 #
1229 # @param CreateModuleCodeFile Flag indicating if creating module's
1230 # autogen code file or not
1231 #
1232 def CreateCodeFile(self, CreateModuleCodeFile=False):
1233 # only module has code to be greated, so do nothing if CreateModuleCodeFile is False
1234 if self.IsCodeFileCreated or not CreateModuleCodeFile:
1235 return
1236
1237 for Ma in self.ModuleAutoGenList:
1238 Ma.CreateCodeFile(True)
1239
1240 # don't do this twice
1241 self.IsCodeFileCreated = True
1242
1243 ## Generate Fds Command
1244 def _GenFdsCommand(self):
1245 return self.Workspace.GenFdsCommand
1246
1247 ## Create makefile for the platform and mdoules in it
1248 #
1249 # @param CreateModuleMakeFile Flag indicating if the makefile for
1250 # modules will be created as well
1251 #
1252 def CreateMakeFile(self, CreateModuleMakeFile=False, FfsCommand = {}):
1253 if CreateModuleMakeFile:
1254 for ModuleFile in self.Platform.Modules:
1255 Ma = ModuleAutoGen(self.Workspace, ModuleFile, self.BuildTarget,
1256 self.ToolChain, self.Arch, self.MetaFile)
1257 if (ModuleFile.File, self.Arch) in FfsCommand:
1258 Ma.CreateMakeFile(True, FfsCommand[ModuleFile.File, self.Arch])
1259 else:
1260 Ma.CreateMakeFile(True)
1261 #Ma.CreateAsBuiltInf()
1262
1263 # no need to create makefile for the platform more than once
1264 if self.IsMakeFileCreated:
1265 return
1266
1267 # create library/module build dirs for platform
1268 Makefile = GenMake.PlatformMakefile(self)
1269 self.LibraryBuildDirectoryList = Makefile.GetLibraryBuildDirectoryList()
1270 self.ModuleBuildDirectoryList = Makefile.GetModuleBuildDirectoryList()
1271
1272 self.IsMakeFileCreated = True
1273
1274 ## Deal with Shared FixedAtBuild Pcds
1275 #
1276 def CollectFixedAtBuildPcds(self):
1277 for LibAuto in self.LibraryAutoGenList:
1278 FixedAtBuildPcds = {}
1279 ShareFixedAtBuildPcdsSameValue = {}
1280 for Module in LibAuto._ReferenceModules:
1281 for Pcd in Module.FixedAtBuildPcds + LibAuto.FixedAtBuildPcds:
1282 key = ".".join((Pcd.TokenSpaceGuidCName,Pcd.TokenCName))
1283 if key not in FixedAtBuildPcds:
1284 ShareFixedAtBuildPcdsSameValue[key] = True
1285 FixedAtBuildPcds[key] = Pcd.DefaultValue
1286 else:
1287 if FixedAtBuildPcds[key] != Pcd.DefaultValue:
1288 ShareFixedAtBuildPcdsSameValue[key] = False
1289 for Pcd in LibAuto.FixedAtBuildPcds:
1290 key = ".".join((Pcd.TokenSpaceGuidCName,Pcd.TokenCName))
1291 if (Pcd.TokenCName,Pcd.TokenSpaceGuidCName) not in self.NonDynamicPcdDict:
1292 continue
1293 else:
1294 DscPcd = self.NonDynamicPcdDict[(Pcd.TokenCName,Pcd.TokenSpaceGuidCName)]
1295 if DscPcd.Type != "FixedAtBuild":
1296 continue
1297 if key in ShareFixedAtBuildPcdsSameValue and ShareFixedAtBuildPcdsSameValue[key]:
1298 LibAuto.ConstPcd[key] = Pcd.DefaultValue
1299
1300 def CollectVariables(self, DynamicPcdSet):
1301
1302 VpdRegionSize = 0
1303 VpdRegionBase = 0
1304 if self.Workspace.FdfFile:
1305 FdDict = self.Workspace.FdfProfile.FdDict[GlobalData.gFdfParser.CurrentFdName]
1306 for FdRegion in FdDict.RegionList:
1307 for item in FdRegion.RegionDataList:
1308 if self.Platform.VpdToolGuid.strip() and self.Platform.VpdToolGuid in item:
1309 VpdRegionSize = FdRegion.Size
1310 VpdRegionBase = FdRegion.Offset
1311 break
1312
1313
1314 VariableInfo = VariableMgr(self.DscBuildDataObj._GetDefaultStores(),self.DscBuildDataObj._GetSkuIds())
1315 VariableInfo.SetVpdRegionMaxSize(VpdRegionSize)
1316 VariableInfo.SetVpdRegionOffset(VpdRegionBase)
1317 Index = 0
1318 for Pcd in DynamicPcdSet:
1319 pcdname = ".".join((Pcd.TokenSpaceGuidCName,Pcd.TokenCName))
1320 for SkuName in Pcd.SkuInfoList:
1321 Sku = Pcd.SkuInfoList[SkuName]
1322 SkuId = Sku.SkuId
1323 if SkuId is None or SkuId == '':
1324 continue
1325 if len(Sku.VariableName) > 0:
1326 VariableGuidStructure = Sku.VariableGuidValue
1327 VariableGuid = GuidStructureStringToGuidString(VariableGuidStructure)
1328 for StorageName in Sku.DefaultStoreDict:
1329 VariableInfo.append_variable(var_info(Index,pcdname,StorageName,SkuName, StringToArray(Sku.VariableName),VariableGuid, Sku.VariableOffset, Sku.VariableAttribute , Sku.HiiDefaultValue,Sku.DefaultStoreDict[StorageName],Pcd.DatumType))
1330 Index += 1
1331 return VariableInfo
1332
1333 def UpdateNVStoreMaxSize(self,OrgVpdFile):
1334 if self.VariableInfo:
1335 VpdMapFilePath = os.path.join(self.BuildDir, "FV", "%s.map" % self.Platform.VpdToolGuid)
1336 PcdNvStoreDfBuffer = [item for item in self._DynamicPcdList if item.TokenCName == "PcdNvStoreDefaultValueBuffer" and item.TokenSpaceGuidCName == "gEfiMdeModulePkgTokenSpaceGuid"]
1337
1338 if PcdNvStoreDfBuffer:
1339 if os.path.exists(VpdMapFilePath):
1340 OrgVpdFile.Read(VpdMapFilePath)
1341 PcdItems = OrgVpdFile.GetOffset(PcdNvStoreDfBuffer[0])
1342 NvStoreOffset = PcdItems.values()[0].strip() if PcdItems else '0'
1343 else:
1344 EdkLogger.error("build", FILE_READ_FAILURE, "Can not find VPD map file %s to fix up VPD offset." % VpdMapFilePath)
1345
1346 NvStoreOffset = int(NvStoreOffset,16) if NvStoreOffset.upper().startswith("0X") else int(NvStoreOffset)
1347 default_skuobj = PcdNvStoreDfBuffer[0].SkuInfoList.get("DEFAULT")
1348 maxsize = self.VariableInfo.VpdRegionSize - NvStoreOffset if self.VariableInfo.VpdRegionSize else len(default_skuobj.DefaultValue.split(","))
1349 var_data = self.VariableInfo.PatchNVStoreDefaultMaxSize(maxsize)
1350
1351 if var_data and default_skuobj:
1352 default_skuobj.DefaultValue = var_data
1353 PcdNvStoreDfBuffer[0].DefaultValue = var_data
1354 PcdNvStoreDfBuffer[0].SkuInfoList.clear()
1355 PcdNvStoreDfBuffer[0].SkuInfoList['DEFAULT'] = default_skuobj
1356 PcdNvStoreDfBuffer[0].MaxDatumSize = str(len(default_skuobj.DefaultValue.split(",")))
1357
1358 return OrgVpdFile
1359
1360 ## Collect dynamic PCDs
1361 #
1362 # Gather dynamic PCDs list from each module and their settings from platform
1363 # This interface should be invoked explicitly when platform action is created.
1364 #
1365 def CollectPlatformDynamicPcds(self):
1366
1367 for key in self.Platform.Pcds:
1368 for SinglePcd in GlobalData.MixedPcd:
1369 if (self.Platform.Pcds[key].TokenCName, self.Platform.Pcds[key].TokenSpaceGuidCName) == SinglePcd:
1370 for item in GlobalData.MixedPcd[SinglePcd]:
1371 Pcd_Type = item[0].split('_')[-1]
1372 if (Pcd_Type == self.Platform.Pcds[key].Type) or (Pcd_Type == TAB_PCDS_DYNAMIC_EX and self.Platform.Pcds[key].Type in GenC.gDynamicExPcd) or \
1373 (Pcd_Type == TAB_PCDS_DYNAMIC and self.Platform.Pcds[key].Type in GenC.gDynamicPcd):
1374 Value = self.Platform.Pcds[key]
1375 Value.TokenCName = self.Platform.Pcds[key].TokenCName + '_' + Pcd_Type
1376 if len(key) == 2:
1377 newkey = (Value.TokenCName, key[1])
1378 elif len(key) == 3:
1379 newkey = (Value.TokenCName, key[1], key[2])
1380 del self.Platform.Pcds[key]
1381 self.Platform.Pcds[newkey] = Value
1382 break
1383 else:
1384 pass
1385 break
1386 else:
1387 pass
1388
1389 # for gathering error information
1390 NoDatumTypePcdList = set()
1391 FdfModuleList = []
1392 for InfName in self._AsBuildInfList:
1393 InfName = mws.join(self.WorkspaceDir, InfName)
1394 FdfModuleList.append(os.path.normpath(InfName))
1395 for F in self.Platform.Modules.keys():
1396 M = ModuleAutoGen(self.Workspace, F, self.BuildTarget, self.ToolChain, self.Arch, self.MetaFile)
1397 #GuidValue.update(M.Guids)
1398
1399 self.Platform.Modules[F].M = M
1400
1401 for PcdFromModule in M.ModulePcdList + M.LibraryPcdList:
1402 # make sure that the "VOID*" kind of datum has MaxDatumSize set
1403 if PcdFromModule.DatumType == "VOID*" and PcdFromModule.MaxDatumSize in [None, '']:
1404 NoDatumTypePcdList.add("%s.%s [%s]" % (PcdFromModule.TokenSpaceGuidCName, PcdFromModule.TokenCName, F))
1405
1406 # Check the PCD from Binary INF or Source INF
1407 if M.IsBinaryModule == True:
1408 PcdFromModule.IsFromBinaryInf = True
1409
1410 # Check the PCD from DSC or not
1411 if (PcdFromModule.TokenCName, PcdFromModule.TokenSpaceGuidCName) in self.Platform.Pcds.keys():
1412 PcdFromModule.IsFromDsc = True
1413 else:
1414 PcdFromModule.IsFromDsc = False
1415 if PcdFromModule.Type in GenC.gDynamicPcd or PcdFromModule.Type in GenC.gDynamicExPcd:
1416 if F.Path not in FdfModuleList:
1417 # If one of the Source built modules listed in the DSC is not listed
1418 # in FDF modules, and the INF lists a PCD can only use the PcdsDynamic
1419 # access method (it is only listed in the DEC file that declares the
1420 # PCD as PcdsDynamic), then build tool will report warning message
1421 # notify the PI that they are attempting to build a module that must
1422 # be included in a flash image in order to be functional. These Dynamic
1423 # PCD will not be added into the Database unless it is used by other
1424 # modules that are included in the FDF file.
1425 if PcdFromModule.Type in GenC.gDynamicPcd and \
1426 PcdFromModule.IsFromBinaryInf == False:
1427 # Print warning message to let the developer make a determine.
1428 continue
1429 # If one of the Source built modules listed in the DSC is not listed in
1430 # FDF modules, and the INF lists a PCD can only use the PcdsDynamicEx
1431 # access method (it is only listed in the DEC file that declares the
1432 # PCD as PcdsDynamicEx), then DO NOT break the build; DO NOT add the
1433 # PCD to the Platform's PCD Database.
1434 if PcdFromModule.Type in GenC.gDynamicExPcd:
1435 continue
1436 #
1437 # If a dynamic PCD used by a PEM module/PEI module & DXE module,
1438 # it should be stored in Pcd PEI database, If a dynamic only
1439 # used by DXE module, it should be stored in DXE PCD database.
1440 # The default Phase is DXE
1441 #
1442 if M.ModuleType in ["PEIM", "PEI_CORE"]:
1443 PcdFromModule.Phase = "PEI"
1444 if PcdFromModule not in self._DynaPcdList_:
1445 self._DynaPcdList_.append(PcdFromModule)
1446 elif PcdFromModule.Phase == 'PEI':
1447 # overwrite any the same PCD existing, if Phase is PEI
1448 Index = self._DynaPcdList_.index(PcdFromModule)
1449 self._DynaPcdList_[Index] = PcdFromModule
1450 elif PcdFromModule not in self._NonDynaPcdList_:
1451 self._NonDynaPcdList_.append(PcdFromModule)
1452 elif PcdFromModule in self._NonDynaPcdList_ and PcdFromModule.IsFromBinaryInf == True:
1453 Index = self._NonDynaPcdList_.index(PcdFromModule)
1454 if self._NonDynaPcdList_[Index].IsFromBinaryInf == False:
1455 #The PCD from Binary INF will override the same one from source INF
1456 self._NonDynaPcdList_.remove (self._NonDynaPcdList_[Index])
1457 PcdFromModule.Pending = False
1458 self._NonDynaPcdList_.append (PcdFromModule)
1459 # Parse the DynamicEx PCD from the AsBuild INF module list of FDF.
1460 DscModuleList = []
1461 for ModuleInf in self.Platform.Modules.keys():
1462 DscModuleList.append (os.path.normpath(ModuleInf.Path))
1463 # add the PCD from modules that listed in FDF but not in DSC to Database
1464 for InfName in FdfModuleList:
1465 if InfName not in DscModuleList:
1466 InfClass = PathClass(InfName)
1467 M = self.BuildDatabase[InfClass, self.Arch, self.BuildTarget, self.ToolChain]
1468 # If a module INF in FDF but not in current arch's DSC module list, it must be module (either binary or source)
1469 # for different Arch. PCDs in source module for different Arch is already added before, so skip the source module here.
1470 # For binary module, if in current arch, we need to list the PCDs into database.
1471 if not M.IsSupportedArch:
1472 continue
1473 # Override the module PCD setting by platform setting
1474 ModulePcdList = self.ApplyPcdSetting(M, M.Pcds)
1475 for PcdFromModule in ModulePcdList:
1476 PcdFromModule.IsFromBinaryInf = True
1477 PcdFromModule.IsFromDsc = False
1478 # Only allow the DynamicEx and Patchable PCD in AsBuild INF
1479 if PcdFromModule.Type not in GenC.gDynamicExPcd and PcdFromModule.Type not in TAB_PCDS_PATCHABLE_IN_MODULE:
1480 EdkLogger.error("build", AUTOGEN_ERROR, "PCD setting error",
1481 File=self.MetaFile,
1482 ExtraData="\n\tExisted %s PCD %s in:\n\t\t%s\n"
1483 % (PcdFromModule.Type, PcdFromModule.TokenCName, InfName))
1484 # make sure that the "VOID*" kind of datum has MaxDatumSize set
1485 if PcdFromModule.DatumType == "VOID*" and PcdFromModule.MaxDatumSize in [None, '']:
1486 NoDatumTypePcdList.add("%s.%s [%s]" % (PcdFromModule.TokenSpaceGuidCName, PcdFromModule.TokenCName, InfName))
1487 if M.ModuleType in ["PEIM", "PEI_CORE"]:
1488 PcdFromModule.Phase = "PEI"
1489 if PcdFromModule not in self._DynaPcdList_ and PcdFromModule.Type in GenC.gDynamicExPcd:
1490 self._DynaPcdList_.append(PcdFromModule)
1491 elif PcdFromModule not in self._NonDynaPcdList_ and PcdFromModule.Type in TAB_PCDS_PATCHABLE_IN_MODULE:
1492 self._NonDynaPcdList_.append(PcdFromModule)
1493 if PcdFromModule in self._DynaPcdList_ and PcdFromModule.Phase == 'PEI' and PcdFromModule.Type in GenC.gDynamicExPcd:
1494 # Overwrite the phase of any the same PCD existing, if Phase is PEI.
1495 # It is to solve the case that a dynamic PCD used by a PEM module/PEI
1496 # module & DXE module at a same time.
1497 # Overwrite the type of the PCDs in source INF by the type of AsBuild
1498 # INF file as DynamicEx.
1499 Index = self._DynaPcdList_.index(PcdFromModule)
1500 self._DynaPcdList_[Index].Phase = PcdFromModule.Phase
1501 self._DynaPcdList_[Index].Type = PcdFromModule.Type
1502 for PcdFromModule in self._NonDynaPcdList_:
1503 # If a PCD is not listed in the DSC file, but binary INF files used by
1504 # this platform all (that use this PCD) list the PCD in a [PatchPcds]
1505 # section, AND all source INF files used by this platform the build
1506 # that use the PCD list the PCD in either a [Pcds] or [PatchPcds]
1507 # section, then the tools must NOT add the PCD to the Platform's PCD
1508 # Database; the build must assign the access method for this PCD as
1509 # PcdsPatchableInModule.
1510 if PcdFromModule not in self._DynaPcdList_:
1511 continue
1512 Index = self._DynaPcdList_.index(PcdFromModule)
1513 if PcdFromModule.IsFromDsc == False and \
1514 PcdFromModule.Type in TAB_PCDS_PATCHABLE_IN_MODULE and \
1515 PcdFromModule.IsFromBinaryInf == True and \
1516 self._DynaPcdList_[Index].IsFromBinaryInf == False:
1517 Index = self._DynaPcdList_.index(PcdFromModule)
1518 self._DynaPcdList_.remove (self._DynaPcdList_[Index])
1519
1520 # print out error information and break the build, if error found
1521 if len(NoDatumTypePcdList) > 0:
1522 NoDatumTypePcdListString = "\n\t\t".join(NoDatumTypePcdList)
1523 EdkLogger.error("build", AUTOGEN_ERROR, "PCD setting error",
1524 File=self.MetaFile,
1525 ExtraData="\n\tPCD(s) without MaxDatumSize:\n\t\t%s\n"
1526 % NoDatumTypePcdListString)
1527 self._NonDynamicPcdList = self._NonDynaPcdList_
1528 self._DynamicPcdList = self._DynaPcdList_
1529 #
1530 # Sort dynamic PCD list to:
1531 # 1) If PCD's datum type is VOID* and value is unicode string which starts with L, the PCD item should
1532 # try to be put header of dynamicd List
1533 # 2) If PCD is HII type, the PCD item should be put after unicode type PCD
1534 #
1535 # The reason of sorting is make sure the unicode string is in double-byte alignment in string table.
1536 #
1537 UnicodePcdArray = set()
1538 HiiPcdArray = set()
1539 OtherPcdArray = set()
1540 VpdPcdDict = {}
1541 VpdFile = VpdInfoFile.VpdInfoFile()
1542 NeedProcessVpdMapFile = False
1543
1544 for pcd in self.Platform.Pcds.keys():
1545 if pcd not in self._PlatformPcds.keys():
1546 self._PlatformPcds[pcd] = self.Platform.Pcds[pcd]
1547
1548 for item in self._PlatformPcds:
1549 if self._PlatformPcds[item].DatumType and self._PlatformPcds[item].DatumType not in [TAB_UINT8, TAB_UINT16, TAB_UINT32, TAB_UINT64, TAB_VOID, "BOOLEAN"]:
1550 self._PlatformPcds[item].DatumType = "VOID*"
1551
1552 if (self.Workspace.ArchList[-1] == self.Arch):
1553 for Pcd in self._DynamicPcdList:
1554 # just pick the a value to determine whether is unicode string type
1555 Sku = Pcd.SkuInfoList[Pcd.SkuInfoList.keys()[0]]
1556 Sku.VpdOffset = Sku.VpdOffset.strip()
1557
1558 if Pcd.DatumType not in [TAB_UINT8, TAB_UINT16, TAB_UINT32, TAB_UINT64, TAB_VOID, "BOOLEAN"]:
1559 Pcd.DatumType = "VOID*"
1560
1561 # if found PCD which datum value is unicode string the insert to left size of UnicodeIndex
1562 # if found HII type PCD then insert to right of UnicodeIndex
1563 if Pcd.Type in [TAB_PCDS_DYNAMIC_VPD, TAB_PCDS_DYNAMIC_EX_VPD]:
1564 VpdPcdDict[(Pcd.TokenCName, Pcd.TokenSpaceGuidCName)] = Pcd
1565
1566 #Collect DynamicHii PCD values and assign it to DynamicExVpd PCD gEfiMdeModulePkgTokenSpaceGuid.PcdNvStoreDefaultValueBuffer
1567 PcdNvStoreDfBuffer = VpdPcdDict.get(("PcdNvStoreDefaultValueBuffer","gEfiMdeModulePkgTokenSpaceGuid"))
1568 if PcdNvStoreDfBuffer:
1569 self.VariableInfo = self.CollectVariables(self._DynamicPcdList)
1570 vardump = self.VariableInfo.dump()
1571 if vardump:
1572 PcdNvStoreDfBuffer.DefaultValue = vardump
1573 for skuname in PcdNvStoreDfBuffer.SkuInfoList:
1574 PcdNvStoreDfBuffer.SkuInfoList[skuname].DefaultValue = vardump
1575 PcdNvStoreDfBuffer.MaxDatumSize = str(len(vardump.split(",")))
1576
1577 PlatformPcds = self._PlatformPcds.keys()
1578 PlatformPcds.sort()
1579 #
1580 # Add VPD type PCD into VpdFile and determine whether the VPD PCD need to be fixed up.
1581 #
1582 VpdSkuMap = {}
1583 for PcdKey in PlatformPcds:
1584 Pcd = self._PlatformPcds[PcdKey]
1585 if Pcd.Type in [TAB_PCDS_DYNAMIC_VPD, TAB_PCDS_DYNAMIC_EX_VPD] and \
1586 PcdKey in VpdPcdDict:
1587 Pcd = VpdPcdDict[PcdKey]
1588 SkuValueMap = {}
1589 DefaultSku = Pcd.SkuInfoList.get('DEFAULT')
1590 if DefaultSku:
1591 PcdValue = DefaultSku.DefaultValue
1592 if PcdValue not in SkuValueMap:
1593 SkuValueMap[PcdValue] = []
1594 VpdFile.Add(Pcd, 'DEFAULT',DefaultSku.VpdOffset)
1595 SkuValueMap[PcdValue].append(DefaultSku)
1596
1597 for (SkuName,Sku) in Pcd.SkuInfoList.items():
1598 Sku.VpdOffset = Sku.VpdOffset.strip()
1599 PcdValue = Sku.DefaultValue
1600 if PcdValue == "":
1601 PcdValue = Pcd.DefaultValue
1602 if Sku.VpdOffset != '*':
1603 if PcdValue.startswith("{"):
1604 Alignment = 8
1605 elif PcdValue.startswith("L"):
1606 Alignment = 2
1607 else:
1608 Alignment = 1
1609 try:
1610 VpdOffset = int(Sku.VpdOffset)
1611 except:
1612 try:
1613 VpdOffset = int(Sku.VpdOffset, 16)
1614 except:
1615 EdkLogger.error("build", FORMAT_INVALID, "Invalid offset value %s for PCD %s.%s." % (Sku.VpdOffset, Pcd.TokenSpaceGuidCName, Pcd.TokenCName))
1616 if VpdOffset % Alignment != 0:
1617 if PcdValue.startswith("{"):
1618 EdkLogger.warn("build", "The offset value of PCD %s.%s is not 8-byte aligned!" %(Pcd.TokenSpaceGuidCName, Pcd.TokenCName), File=self.MetaFile)
1619 else:
1620 EdkLogger.error("build", FORMAT_INVALID, 'The offset value of PCD %s.%s should be %s-byte aligned.' % (Pcd.TokenSpaceGuidCName, Pcd.TokenCName, Alignment))
1621 if PcdValue not in SkuValueMap:
1622 SkuValueMap[PcdValue] = []
1623 VpdFile.Add(Pcd, SkuName,Sku.VpdOffset)
1624 SkuValueMap[PcdValue].append(Sku)
1625 # if the offset of a VPD is *, then it need to be fixed up by third party tool.
1626 if not NeedProcessVpdMapFile and Sku.VpdOffset == "*":
1627 NeedProcessVpdMapFile = True
1628 if self.Platform.VpdToolGuid is None or self.Platform.VpdToolGuid == '':
1629 EdkLogger.error("Build", FILE_NOT_FOUND, \
1630 "Fail to find third-party BPDG tool to process VPD PCDs. BPDG Guid tool need to be defined in tools_def.txt and VPD_TOOL_GUID need to be provided in DSC file.")
1631
1632 VpdSkuMap[PcdKey] = SkuValueMap
1633 #
1634 # Fix the PCDs define in VPD PCD section that never referenced by module.
1635 # An example is PCD for signature usage.
1636 #
1637 for DscPcd in PlatformPcds:
1638 DscPcdEntry = self._PlatformPcds[DscPcd]
1639 if DscPcdEntry.Type in [TAB_PCDS_DYNAMIC_VPD, TAB_PCDS_DYNAMIC_EX_VPD]:
1640 if not (self.Platform.VpdToolGuid is None or self.Platform.VpdToolGuid == ''):
1641 FoundFlag = False
1642 for VpdPcd in VpdFile._VpdArray.keys():
1643 # This PCD has been referenced by module
1644 if (VpdPcd.TokenSpaceGuidCName == DscPcdEntry.TokenSpaceGuidCName) and \
1645 (VpdPcd.TokenCName == DscPcdEntry.TokenCName):
1646 FoundFlag = True
1647
1648 # Not found, it should be signature
1649 if not FoundFlag :
1650 # just pick the a value to determine whether is unicode string type
1651 SkuValueMap = {}
1652 SkuObjList = DscPcdEntry.SkuInfoList.items()
1653 DefaultSku = DscPcdEntry.SkuInfoList.get('DEFAULT')
1654 if DefaultSku:
1655 defaultindex = SkuObjList.index(('DEFAULT',DefaultSku))
1656 SkuObjList[0],SkuObjList[defaultindex] = SkuObjList[defaultindex],SkuObjList[0]
1657 for (SkuName,Sku) in SkuObjList:
1658 Sku.VpdOffset = Sku.VpdOffset.strip()
1659
1660 # Need to iterate DEC pcd information to get the value & datumtype
1661 for eachDec in self.PackageList:
1662 for DecPcd in eachDec.Pcds:
1663 DecPcdEntry = eachDec.Pcds[DecPcd]
1664 if (DecPcdEntry.TokenSpaceGuidCName == DscPcdEntry.TokenSpaceGuidCName) and \
1665 (DecPcdEntry.TokenCName == DscPcdEntry.TokenCName):
1666 # Print warning message to let the developer make a determine.
1667 EdkLogger.warn("build", "Unreferenced vpd pcd used!",
1668 File=self.MetaFile, \
1669 ExtraData = "PCD: %s.%s used in the DSC file %s is unreferenced." \
1670 %(DscPcdEntry.TokenSpaceGuidCName, DscPcdEntry.TokenCName, self.Platform.MetaFile.Path))
1671
1672 DscPcdEntry.DatumType = DecPcdEntry.DatumType
1673 DscPcdEntry.DefaultValue = DecPcdEntry.DefaultValue
1674 DscPcdEntry.TokenValue = DecPcdEntry.TokenValue
1675 DscPcdEntry.TokenSpaceGuidValue = eachDec.Guids[DecPcdEntry.TokenSpaceGuidCName]
1676 # Only fix the value while no value provided in DSC file.
1677 if (Sku.DefaultValue == "" or Sku.DefaultValue==None):
1678 DscPcdEntry.SkuInfoList[DscPcdEntry.SkuInfoList.keys()[0]].DefaultValue = DecPcdEntry.DefaultValue
1679
1680 if DscPcdEntry not in self._DynamicPcdList:
1681 self._DynamicPcdList.append(DscPcdEntry)
1682 Sku.VpdOffset = Sku.VpdOffset.strip()
1683 PcdValue = Sku.DefaultValue
1684 if PcdValue == "":
1685 PcdValue = DscPcdEntry.DefaultValue
1686 if Sku.VpdOffset != '*':
1687 if PcdValue.startswith("{"):
1688 Alignment = 8
1689 elif PcdValue.startswith("L"):
1690 Alignment = 2
1691 else:
1692 Alignment = 1
1693 try:
1694 VpdOffset = int(Sku.VpdOffset)
1695 except:
1696 try:
1697 VpdOffset = int(Sku.VpdOffset, 16)
1698 except:
1699 EdkLogger.error("build", FORMAT_INVALID, "Invalid offset value %s for PCD %s.%s." % (Sku.VpdOffset, DscPcdEntry.TokenSpaceGuidCName, DscPcdEntry.TokenCName))
1700 if VpdOffset % Alignment != 0:
1701 if PcdValue.startswith("{"):
1702 EdkLogger.warn("build", "The offset value of PCD %s.%s is not 8-byte aligned!" %(DscPcdEntry.TokenSpaceGuidCName, DscPcdEntry.TokenCName), File=self.MetaFile)
1703 else:
1704 EdkLogger.error("build", FORMAT_INVALID, 'The offset value of PCD %s.%s should be %s-byte aligned.' % (DscPcdEntry.TokenSpaceGuidCName, DscPcdEntry.TokenCName, Alignment))
1705 if PcdValue not in SkuValueMap:
1706 SkuValueMap[PcdValue] = []
1707 VpdFile.Add(DscPcdEntry, SkuName,Sku.VpdOffset)
1708 SkuValueMap[PcdValue].append(Sku)
1709 if not NeedProcessVpdMapFile and Sku.VpdOffset == "*":
1710 NeedProcessVpdMapFile = True
1711 if DscPcdEntry.DatumType == 'VOID*' and PcdValue.startswith("L"):
1712 UnicodePcdArray.add(DscPcdEntry)
1713 elif len(Sku.VariableName) > 0:
1714 HiiPcdArray.add(DscPcdEntry)
1715 else:
1716 OtherPcdArray.add(DscPcdEntry)
1717
1718 # if the offset of a VPD is *, then it need to be fixed up by third party tool.
1719 VpdSkuMap[DscPcd] = SkuValueMap
1720 if (self.Platform.FlashDefinition is None or self.Platform.FlashDefinition == '') and \
1721 VpdFile.GetCount() != 0:
1722 EdkLogger.error("build", ATTRIBUTE_NOT_AVAILABLE,
1723 "Fail to get FLASH_DEFINITION definition in DSC file %s which is required when DSC contains VPD PCD." % str(self.Platform.MetaFile))
1724
1725 if VpdFile.GetCount() != 0:
1726
1727 self.FixVpdOffset(VpdFile)
1728
1729 self.FixVpdOffset(self.UpdateNVStoreMaxSize(VpdFile))
1730
1731 # Process VPD map file generated by third party BPDG tool
1732 if NeedProcessVpdMapFile:
1733 VpdMapFilePath = os.path.join(self.BuildDir, "FV", "%s.map" % self.Platform.VpdToolGuid)
1734 if os.path.exists(VpdMapFilePath):
1735 VpdFile.Read(VpdMapFilePath)
1736
1737 # Fixup "*" offset
1738 for pcd in VpdSkuMap:
1739 vpdinfo = VpdFile.GetVpdInfo(pcd)
1740 if vpdinfo is None:
1741 # just pick the a value to determine whether is unicode string type
1742 continue
1743 for pcdvalue in VpdSkuMap[pcd]:
1744 for sku in VpdSkuMap[pcd][pcdvalue]:
1745 for item in vpdinfo:
1746 if item[2] == pcdvalue:
1747 sku.VpdOffset = item[1]
1748 else:
1749 EdkLogger.error("build", FILE_READ_FAILURE, "Can not find VPD map file %s to fix up VPD offset." % VpdMapFilePath)
1750
1751 # Delete the DynamicPcdList At the last time enter into this function
1752 for Pcd in self._DynamicPcdList:
1753 # just pick the a value to determine whether is unicode string type
1754 Sku = Pcd.SkuInfoList[Pcd.SkuInfoList.keys()[0]]
1755 Sku.VpdOffset = Sku.VpdOffset.strip()
1756
1757 if Pcd.DatumType not in [TAB_UINT8, TAB_UINT16, TAB_UINT32, TAB_UINT64, TAB_VOID, "BOOLEAN"]:
1758 Pcd.DatumType = "VOID*"
1759
1760 PcdValue = Sku.DefaultValue
1761 if Pcd.DatumType == 'VOID*' and PcdValue.startswith("L"):
1762 # if found PCD which datum value is unicode string the insert to left size of UnicodeIndex
1763 UnicodePcdArray.add(Pcd)
1764 elif len(Sku.VariableName) > 0:
1765 # if found HII type PCD then insert to right of UnicodeIndex
1766 HiiPcdArray.add(Pcd)
1767 else:
1768 OtherPcdArray.add(Pcd)
1769 del self._DynamicPcdList[:]
1770 self._DynamicPcdList.extend(list(UnicodePcdArray))
1771 self._DynamicPcdList.extend(list(HiiPcdArray))
1772 self._DynamicPcdList.extend(list(OtherPcdArray))
1773 allskuset = [(SkuName,Sku.SkuId) for pcd in self._DynamicPcdList for (SkuName,Sku) in pcd.SkuInfoList.items()]
1774 for pcd in self._DynamicPcdList:
1775 if len(pcd.SkuInfoList) == 1:
1776 for (SkuName,SkuId) in allskuset:
1777 if type(SkuId) in (str,unicode) and eval(SkuId) == 0 or SkuId == 0:
1778 continue
1779 pcd.SkuInfoList[SkuName] = copy.deepcopy(pcd.SkuInfoList['DEFAULT'])
1780 pcd.SkuInfoList[SkuName].SkuId = SkuId
1781 self.AllPcdList = self._NonDynamicPcdList + self._DynamicPcdList
1782
1783 def FixVpdOffset(self,VpdFile ):
1784 FvPath = os.path.join(self.BuildDir, "FV")
1785 if not os.path.exists(FvPath):
1786 try:
1787 os.makedirs(FvPath)
1788 except:
1789 EdkLogger.error("build", FILE_WRITE_FAILURE, "Fail to create FV folder under %s" % self.BuildDir)
1790
1791 VpdFilePath = os.path.join(FvPath, "%s.txt" % self.Platform.VpdToolGuid)
1792
1793 if VpdFile.Write(VpdFilePath):
1794 # retrieve BPDG tool's path from tool_def.txt according to VPD_TOOL_GUID defined in DSC file.
1795 BPDGToolName = None
1796 for ToolDef in self.ToolDefinition.values():
1797 if ToolDef.has_key("GUID") and ToolDef["GUID"] == self.Platform.VpdToolGuid:
1798 if not ToolDef.has_key("PATH"):
1799 EdkLogger.error("build", ATTRIBUTE_NOT_AVAILABLE, "PATH attribute was not provided for BPDG guid tool %s in tools_def.txt" % self.Platform.VpdToolGuid)
1800 BPDGToolName = ToolDef["PATH"]
1801 break
1802 # Call third party GUID BPDG tool.
1803 if BPDGToolName is not None:
1804 VpdInfoFile.CallExtenalBPDGTool(BPDGToolName, VpdFilePath)
1805 else:
1806 EdkLogger.error("Build", FILE_NOT_FOUND, "Fail to find third-party BPDG tool to process VPD PCDs. BPDG Guid tool need to be defined in tools_def.txt and VPD_TOOL_GUID need to be provided in DSC file.")
1807
1808 ## Return the platform build data object
1809 def _GetPlatform(self):
1810 if self._Platform is None:
1811 self._Platform = self.BuildDatabase[self.MetaFile, self.Arch, self.BuildTarget, self.ToolChain]
1812 return self._Platform
1813
1814 ## Return platform name
1815 def _GetName(self):
1816 return self.Platform.PlatformName
1817
1818 ## Return the meta file GUID
1819 def _GetGuid(self):
1820 return self.Platform.Guid
1821
1822 ## Return the platform version
1823 def _GetVersion(self):
1824 return self.Platform.Version
1825
1826 ## Return the FDF file name
1827 def _GetFdfFile(self):
1828 if self._FdfFile is None:
1829 if self.Workspace.FdfFile != "":
1830 self._FdfFile= mws.join(self.WorkspaceDir, self.Workspace.FdfFile)
1831 else:
1832 self._FdfFile = ''
1833 return self._FdfFile
1834
1835 ## Return the build output directory platform specifies
1836 def _GetOutputDir(self):
1837 return self.Platform.OutputDirectory
1838
1839 ## Return the directory to store all intermediate and final files built
1840 def _GetBuildDir(self):
1841 if self._BuildDir is None:
1842 if os.path.isabs(self.OutputDir):
1843 self._BuildDir = path.join(
1844 path.abspath(self.OutputDir),
1845 self.BuildTarget + "_" + self.ToolChain,
1846 )
1847 else:
1848 self._BuildDir = path.join(
1849 self.WorkspaceDir,
1850 self.OutputDir,
1851 self.BuildTarget + "_" + self.ToolChain,
1852 )
1853 GlobalData.gBuildDirectory = self._BuildDir
1854 return self._BuildDir
1855
1856 ## Return directory of platform makefile
1857 #
1858 # @retval string Makefile directory
1859 #
1860 def _GetMakeFileDir(self):
1861 if self._MakeFileDir is None:
1862 self._MakeFileDir = path.join(self.BuildDir, self.Arch)
1863 return self._MakeFileDir
1864
1865 ## Return build command string
1866 #
1867 # @retval string Build command string
1868 #
1869 def _GetBuildCommand(self):
1870 if self._BuildCommand is None:
1871 self._BuildCommand = []
1872 if "MAKE" in self.ToolDefinition and "PATH" in self.ToolDefinition["MAKE"]:
1873 self._BuildCommand += SplitOption(self.ToolDefinition["MAKE"]["PATH"])
1874 if "FLAGS" in self.ToolDefinition["MAKE"]:
1875 NewOption = self.ToolDefinition["MAKE"]["FLAGS"].strip()
1876 if NewOption != '':
1877 self._BuildCommand += SplitOption(NewOption)
1878 if "MAKE" in self.EdkIIBuildOption:
1879 if "FLAGS" in self.EdkIIBuildOption["MAKE"]:
1880 Flags = self.EdkIIBuildOption["MAKE"]["FLAGS"]
1881 if Flags.startswith('='):
1882 self._BuildCommand = [self._BuildCommand[0]] + [Flags[1:]]
1883 else:
1884 self._BuildCommand += [Flags]
1885 return self._BuildCommand
1886
1887 ## Get tool chain definition
1888 #
1889 # Get each tool defition for given tool chain from tools_def.txt and platform
1890 #
1891 def _GetToolDefinition(self):
1892 if self._ToolDefinitions is None:
1893 ToolDefinition = self.Workspace.ToolDef.ToolsDefTxtDictionary
1894 if TAB_TOD_DEFINES_COMMAND_TYPE not in self.Workspace.ToolDef.ToolsDefTxtDatabase:
1895 EdkLogger.error('build', RESOURCE_NOT_AVAILABLE, "No tools found in configuration",
1896 ExtraData="[%s]" % self.MetaFile)
1897 self._ToolDefinitions = {}
1898 DllPathList = set()
1899 for Def in ToolDefinition:
1900 Target, Tag, Arch, Tool, Attr = Def.split("_")
1901 if Target != self.BuildTarget or Tag != self.ToolChain or Arch != self.Arch:
1902 continue
1903
1904 Value = ToolDefinition[Def]
1905 # don't record the DLL
1906 if Attr == "DLL":
1907 DllPathList.add(Value)
1908 continue
1909
1910 if Tool not in self._ToolDefinitions:
1911 self._ToolDefinitions[Tool] = {}
1912 self._ToolDefinitions[Tool][Attr] = Value
1913
1914 ToolsDef = ''
1915 if GlobalData.gOptions.SilentMode and "MAKE" in self._ToolDefinitions:
1916 if "FLAGS" not in self._ToolDefinitions["MAKE"]:
1917 self._ToolDefinitions["MAKE"]["FLAGS"] = ""
1918 self._ToolDefinitions["MAKE"]["FLAGS"] += " -s"
1919 MakeFlags = ''
1920 for Tool in self._ToolDefinitions:
1921 for Attr in self._ToolDefinitions[Tool]:
1922 Value = self._ToolDefinitions[Tool][Attr]
1923 if Tool in self.BuildOption and Attr in self.BuildOption[Tool]:
1924 # check if override is indicated
1925 if self.BuildOption[Tool][Attr].startswith('='):
1926 Value = self.BuildOption[Tool][Attr][1:]
1927 else:
1928 if Attr != 'PATH':
1929 Value += " " + self.BuildOption[Tool][Attr]
1930 else:
1931 Value = self.BuildOption[Tool][Attr]
1932
1933 if Attr == "PATH":
1934 # Don't put MAKE definition in the file
1935 if Tool != "MAKE":
1936 ToolsDef += "%s = %s\n" % (Tool, Value)
1937 elif Attr != "DLL":
1938 # Don't put MAKE definition in the file
1939 if Tool == "MAKE":
1940 if Attr == "FLAGS":
1941 MakeFlags = Value
1942 else:
1943 ToolsDef += "%s_%s = %s\n" % (Tool, Attr, Value)
1944 ToolsDef += "\n"
1945
1946 SaveFileOnChange(self.ToolDefinitionFile, ToolsDef)
1947 for DllPath in DllPathList:
1948 os.environ["PATH"] = DllPath + os.pathsep + os.environ["PATH"]
1949 os.environ["MAKE_FLAGS"] = MakeFlags
1950
1951 return self._ToolDefinitions
1952
1953 ## Return the paths of tools
1954 def _GetToolDefFile(self):
1955 if self._ToolDefFile is None:
1956 self._ToolDefFile = os.path.join(self.MakeFileDir, "TOOLS_DEF." + self.Arch)
1957 return self._ToolDefFile
1958
1959 ## Retrieve the toolchain family of given toolchain tag. Default to 'MSFT'.
1960 def _GetToolChainFamily(self):
1961 if self._ToolChainFamily is None:
1962 ToolDefinition = self.Workspace.ToolDef.ToolsDefTxtDatabase
1963 if TAB_TOD_DEFINES_FAMILY not in ToolDefinition \
1964 or self.ToolChain not in ToolDefinition[TAB_TOD_DEFINES_FAMILY] \
1965 or not ToolDefinition[TAB_TOD_DEFINES_FAMILY][self.ToolChain]:
1966 EdkLogger.verbose("No tool chain family found in configuration for %s. Default to MSFT." \
1967 % self.ToolChain)
1968 self._ToolChainFamily = "MSFT"
1969 else:
1970 self._ToolChainFamily = ToolDefinition[TAB_TOD_DEFINES_FAMILY][self.ToolChain]
1971 return self._ToolChainFamily
1972
1973 def _GetBuildRuleFamily(self):
1974 if self._BuildRuleFamily is None:
1975 ToolDefinition = self.Workspace.ToolDef.ToolsDefTxtDatabase
1976 if TAB_TOD_DEFINES_BUILDRULEFAMILY not in ToolDefinition \
1977 or self.ToolChain not in ToolDefinition[TAB_TOD_DEFINES_BUILDRULEFAMILY] \
1978 or not ToolDefinition[TAB_TOD_DEFINES_BUILDRULEFAMILY][self.ToolChain]:
1979 EdkLogger.verbose("No tool chain family found in configuration for %s. Default to MSFT." \
1980 % self.ToolChain)
1981 self._BuildRuleFamily = "MSFT"
1982 else:
1983 self._BuildRuleFamily = ToolDefinition[TAB_TOD_DEFINES_BUILDRULEFAMILY][self.ToolChain]
1984 return self._BuildRuleFamily
1985
1986 ## Return the build options specific for all modules in this platform
1987 def _GetBuildOptions(self):
1988 if self._BuildOption is None:
1989 self._BuildOption = self._ExpandBuildOption(self.Platform.BuildOptions)
1990 return self._BuildOption
1991
1992 ## Return the build options specific for EDK modules in this platform
1993 def _GetEdkBuildOptions(self):
1994 if self._EdkBuildOption is None:
1995 self._EdkBuildOption = self._ExpandBuildOption(self.Platform.BuildOptions, EDK_NAME)
1996 return self._EdkBuildOption
1997
1998 ## Return the build options specific for EDKII modules in this platform
1999 def _GetEdkIIBuildOptions(self):
2000 if self._EdkIIBuildOption is None:
2001 self._EdkIIBuildOption = self._ExpandBuildOption(self.Platform.BuildOptions, EDKII_NAME)
2002 return self._EdkIIBuildOption
2003
2004 ## Parse build_rule.txt in Conf Directory.
2005 #
2006 # @retval BuildRule object
2007 #
2008 def _GetBuildRule(self):
2009 if self._BuildRule is None:
2010 BuildRuleFile = None
2011 if TAB_TAT_DEFINES_BUILD_RULE_CONF in self.Workspace.TargetTxt.TargetTxtDictionary:
2012 BuildRuleFile = self.Workspace.TargetTxt.TargetTxtDictionary[TAB_TAT_DEFINES_BUILD_RULE_CONF]
2013 if BuildRuleFile in [None, '']:
2014 BuildRuleFile = gDefaultBuildRuleFile
2015 self._BuildRule = BuildRule(BuildRuleFile)
2016 if self._BuildRule._FileVersion == "":
2017 self._BuildRule._FileVersion = AutoGenReqBuildRuleVerNum
2018 else:
2019 if self._BuildRule._FileVersion < AutoGenReqBuildRuleVerNum :
2020 # If Build Rule's version is less than the version number required by the tools, halting the build.
2021 EdkLogger.error("build", AUTOGEN_ERROR,
2022 ExtraData="The version number [%s] of build_rule.txt is less than the version number required by the AutoGen.(the minimum required version number is [%s])"\
2023 % (self._BuildRule._FileVersion, AutoGenReqBuildRuleVerNum))
2024
2025 return self._BuildRule
2026
2027 ## Summarize the packages used by modules in this platform
2028 def _GetPackageList(self):
2029 if self._PackageList is None:
2030 self._PackageList = set()
2031 for La in self.LibraryAutoGenList:
2032 self._PackageList.update(La.DependentPackageList)
2033 for Ma in self.ModuleAutoGenList:
2034 self._PackageList.update(Ma.DependentPackageList)
2035 #Collect package set information from INF of FDF
2036 PkgSet = set()
2037 for ModuleFile in self._AsBuildModuleList:
2038 if ModuleFile in self.Platform.Modules:
2039 continue
2040 ModuleData = self.BuildDatabase[ModuleFile, self.Arch, self.BuildTarget, self.ToolChain]
2041 PkgSet.update(ModuleData.Packages)
2042 self._PackageList = list(self._PackageList) + list (PkgSet)
2043 return self._PackageList
2044
2045 def _GetNonDynamicPcdDict(self):
2046 if self._NonDynamicPcdDict:
2047 return self._NonDynamicPcdDict
2048 for Pcd in self.NonDynamicPcdList:
2049 self._NonDynamicPcdDict[(Pcd.TokenCName,Pcd.TokenSpaceGuidCName)] = Pcd
2050 return self._NonDynamicPcdDict
2051
2052 ## Get list of non-dynamic PCDs
2053 def _GetNonDynamicPcdList(self):
2054 if self._NonDynamicPcdList is None:
2055 self.CollectPlatformDynamicPcds()
2056 return self._NonDynamicPcdList
2057
2058 ## Get list of dynamic PCDs
2059 def _GetDynamicPcdList(self):
2060 if self._DynamicPcdList is None:
2061 self.CollectPlatformDynamicPcds()
2062 return self._DynamicPcdList
2063
2064 ## Generate Token Number for all PCD
2065 def _GetPcdTokenNumbers(self):
2066 if self._PcdTokenNumber is None:
2067 self._PcdTokenNumber = OrderedDict()
2068 TokenNumber = 1
2069 #
2070 # Make the Dynamic and DynamicEx PCD use within different TokenNumber area.
2071 # Such as:
2072 #
2073 # Dynamic PCD:
2074 # TokenNumber 0 ~ 10
2075 # DynamicEx PCD:
2076 # TokeNumber 11 ~ 20
2077 #
2078 for Pcd in self.DynamicPcdList:
2079 if Pcd.Phase == "PEI":
2080 if Pcd.Type in ["Dynamic", "DynamicDefault", "DynamicVpd", "DynamicHii"]:
2081 EdkLogger.debug(EdkLogger.DEBUG_5, "%s %s (%s) -> %d" % (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Pcd.Phase, TokenNumber))
2082 self._PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName] = TokenNumber
2083 TokenNumber += 1
2084
2085 for Pcd in self.DynamicPcdList:
2086 if Pcd.Phase == "PEI":
2087 if Pcd.Type in ["DynamicEx", "DynamicExDefault", "DynamicExVpd", "DynamicExHii"]:
2088 EdkLogger.debug(EdkLogger.DEBUG_5, "%s %s (%s) -> %d" % (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Pcd.Phase, TokenNumber))
2089 self._PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName] = TokenNumber
2090 TokenNumber += 1
2091
2092 for Pcd in self.DynamicPcdList:
2093 if Pcd.Phase == "DXE":
2094 if Pcd.Type in ["Dynamic", "DynamicDefault", "DynamicVpd", "DynamicHii"]:
2095 EdkLogger.debug(EdkLogger.DEBUG_5, "%s %s (%s) -> %d" % (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Pcd.Phase, TokenNumber))
2096 self._PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName] = TokenNumber
2097 TokenNumber += 1
2098
2099 for Pcd in self.DynamicPcdList:
2100 if Pcd.Phase == "DXE":
2101 if Pcd.Type in ["DynamicEx", "DynamicExDefault", "DynamicExVpd", "DynamicExHii"]:
2102 EdkLogger.debug(EdkLogger.DEBUG_5, "%s %s (%s) -> %d" % (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Pcd.Phase, TokenNumber))
2103 self._PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName] = TokenNumber
2104 TokenNumber += 1
2105
2106 for Pcd in self.NonDynamicPcdList:
2107 self._PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName] = TokenNumber
2108 TokenNumber += 1
2109 return self._PcdTokenNumber
2110
2111 ## Summarize ModuleAutoGen objects of all modules/libraries to be built for this platform
2112 def _GetAutoGenObjectList(self):
2113 self._ModuleAutoGenList = []
2114 self._LibraryAutoGenList = []
2115 for ModuleFile in self.Platform.Modules:
2116 Ma = ModuleAutoGen(
2117 self.Workspace,
2118 ModuleFile,
2119 self.BuildTarget,
2120 self.ToolChain,
2121 self.Arch,
2122 self.MetaFile
2123 )
2124 if Ma not in self._ModuleAutoGenList:
2125 self._ModuleAutoGenList.append(Ma)
2126 for La in Ma.LibraryAutoGenList:
2127 if La not in self._LibraryAutoGenList:
2128 self._LibraryAutoGenList.append(La)
2129 if Ma not in La._ReferenceModules:
2130 La._ReferenceModules.append(Ma)
2131
2132 ## Summarize ModuleAutoGen objects of all modules to be built for this platform
2133 def _GetModuleAutoGenList(self):
2134 if self._ModuleAutoGenList is None:
2135 self._GetAutoGenObjectList()
2136 return self._ModuleAutoGenList
2137
2138 ## Summarize ModuleAutoGen objects of all libraries to be built for this platform
2139 def _GetLibraryAutoGenList(self):
2140 if self._LibraryAutoGenList is None:
2141 self._GetAutoGenObjectList()
2142 return self._LibraryAutoGenList
2143
2144 ## Test if a module is supported by the platform
2145 #
2146 # An error will be raised directly if the module or its arch is not supported
2147 # by the platform or current configuration
2148 #
2149 def ValidModule(self, Module):
2150 return Module in self.Platform.Modules or Module in self.Platform.LibraryInstances \
2151 or Module in self._AsBuildModuleList
2152
2153 ## Resolve the library classes in a module to library instances
2154 #
2155 # This method will not only resolve library classes but also sort the library
2156 # instances according to the dependency-ship.
2157 #
2158 # @param Module The module from which the library classes will be resolved
2159 #
2160 # @retval library_list List of library instances sorted
2161 #
2162 def ApplyLibraryInstance(self, Module):
2163 # Cover the case that the binary INF file is list in the FDF file but not DSC file, return empty list directly
2164 if str(Module) not in self.Platform.Modules:
2165 return []
2166
2167 ModuleType = Module.ModuleType
2168
2169 # for overridding library instances with module specific setting
2170 PlatformModule = self.Platform.Modules[str(Module)]
2171
2172 # add forced library instances (specified under LibraryClasses sections)
2173 #
2174 # If a module has a MODULE_TYPE of USER_DEFINED,
2175 # do not link in NULL library class instances from the global [LibraryClasses.*] sections.
2176 #
2177 if Module.ModuleType != SUP_MODULE_USER_DEFINED:
2178 for LibraryClass in self.Platform.LibraryClasses.GetKeys():
2179 if LibraryClass.startswith("NULL") and self.Platform.LibraryClasses[LibraryClass, Module.ModuleType]:
2180 Module.LibraryClasses[LibraryClass] = self.Platform.LibraryClasses[LibraryClass, Module.ModuleType]
2181
2182 # add forced library instances (specified in module overrides)
2183 for LibraryClass in PlatformModule.LibraryClasses:
2184 if LibraryClass.startswith("NULL"):
2185 Module.LibraryClasses[LibraryClass] = PlatformModule.LibraryClasses[LibraryClass]
2186
2187 # EdkII module
2188 LibraryConsumerList = [Module]
2189 Constructor = []
2190 ConsumedByList = OrderedDict()
2191 LibraryInstance = OrderedDict()
2192
2193 EdkLogger.verbose("")
2194 EdkLogger.verbose("Library instances of module [%s] [%s]:" % (str(Module), self.Arch))
2195 while len(LibraryConsumerList) > 0:
2196 M = LibraryConsumerList.pop()
2197 for LibraryClassName in M.LibraryClasses:
2198 if LibraryClassName not in LibraryInstance:
2199 # override library instance for this module
2200 if LibraryClassName in PlatformModule.LibraryClasses:
2201 LibraryPath = PlatformModule.LibraryClasses[LibraryClassName]
2202 else:
2203 LibraryPath = self.Platform.LibraryClasses[LibraryClassName, ModuleType]
2204 if LibraryPath is None or LibraryPath == "":
2205 LibraryPath = M.LibraryClasses[LibraryClassName]
2206 if LibraryPath is None or LibraryPath == "":
2207 EdkLogger.error("build", RESOURCE_NOT_AVAILABLE,
2208 "Instance of library class [%s] is not found" % LibraryClassName,
2209 File=self.MetaFile,
2210 ExtraData="in [%s] [%s]\n\tconsumed by module [%s]" % (str(M), self.Arch, str(Module)))
2211
2212 LibraryModule = self.BuildDatabase[LibraryPath, self.Arch, self.BuildTarget, self.ToolChain]
2213 # for those forced library instance (NULL library), add a fake library class
2214 if LibraryClassName.startswith("NULL"):
2215 LibraryModule.LibraryClass.append(LibraryClassObject(LibraryClassName, [ModuleType]))
2216 elif LibraryModule.LibraryClass is None \
2217 or len(LibraryModule.LibraryClass) == 0 \
2218 or (ModuleType != 'USER_DEFINED'
2219 and ModuleType not in LibraryModule.LibraryClass[0].SupModList):
2220 # only USER_DEFINED can link against any library instance despite of its SupModList
2221 EdkLogger.error("build", OPTION_MISSING,
2222 "Module type [%s] is not supported by library instance [%s]" \
2223 % (ModuleType, LibraryPath), File=self.MetaFile,
2224 ExtraData="consumed by [%s]" % str(Module))
2225
2226 LibraryInstance[LibraryClassName] = LibraryModule
2227 LibraryConsumerList.append(LibraryModule)
2228 EdkLogger.verbose("\t" + str(LibraryClassName) + " : " + str(LibraryModule))
2229 else:
2230 LibraryModule = LibraryInstance[LibraryClassName]
2231
2232 if LibraryModule is None:
2233 continue
2234
2235 if LibraryModule.ConstructorList != [] and LibraryModule not in Constructor:
2236 Constructor.append(LibraryModule)
2237
2238 if LibraryModule not in ConsumedByList:
2239 ConsumedByList[LibraryModule] = []
2240 # don't add current module itself to consumer list
2241 if M != Module:
2242 if M in ConsumedByList[LibraryModule]:
2243 continue
2244 ConsumedByList[LibraryModule].append(M)
2245 #
2246 # Initialize the sorted output list to the empty set
2247 #
2248 SortedLibraryList = []
2249 #
2250 # Q <- Set of all nodes with no incoming edges
2251 #
2252 LibraryList = [] #LibraryInstance.values()
2253 Q = []
2254 for LibraryClassName in LibraryInstance:
2255 M = LibraryInstance[LibraryClassName]
2256 LibraryList.append(M)
2257 if ConsumedByList[M] == []:
2258 Q.append(M)
2259
2260 #
2261 # start the DAG algorithm
2262 #
2263 while True:
2264 EdgeRemoved = True
2265 while Q == [] and EdgeRemoved:
2266 EdgeRemoved = False
2267 # for each node Item with a Constructor
2268 for Item in LibraryList:
2269 if Item not in Constructor:
2270 continue
2271 # for each Node without a constructor with an edge e from Item to Node
2272 for Node in ConsumedByList[Item]:
2273 if Node in Constructor:
2274 continue
2275 # remove edge e from the graph if Node has no constructor
2276 ConsumedByList[Item].remove(Node)
2277 EdgeRemoved = True
2278 if ConsumedByList[Item] == []:
2279 # insert Item into Q
2280 Q.insert(0, Item)
2281 break
2282 if Q != []:
2283 break
2284 # DAG is done if there's no more incoming edge for all nodes
2285 if Q == []:
2286 break
2287
2288 # remove node from Q
2289 Node = Q.pop()
2290 # output Node
2291 SortedLibraryList.append(Node)
2292
2293 # for each node Item with an edge e from Node to Item do
2294 for Item in LibraryList:
2295 if Node not in ConsumedByList[Item]:
2296 continue
2297 # remove edge e from the graph
2298 ConsumedByList[Item].remove(Node)
2299
2300 if ConsumedByList[Item] != []:
2301 continue
2302 # insert Item into Q, if Item has no other incoming edges
2303 Q.insert(0, Item)
2304
2305 #
2306 # if any remaining node Item in the graph has a constructor and an incoming edge, then the graph has a cycle
2307 #
2308 for Item in LibraryList:
2309 if ConsumedByList[Item] != [] and Item in Constructor and len(Constructor) > 1:
2310 ErrorMessage = "\tconsumed by " + "\n\tconsumed by ".join([str(L) for L in ConsumedByList[Item]])
2311 EdkLogger.error("build", BUILD_ERROR, 'Library [%s] with constructors has a cycle' % str(Item),
2312 ExtraData=ErrorMessage, File=self.MetaFile)
2313 if Item not in SortedLibraryList:
2314 SortedLibraryList.append(Item)
2315
2316 #
2317 # Build the list of constructor and destructir names
2318 # The DAG Topo sort produces the destructor order, so the list of constructors must generated in the reverse order
2319 #
2320 SortedLibraryList.reverse()
2321 return SortedLibraryList
2322
2323
2324 ## Override PCD setting (type, value, ...)
2325 #
2326 # @param ToPcd The PCD to be overrided
2327 # @param FromPcd The PCD overrideing from
2328 #
2329 def _OverridePcd(self, ToPcd, FromPcd, Module=""):
2330 #
2331 # in case there's PCDs coming from FDF file, which have no type given.
2332 # at this point, ToPcd.Type has the type found from dependent
2333 # package
2334 #
2335 TokenCName = ToPcd.TokenCName
2336 for PcdItem in GlobalData.MixedPcd:
2337 if (ToPcd.TokenCName, ToPcd.TokenSpaceGuidCName) in GlobalData.MixedPcd[PcdItem]:
2338 TokenCName = PcdItem[0]
2339 break
2340 if FromPcd is not None:
2341 if ToPcd.Pending and FromPcd.Type not in [None, '']:
2342 ToPcd.Type = FromPcd.Type
2343 elif (ToPcd.Type not in [None, '']) and (FromPcd.Type not in [None, ''])\
2344 and (ToPcd.Type != FromPcd.Type) and (ToPcd.Type in FromPcd.Type):
2345 if ToPcd.Type.strip() == "DynamicEx":
2346 ToPcd.Type = FromPcd.Type
2347 elif ToPcd.Type not in [None, ''] and FromPcd.Type not in [None, ''] \
2348 and ToPcd.Type != FromPcd.Type:
2349 EdkLogger.error("build", OPTION_CONFLICT, "Mismatched PCD type",
2350 ExtraData="%s.%s is defined as [%s] in module %s, but as [%s] in platform."\
2351 % (ToPcd.TokenSpaceGuidCName, TokenCName,
2352 ToPcd.Type, Module, FromPcd.Type),
2353 File=self.MetaFile)
2354
2355 if FromPcd.MaxDatumSize:
2356 ToPcd.MaxDatumSize = FromPcd.MaxDatumSize
2357 if FromPcd.DefaultValue:
2358 ToPcd.DefaultValue = FromPcd.DefaultValue
2359 if FromPcd.TokenValue:
2360 ToPcd.TokenValue = FromPcd.TokenValue
2361 if FromPcd.DatumType:
2362 ToPcd.DatumType = FromPcd.DatumType
2363 if FromPcd.SkuInfoList:
2364 ToPcd.SkuInfoList = FromPcd.SkuInfoList
2365 # Add Flexible PCD format parse
2366 if ToPcd.DefaultValue:
2367 try:
2368 ToPcd.DefaultValue = ValueExpressionEx(ToPcd.DefaultValue, ToPcd.DatumType, self._GuidDict)(True)
2369 except BadExpression, Value:
2370 EdkLogger.error('Parser', FORMAT_INVALID, 'PCD [%s.%s] Value "%s", %s' %(ToPcd.TokenSpaceGuidCName, ToPcd.TokenCName, ToPcd.DefaultValue, Value),
2371 File=self.MetaFile)
2372
2373 # check the validation of datum
2374 IsValid, Cause = CheckPcdDatum(ToPcd.DatumType, ToPcd.DefaultValue)
2375 if not IsValid:
2376 EdkLogger.error('build', FORMAT_INVALID, Cause, File=self.MetaFile,
2377 ExtraData="%s.%s" % (ToPcd.TokenSpaceGuidCName, TokenCName))
2378 ToPcd.validateranges = FromPcd.validateranges
2379 ToPcd.validlists = FromPcd.validlists
2380 ToPcd.expressions = FromPcd.expressions
2381
2382 if FromPcd is not None and ToPcd.DatumType == "VOID*" and ToPcd.MaxDatumSize in ['', None]:
2383 EdkLogger.debug(EdkLogger.DEBUG_9, "No MaxDatumSize specified for PCD %s.%s" \
2384 % (ToPcd.TokenSpaceGuidCName, TokenCName))
2385 Value = ToPcd.DefaultValue
2386 if Value in [None, '']:
2387 ToPcd.MaxDatumSize = '1'
2388 elif Value[0] == 'L':
2389 ToPcd.MaxDatumSize = str((len(Value) - 2) * 2)
2390 elif Value[0] == '{':
2391 ToPcd.MaxDatumSize = str(len(Value.split(',')))
2392 else:
2393 ToPcd.MaxDatumSize = str(len(Value) - 1)
2394
2395 # apply default SKU for dynamic PCDS if specified one is not available
2396 if (ToPcd.Type in PCD_DYNAMIC_TYPE_LIST or ToPcd.Type in PCD_DYNAMIC_EX_TYPE_LIST) \
2397 and ToPcd.SkuInfoList in [None, {}, '']:
2398 if self.Platform.SkuName in self.Platform.SkuIds:
2399 SkuName = self.Platform.SkuName
2400 else:
2401 SkuName = 'DEFAULT'
2402 ToPcd.SkuInfoList = {
2403 SkuName : SkuInfoClass(SkuName, self.Platform.SkuIds[SkuName][0], '', '', '', '', '', ToPcd.DefaultValue)
2404 }
2405
2406 ## Apply PCD setting defined platform to a module
2407 #
2408 # @param Module The module from which the PCD setting will be overrided
2409 #
2410 # @retval PCD_list The list PCDs with settings from platform
2411 #
2412 def ApplyPcdSetting(self, Module, Pcds):
2413 # for each PCD in module
2414 for Name, Guid in Pcds:
2415 PcdInModule = Pcds[Name, Guid]
2416 # find out the PCD setting in platform
2417 if (Name, Guid) in self.Platform.Pcds:
2418 PcdInPlatform = self.Platform.Pcds[Name, Guid]
2419 else:
2420 PcdInPlatform = None
2421 # then override the settings if any
2422 self._OverridePcd(PcdInModule, PcdInPlatform, Module)
2423 # resolve the VariableGuid value
2424 for SkuId in PcdInModule.SkuInfoList:
2425 Sku = PcdInModule.SkuInfoList[SkuId]
2426 if Sku.VariableGuid == '': continue
2427 Sku.VariableGuidValue = GuidValue(Sku.VariableGuid, self.PackageList, self.MetaFile.Path)
2428 if Sku.VariableGuidValue is None:
2429 PackageList = "\n\t".join([str(P) for P in self.PackageList])
2430 EdkLogger.error(
2431 'build',
2432 RESOURCE_NOT_AVAILABLE,
2433 "Value of GUID [%s] is not found in" % Sku.VariableGuid,
2434 ExtraData=PackageList + "\n\t(used with %s.%s from module %s)" \
2435 % (Guid, Name, str(Module)),
2436 File=self.MetaFile
2437 )
2438
2439 # override PCD settings with module specific setting
2440 if Module in self.Platform.Modules:
2441 PlatformModule = self.Platform.Modules[str(Module)]
2442 for Key in PlatformModule.Pcds:
2443 Flag = False
2444 if Key in Pcds:
2445 ToPcd = Pcds[Key]
2446 Flag = True
2447 elif Key in GlobalData.MixedPcd:
2448 for PcdItem in GlobalData.MixedPcd[Key]:
2449 if PcdItem in Pcds:
2450 ToPcd = Pcds[PcdItem]
2451 Flag = True
2452 break
2453 if Flag:
2454 self._OverridePcd(ToPcd, PlatformModule.Pcds[Key], Module)
2455 # use PCD value to calculate the MaxDatumSize when it is not specified
2456 for Name, Guid in Pcds:
2457 Pcd = Pcds[Name, Guid]
2458 if Pcd.DatumType == "VOID*" and Pcd.MaxDatumSize in ['', None]:
2459 Value = Pcd.DefaultValue
2460 if Value in [None, '']:
2461 Pcd.MaxDatumSize = '1'
2462 elif Value[0] == 'L':
2463 Pcd.MaxDatumSize = str((len(Value) - 2) * 2)
2464 elif Value[0] == '{':
2465 Pcd.MaxDatumSize = str(len(Value.split(',')))
2466 else:
2467 Pcd.MaxDatumSize = str(len(Value) - 1)
2468 return Pcds.values()
2469
2470 ## Resolve library names to library modules
2471 #
2472 # (for Edk.x modules)
2473 #
2474 # @param Module The module from which the library names will be resolved
2475 #
2476 # @retval library_list The list of library modules
2477 #
2478 def ResolveLibraryReference(self, Module):
2479 EdkLogger.verbose("")
2480 EdkLogger.verbose("Library instances of module [%s] [%s]:" % (str(Module), self.Arch))
2481 LibraryConsumerList = [Module]
2482
2483 # "CompilerStub" is a must for Edk modules
2484 if Module.Libraries:
2485 Module.Libraries.append("CompilerStub")
2486 LibraryList = []
2487 while len(LibraryConsumerList) > 0:
2488 M = LibraryConsumerList.pop()
2489 for LibraryName in M.Libraries:
2490 Library = self.Platform.LibraryClasses[LibraryName, ':dummy:']
2491 if Library is None:
2492 for Key in self.Platform.LibraryClasses.data.keys():
2493 if LibraryName.upper() == Key.upper():
2494 Library = self.Platform.LibraryClasses[Key, ':dummy:']
2495 break
2496 if Library is None:
2497 EdkLogger.warn("build", "Library [%s] is not found" % LibraryName, File=str(M),
2498 ExtraData="\t%s [%s]" % (str(Module), self.Arch))
2499 continue
2500
2501 if Library not in LibraryList:
2502 LibraryList.append(Library)
2503 LibraryConsumerList.append(Library)
2504 EdkLogger.verbose("\t" + LibraryName + " : " + str(Library) + ' ' + str(type(Library)))
2505 return LibraryList
2506
2507 ## Calculate the priority value of the build option
2508 #
2509 # @param Key Build option definition contain: TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
2510 #
2511 # @retval Value Priority value based on the priority list.
2512 #
2513 def CalculatePriorityValue(self, Key):
2514 Target, ToolChain, Arch, CommandType, Attr = Key.split('_')
2515 PriorityValue = 0x11111
2516 if Target == "*":
2517 PriorityValue &= 0x01111
2518 if ToolChain == "*":
2519 PriorityValue &= 0x10111
2520 if Arch == "*":
2521 PriorityValue &= 0x11011
2522 if CommandType == "*":
2523 PriorityValue &= 0x11101
2524 if Attr == "*":
2525 PriorityValue &= 0x11110
2526
2527 return self.PrioList["0x%0.5x" % PriorityValue]
2528
2529
2530 ## Expand * in build option key
2531 #
2532 # @param Options Options to be expanded
2533 #
2534 # @retval options Options expanded
2535 #
2536 def _ExpandBuildOption(self, Options, ModuleStyle=None):
2537 BuildOptions = {}
2538 FamilyMatch = False
2539 FamilyIsNull = True
2540
2541 OverrideList = {}
2542 #
2543 # Construct a list contain the build options which need override.
2544 #
2545 for Key in Options:
2546 #
2547 # Key[0] -- tool family
2548 # Key[1] -- TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
2549 #
2550 if (Key[0] == self.BuildRuleFamily and
2551 (ModuleStyle is None or len(Key) < 3 or (len(Key) > 2 and Key[2] == ModuleStyle))):
2552 Target, ToolChain, Arch, CommandType, Attr = Key[1].split('_')
2553 if Target == self.BuildTarget or Target == "*":
2554 if ToolChain == self.ToolChain or ToolChain == "*":
2555 if Arch == self.Arch or Arch == "*":
2556 if Options[Key].startswith("="):
2557 if OverrideList.get(Key[1]) is not None:
2558 OverrideList.pop(Key[1])
2559 OverrideList[Key[1]] = Options[Key]
2560
2561 #
2562 # Use the highest priority value.
2563 #
2564 if (len(OverrideList) >= 2):
2565 KeyList = OverrideList.keys()
2566 for Index in range(len(KeyList)):
2567 NowKey = KeyList[Index]
2568 Target1, ToolChain1, Arch1, CommandType1, Attr1 = NowKey.split("_")
2569 for Index1 in range(len(KeyList) - Index - 1):
2570 NextKey = KeyList[Index1 + Index + 1]
2571 #
2572 # Compare two Key, if one is included by another, choose the higher priority one
2573 #
2574 Target2, ToolChain2, Arch2, CommandType2, Attr2 = NextKey.split("_")
2575 if Target1 == Target2 or Target1 == "*" or Target2 == "*":
2576 if ToolChain1 == ToolChain2 or ToolChain1 == "*" or ToolChain2 == "*":
2577 if Arch1 == Arch2 or Arch1 == "*" or Arch2 == "*":
2578 if CommandType1 == CommandType2 or CommandType1 == "*" or CommandType2 == "*":
2579 if Attr1 == Attr2 or Attr1 == "*" or Attr2 == "*":
2580 if self.CalculatePriorityValue(NowKey) > self.CalculatePriorityValue(NextKey):
2581 if Options.get((self.BuildRuleFamily, NextKey)) is not None:
2582 Options.pop((self.BuildRuleFamily, NextKey))
2583 else:
2584 if Options.get((self.BuildRuleFamily, NowKey)) is not None:
2585 Options.pop((self.BuildRuleFamily, NowKey))
2586
2587 for Key in Options:
2588 if ModuleStyle is not None and len (Key) > 2:
2589 # Check Module style is EDK or EDKII.
2590 # Only append build option for the matched style module.
2591 if ModuleStyle == EDK_NAME and Key[2] != EDK_NAME:
2592 continue
2593 elif ModuleStyle == EDKII_NAME and Key[2] != EDKII_NAME:
2594 continue
2595 Family = Key[0]
2596 Target, Tag, Arch, Tool, Attr = Key[1].split("_")
2597 # if tool chain family doesn't match, skip it
2598 if Tool in self.ToolDefinition and Family != "":
2599 FamilyIsNull = False
2600 if self.ToolDefinition[Tool].get(TAB_TOD_DEFINES_BUILDRULEFAMILY, "") != "":
2601 if Family != self.ToolDefinition[Tool][TAB_TOD_DEFINES_BUILDRULEFAMILY]:
2602 continue
2603 elif Family != self.ToolDefinition[Tool][TAB_TOD_DEFINES_FAMILY]:
2604 continue
2605 FamilyMatch = True
2606 # expand any wildcard
2607 if Target == "*" or Target == self.BuildTarget:
2608 if Tag == "*" or Tag == self.ToolChain:
2609 if Arch == "*" or Arch == self.Arch:
2610 if Tool not in BuildOptions:
2611 BuildOptions[Tool] = {}
2612 if Attr != "FLAGS" or Attr not in BuildOptions[Tool] or Options[Key].startswith('='):
2613 BuildOptions[Tool][Attr] = Options[Key]
2614 else:
2615 # append options for the same tool except PATH
2616 if Attr != 'PATH':
2617 BuildOptions[Tool][Attr] += " " + Options[Key]
2618 else:
2619 BuildOptions[Tool][Attr] = Options[Key]
2620 # Build Option Family has been checked, which need't to be checked again for family.
2621 if FamilyMatch or FamilyIsNull:
2622 return BuildOptions
2623
2624 for Key in Options:
2625 if ModuleStyle is not None and len (Key) > 2:
2626 # Check Module style is EDK or EDKII.
2627 # Only append build option for the matched style module.
2628 if ModuleStyle == EDK_NAME and Key[2] != EDK_NAME:
2629 continue
2630 elif ModuleStyle == EDKII_NAME and Key[2] != EDKII_NAME:
2631 continue
2632 Family = Key[0]
2633 Target, Tag, Arch, Tool, Attr = Key[1].split("_")
2634 # if tool chain family doesn't match, skip it
2635 if Tool not in self.ToolDefinition or Family == "":
2636 continue
2637 # option has been added before
2638 if Family != self.ToolDefinition[Tool][TAB_TOD_DEFINES_FAMILY]:
2639 continue
2640
2641 # expand any wildcard
2642 if Target == "*" or Target == self.BuildTarget:
2643 if Tag == "*" or Tag == self.ToolChain:
2644 if Arch == "*" or Arch == self.Arch:
2645 if Tool not in BuildOptions:
2646 BuildOptions[Tool] = {}
2647 if Attr != "FLAGS" or Attr not in BuildOptions[Tool] or Options[Key].startswith('='):
2648 BuildOptions[Tool][Attr] = Options[Key]
2649 else:
2650 # append options for the same tool except PATH
2651 if Attr != 'PATH':
2652 BuildOptions[Tool][Attr] += " " + Options[Key]
2653 else:
2654 BuildOptions[Tool][Attr] = Options[Key]
2655 return BuildOptions
2656
2657 ## Append build options in platform to a module
2658 #
2659 # @param Module The module to which the build options will be appened
2660 #
2661 # @retval options The options appended with build options in platform
2662 #
2663 def ApplyBuildOption(self, Module):
2664 # Get the different options for the different style module
2665 if Module.AutoGenVersion < 0x00010005:
2666 PlatformOptions = self.EdkBuildOption
2667 ModuleTypeOptions = self.Platform.GetBuildOptionsByModuleType(EDK_NAME, Module.ModuleType)
2668 else:
2669 PlatformOptions = self.EdkIIBuildOption
2670 ModuleTypeOptions = self.Platform.GetBuildOptionsByModuleType(EDKII_NAME, Module.ModuleType)
2671 ModuleTypeOptions = self._ExpandBuildOption(ModuleTypeOptions)
2672 ModuleOptions = self._ExpandBuildOption(Module.BuildOptions)
2673 if Module in self.Platform.Modules:
2674 PlatformModule = self.Platform.Modules[str(Module)]
2675 PlatformModuleOptions = self._ExpandBuildOption(PlatformModule.BuildOptions)
2676 else:
2677 PlatformModuleOptions = {}
2678
2679 BuildRuleOrder = None
2680 for Options in [self.ToolDefinition, ModuleOptions, PlatformOptions, ModuleTypeOptions, PlatformModuleOptions]:
2681 for Tool in Options:
2682 for Attr in Options[Tool]:
2683 if Attr == TAB_TOD_DEFINES_BUILDRULEORDER:
2684 BuildRuleOrder = Options[Tool][Attr]
2685
2686 AllTools = set(ModuleOptions.keys() + PlatformOptions.keys() +
2687 PlatformModuleOptions.keys() + ModuleTypeOptions.keys() +
2688 self.ToolDefinition.keys())
2689 BuildOptions = {}
2690 for Tool in AllTools:
2691 if Tool not in BuildOptions:
2692 BuildOptions[Tool] = {}
2693
2694 for Options in [self.ToolDefinition, ModuleOptions, PlatformOptions, ModuleTypeOptions, PlatformModuleOptions]:
2695 if Tool not in Options:
2696 continue
2697 for Attr in Options[Tool]:
2698 Value = Options[Tool][Attr]
2699 #
2700 # Do not generate it in Makefile
2701 #
2702 if Attr == TAB_TOD_DEFINES_BUILDRULEORDER:
2703 continue
2704 if Attr not in BuildOptions[Tool]:
2705 BuildOptions[Tool][Attr] = ""
2706 # check if override is indicated
2707 if Value.startswith('='):
2708 ToolPath = Value[1:]
2709 ToolPath = mws.handleWsMacro(ToolPath)
2710 BuildOptions[Tool][Attr] = ToolPath
2711 else:
2712 Value = mws.handleWsMacro(Value)
2713 if Attr != 'PATH':
2714 BuildOptions[Tool][Attr] += " " + Value
2715 else:
2716 BuildOptions[Tool][Attr] = Value
2717 if Module.AutoGenVersion < 0x00010005 and self.Workspace.UniFlag is not None:
2718 #
2719 # Override UNI flag only for EDK module.
2720 #
2721 if 'BUILD' not in BuildOptions:
2722 BuildOptions['BUILD'] = {}
2723 BuildOptions['BUILD']['FLAGS'] = self.Workspace.UniFlag
2724 return BuildOptions, BuildRuleOrder
2725
2726 Platform = property(_GetPlatform)
2727 Name = property(_GetName)
2728 Guid = property(_GetGuid)
2729 Version = property(_GetVersion)
2730
2731 OutputDir = property(_GetOutputDir)
2732 BuildDir = property(_GetBuildDir)
2733 MakeFileDir = property(_GetMakeFileDir)
2734 FdfFile = property(_GetFdfFile)
2735
2736 PcdTokenNumber = property(_GetPcdTokenNumbers) # (TokenCName, TokenSpaceGuidCName) : GeneratedTokenNumber
2737 DynamicPcdList = property(_GetDynamicPcdList) # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
2738 NonDynamicPcdList = property(_GetNonDynamicPcdList) # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
2739 NonDynamicPcdDict = property(_GetNonDynamicPcdDict)
2740 PackageList = property(_GetPackageList)
2741
2742 ToolDefinition = property(_GetToolDefinition) # toolcode : tool path
2743 ToolDefinitionFile = property(_GetToolDefFile) # toolcode : lib path
2744 ToolChainFamily = property(_GetToolChainFamily)
2745 BuildRuleFamily = property(_GetBuildRuleFamily)
2746 BuildOption = property(_GetBuildOptions) # toolcode : option
2747 EdkBuildOption = property(_GetEdkBuildOptions) # edktoolcode : option
2748 EdkIIBuildOption = property(_GetEdkIIBuildOptions) # edkiitoolcode : option
2749
2750 BuildCommand = property(_GetBuildCommand)
2751 BuildRule = property(_GetBuildRule)
2752 ModuleAutoGenList = property(_GetModuleAutoGenList)
2753 LibraryAutoGenList = property(_GetLibraryAutoGenList)
2754 GenFdsCommand = property(_GenFdsCommand)
2755
2756 ## ModuleAutoGen class
2757 #
2758 # This class encapsules the AutoGen behaviors for the build tools. In addition to
2759 # the generation of AutoGen.h and AutoGen.c, it will generate *.depex file according
2760 # to the [depex] section in module's inf file.
2761 #
2762 class ModuleAutoGen(AutoGen):
2763 # call super().__init__ then call the worker function with different parameter count
2764 def __init__(self, Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs):
2765 try:
2766 self._Init
2767 except:
2768 super(ModuleAutoGen, self).__init__(Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs)
2769 self._InitWorker(Workspace, MetaFile, Target, Toolchain, Arch, *args)
2770 self._Init = True
2771
2772 ## Cache the timestamps of metafiles of every module in a class variable
2773 #
2774 TimeDict = {}
2775
2776 def __new__(cls, Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs):
2777 obj = super(ModuleAutoGen, cls).__new__(cls, Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs)
2778 # check if this module is employed by active platform
2779 if not PlatformAutoGen(Workspace, args[0], Target, Toolchain, Arch).ValidModule(MetaFile):
2780 EdkLogger.verbose("Module [%s] for [%s] is not employed by active platform\n" \
2781 % (MetaFile, Arch))
2782 return None
2783 return obj
2784
2785 ## Initialize ModuleAutoGen
2786 #
2787 # @param Workspace EdkIIWorkspaceBuild object
2788 # @param ModuleFile The path of module file
2789 # @param Target Build target (DEBUG, RELEASE)
2790 # @param Toolchain Name of tool chain
2791 # @param Arch The arch the module supports
2792 # @param PlatformFile Platform meta-file
2793 #
2794 def _InitWorker(self, Workspace, ModuleFile, Target, Toolchain, Arch, PlatformFile):
2795 EdkLogger.debug(EdkLogger.DEBUG_9, "AutoGen module [%s] [%s]" % (ModuleFile, Arch))
2796 GlobalData.gProcessingFile = "%s [%s, %s, %s]" % (ModuleFile, Arch, Toolchain, Target)
2797
2798 self.Workspace = Workspace
2799 self.WorkspaceDir = Workspace.WorkspaceDir
2800
2801 self.MetaFile = ModuleFile
2802 self.PlatformInfo = PlatformAutoGen(Workspace, PlatformFile, Target, Toolchain, Arch)
2803
2804 self.SourceDir = self.MetaFile.SubDir
2805 self.SourceDir = mws.relpath(self.SourceDir, self.WorkspaceDir)
2806
2807 self.SourceOverrideDir = None
2808 # use overrided path defined in DSC file
2809 if self.MetaFile.Key in GlobalData.gOverrideDir:
2810 self.SourceOverrideDir = GlobalData.gOverrideDir[self.MetaFile.Key]
2811
2812 self.ToolChain = Toolchain
2813 self.BuildTarget = Target
2814 self.Arch = Arch
2815 self.ToolChainFamily = self.PlatformInfo.ToolChainFamily
2816 self.BuildRuleFamily = self.PlatformInfo.BuildRuleFamily
2817
2818 self.IsMakeFileCreated = False
2819 self.IsCodeFileCreated = False
2820 self.IsAsBuiltInfCreated = False
2821 self.DepexGenerated = False
2822
2823 self.BuildDatabase = self.Workspace.BuildDatabase
2824 self.BuildRuleOrder = None
2825 self.BuildTime = 0
2826
2827 self._Module = None
2828 self._Name = None
2829 self._Guid = None
2830 self._Version = None
2831 self._ModuleType = None
2832 self._ComponentType = None
2833 self._PcdIsDriver = None
2834 self._AutoGenVersion = None
2835 self._LibraryFlag = None
2836 self._CustomMakefile = None
2837 self._Macro = None
2838
2839 self._BuildDir = None
2840 self._OutputDir = None
2841 self._FfsOutputDir = None
2842 self._DebugDir = None
2843 self._MakeFileDir = None
2844
2845 self._IncludePathList = None
2846 self._IncludePathLength = 0
2847 self._AutoGenFileList = None
2848 self._UnicodeFileList = None
2849 self._VfrFileList = None
2850 self._IdfFileList = None
2851 self._SourceFileList = None
2852 self._ObjectFileList = None
2853 self._BinaryFileList = None
2854
2855 self._DependentPackageList = None
2856 self._DependentLibraryList = None
2857 self._LibraryAutoGenList = None
2858 self._DerivedPackageList = None
2859 self._ModulePcdList = None
2860 self._LibraryPcdList = None
2861 self._PcdComments = OrderedDict()
2862 self._GuidList = None
2863 self._GuidsUsedByPcd = None
2864 self._GuidComments = OrderedDict()
2865 self._ProtocolList = None
2866 self._ProtocolComments = OrderedDict()
2867 self._PpiList = None
2868 self._PpiComments = OrderedDict()
2869 self._DepexList = None
2870 self._DepexExpressionList = None
2871 self._BuildOption = None
2872 self._BuildOptionIncPathList = None
2873 self._BuildTargets = None
2874 self._IntroBuildTargetList = None
2875 self._FinalBuildTargetList = None
2876 self._FileTypes = None
2877 self._BuildRules = None
2878
2879 self._TimeStampPath = None
2880
2881 self.AutoGenDepSet = set()
2882
2883
2884 ## The Modules referenced to this Library
2885 # Only Library has this attribute
2886 self._ReferenceModules = []
2887
2888 ## Store the FixedAtBuild Pcds
2889 #
2890 self._FixedAtBuildPcds = []
2891 self.ConstPcd = {}
2892 return True
2893
2894 def __repr__(self):
2895 return "%s [%s]" % (self.MetaFile, self.Arch)
2896
2897 # Get FixedAtBuild Pcds of this Module
2898 def _GetFixedAtBuildPcds(self):
2899 if self._FixedAtBuildPcds:
2900 return self._FixedAtBuildPcds
2901 for Pcd in self.ModulePcdList:
2902 if Pcd.Type != "FixedAtBuild":
2903 continue
2904 if Pcd not in self._FixedAtBuildPcds:
2905 self._FixedAtBuildPcds.append(Pcd)
2906
2907 return self._FixedAtBuildPcds
2908
2909 def _GetUniqueBaseName(self):
2910 BaseName = self.Name
2911 for Module in self.PlatformInfo.ModuleAutoGenList:
2912 if Module.MetaFile == self.MetaFile:
2913 continue
2914 if Module.Name == self.Name:
2915 if uuid.UUID(Module.Guid) == uuid.UUID(self.Guid):
2916 EdkLogger.error("build", FILE_DUPLICATED, 'Modules have same BaseName and FILE_GUID:\n'
2917 ' %s\n %s' % (Module.MetaFile, self.MetaFile))
2918 BaseName = '%s_%s' % (self.Name, self.Guid)
2919 return BaseName
2920
2921 # Macros could be used in build_rule.txt (also Makefile)
2922 def _GetMacros(self):
2923 if self._Macro is None:
2924 self._Macro = OrderedDict()
2925 self._Macro["WORKSPACE" ] = self.WorkspaceDir
2926 self._Macro["MODULE_NAME" ] = self.Name
2927 self._Macro["MODULE_NAME_GUID" ] = self._GetUniqueBaseName()
2928 self._Macro["MODULE_GUID" ] = self.Guid
2929 self._Macro["MODULE_VERSION" ] = self.Version
2930 self._Macro["MODULE_TYPE" ] = self.ModuleType
2931 self._Macro["MODULE_FILE" ] = str(self.MetaFile)
2932 self._Macro["MODULE_FILE_BASE_NAME" ] = self.MetaFile.BaseName
2933 self._Macro["MODULE_RELATIVE_DIR" ] = self.SourceDir
2934 self._Macro["MODULE_DIR" ] = self.SourceDir
2935
2936 self._Macro["BASE_NAME" ] = self.Name
2937
2938 self._Macro["ARCH" ] = self.Arch
2939 self._Macro["TOOLCHAIN" ] = self.ToolChain
2940 self._Macro["TOOLCHAIN_TAG" ] = self.ToolChain
2941 self._Macro["TOOL_CHAIN_TAG" ] = self.ToolChain
2942 self._Macro["TARGET" ] = self.BuildTarget
2943
2944 self._Macro["BUILD_DIR" ] = self.PlatformInfo.BuildDir
2945 self._Macro["BIN_DIR" ] = os.path.join(self.PlatformInfo.BuildDir, self.Arch)
2946 self._Macro["LIB_DIR" ] = os.path.join(self.PlatformInfo.BuildDir, self.Arch)
2947 self._Macro["MODULE_BUILD_DIR" ] = self.BuildDir
2948 self._Macro["OUTPUT_DIR" ] = self.OutputDir
2949 self._Macro["DEBUG_DIR" ] = self.DebugDir
2950 self._Macro["DEST_DIR_OUTPUT" ] = self.OutputDir
2951 self._Macro["DEST_DIR_DEBUG" ] = self.DebugDir
2952 self._Macro["PLATFORM_NAME" ] = self.PlatformInfo.Name
2953 self._Macro["PLATFORM_GUID" ] = self.PlatformInfo.Guid
2954 self._Macro["PLATFORM_VERSION" ] = self.PlatformInfo.Version
2955 self._Macro["PLATFORM_RELATIVE_DIR" ] = self.PlatformInfo.SourceDir
2956 self._Macro["PLATFORM_DIR" ] = mws.join(self.WorkspaceDir, self.PlatformInfo.SourceDir)
2957 self._Macro["PLATFORM_OUTPUT_DIR" ] = self.PlatformInfo.OutputDir
2958 self._Macro["FFS_OUTPUT_DIR" ] = self.FfsOutputDir
2959 return self._Macro
2960
2961 ## Return the module build data object
2962 def _GetModule(self):
2963 if self._Module is None:
2964 self._Module = self.Workspace.BuildDatabase[self.MetaFile, self.Arch, self.BuildTarget, self.ToolChain]
2965 return self._Module
2966
2967 ## Return the module name
2968 def _GetBaseName(self):
2969 return self.Module.BaseName
2970
2971 ## Return the module DxsFile if exist
2972 def _GetDxsFile(self):
2973 return self.Module.DxsFile
2974
2975 ## Return the module SourceOverridePath
2976 def _GetSourceOverridePath(self):
2977 return self.Module.SourceOverridePath
2978
2979 ## Return the module meta-file GUID
2980 def _GetGuid(self):
2981 #
2982 # To build same module more than once, the module path with FILE_GUID overridden has
2983 # the file name FILE_GUIDmodule.inf, but the relative path (self.MetaFile.File) is the realy path
2984 # in DSC. The overridden GUID can be retrieved from file name
2985 #
2986 if os.path.basename(self.MetaFile.File) != os.path.basename(self.MetaFile.Path):
2987 #
2988 # Length of GUID is 36
2989 #
2990 return os.path.basename(self.MetaFile.Path)[:36]
2991 return self.Module.Guid
2992
2993 ## Return the module version
2994 def _GetVersion(self):
2995 return self.Module.Version
2996
2997 ## Return the module type
2998 def _GetModuleType(self):
2999 return self.Module.ModuleType
3000
3001 ## Return the component type (for Edk.x style of module)
3002 def _GetComponentType(self):
3003 return self.Module.ComponentType
3004
3005 ## Return the build type
3006 def _GetBuildType(self):
3007 return self.Module.BuildType
3008
3009 ## Return the PCD_IS_DRIVER setting
3010 def _GetPcdIsDriver(self):
3011 return self.Module.PcdIsDriver
3012
3013 ## Return the autogen version, i.e. module meta-file version
3014 def _GetAutoGenVersion(self):
3015 return self.Module.AutoGenVersion
3016
3017 ## Check if the module is library or not
3018 def _IsLibrary(self):
3019 if self._LibraryFlag is None:
3020 if self.Module.LibraryClass is not None and self.Module.LibraryClass != []:
3021 self._LibraryFlag = True
3022 else:
3023 self._LibraryFlag = False
3024 return self._LibraryFlag
3025
3026 ## Check if the module is binary module or not
3027 def _IsBinaryModule(self):
3028 return self.Module.IsBinaryModule
3029
3030 ## Return the directory to store intermediate files of the module
3031 def _GetBuildDir(self):
3032 if self._BuildDir is None:
3033 self._BuildDir = path.join(
3034 self.PlatformInfo.BuildDir,
3035 self.Arch,
3036 self.SourceDir,
3037 self.MetaFile.BaseName
3038 )
3039 CreateDirectory(self._BuildDir)
3040 return self._BuildDir
3041
3042 ## Return the directory to store the intermediate object files of the mdoule
3043 def _GetOutputDir(self):
3044 if self._OutputDir is None:
3045 self._OutputDir = path.join(self.BuildDir, "OUTPUT")
3046 CreateDirectory(self._OutputDir)
3047 return self._OutputDir
3048
3049 ## Return the directory to store ffs file
3050 def _GetFfsOutputDir(self):
3051 if self._FfsOutputDir is None:
3052 if GlobalData.gFdfParser is not None:
3053 self._FfsOutputDir = path.join(self.PlatformInfo.BuildDir, "FV", "Ffs", self.Guid + self.Name)
3054 else:
3055 self._FfsOutputDir = ''
3056 return self._FfsOutputDir
3057
3058 ## Return the directory to store auto-gened source files of the mdoule
3059 def _GetDebugDir(self):
3060 if self._DebugDir is None:
3061 self._DebugDir = path.join(self.BuildDir, "DEBUG")
3062 CreateDirectory(self._DebugDir)
3063 return self._DebugDir
3064
3065 ## Return the path of custom file
3066 def _GetCustomMakefile(self):
3067 if self._CustomMakefile is None:
3068 self._CustomMakefile = {}
3069 for Type in self.Module.CustomMakefile:
3070 if Type in gMakeTypeMap:
3071 MakeType = gMakeTypeMap[Type]
3072 else:
3073 MakeType = 'nmake'
3074 if self.SourceOverrideDir is not None:
3075 File = os.path.join(self.SourceOverrideDir, self.Module.CustomMakefile[Type])
3076 if not os.path.exists(File):
3077 File = os.path.join(self.SourceDir, self.Module.CustomMakefile[Type])
3078 else:
3079 File = os.path.join(self.SourceDir, self.Module.CustomMakefile[Type])
3080 self._CustomMakefile[MakeType] = File
3081 return self._CustomMakefile
3082
3083 ## Return the directory of the makefile
3084 #
3085 # @retval string The directory string of module's makefile
3086 #
3087 def _GetMakeFileDir(self):
3088 return self.BuildDir
3089
3090 ## Return build command string
3091 #
3092 # @retval string Build command string
3093 #
3094 def _GetBuildCommand(self):
3095 return self.PlatformInfo.BuildCommand
3096
3097 ## Get object list of all packages the module and its dependent libraries belong to
3098 #
3099 # @retval list The list of package object
3100 #
3101 def _GetDerivedPackageList(self):
3102 PackageList = []
3103 for M in [self.Module] + self.DependentLibraryList:
3104 for Package in M.Packages:
3105 if Package in PackageList:
3106 continue
3107 PackageList.append(Package)
3108 return PackageList
3109
3110 ## Get the depex string
3111 #
3112 # @return : a string contain all depex expresion.
3113 def _GetDepexExpresionString(self):
3114 DepexStr = ''
3115 DepexList = []
3116 ## DPX_SOURCE IN Define section.
3117 if self.Module.DxsFile:
3118 return DepexStr
3119 for M in [self.Module] + self.DependentLibraryList:
3120 Filename = M.MetaFile.Path
3121 InfObj = InfSectionParser.InfSectionParser(Filename)
3122 DepexExpresionList = InfObj.GetDepexExpresionList()
3123 for DepexExpresion in DepexExpresionList:
3124 for key in DepexExpresion.keys():
3125 Arch, ModuleType = key
3126 DepexExpr = [x for x in DepexExpresion[key] if not str(x).startswith('#')]
3127 # the type of build module is USER_DEFINED.
3128 # All different DEPEX section tags would be copied into the As Built INF file
3129 # and there would be separate DEPEX section tags
3130 if self.ModuleType.upper() == SUP_MODULE_USER_DEFINED:
3131 if (Arch.upper() == self.Arch.upper()) and (ModuleType.upper() != TAB_ARCH_COMMON):
3132 DepexList.append({(Arch, ModuleType): DepexExpr})
3133 else:
3134 if Arch.upper() == TAB_ARCH_COMMON or \
3135 (Arch.upper() == self.Arch.upper() and \
3136 ModuleType.upper() in [TAB_ARCH_COMMON, self.ModuleType.upper()]):
3137 DepexList.append({(Arch, ModuleType): DepexExpr})
3138
3139 #the type of build module is USER_DEFINED.
3140 if self.ModuleType.upper() == SUP_MODULE_USER_DEFINED:
3141 for Depex in DepexList:
3142 for key in Depex.keys():
3143 DepexStr += '[Depex.%s.%s]\n' % key
3144 DepexStr += '\n'.join(['# '+ val for val in Depex[key]])
3145 DepexStr += '\n\n'
3146 if not DepexStr:
3147 return '[Depex.%s]\n' % self.Arch
3148 return DepexStr
3149
3150 #the type of build module not is USER_DEFINED.
3151 Count = 0
3152 for Depex in DepexList:
3153 Count += 1
3154 if DepexStr != '':
3155 DepexStr += ' AND '
3156 DepexStr += '('
3157 for D in Depex.values():
3158 DepexStr += ' '.join([val for val in D])
3159 Index = DepexStr.find('END')
3160 if Index > -1 and Index == len(DepexStr) - 3:
3161 DepexStr = DepexStr[:-3]
3162 DepexStr = DepexStr.strip()
3163 DepexStr += ')'
3164 if Count == 1:
3165 DepexStr = DepexStr.lstrip('(').rstrip(')').strip()
3166 if not DepexStr:
3167 return '[Depex.%s]\n' % self.Arch
3168 return '[Depex.%s]\n# ' % self.Arch + DepexStr
3169
3170 ## Merge dependency expression
3171 #
3172 # @retval list The token list of the dependency expression after parsed
3173 #
3174 def _GetDepexTokenList(self):
3175 if self._DepexList is None:
3176 self._DepexList = {}
3177 if self.DxsFile or self.IsLibrary or TAB_DEPENDENCY_EXPRESSION_FILE in self.FileTypes:
3178 return self._DepexList
3179
3180 self._DepexList[self.ModuleType] = []
3181
3182 for ModuleType in self._DepexList:
3183 DepexList = self._DepexList[ModuleType]
3184 #
3185 # Append depex from dependent libraries, if not "BEFORE", "AFTER" expresion
3186 #
3187 for M in [self.Module] + self.DependentLibraryList:
3188 Inherited = False
3189 for D in M.Depex[self.Arch, ModuleType]:
3190 if DepexList != []:
3191 DepexList.append('AND')
3192 DepexList.append('(')
3193 DepexList.extend(D)
3194 if DepexList[-1] == 'END': # no need of a END at this time
3195 DepexList.pop()
3196 DepexList.append(')')
3197 Inherited = True
3198 if Inherited:
3199 EdkLogger.verbose("DEPEX[%s] (+%s) = %s" % (self.Name, M.BaseName, DepexList))
3200 if 'BEFORE' in DepexList or 'AFTER' in DepexList:
3201 break
3202 if len(DepexList) > 0:
3203 EdkLogger.verbose('')
3204 return self._DepexList
3205
3206 ## Merge dependency expression
3207 #
3208 # @retval list The token list of the dependency expression after parsed
3209 #
3210 def _GetDepexExpressionTokenList(self):
3211 if self._DepexExpressionList is None:
3212 self._DepexExpressionList = {}
3213 if self.DxsFile or self.IsLibrary or TAB_DEPENDENCY_EXPRESSION_FILE in self.FileTypes:
3214 return self._DepexExpressionList
3215
3216 self._DepexExpressionList[self.ModuleType] = ''
3217
3218 for ModuleType in self._DepexExpressionList:
3219 DepexExpressionList = self._DepexExpressionList[ModuleType]
3220 #
3221 # Append depex from dependent libraries, if not "BEFORE", "AFTER" expresion
3222 #
3223 for M in [self.Module] + self.DependentLibraryList:
3224 Inherited = False
3225 for D in M.DepexExpression[self.Arch, ModuleType]:
3226 if DepexExpressionList != '':
3227 DepexExpressionList += ' AND '
3228 DepexExpressionList += '('
3229 DepexExpressionList += D
3230 DepexExpressionList = DepexExpressionList.rstrip('END').strip()
3231 DepexExpressionList += ')'
3232 Inherited = True
3233 if Inherited:
3234 EdkLogger.verbose("DEPEX[%s] (+%s) = %s" % (self.Name, M.BaseName, DepexExpressionList))
3235 if 'BEFORE' in DepexExpressionList or 'AFTER' in DepexExpressionList:
3236 break
3237 if len(DepexExpressionList) > 0:
3238 EdkLogger.verbose('')
3239 self._DepexExpressionList[ModuleType] = DepexExpressionList
3240 return self._DepexExpressionList
3241
3242 # Get the tiano core user extension, it is contain dependent library.
3243 # @retval: a list contain tiano core userextension.
3244 #
3245 def _GetTianoCoreUserExtensionList(self):
3246 TianoCoreUserExtentionList = []
3247 for M in [self.Module] + self.DependentLibraryList:
3248 Filename = M.MetaFile.Path
3249 InfObj = InfSectionParser.InfSectionParser(Filename)
3250 TianoCoreUserExtenList = InfObj.GetUserExtensionTianoCore()
3251 for TianoCoreUserExtent in TianoCoreUserExtenList:
3252 for Section in TianoCoreUserExtent.keys():
3253 ItemList = Section.split(TAB_SPLIT)
3254 Arch = self.Arch
3255 if len(ItemList) == 4:
3256 Arch = ItemList[3]
3257 if Arch.upper() == TAB_ARCH_COMMON or Arch.upper() == self.Arch.upper():
3258 TianoCoreList = []
3259 TianoCoreList.extend([TAB_SECTION_START + Section + TAB_SECTION_END])
3260 TianoCoreList.extend(TianoCoreUserExtent[Section][:])
3261 TianoCoreList.append('\n')
3262 TianoCoreUserExtentionList.append(TianoCoreList)
3263
3264 return TianoCoreUserExtentionList
3265
3266 ## Return the list of specification version required for the module
3267 #
3268 # @retval list The list of specification defined in module file
3269 #
3270 def _GetSpecification(self):
3271 return self.Module.Specification
3272
3273 ## Tool option for the module build
3274 #
3275 # @param PlatformInfo The object of PlatformBuildInfo
3276 # @retval dict The dict containing valid options
3277 #
3278 def _GetModuleBuildOption(self):
3279 if self._BuildOption is None:
3280 self._BuildOption, self.BuildRuleOrder = self.PlatformInfo.ApplyBuildOption(self.Module)
3281 if self.BuildRuleOrder:
3282 self.BuildRuleOrder = ['.%s' % Ext for Ext in self.BuildRuleOrder.split()]
3283 return self._BuildOption
3284
3285 ## Get include path list from tool option for the module build
3286 #
3287 # @retval list The include path list
3288 #
3289 def _GetBuildOptionIncPathList(self):
3290 if self._BuildOptionIncPathList is None:
3291 #
3292 # Regular expression for finding Include Directories, the difference between MSFT and INTEL/GCC/RVCT
3293 # is the former use /I , the Latter used -I to specify include directories
3294 #
3295 if self.PlatformInfo.ToolChainFamily in ('MSFT'):
3296 BuildOptIncludeRegEx = gBuildOptIncludePatternMsft
3297 elif self.PlatformInfo.ToolChainFamily in ('INTEL', 'GCC', 'RVCT'):
3298 BuildOptIncludeRegEx = gBuildOptIncludePatternOther
3299 else:
3300 #
3301 # New ToolChainFamily, don't known whether there is option to specify include directories
3302 #
3303 self._BuildOptionIncPathList = []
3304 return self._BuildOptionIncPathList
3305
3306 BuildOptionIncPathList = []
3307 for Tool in ('CC', 'PP', 'VFRPP', 'ASLPP', 'ASLCC', 'APP', 'ASM'):
3308 Attr = 'FLAGS'
3309 try:
3310 FlagOption = self.BuildOption[Tool][Attr]
3311 except KeyError:
3312 FlagOption = ''
3313
3314 if self.PlatformInfo.ToolChainFamily != 'RVCT':
3315 IncPathList = [NormPath(Path, self.Macros) for Path in BuildOptIncludeRegEx.findall(FlagOption)]
3316 else:
3317 #
3318 # RVCT may specify a list of directory seperated by commas
3319 #
3320 IncPathList = []
3321 for Path in BuildOptIncludeRegEx.findall(FlagOption):
3322 PathList = GetSplitList(Path, TAB_COMMA_SPLIT)
3323 IncPathList += [NormPath(PathEntry, self.Macros) for PathEntry in PathList]
3324
3325 #
3326 # EDK II modules must not reference header files outside of the packages they depend on or
3327 # within the module's directory tree. Report error if violation.
3328 #
3329 if self.AutoGenVersion >= 0x00010005 and len(IncPathList) > 0:
3330 for Path in IncPathList:
3331 if (Path not in self.IncludePathList) and (CommonPath([Path, self.MetaFile.Dir]) != self.MetaFile.Dir):
3332 ErrMsg = "The include directory for the EDK II module in this line is invalid %s specified in %s FLAGS '%s'" % (Path, Tool, FlagOption)
3333 EdkLogger.error("build",
3334 PARAMETER_INVALID,
3335 ExtraData=ErrMsg,
3336 File=str(self.MetaFile))
3337
3338
3339 BuildOptionIncPathList += IncPathList
3340
3341 self._BuildOptionIncPathList = BuildOptionIncPathList
3342
3343 return self._BuildOptionIncPathList
3344
3345 ## Return a list of files which can be built from source
3346 #
3347 # What kind of files can be built is determined by build rules in
3348 # $(CONF_DIRECTORY)/build_rule.txt and toolchain family.
3349 #
3350 def _GetSourceFileList(self):
3351 if self._SourceFileList is None:
3352 self._SourceFileList = []
3353 for F in self.Module.Sources:
3354 # match tool chain
3355 if F.TagName not in ("", "*", self.ToolChain):
3356 EdkLogger.debug(EdkLogger.DEBUG_9, "The toolchain [%s] for processing file [%s] is found, "
3357 "but [%s] is needed" % (F.TagName, str(F), self.ToolChain))
3358 continue
3359 # match tool chain family or build rule family
3360 if F.ToolChainFamily not in ("", "*", self.ToolChainFamily, self.BuildRuleFamily):
3361 EdkLogger.debug(
3362 EdkLogger.DEBUG_0,
3363 "The file [%s] must be built by tools of [%s], " \
3364 "but current toolchain family is [%s], buildrule family is [%s]" \
3365 % (str(F), F.ToolChainFamily, self.ToolChainFamily, self.BuildRuleFamily))
3366 continue
3367
3368 # add the file path into search path list for file including
3369 if F.Dir not in self.IncludePathList and self.AutoGenVersion >= 0x00010005:
3370 self.IncludePathList.insert(0, F.Dir)
3371 self._SourceFileList.append(F)
3372
3373 self._MatchBuildRuleOrder(self._SourceFileList)
3374
3375 for F in self._SourceFileList:
3376 self._ApplyBuildRule(F, TAB_UNKNOWN_FILE)
3377 return self._SourceFileList
3378
3379 def _MatchBuildRuleOrder(self, FileList):
3380 Order_Dict = {}
3381 self._GetModuleBuildOption()
3382 for SingleFile in FileList:
3383 if self.BuildRuleOrder and SingleFile.Ext in self.BuildRuleOrder and SingleFile.Ext in self.BuildRules:
3384 key = SingleFile.Path.split(SingleFile.Ext)[0]
3385 if key in Order_Dict:
3386 Order_Dict[key].append(SingleFile.Ext)
3387 else:
3388 Order_Dict[key] = [SingleFile.Ext]
3389
3390 RemoveList = []
3391 for F in Order_Dict:
3392 if len(Order_Dict[F]) > 1:
3393 Order_Dict[F].sort(key=lambda i: self.BuildRuleOrder.index(i))
3394 for Ext in Order_Dict[F][1:]:
3395 RemoveList.append(F + Ext)
3396
3397 for item in RemoveList:
3398 FileList.remove(item)
3399
3400 return FileList
3401
3402 ## Return the list of unicode files
3403 def _GetUnicodeFileList(self):
3404 if self._UnicodeFileList is None:
3405 if TAB_UNICODE_FILE in self.FileTypes:
3406 self._UnicodeFileList = self.FileTypes[TAB_UNICODE_FILE]
3407 else:
3408 self._UnicodeFileList = []
3409 return self._UnicodeFileList
3410
3411 ## Return the list of vfr files
3412 def _GetVfrFileList(self):
3413 if self._VfrFileList is None:
3414 if TAB_VFR_FILE in self.FileTypes:
3415 self._VfrFileList = self.FileTypes[TAB_VFR_FILE]
3416 else:
3417 self._VfrFileList = []
3418 return self._VfrFileList
3419
3420 ## Return the list of Image Definition files
3421 def _GetIdfFileList(self):
3422 if self._IdfFileList is None:
3423 if TAB_IMAGE_FILE in self.FileTypes:
3424 self._IdfFileList = self.FileTypes[TAB_IMAGE_FILE]
3425 else:
3426 self._IdfFileList = []
3427 return self._IdfFileList
3428
3429 ## Return a list of files which can be built from binary
3430 #
3431 # "Build" binary files are just to copy them to build directory.
3432 #
3433 # @retval list The list of files which can be built later
3434 #
3435 def _GetBinaryFiles(self):
3436 if self._BinaryFileList is None:
3437 self._BinaryFileList = []
3438 for F in self.Module.Binaries:
3439 if F.Target not in ['COMMON', '*'] and F.Target != self.BuildTarget:
3440 continue
3441 self._BinaryFileList.append(F)
3442 self._ApplyBuildRule(F, F.Type)
3443 return self._BinaryFileList
3444
3445 def _GetBuildRules(self):
3446 if self._BuildRules is None:
3447 BuildRules = {}
3448 BuildRuleDatabase = self.PlatformInfo.BuildRule
3449 for Type in BuildRuleDatabase.FileTypeList:
3450 #first try getting build rule by BuildRuleFamily
3451 RuleObject = BuildRuleDatabase[Type, self.BuildType, self.Arch, self.BuildRuleFamily]
3452 if not RuleObject:
3453 # build type is always module type, but ...
3454 if self.ModuleType != self.BuildType:
3455 RuleObject = BuildRuleDatabase[Type, self.ModuleType, self.Arch, self.BuildRuleFamily]
3456 #second try getting build rule by ToolChainFamily
3457 if not RuleObject:
3458 RuleObject = BuildRuleDatabase[Type, self.BuildType, self.Arch, self.ToolChainFamily]
3459 if not RuleObject:
3460 # build type is always module type, but ...
3461 if self.ModuleType != self.BuildType:
3462 RuleObject = BuildRuleDatabase[Type, self.ModuleType, self.Arch, self.ToolChainFamily]
3463 if not RuleObject:
3464 continue
3465 RuleObject = RuleObject.Instantiate(self.Macros)
3466 BuildRules[Type] = RuleObject
3467 for Ext in RuleObject.SourceFileExtList:
3468 BuildRules[Ext] = RuleObject
3469 self._BuildRules = BuildRules
3470 return self._BuildRules
3471
3472 def _ApplyBuildRule(self, File, FileType):
3473 if self._BuildTargets is None:
3474 self._IntroBuildTargetList = set()
3475 self._FinalBuildTargetList = set()
3476 self._BuildTargets = defaultdict(set)
3477 self._FileTypes = defaultdict(set)
3478
3479 SubDirectory = os.path.join(self.OutputDir, File.SubDir)
3480 if not os.path.exists(SubDirectory):
3481 CreateDirectory(SubDirectory)
3482 LastTarget = None
3483 RuleChain = []
3484 SourceList = [File]
3485 Index = 0
3486 #
3487 # Make sure to get build rule order value
3488 #
3489 self._GetModuleBuildOption()
3490
3491 while Index < len(SourceList):
3492 Source = SourceList[Index]
3493 Index = Index + 1
3494
3495 if Source != File:
3496 CreateDirectory(Source.Dir)
3497
3498 if File.IsBinary and File == Source and self._BinaryFileList is not None and File in self._BinaryFileList:
3499 # Skip all files that are not binary libraries
3500 if not self.IsLibrary:
3501 continue
3502 RuleObject = self.BuildRules[TAB_DEFAULT_BINARY_FILE]
3503 elif FileType in self.BuildRules:
3504 RuleObject = self.BuildRules[FileType]
3505 elif Source.Ext in self.BuildRules:
3506 RuleObject = self.BuildRules[Source.Ext]
3507 else:
3508 # stop at no more rules
3509 if LastTarget:
3510 self._FinalBuildTargetList.add(LastTarget)
3511 break
3512
3513 FileType = RuleObject.SourceFileType
3514 self._FileTypes[FileType].add(Source)
3515
3516 # stop at STATIC_LIBRARY for library
3517 if self.IsLibrary and FileType == TAB_STATIC_LIBRARY:
3518 if LastTarget:
3519 self._FinalBuildTargetList.add(LastTarget)
3520 break
3521
3522 Target = RuleObject.Apply(Source, self.BuildRuleOrder)
3523 if not Target:
3524 if LastTarget:
3525 self._FinalBuildTargetList.add(LastTarget)
3526 break
3527 elif not Target.Outputs:
3528 # Only do build for target with outputs
3529 self._FinalBuildTargetList.add(Target)
3530
3531 self._BuildTargets[FileType].add(Target)
3532
3533 if not Source.IsBinary and Source == File:
3534 self._IntroBuildTargetList.add(Target)
3535
3536 # to avoid cyclic rule
3537 if FileType in RuleChain:
3538 break
3539
3540 RuleChain.append(FileType)
3541 SourceList.extend(Target.Outputs)
3542 LastTarget = Target
3543 FileType = TAB_UNKNOWN_FILE
3544
3545 def _GetTargets(self):
3546 if self._BuildTargets is None:
3547 self._IntroBuildTargetList = set()
3548 self._FinalBuildTargetList = set()
3549 self._BuildTargets = defaultdict(set)
3550 self._FileTypes = defaultdict(set)
3551
3552 #TRICK: call _GetSourceFileList to apply build rule for source files
3553 if self.SourceFileList:
3554 pass
3555
3556 #TRICK: call _GetBinaryFileList to apply build rule for binary files
3557 if self.BinaryFileList:
3558 pass
3559
3560 return self._BuildTargets
3561
3562 def _GetIntroTargetList(self):
3563 self._GetTargets()
3564 return self._IntroBuildTargetList
3565
3566 def _GetFinalTargetList(self):
3567 self._GetTargets()
3568 return self._FinalBuildTargetList
3569
3570 def _GetFileTypes(self):
3571 self._GetTargets()
3572 return self._FileTypes
3573
3574 ## Get the list of package object the module depends on
3575 #
3576 # @retval list The package object list
3577 #
3578 def _GetDependentPackageList(self):
3579 return self.Module.Packages
3580
3581 ## Return the list of auto-generated code file
3582 #
3583 # @retval list The list of auto-generated file
3584 #
3585 def _GetAutoGenFileList(self):
3586 UniStringAutoGenC = True
3587 IdfStringAutoGenC = True
3588 UniStringBinBuffer = StringIO()
3589 IdfGenBinBuffer = StringIO()
3590 if self.BuildType == 'UEFI_HII':
3591 UniStringAutoGenC = False
3592 IdfStringAutoGenC = False
3593 if self._AutoGenFileList is None:
3594 self._AutoGenFileList = {}
3595 AutoGenC = TemplateString()
3596 AutoGenH = TemplateString()
3597 StringH = TemplateString()
3598 StringIdf = TemplateString()
3599 GenC.CreateCode(self, AutoGenC, AutoGenH, StringH, UniStringAutoGenC, UniStringBinBuffer, StringIdf, IdfStringAutoGenC, IdfGenBinBuffer)
3600 #
3601 # AutoGen.c is generated if there are library classes in inf, or there are object files
3602 #
3603 if str(AutoGenC) != "" and (len(self.Module.LibraryClasses) > 0
3604 or TAB_OBJECT_FILE in self.FileTypes):
3605 AutoFile = PathClass(gAutoGenCodeFileName, self.DebugDir)
3606 self._AutoGenFileList[AutoFile] = str(AutoGenC)
3607 self._ApplyBuildRule(AutoFile, TAB_UNKNOWN_FILE)
3608 if str(AutoGenH) != "":
3609 AutoFile = PathClass(gAutoGenHeaderFileName, self.DebugDir)
3610 self._AutoGenFileList[AutoFile] = str(AutoGenH)
3611 self._ApplyBuildRule(AutoFile, TAB_UNKNOWN_FILE)
3612 if str(StringH) != "":
3613 AutoFile = PathClass(gAutoGenStringFileName % {"module_name":self.Name}, self.DebugDir)
3614 self._AutoGenFileList[AutoFile] = str(StringH)
3615 self._ApplyBuildRule(AutoFile, TAB_UNKNOWN_FILE)
3616 if UniStringBinBuffer is not None and UniStringBinBuffer.getvalue() != "":
3617 AutoFile = PathClass(gAutoGenStringFormFileName % {"module_name":self.Name}, self.OutputDir)
3618 self._AutoGenFileList[AutoFile] = UniStringBinBuffer.getvalue()
3619 AutoFile.IsBinary = True
3620 self._ApplyBuildRule(AutoFile, TAB_UNKNOWN_FILE)
3621 if UniStringBinBuffer is not None:
3622 UniStringBinBuffer.close()
3623 if str(StringIdf) != "":
3624 AutoFile = PathClass(gAutoGenImageDefFileName % {"module_name":self.Name}, self.DebugDir)
3625 self._AutoGenFileList[AutoFile] = str(StringIdf)
3626 self._ApplyBuildRule(AutoFile, TAB_UNKNOWN_FILE)
3627 if IdfGenBinBuffer is not None and IdfGenBinBuffer.getvalue() != "":
3628 AutoFile = PathClass(gAutoGenIdfFileName % {"module_name":self.Name}, self.OutputDir)
3629 self._AutoGenFileList[AutoFile] = IdfGenBinBuffer.getvalue()
3630 AutoFile.IsBinary = True
3631 self._ApplyBuildRule(AutoFile, TAB_UNKNOWN_FILE)
3632 if IdfGenBinBuffer is not None:
3633 IdfGenBinBuffer.close()
3634 return self._AutoGenFileList
3635
3636 ## Return the list of library modules explicitly or implicityly used by this module
3637 def _GetLibraryList(self):
3638 if self._DependentLibraryList is None:
3639 # only merge library classes and PCD for non-library module
3640 if self.IsLibrary:
3641 self._DependentLibraryList = []
3642 else:
3643 if self.AutoGenVersion < 0x00010005:
3644 self._DependentLibraryList = self.PlatformInfo.ResolveLibraryReference(self.Module)
3645 else:
3646 self._DependentLibraryList = self.PlatformInfo.ApplyLibraryInstance(self.Module)
3647 return self._DependentLibraryList
3648
3649 @staticmethod
3650 def UpdateComments(Recver, Src):
3651 for Key in Src:
3652 if Key not in Recver:
3653 Recver[Key] = []
3654 Recver[Key].extend(Src[Key])
3655 ## Get the list of PCDs from current module
3656 #
3657 # @retval list The list of PCD
3658 #
3659 def _GetModulePcdList(self):
3660 if self._ModulePcdList is None:
3661 # apply PCD settings from platform
3662 self._ModulePcdList = self.PlatformInfo.ApplyPcdSetting(self.Module, self.Module.Pcds)
3663 self.UpdateComments(self._PcdComments, self.Module.PcdComments)
3664 return self._ModulePcdList
3665
3666 ## Get the list of PCDs from dependent libraries
3667 #
3668 # @retval list The list of PCD
3669 #
3670 def _GetLibraryPcdList(self):
3671 if self._LibraryPcdList is None:
3672 Pcds = OrderedDict()
3673 if not self.IsLibrary:
3674 # get PCDs from dependent libraries
3675 for Library in self.DependentLibraryList:
3676 self.UpdateComments(self._PcdComments, Library.PcdComments)
3677 for Key in Library.Pcds:
3678 # skip duplicated PCDs
3679 if Key in self.Module.Pcds or Key in Pcds:
3680 continue
3681 Pcds[Key] = copy.copy(Library.Pcds[Key])
3682 # apply PCD settings from platform
3683 self._LibraryPcdList = self.PlatformInfo.ApplyPcdSetting(self.Module, Pcds)
3684 else:
3685 self._LibraryPcdList = []
3686 return self._LibraryPcdList
3687
3688 ## Get the GUID value mapping
3689 #
3690 # @retval dict The mapping between GUID cname and its value
3691 #
3692 def _GetGuidList(self):
3693 if self._GuidList is None:
3694 self._GuidList = OrderedDict()
3695 self._GuidList.update(self.Module.Guids)
3696 for Library in self.DependentLibraryList:
3697 self._GuidList.update(Library.Guids)
3698 self.UpdateComments(self._GuidComments, Library.GuidComments)
3699 self.UpdateComments(self._GuidComments, self.Module.GuidComments)
3700 return self._GuidList
3701
3702 def GetGuidsUsedByPcd(self):
3703 if self._GuidsUsedByPcd is None:
3704 self._GuidsUsedByPcd = OrderedDict()
3705 self._GuidsUsedByPcd.update(self.Module.GetGuidsUsedByPcd())
3706 for Library in self.DependentLibraryList:
3707 self._GuidsUsedByPcd.update(Library.GetGuidsUsedByPcd())
3708 return self._GuidsUsedByPcd
3709 ## Get the protocol value mapping
3710 #
3711 # @retval dict The mapping between protocol cname and its value
3712 #
3713 def _GetProtocolList(self):
3714 if self._ProtocolList is None:
3715 self._ProtocolList = OrderedDict()
3716 self._ProtocolList.update(self.Module.Protocols)
3717 for Library in self.DependentLibraryList:
3718 self._ProtocolList.update(Library.Protocols)
3719 self.UpdateComments(self._ProtocolComments, Library.ProtocolComments)
3720 self.UpdateComments(self._ProtocolComments, self.Module.ProtocolComments)
3721 return self._ProtocolList
3722
3723 ## Get the PPI value mapping
3724 #
3725 # @retval dict The mapping between PPI cname and its value
3726 #
3727 def _GetPpiList(self):
3728 if self._PpiList is None:
3729 self._PpiList = OrderedDict()
3730 self._PpiList.update(self.Module.Ppis)
3731 for Library in self.DependentLibraryList:
3732 self._PpiList.update(Library.Ppis)
3733 self.UpdateComments(self._PpiComments, Library.PpiComments)
3734 self.UpdateComments(self._PpiComments, self.Module.PpiComments)
3735 return self._PpiList
3736
3737 ## Get the list of include search path
3738 #
3739 # @retval list The list path
3740 #
3741 def _GetIncludePathList(self):
3742 if self._IncludePathList is None:
3743 self._IncludePathList = []
3744 if self.AutoGenVersion < 0x00010005:
3745 for Inc in self.Module.Includes:
3746 if Inc not in self._IncludePathList:
3747 self._IncludePathList.append(Inc)
3748 # for Edk modules
3749 Inc = path.join(Inc, self.Arch.capitalize())
3750 if os.path.exists(Inc) and Inc not in self._IncludePathList:
3751 self._IncludePathList.append(Inc)
3752 # Edk module needs to put DEBUG_DIR at the end of search path and not to use SOURCE_DIR all the time
3753 self._IncludePathList.append(self.DebugDir)
3754 else:
3755 self._IncludePathList.append(self.MetaFile.Dir)
3756 self._IncludePathList.append(self.DebugDir)
3757
3758 for Package in self.Module.Packages:
3759 PackageDir = mws.join(self.WorkspaceDir, Package.MetaFile.Dir)
3760 if PackageDir not in self._IncludePathList:
3761 self._IncludePathList.append(PackageDir)
3762 IncludesList = Package.Includes
3763 if Package._PrivateIncludes:
3764 if not self.MetaFile.Path.startswith(PackageDir):
3765 IncludesList = list(set(Package.Includes).difference(set(Package._PrivateIncludes)))
3766 for Inc in IncludesList:
3767 if Inc not in self._IncludePathList:
3768 self._IncludePathList.append(str(Inc))
3769 return self._IncludePathList
3770
3771 def _GetIncludePathLength(self):
3772 self._IncludePathLength = 0
3773 if self._IncludePathList:
3774 for inc in self._IncludePathList:
3775 self._IncludePathLength += len(' ' + inc)
3776 return self._IncludePathLength
3777
3778 ## Get HII EX PCDs which maybe used by VFR
3779 #
3780 # efivarstore used by VFR may relate with HII EX PCDs
3781 # Get the variable name and GUID from efivarstore and HII EX PCD
3782 # List the HII EX PCDs in As Built INF if both name and GUID match.
3783 #
3784 # @retval list HII EX PCDs
3785 #
3786 def _GetPcdsMaybeUsedByVfr(self):
3787 if not self.SourceFileList:
3788 return []
3789
3790 NameGuids = []
3791 for SrcFile in self.SourceFileList:
3792 if SrcFile.Ext.lower() != '.vfr':
3793 continue
3794 Vfri = os.path.join(self.OutputDir, SrcFile.BaseName + '.i')
3795 if not os.path.exists(Vfri):
3796 continue
3797 VfriFile = open(Vfri, 'r')
3798 Content = VfriFile.read()
3799 VfriFile.close()
3800 Pos = Content.find('efivarstore')
3801 while Pos != -1:
3802 #
3803 # Make sure 'efivarstore' is the start of efivarstore statement
3804 # In case of the value of 'name' (name = efivarstore) is equal to 'efivarstore'
3805 #
3806 Index = Pos - 1
3807 while Index >= 0 and Content[Index] in ' \t\r\n':
3808 Index -= 1
3809 if Index >= 0 and Content[Index] != ';':
3810 Pos = Content.find('efivarstore', Pos + len('efivarstore'))
3811 continue
3812 #
3813 # 'efivarstore' must be followed by name and guid
3814 #
3815 Name = gEfiVarStoreNamePattern.search(Content, Pos)
3816 if not Name:
3817 break
3818 Guid = gEfiVarStoreGuidPattern.search(Content, Pos)
3819 if not Guid:
3820 break
3821 NameArray = ConvertStringToByteArray('L"' + Name.group(1) + '"')
3822 NameGuids.append((NameArray, GuidStructureStringToGuidString(Guid.group(1))))
3823 Pos = Content.find('efivarstore', Name.end())
3824 if not NameGuids:
3825 return []
3826 HiiExPcds = []
3827 for Pcd in self.PlatformInfo.Platform.Pcds.values():
3828 if Pcd.Type != TAB_PCDS_DYNAMIC_EX_HII:
3829 continue
3830 for SkuName in Pcd.SkuInfoList:
3831 SkuInfo = Pcd.SkuInfoList[SkuName]
3832 Name = ConvertStringToByteArray(SkuInfo.VariableName)
3833 Value = GuidValue(SkuInfo.VariableGuid, self.PlatformInfo.PackageList, self.MetaFile.Path)
3834 if not Value:
3835 continue
3836 Guid = GuidStructureStringToGuidString(Value)
3837 if (Name, Guid) in NameGuids and Pcd not in HiiExPcds:
3838 HiiExPcds.append(Pcd)
3839 break
3840
3841 return HiiExPcds
3842
3843 def _GenOffsetBin(self):
3844 VfrUniBaseName = {}
3845 for SourceFile in self.Module.Sources:
3846 if SourceFile.Type.upper() == ".VFR" :
3847 #
3848 # search the .map file to find the offset of vfr binary in the PE32+/TE file.
3849 #
3850 VfrUniBaseName[SourceFile.BaseName] = (SourceFile.BaseName + "Bin")
3851 if SourceFile.Type.upper() == ".UNI" :
3852 #
3853 # search the .map file to find the offset of Uni strings binary in the PE32+/TE file.
3854 #
3855 VfrUniBaseName["UniOffsetName"] = (self.Name + "Strings")
3856
3857 if len(VfrUniBaseName) == 0:
3858 return None
3859 MapFileName = os.path.join(self.OutputDir, self.Name + ".map")
3860 EfiFileName = os.path.join(self.OutputDir, self.Name + ".efi")
3861 VfrUniOffsetList = GetVariableOffset(MapFileName, EfiFileName, VfrUniBaseName.values())
3862 if not VfrUniOffsetList:
3863 return None
3864
3865 OutputName = '%sOffset.bin' % self.Name
3866 UniVfrOffsetFileName = os.path.join( self.OutputDir, OutputName)
3867
3868 try:
3869 fInputfile = open(UniVfrOffsetFileName, "wb+", 0)
3870 except:
3871 EdkLogger.error("build", FILE_OPEN_FAILURE, "File open failed for %s" % UniVfrOffsetFileName,None)
3872
3873 # Use a instance of StringIO to cache data
3874 fStringIO = StringIO('')
3875
3876 for Item in VfrUniOffsetList:
3877 if (Item[0].find("Strings") != -1):
3878 #
3879 # UNI offset in image.
3880 # GUID + Offset
3881 # { 0x8913c5e0, 0x33f6, 0x4d86, { 0x9b, 0xf1, 0x43, 0xef, 0x89, 0xfc, 0x6, 0x66 } }
3882 #
3883 UniGuid = [0xe0, 0xc5, 0x13, 0x89, 0xf6, 0x33, 0x86, 0x4d, 0x9b, 0xf1, 0x43, 0xef, 0x89, 0xfc, 0x6, 0x66]
3884 UniGuid = [chr(ItemGuid) for ItemGuid in UniGuid]
3885 fStringIO.write(''.join(UniGuid))
3886 UniValue = pack ('Q', int (Item[1], 16))
3887 fStringIO.write (UniValue)
3888 else:
3889 #
3890 # VFR binary offset in image.
3891 # GUID + Offset
3892 # { 0xd0bc7cb4, 0x6a47, 0x495f, { 0xaa, 0x11, 0x71, 0x7, 0x46, 0xda, 0x6, 0xa2 } };
3893 #
3894 VfrGuid = [0xb4, 0x7c, 0xbc, 0xd0, 0x47, 0x6a, 0x5f, 0x49, 0xaa, 0x11, 0x71, 0x7, 0x46, 0xda, 0x6, 0xa2]
3895 VfrGuid = [chr(ItemGuid) for ItemGuid in VfrGuid]
3896 fStringIO.write(''.join(VfrGuid))
3897 type (Item[1])
3898 VfrValue = pack ('Q', int (Item[1], 16))
3899 fStringIO.write (VfrValue)
3900 #
3901 # write data into file.
3902 #
3903 try :
3904 fInputfile.write (fStringIO.getvalue())
3905 except:
3906 EdkLogger.error("build", FILE_WRITE_FAILURE, "Write data to file %s failed, please check whether the "
3907 "file been locked or using by other applications." %UniVfrOffsetFileName,None)
3908
3909 fStringIO.close ()
3910 fInputfile.close ()
3911 return OutputName
3912
3913 ## Create AsBuilt INF file the module
3914 #
3915 def CreateAsBuiltInf(self, IsOnlyCopy = False):
3916 self.OutputFile = set()
3917 if IsOnlyCopy:
3918 if GlobalData.gBinCacheDest:
3919 self.CopyModuleToCache()
3920 return
3921
3922 if self.IsAsBuiltInfCreated:
3923 return
3924
3925 # Skip the following code for EDK I inf
3926 if self.AutoGenVersion < 0x00010005:
3927 return
3928
3929 # Skip the following code for libraries
3930 if self.IsLibrary:
3931 return
3932
3933 # Skip the following code for modules with no source files
3934 if not self.SourceFileList:
3935 return
3936
3937 # Skip the following code for modules without any binary files
3938 if not self.BinaryFileList:
3939 return
3940
3941 ### TODO: How to handles mixed source and binary modules
3942
3943 # Find all DynamicEx and PatchableInModule PCDs used by this module and dependent libraries
3944 # Also find all packages that the DynamicEx PCDs depend on
3945 Pcds = []
3946 PatchablePcds = []
3947 Packages = []
3948 PcdCheckList = []
3949 PcdTokenSpaceList = []
3950 for Pcd in self.ModulePcdList + self.LibraryPcdList:
3951 if Pcd.Type == TAB_PCDS_PATCHABLE_IN_MODULE:
3952 PatchablePcds += [Pcd]
3953 PcdCheckList.append((Pcd.TokenCName, Pcd.TokenSpaceGuidCName, 'PatchableInModule'))
3954 elif Pcd.Type in GenC.gDynamicExPcd:
3955 if Pcd not in Pcds:
3956 Pcds += [Pcd]
3957 PcdCheckList.append((Pcd.TokenCName, Pcd.TokenSpaceGuidCName, 'DynamicEx'))
3958 PcdCheckList.append((Pcd.TokenCName, Pcd.TokenSpaceGuidCName, 'Dynamic'))
3959 PcdTokenSpaceList.append(Pcd.TokenSpaceGuidCName)
3960 GuidList = OrderedDict()
3961 GuidList.update(self.GuidList)
3962 for TokenSpace in self.GetGuidsUsedByPcd():
3963 # If token space is not referred by patch PCD or Ex PCD, remove the GUID from GUID list
3964 # The GUIDs in GUIDs section should really be the GUIDs in source INF or referred by Ex an patch PCDs
3965 if TokenSpace not in PcdTokenSpaceList and TokenSpace in GuidList:
3966 GuidList.pop(TokenSpace)
3967 CheckList = (GuidList, self.PpiList, self.ProtocolList, PcdCheckList)
3968 for Package in self.DerivedPackageList:
3969 if Package in Packages:
3970 continue
3971 BeChecked = (Package.Guids, Package.Ppis, Package.Protocols, Package.Pcds)
3972 Found = False
3973 for Index in range(len(BeChecked)):
3974 for Item in CheckList[Index]:
3975 if Item in BeChecked[Index]:
3976 Packages += [Package]
3977 Found = True
3978 break
3979 if Found: break
3980
3981 VfrPcds = self._GetPcdsMaybeUsedByVfr()
3982 for Pkg in self.PlatformInfo.PackageList:
3983 if Pkg in Packages:
3984 continue
3985 for VfrPcd in VfrPcds:
3986 if ((VfrPcd.TokenCName, VfrPcd.TokenSpaceGuidCName, 'DynamicEx') in Pkg.Pcds or
3987 (VfrPcd.TokenCName, VfrPcd.TokenSpaceGuidCName, 'Dynamic') in Pkg.Pcds):
3988 Packages += [Pkg]
3989 break
3990
3991 ModuleType = self.ModuleType
3992 if ModuleType == 'UEFI_DRIVER' and self.DepexGenerated:
3993 ModuleType = 'DXE_DRIVER'
3994
3995 DriverType = ''
3996 if self.PcdIsDriver != '':
3997 DriverType = self.PcdIsDriver
3998
3999 Guid = self.Guid
4000 MDefs = self.Module.Defines
4001
4002 AsBuiltInfDict = {
4003 'module_name' : self.Name,
4004 'module_guid' : Guid,
4005 'module_module_type' : ModuleType,
4006 'module_version_string' : [MDefs['VERSION_STRING']] if 'VERSION_STRING' in MDefs else [],
4007 'pcd_is_driver_string' : [],
4008 'module_uefi_specification_version' : [],
4009 'module_pi_specification_version' : [],
4010 'module_entry_point' : self.Module.ModuleEntryPointList,
4011 'module_unload_image' : self.Module.ModuleUnloadImageList,
4012 'module_constructor' : self.Module.ConstructorList,
4013 'module_destructor' : self.Module.DestructorList,
4014 'module_shadow' : [MDefs['SHADOW']] if 'SHADOW' in MDefs else [],
4015 'module_pci_vendor_id' : [MDefs['PCI_VENDOR_ID']] if 'PCI_VENDOR_ID' in MDefs else [],
4016 'module_pci_device_id' : [MDefs['PCI_DEVICE_ID']] if 'PCI_DEVICE_ID' in MDefs else [],
4017 'module_pci_class_code' : [MDefs['PCI_CLASS_CODE']] if 'PCI_CLASS_CODE' in MDefs else [],
4018 'module_pci_revision' : [MDefs['PCI_REVISION']] if 'PCI_REVISION' in MDefs else [],
4019 'module_build_number' : [MDefs['BUILD_NUMBER']] if 'BUILD_NUMBER' in MDefs else [],
4020 'module_spec' : [MDefs['SPEC']] if 'SPEC' in MDefs else [],
4021 'module_uefi_hii_resource_section' : [MDefs['UEFI_HII_RESOURCE_SECTION']] if 'UEFI_HII_RESOURCE_SECTION' in MDefs else [],
4022 'module_uni_file' : [MDefs['MODULE_UNI_FILE']] if 'MODULE_UNI_FILE' in MDefs else [],
4023 'module_arch' : self.Arch,
4024 'package_item' : ['%s' % (Package.MetaFile.File.replace('\\', '/')) for Package in Packages],
4025 'binary_item' : [],
4026 'patchablepcd_item' : [],
4027 'pcd_item' : [],
4028 'protocol_item' : [],
4029 'ppi_item' : [],
4030 'guid_item' : [],
4031 'flags_item' : [],
4032 'libraryclasses_item' : []
4033 }
4034
4035 if 'MODULE_UNI_FILE' in MDefs:
4036 UNIFile = os.path.join(self.MetaFile.Dir, MDefs['MODULE_UNI_FILE'])
4037 if os.path.isfile(UNIFile):
4038 shutil.copy2(UNIFile, self.OutputDir)
4039
4040 if self.AutoGenVersion > int(gInfSpecVersion, 0):
4041 AsBuiltInfDict['module_inf_version'] = '0x%08x' % self.AutoGenVersion
4042 else:
4043 AsBuiltInfDict['module_inf_version'] = gInfSpecVersion
4044
4045 if DriverType:
4046 AsBuiltInfDict['pcd_is_driver_string'] += [DriverType]
4047
4048 if 'UEFI_SPECIFICATION_VERSION' in self.Specification:
4049 AsBuiltInfDict['module_uefi_specification_version'] += [self.Specification['UEFI_SPECIFICATION_VERSION']]
4050 if 'PI_SPECIFICATION_VERSION' in self.Specification:
4051 AsBuiltInfDict['module_pi_specification_version'] += [self.Specification['PI_SPECIFICATION_VERSION']]
4052
4053 OutputDir = self.OutputDir.replace('\\', '/').strip('/')
4054 DebugDir = self.DebugDir.replace('\\', '/').strip('/')
4055 for Item in self.CodaTargetList:
4056 File = Item.Target.Path.replace('\\', '/').strip('/').replace(DebugDir, '').replace(OutputDir, '').strip('/')
4057 self.OutputFile.add(File)
4058 if os.path.isabs(File):
4059 File = File.replace('\\', '/').strip('/').replace(OutputDir, '').strip('/')
4060 if Item.Target.Ext.lower() == '.aml':
4061 AsBuiltInfDict['binary_item'] += ['ASL|' + File]
4062 elif Item.Target.Ext.lower() == '.acpi':
4063 AsBuiltInfDict['binary_item'] += ['ACPI|' + File]
4064 elif Item.Target.Ext.lower() == '.efi':
4065 AsBuiltInfDict['binary_item'] += ['PE32|' + self.Name + '.efi']
4066 else:
4067 AsBuiltInfDict['binary_item'] += ['BIN|' + File]
4068 if self.DepexGenerated:
4069 self.OutputFile.add(self.Name + '.depex')
4070 if self.ModuleType in ['PEIM']:
4071 AsBuiltInfDict['binary_item'] += ['PEI_DEPEX|' + self.Name + '.depex']
4072 if self.ModuleType in ['DXE_DRIVER', 'DXE_RUNTIME_DRIVER', 'DXE_SAL_DRIVER', 'UEFI_DRIVER']:
4073 AsBuiltInfDict['binary_item'] += ['DXE_DEPEX|' + self.Name + '.depex']
4074 if self.ModuleType in ['DXE_SMM_DRIVER']:
4075 AsBuiltInfDict['binary_item'] += ['SMM_DEPEX|' + self.Name + '.depex']
4076
4077 Bin = self._GenOffsetBin()
4078 if Bin:
4079 AsBuiltInfDict['binary_item'] += ['BIN|%s' % Bin]
4080 self.OutputFile.add(Bin)
4081
4082 for Root, Dirs, Files in os.walk(OutputDir):
4083 for File in Files:
4084 if File.lower().endswith('.pdb'):
4085 AsBuiltInfDict['binary_item'] += ['DISPOSABLE|' + File]
4086 self.OutputFile.add(File)
4087 HeaderComments = self.Module.HeaderComments
4088 StartPos = 0
4089 for Index in range(len(HeaderComments)):
4090 if HeaderComments[Index].find('@BinaryHeader') != -1:
4091 HeaderComments[Index] = HeaderComments[Index].replace('@BinaryHeader', '@file')
4092 StartPos = Index
4093 break
4094 AsBuiltInfDict['header_comments'] = '\n'.join(HeaderComments[StartPos:]).replace(':#', '://')
4095 AsBuiltInfDict['tail_comments'] = '\n'.join(self.Module.TailComments)
4096
4097 GenList = [
4098 (self.ProtocolList, self._ProtocolComments, 'protocol_item'),
4099 (self.PpiList, self._PpiComments, 'ppi_item'),
4100 (GuidList, self._GuidComments, 'guid_item')
4101 ]
4102 for Item in GenList:
4103 for CName in Item[0]:
4104 Comments = ''
4105 if CName in Item[1]:
4106 Comments = '\n '.join(Item[1][CName])
4107 Entry = CName
4108 if Comments:
4109 Entry = Comments + '\n ' + CName
4110 AsBuiltInfDict[Item[2]].append(Entry)
4111 PatchList = parsePcdInfoFromMapFile(
4112 os.path.join(self.OutputDir, self.Name + '.map'),
4113 os.path.join(self.OutputDir, self.Name + '.efi')
4114 )
4115 if PatchList:
4116 for Pcd in PatchablePcds:
4117 TokenCName = Pcd.TokenCName
4118 for PcdItem in GlobalData.MixedPcd:
4119 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName) in GlobalData.MixedPcd[PcdItem]:
4120 TokenCName = PcdItem[0]
4121 break
4122 for PatchPcd in PatchList:
4123 if TokenCName == PatchPcd[0]:
4124 break
4125 else:
4126 continue
4127 PcdValue = ''
4128 if Pcd.DatumType == 'BOOLEAN':
4129 BoolValue = Pcd.DefaultValue.upper()
4130 if BoolValue == 'TRUE':
4131 Pcd.DefaultValue = '1'
4132 elif BoolValue == 'FALSE':
4133 Pcd.DefaultValue = '0'
4134
4135 if Pcd.DatumType in ['UINT8', 'UINT16', 'UINT32', 'UINT64', 'BOOLEAN']:
4136 HexFormat = '0x%02x'
4137 if Pcd.DatumType == 'UINT16':
4138 HexFormat = '0x%04x'
4139 elif Pcd.DatumType == 'UINT32':
4140 HexFormat = '0x%08x'
4141 elif Pcd.DatumType == 'UINT64':
4142 HexFormat = '0x%016x'
4143 PcdValue = HexFormat % int(Pcd.DefaultValue, 0)
4144 else:
4145 if Pcd.MaxDatumSize is None or Pcd.MaxDatumSize == '':
4146 EdkLogger.error("build", AUTOGEN_ERROR,
4147 "Unknown [MaxDatumSize] of PCD [%s.%s]" % (Pcd.TokenSpaceGuidCName, TokenCName)
4148 )
4149 ArraySize = int(Pcd.MaxDatumSize, 0)
4150 PcdValue = Pcd.DefaultValue
4151 if PcdValue[0] != '{':
4152 Unicode = False
4153 if PcdValue[0] == 'L':
4154 Unicode = True
4155 PcdValue = PcdValue.lstrip('L')
4156 PcdValue = eval(PcdValue)
4157 NewValue = '{'
4158 for Index in range(0, len(PcdValue)):
4159 if Unicode:
4160 CharVal = ord(PcdValue[Index])
4161 NewValue = NewValue + '0x%02x' % (CharVal & 0x00FF) + ', ' \
4162 + '0x%02x' % (CharVal >> 8) + ', '
4163 else:
4164 NewValue = NewValue + '0x%02x' % (ord(PcdValue[Index]) % 0x100) + ', '
4165 Padding = '0x00, '
4166 if Unicode:
4167 Padding = Padding * 2
4168 ArraySize = ArraySize / 2
4169 if ArraySize < (len(PcdValue) + 1):
4170 EdkLogger.error("build", AUTOGEN_ERROR,
4171 "The maximum size of VOID* type PCD '%s.%s' is less than its actual size occupied." % (Pcd.TokenSpaceGuidCName, TokenCName)
4172 )
4173 if ArraySize > len(PcdValue) + 1:
4174 NewValue = NewValue + Padding * (ArraySize - len(PcdValue) - 1)
4175 PcdValue = NewValue + Padding.strip().rstrip(',') + '}'
4176 elif len(PcdValue.split(',')) <= ArraySize:
4177 PcdValue = PcdValue.rstrip('}') + ', 0x00' * (ArraySize - len(PcdValue.split(',')))
4178 PcdValue += '}'
4179 else:
4180 EdkLogger.error("build", AUTOGEN_ERROR,
4181 "The maximum size of VOID* type PCD '%s.%s' is less than its actual size occupied." % (Pcd.TokenSpaceGuidCName, TokenCName)
4182 )
4183 PcdItem = '%s.%s|%s|0x%X' % \
4184 (Pcd.TokenSpaceGuidCName, TokenCName, PcdValue, PatchPcd[1])
4185 PcdComments = ''
4186 if (Pcd.TokenSpaceGuidCName, Pcd.TokenCName) in self._PcdComments:
4187 PcdComments = '\n '.join(self._PcdComments[Pcd.TokenSpaceGuidCName, Pcd.TokenCName])
4188 if PcdComments:
4189 PcdItem = PcdComments + '\n ' + PcdItem
4190 AsBuiltInfDict['patchablepcd_item'].append(PcdItem)
4191
4192 HiiPcds = []
4193 for Pcd in Pcds + VfrPcds:
4194 PcdComments = ''
4195 PcdCommentList = []
4196 HiiInfo = ''
4197 SkuId = ''
4198 TokenCName = Pcd.TokenCName
4199 for PcdItem in GlobalData.MixedPcd:
4200 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName) in GlobalData.MixedPcd[PcdItem]:
4201 TokenCName = PcdItem[0]
4202 break
4203 if Pcd.Type == TAB_PCDS_DYNAMIC_EX_HII:
4204 for SkuName in Pcd.SkuInfoList:
4205 SkuInfo = Pcd.SkuInfoList[SkuName]
4206 SkuId = SkuInfo.SkuId
4207 HiiInfo = '## %s|%s|%s' % (SkuInfo.VariableName, SkuInfo.VariableGuid, SkuInfo.VariableOffset)
4208 break
4209 if SkuId:
4210 #
4211 # Don't generate duplicated HII PCD
4212 #
4213 if (SkuId, Pcd.TokenSpaceGuidCName, Pcd.TokenCName) in HiiPcds:
4214 continue
4215 else:
4216 HiiPcds.append((SkuId, Pcd.TokenSpaceGuidCName, Pcd.TokenCName))
4217 if (Pcd.TokenSpaceGuidCName, Pcd.TokenCName) in self._PcdComments:
4218 PcdCommentList = self._PcdComments[Pcd.TokenSpaceGuidCName, Pcd.TokenCName][:]
4219 if HiiInfo:
4220 UsageIndex = -1
4221 UsageStr = ''
4222 for Index, Comment in enumerate(PcdCommentList):
4223 for Usage in UsageList:
4224 if Comment.find(Usage) != -1:
4225 UsageStr = Usage
4226 UsageIndex = Index
4227 break
4228 if UsageIndex != -1:
4229 PcdCommentList[UsageIndex] = '## %s %s %s' % (UsageStr, HiiInfo, PcdCommentList[UsageIndex].replace(UsageStr, ''))
4230 else:
4231 PcdCommentList.append('## UNDEFINED ' + HiiInfo)
4232 PcdComments = '\n '.join(PcdCommentList)
4233 PcdEntry = Pcd.TokenSpaceGuidCName + '.' + TokenCName
4234 if PcdComments:
4235 PcdEntry = PcdComments + '\n ' + PcdEntry
4236 AsBuiltInfDict['pcd_item'] += [PcdEntry]
4237 for Item in self.BuildOption:
4238 if 'FLAGS' in self.BuildOption[Item]:
4239 AsBuiltInfDict['flags_item'] += ['%s:%s_%s_%s_%s_FLAGS = %s' % (self.ToolChainFamily, self.BuildTarget, self.ToolChain, self.Arch, Item, self.BuildOption[Item]['FLAGS'].strip())]
4240
4241 # Generated LibraryClasses section in comments.
4242 for Library in self.LibraryAutoGenList:
4243 AsBuiltInfDict['libraryclasses_item'] += [Library.MetaFile.File.replace('\\', '/')]
4244
4245 # Generated UserExtensions TianoCore section.
4246 # All tianocore user extensions are copied.
4247 UserExtStr = ''
4248 for TianoCore in self._GetTianoCoreUserExtensionList():
4249 UserExtStr += '\n'.join(TianoCore)
4250 ExtensionFile = os.path.join(self.MetaFile.Dir, TianoCore[1])
4251 if os.path.isfile(ExtensionFile):
4252 shutil.copy2(ExtensionFile, self.OutputDir)
4253 AsBuiltInfDict['userextension_tianocore_item'] = UserExtStr
4254
4255 # Generated depex expression section in comments.
4256 AsBuiltInfDict['depexsection_item'] = ''
4257 DepexExpresion = self._GetDepexExpresionString()
4258 if DepexExpresion:
4259 AsBuiltInfDict['depexsection_item'] = DepexExpresion
4260
4261 AsBuiltInf = TemplateString()
4262 AsBuiltInf.Append(gAsBuiltInfHeaderString.Replace(AsBuiltInfDict))
4263
4264 SaveFileOnChange(os.path.join(self.OutputDir, self.Name + '.inf'), str(AsBuiltInf), False)
4265
4266 self.IsAsBuiltInfCreated = True
4267 if GlobalData.gBinCacheDest:
4268 self.CopyModuleToCache()
4269
4270 def CopyModuleToCache(self):
4271 FileDir = path.join(GlobalData.gBinCacheDest, self.Arch, self.SourceDir, self.MetaFile.BaseName)
4272 CreateDirectory (FileDir)
4273 HashFile = path.join(self.BuildDir, self.Name + '.hash')
4274 ModuleFile = path.join(self.OutputDir, self.Name + '.inf')
4275 if os.path.exists(HashFile):
4276 shutil.copy2(HashFile, FileDir)
4277 if os.path.exists(ModuleFile):
4278 shutil.copy2(ModuleFile, FileDir)
4279 if not self.OutputFile:
4280 Ma = self.Workspace.BuildDatabase[PathClass(ModuleFile), self.Arch, self.BuildTarget, self.ToolChain]
4281 self.OutputFile = Ma.Binaries
4282 if self.OutputFile:
4283 for File in self.OutputFile:
4284 File = str(File)
4285 if not os.path.isabs(File):
4286 File = os.path.join(self.OutputDir, File)
4287 if os.path.exists(File):
4288 shutil.copy2(File, FileDir)
4289
4290 def AttemptModuleCacheCopy(self):
4291 if self.IsBinaryModule:
4292 return False
4293 FileDir = path.join(GlobalData.gBinCacheSource, self.Arch, self.SourceDir, self.MetaFile.BaseName)
4294 HashFile = path.join(FileDir, self.Name + '.hash')
4295 if os.path.exists(HashFile):
4296 f = open(HashFile, 'r')
4297 CacheHash = f.read()
4298 f.close()
4299 if GlobalData.gModuleHash[self.Arch][self.Name]:
4300 if CacheHash == GlobalData.gModuleHash[self.Arch][self.Name]:
4301 for root, dir, files in os.walk(FileDir):
4302 for f in files:
4303 if self.Name + '.hash' in f:
4304 shutil.copy2(HashFile, self.BuildDir)
4305 else:
4306 File = path.join(root, f)
4307 shutil.copy2(File, self.OutputDir)
4308 if self.Name == "PcdPeim" or self.Name == "PcdDxe":
4309 CreatePcdDatabaseCode(self, TemplateString(), TemplateString())
4310 return True
4311 return False
4312
4313 ## Create makefile for the module and its dependent libraries
4314 #
4315 # @param CreateLibraryMakeFile Flag indicating if or not the makefiles of
4316 # dependent libraries will be created
4317 #
4318 def CreateMakeFile(self, CreateLibraryMakeFile=True, GenFfsList = []):
4319 # Ignore generating makefile when it is a binary module
4320 if self.IsBinaryModule:
4321 return
4322
4323 if self.IsMakeFileCreated:
4324 return
4325 self.GenFfsList = GenFfsList
4326 if not self.IsLibrary and CreateLibraryMakeFile:
4327 for LibraryAutoGen in self.LibraryAutoGenList:
4328 LibraryAutoGen.CreateMakeFile()
4329
4330 if self.CanSkip():
4331 return
4332
4333 if len(self.CustomMakefile) == 0:
4334 Makefile = GenMake.ModuleMakefile(self)
4335 else:
4336 Makefile = GenMake.CustomMakefile(self)
4337 if Makefile.Generate():
4338 EdkLogger.debug(EdkLogger.DEBUG_9, "Generated makefile for module %s [%s]" %
4339 (self.Name, self.Arch))
4340 else:
4341 EdkLogger.debug(EdkLogger.DEBUG_9, "Skipped the generation of makefile for module %s [%s]" %
4342 (self.Name, self.Arch))
4343
4344 self.CreateTimeStamp(Makefile)
4345 self.IsMakeFileCreated = True
4346
4347 def CopyBinaryFiles(self):
4348 for File in self.Module.Binaries:
4349 SrcPath = File.Path
4350 DstPath = os.path.join(self.OutputDir , os.path.basename(SrcPath))
4351 CopyLongFilePath(SrcPath, DstPath)
4352 ## Create autogen code for the module and its dependent libraries
4353 #
4354 # @param CreateLibraryCodeFile Flag indicating if or not the code of
4355 # dependent libraries will be created
4356 #
4357 def CreateCodeFile(self, CreateLibraryCodeFile=True):
4358 if self.IsCodeFileCreated:
4359 return
4360
4361 # Need to generate PcdDatabase even PcdDriver is binarymodule
4362 if self.IsBinaryModule and self.PcdIsDriver != '':
4363 CreatePcdDatabaseCode(self, TemplateString(), TemplateString())
4364 return
4365 if self.IsBinaryModule:
4366 if self.IsLibrary:
4367 self.CopyBinaryFiles()
4368 return
4369
4370 if not self.IsLibrary and CreateLibraryCodeFile:
4371 for LibraryAutoGen in self.LibraryAutoGenList:
4372 LibraryAutoGen.CreateCodeFile()
4373
4374 if self.CanSkip():
4375 return
4376
4377 AutoGenList = []
4378 IgoredAutoGenList = []
4379
4380 for File in self.AutoGenFileList:
4381 if GenC.Generate(File.Path, self.AutoGenFileList[File], File.IsBinary):
4382 #Ignore Edk AutoGen.c
4383 if self.AutoGenVersion < 0x00010005 and File.Name == 'AutoGen.c':
4384 continue
4385
4386 AutoGenList.append(str(File))
4387 else:
4388 IgoredAutoGenList.append(str(File))
4389
4390 # Skip the following code for EDK I inf
4391 if self.AutoGenVersion < 0x00010005:
4392 return
4393
4394 for ModuleType in self.DepexList:
4395 # Ignore empty [depex] section or [depex] section for "USER_DEFINED" module
4396 if len(self.DepexList[ModuleType]) == 0 or ModuleType == "USER_DEFINED":
4397 continue
4398
4399 Dpx = GenDepex.DependencyExpression(self.DepexList[ModuleType], ModuleType, True)
4400 DpxFile = gAutoGenDepexFileName % {"module_name" : self.Name}
4401
4402 if len(Dpx.PostfixNotation) <> 0:
4403 self.DepexGenerated = True
4404
4405 if Dpx.Generate(path.join(self.OutputDir, DpxFile)):
4406 AutoGenList.append(str(DpxFile))
4407 else:
4408 IgoredAutoGenList.append(str(DpxFile))
4409
4410 if IgoredAutoGenList == []:
4411 EdkLogger.debug(EdkLogger.DEBUG_9, "Generated [%s] files for module %s [%s]" %
4412 (" ".join(AutoGenList), self.Name, self.Arch))
4413 elif AutoGenList == []:
4414 EdkLogger.debug(EdkLogger.DEBUG_9, "Skipped the generation of [%s] files for module %s [%s]" %
4415 (" ".join(IgoredAutoGenList), self.Name, self.Arch))
4416 else:
4417 EdkLogger.debug(EdkLogger.DEBUG_9, "Generated [%s] (skipped %s) files for module %s [%s]" %
4418 (" ".join(AutoGenList), " ".join(IgoredAutoGenList), self.Name, self.Arch))
4419
4420 self.IsCodeFileCreated = True
4421 return AutoGenList
4422
4423 ## Summarize the ModuleAutoGen objects of all libraries used by this module
4424 def _GetLibraryAutoGenList(self):
4425 if self._LibraryAutoGenList is None:
4426 self._LibraryAutoGenList = []
4427 for Library in self.DependentLibraryList:
4428 La = ModuleAutoGen(
4429 self.Workspace,
4430 Library.MetaFile,
4431 self.BuildTarget,
4432 self.ToolChain,
4433 self.Arch,
4434 self.PlatformInfo.MetaFile
4435 )
4436 if La not in self._LibraryAutoGenList:
4437 self._LibraryAutoGenList.append(La)
4438 for Lib in La.CodaTargetList:
4439 self._ApplyBuildRule(Lib.Target, TAB_UNKNOWN_FILE)
4440 return self._LibraryAutoGenList
4441
4442 def GenModuleHash(self):
4443 if self.Arch not in GlobalData.gModuleHash:
4444 GlobalData.gModuleHash[self.Arch] = {}
4445 m = hashlib.md5()
4446 # Add Platform level hash
4447 m.update(GlobalData.gPlatformHash)
4448 # Add Package level hash
4449 if self.DependentPackageList:
4450 for Pkg in self.DependentPackageList:
4451 if Pkg.PackageName in GlobalData.gPackageHash[self.Arch]:
4452 m.update(GlobalData.gPackageHash[self.Arch][Pkg.PackageName])
4453
4454 # Add Library hash
4455 if self.LibraryAutoGenList:
4456 for Lib in self.LibraryAutoGenList:
4457 if Lib.Name not in GlobalData.gModuleHash[self.Arch]:
4458 Lib.GenModuleHash()
4459 m.update(GlobalData.gModuleHash[self.Arch][Lib.Name])
4460
4461 # Add Module self
4462 f = open(str(self.MetaFile), 'r')
4463 Content = f.read()
4464 f.close()
4465 m.update(Content)
4466 # Add Module's source files
4467 if self.SourceFileList:
4468 for File in self.SourceFileList:
4469 f = open(str(File), 'r')
4470 Content = f.read()
4471 f.close()
4472 m.update(Content)
4473
4474 ModuleHashFile = path.join(self.BuildDir, self.Name + ".hash")
4475 if self.Name not in GlobalData.gModuleHash[self.Arch]:
4476 GlobalData.gModuleHash[self.Arch][self.Name] = m.hexdigest()
4477 if GlobalData.gBinCacheSource:
4478 CacheValid = self.AttemptModuleCacheCopy()
4479 if CacheValid:
4480 return False
4481 return SaveFileOnChange(ModuleHashFile, m.hexdigest(), True)
4482
4483 ## Decide whether we can skip the ModuleAutoGen process
4484 def CanSkipbyHash(self):
4485 if GlobalData.gUseHashCache:
4486 return not self.GenModuleHash()
4487
4488 ## Decide whether we can skip the ModuleAutoGen process
4489 # If any source file is newer than the module than we cannot skip
4490 #
4491 def CanSkip(self):
4492 if not os.path.exists(self.GetTimeStampPath()):
4493 return False
4494 #last creation time of the module
4495 DstTimeStamp = os.stat(self.GetTimeStampPath())[8]
4496
4497 SrcTimeStamp = self.Workspace._SrcTimeStamp
4498 if SrcTimeStamp > DstTimeStamp:
4499 return False
4500
4501 with open(self.GetTimeStampPath(),'r') as f:
4502 for source in f:
4503 source = source.rstrip('\n')
4504 if not os.path.exists(source):
4505 return False
4506 if source not in ModuleAutoGen.TimeDict :
4507 ModuleAutoGen.TimeDict[source] = os.stat(source)[8]
4508 if ModuleAutoGen.TimeDict[source] > DstTimeStamp:
4509 return False
4510 return True
4511
4512 def GetTimeStampPath(self):
4513 if self._TimeStampPath is None:
4514 self._TimeStampPath = os.path.join(self.MakeFileDir, 'AutoGenTimeStamp')
4515 return self._TimeStampPath
4516 def CreateTimeStamp(self, Makefile):
4517
4518 FileSet = set()
4519
4520 FileSet.add (self.MetaFile.Path)
4521
4522 for SourceFile in self.Module.Sources:
4523 FileSet.add (SourceFile.Path)
4524
4525 for Lib in self.DependentLibraryList:
4526 FileSet.add (Lib.MetaFile.Path)
4527
4528 for f in self.AutoGenDepSet:
4529 FileSet.add (f.Path)
4530
4531 if os.path.exists (self.GetTimeStampPath()):
4532 os.remove (self.GetTimeStampPath())
4533 with open(self.GetTimeStampPath(), 'w+') as file:
4534 for f in FileSet:
4535 print >> file, f
4536
4537 Module = property(_GetModule)
4538 Name = property(_GetBaseName)
4539 Guid = property(_GetGuid)
4540 Version = property(_GetVersion)
4541 ModuleType = property(_GetModuleType)
4542 ComponentType = property(_GetComponentType)
4543 BuildType = property(_GetBuildType)
4544 PcdIsDriver = property(_GetPcdIsDriver)
4545 AutoGenVersion = property(_GetAutoGenVersion)
4546 Macros = property(_GetMacros)
4547 Specification = property(_GetSpecification)
4548
4549 IsLibrary = property(_IsLibrary)
4550 IsBinaryModule = property(_IsBinaryModule)
4551 BuildDir = property(_GetBuildDir)
4552 OutputDir = property(_GetOutputDir)
4553 FfsOutputDir = property(_GetFfsOutputDir)
4554 DebugDir = property(_GetDebugDir)
4555 MakeFileDir = property(_GetMakeFileDir)
4556 CustomMakefile = property(_GetCustomMakefile)
4557
4558 IncludePathList = property(_GetIncludePathList)
4559 IncludePathLength = property(_GetIncludePathLength)
4560 AutoGenFileList = property(_GetAutoGenFileList)
4561 UnicodeFileList = property(_GetUnicodeFileList)
4562 VfrFileList = property(_GetVfrFileList)
4563 SourceFileList = property(_GetSourceFileList)
4564 BinaryFileList = property(_GetBinaryFiles) # FileType : [File List]
4565 Targets = property(_GetTargets)
4566 IntroTargetList = property(_GetIntroTargetList)
4567 CodaTargetList = property(_GetFinalTargetList)
4568 FileTypes = property(_GetFileTypes)
4569 BuildRules = property(_GetBuildRules)
4570 IdfFileList = property(_GetIdfFileList)
4571
4572 DependentPackageList = property(_GetDependentPackageList)
4573 DependentLibraryList = property(_GetLibraryList)
4574 LibraryAutoGenList = property(_GetLibraryAutoGenList)
4575 DerivedPackageList = property(_GetDerivedPackageList)
4576
4577 ModulePcdList = property(_GetModulePcdList)
4578 LibraryPcdList = property(_GetLibraryPcdList)
4579 GuidList = property(_GetGuidList)
4580 ProtocolList = property(_GetProtocolList)
4581 PpiList = property(_GetPpiList)
4582 DepexList = property(_GetDepexTokenList)
4583 DxsFile = property(_GetDxsFile)
4584 DepexExpressionList = property(_GetDepexExpressionTokenList)
4585 BuildOption = property(_GetModuleBuildOption)
4586 BuildOptionIncPathList = property(_GetBuildOptionIncPathList)
4587 BuildCommand = property(_GetBuildCommand)
4588
4589 FixedAtBuildPcds = property(_GetFixedAtBuildPcds)
4590
4591 # This acts like the main() function for the script, unless it is 'import'ed into another script.
4592 if __name__ == '__main__':
4593 pass
4594