]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/AutoGen/AutoGen.py
BaseTools: Append FILE_GUID to BaseName.
[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 - 2015, 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
44 import InfSectionParser
45
46 ## Regular expression for splitting Dependency Expression string into tokens
47 gDepexTokenPattern = re.compile("(\(|\)|\w+| \S+\.inf)")
48
49 #
50 # Match name = variable
51 #
52 gEfiVarStoreNamePattern = re.compile("\s*name\s*=\s*(\w+)")
53 #
54 # The format of guid in efivarstore statement likes following and must be correct:
55 # guid = {0xA04A27f4, 0xDF00, 0x4D42, {0xB5, 0x52, 0x39, 0x51, 0x13, 0x02, 0x11, 0x3D}}
56 #
57 gEfiVarStoreGuidPattern = re.compile("\s*guid\s*=\s*({.*?{.*?}\s*})")
58
59 ## Mapping Makefile type
60 gMakeTypeMap = {"MSFT":"nmake", "GCC":"gmake"}
61
62
63 ## Build rule configuration file
64 gDefaultBuildRuleFile = 'Conf/build_rule.txt'
65
66 ## Build rule default version
67 AutoGenReqBuildRuleVerNum = "0.1"
68
69 ## default file name for AutoGen
70 gAutoGenCodeFileName = "AutoGen.c"
71 gAutoGenHeaderFileName = "AutoGen.h"
72 gAutoGenStringFileName = "%(module_name)sStrDefs.h"
73 gAutoGenStringFormFileName = "%(module_name)sStrDefs.hpk"
74 gAutoGenDepexFileName = "%(module_name)s.depex"
75
76 gInfSpecVersion = "0x00010017"
77
78 #
79 # Template string to generic AsBuilt INF
80 #
81 gAsBuiltInfHeaderString = TemplateString("""${header_comments}
82
83 # DO NOT EDIT
84 # FILE auto-generated
85
86 [Defines]
87 INF_VERSION = ${module_inf_version}
88 BASE_NAME = ${module_name}
89 FILE_GUID = ${module_guid}
90 MODULE_TYPE = ${module_module_type}${BEGIN}
91 VERSION_STRING = ${module_version_string}${END}${BEGIN}
92 PCD_IS_DRIVER = ${pcd_is_driver_string}${END}${BEGIN}
93 UEFI_SPECIFICATION_VERSION = ${module_uefi_specification_version}${END}${BEGIN}
94 PI_SPECIFICATION_VERSION = ${module_pi_specification_version}${END}${BEGIN}
95 ENTRY_POINT = ${module_entry_point}${END}${BEGIN}
96 UNLOAD_IMAGE = ${module_unload_image}${END}${BEGIN}
97 CONSTRUCTOR = ${module_constructor}${END}${BEGIN}
98 DESTRUCTOR = ${module_destructor}${END}${BEGIN}
99 SHADOW = ${module_shadow}${END}${BEGIN}
100 PCI_VENDOR_ID = ${module_pci_vendor_id}${END}${BEGIN}
101 PCI_DEVICE_ID = ${module_pci_device_id}${END}${BEGIN}
102 PCI_CLASS_CODE = ${module_pci_class_code}${END}${BEGIN}
103 PCI_REVISION = ${module_pci_revision}${END}${BEGIN}
104 BUILD_NUMBER = ${module_build_number}${END}${BEGIN}
105 SPEC = ${module_spec}${END}${BEGIN}
106 UEFI_HII_RESOURCE_SECTION = ${module_uefi_hii_resource_section}${END}${BEGIN}
107 MODULE_UNI_FILE = ${module_uni_file}${END}
108
109 [Packages.${module_arch}]${BEGIN}
110 ${package_item}${END}
111
112 [Binaries.${module_arch}]${BEGIN}
113 ${binary_item}${END}
114
115 [PatchPcd.${module_arch}]${BEGIN}
116 ${patchablepcd_item}
117 ${END}
118
119 [Protocols.${module_arch}]${BEGIN}
120 ${protocol_item}
121 ${END}
122
123 [Ppis.${module_arch}]${BEGIN}
124 ${ppi_item}
125 ${END}
126
127 [Guids.${module_arch}]${BEGIN}
128 ${guid_item}
129 ${END}
130
131 [PcdEx.${module_arch}]${BEGIN}
132 ${pcd_item}
133 ${END}
134
135 [LibraryClasses.${module_arch}]
136 ## @LIB_INSTANCES${BEGIN}
137 # ${libraryclasses_item}${END}
138
139 ${depexsection_item}
140
141 ${tail_comments}
142
143 [BuildOptions.${module_arch}]
144 ## @AsBuilt${BEGIN}
145 ## ${flags_item}${END}
146 """)
147
148 ## Base class for AutoGen
149 #
150 # This class just implements the cache mechanism of AutoGen objects.
151 #
152 class AutoGen(object):
153 # database to maintain the objects of xxxAutoGen
154 _CACHE_ = {} # (BuildTarget, ToolChain) : {ARCH : {platform file: AutoGen object}}}
155
156 ## Factory method
157 #
158 # @param Class class object of real AutoGen class
159 # (WorkspaceAutoGen, ModuleAutoGen or PlatformAutoGen)
160 # @param Workspace Workspace directory or WorkspaceAutoGen object
161 # @param MetaFile The path of meta file
162 # @param Target Build target
163 # @param Toolchain Tool chain name
164 # @param Arch Target arch
165 # @param *args The specific class related parameters
166 # @param **kwargs The specific class related dict parameters
167 #
168 def __new__(Class, Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs):
169 # check if the object has been created
170 Key = (Target, Toolchain)
171 if Key not in Class._CACHE_ or Arch not in Class._CACHE_[Key] \
172 or MetaFile not in Class._CACHE_[Key][Arch]:
173 AutoGenObject = super(AutoGen, Class).__new__(Class)
174 # call real constructor
175 if not AutoGenObject._Init(Workspace, MetaFile, Target, Toolchain, Arch, *args, **kwargs):
176 return None
177 if Key not in Class._CACHE_:
178 Class._CACHE_[Key] = {}
179 if Arch not in Class._CACHE_[Key]:
180 Class._CACHE_[Key][Arch] = {}
181 Class._CACHE_[Key][Arch][MetaFile] = AutoGenObject
182 else:
183 AutoGenObject = Class._CACHE_[Key][Arch][MetaFile]
184
185 return AutoGenObject
186
187 ## hash() operator
188 #
189 # The file path of platform file will be used to represent hash value of this object
190 #
191 # @retval int Hash value of the file path of platform file
192 #
193 def __hash__(self):
194 return hash(self.MetaFile)
195
196 ## str() operator
197 #
198 # The file path of platform file will be used to represent this object
199 #
200 # @retval string String of platform file path
201 #
202 def __str__(self):
203 return str(self.MetaFile)
204
205 ## "==" operator
206 def __eq__(self, Other):
207 return Other and self.MetaFile == Other
208
209 ## Workspace AutoGen class
210 #
211 # This class is used mainly to control the whole platform build for different
212 # architecture. This class will generate top level makefile.
213 #
214 class WorkspaceAutoGen(AutoGen):
215 ## Real constructor of WorkspaceAutoGen
216 #
217 # This method behaves the same as __init__ except that it needs explicit invoke
218 # (in super class's __new__ method)
219 #
220 # @param WorkspaceDir Root directory of workspace
221 # @param ActivePlatform Meta-file of active platform
222 # @param Target Build target
223 # @param Toolchain Tool chain name
224 # @param ArchList List of architecture of current build
225 # @param MetaFileDb Database containing meta-files
226 # @param BuildConfig Configuration of build
227 # @param ToolDefinition Tool chain definitions
228 # @param FlashDefinitionFile File of flash definition
229 # @param Fds FD list to be generated
230 # @param Fvs FV list to be generated
231 # @param Caps Capsule list to be generated
232 # @param SkuId SKU id from command line
233 #
234 def _Init(self, WorkspaceDir, ActivePlatform, Target, Toolchain, ArchList, MetaFileDb,
235 BuildConfig, ToolDefinition, FlashDefinitionFile='', Fds=None, Fvs=None, Caps=None, SkuId='', UniFlag=None,
236 Progress=None, BuildModule=None):
237 if Fds is None:
238 Fds = []
239 if Fvs is None:
240 Fvs = []
241 if Caps is None:
242 Caps = []
243 self.BuildDatabase = MetaFileDb
244 self.MetaFile = ActivePlatform
245 self.WorkspaceDir = WorkspaceDir
246 self.Platform = self.BuildDatabase[self.MetaFile, 'COMMON', Target, Toolchain]
247 GlobalData.gActivePlatform = self.Platform
248 self.BuildTarget = Target
249 self.ToolChain = Toolchain
250 self.ArchList = ArchList
251 self.SkuId = SkuId
252 self.UniFlag = UniFlag
253
254 self.TargetTxt = BuildConfig
255 self.ToolDef = ToolDefinition
256 self.FdfFile = FlashDefinitionFile
257 self.FdTargetList = Fds
258 self.FvTargetList = Fvs
259 self.CapTargetList = Caps
260 self.AutoGenObjectList = []
261
262 # there's many relative directory operations, so ...
263 os.chdir(self.WorkspaceDir)
264
265 #
266 # Merge Arch
267 #
268 if not self.ArchList:
269 ArchList = set(self.Platform.SupArchList)
270 else:
271 ArchList = set(self.ArchList) & set(self.Platform.SupArchList)
272 if not ArchList:
273 EdkLogger.error("build", PARAMETER_INVALID,
274 ExtraData = "Invalid ARCH specified. [Valid ARCH: %s]" % (" ".join(self.Platform.SupArchList)))
275 elif self.ArchList and len(ArchList) != len(self.ArchList):
276 SkippedArchList = set(self.ArchList).symmetric_difference(set(self.Platform.SupArchList))
277 EdkLogger.verbose("\nArch [%s] is ignored because the platform supports [%s] only!"
278 % (" ".join(SkippedArchList), " ".join(self.Platform.SupArchList)))
279 self.ArchList = tuple(ArchList)
280
281 # Validate build target
282 if self.BuildTarget not in self.Platform.BuildTargets:
283 EdkLogger.error("build", PARAMETER_INVALID,
284 ExtraData="Build target [%s] is not supported by the platform. [Valid target: %s]"
285 % (self.BuildTarget, " ".join(self.Platform.BuildTargets)))
286
287
288 # parse FDF file to get PCDs in it, if any
289 if not self.FdfFile:
290 self.FdfFile = self.Platform.FlashDefinition
291
292 EdkLogger.info("")
293 if self.ArchList:
294 EdkLogger.info('%-16s = %s' % ("Architecture(s)", ' '.join(self.ArchList)))
295 EdkLogger.info('%-16s = %s' % ("Build target", self.BuildTarget))
296 EdkLogger.info('%-16s = %s' % ("Toolchain",self.ToolChain))
297
298 EdkLogger.info('\n%-24s = %s' % ("Active Platform", self.Platform))
299 if BuildModule:
300 EdkLogger.info('%-24s = %s' % ("Active Module", BuildModule))
301
302 if self.FdfFile:
303 EdkLogger.info('%-24s = %s' % ("Flash Image Definition", self.FdfFile))
304
305 EdkLogger.verbose("\nFLASH_DEFINITION = %s" % self.FdfFile)
306
307 if Progress:
308 Progress.Start("\nProcessing meta-data")
309
310 if self.FdfFile:
311 #
312 # Mark now build in AutoGen Phase
313 #
314 GlobalData.gAutoGenPhase = True
315 Fdf = FdfParser(self.FdfFile.Path)
316 Fdf.ParseFile()
317 GlobalData.gFdfParser = Fdf
318 GlobalData.gAutoGenPhase = False
319 PcdSet = Fdf.Profile.PcdDict
320 ModuleList = Fdf.Profile.InfList
321 self.FdfProfile = Fdf.Profile
322 for fvname in self.FvTargetList:
323 if fvname.upper() not in self.FdfProfile.FvDict:
324 EdkLogger.error("build", OPTION_VALUE_INVALID,
325 "No such an FV in FDF file: %s" % fvname)
326 else:
327 PcdSet = {}
328 ModuleList = []
329 self.FdfProfile = None
330 if self.FdTargetList:
331 EdkLogger.info("No flash definition file found. FD [%s] will be ignored." % " ".join(self.FdTargetList))
332 self.FdTargetList = []
333 if self.FvTargetList:
334 EdkLogger.info("No flash definition file found. FV [%s] will be ignored." % " ".join(self.FvTargetList))
335 self.FvTargetList = []
336 if self.CapTargetList:
337 EdkLogger.info("No flash definition file found. Capsule [%s] will be ignored." % " ".join(self.CapTargetList))
338 self.CapTargetList = []
339
340 # apply SKU and inject PCDs from Flash Definition file
341 for Arch in self.ArchList:
342 Platform = self.BuildDatabase[self.MetaFile, Arch, Target, Toolchain]
343
344 DecPcds = {}
345 DecPcdsKey = set()
346 PGen = PlatformAutoGen(self, self.MetaFile, Target, Toolchain, Arch)
347 #Collect package set information from INF of FDF
348 PkgSet = set()
349 for Inf in ModuleList:
350 ModuleFile = PathClass(NormPath(Inf), GlobalData.gWorkspace, Arch)
351 if ModuleFile in Platform.Modules:
352 continue
353 ModuleData = self.BuildDatabase[ModuleFile, Arch, Target, Toolchain]
354 PkgSet.update(ModuleData.Packages)
355 Pkgs = list(PkgSet) + list(PGen.PackageList)
356 for Pkg in Pkgs:
357 for Pcd in Pkg.Pcds:
358 DecPcds[Pcd[0], Pcd[1]] = Pkg.Pcds[Pcd]
359 DecPcdsKey.add((Pcd[0], Pcd[1], Pcd[2]))
360
361 Platform.SkuName = self.SkuId
362 for Name, Guid in PcdSet:
363 if (Name, Guid) not in DecPcds:
364 EdkLogger.error(
365 'build',
366 PARSER_ERROR,
367 "PCD (%s.%s) used in FDF is not declared in DEC files." % (Guid, Name),
368 File = self.FdfProfile.PcdFileLineDict[Name, Guid][0],
369 Line = self.FdfProfile.PcdFileLineDict[Name, Guid][1]
370 )
371 else:
372 # Check whether Dynamic or DynamicEx PCD used in FDF file. If used, build break and give a error message.
373 if (Name, Guid, TAB_PCDS_FIXED_AT_BUILD) in DecPcdsKey \
374 or (Name, Guid, TAB_PCDS_PATCHABLE_IN_MODULE) in DecPcdsKey \
375 or (Name, Guid, TAB_PCDS_FEATURE_FLAG) in DecPcdsKey:
376 Platform.AddPcd(Name, Guid, PcdSet[Name, Guid])
377 continue
378 elif (Name, Guid, TAB_PCDS_DYNAMIC) in DecPcdsKey or (Name, Guid, TAB_PCDS_DYNAMIC_EX) in DecPcdsKey:
379 EdkLogger.error(
380 'build',
381 PARSER_ERROR,
382 "Using Dynamic or DynamicEx type of PCD [%s.%s] in FDF file is not allowed." % (Guid, Name),
383 File = self.FdfProfile.PcdFileLineDict[Name, Guid][0],
384 Line = self.FdfProfile.PcdFileLineDict[Name, Guid][1]
385 )
386
387 Pa = PlatformAutoGen(self, self.MetaFile, Target, Toolchain, Arch)
388 #
389 # Explicitly collect platform's dynamic PCDs
390 #
391 Pa.CollectPlatformDynamicPcds()
392 Pa.CollectFixedAtBuildPcds()
393 self.AutoGenObjectList.append(Pa)
394
395 #
396 # Check PCDs token value conflict in each DEC file.
397 #
398 self._CheckAllPcdsTokenValueConflict()
399
400 #
401 # Check PCD type and definition between DSC and DEC
402 #
403 self._CheckPcdDefineAndType()
404
405 # if self.FdfFile:
406 # self._CheckDuplicateInFV(Fdf)
407
408 self._BuildDir = None
409 self._FvDir = None
410 self._MakeFileDir = None
411 self._BuildCommand = None
412
413 return True
414
415 ## _CheckDuplicateInFV() method
416 #
417 # Check whether there is duplicate modules/files exist in FV section.
418 # The check base on the file GUID;
419 #
420 def _CheckDuplicateInFV(self, Fdf):
421 for Fv in Fdf.Profile.FvDict:
422 _GuidDict = {}
423 for FfsFile in Fdf.Profile.FvDict[Fv].FfsList:
424 if FfsFile.InfFileName and FfsFile.NameGuid == None:
425 #
426 # Get INF file GUID
427 #
428 InfFoundFlag = False
429 for Pa in self.AutoGenObjectList:
430 if InfFoundFlag:
431 break
432 for Module in Pa.ModuleAutoGenList:
433 if path.normpath(Module.MetaFile.File) == path.normpath(FfsFile.InfFileName):
434 InfFoundFlag = True
435 if not Module.Guid.upper() in _GuidDict.keys():
436 _GuidDict[Module.Guid.upper()] = FfsFile
437 break
438 else:
439 EdkLogger.error("build",
440 FORMAT_INVALID,
441 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s"%(FfsFile.CurrentLineNum,
442 FfsFile.CurrentLineContent,
443 _GuidDict[Module.Guid.upper()].CurrentLineNum,
444 _GuidDict[Module.Guid.upper()].CurrentLineContent,
445 Module.Guid.upper()),
446 ExtraData=self.FdfFile)
447 #
448 # Some INF files not have entity in DSC file.
449 #
450 if not InfFoundFlag:
451 if FfsFile.InfFileName.find('$') == -1:
452 InfPath = NormPath(FfsFile.InfFileName)
453 if not os.path.exists(InfPath):
454 EdkLogger.error('build', GENFDS_ERROR, "Non-existant Module %s !" % (FfsFile.InfFileName))
455
456 PathClassObj = PathClass(FfsFile.InfFileName, self.WorkspaceDir)
457 #
458 # Here we just need to get FILE_GUID from INF file, use 'COMMON' as ARCH attribute. and use
459 # BuildObject from one of AutoGenObjectList is enough.
460 #
461 InfObj = self.AutoGenObjectList[0].BuildDatabase.WorkspaceDb.BuildObject[PathClassObj, 'COMMON', self.BuildTarget, self.ToolChain]
462 if not InfObj.Guid.upper() in _GuidDict.keys():
463 _GuidDict[InfObj.Guid.upper()] = FfsFile
464 else:
465 EdkLogger.error("build",
466 FORMAT_INVALID,
467 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s"%(FfsFile.CurrentLineNum,
468 FfsFile.CurrentLineContent,
469 _GuidDict[InfObj.Guid.upper()].CurrentLineNum,
470 _GuidDict[InfObj.Guid.upper()].CurrentLineContent,
471 InfObj.Guid.upper()),
472 ExtraData=self.FdfFile)
473 InfFoundFlag = False
474
475 if FfsFile.NameGuid != None:
476 _CheckPCDAsGuidPattern = re.compile("^PCD\(.+\..+\)$")
477
478 #
479 # If the NameGuid reference a PCD name.
480 # The style must match: PCD(xxxx.yyy)
481 #
482 if _CheckPCDAsGuidPattern.match(FfsFile.NameGuid):
483 #
484 # Replace the PCD value.
485 #
486 _PcdName = FfsFile.NameGuid.lstrip("PCD(").rstrip(")")
487 PcdFoundFlag = False
488 for Pa in self.AutoGenObjectList:
489 if not PcdFoundFlag:
490 for PcdItem in Pa.AllPcdList:
491 if (PcdItem.TokenSpaceGuidCName + "." + PcdItem.TokenCName) == _PcdName:
492 #
493 # First convert from CFormatGuid to GUID string
494 #
495 _PcdGuidString = GuidStructureStringToGuidString(PcdItem.DefaultValue)
496
497 if not _PcdGuidString:
498 #
499 # Then try Byte array.
500 #
501 _PcdGuidString = GuidStructureByteArrayToGuidString(PcdItem.DefaultValue)
502
503 if not _PcdGuidString:
504 #
505 # Not Byte array or CFormat GUID, raise error.
506 #
507 EdkLogger.error("build",
508 FORMAT_INVALID,
509 "The format of PCD value is incorrect. PCD: %s , Value: %s\n"%(_PcdName, PcdItem.DefaultValue),
510 ExtraData=self.FdfFile)
511
512 if not _PcdGuidString.upper() in _GuidDict.keys():
513 _GuidDict[_PcdGuidString.upper()] = FfsFile
514 PcdFoundFlag = True
515 break
516 else:
517 EdkLogger.error("build",
518 FORMAT_INVALID,
519 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s"%(FfsFile.CurrentLineNum,
520 FfsFile.CurrentLineContent,
521 _GuidDict[_PcdGuidString.upper()].CurrentLineNum,
522 _GuidDict[_PcdGuidString.upper()].CurrentLineContent,
523 FfsFile.NameGuid.upper()),
524 ExtraData=self.FdfFile)
525
526 if not FfsFile.NameGuid.upper() in _GuidDict.keys():
527 _GuidDict[FfsFile.NameGuid.upper()] = FfsFile
528 else:
529 #
530 # Two raw file GUID conflict.
531 #
532 EdkLogger.error("build",
533 FORMAT_INVALID,
534 "Duplicate GUID found for these lines: Line %d: %s and Line %d: %s. GUID: %s"%(FfsFile.CurrentLineNum,
535 FfsFile.CurrentLineContent,
536 _GuidDict[FfsFile.NameGuid.upper()].CurrentLineNum,
537 _GuidDict[FfsFile.NameGuid.upper()].CurrentLineContent,
538 FfsFile.NameGuid.upper()),
539 ExtraData=self.FdfFile)
540
541
542 def _CheckPcdDefineAndType(self):
543 PcdTypeList = [
544 "FixedAtBuild", "PatchableInModule", "FeatureFlag",
545 "Dynamic", #"DynamicHii", "DynamicVpd",
546 "DynamicEx", # "DynamicExHii", "DynamicExVpd"
547 ]
548
549 # This dict store PCDs which are not used by any modules with specified arches
550 UnusedPcd = sdict()
551 for Pa in self.AutoGenObjectList:
552 # Key of DSC's Pcds dictionary is PcdCName, TokenSpaceGuid
553 for Pcd in Pa.Platform.Pcds:
554 PcdType = Pa.Platform.Pcds[Pcd].Type
555
556 # If no PCD type, this PCD comes from FDF
557 if not PcdType:
558 continue
559
560 # Try to remove Hii and Vpd suffix
561 if PcdType.startswith("DynamicEx"):
562 PcdType = "DynamicEx"
563 elif PcdType.startswith("Dynamic"):
564 PcdType = "Dynamic"
565
566 for Package in Pa.PackageList:
567 # Key of DEC's Pcds dictionary is PcdCName, TokenSpaceGuid, PcdType
568 if (Pcd[0], Pcd[1], PcdType) in Package.Pcds:
569 break
570 for Type in PcdTypeList:
571 if (Pcd[0], Pcd[1], Type) in Package.Pcds:
572 EdkLogger.error(
573 'build',
574 FORMAT_INVALID,
575 "Type [%s] of PCD [%s.%s] in DSC file doesn't match the type [%s] defined in DEC file." \
576 % (Pa.Platform.Pcds[Pcd].Type, Pcd[1], Pcd[0], Type),
577 ExtraData=None
578 )
579 return
580 else:
581 UnusedPcd.setdefault(Pcd, []).append(Pa.Arch)
582
583 for Pcd in UnusedPcd:
584 EdkLogger.warn(
585 'build',
586 "The PCD was not specified by any INF module in the platform for the given architecture.\n"
587 "\tPCD: [%s.%s]\n\tPlatform: [%s]\n\tArch: %s"
588 % (Pcd[1], Pcd[0], os.path.basename(str(self.MetaFile)), str(UnusedPcd[Pcd])),
589 ExtraData=None
590 )
591
592 def __repr__(self):
593 return "%s [%s]" % (self.MetaFile, ", ".join(self.ArchList))
594
595 ## Return the directory to store FV files
596 def _GetFvDir(self):
597 if self._FvDir == None:
598 self._FvDir = path.join(self.BuildDir, 'FV')
599 return self._FvDir
600
601 ## Return the directory to store all intermediate and final files built
602 def _GetBuildDir(self):
603 return self.AutoGenObjectList[0].BuildDir
604
605 ## Return the build output directory platform specifies
606 def _GetOutputDir(self):
607 return self.Platform.OutputDirectory
608
609 ## Return platform name
610 def _GetName(self):
611 return self.Platform.PlatformName
612
613 ## Return meta-file GUID
614 def _GetGuid(self):
615 return self.Platform.Guid
616
617 ## Return platform version
618 def _GetVersion(self):
619 return self.Platform.Version
620
621 ## Return paths of tools
622 def _GetToolDefinition(self):
623 return self.AutoGenObjectList[0].ToolDefinition
624
625 ## Return directory of platform makefile
626 #
627 # @retval string Makefile directory
628 #
629 def _GetMakeFileDir(self):
630 if self._MakeFileDir == None:
631 self._MakeFileDir = self.BuildDir
632 return self._MakeFileDir
633
634 ## Return build command string
635 #
636 # @retval string Build command string
637 #
638 def _GetBuildCommand(self):
639 if self._BuildCommand == None:
640 # BuildCommand should be all the same. So just get one from platform AutoGen
641 self._BuildCommand = self.AutoGenObjectList[0].BuildCommand
642 return self._BuildCommand
643
644 ## Check the PCDs token value conflict in each DEC file.
645 #
646 # Will cause build break and raise error message while two PCDs conflict.
647 #
648 # @return None
649 #
650 def _CheckAllPcdsTokenValueConflict(self):
651 for Pa in self.AutoGenObjectList:
652 for Package in Pa.PackageList:
653 PcdList = Package.Pcds.values()
654 PcdList.sort(lambda x, y: cmp(x.TokenValue, y.TokenValue))
655 Count = 0
656 while (Count < len(PcdList) - 1) :
657 Item = PcdList[Count]
658 ItemNext = PcdList[Count + 1]
659 #
660 # Make sure in the same token space the TokenValue should be unique
661 #
662 if (Item.TokenValue == ItemNext.TokenValue):
663 SameTokenValuePcdList = []
664 SameTokenValuePcdList.append(Item)
665 SameTokenValuePcdList.append(ItemNext)
666 RemainPcdListLength = len(PcdList) - Count - 2
667 for ValueSameCount in range(RemainPcdListLength):
668 if PcdList[len(PcdList) - RemainPcdListLength + ValueSameCount].TokenValue == Item.TokenValue:
669 SameTokenValuePcdList.append(PcdList[len(PcdList) - RemainPcdListLength + ValueSameCount])
670 else:
671 break;
672 #
673 # Sort same token value PCD list with TokenGuid and TokenCName
674 #
675 SameTokenValuePcdList.sort(lambda x, y: cmp("%s.%s"%(x.TokenSpaceGuidCName, x.TokenCName), "%s.%s"%(y.TokenSpaceGuidCName, y.TokenCName)))
676 SameTokenValuePcdListCount = 0
677 while (SameTokenValuePcdListCount < len(SameTokenValuePcdList) - 1):
678 TemListItem = SameTokenValuePcdList[SameTokenValuePcdListCount]
679 TemListItemNext = SameTokenValuePcdList[SameTokenValuePcdListCount + 1]
680
681 if (TemListItem.TokenSpaceGuidCName == TemListItemNext.TokenSpaceGuidCName) and (TemListItem.TokenCName != TemListItemNext.TokenCName):
682 EdkLogger.error(
683 'build',
684 FORMAT_INVALID,
685 "The TokenValue [%s] of PCD [%s.%s] is conflict with: [%s.%s] in %s"\
686 % (TemListItem.TokenValue, TemListItem.TokenSpaceGuidCName, TemListItem.TokenCName, TemListItemNext.TokenSpaceGuidCName, TemListItemNext.TokenCName, Package),
687 ExtraData=None
688 )
689 SameTokenValuePcdListCount += 1
690 Count += SameTokenValuePcdListCount
691 Count += 1
692
693 PcdList = Package.Pcds.values()
694 PcdList.sort(lambda x, y: cmp("%s.%s"%(x.TokenSpaceGuidCName, x.TokenCName), "%s.%s"%(y.TokenSpaceGuidCName, y.TokenCName)))
695 Count = 0
696 while (Count < len(PcdList) - 1) :
697 Item = PcdList[Count]
698 ItemNext = PcdList[Count + 1]
699 #
700 # Check PCDs with same TokenSpaceGuidCName.TokenCName have same token value as well.
701 #
702 if (Item.TokenSpaceGuidCName == ItemNext.TokenSpaceGuidCName) and (Item.TokenCName == ItemNext.TokenCName) and (Item.TokenValue != ItemNext.TokenValue):
703 EdkLogger.error(
704 'build',
705 FORMAT_INVALID,
706 "The TokenValue [%s] of PCD [%s.%s] in %s defined in two places should be same as well."\
707 % (Item.TokenValue, Item.TokenSpaceGuidCName, Item.TokenCName, Package),
708 ExtraData=None
709 )
710 Count += 1
711 ## Generate fds command
712 def _GenFdsCommand(self):
713 return (GenMake.TopLevelMakefile(self)._TEMPLATE_.Replace(GenMake.TopLevelMakefile(self)._TemplateDict)).strip()
714
715 ## Create makefile for the platform and modules in it
716 #
717 # @param CreateDepsMakeFile Flag indicating if the makefile for
718 # modules will be created as well
719 #
720 def CreateMakeFile(self, CreateDepsMakeFile=False):
721 if CreateDepsMakeFile:
722 for Pa in self.AutoGenObjectList:
723 Pa.CreateMakeFile(CreateDepsMakeFile)
724
725 ## Create autogen code for platform and modules
726 #
727 # Since there's no autogen code for platform, this method will do nothing
728 # if CreateModuleCodeFile is set to False.
729 #
730 # @param CreateDepsCodeFile Flag indicating if creating module's
731 # autogen code file or not
732 #
733 def CreateCodeFile(self, CreateDepsCodeFile=False):
734 if not CreateDepsCodeFile:
735 return
736 for Pa in self.AutoGenObjectList:
737 Pa.CreateCodeFile(CreateDepsCodeFile)
738
739 ## Create AsBuilt INF file the platform
740 #
741 def CreateAsBuiltInf(self):
742 return
743
744 Name = property(_GetName)
745 Guid = property(_GetGuid)
746 Version = property(_GetVersion)
747 OutputDir = property(_GetOutputDir)
748
749 ToolDefinition = property(_GetToolDefinition) # toolcode : tool path
750
751 BuildDir = property(_GetBuildDir)
752 FvDir = property(_GetFvDir)
753 MakeFileDir = property(_GetMakeFileDir)
754 BuildCommand = property(_GetBuildCommand)
755 GenFdsCommand = property(_GenFdsCommand)
756
757 ## AutoGen class for platform
758 #
759 # PlatformAutoGen class will process the original information in platform
760 # file in order to generate makefile for platform.
761 #
762 class PlatformAutoGen(AutoGen):
763 #
764 # Used to store all PCDs for both PEI and DXE phase, in order to generate
765 # correct PCD database
766 #
767 _DynaPcdList_ = []
768 _NonDynaPcdList_ = []
769
770 #
771 # The priority list while override build option
772 #
773 PrioList = {"0x11111" : 16, # TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE (Highest)
774 "0x01111" : 15, # ******_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
775 "0x10111" : 14, # TARGET_*********_ARCH_COMMANDTYPE_ATTRIBUTE
776 "0x00111" : 13, # ******_*********_ARCH_COMMANDTYPE_ATTRIBUTE
777 "0x11011" : 12, # TARGET_TOOLCHAIN_****_COMMANDTYPE_ATTRIBUTE
778 "0x01011" : 11, # ******_TOOLCHAIN_****_COMMANDTYPE_ATTRIBUTE
779 "0x10011" : 10, # TARGET_*********_****_COMMANDTYPE_ATTRIBUTE
780 "0x00011" : 9, # ******_*********_****_COMMANDTYPE_ATTRIBUTE
781 "0x11101" : 8, # TARGET_TOOLCHAIN_ARCH_***********_ATTRIBUTE
782 "0x01101" : 7, # ******_TOOLCHAIN_ARCH_***********_ATTRIBUTE
783 "0x10101" : 6, # TARGET_*********_ARCH_***********_ATTRIBUTE
784 "0x00101" : 5, # ******_*********_ARCH_***********_ATTRIBUTE
785 "0x11001" : 4, # TARGET_TOOLCHAIN_****_***********_ATTRIBUTE
786 "0x01001" : 3, # ******_TOOLCHAIN_****_***********_ATTRIBUTE
787 "0x10001" : 2, # TARGET_*********_****_***********_ATTRIBUTE
788 "0x00001" : 1} # ******_*********_****_***********_ATTRIBUTE (Lowest)
789
790 ## The real constructor of PlatformAutoGen
791 #
792 # This method is not supposed to be called by users of PlatformAutoGen. It's
793 # only used by factory method __new__() to do real initialization work for an
794 # object of PlatformAutoGen
795 #
796 # @param Workspace WorkspaceAutoGen object
797 # @param PlatformFile Platform file (DSC file)
798 # @param Target Build target (DEBUG, RELEASE)
799 # @param Toolchain Name of tool chain
800 # @param Arch arch of the platform supports
801 #
802 def _Init(self, Workspace, PlatformFile, Target, Toolchain, Arch):
803 EdkLogger.debug(EdkLogger.DEBUG_9, "AutoGen platform [%s] [%s]" % (PlatformFile, Arch))
804 GlobalData.gProcessingFile = "%s [%s, %s, %s]" % (PlatformFile, Arch, Toolchain, Target)
805
806 self.MetaFile = PlatformFile
807 self.Workspace = Workspace
808 self.WorkspaceDir = Workspace.WorkspaceDir
809 self.ToolChain = Toolchain
810 self.BuildTarget = Target
811 self.Arch = Arch
812 self.SourceDir = PlatformFile.SubDir
813 self.SourceOverrideDir = None
814 self.FdTargetList = self.Workspace.FdTargetList
815 self.FvTargetList = self.Workspace.FvTargetList
816 self.AllPcdList = []
817 # get the original module/package/platform objects
818 self.BuildDatabase = Workspace.BuildDatabase
819
820 # flag indicating if the makefile/C-code file has been created or not
821 self.IsMakeFileCreated = False
822 self.IsCodeFileCreated = False
823
824 self._Platform = None
825 self._Name = None
826 self._Guid = None
827 self._Version = None
828
829 self._BuildRule = None
830 self._SourceDir = None
831 self._BuildDir = None
832 self._OutputDir = None
833 self._FvDir = None
834 self._MakeFileDir = None
835 self._FdfFile = None
836
837 self._PcdTokenNumber = None # (TokenCName, TokenSpaceGuidCName) : GeneratedTokenNumber
838 self._DynamicPcdList = None # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
839 self._NonDynamicPcdList = None # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
840 self._NonDynamicPcdDict = {}
841
842 self._ToolDefinitions = None
843 self._ToolDefFile = None # toolcode : tool path
844 self._ToolChainFamily = None
845 self._BuildRuleFamily = None
846 self._BuildOption = None # toolcode : option
847 self._EdkBuildOption = None # edktoolcode : option
848 self._EdkIIBuildOption = None # edkiitoolcode : option
849 self._PackageList = None
850 self._ModuleAutoGenList = None
851 self._LibraryAutoGenList = None
852 self._BuildCommand = None
853 self._AsBuildInfList = []
854 self._AsBuildModuleList = []
855 if GlobalData.gFdfParser != None:
856 self._AsBuildInfList = GlobalData.gFdfParser.Profile.InfList
857 for Inf in self._AsBuildInfList:
858 InfClass = PathClass(NormPath(Inf), GlobalData.gWorkspace, self.Arch)
859 M = self.BuildDatabase[InfClass, self.Arch, self.BuildTarget, self.ToolChain]
860 if not M.IsSupportedArch:
861 continue
862 self._AsBuildModuleList.append(InfClass)
863 # get library/modules for build
864 self.LibraryBuildDirectoryList = []
865 self.ModuleBuildDirectoryList = []
866 return True
867
868 def __repr__(self):
869 return "%s [%s]" % (self.MetaFile, self.Arch)
870
871 ## Create autogen code for platform and modules
872 #
873 # Since there's no autogen code for platform, this method will do nothing
874 # if CreateModuleCodeFile is set to False.
875 #
876 # @param CreateModuleCodeFile Flag indicating if creating module's
877 # autogen code file or not
878 #
879 def CreateCodeFile(self, CreateModuleCodeFile=False):
880 # only module has code to be greated, so do nothing if CreateModuleCodeFile is False
881 if self.IsCodeFileCreated or not CreateModuleCodeFile:
882 return
883
884 for Ma in self.ModuleAutoGenList:
885 Ma.CreateCodeFile(True)
886
887 # don't do this twice
888 self.IsCodeFileCreated = True
889
890 ## Generate Fds Command
891 def _GenFdsCommand(self):
892 return self.Workspace.GenFdsCommand
893
894 ## Create makefile for the platform and mdoules in it
895 #
896 # @param CreateModuleMakeFile Flag indicating if the makefile for
897 # modules will be created as well
898 #
899 def CreateMakeFile(self, CreateModuleMakeFile=False):
900 if CreateModuleMakeFile:
901 for ModuleFile in self.Platform.Modules:
902 Ma = ModuleAutoGen(self.Workspace, ModuleFile, self.BuildTarget,
903 self.ToolChain, self.Arch, self.MetaFile)
904 Ma.CreateMakeFile(True)
905 #Ma.CreateAsBuiltInf()
906
907 # no need to create makefile for the platform more than once
908 if self.IsMakeFileCreated:
909 return
910
911 # create library/module build dirs for platform
912 Makefile = GenMake.PlatformMakefile(self)
913 self.LibraryBuildDirectoryList = Makefile.GetLibraryBuildDirectoryList()
914 self.ModuleBuildDirectoryList = Makefile.GetModuleBuildDirectoryList()
915
916 self.IsMakeFileCreated = True
917
918 ## Deal with Shared FixedAtBuild Pcds
919 #
920 def CollectFixedAtBuildPcds(self):
921 for LibAuto in self.LibraryAutoGenList:
922 FixedAtBuildPcds = {}
923 ShareFixedAtBuildPcdsSameValue = {}
924 for Module in LibAuto._ReferenceModules:
925 for Pcd in Module.FixedAtBuildPcds + LibAuto.FixedAtBuildPcds:
926 key = ".".join((Pcd.TokenSpaceGuidCName,Pcd.TokenCName))
927 if key not in FixedAtBuildPcds:
928 ShareFixedAtBuildPcdsSameValue[key] = True
929 FixedAtBuildPcds[key] = Pcd.DefaultValue
930 else:
931 if FixedAtBuildPcds[key] != Pcd.DefaultValue:
932 ShareFixedAtBuildPcdsSameValue[key] = False
933 for Pcd in LibAuto.FixedAtBuildPcds:
934 key = ".".join((Pcd.TokenSpaceGuidCName,Pcd.TokenCName))
935 if (Pcd.TokenCName,Pcd.TokenSpaceGuidCName) not in self.NonDynamicPcdDict:
936 continue
937 else:
938 DscPcd = self.NonDynamicPcdDict[(Pcd.TokenCName,Pcd.TokenSpaceGuidCName)]
939 if DscPcd.Type != "FixedAtBuild":
940 continue
941 if key in ShareFixedAtBuildPcdsSameValue and ShareFixedAtBuildPcdsSameValue[key]:
942 LibAuto.ConstPcd[key] = Pcd.DefaultValue
943
944 ## Collect dynamic PCDs
945 #
946 # Gather dynamic PCDs list from each module and their settings from platform
947 # This interface should be invoked explicitly when platform action is created.
948 #
949 def CollectPlatformDynamicPcds(self):
950 # for gathering error information
951 NoDatumTypePcdList = set()
952 PcdNotInDb = []
953 self._GuidValue = {}
954 FdfModuleList = []
955 for InfName in self._AsBuildInfList:
956 InfName = os.path.join(self.WorkspaceDir, InfName)
957 FdfModuleList.append(os.path.normpath(InfName))
958 for F in self.Platform.Modules.keys():
959 M = ModuleAutoGen(self.Workspace, F, self.BuildTarget, self.ToolChain, self.Arch, self.MetaFile)
960 #GuidValue.update(M.Guids)
961
962 self.Platform.Modules[F].M = M
963
964 for PcdFromModule in M.ModulePcdList+M.LibraryPcdList:
965 # make sure that the "VOID*" kind of datum has MaxDatumSize set
966 if PcdFromModule.DatumType == "VOID*" and PcdFromModule.MaxDatumSize in [None, '']:
967 NoDatumTypePcdList.add("%s.%s [%s]" % (PcdFromModule.TokenSpaceGuidCName, PcdFromModule.TokenCName, F))
968
969 # Check the PCD from Binary INF or Source INF
970 if M.IsBinaryModule == True:
971 PcdFromModule.IsFromBinaryInf = True
972
973 # Check the PCD from DSC or not
974 if (PcdFromModule.TokenCName, PcdFromModule.TokenSpaceGuidCName) in self.Platform.Pcds.keys():
975 PcdFromModule.IsFromDsc = True
976 else:
977 PcdFromModule.IsFromDsc = False
978 if PcdFromModule.Type in GenC.gDynamicPcd or PcdFromModule.Type in GenC.gDynamicExPcd:
979 if F.Path not in FdfModuleList:
980 # If one of the Source built modules listed in the DSC is not listed
981 # in FDF modules, and the INF lists a PCD can only use the PcdsDynamic
982 # access method (it is only listed in the DEC file that declares the
983 # PCD as PcdsDynamic), then build tool will report warning message
984 # notify the PI that they are attempting to build a module that must
985 # be included in a flash image in order to be functional. These Dynamic
986 # PCD will not be added into the Database unless it is used by other
987 # modules that are included in the FDF file.
988 if PcdFromModule.Type in GenC.gDynamicPcd and \
989 PcdFromModule.IsFromBinaryInf == False:
990 # Print warning message to let the developer make a determine.
991 if PcdFromModule not in PcdNotInDb:
992 PcdNotInDb.append(PcdFromModule)
993 continue
994 # If one of the Source built modules listed in the DSC is not listed in
995 # FDF modules, and the INF lists a PCD can only use the PcdsDynamicEx
996 # access method (it is only listed in the DEC file that declares the
997 # PCD as PcdsDynamicEx), then DO NOT break the build; DO NOT add the
998 # PCD to the Platform's PCD Database.
999 if PcdFromModule.Type in GenC.gDynamicExPcd:
1000 if PcdFromModule not in PcdNotInDb:
1001 PcdNotInDb.append(PcdFromModule)
1002 continue
1003 #
1004 # If a dynamic PCD used by a PEM module/PEI module & DXE module,
1005 # it should be stored in Pcd PEI database, If a dynamic only
1006 # used by DXE module, it should be stored in DXE PCD database.
1007 # The default Phase is DXE
1008 #
1009 if M.ModuleType in ["PEIM", "PEI_CORE"]:
1010 PcdFromModule.Phase = "PEI"
1011 if PcdFromModule not in self._DynaPcdList_:
1012 self._DynaPcdList_.append(PcdFromModule)
1013 elif PcdFromModule.Phase == 'PEI':
1014 # overwrite any the same PCD existing, if Phase is PEI
1015 Index = self._DynaPcdList_.index(PcdFromModule)
1016 self._DynaPcdList_[Index] = PcdFromModule
1017 elif PcdFromModule not in self._NonDynaPcdList_:
1018 self._NonDynaPcdList_.append(PcdFromModule)
1019 elif PcdFromModule in self._NonDynaPcdList_ and PcdFromModule.IsFromBinaryInf == True:
1020 Index = self._NonDynaPcdList_.index(PcdFromModule)
1021 if self._NonDynaPcdList_[Index].IsFromBinaryInf == False:
1022 #The PCD from Binary INF will override the same one from source INF
1023 self._NonDynaPcdList_.remove (self._NonDynaPcdList_[Index])
1024 PcdFromModule.Pending = False
1025 self._NonDynaPcdList_.append (PcdFromModule)
1026 # Parse the DynamicEx PCD from the AsBuild INF module list of FDF.
1027 DscModuleList = []
1028 for ModuleInf in self.Platform.Modules.keys():
1029 DscModuleList.append (os.path.normpath(ModuleInf.Path))
1030 # add the PCD from modules that listed in FDF but not in DSC to Database
1031 for InfName in FdfModuleList:
1032 if InfName not in DscModuleList:
1033 InfClass = PathClass(InfName)
1034 M = self.BuildDatabase[InfClass, self.Arch, self.BuildTarget, self.ToolChain]
1035 # If a module INF in FDF but not in current arch's DSC module list, it must be module (either binary or source)
1036 # for different Arch. PCDs in source module for different Arch is already added before, so skip the source module here.
1037 # For binary module, if in current arch, we need to list the PCDs into database.
1038 if not M.IsSupportedArch:
1039 continue
1040 # Override the module PCD setting by platform setting
1041 ModulePcdList = self.ApplyPcdSetting(M, M.Pcds)
1042 for PcdFromModule in ModulePcdList:
1043 PcdFromModule.IsFromBinaryInf = True
1044 PcdFromModule.IsFromDsc = False
1045 # Only allow the DynamicEx and Patchable PCD in AsBuild INF
1046 if PcdFromModule.Type not in GenC.gDynamicExPcd and PcdFromModule.Type not in TAB_PCDS_PATCHABLE_IN_MODULE:
1047 EdkLogger.error("build", AUTOGEN_ERROR, "PCD setting error",
1048 File=self.MetaFile,
1049 ExtraData="\n\tExisted %s PCD %s in:\n\t\t%s\n"
1050 % (PcdFromModule.Type, PcdFromModule.TokenCName, InfName))
1051 # make sure that the "VOID*" kind of datum has MaxDatumSize set
1052 if PcdFromModule.DatumType == "VOID*" and PcdFromModule.MaxDatumSize in [None, '']:
1053 NoDatumTypePcdList.add("%s.%s [%s]" % (PcdFromModule.TokenSpaceGuidCName, PcdFromModule.TokenCName, InfName))
1054 if M.ModuleType in ["PEIM", "PEI_CORE"]:
1055 PcdFromModule.Phase = "PEI"
1056 if PcdFromModule not in self._DynaPcdList_ and PcdFromModule.Type in GenC.gDynamicExPcd:
1057 self._DynaPcdList_.append(PcdFromModule)
1058 elif PcdFromModule not in self._NonDynaPcdList_ and PcdFromModule.Type in TAB_PCDS_PATCHABLE_IN_MODULE:
1059 self._NonDynaPcdList_.append(PcdFromModule)
1060 if PcdFromModule in self._DynaPcdList_ and PcdFromModule.Phase == 'PEI' and PcdFromModule.Type in GenC.gDynamicExPcd:
1061 # Overwrite the phase of any the same PCD existing, if Phase is PEI.
1062 # It is to solve the case that a dynamic PCD used by a PEM module/PEI
1063 # module & DXE module at a same time.
1064 # Overwrite the type of the PCDs in source INF by the type of AsBuild
1065 # INF file as DynamicEx.
1066 Index = self._DynaPcdList_.index(PcdFromModule)
1067 self._DynaPcdList_[Index].Phase = PcdFromModule.Phase
1068 self._DynaPcdList_[Index].Type = PcdFromModule.Type
1069 for PcdFromModule in self._NonDynaPcdList_:
1070 # If a PCD is not listed in the DSC file, but binary INF files used by
1071 # this platform all (that use this PCD) list the PCD in a [PatchPcds]
1072 # section, AND all source INF files used by this platform the build
1073 # that use the PCD list the PCD in either a [Pcds] or [PatchPcds]
1074 # section, then the tools must NOT add the PCD to the Platform's PCD
1075 # Database; the build must assign the access method for this PCD as
1076 # PcdsPatchableInModule.
1077 if PcdFromModule not in self._DynaPcdList_:
1078 continue
1079 Index = self._DynaPcdList_.index(PcdFromModule)
1080 if PcdFromModule.IsFromDsc == False and \
1081 PcdFromModule.Type in TAB_PCDS_PATCHABLE_IN_MODULE and \
1082 PcdFromModule.IsFromBinaryInf == True and \
1083 self._DynaPcdList_[Index].IsFromBinaryInf == False:
1084 Index = self._DynaPcdList_.index(PcdFromModule)
1085 self._DynaPcdList_.remove (self._DynaPcdList_[Index])
1086
1087 # print out error information and break the build, if error found
1088 if len(NoDatumTypePcdList) > 0:
1089 NoDatumTypePcdListString = "\n\t\t".join(NoDatumTypePcdList)
1090 EdkLogger.error("build", AUTOGEN_ERROR, "PCD setting error",
1091 File=self.MetaFile,
1092 ExtraData="\n\tPCD(s) without MaxDatumSize:\n\t\t%s\n"
1093 % NoDatumTypePcdListString)
1094 self._NonDynamicPcdList = self._NonDynaPcdList_
1095 self._DynamicPcdList = self._DynaPcdList_
1096 #
1097 # Sort dynamic PCD list to:
1098 # 1) If PCD's datum type is VOID* and value is unicode string which starts with L, the PCD item should
1099 # try to be put header of dynamicd List
1100 # 2) If PCD is HII type, the PCD item should be put after unicode type PCD
1101 #
1102 # The reason of sorting is make sure the unicode string is in double-byte alignment in string table.
1103 #
1104 UnicodePcdArray = []
1105 HiiPcdArray = []
1106 OtherPcdArray = []
1107 VpdPcdDict = {}
1108 VpdFile = VpdInfoFile.VpdInfoFile()
1109 NeedProcessVpdMapFile = False
1110
1111 if (self.Workspace.ArchList[-1] == self.Arch):
1112 for Pcd in self._DynamicPcdList:
1113 # just pick the a value to determine whether is unicode string type
1114 Sku = Pcd.SkuInfoList[Pcd.SkuInfoList.keys()[0]]
1115 Sku.VpdOffset = Sku.VpdOffset.strip()
1116
1117 PcdValue = Sku.DefaultValue
1118 if Pcd.DatumType == 'VOID*' and PcdValue.startswith("L"):
1119 # if found PCD which datum value is unicode string the insert to left size of UnicodeIndex
1120 UnicodePcdArray.append(Pcd)
1121 elif len(Sku.VariableName) > 0:
1122 # if found HII type PCD then insert to right of UnicodeIndex
1123 HiiPcdArray.append(Pcd)
1124 else:
1125 OtherPcdArray.append(Pcd)
1126 if Pcd.Type in [TAB_PCDS_DYNAMIC_VPD, TAB_PCDS_DYNAMIC_EX_VPD]:
1127 VpdPcdDict[(Pcd.TokenCName, Pcd.TokenSpaceGuidCName)] = Pcd
1128
1129 PlatformPcds = self.Platform.Pcds.keys()
1130 PlatformPcds.sort()
1131 #
1132 # Add VPD type PCD into VpdFile and determine whether the VPD PCD need to be fixed up.
1133 #
1134 for PcdKey in PlatformPcds:
1135 Pcd = self.Platform.Pcds[PcdKey]
1136 if Pcd.Type in [TAB_PCDS_DYNAMIC_VPD, TAB_PCDS_DYNAMIC_EX_VPD] and \
1137 PcdKey in VpdPcdDict:
1138 Pcd = VpdPcdDict[PcdKey]
1139 for (SkuName,Sku) in Pcd.SkuInfoList.items():
1140 Sku.VpdOffset = Sku.VpdOffset.strip()
1141 VpdFile.Add(Pcd, Sku.VpdOffset)
1142 # if the offset of a VPD is *, then it need to be fixed up by third party tool.
1143 if not NeedProcessVpdMapFile and Sku.VpdOffset == "*":
1144 NeedProcessVpdMapFile = True
1145 if self.Platform.VpdToolGuid == None or self.Platform.VpdToolGuid == '':
1146 EdkLogger.error("Build", FILE_NOT_FOUND, \
1147 "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.")
1148
1149
1150 #
1151 # Fix the PCDs define in VPD PCD section that never referenced by module.
1152 # An example is PCD for signature usage.
1153 #
1154 for DscPcd in PlatformPcds:
1155 DscPcdEntry = self.Platform.Pcds[DscPcd]
1156 if DscPcdEntry.Type in [TAB_PCDS_DYNAMIC_VPD, TAB_PCDS_DYNAMIC_EX_VPD]:
1157 if not (self.Platform.VpdToolGuid == None or self.Platform.VpdToolGuid == ''):
1158 FoundFlag = False
1159 for VpdPcd in VpdFile._VpdArray.keys():
1160 # This PCD has been referenced by module
1161 if (VpdPcd.TokenSpaceGuidCName == DscPcdEntry.TokenSpaceGuidCName) and \
1162 (VpdPcd.TokenCName == DscPcdEntry.TokenCName):
1163 FoundFlag = True
1164
1165 # Not found, it should be signature
1166 if not FoundFlag :
1167 # just pick the a value to determine whether is unicode string type
1168 for (SkuName,Sku) in DscPcdEntry.SkuInfoList.items():
1169 Sku.VpdOffset = Sku.VpdOffset.strip()
1170
1171 # Need to iterate DEC pcd information to get the value & datumtype
1172 for eachDec in self.PackageList:
1173 for DecPcd in eachDec.Pcds:
1174 DecPcdEntry = eachDec.Pcds[DecPcd]
1175 if (DecPcdEntry.TokenSpaceGuidCName == DscPcdEntry.TokenSpaceGuidCName) and \
1176 (DecPcdEntry.TokenCName == DscPcdEntry.TokenCName):
1177 # Print warning message to let the developer make a determine.
1178 EdkLogger.warn("build", "Unreferenced vpd pcd used!",
1179 File=self.MetaFile, \
1180 ExtraData = "PCD: %s.%s used in the DSC file %s is unreferenced." \
1181 %(DscPcdEntry.TokenSpaceGuidCName, DscPcdEntry.TokenCName, self.Platform.MetaFile.Path))
1182
1183 DscPcdEntry.DatumType = DecPcdEntry.DatumType
1184 DscPcdEntry.DefaultValue = DecPcdEntry.DefaultValue
1185 DscPcdEntry.TokenValue = DecPcdEntry.TokenValue
1186 DscPcdEntry.TokenSpaceGuidValue = eachDec.Guids[DecPcdEntry.TokenSpaceGuidCName]
1187 # Only fix the value while no value provided in DSC file.
1188 if (Sku.DefaultValue == "" or Sku.DefaultValue==None):
1189 DscPcdEntry.SkuInfoList[DscPcdEntry.SkuInfoList.keys()[0]].DefaultValue = DecPcdEntry.DefaultValue
1190
1191 if DscPcdEntry not in self._DynamicPcdList:
1192 self._DynamicPcdList.append(DscPcdEntry)
1193 # Sku = DscPcdEntry.SkuInfoList[DscPcdEntry.SkuInfoList.keys()[0]]
1194 Sku.VpdOffset = Sku.VpdOffset.strip()
1195 PcdValue = Sku.DefaultValue
1196 VpdFile.Add(DscPcdEntry, Sku.VpdOffset)
1197 if not NeedProcessVpdMapFile and Sku.VpdOffset == "*":
1198 NeedProcessVpdMapFile = True
1199 if DscPcdEntry.DatumType == 'VOID*' and PcdValue.startswith("L"):
1200 UnicodePcdArray.append(DscPcdEntry)
1201 elif len(Sku.VariableName) > 0:
1202 HiiPcdArray.append(DscPcdEntry)
1203 else:
1204 OtherPcdArray.append(DscPcdEntry)
1205
1206 # if the offset of a VPD is *, then it need to be fixed up by third party tool.
1207
1208
1209
1210 if (self.Platform.FlashDefinition == None or self.Platform.FlashDefinition == '') and \
1211 VpdFile.GetCount() != 0:
1212 EdkLogger.error("build", ATTRIBUTE_NOT_AVAILABLE,
1213 "Fail to get FLASH_DEFINITION definition in DSC file %s which is required when DSC contains VPD PCD." % str(self.Platform.MetaFile))
1214
1215 if VpdFile.GetCount() != 0:
1216 DscTimeStamp = self.Platform.MetaFile.TimeStamp
1217 FvPath = os.path.join(self.BuildDir, "FV")
1218 if not os.path.exists(FvPath):
1219 try:
1220 os.makedirs(FvPath)
1221 except:
1222 EdkLogger.error("build", FILE_WRITE_FAILURE, "Fail to create FV folder under %s" % self.BuildDir)
1223
1224
1225 VpdFilePath = os.path.join(FvPath, "%s.txt" % self.Platform.VpdToolGuid)
1226
1227
1228 if not os.path.exists(VpdFilePath) or os.path.getmtime(VpdFilePath) < DscTimeStamp:
1229 VpdFile.Write(VpdFilePath)
1230
1231 # retrieve BPDG tool's path from tool_def.txt according to VPD_TOOL_GUID defined in DSC file.
1232 BPDGToolName = None
1233 for ToolDef in self.ToolDefinition.values():
1234 if ToolDef.has_key("GUID") and ToolDef["GUID"] == self.Platform.VpdToolGuid:
1235 if not ToolDef.has_key("PATH"):
1236 EdkLogger.error("build", ATTRIBUTE_NOT_AVAILABLE, "PATH attribute was not provided for BPDG guid tool %s in tools_def.txt" % self.Platform.VpdToolGuid)
1237 BPDGToolName = ToolDef["PATH"]
1238 break
1239 # Call third party GUID BPDG tool.
1240 if BPDGToolName != None:
1241 VpdInfoFile.CallExtenalBPDGTool(BPDGToolName, VpdFilePath)
1242 else:
1243 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.")
1244
1245 # Process VPD map file generated by third party BPDG tool
1246 if NeedProcessVpdMapFile:
1247 VpdMapFilePath = os.path.join(self.BuildDir, "FV", "%s.map" % self.Platform.VpdToolGuid)
1248 if os.path.exists(VpdMapFilePath):
1249 VpdFile.Read(VpdMapFilePath)
1250
1251 # Fixup "*" offset
1252 for Pcd in self._DynamicPcdList:
1253 # just pick the a value to determine whether is unicode string type
1254 i = 0
1255 for (SkuName,Sku) in Pcd.SkuInfoList.items():
1256 if Sku.VpdOffset == "*":
1257 Sku.VpdOffset = VpdFile.GetOffset(Pcd)[i].strip()
1258 i += 1
1259 else:
1260 EdkLogger.error("build", FILE_READ_FAILURE, "Can not find VPD map file %s to fix up VPD offset." % VpdMapFilePath)
1261
1262 # Delete the DynamicPcdList At the last time enter into this function
1263 del self._DynamicPcdList[:]
1264 self._DynamicPcdList.extend(UnicodePcdArray)
1265 self._DynamicPcdList.extend(HiiPcdArray)
1266 self._DynamicPcdList.extend(OtherPcdArray)
1267 self.AllPcdList = self._NonDynamicPcdList + self._DynamicPcdList
1268
1269 ## Return the platform build data object
1270 def _GetPlatform(self):
1271 if self._Platform == None:
1272 self._Platform = self.BuildDatabase[self.MetaFile, self.Arch, self.BuildTarget, self.ToolChain]
1273 return self._Platform
1274
1275 ## Return platform name
1276 def _GetName(self):
1277 return self.Platform.PlatformName
1278
1279 ## Return the meta file GUID
1280 def _GetGuid(self):
1281 return self.Platform.Guid
1282
1283 ## Return the platform version
1284 def _GetVersion(self):
1285 return self.Platform.Version
1286
1287 ## Return the FDF file name
1288 def _GetFdfFile(self):
1289 if self._FdfFile == None:
1290 if self.Workspace.FdfFile != "":
1291 self._FdfFile= path.join(self.WorkspaceDir, self.Workspace.FdfFile)
1292 else:
1293 self._FdfFile = ''
1294 return self._FdfFile
1295
1296 ## Return the build output directory platform specifies
1297 def _GetOutputDir(self):
1298 return self.Platform.OutputDirectory
1299
1300 ## Return the directory to store all intermediate and final files built
1301 def _GetBuildDir(self):
1302 if self._BuildDir == None:
1303 if os.path.isabs(self.OutputDir):
1304 self._BuildDir = path.join(
1305 path.abspath(self.OutputDir),
1306 self.BuildTarget + "_" + self.ToolChain,
1307 )
1308 else:
1309 self._BuildDir = path.join(
1310 self.WorkspaceDir,
1311 self.OutputDir,
1312 self.BuildTarget + "_" + self.ToolChain,
1313 )
1314 return self._BuildDir
1315
1316 ## Return directory of platform makefile
1317 #
1318 # @retval string Makefile directory
1319 #
1320 def _GetMakeFileDir(self):
1321 if self._MakeFileDir == None:
1322 self._MakeFileDir = path.join(self.BuildDir, self.Arch)
1323 return self._MakeFileDir
1324
1325 ## Return build command string
1326 #
1327 # @retval string Build command string
1328 #
1329 def _GetBuildCommand(self):
1330 if self._BuildCommand == None:
1331 self._BuildCommand = []
1332 if "MAKE" in self.ToolDefinition and "PATH" in self.ToolDefinition["MAKE"]:
1333 self._BuildCommand += SplitOption(self.ToolDefinition["MAKE"]["PATH"])
1334 if "FLAGS" in self.ToolDefinition["MAKE"]:
1335 NewOption = self.ToolDefinition["MAKE"]["FLAGS"].strip()
1336 if NewOption != '':
1337 self._BuildCommand += SplitOption(NewOption)
1338 return self._BuildCommand
1339
1340 ## Get tool chain definition
1341 #
1342 # Get each tool defition for given tool chain from tools_def.txt and platform
1343 #
1344 def _GetToolDefinition(self):
1345 if self._ToolDefinitions == None:
1346 ToolDefinition = self.Workspace.ToolDef.ToolsDefTxtDictionary
1347 if TAB_TOD_DEFINES_COMMAND_TYPE not in self.Workspace.ToolDef.ToolsDefTxtDatabase:
1348 EdkLogger.error('build', RESOURCE_NOT_AVAILABLE, "No tools found in configuration",
1349 ExtraData="[%s]" % self.MetaFile)
1350 self._ToolDefinitions = {}
1351 DllPathList = set()
1352 for Def in ToolDefinition:
1353 Target, Tag, Arch, Tool, Attr = Def.split("_")
1354 if Target != self.BuildTarget or Tag != self.ToolChain or Arch != self.Arch:
1355 continue
1356
1357 Value = ToolDefinition[Def]
1358 # don't record the DLL
1359 if Attr == "DLL":
1360 DllPathList.add(Value)
1361 continue
1362
1363 if Tool not in self._ToolDefinitions:
1364 self._ToolDefinitions[Tool] = {}
1365 self._ToolDefinitions[Tool][Attr] = Value
1366
1367 ToolsDef = ''
1368 MakePath = ''
1369 if GlobalData.gOptions.SilentMode and "MAKE" in self._ToolDefinitions:
1370 if "FLAGS" not in self._ToolDefinitions["MAKE"]:
1371 self._ToolDefinitions["MAKE"]["FLAGS"] = ""
1372 self._ToolDefinitions["MAKE"]["FLAGS"] += " -s"
1373 MakeFlags = ''
1374 for Tool in self._ToolDefinitions:
1375 for Attr in self._ToolDefinitions[Tool]:
1376 Value = self._ToolDefinitions[Tool][Attr]
1377 if Tool in self.BuildOption and Attr in self.BuildOption[Tool]:
1378 # check if override is indicated
1379 if self.BuildOption[Tool][Attr].startswith('='):
1380 Value = self.BuildOption[Tool][Attr][1:]
1381 else:
1382 Value += " " + self.BuildOption[Tool][Attr]
1383
1384 if Attr == "PATH":
1385 # Don't put MAKE definition in the file
1386 if Tool == "MAKE":
1387 MakePath = Value
1388 else:
1389 ToolsDef += "%s = %s\n" % (Tool, Value)
1390 elif Attr != "DLL":
1391 # Don't put MAKE definition in the file
1392 if Tool == "MAKE":
1393 if Attr == "FLAGS":
1394 MakeFlags = Value
1395 else:
1396 ToolsDef += "%s_%s = %s\n" % (Tool, Attr, Value)
1397 ToolsDef += "\n"
1398
1399 SaveFileOnChange(self.ToolDefinitionFile, ToolsDef)
1400 for DllPath in DllPathList:
1401 os.environ["PATH"] = DllPath + os.pathsep + os.environ["PATH"]
1402 os.environ["MAKE_FLAGS"] = MakeFlags
1403
1404 return self._ToolDefinitions
1405
1406 ## Return the paths of tools
1407 def _GetToolDefFile(self):
1408 if self._ToolDefFile == None:
1409 self._ToolDefFile = os.path.join(self.MakeFileDir, "TOOLS_DEF." + self.Arch)
1410 return self._ToolDefFile
1411
1412 ## Retrieve the toolchain family of given toolchain tag. Default to 'MSFT'.
1413 def _GetToolChainFamily(self):
1414 if self._ToolChainFamily == None:
1415 ToolDefinition = self.Workspace.ToolDef.ToolsDefTxtDatabase
1416 if TAB_TOD_DEFINES_FAMILY not in ToolDefinition \
1417 or self.ToolChain not in ToolDefinition[TAB_TOD_DEFINES_FAMILY] \
1418 or not ToolDefinition[TAB_TOD_DEFINES_FAMILY][self.ToolChain]:
1419 EdkLogger.verbose("No tool chain family found in configuration for %s. Default to MSFT." \
1420 % self.ToolChain)
1421 self._ToolChainFamily = "MSFT"
1422 else:
1423 self._ToolChainFamily = ToolDefinition[TAB_TOD_DEFINES_FAMILY][self.ToolChain]
1424 return self._ToolChainFamily
1425
1426 def _GetBuildRuleFamily(self):
1427 if self._BuildRuleFamily == None:
1428 ToolDefinition = self.Workspace.ToolDef.ToolsDefTxtDatabase
1429 if TAB_TOD_DEFINES_BUILDRULEFAMILY not in ToolDefinition \
1430 or self.ToolChain not in ToolDefinition[TAB_TOD_DEFINES_BUILDRULEFAMILY] \
1431 or not ToolDefinition[TAB_TOD_DEFINES_BUILDRULEFAMILY][self.ToolChain]:
1432 EdkLogger.verbose("No tool chain family found in configuration for %s. Default to MSFT." \
1433 % self.ToolChain)
1434 self._BuildRuleFamily = "MSFT"
1435 else:
1436 self._BuildRuleFamily = ToolDefinition[TAB_TOD_DEFINES_BUILDRULEFAMILY][self.ToolChain]
1437 return self._BuildRuleFamily
1438
1439 ## Return the build options specific for all modules in this platform
1440 def _GetBuildOptions(self):
1441 if self._BuildOption == None:
1442 self._BuildOption = self._ExpandBuildOption(self.Platform.BuildOptions)
1443 return self._BuildOption
1444
1445 ## Return the build options specific for EDK modules in this platform
1446 def _GetEdkBuildOptions(self):
1447 if self._EdkBuildOption == None:
1448 self._EdkBuildOption = self._ExpandBuildOption(self.Platform.BuildOptions, EDK_NAME)
1449 return self._EdkBuildOption
1450
1451 ## Return the build options specific for EDKII modules in this platform
1452 def _GetEdkIIBuildOptions(self):
1453 if self._EdkIIBuildOption == None:
1454 self._EdkIIBuildOption = self._ExpandBuildOption(self.Platform.BuildOptions, EDKII_NAME)
1455 return self._EdkIIBuildOption
1456
1457 ## Parse build_rule.txt in Conf Directory.
1458 #
1459 # @retval BuildRule object
1460 #
1461 def _GetBuildRule(self):
1462 if self._BuildRule == None:
1463 BuildRuleFile = None
1464 if TAB_TAT_DEFINES_BUILD_RULE_CONF in self.Workspace.TargetTxt.TargetTxtDictionary:
1465 BuildRuleFile = self.Workspace.TargetTxt.TargetTxtDictionary[TAB_TAT_DEFINES_BUILD_RULE_CONF]
1466 if BuildRuleFile in [None, '']:
1467 BuildRuleFile = gDefaultBuildRuleFile
1468 self._BuildRule = BuildRule(BuildRuleFile)
1469 if self._BuildRule._FileVersion == "":
1470 self._BuildRule._FileVersion = AutoGenReqBuildRuleVerNum
1471 else:
1472 if self._BuildRule._FileVersion < AutoGenReqBuildRuleVerNum :
1473 # If Build Rule's version is less than the version number required by the tools, halting the build.
1474 EdkLogger.error("build", AUTOGEN_ERROR,
1475 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])"\
1476 % (self._BuildRule._FileVersion, AutoGenReqBuildRuleVerNum))
1477
1478 return self._BuildRule
1479
1480 ## Summarize the packages used by modules in this platform
1481 def _GetPackageList(self):
1482 if self._PackageList == None:
1483 self._PackageList = set()
1484 for La in self.LibraryAutoGenList:
1485 self._PackageList.update(La.DependentPackageList)
1486 for Ma in self.ModuleAutoGenList:
1487 self._PackageList.update(Ma.DependentPackageList)
1488 #Collect package set information from INF of FDF
1489 PkgSet = set()
1490 for ModuleFile in self._AsBuildModuleList:
1491 if ModuleFile in self.Platform.Modules:
1492 continue
1493 ModuleData = self.BuildDatabase[ModuleFile, self.Arch, self.BuildTarget, self.ToolChain]
1494 PkgSet.update(ModuleData.Packages)
1495 self._PackageList = list(self._PackageList) + list (PkgSet)
1496 return self._PackageList
1497
1498 def _GetNonDynamicPcdDict(self):
1499 if self._NonDynamicPcdDict:
1500 return self._NonDynamicPcdDict
1501 for Pcd in self.NonDynamicPcdList:
1502 self._NonDynamicPcdDict[(Pcd.TokenCName,Pcd.TokenSpaceGuidCName)] = Pcd
1503 return self._NonDynamicPcdDict
1504
1505 ## Get list of non-dynamic PCDs
1506 def _GetNonDynamicPcdList(self):
1507 if self._NonDynamicPcdList == None:
1508 self.CollectPlatformDynamicPcds()
1509 return self._NonDynamicPcdList
1510
1511 ## Get list of dynamic PCDs
1512 def _GetDynamicPcdList(self):
1513 if self._DynamicPcdList == None:
1514 self.CollectPlatformDynamicPcds()
1515 return self._DynamicPcdList
1516
1517 ## Generate Token Number for all PCD
1518 def _GetPcdTokenNumbers(self):
1519 if self._PcdTokenNumber == None:
1520 self._PcdTokenNumber = sdict()
1521 TokenNumber = 1
1522 #
1523 # Make the Dynamic and DynamicEx PCD use within different TokenNumber area.
1524 # Such as:
1525 #
1526 # Dynamic PCD:
1527 # TokenNumber 0 ~ 10
1528 # DynamicEx PCD:
1529 # TokeNumber 11 ~ 20
1530 #
1531 for Pcd in self.DynamicPcdList:
1532 if Pcd.Phase == "PEI":
1533 if Pcd.Type in ["Dynamic", "DynamicDefault", "DynamicVpd", "DynamicHii"]:
1534 EdkLogger.debug(EdkLogger.DEBUG_5, "%s %s (%s) -> %d" % (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Pcd.Phase, TokenNumber))
1535 self._PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName] = TokenNumber
1536 TokenNumber += 1
1537
1538 for Pcd in self.DynamicPcdList:
1539 if Pcd.Phase == "PEI":
1540 if Pcd.Type in ["DynamicEx", "DynamicExDefault", "DynamicExVpd", "DynamicExHii"]:
1541 EdkLogger.debug(EdkLogger.DEBUG_5, "%s %s (%s) -> %d" % (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Pcd.Phase, TokenNumber))
1542 self._PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName] = TokenNumber
1543 TokenNumber += 1
1544
1545 for Pcd in self.DynamicPcdList:
1546 if Pcd.Phase == "DXE":
1547 if Pcd.Type in ["Dynamic", "DynamicDefault", "DynamicVpd", "DynamicHii"]:
1548 EdkLogger.debug(EdkLogger.DEBUG_5, "%s %s (%s) -> %d" % (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Pcd.Phase, TokenNumber))
1549 self._PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName] = TokenNumber
1550 TokenNumber += 1
1551
1552 for Pcd in self.DynamicPcdList:
1553 if Pcd.Phase == "DXE":
1554 if Pcd.Type in ["DynamicEx", "DynamicExDefault", "DynamicExVpd", "DynamicExHii"]:
1555 EdkLogger.debug(EdkLogger.DEBUG_5, "%s %s (%s) -> %d" % (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Pcd.Phase, TokenNumber))
1556 self._PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName] = TokenNumber
1557 TokenNumber += 1
1558
1559 for Pcd in self.NonDynamicPcdList:
1560 self._PcdTokenNumber[Pcd.TokenCName, Pcd.TokenSpaceGuidCName] = TokenNumber
1561 TokenNumber += 1
1562 return self._PcdTokenNumber
1563
1564 ## Summarize ModuleAutoGen objects of all modules/libraries to be built for this platform
1565 def _GetAutoGenObjectList(self):
1566 self._ModuleAutoGenList = []
1567 self._LibraryAutoGenList = []
1568 for ModuleFile in self.Platform.Modules:
1569 Ma = ModuleAutoGen(
1570 self.Workspace,
1571 ModuleFile,
1572 self.BuildTarget,
1573 self.ToolChain,
1574 self.Arch,
1575 self.MetaFile
1576 )
1577 if Ma not in self._ModuleAutoGenList:
1578 self._ModuleAutoGenList.append(Ma)
1579 for La in Ma.LibraryAutoGenList:
1580 if La not in self._LibraryAutoGenList:
1581 self._LibraryAutoGenList.append(La)
1582 if Ma not in La._ReferenceModules:
1583 La._ReferenceModules.append(Ma)
1584
1585 ## Summarize ModuleAutoGen objects of all modules to be built for this platform
1586 def _GetModuleAutoGenList(self):
1587 if self._ModuleAutoGenList == None:
1588 self._GetAutoGenObjectList()
1589 return self._ModuleAutoGenList
1590
1591 ## Summarize ModuleAutoGen objects of all libraries to be built for this platform
1592 def _GetLibraryAutoGenList(self):
1593 if self._LibraryAutoGenList == None:
1594 self._GetAutoGenObjectList()
1595 return self._LibraryAutoGenList
1596
1597 ## Test if a module is supported by the platform
1598 #
1599 # An error will be raised directly if the module or its arch is not supported
1600 # by the platform or current configuration
1601 #
1602 def ValidModule(self, Module):
1603 return Module in self.Platform.Modules or Module in self.Platform.LibraryInstances \
1604 or Module in self._AsBuildModuleList
1605
1606 ## Resolve the library classes in a module to library instances
1607 #
1608 # This method will not only resolve library classes but also sort the library
1609 # instances according to the dependency-ship.
1610 #
1611 # @param Module The module from which the library classes will be resolved
1612 #
1613 # @retval library_list List of library instances sorted
1614 #
1615 def ApplyLibraryInstance(self, Module):
1616 ModuleType = Module.ModuleType
1617
1618 # for overridding library instances with module specific setting
1619 PlatformModule = self.Platform.Modules[str(Module)]
1620
1621 # add forced library instances (specified under LibraryClasses sections)
1622 #
1623 # If a module has a MODULE_TYPE of USER_DEFINED,
1624 # do not link in NULL library class instances from the global [LibraryClasses.*] sections.
1625 #
1626 if Module.ModuleType != SUP_MODULE_USER_DEFINED:
1627 for LibraryClass in self.Platform.LibraryClasses.GetKeys():
1628 if LibraryClass.startswith("NULL") and self.Platform.LibraryClasses[LibraryClass, Module.ModuleType]:
1629 Module.LibraryClasses[LibraryClass] = self.Platform.LibraryClasses[LibraryClass, Module.ModuleType]
1630
1631 # add forced library instances (specified in module overrides)
1632 for LibraryClass in PlatformModule.LibraryClasses:
1633 if LibraryClass.startswith("NULL"):
1634 Module.LibraryClasses[LibraryClass] = PlatformModule.LibraryClasses[LibraryClass]
1635
1636 # EdkII module
1637 LibraryConsumerList = [Module]
1638 Constructor = []
1639 ConsumedByList = sdict()
1640 LibraryInstance = sdict()
1641
1642 EdkLogger.verbose("")
1643 EdkLogger.verbose("Library instances of module [%s] [%s]:" % (str(Module), self.Arch))
1644 while len(LibraryConsumerList) > 0:
1645 M = LibraryConsumerList.pop()
1646 for LibraryClassName in M.LibraryClasses:
1647 if LibraryClassName not in LibraryInstance:
1648 # override library instance for this module
1649 if LibraryClassName in PlatformModule.LibraryClasses:
1650 LibraryPath = PlatformModule.LibraryClasses[LibraryClassName]
1651 else:
1652 LibraryPath = self.Platform.LibraryClasses[LibraryClassName, ModuleType]
1653 if LibraryPath == None or LibraryPath == "":
1654 LibraryPath = M.LibraryClasses[LibraryClassName]
1655 if LibraryPath == None or LibraryPath == "":
1656 EdkLogger.error("build", RESOURCE_NOT_AVAILABLE,
1657 "Instance of library class [%s] is not found" % LibraryClassName,
1658 File=self.MetaFile,
1659 ExtraData="in [%s] [%s]\n\tconsumed by module [%s]" % (str(M), self.Arch, str(Module)))
1660
1661 LibraryModule = self.BuildDatabase[LibraryPath, self.Arch, self.BuildTarget, self.ToolChain]
1662 # for those forced library instance (NULL library), add a fake library class
1663 if LibraryClassName.startswith("NULL"):
1664 LibraryModule.LibraryClass.append(LibraryClassObject(LibraryClassName, [ModuleType]))
1665 elif LibraryModule.LibraryClass == None \
1666 or len(LibraryModule.LibraryClass) == 0 \
1667 or (ModuleType != 'USER_DEFINED'
1668 and ModuleType not in LibraryModule.LibraryClass[0].SupModList):
1669 # only USER_DEFINED can link against any library instance despite of its SupModList
1670 EdkLogger.error("build", OPTION_MISSING,
1671 "Module type [%s] is not supported by library instance [%s]" \
1672 % (ModuleType, LibraryPath), File=self.MetaFile,
1673 ExtraData="consumed by [%s]" % str(Module))
1674
1675 LibraryInstance[LibraryClassName] = LibraryModule
1676 LibraryConsumerList.append(LibraryModule)
1677 EdkLogger.verbose("\t" + str(LibraryClassName) + " : " + str(LibraryModule))
1678 else:
1679 LibraryModule = LibraryInstance[LibraryClassName]
1680
1681 if LibraryModule == None:
1682 continue
1683
1684 if LibraryModule.ConstructorList != [] and LibraryModule not in Constructor:
1685 Constructor.append(LibraryModule)
1686
1687 if LibraryModule not in ConsumedByList:
1688 ConsumedByList[LibraryModule] = []
1689 # don't add current module itself to consumer list
1690 if M != Module:
1691 if M in ConsumedByList[LibraryModule]:
1692 continue
1693 ConsumedByList[LibraryModule].append(M)
1694 #
1695 # Initialize the sorted output list to the empty set
1696 #
1697 SortedLibraryList = []
1698 #
1699 # Q <- Set of all nodes with no incoming edges
1700 #
1701 LibraryList = [] #LibraryInstance.values()
1702 Q = []
1703 for LibraryClassName in LibraryInstance:
1704 M = LibraryInstance[LibraryClassName]
1705 LibraryList.append(M)
1706 if ConsumedByList[M] == []:
1707 Q.append(M)
1708
1709 #
1710 # start the DAG algorithm
1711 #
1712 while True:
1713 EdgeRemoved = True
1714 while Q == [] and EdgeRemoved:
1715 EdgeRemoved = False
1716 # for each node Item with a Constructor
1717 for Item in LibraryList:
1718 if Item not in Constructor:
1719 continue
1720 # for each Node without a constructor with an edge e from Item to Node
1721 for Node in ConsumedByList[Item]:
1722 if Node in Constructor:
1723 continue
1724 # remove edge e from the graph if Node has no constructor
1725 ConsumedByList[Item].remove(Node)
1726 EdgeRemoved = True
1727 if ConsumedByList[Item] == []:
1728 # insert Item into Q
1729 Q.insert(0, Item)
1730 break
1731 if Q != []:
1732 break
1733 # DAG is done if there's no more incoming edge for all nodes
1734 if Q == []:
1735 break
1736
1737 # remove node from Q
1738 Node = Q.pop()
1739 # output Node
1740 SortedLibraryList.append(Node)
1741
1742 # for each node Item with an edge e from Node to Item do
1743 for Item in LibraryList:
1744 if Node not in ConsumedByList[Item]:
1745 continue
1746 # remove edge e from the graph
1747 ConsumedByList[Item].remove(Node)
1748
1749 if ConsumedByList[Item] != []:
1750 continue
1751 # insert Item into Q, if Item has no other incoming edges
1752 Q.insert(0, Item)
1753
1754 #
1755 # if any remaining node Item in the graph has a constructor and an incoming edge, then the graph has a cycle
1756 #
1757 for Item in LibraryList:
1758 if ConsumedByList[Item] != [] and Item in Constructor and len(Constructor) > 1:
1759 ErrorMessage = "\tconsumed by " + "\n\tconsumed by ".join([str(L) for L in ConsumedByList[Item]])
1760 EdkLogger.error("build", BUILD_ERROR, 'Library [%s] with constructors has a cycle' % str(Item),
1761 ExtraData=ErrorMessage, File=self.MetaFile)
1762 if Item not in SortedLibraryList:
1763 SortedLibraryList.append(Item)
1764
1765 #
1766 # Build the list of constructor and destructir names
1767 # The DAG Topo sort produces the destructor order, so the list of constructors must generated in the reverse order
1768 #
1769 SortedLibraryList.reverse()
1770 return SortedLibraryList
1771
1772
1773 ## Override PCD setting (type, value, ...)
1774 #
1775 # @param ToPcd The PCD to be overrided
1776 # @param FromPcd The PCD overrideing from
1777 #
1778 def _OverridePcd(self, ToPcd, FromPcd, Module=""):
1779 #
1780 # in case there's PCDs coming from FDF file, which have no type given.
1781 # at this point, ToPcd.Type has the type found from dependent
1782 # package
1783 #
1784 if FromPcd != None:
1785 if ToPcd.Pending and FromPcd.Type not in [None, '']:
1786 ToPcd.Type = FromPcd.Type
1787 elif (ToPcd.Type not in [None, '']) and (FromPcd.Type not in [None, ''])\
1788 and (ToPcd.Type != FromPcd.Type) and (ToPcd.Type in FromPcd.Type):
1789 if ToPcd.Type.strip() == "DynamicEx":
1790 ToPcd.Type = FromPcd.Type
1791 elif ToPcd.Type not in [None, ''] and FromPcd.Type not in [None, ''] \
1792 and ToPcd.Type != FromPcd.Type:
1793 EdkLogger.error("build", OPTION_CONFLICT, "Mismatched PCD type",
1794 ExtraData="%s.%s is defined as [%s] in module %s, but as [%s] in platform."\
1795 % (ToPcd.TokenSpaceGuidCName, ToPcd.TokenCName,
1796 ToPcd.Type, Module, FromPcd.Type),
1797 File=self.MetaFile)
1798
1799 if FromPcd.MaxDatumSize not in [None, '']:
1800 ToPcd.MaxDatumSize = FromPcd.MaxDatumSize
1801 if FromPcd.DefaultValue not in [None, '']:
1802 ToPcd.DefaultValue = FromPcd.DefaultValue
1803 if FromPcd.TokenValue not in [None, '']:
1804 ToPcd.TokenValue = FromPcd.TokenValue
1805 if FromPcd.MaxDatumSize not in [None, '']:
1806 ToPcd.MaxDatumSize = FromPcd.MaxDatumSize
1807 if FromPcd.DatumType not in [None, '']:
1808 ToPcd.DatumType = FromPcd.DatumType
1809 if FromPcd.SkuInfoList not in [None, '', []]:
1810 ToPcd.SkuInfoList = FromPcd.SkuInfoList
1811
1812 # check the validation of datum
1813 IsValid, Cause = CheckPcdDatum(ToPcd.DatumType, ToPcd.DefaultValue)
1814 if not IsValid:
1815 EdkLogger.error('build', FORMAT_INVALID, Cause, File=self.MetaFile,
1816 ExtraData="%s.%s" % (ToPcd.TokenSpaceGuidCName, ToPcd.TokenCName))
1817 ToPcd.validateranges = FromPcd.validateranges
1818 ToPcd.validlists = FromPcd.validlists
1819 ToPcd.expressions = FromPcd.expressions
1820
1821 if ToPcd.DatumType == "VOID*" and ToPcd.MaxDatumSize in ['', None]:
1822 EdkLogger.debug(EdkLogger.DEBUG_9, "No MaxDatumSize specified for PCD %s.%s" \
1823 % (ToPcd.TokenSpaceGuidCName, ToPcd.TokenCName))
1824 Value = ToPcd.DefaultValue
1825 if Value in [None, '']:
1826 ToPcd.MaxDatumSize = '1'
1827 elif Value[0] == 'L':
1828 ToPcd.MaxDatumSize = str((len(Value) - 2) * 2)
1829 elif Value[0] == '{':
1830 ToPcd.MaxDatumSize = str(len(Value.split(',')))
1831 else:
1832 ToPcd.MaxDatumSize = str(len(Value) - 1)
1833
1834 # apply default SKU for dynamic PCDS if specified one is not available
1835 if (ToPcd.Type in PCD_DYNAMIC_TYPE_LIST or ToPcd.Type in PCD_DYNAMIC_EX_TYPE_LIST) \
1836 and ToPcd.SkuInfoList in [None, {}, '']:
1837 if self.Platform.SkuName in self.Platform.SkuIds:
1838 SkuName = self.Platform.SkuName
1839 else:
1840 SkuName = 'DEFAULT'
1841 ToPcd.SkuInfoList = {
1842 SkuName : SkuInfoClass(SkuName, self.Platform.SkuIds[SkuName], '', '', '', '', '', ToPcd.DefaultValue)
1843 }
1844
1845 ## Apply PCD setting defined platform to a module
1846 #
1847 # @param Module The module from which the PCD setting will be overrided
1848 #
1849 # @retval PCD_list The list PCDs with settings from platform
1850 #
1851 def ApplyPcdSetting(self, Module, Pcds):
1852 # for each PCD in module
1853 for Name,Guid in Pcds:
1854 PcdInModule = Pcds[Name,Guid]
1855 # find out the PCD setting in platform
1856 if (Name,Guid) in self.Platform.Pcds:
1857 PcdInPlatform = self.Platform.Pcds[Name,Guid]
1858 else:
1859 PcdInPlatform = None
1860 # then override the settings if any
1861 self._OverridePcd(PcdInModule, PcdInPlatform, Module)
1862 # resolve the VariableGuid value
1863 for SkuId in PcdInModule.SkuInfoList:
1864 Sku = PcdInModule.SkuInfoList[SkuId]
1865 if Sku.VariableGuid == '': continue
1866 Sku.VariableGuidValue = GuidValue(Sku.VariableGuid, self.PackageList)
1867 if Sku.VariableGuidValue == None:
1868 PackageList = "\n\t".join([str(P) for P in self.PackageList])
1869 EdkLogger.error(
1870 'build',
1871 RESOURCE_NOT_AVAILABLE,
1872 "Value of GUID [%s] is not found in" % Sku.VariableGuid,
1873 ExtraData=PackageList + "\n\t(used with %s.%s from module %s)" \
1874 % (Guid, Name, str(Module)),
1875 File=self.MetaFile
1876 )
1877
1878 # override PCD settings with module specific setting
1879 if Module in self.Platform.Modules:
1880 PlatformModule = self.Platform.Modules[str(Module)]
1881 for Key in PlatformModule.Pcds:
1882 if Key in Pcds:
1883 self._OverridePcd(Pcds[Key], PlatformModule.Pcds[Key], Module)
1884 return Pcds.values()
1885
1886 ## Resolve library names to library modules
1887 #
1888 # (for Edk.x modules)
1889 #
1890 # @param Module The module from which the library names will be resolved
1891 #
1892 # @retval library_list The list of library modules
1893 #
1894 def ResolveLibraryReference(self, Module):
1895 EdkLogger.verbose("")
1896 EdkLogger.verbose("Library instances of module [%s] [%s]:" % (str(Module), self.Arch))
1897 LibraryConsumerList = [Module]
1898
1899 # "CompilerStub" is a must for Edk modules
1900 if Module.Libraries:
1901 Module.Libraries.append("CompilerStub")
1902 LibraryList = []
1903 while len(LibraryConsumerList) > 0:
1904 M = LibraryConsumerList.pop()
1905 for LibraryName in M.Libraries:
1906 Library = self.Platform.LibraryClasses[LibraryName, ':dummy:']
1907 if Library == None:
1908 for Key in self.Platform.LibraryClasses.data.keys():
1909 if LibraryName.upper() == Key.upper():
1910 Library = self.Platform.LibraryClasses[Key, ':dummy:']
1911 break
1912 if Library == None:
1913 EdkLogger.warn("build", "Library [%s] is not found" % LibraryName, File=str(M),
1914 ExtraData="\t%s [%s]" % (str(Module), self.Arch))
1915 continue
1916
1917 if Library not in LibraryList:
1918 LibraryList.append(Library)
1919 LibraryConsumerList.append(Library)
1920 EdkLogger.verbose("\t" + LibraryName + " : " + str(Library) + ' ' + str(type(Library)))
1921 return LibraryList
1922
1923 ## Calculate the priority value of the build option
1924 #
1925 # @param Key Build option definition contain: TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
1926 #
1927 # @retval Value Priority value based on the priority list.
1928 #
1929 def CalculatePriorityValue(self, Key):
1930 Target, ToolChain, Arch, CommandType, Attr = Key.split('_')
1931 PriorityValue = 0x11111
1932 if Target == "*":
1933 PriorityValue &= 0x01111
1934 if ToolChain == "*":
1935 PriorityValue &= 0x10111
1936 if Arch == "*":
1937 PriorityValue &= 0x11011
1938 if CommandType == "*":
1939 PriorityValue &= 0x11101
1940 if Attr == "*":
1941 PriorityValue &= 0x11110
1942
1943 return self.PrioList["0x%0.5x"%PriorityValue]
1944
1945
1946 ## Expand * in build option key
1947 #
1948 # @param Options Options to be expanded
1949 #
1950 # @retval options Options expanded
1951 #
1952 def _ExpandBuildOption(self, Options, ModuleStyle=None):
1953 BuildOptions = {}
1954 FamilyMatch = False
1955 FamilyIsNull = True
1956
1957 OverrideList = {}
1958 #
1959 # Construct a list contain the build options which need override.
1960 #
1961 for Key in Options:
1962 #
1963 # Key[0] -- tool family
1964 # Key[1] -- TARGET_TOOLCHAIN_ARCH_COMMANDTYPE_ATTRIBUTE
1965 #
1966 if Key[0] == self.BuildRuleFamily :
1967 Target, ToolChain, Arch, CommandType, Attr = Key[1].split('_')
1968 if Target == self.BuildTarget or Target == "*":
1969 if ToolChain == self.ToolChain or ToolChain == "*":
1970 if Arch == self.Arch or Arch == "*":
1971 if Options[Key].startswith("="):
1972 if OverrideList.get(Key[1]) != None:
1973 OverrideList.pop(Key[1])
1974 OverrideList[Key[1]] = Options[Key]
1975
1976 #
1977 # Use the highest priority value.
1978 #
1979 if (len(OverrideList) >= 2):
1980 KeyList = OverrideList.keys()
1981 for Index in range(len(KeyList)):
1982 NowKey = KeyList[Index]
1983 Target1, ToolChain1, Arch1, CommandType1, Attr1 = NowKey.split("_")
1984 for Index1 in range(len(KeyList) - Index - 1):
1985 NextKey = KeyList[Index1 + Index + 1]
1986 #
1987 # Compare two Key, if one is included by another, choose the higher priority one
1988 #
1989 Target2, ToolChain2, Arch2, CommandType2, Attr2 = NextKey.split("_")
1990 if Target1 == Target2 or Target1 == "*" or Target2 == "*":
1991 if ToolChain1 == ToolChain2 or ToolChain1 == "*" or ToolChain2 == "*":
1992 if Arch1 == Arch2 or Arch1 == "*" or Arch2 == "*":
1993 if CommandType1 == CommandType2 or CommandType1 == "*" or CommandType2 == "*":
1994 if Attr1 == Attr2 or Attr1 == "*" or Attr2 == "*":
1995 if self.CalculatePriorityValue(NowKey) > self.CalculatePriorityValue(NextKey):
1996 if Options.get((self.BuildRuleFamily, NextKey)) != None:
1997 Options.pop((self.BuildRuleFamily, NextKey))
1998 else:
1999 if Options.get((self.BuildRuleFamily, NowKey)) != None:
2000 Options.pop((self.BuildRuleFamily, NowKey))
2001
2002
2003 for Key in Options:
2004 if ModuleStyle != None and len (Key) > 2:
2005 # Check Module style is EDK or EDKII.
2006 # Only append build option for the matched style module.
2007 if ModuleStyle == EDK_NAME and Key[2] != EDK_NAME:
2008 continue
2009 elif ModuleStyle == EDKII_NAME and Key[2] != EDKII_NAME:
2010 continue
2011 Family = Key[0]
2012 Target, Tag, Arch, Tool, Attr = Key[1].split("_")
2013 # if tool chain family doesn't match, skip it
2014 if Tool in self.ToolDefinition and Family != "":
2015 FamilyIsNull = False
2016 if self.ToolDefinition[Tool].get(TAB_TOD_DEFINES_BUILDRULEFAMILY, "") != "":
2017 if Family != self.ToolDefinition[Tool][TAB_TOD_DEFINES_BUILDRULEFAMILY]:
2018 continue
2019 elif Family != self.ToolDefinition[Tool][TAB_TOD_DEFINES_FAMILY]:
2020 continue
2021 FamilyMatch = True
2022 # expand any wildcard
2023 if Target == "*" or Target == self.BuildTarget:
2024 if Tag == "*" or Tag == self.ToolChain:
2025 if Arch == "*" or Arch == self.Arch:
2026 if Tool not in BuildOptions:
2027 BuildOptions[Tool] = {}
2028 if Attr != "FLAGS" or Attr not in BuildOptions[Tool]:
2029 BuildOptions[Tool][Attr] = Options[Key]
2030 else:
2031 # append options for the same tool
2032 BuildOptions[Tool][Attr] += " " + Options[Key]
2033 # Build Option Family has been checked, which need't to be checked again for family.
2034 if FamilyMatch or FamilyIsNull:
2035 return BuildOptions
2036
2037 for Key in Options:
2038 if ModuleStyle != None and len (Key) > 2:
2039 # Check Module style is EDK or EDKII.
2040 # Only append build option for the matched style module.
2041 if ModuleStyle == EDK_NAME and Key[2] != EDK_NAME:
2042 continue
2043 elif ModuleStyle == EDKII_NAME and Key[2] != EDKII_NAME:
2044 continue
2045 Family = Key[0]
2046 Target, Tag, Arch, Tool, Attr = Key[1].split("_")
2047 # if tool chain family doesn't match, skip it
2048 if Tool not in self.ToolDefinition or Family =="":
2049 continue
2050 # option has been added before
2051 if Family != self.ToolDefinition[Tool][TAB_TOD_DEFINES_FAMILY]:
2052 continue
2053
2054 # expand any wildcard
2055 if Target == "*" or Target == self.BuildTarget:
2056 if Tag == "*" or Tag == self.ToolChain:
2057 if Arch == "*" or Arch == self.Arch:
2058 if Tool not in BuildOptions:
2059 BuildOptions[Tool] = {}
2060 if Attr != "FLAGS" or Attr not in BuildOptions[Tool]:
2061 BuildOptions[Tool][Attr] = Options[Key]
2062 else:
2063 # append options for the same tool
2064 BuildOptions[Tool][Attr] += " " + Options[Key]
2065 return BuildOptions
2066
2067 ## Append build options in platform to a module
2068 #
2069 # @param Module The module to which the build options will be appened
2070 #
2071 # @retval options The options appended with build options in platform
2072 #
2073 def ApplyBuildOption(self, Module):
2074 # Get the different options for the different style module
2075 if Module.AutoGenVersion < 0x00010005:
2076 PlatformOptions = self.EdkBuildOption
2077 else:
2078 PlatformOptions = self.EdkIIBuildOption
2079 ModuleOptions = self._ExpandBuildOption(Module.BuildOptions)
2080 if Module in self.Platform.Modules:
2081 PlatformModule = self.Platform.Modules[str(Module)]
2082 PlatformModuleOptions = self._ExpandBuildOption(PlatformModule.BuildOptions)
2083 else:
2084 PlatformModuleOptions = {}
2085
2086 BuildRuleOrder = None
2087 for Options in [self.ToolDefinition, ModuleOptions, PlatformOptions, PlatformModuleOptions]:
2088 for Tool in Options:
2089 for Attr in Options[Tool]:
2090 if Attr == TAB_TOD_DEFINES_BUILDRULEORDER:
2091 BuildRuleOrder = Options[Tool][Attr]
2092
2093 AllTools = set(ModuleOptions.keys() + PlatformOptions.keys() + PlatformModuleOptions.keys() + self.ToolDefinition.keys())
2094 BuildOptions = {}
2095 for Tool in AllTools:
2096 if Tool not in BuildOptions:
2097 BuildOptions[Tool] = {}
2098
2099 for Options in [self.ToolDefinition, ModuleOptions, PlatformOptions, PlatformModuleOptions]:
2100 if Tool not in Options:
2101 continue
2102 for Attr in Options[Tool]:
2103 Value = Options[Tool][Attr]
2104 #
2105 # Do not generate it in Makefile
2106 #
2107 if Attr == TAB_TOD_DEFINES_BUILDRULEORDER:
2108 continue
2109 if Attr not in BuildOptions[Tool]:
2110 BuildOptions[Tool][Attr] = ""
2111 # check if override is indicated
2112 if Value.startswith('='):
2113 BuildOptions[Tool][Attr] = Value[1:]
2114 else:
2115 BuildOptions[Tool][Attr] += " " + Value
2116 if Module.AutoGenVersion < 0x00010005 and self.Workspace.UniFlag != None:
2117 #
2118 # Override UNI flag only for EDK module.
2119 #
2120 if 'BUILD' not in BuildOptions:
2121 BuildOptions['BUILD'] = {}
2122 BuildOptions['BUILD']['FLAGS'] = self.Workspace.UniFlag
2123 return BuildOptions, BuildRuleOrder
2124
2125 Platform = property(_GetPlatform)
2126 Name = property(_GetName)
2127 Guid = property(_GetGuid)
2128 Version = property(_GetVersion)
2129
2130 OutputDir = property(_GetOutputDir)
2131 BuildDir = property(_GetBuildDir)
2132 MakeFileDir = property(_GetMakeFileDir)
2133 FdfFile = property(_GetFdfFile)
2134
2135 PcdTokenNumber = property(_GetPcdTokenNumbers) # (TokenCName, TokenSpaceGuidCName) : GeneratedTokenNumber
2136 DynamicPcdList = property(_GetDynamicPcdList) # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
2137 NonDynamicPcdList = property(_GetNonDynamicPcdList) # [(TokenCName1, TokenSpaceGuidCName1), (TokenCName2, TokenSpaceGuidCName2), ...]
2138 NonDynamicPcdDict = property(_GetNonDynamicPcdDict)
2139 PackageList = property(_GetPackageList)
2140
2141 ToolDefinition = property(_GetToolDefinition) # toolcode : tool path
2142 ToolDefinitionFile = property(_GetToolDefFile) # toolcode : lib path
2143 ToolChainFamily = property(_GetToolChainFamily)
2144 BuildRuleFamily = property(_GetBuildRuleFamily)
2145 BuildOption = property(_GetBuildOptions) # toolcode : option
2146 EdkBuildOption = property(_GetEdkBuildOptions) # edktoolcode : option
2147 EdkIIBuildOption = property(_GetEdkIIBuildOptions) # edkiitoolcode : option
2148
2149 BuildCommand = property(_GetBuildCommand)
2150 BuildRule = property(_GetBuildRule)
2151 ModuleAutoGenList = property(_GetModuleAutoGenList)
2152 LibraryAutoGenList = property(_GetLibraryAutoGenList)
2153 GenFdsCommand = property(_GenFdsCommand)
2154
2155 ## ModuleAutoGen class
2156 #
2157 # This class encapsules the AutoGen behaviors for the build tools. In addition to
2158 # the generation of AutoGen.h and AutoGen.c, it will generate *.depex file according
2159 # to the [depex] section in module's inf file.
2160 #
2161 class ModuleAutoGen(AutoGen):
2162 ## The real constructor of ModuleAutoGen
2163 #
2164 # This method is not supposed to be called by users of ModuleAutoGen. It's
2165 # only used by factory method __new__() to do real initialization work for an
2166 # object of ModuleAutoGen
2167 #
2168 # @param Workspace EdkIIWorkspaceBuild object
2169 # @param ModuleFile The path of module file
2170 # @param Target Build target (DEBUG, RELEASE)
2171 # @param Toolchain Name of tool chain
2172 # @param Arch The arch the module supports
2173 # @param PlatformFile Platform meta-file
2174 #
2175 def _Init(self, Workspace, ModuleFile, Target, Toolchain, Arch, PlatformFile):
2176 EdkLogger.debug(EdkLogger.DEBUG_9, "AutoGen module [%s] [%s]" % (ModuleFile, Arch))
2177 GlobalData.gProcessingFile = "%s [%s, %s, %s]" % (ModuleFile, Arch, Toolchain, Target)
2178
2179 self.Workspace = Workspace
2180 self.WorkspaceDir = Workspace.WorkspaceDir
2181
2182 self.MetaFile = ModuleFile
2183 self.PlatformInfo = PlatformAutoGen(Workspace, PlatformFile, Target, Toolchain, Arch)
2184 # check if this module is employed by active platform
2185 if not self.PlatformInfo.ValidModule(self.MetaFile):
2186 EdkLogger.verbose("Module [%s] for [%s] is not employed by active platform\n" \
2187 % (self.MetaFile, Arch))
2188 return False
2189
2190 self.SourceDir = self.MetaFile.SubDir
2191 if self.SourceDir.upper().find(self.WorkspaceDir.upper()) == 0:
2192 self.SourceDir = self.SourceDir[len(self.WorkspaceDir) + 1:]
2193
2194 self.SourceOverrideDir = None
2195 # use overrided path defined in DSC file
2196 if self.MetaFile.Key in GlobalData.gOverrideDir:
2197 self.SourceOverrideDir = GlobalData.gOverrideDir[self.MetaFile.Key]
2198
2199 self.ToolChain = Toolchain
2200 self.BuildTarget = Target
2201 self.Arch = Arch
2202 self.ToolChainFamily = self.PlatformInfo.ToolChainFamily
2203 self.BuildRuleFamily = self.PlatformInfo.BuildRuleFamily
2204
2205 self.IsMakeFileCreated = False
2206 self.IsCodeFileCreated = False
2207 self.IsAsBuiltInfCreated = False
2208 self.DepexGenerated = False
2209
2210 self.BuildDatabase = self.Workspace.BuildDatabase
2211 self.BuildRuleOrder = None
2212
2213 self._Module = None
2214 self._Name = None
2215 self._Guid = None
2216 self._Version = None
2217 self._ModuleType = None
2218 self._ComponentType = None
2219 self._PcdIsDriver = None
2220 self._AutoGenVersion = None
2221 self._LibraryFlag = None
2222 self._CustomMakefile = None
2223 self._Macro = None
2224
2225 self._BuildDir = None
2226 self._OutputDir = None
2227 self._DebugDir = None
2228 self._MakeFileDir = None
2229
2230 self._IncludePathList = None
2231 self._AutoGenFileList = None
2232 self._UnicodeFileList = None
2233 self._SourceFileList = None
2234 self._ObjectFileList = None
2235 self._BinaryFileList = None
2236
2237 self._DependentPackageList = None
2238 self._DependentLibraryList = None
2239 self._LibraryAutoGenList = None
2240 self._DerivedPackageList = None
2241 self._ModulePcdList = None
2242 self._LibraryPcdList = None
2243 self._PcdComments = sdict()
2244 self._GuidList = None
2245 self._GuidsUsedByPcd = None
2246 self._GuidComments = sdict()
2247 self._ProtocolList = None
2248 self._ProtocolComments = sdict()
2249 self._PpiList = None
2250 self._PpiComments = sdict()
2251 self._DepexList = None
2252 self._DepexExpressionList = None
2253 self._BuildOption = None
2254 self._BuildOptionIncPathList = None
2255 self._BuildTargets = None
2256 self._IntroBuildTargetList = None
2257 self._FinalBuildTargetList = None
2258 self._FileTypes = None
2259 self._BuildRules = None
2260
2261 ## The Modules referenced to this Library
2262 # Only Library has this attribute
2263 self._ReferenceModules = []
2264
2265 ## Store the FixedAtBuild Pcds
2266 #
2267 self._FixedAtBuildPcds = []
2268 self.ConstPcd = {}
2269 return True
2270
2271 def __repr__(self):
2272 return "%s [%s]" % (self.MetaFile, self.Arch)
2273
2274 # Get FixedAtBuild Pcds of this Module
2275 def _GetFixedAtBuildPcds(self):
2276 if self._FixedAtBuildPcds:
2277 return self._FixedAtBuildPcds
2278 for Pcd in self.ModulePcdList:
2279 if self.IsLibrary:
2280 if not (Pcd.Pending == False and Pcd.Type == "FixedAtBuild"):
2281 continue
2282 elif Pcd.Type != "FixedAtBuild":
2283 continue
2284 if Pcd not in self._FixedAtBuildPcds:
2285 self._FixedAtBuildPcds.append(Pcd)
2286
2287 return self._FixedAtBuildPcds
2288
2289 def _GetUniqueBaseName(self):
2290 BaseName = self.Name
2291 for Module in self.PlatformInfo.ModuleAutoGenList:
2292 if Module.MetaFile == self.MetaFile:
2293 continue
2294 if Module.Name == self.Name:
2295 EdkLogger.warn('build', 'Modules have same BaseName:\n %s\n %s' % (Module.MetaFile, self.MetaFile))
2296 if uuid.UUID(Module.Guid) == uuid.UUID(self.Guid):
2297 EdkLogger.error("build", FILE_DUPLICATED, 'Modules have same BaseName and FILE_GUID:\n'
2298 ' %s\n %s' % (Module.MetaFile, self.MetaFile))
2299 BaseName = '%s_%s' % (self.Name, self.Guid)
2300 return BaseName
2301
2302 # Macros could be used in build_rule.txt (also Makefile)
2303 def _GetMacros(self):
2304 if self._Macro == None:
2305 self._Macro = sdict()
2306 self._Macro["WORKSPACE" ] = self.WorkspaceDir
2307 self._Macro["MODULE_NAME" ] = self.Name
2308 self._Macro["MODULE_NAME_GUID" ] = self._GetUniqueBaseName()
2309 self._Macro["MODULE_GUID" ] = self.Guid
2310 self._Macro["MODULE_VERSION" ] = self.Version
2311 self._Macro["MODULE_TYPE" ] = self.ModuleType
2312 self._Macro["MODULE_FILE" ] = str(self.MetaFile)
2313 self._Macro["MODULE_FILE_BASE_NAME" ] = self.MetaFile.BaseName
2314 self._Macro["MODULE_RELATIVE_DIR" ] = self.SourceDir
2315 self._Macro["MODULE_DIR" ] = self.SourceDir
2316
2317 self._Macro["BASE_NAME" ] = self.Name
2318
2319 self._Macro["ARCH" ] = self.Arch
2320 self._Macro["TOOLCHAIN" ] = self.ToolChain
2321 self._Macro["TOOLCHAIN_TAG" ] = self.ToolChain
2322 self._Macro["TOOL_CHAIN_TAG" ] = self.ToolChain
2323 self._Macro["TARGET" ] = self.BuildTarget
2324
2325 self._Macro["BUILD_DIR" ] = self.PlatformInfo.BuildDir
2326 self._Macro["BIN_DIR" ] = os.path.join(self.PlatformInfo.BuildDir, self.Arch)
2327 self._Macro["LIB_DIR" ] = os.path.join(self.PlatformInfo.BuildDir, self.Arch)
2328 self._Macro["MODULE_BUILD_DIR" ] = self.BuildDir
2329 self._Macro["OUTPUT_DIR" ] = self.OutputDir
2330 self._Macro["DEBUG_DIR" ] = self.DebugDir
2331 return self._Macro
2332
2333 ## Return the module build data object
2334 def _GetModule(self):
2335 if self._Module == None:
2336 self._Module = self.Workspace.BuildDatabase[self.MetaFile, self.Arch, self.BuildTarget, self.ToolChain]
2337 return self._Module
2338
2339 ## Return the module name
2340 def _GetBaseName(self):
2341 return self.Module.BaseName
2342
2343 ## Return the module DxsFile if exist
2344 def _GetDxsFile(self):
2345 return self.Module.DxsFile
2346
2347 ## Return the module SourceOverridePath
2348 def _GetSourceOverridePath(self):
2349 return self.Module.SourceOverridePath
2350
2351 ## Return the module meta-file GUID
2352 def _GetGuid(self):
2353 #
2354 # To build same module more than once, the module path with FILE_GUID overridden has
2355 # the file name FILE_GUIDmodule.inf, but the relative path (self.MetaFile.File) is the realy path
2356 # in DSC. The overridden GUID can be retrieved from file name
2357 #
2358 if os.path.basename(self.MetaFile.File) != os.path.basename(self.MetaFile.Path):
2359 #
2360 # Length of GUID is 36
2361 #
2362 return os.path.basename(self.MetaFile.Path)[:36]
2363 return self.Module.Guid
2364
2365 ## Return the module version
2366 def _GetVersion(self):
2367 return self.Module.Version
2368
2369 ## Return the module type
2370 def _GetModuleType(self):
2371 return self.Module.ModuleType
2372
2373 ## Return the component type (for Edk.x style of module)
2374 def _GetComponentType(self):
2375 return self.Module.ComponentType
2376
2377 ## Return the build type
2378 def _GetBuildType(self):
2379 return self.Module.BuildType
2380
2381 ## Return the PCD_IS_DRIVER setting
2382 def _GetPcdIsDriver(self):
2383 return self.Module.PcdIsDriver
2384
2385 ## Return the autogen version, i.e. module meta-file version
2386 def _GetAutoGenVersion(self):
2387 return self.Module.AutoGenVersion
2388
2389 ## Check if the module is library or not
2390 def _IsLibrary(self):
2391 if self._LibraryFlag == None:
2392 if self.Module.LibraryClass != None and self.Module.LibraryClass != []:
2393 self._LibraryFlag = True
2394 else:
2395 self._LibraryFlag = False
2396 return self._LibraryFlag
2397
2398 ## Check if the module is binary module or not
2399 def _IsBinaryModule(self):
2400 return self.Module.IsBinaryModule
2401
2402 ## Return the directory to store intermediate files of the module
2403 def _GetBuildDir(self):
2404 if self._BuildDir == None:
2405 self._BuildDir = path.join(
2406 self.PlatformInfo.BuildDir,
2407 self.Arch,
2408 self.SourceDir,
2409 self.MetaFile.BaseName
2410 )
2411 CreateDirectory(self._BuildDir)
2412 return self._BuildDir
2413
2414 ## Return the directory to store the intermediate object files of the mdoule
2415 def _GetOutputDir(self):
2416 if self._OutputDir == None:
2417 self._OutputDir = path.join(self.BuildDir, "OUTPUT")
2418 CreateDirectory(self._OutputDir)
2419 return self._OutputDir
2420
2421 ## Return the directory to store auto-gened source files of the mdoule
2422 def _GetDebugDir(self):
2423 if self._DebugDir == None:
2424 self._DebugDir = path.join(self.BuildDir, "DEBUG")
2425 CreateDirectory(self._DebugDir)
2426 return self._DebugDir
2427
2428 ## Return the path of custom file
2429 def _GetCustomMakefile(self):
2430 if self._CustomMakefile == None:
2431 self._CustomMakefile = {}
2432 for Type in self.Module.CustomMakefile:
2433 if Type in gMakeTypeMap:
2434 MakeType = gMakeTypeMap[Type]
2435 else:
2436 MakeType = 'nmake'
2437 if self.SourceOverrideDir != None:
2438 File = os.path.join(self.SourceOverrideDir, self.Module.CustomMakefile[Type])
2439 if not os.path.exists(File):
2440 File = os.path.join(self.SourceDir, self.Module.CustomMakefile[Type])
2441 else:
2442 File = os.path.join(self.SourceDir, self.Module.CustomMakefile[Type])
2443 self._CustomMakefile[MakeType] = File
2444 return self._CustomMakefile
2445
2446 ## Return the directory of the makefile
2447 #
2448 # @retval string The directory string of module's makefile
2449 #
2450 def _GetMakeFileDir(self):
2451 return self.BuildDir
2452
2453 ## Return build command string
2454 #
2455 # @retval string Build command string
2456 #
2457 def _GetBuildCommand(self):
2458 return self.PlatformInfo.BuildCommand
2459
2460 ## Get object list of all packages the module and its dependent libraries belong to
2461 #
2462 # @retval list The list of package object
2463 #
2464 def _GetDerivedPackageList(self):
2465 PackageList = []
2466 for M in [self.Module] + self.DependentLibraryList:
2467 for Package in M.Packages:
2468 if Package in PackageList:
2469 continue
2470 PackageList.append(Package)
2471 return PackageList
2472
2473 ## Get the depex string
2474 #
2475 # @return : a string contain all depex expresion.
2476 def _GetDepexExpresionString(self):
2477 DepexStr = ''
2478 DepexList = []
2479 ## DPX_SOURCE IN Define section.
2480 if self.Module.DxsFile:
2481 return DepexStr
2482 for M in [self.Module] + self.DependentLibraryList:
2483 Filename = M.MetaFile.Path
2484 InfObj = InfSectionParser.InfSectionParser(Filename)
2485 DepexExpresionList = InfObj.GetDepexExpresionList()
2486 for DepexExpresion in DepexExpresionList:
2487 for key in DepexExpresion.keys():
2488 Arch, ModuleType = key
2489 # the type of build module is USER_DEFINED.
2490 # All different DEPEX section tags would be copied into the As Built INF file
2491 # and there would be separate DEPEX section tags
2492 if self.ModuleType.upper() == SUP_MODULE_USER_DEFINED:
2493 if (Arch.upper() == self.Arch.upper()) and (ModuleType.upper() != TAB_ARCH_COMMON):
2494 DepexList.append({(Arch, ModuleType): DepexExpresion[key][:]})
2495 else:
2496 if Arch.upper() == TAB_ARCH_COMMON or \
2497 (Arch.upper() == self.Arch.upper() and \
2498 ModuleType.upper() in [TAB_ARCH_COMMON, self.ModuleType.upper()]):
2499 DepexList.append({(Arch, ModuleType): DepexExpresion[key][:]})
2500
2501 #the type of build module is USER_DEFINED.
2502 if self.ModuleType.upper() == SUP_MODULE_USER_DEFINED:
2503 for Depex in DepexList:
2504 for key in Depex.keys():
2505 DepexStr += '[Depex.%s.%s]\n' % key
2506 DepexStr += '\n'.join(['# '+ val for val in Depex[key]])
2507 DepexStr += '\n\n'
2508 if not DepexStr:
2509 return '[Depex.%s]\n' % self.Arch
2510 return DepexStr
2511
2512 #the type of build module not is USER_DEFINED.
2513 Count = 0
2514 for Depex in DepexList:
2515 Count += 1
2516 if DepexStr != '':
2517 DepexStr += ' AND '
2518 DepexStr += '('
2519 for D in Depex.values():
2520 DepexStr += ' '.join([val for val in D])
2521 Index = DepexStr.find('END')
2522 if Index > -1 and Index == len(DepexStr) - 3:
2523 DepexStr = DepexStr[:-3]
2524 DepexStr = DepexStr.strip()
2525 DepexStr += ')'
2526 if Count == 1:
2527 DepexStr = DepexStr.lstrip('(').rstrip(')').strip()
2528 if not DepexStr:
2529 return '[Depex.%s]\n' % self.Arch
2530 return '[Depex.%s]\n# ' % self.Arch + DepexStr
2531
2532 ## Merge dependency expression
2533 #
2534 # @retval list The token list of the dependency expression after parsed
2535 #
2536 def _GetDepexTokenList(self):
2537 if self._DepexList == None:
2538 self._DepexList = {}
2539 if self.DxsFile or self.IsLibrary or TAB_DEPENDENCY_EXPRESSION_FILE in self.FileTypes:
2540 return self._DepexList
2541
2542 self._DepexList[self.ModuleType] = []
2543
2544 for ModuleType in self._DepexList:
2545 DepexList = self._DepexList[ModuleType]
2546 #
2547 # Append depex from dependent libraries, if not "BEFORE", "AFTER" expresion
2548 #
2549 for M in [self.Module] + self.DependentLibraryList:
2550 Inherited = False
2551 for D in M.Depex[self.Arch, ModuleType]:
2552 if DepexList != []:
2553 DepexList.append('AND')
2554 DepexList.append('(')
2555 DepexList.extend(D)
2556 if DepexList[-1] == 'END': # no need of a END at this time
2557 DepexList.pop()
2558 DepexList.append(')')
2559 Inherited = True
2560 if Inherited:
2561 EdkLogger.verbose("DEPEX[%s] (+%s) = %s" % (self.Name, M.BaseName, DepexList))
2562 if 'BEFORE' in DepexList or 'AFTER' in DepexList:
2563 break
2564 if len(DepexList) > 0:
2565 EdkLogger.verbose('')
2566 return self._DepexList
2567
2568 ## Merge dependency expression
2569 #
2570 # @retval list The token list of the dependency expression after parsed
2571 #
2572 def _GetDepexExpressionTokenList(self):
2573 if self._DepexExpressionList == None:
2574 self._DepexExpressionList = {}
2575 if self.DxsFile or self.IsLibrary or TAB_DEPENDENCY_EXPRESSION_FILE in self.FileTypes:
2576 return self._DepexExpressionList
2577
2578 self._DepexExpressionList[self.ModuleType] = ''
2579
2580 for ModuleType in self._DepexExpressionList:
2581 DepexExpressionList = self._DepexExpressionList[ModuleType]
2582 #
2583 # Append depex from dependent libraries, if not "BEFORE", "AFTER" expresion
2584 #
2585 for M in [self.Module] + self.DependentLibraryList:
2586 Inherited = False
2587 for D in M.DepexExpression[self.Arch, ModuleType]:
2588 if DepexExpressionList != '':
2589 DepexExpressionList += ' AND '
2590 DepexExpressionList += '('
2591 DepexExpressionList += D
2592 DepexExpressionList = DepexExpressionList.rstrip('END').strip()
2593 DepexExpressionList += ')'
2594 Inherited = True
2595 if Inherited:
2596 EdkLogger.verbose("DEPEX[%s] (+%s) = %s" % (self.Name, M.BaseName, DepexExpressionList))
2597 if 'BEFORE' in DepexExpressionList or 'AFTER' in DepexExpressionList:
2598 break
2599 if len(DepexExpressionList) > 0:
2600 EdkLogger.verbose('')
2601 self._DepexExpressionList[ModuleType] = DepexExpressionList
2602 return self._DepexExpressionList
2603
2604 ## Return the list of specification version required for the module
2605 #
2606 # @retval list The list of specification defined in module file
2607 #
2608 def _GetSpecification(self):
2609 return self.Module.Specification
2610
2611 ## Tool option for the module build
2612 #
2613 # @param PlatformInfo The object of PlatformBuildInfo
2614 # @retval dict The dict containing valid options
2615 #
2616 def _GetModuleBuildOption(self):
2617 if self._BuildOption == None:
2618 self._BuildOption, self.BuildRuleOrder = self.PlatformInfo.ApplyBuildOption(self.Module)
2619 if self.BuildRuleOrder:
2620 self.BuildRuleOrder = ['.%s' % Ext for Ext in self.BuildRuleOrder.split()]
2621 return self._BuildOption
2622
2623 ## Get include path list from tool option for the module build
2624 #
2625 # @retval list The include path list
2626 #
2627 def _GetBuildOptionIncPathList(self):
2628 if self._BuildOptionIncPathList == None:
2629 #
2630 # Regular expression for finding Include Directories, the difference between MSFT and INTEL/GCC/RVCT
2631 # is the former use /I , the Latter used -I to specify include directories
2632 #
2633 if self.PlatformInfo.ToolChainFamily in ('MSFT'):
2634 gBuildOptIncludePattern = re.compile(r"(?:.*?)/I[ \t]*([^ ]*)", re.MULTILINE|re.DOTALL)
2635 elif self.PlatformInfo.ToolChainFamily in ('INTEL', 'GCC', 'RVCT'):
2636 gBuildOptIncludePattern = re.compile(r"(?:.*?)-I[ \t]*([^ ]*)", re.MULTILINE|re.DOTALL)
2637 else:
2638 #
2639 # New ToolChainFamily, don't known whether there is option to specify include directories
2640 #
2641 self._BuildOptionIncPathList = []
2642 return self._BuildOptionIncPathList
2643
2644 BuildOptionIncPathList = []
2645 for Tool in ('CC', 'PP', 'VFRPP', 'ASLPP', 'ASLCC', 'APP', 'ASM'):
2646 Attr = 'FLAGS'
2647 try:
2648 FlagOption = self.BuildOption[Tool][Attr]
2649 except KeyError:
2650 FlagOption = ''
2651
2652 if self.PlatformInfo.ToolChainFamily != 'RVCT':
2653 IncPathList = [NormPath(Path, self.Macros) for Path in gBuildOptIncludePattern.findall(FlagOption)]
2654 else:
2655 #
2656 # RVCT may specify a list of directory seperated by commas
2657 #
2658 IncPathList = []
2659 for Path in gBuildOptIncludePattern.findall(FlagOption):
2660 PathList = GetSplitList(Path, TAB_COMMA_SPLIT)
2661 IncPathList += [NormPath(PathEntry, self.Macros) for PathEntry in PathList]
2662
2663 #
2664 # EDK II modules must not reference header files outside of the packages they depend on or
2665 # within the module's directory tree. Report error if violation.
2666 #
2667 if self.AutoGenVersion >= 0x00010005 and len(IncPathList) > 0:
2668 for Path in IncPathList:
2669 if (Path not in self.IncludePathList) and (CommonPath([Path, self.MetaFile.Dir]) != self.MetaFile.Dir):
2670 ErrMsg = "The include directory for the EDK II module in this line is invalid %s specified in %s FLAGS '%s'" % (Path, Tool, FlagOption)
2671 EdkLogger.error("build",
2672 PARAMETER_INVALID,
2673 ExtraData = ErrMsg,
2674 File = str(self.MetaFile))
2675
2676
2677 BuildOptionIncPathList += IncPathList
2678
2679 self._BuildOptionIncPathList = BuildOptionIncPathList
2680
2681 return self._BuildOptionIncPathList
2682
2683 ## Return a list of files which can be built from source
2684 #
2685 # What kind of files can be built is determined by build rules in
2686 # $(CONF_DIRECTORY)/build_rule.txt and toolchain family.
2687 #
2688 def _GetSourceFileList(self):
2689 if self._SourceFileList == None:
2690 self._SourceFileList = []
2691 for F in self.Module.Sources:
2692 # match tool chain
2693 if F.TagName not in ("", "*", self.ToolChain):
2694 EdkLogger.debug(EdkLogger.DEBUG_9, "The toolchain [%s] for processing file [%s] is found, "
2695 "but [%s] is needed" % (F.TagName, str(F), self.ToolChain))
2696 continue
2697 # match tool chain family
2698 if F.ToolChainFamily not in ("", "*", self.ToolChainFamily):
2699 EdkLogger.debug(
2700 EdkLogger.DEBUG_0,
2701 "The file [%s] must be built by tools of [%s], " \
2702 "but current toolchain family is [%s]" \
2703 % (str(F), F.ToolChainFamily, self.ToolChainFamily))
2704 continue
2705
2706 # add the file path into search path list for file including
2707 if F.Dir not in self.IncludePathList and self.AutoGenVersion >= 0x00010005:
2708 self.IncludePathList.insert(0, F.Dir)
2709 self._SourceFileList.append(F)
2710 self._ApplyBuildRule(F, TAB_UNKNOWN_FILE)
2711 return self._SourceFileList
2712
2713 ## Return the list of unicode files
2714 def _GetUnicodeFileList(self):
2715 if self._UnicodeFileList == None:
2716 if TAB_UNICODE_FILE in self.FileTypes:
2717 self._UnicodeFileList = self.FileTypes[TAB_UNICODE_FILE]
2718 else:
2719 self._UnicodeFileList = []
2720 return self._UnicodeFileList
2721
2722 ## Return a list of files which can be built from binary
2723 #
2724 # "Build" binary files are just to copy them to build directory.
2725 #
2726 # @retval list The list of files which can be built later
2727 #
2728 def _GetBinaryFiles(self):
2729 if self._BinaryFileList == None:
2730 self._BinaryFileList = []
2731 for F in self.Module.Binaries:
2732 if F.Target not in ['COMMON', '*'] and F.Target != self.BuildTarget:
2733 continue
2734 self._BinaryFileList.append(F)
2735 self._ApplyBuildRule(F, F.Type)
2736 return self._BinaryFileList
2737
2738 def _GetBuildRules(self):
2739 if self._BuildRules == None:
2740 BuildRules = {}
2741 BuildRuleDatabase = self.PlatformInfo.BuildRule
2742 for Type in BuildRuleDatabase.FileTypeList:
2743 #first try getting build rule by BuildRuleFamily
2744 RuleObject = BuildRuleDatabase[Type, self.BuildType, self.Arch, self.BuildRuleFamily]
2745 if not RuleObject:
2746 # build type is always module type, but ...
2747 if self.ModuleType != self.BuildType:
2748 RuleObject = BuildRuleDatabase[Type, self.ModuleType, self.Arch, self.BuildRuleFamily]
2749 #second try getting build rule by ToolChainFamily
2750 if not RuleObject:
2751 RuleObject = BuildRuleDatabase[Type, self.BuildType, self.Arch, self.ToolChainFamily]
2752 if not RuleObject:
2753 # build type is always module type, but ...
2754 if self.ModuleType != self.BuildType:
2755 RuleObject = BuildRuleDatabase[Type, self.ModuleType, self.Arch, self.ToolChainFamily]
2756 if not RuleObject:
2757 continue
2758 RuleObject = RuleObject.Instantiate(self.Macros)
2759 BuildRules[Type] = RuleObject
2760 for Ext in RuleObject.SourceFileExtList:
2761 BuildRules[Ext] = RuleObject
2762 self._BuildRules = BuildRules
2763 return self._BuildRules
2764
2765 def _ApplyBuildRule(self, File, FileType):
2766 if self._BuildTargets == None:
2767 self._IntroBuildTargetList = set()
2768 self._FinalBuildTargetList = set()
2769 self._BuildTargets = {}
2770 self._FileTypes = {}
2771
2772 SubDirectory = os.path.join(self.OutputDir, File.SubDir)
2773 if not os.path.exists(SubDirectory):
2774 CreateDirectory(SubDirectory)
2775 LastTarget = None
2776 RuleChain = []
2777 SourceList = [File]
2778 Index = 0
2779 #
2780 # Make sure to get build rule order value
2781 #
2782 self._GetModuleBuildOption()
2783
2784 while Index < len(SourceList):
2785 Source = SourceList[Index]
2786 Index = Index + 1
2787
2788 if Source != File:
2789 CreateDirectory(Source.Dir)
2790
2791 if File.IsBinary and File == Source and self._BinaryFileList != None and File in self._BinaryFileList:
2792 # Skip all files that are not binary libraries
2793 if not self.IsLibrary:
2794 continue
2795 RuleObject = self.BuildRules[TAB_DEFAULT_BINARY_FILE]
2796 elif FileType in self.BuildRules:
2797 RuleObject = self.BuildRules[FileType]
2798 elif Source.Ext in self.BuildRules:
2799 RuleObject = self.BuildRules[Source.Ext]
2800 else:
2801 # stop at no more rules
2802 if LastTarget:
2803 self._FinalBuildTargetList.add(LastTarget)
2804 break
2805
2806 FileType = RuleObject.SourceFileType
2807 if FileType not in self._FileTypes:
2808 self._FileTypes[FileType] = set()
2809 self._FileTypes[FileType].add(Source)
2810
2811 # stop at STATIC_LIBRARY for library
2812 if self.IsLibrary and FileType == TAB_STATIC_LIBRARY:
2813 if LastTarget:
2814 self._FinalBuildTargetList.add(LastTarget)
2815 break
2816
2817 Target = RuleObject.Apply(Source, self.BuildRuleOrder)
2818 if not Target:
2819 if LastTarget:
2820 self._FinalBuildTargetList.add(LastTarget)
2821 break
2822 elif not Target.Outputs:
2823 # Only do build for target with outputs
2824 self._FinalBuildTargetList.add(Target)
2825
2826 if FileType not in self._BuildTargets:
2827 self._BuildTargets[FileType] = set()
2828 self._BuildTargets[FileType].add(Target)
2829
2830 if not Source.IsBinary and Source == File:
2831 self._IntroBuildTargetList.add(Target)
2832
2833 # to avoid cyclic rule
2834 if FileType in RuleChain:
2835 break
2836
2837 RuleChain.append(FileType)
2838 SourceList.extend(Target.Outputs)
2839 LastTarget = Target
2840 FileType = TAB_UNKNOWN_FILE
2841
2842 def _GetTargets(self):
2843 if self._BuildTargets == None:
2844 self._IntroBuildTargetList = set()
2845 self._FinalBuildTargetList = set()
2846 self._BuildTargets = {}
2847 self._FileTypes = {}
2848
2849 #TRICK: call _GetSourceFileList to apply build rule for source files
2850 if self.SourceFileList:
2851 pass
2852
2853 #TRICK: call _GetBinaryFileList to apply build rule for binary files
2854 if self.BinaryFileList:
2855 pass
2856
2857 return self._BuildTargets
2858
2859 def _GetIntroTargetList(self):
2860 self._GetTargets()
2861 return self._IntroBuildTargetList
2862
2863 def _GetFinalTargetList(self):
2864 self._GetTargets()
2865 return self._FinalBuildTargetList
2866
2867 def _GetFileTypes(self):
2868 self._GetTargets()
2869 return self._FileTypes
2870
2871 ## Get the list of package object the module depends on
2872 #
2873 # @retval list The package object list
2874 #
2875 def _GetDependentPackageList(self):
2876 return self.Module.Packages
2877
2878 ## Return the list of auto-generated code file
2879 #
2880 # @retval list The list of auto-generated file
2881 #
2882 def _GetAutoGenFileList(self):
2883 UniStringAutoGenC = True
2884 UniStringBinBuffer = StringIO()
2885 if self.BuildType == 'UEFI_HII':
2886 UniStringAutoGenC = False
2887 if self._AutoGenFileList == None:
2888 self._AutoGenFileList = {}
2889 AutoGenC = TemplateString()
2890 AutoGenH = TemplateString()
2891 StringH = TemplateString()
2892 GenC.CreateCode(self, AutoGenC, AutoGenH, StringH, UniStringAutoGenC, UniStringBinBuffer)
2893 #
2894 # AutoGen.c is generated if there are library classes in inf, or there are object files
2895 #
2896 if str(AutoGenC) != "" and (len(self.Module.LibraryClasses) > 0
2897 or TAB_OBJECT_FILE in self.FileTypes):
2898 AutoFile = PathClass(gAutoGenCodeFileName, self.DebugDir)
2899 self._AutoGenFileList[AutoFile] = str(AutoGenC)
2900 self._ApplyBuildRule(AutoFile, TAB_UNKNOWN_FILE)
2901 if str(AutoGenH) != "":
2902 AutoFile = PathClass(gAutoGenHeaderFileName, self.DebugDir)
2903 self._AutoGenFileList[AutoFile] = str(AutoGenH)
2904 self._ApplyBuildRule(AutoFile, TAB_UNKNOWN_FILE)
2905 if str(StringH) != "":
2906 AutoFile = PathClass(gAutoGenStringFileName % {"module_name":self.Name}, self.DebugDir)
2907 self._AutoGenFileList[AutoFile] = str(StringH)
2908 self._ApplyBuildRule(AutoFile, TAB_UNKNOWN_FILE)
2909 if UniStringBinBuffer != None and UniStringBinBuffer.getvalue() != "":
2910 AutoFile = PathClass(gAutoGenStringFormFileName % {"module_name":self.Name}, self.OutputDir)
2911 self._AutoGenFileList[AutoFile] = UniStringBinBuffer.getvalue()
2912 AutoFile.IsBinary = True
2913 self._ApplyBuildRule(AutoFile, TAB_UNKNOWN_FILE)
2914 if UniStringBinBuffer != None:
2915 UniStringBinBuffer.close()
2916 return self._AutoGenFileList
2917
2918 ## Return the list of library modules explicitly or implicityly used by this module
2919 def _GetLibraryList(self):
2920 if self._DependentLibraryList == None:
2921 # only merge library classes and PCD for non-library module
2922 if self.IsLibrary:
2923 self._DependentLibraryList = []
2924 else:
2925 if self.AutoGenVersion < 0x00010005:
2926 self._DependentLibraryList = self.PlatformInfo.ResolveLibraryReference(self.Module)
2927 else:
2928 self._DependentLibraryList = self.PlatformInfo.ApplyLibraryInstance(self.Module)
2929 return self._DependentLibraryList
2930
2931 @staticmethod
2932 def UpdateComments(Recver, Src):
2933 for Key in Src:
2934 if Key not in Recver:
2935 Recver[Key] = []
2936 Recver[Key].extend(Src[Key])
2937 ## Get the list of PCDs from current module
2938 #
2939 # @retval list The list of PCD
2940 #
2941 def _GetModulePcdList(self):
2942 if self._ModulePcdList == None:
2943 # apply PCD settings from platform
2944 self._ModulePcdList = self.PlatformInfo.ApplyPcdSetting(self.Module, self.Module.Pcds)
2945 self.UpdateComments(self._PcdComments, self.Module.PcdComments)
2946 return self._ModulePcdList
2947
2948 ## Get the list of PCDs from dependent libraries
2949 #
2950 # @retval list The list of PCD
2951 #
2952 def _GetLibraryPcdList(self):
2953 if self._LibraryPcdList == None:
2954 Pcds = sdict()
2955 if not self.IsLibrary:
2956 # get PCDs from dependent libraries
2957 for Library in self.DependentLibraryList:
2958 self.UpdateComments(self._PcdComments, Library.PcdComments)
2959 for Key in Library.Pcds:
2960 # skip duplicated PCDs
2961 if Key in self.Module.Pcds or Key in Pcds:
2962 continue
2963 Pcds[Key] = copy.copy(Library.Pcds[Key])
2964 # apply PCD settings from platform
2965 self._LibraryPcdList = self.PlatformInfo.ApplyPcdSetting(self.Module, Pcds)
2966 else:
2967 self._LibraryPcdList = []
2968 return self._LibraryPcdList
2969
2970 ## Get the GUID value mapping
2971 #
2972 # @retval dict The mapping between GUID cname and its value
2973 #
2974 def _GetGuidList(self):
2975 if self._GuidList == None:
2976 self._GuidList = sdict()
2977 self._GuidList.update(self.Module.Guids)
2978 for Library in self.DependentLibraryList:
2979 self._GuidList.update(Library.Guids)
2980 self.UpdateComments(self._GuidComments, Library.GuidComments)
2981 self.UpdateComments(self._GuidComments, self.Module.GuidComments)
2982 return self._GuidList
2983
2984 def GetGuidsUsedByPcd(self):
2985 if self._GuidsUsedByPcd == None:
2986 self._GuidsUsedByPcd = sdict()
2987 self._GuidsUsedByPcd.update(self.Module.GetGuidsUsedByPcd())
2988 for Library in self.DependentLibraryList:
2989 self._GuidsUsedByPcd.update(Library.GetGuidsUsedByPcd())
2990 return self._GuidsUsedByPcd
2991 ## Get the protocol value mapping
2992 #
2993 # @retval dict The mapping between protocol cname and its value
2994 #
2995 def _GetProtocolList(self):
2996 if self._ProtocolList == None:
2997 self._ProtocolList = sdict()
2998 self._ProtocolList.update(self.Module.Protocols)
2999 for Library in self.DependentLibraryList:
3000 self._ProtocolList.update(Library.Protocols)
3001 self.UpdateComments(self._ProtocolComments, Library.ProtocolComments)
3002 self.UpdateComments(self._ProtocolComments, self.Module.ProtocolComments)
3003 return self._ProtocolList
3004
3005 ## Get the PPI value mapping
3006 #
3007 # @retval dict The mapping between PPI cname and its value
3008 #
3009 def _GetPpiList(self):
3010 if self._PpiList == None:
3011 self._PpiList = sdict()
3012 self._PpiList.update(self.Module.Ppis)
3013 for Library in self.DependentLibraryList:
3014 self._PpiList.update(Library.Ppis)
3015 self.UpdateComments(self._PpiComments, Library.PpiComments)
3016 self.UpdateComments(self._PpiComments, self.Module.PpiComments)
3017 return self._PpiList
3018
3019 ## Get the list of include search path
3020 #
3021 # @retval list The list path
3022 #
3023 def _GetIncludePathList(self):
3024 if self._IncludePathList == None:
3025 self._IncludePathList = []
3026 if self.AutoGenVersion < 0x00010005:
3027 for Inc in self.Module.Includes:
3028 if Inc not in self._IncludePathList:
3029 self._IncludePathList.append(Inc)
3030 # for Edk modules
3031 Inc = path.join(Inc, self.Arch.capitalize())
3032 if os.path.exists(Inc) and Inc not in self._IncludePathList:
3033 self._IncludePathList.append(Inc)
3034 # Edk module needs to put DEBUG_DIR at the end of search path and not to use SOURCE_DIR all the time
3035 self._IncludePathList.append(self.DebugDir)
3036 else:
3037 self._IncludePathList.append(self.MetaFile.Dir)
3038 self._IncludePathList.append(self.DebugDir)
3039
3040 for Package in self.Module.Packages:
3041 PackageDir = path.join(self.WorkspaceDir, Package.MetaFile.Dir)
3042 if PackageDir not in self._IncludePathList:
3043 self._IncludePathList.append(PackageDir)
3044 for Inc in Package.Includes:
3045 if Inc not in self._IncludePathList:
3046 self._IncludePathList.append(str(Inc))
3047 return self._IncludePathList
3048
3049 ## Get HII EX PCDs which maybe used by VFR
3050 #
3051 # efivarstore used by VFR may relate with HII EX PCDs
3052 # Get the variable name and GUID from efivarstore and HII EX PCD
3053 # List the HII EX PCDs in As Built INF if both name and GUID match.
3054 #
3055 # @retval list HII EX PCDs
3056 #
3057 def _GetPcdsMaybeUsedByVfr(self):
3058 if not self.SourceFileList:
3059 return []
3060
3061 NameGuids = []
3062 for SrcFile in self.SourceFileList:
3063 if SrcFile.Ext.lower() != '.vfr':
3064 continue
3065 Vfri = os.path.join(self.OutputDir, SrcFile.BaseName + '.i')
3066 if not os.path.exists(Vfri):
3067 continue
3068 VfriFile = open(Vfri, 'r')
3069 Content = VfriFile.read()
3070 VfriFile.close()
3071 Pos = Content.find('efivarstore')
3072 while Pos != -1:
3073 #
3074 # Make sure 'efivarstore' is the start of efivarstore statement
3075 # In case of the value of 'name' (name = efivarstore) is equal to 'efivarstore'
3076 #
3077 Index = Pos - 1
3078 while Index >= 0 and Content[Index] in ' \t\r\n':
3079 Index -= 1
3080 if Index >= 0 and Content[Index] != ';':
3081 Pos = Content.find('efivarstore', Pos + len('efivarstore'))
3082 continue
3083 #
3084 # 'efivarstore' must be followed by name and guid
3085 #
3086 Name = gEfiVarStoreNamePattern.search(Content, Pos)
3087 if not Name:
3088 break
3089 Guid = gEfiVarStoreGuidPattern.search(Content, Pos)
3090 if not Guid:
3091 break
3092 NameArray = ConvertStringToByteArray('L"' + Name.group(1) + '"')
3093 NameGuids.append((NameArray, GuidStructureStringToGuidString(Guid.group(1))))
3094 Pos = Content.find('efivarstore', Name.end())
3095 if not NameGuids:
3096 return []
3097 HiiExPcds = []
3098 for Pcd in self.PlatformInfo.Platform.Pcds.values():
3099 if Pcd.Type != TAB_PCDS_DYNAMIC_EX_HII:
3100 continue
3101 for SkuName in Pcd.SkuInfoList:
3102 SkuInfo = Pcd.SkuInfoList[SkuName]
3103 Name = ConvertStringToByteArray(SkuInfo.VariableName)
3104 Value = GuidValue(SkuInfo.VariableGuid, self.PlatformInfo.PackageList)
3105 if not Value:
3106 continue
3107 Guid = GuidStructureStringToGuidString(Value)
3108 if (Name, Guid) in NameGuids and Pcd not in HiiExPcds:
3109 HiiExPcds.append(Pcd)
3110 break
3111
3112 return HiiExPcds
3113
3114 ## Create AsBuilt INF file the module
3115 #
3116 def CreateAsBuiltInf(self):
3117 if self.IsAsBuiltInfCreated:
3118 return
3119
3120 # Skip the following code for EDK I inf
3121 if self.AutoGenVersion < 0x00010005:
3122 return
3123
3124 # Skip the following code for libraries
3125 if self.IsLibrary:
3126 return
3127
3128 # Skip the following code for modules with no source files
3129 if self.SourceFileList == None or self.SourceFileList == []:
3130 return
3131
3132 # Skip the following code for modules without any binary files
3133 if self.BinaryFileList <> None and self.BinaryFileList <> []:
3134 return
3135
3136 ### TODO: How to handles mixed source and binary modules
3137
3138 # Find all DynamicEx and PatchableInModule PCDs used by this module and dependent libraries
3139 # Also find all packages that the DynamicEx PCDs depend on
3140 Pcds = []
3141 PatchablePcds = {}
3142 Packages = []
3143 PcdCheckList = []
3144 PcdTokenSpaceList = []
3145 for Pcd in self.ModulePcdList + self.LibraryPcdList:
3146 if Pcd.Type == TAB_PCDS_PATCHABLE_IN_MODULE:
3147 PatchablePcds[Pcd.TokenCName] = Pcd
3148 PcdCheckList.append((Pcd.TokenCName, Pcd.TokenSpaceGuidCName, 'PatchableInModule'))
3149 elif Pcd.Type in GenC.gDynamicExPcd:
3150 if Pcd not in Pcds:
3151 Pcds += [Pcd]
3152 PcdCheckList.append((Pcd.TokenCName, Pcd.TokenSpaceGuidCName, 'DynamicEx'))
3153 PcdCheckList.append((Pcd.TokenCName, Pcd.TokenSpaceGuidCName, 'Dynamic'))
3154 PcdTokenSpaceList.append(Pcd.TokenSpaceGuidCName)
3155 GuidList = sdict()
3156 GuidList.update(self.GuidList)
3157 for TokenSpace in self.GetGuidsUsedByPcd():
3158 # If token space is not referred by patch PCD or Ex PCD, remove the GUID from GUID list
3159 # The GUIDs in GUIDs section should really be the GUIDs in source INF or referred by Ex an patch PCDs
3160 if TokenSpace not in PcdTokenSpaceList and TokenSpace in GuidList:
3161 GuidList.pop(TokenSpace)
3162 CheckList = (GuidList, self.PpiList, self.ProtocolList, PcdCheckList)
3163 for Package in self.DerivedPackageList:
3164 if Package in Packages:
3165 continue
3166 BeChecked = (Package.Guids, Package.Ppis, Package.Protocols, Package.Pcds)
3167 Found = False
3168 for Index in range(len(BeChecked)):
3169 for Item in CheckList[Index]:
3170 if Item in BeChecked[Index]:
3171 Packages += [Package]
3172 Found = True
3173 break
3174 if Found: break
3175
3176 VfrPcds = self._GetPcdsMaybeUsedByVfr()
3177 for Pkg in self.PlatformInfo.PackageList:
3178 if Pkg in Packages:
3179 continue
3180 for VfrPcd in VfrPcds:
3181 if ((VfrPcd.TokenCName, VfrPcd.TokenSpaceGuidCName, 'DynamicEx') in Pkg.Pcds or
3182 (VfrPcd.TokenCName, VfrPcd.TokenSpaceGuidCName, 'Dynamic') in Pkg.Pcds):
3183 Packages += [Pkg]
3184 break
3185
3186 ModuleType = self.ModuleType
3187 if ModuleType == 'UEFI_DRIVER' and self.DepexGenerated:
3188 ModuleType = 'DXE_DRIVER'
3189
3190 DriverType = ''
3191 if self.PcdIsDriver != '':
3192 DriverType = self.PcdIsDriver
3193
3194 Guid = self.Guid
3195 MDefs = self.Module.Defines
3196
3197 AsBuiltInfDict = {
3198 'module_name' : self.Name,
3199 'module_guid' : Guid,
3200 'module_module_type' : ModuleType,
3201 'module_version_string' : [MDefs['VERSION_STRING']] if 'VERSION_STRING' in MDefs else [],
3202 'pcd_is_driver_string' : [],
3203 'module_uefi_specification_version' : [],
3204 'module_pi_specification_version' : [],
3205 'module_entry_point' : self.Module.ModuleEntryPointList,
3206 'module_unload_image' : self.Module.ModuleUnloadImageList,
3207 'module_constructor' : self.Module.ConstructorList,
3208 'module_destructor' : self.Module.DestructorList,
3209 'module_shadow' : [MDefs['SHADOW']] if 'SHADOW' in MDefs else [],
3210 'module_pci_vendor_id' : [MDefs['PCI_VENDOR_ID']] if 'PCI_VENDOR_ID' in MDefs else [],
3211 'module_pci_device_id' : [MDefs['PCI_DEVICE_ID']] if 'PCI_DEVICE_ID' in MDefs else [],
3212 'module_pci_class_code' : [MDefs['PCI_CLASS_CODE']] if 'PCI_CLASS_CODE' in MDefs else [],
3213 'module_pci_revision' : [MDefs['PCI_REVISION']] if 'PCI_REVISION' in MDefs else [],
3214 'module_build_number' : [MDefs['BUILD_NUMBER']] if 'BUILD_NUMBER' in MDefs else [],
3215 'module_spec' : [MDefs['SPEC']] if 'SPEC' in MDefs else [],
3216 'module_uefi_hii_resource_section' : [MDefs['UEFI_HII_RESOURCE_SECTION']] if 'UEFI_HII_RESOURCE_SECTION' in MDefs else [],
3217 'module_uni_file' : [MDefs['MODULE_UNI_FILE']] if 'MODULE_UNI_FILE' in MDefs else [],
3218 'module_arch' : self.Arch,
3219 'package_item' : ['%s' % (Package.MetaFile.File.replace('\\','/')) for Package in Packages],
3220 'binary_item' : [],
3221 'patchablepcd_item' : [],
3222 'pcd_item' : [],
3223 'protocol_item' : [],
3224 'ppi_item' : [],
3225 'guid_item' : [],
3226 'flags_item' : [],
3227 'libraryclasses_item' : []
3228 }
3229
3230 if self.AutoGenVersion > int(gInfSpecVersion, 0):
3231 AsBuiltInfDict['module_inf_version'] = '0x%08x' % self.AutoGenVersion
3232 else:
3233 AsBuiltInfDict['module_inf_version'] = gInfSpecVersion
3234
3235 if DriverType:
3236 AsBuiltInfDict['pcd_is_driver_string'] += [DriverType]
3237
3238 if 'UEFI_SPECIFICATION_VERSION' in self.Specification:
3239 AsBuiltInfDict['module_uefi_specification_version'] += [self.Specification['UEFI_SPECIFICATION_VERSION']]
3240 if 'PI_SPECIFICATION_VERSION' in self.Specification:
3241 AsBuiltInfDict['module_pi_specification_version'] += [self.Specification['PI_SPECIFICATION_VERSION']]
3242
3243 OutputDir = self.OutputDir.replace('\\','/').strip('/')
3244 if self.ModuleType in ['BASE', 'USER_DEFINED']:
3245 for Item in self.CodaTargetList:
3246 File = Item.Target.Path.replace('\\','/').strip('/').replace(OutputDir,'').strip('/')
3247 if Item.Target.Ext.lower() == '.aml':
3248 AsBuiltInfDict['binary_item'] += ['ASL|' + File]
3249 elif Item.Target.Ext.lower() == '.acpi':
3250 AsBuiltInfDict['binary_item'] += ['ACPI|' + File]
3251 else:
3252 AsBuiltInfDict['binary_item'] += ['BIN|' + File]
3253 else:
3254 for Item in self.CodaTargetList:
3255 File = Item.Target.Path.replace('\\','/').strip('/').replace(OutputDir,'').strip('/')
3256 if Item.Target.Ext.lower() == '.efi':
3257 AsBuiltInfDict['binary_item'] += ['PE32|' + self.Name + '.efi']
3258 else:
3259 AsBuiltInfDict['binary_item'] += ['BIN|' + File]
3260 if self.DepexGenerated:
3261 if self.ModuleType in ['PEIM']:
3262 AsBuiltInfDict['binary_item'] += ['PEI_DEPEX|' + self.Name + '.depex']
3263 if self.ModuleType in ['DXE_DRIVER','DXE_RUNTIME_DRIVER','DXE_SAL_DRIVER','UEFI_DRIVER']:
3264 AsBuiltInfDict['binary_item'] += ['DXE_DEPEX|' + self.Name + '.depex']
3265 if self.ModuleType in ['DXE_SMM_DRIVER']:
3266 AsBuiltInfDict['binary_item'] += ['SMM_DEPEX|' + self.Name + '.depex']
3267
3268 for Root, Dirs, Files in os.walk(OutputDir):
3269 for File in Files:
3270 if File.lower().endswith('.pdb'):
3271 AsBuiltInfDict['binary_item'] += ['DISPOSABLE|' + File]
3272 HeaderComments = self.Module.HeaderComments
3273 StartPos = 0
3274 for Index in range(len(HeaderComments)):
3275 if HeaderComments[Index].find('@BinaryHeader') != -1:
3276 HeaderComments[Index] = HeaderComments[Index].replace('@BinaryHeader', '@file')
3277 StartPos = Index
3278 break
3279 AsBuiltInfDict['header_comments'] = '\n'.join(HeaderComments[StartPos:]).replace(':#', '://')
3280 AsBuiltInfDict['tail_comments'] = '\n'.join(self.Module.TailComments)
3281
3282 GenList = [
3283 (self.ProtocolList, self._ProtocolComments, 'protocol_item'),
3284 (self.PpiList, self._PpiComments, 'ppi_item'),
3285 (GuidList, self._GuidComments, 'guid_item')
3286 ]
3287 for Item in GenList:
3288 for CName in Item[0]:
3289 Comments = ''
3290 if CName in Item[1]:
3291 Comments = '\n '.join(Item[1][CName])
3292 Entry = CName
3293 if Comments:
3294 Entry = Comments + '\n ' + CName
3295 AsBuiltInfDict[Item[2]].append(Entry)
3296 PatchList = parsePcdInfoFromMapFile(
3297 os.path.join(self.OutputDir, self.Name + '.map'),
3298 os.path.join(self.OutputDir, self.Name + '.efi')
3299 )
3300 if PatchList:
3301 for PatchPcd in PatchList:
3302 if PatchPcd[0] not in PatchablePcds:
3303 continue
3304 Pcd = PatchablePcds[PatchPcd[0]]
3305 PcdValue = ''
3306 if Pcd.DatumType != 'VOID*':
3307 HexFormat = '0x%02x'
3308 if Pcd.DatumType == 'UINT16':
3309 HexFormat = '0x%04x'
3310 elif Pcd.DatumType == 'UINT32':
3311 HexFormat = '0x%08x'
3312 elif Pcd.DatumType == 'UINT64':
3313 HexFormat = '0x%016x'
3314 PcdValue = HexFormat % int(Pcd.DefaultValue, 0)
3315 else:
3316 if Pcd.MaxDatumSize == None or Pcd.MaxDatumSize == '':
3317 EdkLogger.error("build", AUTOGEN_ERROR,
3318 "Unknown [MaxDatumSize] of PCD [%s.%s]" % (Pcd.TokenSpaceGuidCName, Pcd.TokenCName)
3319 )
3320 ArraySize = int(Pcd.MaxDatumSize, 0)
3321 PcdValue = Pcd.DefaultValue
3322 if PcdValue[0] != '{':
3323 Unicode = False
3324 if PcdValue[0] == 'L':
3325 Unicode = True
3326 PcdValue = PcdValue.lstrip('L')
3327 PcdValue = eval(PcdValue)
3328 NewValue = '{'
3329 for Index in range(0, len(PcdValue)):
3330 if Unicode:
3331 CharVal = ord(PcdValue[Index])
3332 NewValue = NewValue + '0x%02x' % (CharVal & 0x00FF) + ', ' \
3333 + '0x%02x' % (CharVal >> 8) + ', '
3334 else:
3335 NewValue = NewValue + '0x%02x' % (ord(PcdValue[Index]) % 0x100) + ', '
3336 Padding = '0x00, '
3337 if Unicode:
3338 Padding = Padding * 2
3339 ArraySize = ArraySize / 2
3340 if ArraySize < (len(PcdValue) + 1):
3341 EdkLogger.error("build", AUTOGEN_ERROR,
3342 "The maximum size of VOID* type PCD '%s.%s' is less than its actual size occupied." % (Pcd.TokenSpaceGuidCName, Pcd.TokenCName)
3343 )
3344 if ArraySize > len(PcdValue) + 1:
3345 NewValue = NewValue + Padding * (ArraySize - len(PcdValue) - 1)
3346 PcdValue = NewValue + Padding.strip().rstrip(',') + '}'
3347 elif len(PcdValue.split(',')) <= ArraySize:
3348 PcdValue = PcdValue.rstrip('}') + ', 0x00' * (ArraySize - len(PcdValue.split(',')))
3349 PcdValue += '}'
3350 else:
3351 EdkLogger.error("build", AUTOGEN_ERROR,
3352 "The maximum size of VOID* type PCD '%s.%s' is less than its actual size occupied." % (Pcd.TokenSpaceGuidCName, Pcd.TokenCName)
3353 )
3354 PcdItem = '%s.%s|%s|0x%X' % \
3355 (Pcd.TokenSpaceGuidCName, Pcd.TokenCName, PcdValue, PatchPcd[1])
3356 PcdComments = ''
3357 if (Pcd.TokenSpaceGuidCName, Pcd.TokenCName) in self._PcdComments:
3358 PcdComments = '\n '.join(self._PcdComments[Pcd.TokenSpaceGuidCName, Pcd.TokenCName])
3359 if PcdComments:
3360 PcdItem = PcdComments + '\n ' + PcdItem
3361 AsBuiltInfDict['patchablepcd_item'].append(PcdItem)
3362
3363 HiiPcds = []
3364 for Pcd in Pcds + VfrPcds:
3365 PcdComments = ''
3366 PcdCommentList = []
3367 HiiInfo = ''
3368 SkuId = ''
3369 if Pcd.Type == TAB_PCDS_DYNAMIC_EX_HII:
3370 for SkuName in Pcd.SkuInfoList:
3371 SkuInfo = Pcd.SkuInfoList[SkuName]
3372 SkuId = SkuInfo.SkuId
3373 HiiInfo = '## %s|%s|%s' % (SkuInfo.VariableName, SkuInfo.VariableGuid, SkuInfo.VariableOffset)
3374 break
3375 if SkuId:
3376 #
3377 # Don't generate duplicated HII PCD
3378 #
3379 if (SkuId, Pcd.TokenSpaceGuidCName, Pcd.TokenCName) in HiiPcds:
3380 continue
3381 else:
3382 HiiPcds.append((SkuId, Pcd.TokenSpaceGuidCName, Pcd.TokenCName))
3383 if (Pcd.TokenSpaceGuidCName, Pcd.TokenCName) in self._PcdComments:
3384 PcdCommentList = self._PcdComments[Pcd.TokenSpaceGuidCName, Pcd.TokenCName][:]
3385 if HiiInfo:
3386 UsageIndex = -1
3387 UsageStr = ''
3388 for Index, Comment in enumerate(PcdCommentList):
3389 for Usage in UsageList:
3390 if Comment.find(Usage) != -1:
3391 UsageStr = Usage
3392 UsageIndex = Index
3393 break
3394 if UsageIndex != -1:
3395 PcdCommentList[UsageIndex] = '## %s %s %s' % (UsageStr, HiiInfo, PcdCommentList[UsageIndex].replace(UsageStr, ''))
3396 else:
3397 PcdCommentList.append('## UNDEFINED ' + HiiInfo)
3398 PcdComments = '\n '.join(PcdCommentList)
3399 PcdEntry = Pcd.TokenSpaceGuidCName + '.' + Pcd.TokenCName
3400 if PcdComments:
3401 PcdEntry = PcdComments + '\n ' + PcdEntry
3402 AsBuiltInfDict['pcd_item'] += [PcdEntry]
3403 for Item in self.BuildOption:
3404 if 'FLAGS' in self.BuildOption[Item]:
3405 AsBuiltInfDict['flags_item'] += ['%s:%s_%s_%s_%s_FLAGS = %s' % (self.ToolChainFamily, self.BuildTarget, self.ToolChain, self.Arch, Item, self.BuildOption[Item]['FLAGS'].strip())]
3406
3407 # Generated LibraryClasses section in comments.
3408 for Library in self.LibraryAutoGenList:
3409 AsBuiltInfDict['libraryclasses_item'] += [Library.MetaFile.File.replace('\\', '/')]
3410
3411 # Generated depex expression section in comments.
3412 AsBuiltInfDict['depexsection_item'] = ''
3413 DepexExpresion = self._GetDepexExpresionString()
3414 if DepexExpresion:
3415 AsBuiltInfDict['depexsection_item'] = DepexExpresion
3416
3417 AsBuiltInf = TemplateString()
3418 AsBuiltInf.Append(gAsBuiltInfHeaderString.Replace(AsBuiltInfDict))
3419
3420 SaveFileOnChange(os.path.join(self.OutputDir, self.Name + '.inf'), str(AsBuiltInf), False)
3421
3422 self.IsAsBuiltInfCreated = True
3423
3424 ## Create makefile for the module and its dependent libraries
3425 #
3426 # @param CreateLibraryMakeFile Flag indicating if or not the makefiles of
3427 # dependent libraries will be created
3428 #
3429 def CreateMakeFile(self, CreateLibraryMakeFile=True):
3430 # Ignore generating makefile when it is a binary module
3431 if self.IsBinaryModule:
3432 return
3433
3434 if self.IsMakeFileCreated:
3435 return
3436
3437 if not self.IsLibrary and CreateLibraryMakeFile:
3438 for LibraryAutoGen in self.LibraryAutoGenList:
3439 LibraryAutoGen.CreateMakeFile()
3440
3441 if len(self.CustomMakefile) == 0:
3442 Makefile = GenMake.ModuleMakefile(self)
3443 else:
3444 Makefile = GenMake.CustomMakefile(self)
3445 if Makefile.Generate():
3446 EdkLogger.debug(EdkLogger.DEBUG_9, "Generated makefile for module %s [%s]" %
3447 (self.Name, self.Arch))
3448 else:
3449 EdkLogger.debug(EdkLogger.DEBUG_9, "Skipped the generation of makefile for module %s [%s]" %
3450 (self.Name, self.Arch))
3451
3452 self.IsMakeFileCreated = True
3453
3454 def CopyBinaryFiles(self):
3455 for File in self.Module.Binaries:
3456 SrcPath = File.Path
3457 DstPath = os.path.join(self.OutputDir , os.path.basename(SrcPath))
3458 CopyLongFilePath(SrcPath, DstPath)
3459 ## Create autogen code for the module and its dependent libraries
3460 #
3461 # @param CreateLibraryCodeFile Flag indicating if or not the code of
3462 # dependent libraries will be created
3463 #
3464 def CreateCodeFile(self, CreateLibraryCodeFile=True):
3465 if self.IsCodeFileCreated:
3466 return
3467
3468 # Need to generate PcdDatabase even PcdDriver is binarymodule
3469 if self.IsBinaryModule and self.PcdIsDriver != '':
3470 CreatePcdDatabaseCode(self, TemplateString(), TemplateString())
3471 return
3472 if self.IsBinaryModule:
3473 if self.IsLibrary:
3474 self.CopyBinaryFiles()
3475 return
3476
3477 if not self.IsLibrary and CreateLibraryCodeFile:
3478 for LibraryAutoGen in self.LibraryAutoGenList:
3479 LibraryAutoGen.CreateCodeFile()
3480
3481 AutoGenList = []
3482 IgoredAutoGenList = []
3483
3484 for File in self.AutoGenFileList:
3485 if GenC.Generate(File.Path, self.AutoGenFileList[File], File.IsBinary):
3486 #Ignore Edk AutoGen.c
3487 if self.AutoGenVersion < 0x00010005 and File.Name == 'AutoGen.c':
3488 continue
3489
3490 AutoGenList.append(str(File))
3491 else:
3492 IgoredAutoGenList.append(str(File))
3493
3494 # Skip the following code for EDK I inf
3495 if self.AutoGenVersion < 0x00010005:
3496 return
3497
3498 for ModuleType in self.DepexList:
3499 # Ignore empty [depex] section or [depex] section for "USER_DEFINED" module
3500 if len(self.DepexList[ModuleType]) == 0 or ModuleType == "USER_DEFINED":
3501 continue
3502
3503 Dpx = GenDepex.DependencyExpression(self.DepexList[ModuleType], ModuleType, True)
3504 DpxFile = gAutoGenDepexFileName % {"module_name" : self.Name}
3505
3506 if len(Dpx.PostfixNotation) <> 0:
3507 self.DepexGenerated = True
3508
3509 if Dpx.Generate(path.join(self.OutputDir, DpxFile)):
3510 AutoGenList.append(str(DpxFile))
3511 else:
3512 IgoredAutoGenList.append(str(DpxFile))
3513
3514 if IgoredAutoGenList == []:
3515 EdkLogger.debug(EdkLogger.DEBUG_9, "Generated [%s] files for module %s [%s]" %
3516 (" ".join(AutoGenList), self.Name, self.Arch))
3517 elif AutoGenList == []:
3518 EdkLogger.debug(EdkLogger.DEBUG_9, "Skipped the generation of [%s] files for module %s [%s]" %
3519 (" ".join(IgoredAutoGenList), self.Name, self.Arch))
3520 else:
3521 EdkLogger.debug(EdkLogger.DEBUG_9, "Generated [%s] (skipped %s) files for module %s [%s]" %
3522 (" ".join(AutoGenList), " ".join(IgoredAutoGenList), self.Name, self.Arch))
3523
3524 self.IsCodeFileCreated = True
3525 return AutoGenList
3526
3527 ## Summarize the ModuleAutoGen objects of all libraries used by this module
3528 def _GetLibraryAutoGenList(self):
3529 if self._LibraryAutoGenList == None:
3530 self._LibraryAutoGenList = []
3531 for Library in self.DependentLibraryList:
3532 La = ModuleAutoGen(
3533 self.Workspace,
3534 Library.MetaFile,
3535 self.BuildTarget,
3536 self.ToolChain,
3537 self.Arch,
3538 self.PlatformInfo.MetaFile
3539 )
3540 if La not in self._LibraryAutoGenList:
3541 self._LibraryAutoGenList.append(La)
3542 for Lib in La.CodaTargetList:
3543 self._ApplyBuildRule(Lib.Target, TAB_UNKNOWN_FILE)
3544 return self._LibraryAutoGenList
3545
3546 Module = property(_GetModule)
3547 Name = property(_GetBaseName)
3548 Guid = property(_GetGuid)
3549 Version = property(_GetVersion)
3550 ModuleType = property(_GetModuleType)
3551 ComponentType = property(_GetComponentType)
3552 BuildType = property(_GetBuildType)
3553 PcdIsDriver = property(_GetPcdIsDriver)
3554 AutoGenVersion = property(_GetAutoGenVersion)
3555 Macros = property(_GetMacros)
3556 Specification = property(_GetSpecification)
3557
3558 IsLibrary = property(_IsLibrary)
3559 IsBinaryModule = property(_IsBinaryModule)
3560 BuildDir = property(_GetBuildDir)
3561 OutputDir = property(_GetOutputDir)
3562 DebugDir = property(_GetDebugDir)
3563 MakeFileDir = property(_GetMakeFileDir)
3564 CustomMakefile = property(_GetCustomMakefile)
3565
3566 IncludePathList = property(_GetIncludePathList)
3567 AutoGenFileList = property(_GetAutoGenFileList)
3568 UnicodeFileList = property(_GetUnicodeFileList)
3569 SourceFileList = property(_GetSourceFileList)
3570 BinaryFileList = property(_GetBinaryFiles) # FileType : [File List]
3571 Targets = property(_GetTargets)
3572 IntroTargetList = property(_GetIntroTargetList)
3573 CodaTargetList = property(_GetFinalTargetList)
3574 FileTypes = property(_GetFileTypes)
3575 BuildRules = property(_GetBuildRules)
3576
3577 DependentPackageList = property(_GetDependentPackageList)
3578 DependentLibraryList = property(_GetLibraryList)
3579 LibraryAutoGenList = property(_GetLibraryAutoGenList)
3580 DerivedPackageList = property(_GetDerivedPackageList)
3581
3582 ModulePcdList = property(_GetModulePcdList)
3583 LibraryPcdList = property(_GetLibraryPcdList)
3584 GuidList = property(_GetGuidList)
3585 ProtocolList = property(_GetProtocolList)
3586 PpiList = property(_GetPpiList)
3587 DepexList = property(_GetDepexTokenList)
3588 DxsFile = property(_GetDxsFile)
3589 DepexExpressionList = property(_GetDepexExpressionTokenList)
3590 BuildOption = property(_GetModuleBuildOption)
3591 BuildOptionIncPathList = property(_GetBuildOptionIncPathList)
3592 BuildCommand = property(_GetBuildCommand)
3593
3594 FixedAtBuildPcds = property(_GetFixedAtBuildPcds)
3595
3596 # This acts like the main() function for the script, unless it is 'import'ed into another script.
3597 if __name__ == '__main__':
3598 pass
3599