]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/build/BuildReport.py
50db50378067e597e2f3e79299e6c56ed6266f5f
[mirror_edk2.git] / BaseTools / Source / Python / build / BuildReport.py
1 ## @file
2 # Routines for generating build report.
3 #
4 # This module contains the functionality to generate build report after
5 # build all target completes successfully.
6 #
7 # Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
8 # This program and the accompanying materials
9 # are licensed and made available under the terms and conditions of the BSD License
10 # which accompanies this distribution. The full text of the license may be found at
11 # http://opensource.org/licenses/bsd-license.php
12 #
13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #
16
17 ## Import Modules
18 #
19 import Common.LongFilePathOs as os
20 import re
21 import platform
22 import textwrap
23 import traceback
24 import sys
25 import time
26 import struct
27 import hashlib
28 import subprocess
29 import threading
30 from datetime import datetime
31 from io import BytesIO
32 from Common import EdkLogger
33 from Common.Misc import SaveFileOnChange
34 from Common.Misc import GuidStructureByteArrayToGuidString
35 from Common.Misc import GuidStructureStringToGuidString
36 from Common.BuildToolError import FILE_WRITE_FAILURE
37 from Common.BuildToolError import CODE_ERROR
38 from Common.BuildToolError import COMMAND_FAILURE
39 from Common.BuildToolError import FORMAT_INVALID
40 from Common.LongFilePathSupport import OpenLongFilePath as open
41 from Common.MultipleWorkspace import MultipleWorkspace as mws
42 import Common.GlobalData as GlobalData
43 from AutoGen.AutoGen import ModuleAutoGen
44 from Common.Misc import PathClass
45 from Common.StringUtils import NormPath
46 from Common.DataType import *
47 import collections
48 from Common.Expression import *
49
50 ## Pattern to extract contents in EDK DXS files
51 gDxsDependencyPattern = re.compile(r"DEPENDENCY_START(.+)DEPENDENCY_END", re.DOTALL)
52
53 ## Pattern to find total FV total size, occupied size in flash report intermediate file
54 gFvTotalSizePattern = re.compile(r"EFI_FV_TOTAL_SIZE = (0x[0-9a-fA-F]+)")
55 gFvTakenSizePattern = re.compile(r"EFI_FV_TAKEN_SIZE = (0x[0-9a-fA-F]+)")
56
57 ## Pattern to find module size and time stamp in module summary report intermediate file
58 gModuleSizePattern = re.compile(r"MODULE_SIZE = (\d+)")
59 gTimeStampPattern = re.compile(r"TIME_STAMP = (\d+)")
60
61 ## Pattern to find GUID value in flash description files
62 gPcdGuidPattern = re.compile(r"PCD\((\w+)[.](\w+)\)")
63
64 ## Pattern to collect offset, GUID value pair in the flash report intermediate file
65 gOffsetGuidPattern = re.compile(r"(0x[0-9A-Fa-f]+) ([-A-Fa-f0-9]+)")
66
67 ## Pattern to find module base address and entry point in fixed flash map file
68 gModulePattern = r"\n[-\w]+\s*\(([^,]+),\s*BaseAddress=%(Address)s,\s*EntryPoint=%(Address)s\)\s*\(GUID=([-0-9A-Fa-f]+)[^)]*\)"
69 gMapFileItemPattern = re.compile(gModulePattern % {"Address" : "(-?0[xX][0-9A-Fa-f]+)"})
70
71 ## Pattern to find all module referenced header files in source files
72 gIncludePattern = re.compile(r'#include\s*["<]([^">]+)[">]')
73 gIncludePattern2 = re.compile(r"#include\s+EFI_([A-Z_]+)\s*[(]\s*(\w+)\s*[)]")
74
75 ## Pattern to find the entry point for EDK module using EDKII Glue library
76 gGlueLibEntryPoint = re.compile(r"__EDKII_GLUE_MODULE_ENTRY_POINT__\s*=\s*(\w+)")
77
78 ## Tags for MaxLength of line in report
79 gLineMaxLength = 120
80
81 ## Tags for end of line in report
82 gEndOfLine = "\r\n"
83
84 ## Tags for section start, end and separator
85 gSectionStart = ">" + "=" * (gLineMaxLength - 2) + "<"
86 gSectionEnd = "<" + "=" * (gLineMaxLength - 2) + ">" + "\n"
87 gSectionSep = "=" * gLineMaxLength
88
89 ## Tags for subsection start, end and separator
90 gSubSectionStart = ">" + "-" * (gLineMaxLength - 2) + "<"
91 gSubSectionEnd = "<" + "-" * (gLineMaxLength - 2) + ">"
92 gSubSectionSep = "-" * gLineMaxLength
93
94
95 ## The look up table to map PCD type to pair of report display type and DEC type
96 gPcdTypeMap = {
97 TAB_PCDS_FIXED_AT_BUILD : ('FIXED', TAB_PCDS_FIXED_AT_BUILD),
98 TAB_PCDS_PATCHABLE_IN_MODULE: ('PATCH', TAB_PCDS_PATCHABLE_IN_MODULE),
99 TAB_PCDS_FEATURE_FLAG : ('FLAG', TAB_PCDS_FEATURE_FLAG),
100 TAB_PCDS_DYNAMIC : ('DYN', TAB_PCDS_DYNAMIC),
101 TAB_PCDS_DYNAMIC_HII : ('DYNHII', TAB_PCDS_DYNAMIC),
102 TAB_PCDS_DYNAMIC_VPD : ('DYNVPD', TAB_PCDS_DYNAMIC),
103 TAB_PCDS_DYNAMIC_EX : ('DEX', TAB_PCDS_DYNAMIC_EX),
104 TAB_PCDS_DYNAMIC_EX_HII : ('DEXHII', TAB_PCDS_DYNAMIC_EX),
105 TAB_PCDS_DYNAMIC_EX_VPD : ('DEXVPD', TAB_PCDS_DYNAMIC_EX),
106 }
107
108 ## The look up table to map module type to driver type
109 gDriverTypeMap = {
110 SUP_MODULE_SEC : '0x3 (SECURITY_CORE)',
111 SUP_MODULE_PEI_CORE : '0x4 (PEI_CORE)',
112 SUP_MODULE_PEIM : '0x6 (PEIM)',
113 SUP_MODULE_DXE_CORE : '0x5 (DXE_CORE)',
114 SUP_MODULE_DXE_DRIVER : '0x7 (DRIVER)',
115 SUP_MODULE_DXE_SAL_DRIVER : '0x7 (DRIVER)',
116 SUP_MODULE_DXE_SMM_DRIVER : '0x7 (DRIVER)',
117 SUP_MODULE_DXE_RUNTIME_DRIVER: '0x7 (DRIVER)',
118 SUP_MODULE_UEFI_DRIVER : '0x7 (DRIVER)',
119 SUP_MODULE_UEFI_APPLICATION : '0x9 (APPLICATION)',
120 SUP_MODULE_SMM_CORE : '0xD (SMM_CORE)',
121 'SMM_DRIVER' : '0xA (SMM)', # Extension of module type to support PI 1.1 SMM drivers
122 SUP_MODULE_MM_STANDALONE : '0xE (MM_STANDALONE)',
123 SUP_MODULE_MM_CORE_STANDALONE : '0xF (MM_CORE_STANDALONE)'
124 }
125
126 ## The look up table of the supported opcode in the dependency expression binaries
127 gOpCodeList = ["BEFORE", "AFTER", "PUSH", "AND", "OR", "NOT", "TRUE", "FALSE", "END", "SOR"]
128
129 ##
130 # Writes a string to the file object.
131 #
132 # This function writes a string to the file object and a new line is appended
133 # afterwards. It may optionally wraps the string for better readability.
134 #
135 # @File The file object to write
136 # @String The string to be written to the file
137 # @Wrapper Indicates whether to wrap the string
138 #
139 def FileWrite(File, String, Wrapper=False):
140 if Wrapper:
141 String = textwrap.fill(String, 120)
142 File.write(String + gEndOfLine)
143
144 def ByteArrayForamt(Value):
145 IsByteArray = False
146 SplitNum = 16
147 ArrayList = []
148 if Value.startswith('{') and Value.endswith('}'):
149 Value = Value[1:-1]
150 ValueList = Value.split(',')
151 if len(ValueList) >= SplitNum:
152 IsByteArray = True
153 if IsByteArray:
154 if ValueList:
155 Len = len(ValueList)/SplitNum
156 for i, element in enumerate(ValueList):
157 ValueList[i] = '0x%02X' % int(element.strip(), 16)
158 if Len:
159 Id = 0
160 while (Id <= Len):
161 End = min(SplitNum*(Id+1), len(ValueList))
162 Str = ','.join(ValueList[SplitNum*Id : End])
163 if End == len(ValueList):
164 Str += '}'
165 ArrayList.append(Str)
166 break
167 else:
168 Str += ','
169 ArrayList.append(Str)
170 Id += 1
171 else:
172 ArrayList = [Value + '}']
173 return IsByteArray, ArrayList
174
175 ##
176 # Find all the header file that the module source directly includes.
177 #
178 # This function scans source code to find all header files the module may
179 # include. This is not accurate but very effective to find all the header
180 # file the module might include with #include statement.
181 #
182 # @Source The source file name
183 # @IncludePathList The list of include path to find the source file.
184 # @IncludeFiles The dictionary of current found include files.
185 #
186 def FindIncludeFiles(Source, IncludePathList, IncludeFiles):
187 FileContents = open(Source).read()
188 #
189 # Find header files with pattern #include "XXX.h" or #include <XXX.h>
190 #
191 for Match in gIncludePattern.finditer(FileContents):
192 FileName = Match.group(1).strip()
193 for Dir in [os.path.dirname(Source)] + IncludePathList:
194 FullFileName = os.path.normpath(os.path.join(Dir, FileName))
195 if os.path.exists(FullFileName):
196 IncludeFiles[FullFileName.lower().replace("\\", "/")] = FullFileName
197 break
198
199 #
200 # Find header files with pattern like #include EFI_PPI_CONSUMER(XXX)
201 #
202 for Match in gIncludePattern2.finditer(FileContents):
203 Key = Match.group(2)
204 Type = Match.group(1)
205 if "ARCH_PROTOCOL" in Type:
206 FileName = "ArchProtocol/%(Key)s/%(Key)s.h" % {"Key" : Key}
207 elif "PROTOCOL" in Type:
208 FileName = "Protocol/%(Key)s/%(Key)s.h" % {"Key" : Key}
209 elif "PPI" in Type:
210 FileName = "Ppi/%(Key)s/%(Key)s.h" % {"Key" : Key}
211 elif TAB_GUID in Type:
212 FileName = "Guid/%(Key)s/%(Key)s.h" % {"Key" : Key}
213 else:
214 continue
215 for Dir in IncludePathList:
216 FullFileName = os.path.normpath(os.path.join(Dir, FileName))
217 if os.path.exists(FullFileName):
218 IncludeFiles[FullFileName.lower().replace("\\", "/")] = FullFileName
219 break
220
221 ## Split each lines in file
222 #
223 # This method is used to split the lines in file to make the length of each line
224 # less than MaxLength.
225 #
226 # @param Content The content of file
227 # @param MaxLength The Max Length of the line
228 #
229 def FileLinesSplit(Content=None, MaxLength=None):
230 ContentList = Content.split(TAB_LINE_BREAK)
231 NewContent = ''
232 NewContentList = []
233 for Line in ContentList:
234 while len(Line.rstrip()) > MaxLength:
235 LineSpaceIndex = Line.rfind(TAB_SPACE_SPLIT, 0, MaxLength)
236 LineSlashIndex = Line.rfind(TAB_SLASH, 0, MaxLength)
237 LineBackSlashIndex = Line.rfind(TAB_BACK_SLASH, 0, MaxLength)
238 if max(LineSpaceIndex, LineSlashIndex, LineBackSlashIndex) > 0:
239 LineBreakIndex = max(LineSpaceIndex, LineSlashIndex, LineBackSlashIndex)
240 else:
241 LineBreakIndex = MaxLength
242 NewContentList.append(Line[:LineBreakIndex])
243 Line = Line[LineBreakIndex:]
244 if Line:
245 NewContentList.append(Line)
246 for NewLine in NewContentList:
247 NewContent += NewLine + TAB_LINE_BREAK
248
249 NewContent = NewContent.replace(TAB_LINE_BREAK, gEndOfLine).replace('\r\r\n', gEndOfLine)
250 return NewContent
251
252
253
254 ##
255 # Parse binary dependency expression section
256 #
257 # This utility class parses the dependency expression section and translate the readable
258 # GUID name and value.
259 #
260 class DepexParser(object):
261 ##
262 # Constructor function for class DepexParser
263 #
264 # This constructor function collect GUID values so that the readable
265 # GUID name can be translated.
266 #
267 # @param self The object pointer
268 # @param Wa Workspace context information
269 #
270 def __init__(self, Wa):
271 self._GuidDb = {}
272 for Pa in Wa.AutoGenObjectList:
273 for Package in Pa.PackageList:
274 for Protocol in Package.Protocols:
275 GuidValue = GuidStructureStringToGuidString(Package.Protocols[Protocol])
276 self._GuidDb[GuidValue.upper()] = Protocol
277 for Ppi in Package.Ppis:
278 GuidValue = GuidStructureStringToGuidString(Package.Ppis[Ppi])
279 self._GuidDb[GuidValue.upper()] = Ppi
280 for Guid in Package.Guids:
281 GuidValue = GuidStructureStringToGuidString(Package.Guids[Guid])
282 self._GuidDb[GuidValue.upper()] = Guid
283 for Ma in Pa.ModuleAutoGenList:
284 for Pcd in Ma.FixedVoidTypePcds:
285 PcdValue = Ma.FixedVoidTypePcds[Pcd]
286 if len(PcdValue.split(',')) == 16:
287 GuidValue = GuidStructureByteArrayToGuidString(PcdValue)
288 self._GuidDb[GuidValue.upper()] = Pcd
289 ##
290 # Parse the binary dependency expression files.
291 #
292 # This function parses the binary dependency expression file and translate it
293 # to the instruction list.
294 #
295 # @param self The object pointer
296 # @param DepexFileName The file name of binary dependency expression file.
297 #
298 def ParseDepexFile(self, DepexFileName):
299 DepexFile = open(DepexFileName, "rb")
300 DepexStatement = []
301 OpCode = DepexFile.read(1)
302 while OpCode:
303 Statement = gOpCodeList[struct.unpack("B", OpCode)[0]]
304 if Statement in ["BEFORE", "AFTER", "PUSH"]:
305 GuidValue = "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X" % \
306 struct.unpack(PACK_PATTERN_GUID, DepexFile.read(16))
307 GuidString = self._GuidDb.get(GuidValue, GuidValue)
308 Statement = "%s %s" % (Statement, GuidString)
309 DepexStatement.append(Statement)
310 OpCode = DepexFile.read(1)
311
312 return DepexStatement
313
314 ##
315 # Reports library information
316 #
317 # This class reports the module library subsection in the build report file.
318 #
319 class LibraryReport(object):
320 ##
321 # Constructor function for class LibraryReport
322 #
323 # This constructor function generates LibraryReport object for
324 # a module.
325 #
326 # @param self The object pointer
327 # @param M Module context information
328 #
329 def __init__(self, M):
330 self.LibraryList = []
331 if int(str(M.AutoGenVersion), 0) >= 0x00010005:
332 self._EdkIIModule = True
333 else:
334 self._EdkIIModule = False
335
336 for Lib in M.DependentLibraryList:
337 LibInfPath = str(Lib)
338 LibClassList = Lib.LibraryClass[0].LibraryClass
339 LibConstructorList = Lib.ConstructorList
340 LibDesstructorList = Lib.DestructorList
341 LibDepexList = Lib.DepexExpression[M.Arch, M.ModuleType]
342 for LibAutoGen in M.LibraryAutoGenList:
343 if LibInfPath == LibAutoGen.MetaFile.Path:
344 LibTime = LibAutoGen.BuildTime
345 break
346 self.LibraryList.append((LibInfPath, LibClassList, LibConstructorList, LibDesstructorList, LibDepexList, LibTime))
347
348 ##
349 # Generate report for module library information
350 #
351 # This function generates report for the module library.
352 # If the module is EDKII style one, the additional library class, library
353 # constructor/destructor and dependency expression may also be reported.
354 #
355 # @param self The object pointer
356 # @param File The file object for report
357 #
358 def GenerateReport(self, File):
359 if len(self.LibraryList) > 0:
360 FileWrite(File, gSubSectionStart)
361 FileWrite(File, TAB_BRG_LIBRARY)
362 FileWrite(File, gSubSectionSep)
363 for LibraryItem in self.LibraryList:
364 LibInfPath = LibraryItem[0]
365 FileWrite(File, LibInfPath)
366
367 #
368 # Report library class, library constructor and destructor for
369 # EDKII style module.
370 #
371 if self._EdkIIModule:
372 LibClass = LibraryItem[1]
373 EdkIILibInfo = ""
374 LibConstructor = " ".join(LibraryItem[2])
375 if LibConstructor:
376 EdkIILibInfo += " C = " + LibConstructor
377 LibDestructor = " ".join(LibraryItem[3])
378 if LibDestructor:
379 EdkIILibInfo += " D = " + LibDestructor
380 LibDepex = " ".join(LibraryItem[4])
381 if LibDepex:
382 EdkIILibInfo += " Depex = " + LibDepex
383 if LibraryItem[5]:
384 EdkIILibInfo += " Time = " + LibraryItem[5]
385 if EdkIILibInfo:
386 FileWrite(File, "{%s: %s}" % (LibClass, EdkIILibInfo))
387 else:
388 FileWrite(File, "{%s}" % LibClass)
389
390 FileWrite(File, gSubSectionEnd)
391
392 ##
393 # Reports dependency expression information
394 #
395 # This class reports the module dependency expression subsection in the build report file.
396 #
397 class DepexReport(object):
398 ##
399 # Constructor function for class DepexReport
400 #
401 # This constructor function generates DepexReport object for
402 # a module. If the module source contains the DXS file (usually EDK
403 # style module), it uses the dependency in DXS file; otherwise,
404 # it uses the dependency expression from its own INF [Depex] section
405 # and then merges with the ones from its dependent library INF.
406 #
407 # @param self The object pointer
408 # @param M Module context information
409 #
410 def __init__(self, M):
411 self.Depex = ""
412 self._DepexFileName = os.path.join(M.BuildDir, "OUTPUT", M.Module.BaseName + ".depex")
413 ModuleType = M.ModuleType
414 if not ModuleType:
415 ModuleType = COMPONENT_TO_MODULE_MAP_DICT.get(M.ComponentType, "")
416
417 if ModuleType in [SUP_MODULE_SEC, SUP_MODULE_PEI_CORE, SUP_MODULE_DXE_CORE, SUP_MODULE_SMM_CORE, SUP_MODULE_MM_CORE_STANDALONE, SUP_MODULE_UEFI_APPLICATION]:
418 return
419
420 for Source in M.SourceFileList:
421 if os.path.splitext(Source.Path)[1].lower() == ".dxs":
422 Match = gDxsDependencyPattern.search(open(Source.Path).read())
423 if Match:
424 self.Depex = Match.group(1).strip()
425 self.Source = "DXS"
426 break
427 else:
428 self.Depex = M.DepexExpressionDict.get(M.ModuleType, "")
429 self.ModuleDepex = " ".join(M.Module.DepexExpression[M.Arch, M.ModuleType])
430 if not self.ModuleDepex:
431 self.ModuleDepex = "(None)"
432
433 LibDepexList = []
434 for Lib in M.DependentLibraryList:
435 LibDepex = " ".join(Lib.DepexExpression[M.Arch, M.ModuleType]).strip()
436 if LibDepex != "":
437 LibDepexList.append("(" + LibDepex + ")")
438 self.LibraryDepex = " AND ".join(LibDepexList)
439 if not self.LibraryDepex:
440 self.LibraryDepex = "(None)"
441 self.Source = "INF"
442
443 ##
444 # Generate report for module dependency expression information
445 #
446 # This function generates report for the module dependency expression.
447 #
448 # @param self The object pointer
449 # @param File The file object for report
450 # @param GlobalDepexParser The platform global Dependency expression parser object
451 #
452 def GenerateReport(self, File, GlobalDepexParser):
453 if not self.Depex:
454 return
455 FileWrite(File, gSubSectionStart)
456 if os.path.isfile(self._DepexFileName):
457 try:
458 DepexStatements = GlobalDepexParser.ParseDepexFile(self._DepexFileName)
459 FileWrite(File, "Final Dependency Expression (DEPEX) Instructions")
460 for DepexStatement in DepexStatements:
461 FileWrite(File, " %s" % DepexStatement)
462 FileWrite(File, gSubSectionSep)
463 except:
464 EdkLogger.warn(None, "Dependency expression file is corrupted", self._DepexFileName)
465
466 FileWrite(File, "Dependency Expression (DEPEX) from %s" % self.Source)
467
468 if self.Source == "INF":
469 FileWrite(File, self.Depex, True)
470 FileWrite(File, gSubSectionSep)
471 FileWrite(File, "From Module INF: %s" % self.ModuleDepex, True)
472 FileWrite(File, "From Library INF: %s" % self.LibraryDepex, True)
473 else:
474 FileWrite(File, self.Depex)
475 FileWrite(File, gSubSectionEnd)
476
477 ##
478 # Reports dependency expression information
479 #
480 # This class reports the module build flags subsection in the build report file.
481 #
482 class BuildFlagsReport(object):
483 ##
484 # Constructor function for class BuildFlagsReport
485 #
486 # This constructor function generates BuildFlagsReport object for
487 # a module. It reports the build tool chain tag and all relevant
488 # build flags to build the module.
489 #
490 # @param self The object pointer
491 # @param M Module context information
492 #
493 def __init__(self, M):
494 BuildOptions = {}
495 #
496 # Add build flags according to source file extension so that
497 # irrelevant ones can be filtered out.
498 #
499 for Source in M.SourceFileList:
500 Ext = os.path.splitext(Source.File)[1].lower()
501 if Ext in [".c", ".cc", ".cpp"]:
502 BuildOptions["CC"] = 1
503 elif Ext in [".s", ".asm"]:
504 BuildOptions["PP"] = 1
505 BuildOptions["ASM"] = 1
506 elif Ext in [".vfr"]:
507 BuildOptions["VFRPP"] = 1
508 BuildOptions["VFR"] = 1
509 elif Ext in [".dxs"]:
510 BuildOptions["APP"] = 1
511 BuildOptions["CC"] = 1
512 elif Ext in [".asl"]:
513 BuildOptions["ASLPP"] = 1
514 BuildOptions["ASL"] = 1
515 elif Ext in [".aslc"]:
516 BuildOptions["ASLCC"] = 1
517 BuildOptions["ASLDLINK"] = 1
518 BuildOptions["CC"] = 1
519 elif Ext in [".asm16"]:
520 BuildOptions["ASMLINK"] = 1
521 BuildOptions["SLINK"] = 1
522 BuildOptions["DLINK"] = 1
523
524 #
525 # Save module build flags.
526 #
527 self.ToolChainTag = M.ToolChain
528 self.BuildFlags = {}
529 for Tool in BuildOptions:
530 self.BuildFlags[Tool + "_FLAGS"] = M.BuildOption.get(Tool, {}).get("FLAGS", "")
531
532 ##
533 # Generate report for module build flags information
534 #
535 # This function generates report for the module build flags expression.
536 #
537 # @param self The object pointer
538 # @param File The file object for report
539 #
540 def GenerateReport(self, File):
541 FileWrite(File, gSubSectionStart)
542 FileWrite(File, "Build Flags")
543 FileWrite(File, "Tool Chain Tag: %s" % self.ToolChainTag)
544 for Tool in self.BuildFlags:
545 FileWrite(File, gSubSectionSep)
546 FileWrite(File, "%s = %s" % (Tool, self.BuildFlags[Tool]), True)
547
548 FileWrite(File, gSubSectionEnd)
549
550
551 ##
552 # Reports individual module information
553 #
554 # This class reports the module section in the build report file.
555 # It comprises of module summary, module PCD, library, dependency expression,
556 # build flags sections.
557 #
558 class ModuleReport(object):
559 ##
560 # Constructor function for class ModuleReport
561 #
562 # This constructor function generates ModuleReport object for
563 # a separate module in a platform build.
564 #
565 # @param self The object pointer
566 # @param M Module context information
567 # @param ReportType The kind of report items in the final report file
568 #
569 def __init__(self, M, ReportType):
570 self.ModuleName = M.Module.BaseName
571 self.ModuleInfPath = M.MetaFile.File
572 self.FileGuid = M.Guid
573 self.Size = 0
574 self.BuildTimeStamp = None
575 self.Hash = 0
576 self.DriverType = ""
577 if not M.IsLibrary:
578 ModuleType = M.ModuleType
579 if not ModuleType:
580 ModuleType = COMPONENT_TO_MODULE_MAP_DICT.get(M.ComponentType, "")
581 #
582 # If a module complies to PI 1.1, promote Module type to "SMM_DRIVER"
583 #
584 if ModuleType == SUP_MODULE_DXE_SMM_DRIVER:
585 PiSpec = M.Module.Specification.get("PI_SPECIFICATION_VERSION", "0x00010000")
586 if int(PiSpec, 0) >= 0x0001000A:
587 ModuleType = "SMM_DRIVER"
588 self.DriverType = gDriverTypeMap.get(ModuleType, "0x2 (FREE_FORM)")
589 self.UefiSpecVersion = M.Module.Specification.get("UEFI_SPECIFICATION_VERSION", "")
590 self.PiSpecVersion = M.Module.Specification.get("PI_SPECIFICATION_VERSION", "")
591 self.PciDeviceId = M.Module.Defines.get("PCI_DEVICE_ID", "")
592 self.PciVendorId = M.Module.Defines.get("PCI_VENDOR_ID", "")
593 self.PciClassCode = M.Module.Defines.get("PCI_CLASS_CODE", "")
594 self.BuildTime = M.BuildTime
595
596 self._BuildDir = M.BuildDir
597 self.ModulePcdSet = {}
598 if "PCD" in ReportType:
599 #
600 # Collect all module used PCD set: module INF referenced directly or indirectly.
601 # It also saves module INF default values of them in case they exist.
602 #
603 for Pcd in M.ModulePcdList + M.LibraryPcdList:
604 self.ModulePcdSet.setdefault((Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Pcd.Type), (Pcd.InfDefaultValue, Pcd.DefaultValue))
605
606 self.LibraryReport = None
607 if "LIBRARY" in ReportType:
608 self.LibraryReport = LibraryReport(M)
609
610 self.DepexReport = None
611 if "DEPEX" in ReportType:
612 self.DepexReport = DepexReport(M)
613
614 if "BUILD_FLAGS" in ReportType:
615 self.BuildFlagsReport = BuildFlagsReport(M)
616
617
618 ##
619 # Generate report for module information
620 #
621 # This function generates report for separate module expression
622 # in a platform build.
623 #
624 # @param self The object pointer
625 # @param File The file object for report
626 # @param GlobalPcdReport The platform global PCD report object
627 # @param GlobalPredictionReport The platform global Prediction report object
628 # @param GlobalDepexParser The platform global Dependency expression parser object
629 # @param ReportType The kind of report items in the final report file
630 #
631 def GenerateReport(self, File, GlobalPcdReport, GlobalPredictionReport, GlobalDepexParser, ReportType):
632 FileWrite(File, gSectionStart)
633
634 FwReportFileName = os.path.join(self._BuildDir, "DEBUG", self.ModuleName + ".txt")
635 if os.path.isfile(FwReportFileName):
636 try:
637 FileContents = open(FwReportFileName).read()
638 Match = gModuleSizePattern.search(FileContents)
639 if Match:
640 self.Size = int(Match.group(1))
641
642 Match = gTimeStampPattern.search(FileContents)
643 if Match:
644 self.BuildTimeStamp = datetime.fromtimestamp(int(Match.group(1)))
645 except IOError:
646 EdkLogger.warn(None, "Fail to read report file", FwReportFileName)
647
648 if "HASH" in ReportType:
649 OutputDir = os.path.join(self._BuildDir, "OUTPUT")
650 DefaultEFIfile = os.path.join(OutputDir, self.ModuleName + ".efi")
651 if os.path.isfile(DefaultEFIfile):
652 Tempfile = os.path.join(OutputDir, self.ModuleName + "_hash.tmp")
653 # rebase the efi image since its base address may not zero
654 cmd = ["GenFw", "--rebase", str(0), "-o", Tempfile, DefaultEFIfile]
655 try:
656 PopenObject = subprocess.Popen(' '.join(cmd), stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
657 except Exception as X:
658 EdkLogger.error("GenFw", COMMAND_FAILURE, ExtraData="%s: %s" % (str(X), cmd[0]))
659 EndOfProcedure = threading.Event()
660 EndOfProcedure.clear()
661 if PopenObject.stderr:
662 StdErrThread = threading.Thread(target=ReadMessage, args=(PopenObject.stderr, EdkLogger.quiet, EndOfProcedure))
663 StdErrThread.setName("STDERR-Redirector")
664 StdErrThread.setDaemon(False)
665 StdErrThread.start()
666 # waiting for program exit
667 PopenObject.wait()
668 if PopenObject.stderr:
669 StdErrThread.join()
670 if PopenObject.returncode != 0:
671 EdkLogger.error("GenFw", COMMAND_FAILURE, "Failed to generate firmware hash image for %s" % (DefaultEFIfile))
672 if os.path.isfile(Tempfile):
673 self.Hash = hashlib.sha1()
674 buf = open(Tempfile, 'rb').read()
675 if self.Hash.update(buf):
676 self.Hash = self.Hash.update(buf)
677 self.Hash = self.Hash.hexdigest()
678 os.remove(Tempfile)
679
680 FileWrite(File, "Module Summary")
681 FileWrite(File, "Module Name: %s" % self.ModuleName)
682 FileWrite(File, "Module INF Path: %s" % self.ModuleInfPath)
683 FileWrite(File, "File GUID: %s" % self.FileGuid)
684 if self.Size:
685 FileWrite(File, "Size: 0x%X (%.2fK)" % (self.Size, self.Size / 1024.0))
686 if self.Hash:
687 FileWrite(File, "SHA1 HASH: %s *%s" % (self.Hash, self.ModuleName + ".efi"))
688 if self.BuildTimeStamp:
689 FileWrite(File, "Build Time Stamp: %s" % self.BuildTimeStamp)
690 if self.BuildTime:
691 FileWrite(File, "Module Build Time: %s" % self.BuildTime)
692 if self.DriverType:
693 FileWrite(File, "Driver Type: %s" % self.DriverType)
694 if self.UefiSpecVersion:
695 FileWrite(File, "UEFI Spec Version: %s" % self.UefiSpecVersion)
696 if self.PiSpecVersion:
697 FileWrite(File, "PI Spec Version: %s" % self.PiSpecVersion)
698 if self.PciDeviceId:
699 FileWrite(File, "PCI Device ID: %s" % self.PciDeviceId)
700 if self.PciVendorId:
701 FileWrite(File, "PCI Vendor ID: %s" % self.PciVendorId)
702 if self.PciClassCode:
703 FileWrite(File, "PCI Class Code: %s" % self.PciClassCode)
704
705 FileWrite(File, gSectionSep)
706
707 if "PCD" in ReportType:
708 GlobalPcdReport.GenerateReport(File, self.ModulePcdSet)
709
710 if "LIBRARY" in ReportType:
711 self.LibraryReport.GenerateReport(File)
712
713 if "DEPEX" in ReportType:
714 self.DepexReport.GenerateReport(File, GlobalDepexParser)
715
716 if "BUILD_FLAGS" in ReportType:
717 self.BuildFlagsReport.GenerateReport(File)
718
719 if "FIXED_ADDRESS" in ReportType and self.FileGuid:
720 GlobalPredictionReport.GenerateReport(File, self.FileGuid)
721
722 FileWrite(File, gSectionEnd)
723
724 def ReadMessage(From, To, ExitFlag):
725 while True:
726 # read one line a time
727 Line = From.readline()
728 # empty string means "end"
729 if Line is not None and Line != "":
730 To(Line.rstrip())
731 else:
732 break
733 if ExitFlag.isSet():
734 break
735
736 ##
737 # Reports platform and module PCD information
738 #
739 # This class reports the platform PCD section and module PCD subsection
740 # in the build report file.
741 #
742 class PcdReport(object):
743 ##
744 # Constructor function for class PcdReport
745 #
746 # This constructor function generates PcdReport object a platform build.
747 # It collects the whole PCD database from platform DSC files, platform
748 # flash description file and package DEC files.
749 #
750 # @param self The object pointer
751 # @param Wa Workspace context information
752 #
753 def __init__(self, Wa):
754 self.AllPcds = {}
755 self.UnusedPcds = {}
756 self.ConditionalPcds = {}
757 self.MaxLen = 0
758 self.Arch = None
759 if Wa.FdfProfile:
760 self.FdfPcdSet = Wa.FdfProfile.PcdDict
761 else:
762 self.FdfPcdSet = {}
763
764 self.DefaultStoreSingle = True
765 self.SkuSingle = True
766 if GlobalData.gDefaultStores and len(GlobalData.gDefaultStores) > 1:
767 self.DefaultStoreSingle = False
768 if GlobalData.gSkuids and len(GlobalData.gSkuids) > 1:
769 self.SkuSingle = False
770
771 self.ModulePcdOverride = {}
772 for Pa in Wa.AutoGenObjectList:
773 self.Arch = Pa.Arch
774 #
775 # Collect all platform referenced PCDs and grouped them by PCD token space
776 # GUID C Names
777 #
778 for Pcd in Pa.AllPcdList:
779 PcdList = self.AllPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(Pcd.Type, [])
780 if Pcd not in PcdList:
781 PcdList.append(Pcd)
782 if len(Pcd.TokenCName) > self.MaxLen:
783 self.MaxLen = len(Pcd.TokenCName)
784 #
785 # Collect the PCD defined in DSC/FDF file, but not used in module
786 #
787 UnusedPcdFullList = []
788 for item in Pa.Platform.Pcds:
789 Pcd = Pa.Platform.Pcds[item]
790 if not Pcd.Type:
791 # check the Pcd in FDF file, whether it is used in module first
792 for T in PCD_TYPE_LIST:
793 PcdList = self.AllPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(T, [])
794 if Pcd in PcdList:
795 Pcd.Type = T
796 break
797 if not Pcd.Type:
798 PcdTypeFlag = False
799 for package in Pa.PackageList:
800 for T in PCD_TYPE_LIST:
801 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, T) in package.Pcds:
802 Pcd.Type = T
803 PcdTypeFlag = True
804 if not Pcd.DatumType:
805 Pcd.DatumType = package.Pcds[(Pcd.TokenCName, Pcd.TokenSpaceGuidCName, T)].DatumType
806 break
807 if PcdTypeFlag:
808 break
809 if not Pcd.DatumType:
810 PcdType = Pcd.Type
811 # Try to remove Hii and Vpd suffix
812 if PcdType.startswith(TAB_PCDS_DYNAMIC_EX):
813 PcdType = TAB_PCDS_DYNAMIC_EX
814 elif PcdType.startswith(TAB_PCDS_DYNAMIC):
815 PcdType = TAB_PCDS_DYNAMIC
816 for package in Pa.PackageList:
817 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, PcdType) in package.Pcds:
818 Pcd.DatumType = package.Pcds[(Pcd.TokenCName, Pcd.TokenSpaceGuidCName, PcdType)].DatumType
819 break
820
821 PcdList = self.AllPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(Pcd.Type, [])
822 UnusedPcdList = self.UnusedPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(Pcd.Type, [])
823 if Pcd in UnusedPcdList:
824 UnusedPcdList.remove(Pcd)
825 if Pcd not in PcdList and Pcd not in UnusedPcdFullList:
826 UnusedPcdFullList.append(Pcd)
827 if len(Pcd.TokenCName) > self.MaxLen:
828 self.MaxLen = len(Pcd.TokenCName)
829
830 if GlobalData.gConditionalPcds:
831 for PcdItem in GlobalData.gConditionalPcds:
832 if '.' in PcdItem:
833 (TokenSpaceGuidCName, TokenCName) = PcdItem.split('.')
834 if (TokenCName, TokenSpaceGuidCName) in Pa.Platform.Pcds:
835 Pcd = Pa.Platform.Pcds[(TokenCName, TokenSpaceGuidCName)]
836 PcdList = self.ConditionalPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(Pcd.Type, [])
837 if Pcd not in PcdList:
838 PcdList.append(Pcd)
839
840 UnusedPcdList = []
841 if UnusedPcdFullList:
842 for Pcd in UnusedPcdFullList:
843 if Pcd.TokenSpaceGuidCName + '.' + Pcd.TokenCName in GlobalData.gConditionalPcds:
844 continue
845 UnusedPcdList.append(Pcd)
846
847 for Pcd in UnusedPcdList:
848 PcdList = self.UnusedPcds.setdefault(Pcd.TokenSpaceGuidCName, {}).setdefault(Pcd.Type, [])
849 if Pcd not in PcdList:
850 PcdList.append(Pcd)
851
852 for Module in Pa.Platform.Modules.values():
853 #
854 # Collect module override PCDs
855 #
856 for ModulePcd in Module.M.ModulePcdList + Module.M.LibraryPcdList:
857 TokenCName = ModulePcd.TokenCName
858 TokenSpaceGuid = ModulePcd.TokenSpaceGuidCName
859 ModuleDefault = ModulePcd.DefaultValue
860 ModulePath = os.path.basename(Module.M.MetaFile.File)
861 self.ModulePcdOverride.setdefault((TokenCName, TokenSpaceGuid), {})[ModulePath] = ModuleDefault
862
863
864 #
865 # Collect PCD DEC default value.
866 #
867 self.DecPcdDefault = {}
868 self._GuidDict = {}
869 for Pa in Wa.AutoGenObjectList:
870 for Package in Pa.PackageList:
871 Guids = Package.Guids
872 self._GuidDict.update(Guids)
873 for (TokenCName, TokenSpaceGuidCName, DecType) in Package.Pcds:
874 DecDefaultValue = Package.Pcds[TokenCName, TokenSpaceGuidCName, DecType].DefaultValue
875 self.DecPcdDefault.setdefault((TokenCName, TokenSpaceGuidCName, DecType), DecDefaultValue)
876 #
877 # Collect PCDs defined in DSC common section
878 #
879 self.DscPcdDefault = {}
880 for Pa in Wa.AutoGenObjectList:
881 for (TokenCName, TokenSpaceGuidCName) in Pa.Platform.Pcds:
882 DscDefaultValue = Pa.Platform.Pcds[(TokenCName, TokenSpaceGuidCName)].DscDefaultValue
883 if DscDefaultValue:
884 self.DscPcdDefault[(TokenCName, TokenSpaceGuidCName)] = DscDefaultValue
885
886 def GenerateReport(self, File, ModulePcdSet):
887 if not ModulePcdSet:
888 if self.ConditionalPcds:
889 self.GenerateReportDetail(File, ModulePcdSet, 1)
890 if self.UnusedPcds:
891 IsEmpty = True
892 for Token in self.UnusedPcds:
893 TokenDict = self.UnusedPcds[Token]
894 for Type in TokenDict:
895 if TokenDict[Type]:
896 IsEmpty = False
897 break
898 if not IsEmpty:
899 break
900 if not IsEmpty:
901 self.GenerateReportDetail(File, ModulePcdSet, 2)
902 self.GenerateReportDetail(File, ModulePcdSet)
903
904 ##
905 # Generate report for PCD information
906 #
907 # This function generates report for separate module expression
908 # in a platform build.
909 #
910 # @param self The object pointer
911 # @param File The file object for report
912 # @param ModulePcdSet Set of all PCDs referenced by module or None for
913 # platform PCD report
914 # @param ReportySubType 0 means platform/module PCD report, 1 means Conditional
915 # directives section report, 2 means Unused Pcds section report
916 # @param DscOverridePcds Module DSC override PCDs set
917 #
918 def GenerateReportDetail(self, File, ModulePcdSet, ReportSubType = 0):
919 PcdDict = self.AllPcds
920 if ReportSubType == 1:
921 PcdDict = self.ConditionalPcds
922 elif ReportSubType == 2:
923 PcdDict = self.UnusedPcds
924
925 if not ModulePcdSet:
926 FileWrite(File, gSectionStart)
927 if ReportSubType == 1:
928 FileWrite(File, "Conditional Directives used by the build system")
929 elif ReportSubType == 2:
930 FileWrite(File, "PCDs not used by modules or in conditional directives")
931 else:
932 FileWrite(File, "Platform Configuration Database Report")
933
934 FileWrite(File, " *B - PCD override in the build option")
935 FileWrite(File, " *P - Platform scoped PCD override in DSC file")
936 FileWrite(File, " *F - Platform scoped PCD override in FDF file")
937 if not ReportSubType:
938 FileWrite(File, " *M - Module scoped PCD override")
939 FileWrite(File, gSectionSep)
940 else:
941 if not ReportSubType and ModulePcdSet:
942 #
943 # For module PCD sub-section
944 #
945 FileWrite(File, gSubSectionStart)
946 FileWrite(File, TAB_BRG_PCD)
947 FileWrite(File, gSubSectionSep)
948 AllPcdDict = {}
949 for Key in PcdDict:
950 AllPcdDict[Key] = {}
951 for Type in PcdDict[Key]:
952 for Pcd in PcdDict[Key][Type]:
953 AllPcdDict[Key][(Pcd.TokenCName, Type)] = Pcd
954 for Key in sorted(AllPcdDict):
955 #
956 # Group PCD by their token space GUID C Name
957 #
958 First = True
959 for PcdTokenCName, Type in sorted(AllPcdDict[Key]):
960 #
961 # Group PCD by their usage type
962 #
963 Pcd = AllPcdDict[Key][(PcdTokenCName, Type)]
964 TypeName, DecType = gPcdTypeMap.get(Type, ("", Type))
965 MixedPcdFlag = False
966 if GlobalData.MixedPcd:
967 for PcdKey in GlobalData.MixedPcd:
968 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName) in GlobalData.MixedPcd[PcdKey]:
969 PcdTokenCName = PcdKey[0]
970 MixedPcdFlag = True
971 if MixedPcdFlag and not ModulePcdSet:
972 continue
973 #
974 # Get PCD default value and their override relationship
975 #
976 DecDefaultValue = self.DecPcdDefault.get((Pcd.TokenCName, Pcd.TokenSpaceGuidCName, DecType))
977 DscDefaultValue = self.DscPcdDefault.get((Pcd.TokenCName, Pcd.TokenSpaceGuidCName))
978 DscDefaultValBak = DscDefaultValue
979 Field = ''
980 for (CName, Guid, Field) in self.FdfPcdSet:
981 if CName == PcdTokenCName and Guid == Key:
982 DscDefaultValue = self.FdfPcdSet[(CName, Guid, Field)]
983 break
984 if DscDefaultValue != DscDefaultValBak:
985 try:
986 DscDefaultValue = ValueExpressionEx(DscDefaultValue, Pcd.DatumType, self._GuidDict)(True)
987 except BadExpression as DscDefaultValue:
988 EdkLogger.error('BuildReport', FORMAT_INVALID, "PCD Value: %s, Type: %s" %(DscDefaultValue, Pcd.DatumType))
989
990 InfDefaultValue = None
991
992 PcdValue = DecDefaultValue
993 if DscDefaultValue:
994 PcdValue = DscDefaultValue
995 #The DefaultValue of StructurePcd already be the latest, no need to update.
996 if not self.IsStructurePcd(Pcd.TokenCName, Pcd.TokenSpaceGuidCName):
997 Pcd.DefaultValue = PcdValue
998 if ModulePcdSet is not None:
999 if (Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Type) not in ModulePcdSet:
1000 continue
1001 InfDefaultValue, PcdValue = ModulePcdSet[Pcd.TokenCName, Pcd.TokenSpaceGuidCName, Type]
1002 #The DefaultValue of StructurePcd already be the latest, no need to update.
1003 if not self.IsStructurePcd(Pcd.TokenCName, Pcd.TokenSpaceGuidCName):
1004 Pcd.DefaultValue = PcdValue
1005 if InfDefaultValue:
1006 try:
1007 InfDefaultValue = ValueExpressionEx(InfDefaultValue, Pcd.DatumType, self._GuidDict)(True)
1008 except BadExpression as InfDefaultValue:
1009 EdkLogger.error('BuildReport', FORMAT_INVALID, "PCD Value: %s, Type: %s" % (InfDefaultValue, Pcd.DatumType))
1010 if InfDefaultValue == "":
1011 InfDefaultValue = None
1012
1013 BuildOptionMatch = False
1014 if GlobalData.BuildOptionPcd:
1015 for pcd in GlobalData.BuildOptionPcd:
1016 if (Pcd.TokenSpaceGuidCName, Pcd.TokenCName) == (pcd[0], pcd[1]):
1017 if pcd[2]:
1018 continue
1019 PcdValue = pcd[3]
1020 #The DefaultValue of StructurePcd already be the latest, no need to update.
1021 if not self.IsStructurePcd(Pcd.TokenCName, Pcd.TokenSpaceGuidCName):
1022 Pcd.DefaultValue = PcdValue
1023 BuildOptionMatch = True
1024 break
1025
1026 if First:
1027 if ModulePcdSet is None:
1028 FileWrite(File, "")
1029 FileWrite(File, Key)
1030 First = False
1031
1032
1033 if Pcd.DatumType in TAB_PCD_NUMERIC_TYPES:
1034 PcdValueNumber = int(PcdValue.strip(), 0)
1035 if DecDefaultValue is None:
1036 DecMatch = True
1037 else:
1038 DecDefaultValueNumber = int(DecDefaultValue.strip(), 0)
1039 DecMatch = (DecDefaultValueNumber == PcdValueNumber)
1040
1041 if InfDefaultValue is None:
1042 InfMatch = True
1043 else:
1044 InfDefaultValueNumber = int(InfDefaultValue.strip(), 0)
1045 InfMatch = (InfDefaultValueNumber == PcdValueNumber)
1046
1047 if DscDefaultValue is None:
1048 DscMatch = True
1049 else:
1050 DscDefaultValueNumber = int(DscDefaultValue.strip(), 0)
1051 DscMatch = (DscDefaultValueNumber == PcdValueNumber)
1052 else:
1053 if DecDefaultValue is None:
1054 DecMatch = True
1055 else:
1056 DecMatch = (DecDefaultValue.strip() == PcdValue.strip())
1057
1058 if InfDefaultValue is None:
1059 InfMatch = True
1060 else:
1061 InfMatch = (InfDefaultValue.strip() == PcdValue.strip())
1062
1063 if DscDefaultValue is None:
1064 DscMatch = True
1065 else:
1066 DscMatch = (DscDefaultValue.strip() == PcdValue.strip())
1067
1068 IsStructure = False
1069 if self.IsStructurePcd(Pcd.TokenCName, Pcd.TokenSpaceGuidCName):
1070 IsStructure = True
1071 if TypeName in ('DYNVPD', 'DEXVPD'):
1072 SkuInfoList = Pcd.SkuInfoList
1073 Pcd = GlobalData.gStructurePcd[self.Arch][(Pcd.TokenCName, Pcd.TokenSpaceGuidCName)]
1074 Pcd.DatumType = Pcd.StructName
1075 if TypeName in ('DYNVPD', 'DEXVPD'):
1076 Pcd.SkuInfoList = SkuInfoList
1077 if Pcd.PcdFieldValueFromComm:
1078 BuildOptionMatch = True
1079 DecMatch = False
1080 elif Pcd.SkuOverrideValues:
1081 DscOverride = False
1082 if Pcd.DefaultFromDSC:
1083 DscOverride = True
1084 else:
1085 DictLen = 0
1086 for item in Pcd.SkuOverrideValues:
1087 DictLen += len(Pcd.SkuOverrideValues[item])
1088 if not DictLen:
1089 DscOverride = False
1090 else:
1091 if not Pcd.SkuInfoList:
1092 OverrideValues = Pcd.SkuOverrideValues
1093 if OverrideValues:
1094 Keys = list(OverrideValues.keys())
1095 Data = OverrideValues[Keys[0]]
1096 Struct = list(Data.values())
1097 DscOverride = self.ParseStruct(Struct[0])
1098 else:
1099 SkuList = sorted(Pcd.SkuInfoList.keys())
1100 for Sku in SkuList:
1101 SkuInfo = Pcd.SkuInfoList[Sku]
1102 if TypeName in ('DYNHII', 'DEXHII'):
1103 if SkuInfo.DefaultStoreDict:
1104 DefaultStoreList = sorted(SkuInfo.DefaultStoreDict.keys())
1105 for DefaultStore in DefaultStoreList:
1106 OverrideValues = Pcd.SkuOverrideValues[Sku]
1107 DscOverride = self.ParseStruct(OverrideValues[DefaultStore])
1108 if DscOverride:
1109 break
1110 else:
1111 OverrideValues = Pcd.SkuOverrideValues[Sku]
1112 if OverrideValues:
1113 Keys = list(OverrideValues.keys())
1114 OverrideFieldStruct = self.OverrideFieldValue(Pcd, OverrideValues[Keys[0]])
1115 DscOverride = self.ParseStruct(OverrideFieldStruct)
1116 if DscOverride:
1117 break
1118 if DscOverride:
1119 DscDefaultValue = True
1120 DscMatch = True
1121 DecMatch = False
1122 else:
1123 DecMatch = True
1124 else:
1125 DscDefaultValue = True
1126 DscMatch = True
1127 DecMatch = False
1128
1129 #
1130 # Report PCD item according to their override relationship
1131 #
1132 if Pcd.DatumType == 'BOOLEAN':
1133 if DscDefaultValue:
1134 DscDefaultValue = str(int(DscDefaultValue, 0))
1135 if DecDefaultValue:
1136 DecDefaultValue = str(int(DecDefaultValue, 0))
1137 if InfDefaultValue:
1138 InfDefaultValue = str(int(InfDefaultValue, 0))
1139 if Pcd.DefaultValue:
1140 Pcd.DefaultValue = str(int(Pcd.DefaultValue, 0))
1141 if DecMatch:
1142 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, ' ')
1143 elif InfDefaultValue and InfMatch:
1144 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, '*M')
1145 elif BuildOptionMatch:
1146 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, '*B')
1147 else:
1148 if DscDefaultValue and DscMatch:
1149 if (Pcd.TokenCName, Key, Field) in self.FdfPcdSet:
1150 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, '*F')
1151 else:
1152 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, '*P')
1153 else:
1154 self.PrintPcdValue(File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValBak, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, '*M')
1155
1156 if ModulePcdSet is None:
1157 if IsStructure:
1158 continue
1159 if not TypeName in ('PATCH', 'FLAG', 'FIXED'):
1160 continue
1161 if not BuildOptionMatch:
1162 ModuleOverride = self.ModulePcdOverride.get((Pcd.TokenCName, Pcd.TokenSpaceGuidCName), {})
1163 for ModulePath in ModuleOverride:
1164 ModuleDefault = ModuleOverride[ModulePath]
1165 if Pcd.DatumType in TAB_PCD_NUMERIC_TYPES:
1166 ModulePcdDefaultValueNumber = int(ModuleDefault.strip(), 0)
1167 Match = (ModulePcdDefaultValueNumber == PcdValueNumber)
1168 if Pcd.DatumType == 'BOOLEAN':
1169 ModuleDefault = str(ModulePcdDefaultValueNumber)
1170 else:
1171 Match = (ModuleDefault.strip() == PcdValue.strip())
1172 if Match:
1173 continue
1174 IsByteArray, ArrayList = ByteArrayForamt(ModuleDefault.strip())
1175 if IsByteArray:
1176 FileWrite(File, ' *M %-*s = %s' % (self.MaxLen + 15, ModulePath, '{'))
1177 for Array in ArrayList:
1178 FileWrite(File, Array)
1179 else:
1180 Value = ModuleDefault.strip()
1181 if Pcd.DatumType in TAB_PCD_CLEAN_NUMERIC_TYPES:
1182 if Value.startswith(('0x', '0X')):
1183 Value = '{} ({:d})'.format(Value, int(Value, 0))
1184 else:
1185 Value = "0x{:X} ({})".format(int(Value, 0), Value)
1186 FileWrite(File, ' *M %-*s = %s' % (self.MaxLen + 15, ModulePath, Value))
1187
1188 if ModulePcdSet is None:
1189 FileWrite(File, gSectionEnd)
1190 else:
1191 if not ReportSubType and ModulePcdSet:
1192 FileWrite(File, gSubSectionEnd)
1193
1194 def ParseStruct(self, struct):
1195 HasDscOverride = False
1196 if struct:
1197 for _, Values in struct.items():
1198 if Values[1] and Values[1].endswith('.dsc'):
1199 HasDscOverride = True
1200 break
1201 return HasDscOverride
1202
1203 def PrintPcdDefault(self, File, Pcd, IsStructure, DscMatch, DscDefaultValue, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue):
1204 if not DscMatch and DscDefaultValue is not None:
1205 Value = DscDefaultValue.strip()
1206 IsByteArray, ArrayList = ByteArrayForamt(Value)
1207 if IsByteArray:
1208 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'DSC DEFAULT', "{"))
1209 for Array in ArrayList:
1210 FileWrite(File, Array)
1211 else:
1212 if Pcd.DatumType in TAB_PCD_CLEAN_NUMERIC_TYPES:
1213 if Value.startswith(('0x', '0X')):
1214 Value = '{} ({:d})'.format(Value, int(Value, 0))
1215 else:
1216 Value = "0x{:X} ({})".format(int(Value, 0), Value)
1217 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'DSC DEFAULT', Value))
1218 if not InfMatch and InfDefaultValue is not None:
1219 Value = InfDefaultValue.strip()
1220 IsByteArray, ArrayList = ByteArrayForamt(Value)
1221 if IsByteArray:
1222 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'INF DEFAULT', "{"))
1223 for Array in ArrayList:
1224 FileWrite(File, Array)
1225 else:
1226 if Pcd.DatumType in TAB_PCD_CLEAN_NUMERIC_TYPES:
1227 if Value.startswith(('0x', '0X')):
1228 Value = '{} ({:d})'.format(Value, int(Value, 0))
1229 else:
1230 Value = "0x{:X} ({})".format(int(Value, 0), Value)
1231 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'INF DEFAULT', Value))
1232
1233 if not DecMatch and DecDefaultValue is not None:
1234 Value = DecDefaultValue.strip()
1235 IsByteArray, ArrayList = ByteArrayForamt(Value)
1236 if IsByteArray:
1237 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'DEC DEFAULT', "{"))
1238 for Array in ArrayList:
1239 FileWrite(File, Array)
1240 else:
1241 if Pcd.DatumType in TAB_PCD_CLEAN_NUMERIC_TYPES:
1242 if Value.startswith(('0x', '0X')):
1243 Value = '{} ({:d})'.format(Value, int(Value, 0))
1244 else:
1245 Value = "0x{:X} ({})".format(int(Value, 0), Value)
1246 FileWrite(File, ' %*s = %s' % (self.MaxLen + 19, 'DEC DEFAULT', Value))
1247 if IsStructure:
1248 self.PrintStructureInfo(File, Pcd.DefaultValues)
1249 if DecMatch and IsStructure:
1250 self.PrintStructureInfo(File, Pcd.DefaultValues)
1251
1252 def PrintPcdValue(self, File, Pcd, PcdTokenCName, TypeName, IsStructure, DscMatch, DscDefaultValue, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue, Flag = ' '):
1253 if not Pcd.SkuInfoList:
1254 Value = Pcd.DefaultValue
1255 IsByteArray, ArrayList = ByteArrayForamt(Value)
1256 if IsByteArray:
1257 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '{'))
1258 for Array in ArrayList:
1259 FileWrite(File, Array)
1260 else:
1261 if Pcd.DatumType in TAB_PCD_CLEAN_NUMERIC_TYPES:
1262 if Value.startswith(('0x', '0X')):
1263 Value = '{} ({:d})'.format(Value, int(Value, 0))
1264 else:
1265 Value = "0x{:X} ({})".format(int(Value, 0), Value)
1266 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', Value))
1267 if IsStructure:
1268 OverrideValues = Pcd.SkuOverrideValues
1269 if OverrideValues:
1270 Keys = list(OverrideValues.keys())
1271 Data = OverrideValues[Keys[0]]
1272 Struct = list(Data.values())
1273 if Struct:
1274 OverrideFieldStruct = self.OverrideFieldValue(Pcd, Struct[0])
1275 self.PrintStructureInfo(File, OverrideFieldStruct)
1276 self.PrintPcdDefault(File, Pcd, IsStructure, DscMatch, DscDefaultValue, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue)
1277 else:
1278 FirstPrint = True
1279 SkuList = sorted(Pcd.SkuInfoList.keys())
1280 for Sku in SkuList:
1281 SkuInfo = Pcd.SkuInfoList[Sku]
1282 SkuIdName = SkuInfo.SkuIdName
1283 if TypeName in ('DYNHII', 'DEXHII'):
1284 if SkuInfo.DefaultStoreDict:
1285 DefaultStoreList = sorted(SkuInfo.DefaultStoreDict.keys())
1286 for DefaultStore in DefaultStoreList:
1287 Value = SkuInfo.DefaultStoreDict[DefaultStore]
1288 IsByteArray, ArrayList = ByteArrayForamt(Value)
1289 if Pcd.DatumType == 'BOOLEAN':
1290 Value = str(int(Value, 0))
1291 if FirstPrint:
1292 FirstPrint = False
1293 if IsByteArray:
1294 if self.DefaultStoreSingle and self.SkuSingle:
1295 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '{'))
1296 elif self.DefaultStoreSingle and not self.SkuSingle:
1297 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '{'))
1298 elif not self.DefaultStoreSingle and self.SkuSingle:
1299 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + DefaultStore + ')', '{'))
1300 else:
1301 FileWrite(File, ' %-*s : %6s %10s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '(' + DefaultStore + ')', '{'))
1302 for Array in ArrayList:
1303 FileWrite(File, Array)
1304 else:
1305 if Pcd.DatumType in TAB_PCD_CLEAN_NUMERIC_TYPES:
1306 if Value.startswith(('0x', '0X')):
1307 Value = '{} ({:d})'.format(Value, int(Value, 0))
1308 else:
1309 Value = "0x{:X} ({})".format(int(Value, 0), Value)
1310 if self.DefaultStoreSingle and self.SkuSingle:
1311 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', Value))
1312 elif self.DefaultStoreSingle and not self.SkuSingle:
1313 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', Value))
1314 elif not self.DefaultStoreSingle and self.SkuSingle:
1315 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + DefaultStore + ')', Value))
1316 else:
1317 FileWrite(File, ' %-*s : %6s %10s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '(' + DefaultStore + ')', Value))
1318 else:
1319 if IsByteArray:
1320 if self.DefaultStoreSingle and self.SkuSingle:
1321 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '{'))
1322 elif self.DefaultStoreSingle and not self.SkuSingle:
1323 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '{'))
1324 elif not self.DefaultStoreSingle and self.SkuSingle:
1325 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + DefaultStore + ')', '{'))
1326 else:
1327 FileWrite(File, ' %-*s : %6s %10s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '(' + DefaultStore + ')', '{'))
1328 for Array in ArrayList:
1329 FileWrite(File, Array)
1330 else:
1331 if Pcd.DatumType in TAB_PCD_CLEAN_NUMERIC_TYPES:
1332 if Value.startswith(('0x', '0X')):
1333 Value = '{} ({:d})'.format(Value, int(Value, 0))
1334 else:
1335 Value = "0x{:X} ({})".format(int(Value, 0), Value)
1336 if self.DefaultStoreSingle and self.SkuSingle:
1337 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', Value))
1338 elif self.DefaultStoreSingle and not self.SkuSingle:
1339 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', Value))
1340 elif not self.DefaultStoreSingle and self.SkuSingle:
1341 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + DefaultStore + ')', Value))
1342 else:
1343 FileWrite(File, ' %-*s : %6s %10s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', '(' + DefaultStore + ')', Value))
1344 FileWrite(File, '%*s: %s: %s' % (self.MaxLen + 4, SkuInfo.VariableGuid, SkuInfo.VariableName, SkuInfo.VariableOffset))
1345 if IsStructure:
1346 OverrideValues = Pcd.SkuOverrideValues[Sku]
1347 OverrideFieldStruct = self.OverrideFieldValue(Pcd, OverrideValues[DefaultStore])
1348 self.PrintStructureInfo(File, OverrideFieldStruct)
1349 self.PrintPcdDefault(File, Pcd, IsStructure, DscMatch, DscDefaultValue, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue)
1350 else:
1351 Value = SkuInfo.DefaultValue
1352 IsByteArray, ArrayList = ByteArrayForamt(Value)
1353 if Pcd.DatumType == 'BOOLEAN':
1354 Value = str(int(Value, 0))
1355 if FirstPrint:
1356 FirstPrint = False
1357 if IsByteArray:
1358 if self.SkuSingle:
1359 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', "{"))
1360 else:
1361 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', "{"))
1362 for Array in ArrayList:
1363 FileWrite(File, Array)
1364 else:
1365 if Pcd.DatumType in TAB_PCD_CLEAN_NUMERIC_TYPES:
1366 if Value.startswith(('0x', '0X')):
1367 Value = '{} ({:d})'.format(Value, int(Value, 0))
1368 else:
1369 Value = "0x{:X} ({})".format(int(Value, 0), Value)
1370 if self.SkuSingle:
1371 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', Value))
1372 else:
1373 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, Flag + ' ' + PcdTokenCName, TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', Value))
1374 else:
1375 if IsByteArray:
1376 if self.SkuSingle:
1377 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', "{"))
1378 else:
1379 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', "{"))
1380 for Array in ArrayList:
1381 FileWrite(File, Array)
1382 else:
1383 if Pcd.DatumType in TAB_PCD_CLEAN_NUMERIC_TYPES:
1384 if Value.startswith(('0x', '0X')):
1385 Value = '{} ({:d})'.format(Value, int(Value, 0))
1386 else:
1387 Value = "0x{:X} ({})".format(int(Value, 0), Value)
1388 if self.SkuSingle:
1389 FileWrite(File, ' %-*s : %6s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', Value))
1390 else:
1391 FileWrite(File, ' %-*s : %6s %10s %10s = %s' % (self.MaxLen, ' ', TypeName, '(' + Pcd.DatumType + ')', '(' + SkuIdName + ')', Value))
1392 if TypeName in ('DYNVPD', 'DEXVPD'):
1393 FileWrite(File, '%*s' % (self.MaxLen + 4, SkuInfo.VpdOffset))
1394 if IsStructure:
1395 OverrideValues = Pcd.SkuOverrideValues[Sku]
1396 if OverrideValues:
1397 Keys = OverrideValues.keys()
1398 OverrideFieldStruct = self.OverrideFieldValue(Pcd, OverrideValues[Keys[0]])
1399 self.PrintStructureInfo(File, OverrideFieldStruct)
1400 self.PrintPcdDefault(File, Pcd, IsStructure, DscMatch, DscDefaultValue, InfMatch, InfDefaultValue, DecMatch, DecDefaultValue)
1401
1402 def OverrideFieldValue(self, Pcd, OverrideStruct):
1403 OverrideFieldStruct = collections.OrderedDict()
1404 if OverrideStruct:
1405 for Key, Values in OverrideStruct.items():
1406 if Values[1] and Values[1].endswith('.dsc'):
1407 OverrideFieldStruct[Key] = Values
1408 if Pcd.PcdFieldValueFromFdf:
1409 for Key, Values in Pcd.PcdFieldValueFromFdf.items():
1410 if Key in OverrideFieldStruct and Values[0] == OverrideFieldStruct[Key][0]:
1411 continue
1412 OverrideFieldStruct[Key] = Values
1413 if Pcd.PcdFieldValueFromComm:
1414 for Key, Values in Pcd.PcdFieldValueFromComm.items():
1415 if Key in OverrideFieldStruct and Values[0] == OverrideFieldStruct[Key][0]:
1416 continue
1417 OverrideFieldStruct[Key] = Values
1418 return OverrideFieldStruct
1419
1420 def PrintStructureInfo(self, File, Struct):
1421 for Key, Value in sorted(Struct.items(), key=lambda x: x[0]):
1422 if Value[1] and 'build command options' in Value[1]:
1423 FileWrite(File, ' *B %-*s = %s' % (self.MaxLen + 4, '.' + Key, Value[0]))
1424 elif Value[1] and Value[1].endswith('.fdf'):
1425 FileWrite(File, ' *F %-*s = %s' % (self.MaxLen + 4, '.' + Key, Value[0]))
1426 else:
1427 FileWrite(File, ' %-*s = %s' % (self.MaxLen + 4, '.' + Key, Value[0]))
1428
1429 def StrtoHex(self, value):
1430 try:
1431 value = hex(int(value))
1432 return value
1433 except:
1434 if value.startswith("L\"") and value.endswith("\""):
1435 valuelist = []
1436 for ch in value[2:-1]:
1437 valuelist.append(hex(ord(ch)))
1438 valuelist.append('0x00')
1439 return valuelist
1440 elif value.startswith("\"") and value.endswith("\""):
1441 return hex(ord(value[1:-1]))
1442 elif value.startswith("{") and value.endswith("}"):
1443 valuelist = []
1444 if ',' not in value:
1445 return value[1:-1]
1446 for ch in value[1:-1].split(','):
1447 ch = ch.strip()
1448 if ch.startswith('0x') or ch.startswith('0X'):
1449 valuelist.append(ch)
1450 continue
1451 try:
1452 valuelist.append(hex(int(ch.strip())))
1453 except:
1454 pass
1455 return valuelist
1456 else:
1457 return value
1458
1459 def IsStructurePcd(self, PcdToken, PcdTokenSpaceGuid):
1460 if GlobalData.gStructurePcd and (self.Arch in GlobalData.gStructurePcd) and ((PcdToken, PcdTokenSpaceGuid) in GlobalData.gStructurePcd[self.Arch]):
1461 return True
1462 else:
1463 return False
1464
1465 ##
1466 # Reports platform and module Prediction information
1467 #
1468 # This class reports the platform execution order prediction section and
1469 # module load fixed address prediction subsection in the build report file.
1470 #
1471 class PredictionReport(object):
1472 ##
1473 # Constructor function for class PredictionReport
1474 #
1475 # This constructor function generates PredictionReport object for the platform.
1476 #
1477 # @param self: The object pointer
1478 # @param Wa Workspace context information
1479 #
1480 def __init__(self, Wa):
1481 self._MapFileName = os.path.join(Wa.BuildDir, Wa.Name + ".map")
1482 self._MapFileParsed = False
1483 self._EotToolInvoked = False
1484 self._FvDir = Wa.FvDir
1485 self._EotDir = Wa.BuildDir
1486 self._FfsEntryPoint = {}
1487 self._GuidMap = {}
1488 self._SourceList = []
1489 self.FixedMapDict = {}
1490 self.ItemList = []
1491 self.MaxLen = 0
1492
1493 #
1494 # Collect all platform reference source files and GUID C Name
1495 #
1496 for Pa in Wa.AutoGenObjectList:
1497 for Module in Pa.LibraryAutoGenList + Pa.ModuleAutoGenList:
1498 #
1499 # BASE typed modules are EFI agnostic, so we need not scan
1500 # their source code to find PPI/Protocol produce or consume
1501 # information.
1502 #
1503 if Module.ModuleType == SUP_MODULE_BASE:
1504 continue
1505 #
1506 # Add module referenced source files
1507 #
1508 self._SourceList.append(str(Module))
1509 IncludeList = {}
1510 for Source in Module.SourceFileList:
1511 if os.path.splitext(str(Source))[1].lower() == ".c":
1512 self._SourceList.append(" " + str(Source))
1513 FindIncludeFiles(Source.Path, Module.IncludePathList, IncludeList)
1514 for IncludeFile in IncludeList.values():
1515 self._SourceList.append(" " + IncludeFile)
1516
1517 for Guid in Module.PpiList:
1518 self._GuidMap[Guid] = GuidStructureStringToGuidString(Module.PpiList[Guid])
1519 for Guid in Module.ProtocolList:
1520 self._GuidMap[Guid] = GuidStructureStringToGuidString(Module.ProtocolList[Guid])
1521 for Guid in Module.GuidList:
1522 self._GuidMap[Guid] = GuidStructureStringToGuidString(Module.GuidList[Guid])
1523
1524 if Module.Guid and not Module.IsLibrary:
1525 EntryPoint = " ".join(Module.Module.ModuleEntryPointList)
1526 if int(str(Module.AutoGenVersion), 0) >= 0x00010005:
1527 RealEntryPoint = "_ModuleEntryPoint"
1528 else:
1529 RealEntryPoint = EntryPoint
1530 if EntryPoint == "_ModuleEntryPoint":
1531 CCFlags = Module.BuildOption.get("CC", {}).get("FLAGS", "")
1532 Match = gGlueLibEntryPoint.search(CCFlags)
1533 if Match:
1534 EntryPoint = Match.group(1)
1535
1536 self._FfsEntryPoint[Module.Guid.upper()] = (EntryPoint, RealEntryPoint)
1537
1538
1539 #
1540 # Collect platform firmware volume list as the input of EOT.
1541 #
1542 self._FvList = []
1543 if Wa.FdfProfile:
1544 for Fd in Wa.FdfProfile.FdDict:
1545 for FdRegion in Wa.FdfProfile.FdDict[Fd].RegionList:
1546 if FdRegion.RegionType != BINARY_FILE_TYPE_FV:
1547 continue
1548 for FvName in FdRegion.RegionDataList:
1549 if FvName in self._FvList:
1550 continue
1551 self._FvList.append(FvName)
1552 for Ffs in Wa.FdfProfile.FvDict[FvName.upper()].FfsList:
1553 for Section in Ffs.SectionList:
1554 try:
1555 for FvSection in Section.SectionList:
1556 if FvSection.FvName in self._FvList:
1557 continue
1558 self._FvList.append(FvSection.FvName)
1559 except AttributeError:
1560 pass
1561
1562
1563 ##
1564 # Parse platform fixed address map files
1565 #
1566 # This function parses the platform final fixed address map file to get
1567 # the database of predicted fixed address for module image base, entry point
1568 # etc.
1569 #
1570 # @param self: The object pointer
1571 #
1572 def _ParseMapFile(self):
1573 if self._MapFileParsed:
1574 return
1575 self._MapFileParsed = True
1576 if os.path.isfile(self._MapFileName):
1577 try:
1578 FileContents = open(self._MapFileName).read()
1579 for Match in gMapFileItemPattern.finditer(FileContents):
1580 AddressType = Match.group(1)
1581 BaseAddress = Match.group(2)
1582 EntryPoint = Match.group(3)
1583 Guid = Match.group(4).upper()
1584 List = self.FixedMapDict.setdefault(Guid, [])
1585 List.append((AddressType, BaseAddress, "*I"))
1586 List.append((AddressType, EntryPoint, "*E"))
1587 except:
1588 EdkLogger.warn(None, "Cannot open file to read", self._MapFileName)
1589
1590 ##
1591 # Invokes EOT tool to get the predicted the execution order.
1592 #
1593 # This function invokes EOT tool to calculate the predicted dispatch order
1594 #
1595 # @param self: The object pointer
1596 #
1597 def _InvokeEotTool(self):
1598 if self._EotToolInvoked:
1599 return
1600
1601 self._EotToolInvoked = True
1602 FvFileList = []
1603 for FvName in self._FvList:
1604 FvFile = os.path.join(self._FvDir, FvName + ".Fv")
1605 if os.path.isfile(FvFile):
1606 FvFileList.append(FvFile)
1607
1608 if len(FvFileList) == 0:
1609 return
1610 #
1611 # Write source file list and GUID file list to an intermediate file
1612 # as the input for EOT tool and dispatch List as the output file
1613 # from EOT tool.
1614 #
1615 SourceList = os.path.join(self._EotDir, "SourceFile.txt")
1616 GuidList = os.path.join(self._EotDir, "GuidList.txt")
1617 DispatchList = os.path.join(self._EotDir, "Dispatch.txt")
1618
1619 TempFile = open(SourceList, "w+")
1620 for Item in self._SourceList:
1621 FileWrite(TempFile, Item)
1622 TempFile.close()
1623 TempFile = open(GuidList, "w+")
1624 for Key in self._GuidMap:
1625 FileWrite(TempFile, "%s %s" % (Key, self._GuidMap[Key]))
1626 TempFile.close()
1627
1628 try:
1629 from Eot.Eot import Eot
1630
1631 #
1632 # Invoke EOT tool and echo its runtime performance
1633 #
1634 EotStartTime = time.time()
1635 Eot(CommandLineOption=False, SourceFileList=SourceList, GuidList=GuidList,
1636 FvFileList=' '.join(FvFileList), Dispatch=DispatchList, IsInit=True)
1637 EotEndTime = time.time()
1638 EotDuration = time.strftime("%H:%M:%S", time.gmtime(int(round(EotEndTime - EotStartTime))))
1639 EdkLogger.quiet("EOT run time: %s\n" % EotDuration)
1640
1641 #
1642 # Parse the output of EOT tool
1643 #
1644 for Line in open(DispatchList):
1645 if len(Line.split()) < 4:
1646 continue
1647 (Guid, Phase, FfsName, FilePath) = Line.split()
1648 Symbol = self._FfsEntryPoint.get(Guid, [FfsName, ""])[0]
1649 if len(Symbol) > self.MaxLen:
1650 self.MaxLen = len(Symbol)
1651 self.ItemList.append((Phase, Symbol, FilePath))
1652 except:
1653 EdkLogger.quiet("(Python %s on %s\n%s)" % (platform.python_version(), sys.platform, traceback.format_exc()))
1654 EdkLogger.warn(None, "Failed to generate execution order prediction report, for some error occurred in executing EOT.")
1655
1656
1657 ##
1658 # Generate platform execution order report
1659 #
1660 # This function generates the predicted module execution order.
1661 #
1662 # @param self The object pointer
1663 # @param File The file object for report
1664 #
1665 def _GenerateExecutionOrderReport(self, File):
1666 self._InvokeEotTool()
1667 if len(self.ItemList) == 0:
1668 return
1669 FileWrite(File, gSectionStart)
1670 FileWrite(File, "Execution Order Prediction")
1671 FileWrite(File, "*P PEI phase")
1672 FileWrite(File, "*D DXE phase")
1673 FileWrite(File, "*E Module INF entry point name")
1674 FileWrite(File, "*N Module notification function name")
1675
1676 FileWrite(File, "Type %-*s %s" % (self.MaxLen, "Symbol", "Module INF Path"))
1677 FileWrite(File, gSectionSep)
1678 for Item in self.ItemList:
1679 FileWrite(File, "*%sE %-*s %s" % (Item[0], self.MaxLen, Item[1], Item[2]))
1680
1681 FileWrite(File, gSectionStart)
1682
1683 ##
1684 # Generate Fixed Address report.
1685 #
1686 # This function generate the predicted fixed address report for a module
1687 # specified by Guid.
1688 #
1689 # @param self The object pointer
1690 # @param File The file object for report
1691 # @param Guid The module Guid value.
1692 # @param NotifyList The list of all notify function in a module
1693 #
1694 def _GenerateFixedAddressReport(self, File, Guid, NotifyList):
1695 self._ParseMapFile()
1696 FixedAddressList = self.FixedMapDict.get(Guid)
1697 if not FixedAddressList:
1698 return
1699
1700 FileWrite(File, gSubSectionStart)
1701 FileWrite(File, "Fixed Address Prediction")
1702 FileWrite(File, "*I Image Loading Address")
1703 FileWrite(File, "*E Entry Point Address")
1704 FileWrite(File, "*N Notification Function Address")
1705 FileWrite(File, "*F Flash Address")
1706 FileWrite(File, "*M Memory Address")
1707 FileWrite(File, "*S SMM RAM Offset")
1708 FileWrite(File, "TOM Top of Memory")
1709
1710 FileWrite(File, "Type Address Name")
1711 FileWrite(File, gSubSectionSep)
1712 for Item in FixedAddressList:
1713 Type = Item[0]
1714 Value = Item[1]
1715 Symbol = Item[2]
1716 if Symbol == "*I":
1717 Name = "(Image Base)"
1718 elif Symbol == "*E":
1719 Name = self._FfsEntryPoint.get(Guid, ["", "_ModuleEntryPoint"])[1]
1720 elif Symbol in NotifyList:
1721 Name = Symbol
1722 Symbol = "*N"
1723 else:
1724 continue
1725
1726 if "Flash" in Type:
1727 Symbol += "F"
1728 elif "Memory" in Type:
1729 Symbol += "M"
1730 else:
1731 Symbol += "S"
1732
1733 if Value[0] == "-":
1734 Value = "TOM" + Value
1735
1736 FileWrite(File, "%s %-16s %s" % (Symbol, Value, Name))
1737
1738 ##
1739 # Generate report for the prediction part
1740 #
1741 # This function generate the predicted fixed address report for a module or
1742 # predicted module execution order for a platform.
1743 # If the input Guid is None, then, it generates the predicted module execution order;
1744 # otherwise it generated the module fixed loading address for the module specified by
1745 # Guid.
1746 #
1747 # @param self The object pointer
1748 # @param File The file object for report
1749 # @param Guid The module Guid value.
1750 #
1751 def GenerateReport(self, File, Guid):
1752 if Guid:
1753 self._GenerateFixedAddressReport(File, Guid.upper(), [])
1754 else:
1755 self._GenerateExecutionOrderReport(File)
1756
1757 ##
1758 # Reports FD region information
1759 #
1760 # This class reports the FD subsection in the build report file.
1761 # It collects region information of platform flash device.
1762 # If the region is a firmware volume, it lists the set of modules
1763 # and its space information; otherwise, it only lists its region name,
1764 # base address and size in its sub-section header.
1765 # If there are nesting FVs, the nested FVs will list immediate after
1766 # this FD region subsection
1767 #
1768 class FdRegionReport(object):
1769 ##
1770 # Discover all the nested FV name list.
1771 #
1772 # This is an internal worker function to discover the all the nested FV information
1773 # in the parent firmware volume. It uses deep first search algorithm recursively to
1774 # find all the FV list name and append them to the list.
1775 #
1776 # @param self The object pointer
1777 # @param FvName The name of current firmware file system
1778 # @param Wa Workspace context information
1779 #
1780 def _DiscoverNestedFvList(self, FvName, Wa):
1781 FvDictKey=FvName.upper()
1782 if FvDictKey in Wa.FdfProfile.FvDict:
1783 for Ffs in Wa.FdfProfile.FvDict[FvName.upper()].FfsList:
1784 for Section in Ffs.SectionList:
1785 try:
1786 for FvSection in Section.SectionList:
1787 if FvSection.FvName in self.FvList:
1788 continue
1789 self._GuidsDb[Ffs.NameGuid.upper()] = FvSection.FvName
1790 self.FvList.append(FvSection.FvName)
1791 self.FvInfo[FvSection.FvName] = ("Nested FV", 0, 0)
1792 self._DiscoverNestedFvList(FvSection.FvName, Wa)
1793 except AttributeError:
1794 pass
1795
1796 ##
1797 # Constructor function for class FdRegionReport
1798 #
1799 # This constructor function generates FdRegionReport object for a specified FdRegion.
1800 # If the FdRegion is a firmware volume, it will recursively find all its nested Firmware
1801 # volume list. This function also collects GUID map in order to dump module identification
1802 # in the final report.
1803 #
1804 # @param self: The object pointer
1805 # @param FdRegion The current FdRegion object
1806 # @param Wa Workspace context information
1807 #
1808 def __init__(self, FdRegion, Wa):
1809 self.Type = FdRegion.RegionType
1810 self.BaseAddress = FdRegion.Offset
1811 self.Size = FdRegion.Size
1812 self.FvList = []
1813 self.FvInfo = {}
1814 self._GuidsDb = {}
1815 self._FvDir = Wa.FvDir
1816 self._WorkspaceDir = Wa.WorkspaceDir
1817
1818 #
1819 # If the input FdRegion is not a firmware volume,
1820 # we are done.
1821 #
1822 if self.Type != BINARY_FILE_TYPE_FV:
1823 return
1824
1825 #
1826 # Find all nested FVs in the FdRegion
1827 #
1828 for FvName in FdRegion.RegionDataList:
1829 if FvName in self.FvList:
1830 continue
1831 self.FvList.append(FvName)
1832 self.FvInfo[FvName] = ("Fd Region", self.BaseAddress, self.Size)
1833 self._DiscoverNestedFvList(FvName, Wa)
1834
1835 PlatformPcds = {}
1836 #
1837 # Collect PCDs declared in DEC files.
1838 #
1839 for Pa in Wa.AutoGenObjectList:
1840 for Package in Pa.PackageList:
1841 for (TokenCName, TokenSpaceGuidCName, DecType) in Package.Pcds:
1842 DecDefaultValue = Package.Pcds[TokenCName, TokenSpaceGuidCName, DecType].DefaultValue
1843 PlatformPcds[(TokenCName, TokenSpaceGuidCName)] = DecDefaultValue
1844 #
1845 # Collect PCDs defined in DSC file
1846 #
1847 for Pa in Wa.AutoGenObjectList:
1848 for (TokenCName, TokenSpaceGuidCName) in Pa.Platform.Pcds:
1849 DscDefaultValue = Pa.Platform.Pcds[(TokenCName, TokenSpaceGuidCName)].DefaultValue
1850 PlatformPcds[(TokenCName, TokenSpaceGuidCName)] = DscDefaultValue
1851
1852 #
1853 # Add PEI and DXE a priori files GUIDs defined in PI specification.
1854 #
1855 self._GuidsDb["1B45CC0A-156A-428A-AF62-49864DA0E6E6"] = "PEI Apriori"
1856 self._GuidsDb["FC510EE7-FFDC-11D4-BD41-0080C73C8881"] = "DXE Apriori"
1857 #
1858 # Add ACPI table storage file
1859 #
1860 self._GuidsDb["7E374E25-8E01-4FEE-87F2-390C23C606CD"] = "ACPI table storage"
1861
1862 for Pa in Wa.AutoGenObjectList:
1863 for ModuleKey in Pa.Platform.Modules:
1864 M = Pa.Platform.Modules[ModuleKey].M
1865 InfPath = mws.join(Wa.WorkspaceDir, M.MetaFile.File)
1866 self._GuidsDb[M.Guid.upper()] = "%s (%s)" % (M.Module.BaseName, InfPath)
1867
1868 #
1869 # Collect the GUID map in the FV firmware volume
1870 #
1871 for FvName in self.FvList:
1872 FvDictKey=FvName.upper()
1873 if FvDictKey in Wa.FdfProfile.FvDict:
1874 for Ffs in Wa.FdfProfile.FvDict[FvName.upper()].FfsList:
1875 try:
1876 #
1877 # collect GUID map for binary EFI file in FDF file.
1878 #
1879 Guid = Ffs.NameGuid.upper()
1880 Match = gPcdGuidPattern.match(Ffs.NameGuid)
1881 if Match:
1882 PcdTokenspace = Match.group(1)
1883 PcdToken = Match.group(2)
1884 if (PcdToken, PcdTokenspace) in PlatformPcds:
1885 GuidValue = PlatformPcds[(PcdToken, PcdTokenspace)]
1886 Guid = GuidStructureByteArrayToGuidString(GuidValue).upper()
1887 for Section in Ffs.SectionList:
1888 try:
1889 ModuleSectFile = mws.join(Wa.WorkspaceDir, Section.SectFileName)
1890 self._GuidsDb[Guid] = ModuleSectFile
1891 except AttributeError:
1892 pass
1893 except AttributeError:
1894 pass
1895
1896
1897 ##
1898 # Internal worker function to generate report for the FD region
1899 #
1900 # This internal worker function to generate report for the FD region.
1901 # It the type is firmware volume, it lists offset and module identification.
1902 #
1903 # @param self The object pointer
1904 # @param File The file object for report
1905 # @param Title The title for the FD subsection
1906 # @param BaseAddress The base address for the FD region
1907 # @param Size The size of the FD region
1908 # @param FvName The FV name if the FD region is a firmware volume
1909 #
1910 def _GenerateReport(self, File, Title, Type, BaseAddress, Size=0, FvName=None):
1911 FileWrite(File, gSubSectionStart)
1912 FileWrite(File, Title)
1913 FileWrite(File, "Type: %s" % Type)
1914 FileWrite(File, "Base Address: 0x%X" % BaseAddress)
1915
1916 if self.Type == BINARY_FILE_TYPE_FV:
1917 FvTotalSize = 0
1918 FvTakenSize = 0
1919 FvFreeSize = 0
1920 if FvName.upper().endswith('.FV'):
1921 FileExt = FvName + ".txt"
1922 else:
1923 FileExt = FvName + ".Fv.txt"
1924
1925 if not os.path.isfile(FileExt):
1926 FvReportFileName = mws.join(self._WorkspaceDir, FileExt)
1927 if not os.path.isfile(FvReportFileName):
1928 FvReportFileName = os.path.join(self._FvDir, FileExt)
1929 try:
1930 #
1931 # Collect size info in the firmware volume.
1932 #
1933 FvReport = open(FvReportFileName).read()
1934 Match = gFvTotalSizePattern.search(FvReport)
1935 if Match:
1936 FvTotalSize = int(Match.group(1), 16)
1937 Match = gFvTakenSizePattern.search(FvReport)
1938 if Match:
1939 FvTakenSize = int(Match.group(1), 16)
1940 FvFreeSize = FvTotalSize - FvTakenSize
1941 #
1942 # Write size information to the report file.
1943 #
1944 FileWrite(File, "Size: 0x%X (%.0fK)" % (FvTotalSize, FvTotalSize / 1024.0))
1945 FileWrite(File, "Fv Name: %s (%.1f%% Full)" % (FvName, FvTakenSize * 100.0 / FvTotalSize))
1946 FileWrite(File, "Occupied Size: 0x%X (%.0fK)" % (FvTakenSize, FvTakenSize / 1024.0))
1947 FileWrite(File, "Free Size: 0x%X (%.0fK)" % (FvFreeSize, FvFreeSize / 1024.0))
1948 FileWrite(File, "Offset Module")
1949 FileWrite(File, gSubSectionSep)
1950 #
1951 # Write module offset and module identification to the report file.
1952 #
1953 OffsetInfo = {}
1954 for Match in gOffsetGuidPattern.finditer(FvReport):
1955 Guid = Match.group(2).upper()
1956 OffsetInfo[Match.group(1)] = self._GuidsDb.get(Guid, Guid)
1957 OffsetList = sorted(OffsetInfo.keys())
1958 for Offset in OffsetList:
1959 FileWrite (File, "%s %s" % (Offset, OffsetInfo[Offset]))
1960 except IOError:
1961 EdkLogger.warn(None, "Fail to read report file", FvReportFileName)
1962 else:
1963 FileWrite(File, "Size: 0x%X (%.0fK)" % (Size, Size / 1024.0))
1964 FileWrite(File, gSubSectionEnd)
1965
1966 ##
1967 # Generate report for the FD region
1968 #
1969 # This function generates report for the FD region.
1970 #
1971 # @param self The object pointer
1972 # @param File The file object for report
1973 #
1974 def GenerateReport(self, File):
1975 if (len(self.FvList) > 0):
1976 for FvItem in self.FvList:
1977 Info = self.FvInfo[FvItem]
1978 self._GenerateReport(File, Info[0], TAB_FV_DIRECTORY, Info[1], Info[2], FvItem)
1979 else:
1980 self._GenerateReport(File, "FD Region", self.Type, self.BaseAddress, self.Size)
1981
1982 ##
1983 # Reports FD information
1984 #
1985 # This class reports the FD section in the build report file.
1986 # It collects flash device information for a platform.
1987 #
1988 class FdReport(object):
1989 ##
1990 # Constructor function for class FdReport
1991 #
1992 # This constructor function generates FdReport object for a specified
1993 # firmware device.
1994 #
1995 # @param self The object pointer
1996 # @param Fd The current Firmware device object
1997 # @param Wa Workspace context information
1998 #
1999 def __init__(self, Fd, Wa):
2000 self.FdName = Fd.FdUiName
2001 self.BaseAddress = Fd.BaseAddress
2002 self.Size = Fd.Size
2003 self.FdRegionList = [FdRegionReport(FdRegion, Wa) for FdRegion in Fd.RegionList]
2004 self.FvPath = os.path.join(Wa.BuildDir, TAB_FV_DIRECTORY)
2005 self.VpdFilePath = os.path.join(self.FvPath, "%s.map" % Wa.Platform.VpdToolGuid)
2006 self.VPDBaseAddress = 0
2007 self.VPDSize = 0
2008 self.VPDInfoList = []
2009 for index, FdRegion in enumerate(Fd.RegionList):
2010 if str(FdRegion.RegionType) is 'FILE' and Wa.Platform.VpdToolGuid in str(FdRegion.RegionDataList):
2011 self.VPDBaseAddress = self.FdRegionList[index].BaseAddress
2012 self.VPDSize = self.FdRegionList[index].Size
2013 break
2014
2015 if os.path.isfile(self.VpdFilePath):
2016 fd = open(self.VpdFilePath, "r")
2017 Lines = fd.readlines()
2018 for Line in Lines:
2019 Line = Line.strip()
2020 if len(Line) == 0 or Line.startswith("#"):
2021 continue
2022 try:
2023 PcdName, SkuId, Offset, Size, Value = Line.split("#")[0].split("|")
2024 PcdName, SkuId, Offset, Size, Value = PcdName.strip(), SkuId.strip(), Offset.strip(), Size.strip(), Value.strip()
2025 if Offset.lower().startswith('0x'):
2026 Offset = '0x%08X' % (int(Offset, 16) + self.VPDBaseAddress)
2027 else:
2028 Offset = '0x%08X' % (int(Offset, 10) + self.VPDBaseAddress)
2029 self.VPDInfoList.append("%s | %s | %s | %s | %s" % (PcdName, SkuId, Offset, Size, Value))
2030 except:
2031 EdkLogger.error("BuildReport", CODE_ERROR, "Fail to parse VPD information file %s" % self.VpdFilePath)
2032 fd.close()
2033
2034 ##
2035 # Generate report for the firmware device.
2036 #
2037 # This function generates report for the firmware device.
2038 #
2039 # @param self The object pointer
2040 # @param File The file object for report
2041 #
2042 def GenerateReport(self, File):
2043 FileWrite(File, gSectionStart)
2044 FileWrite(File, "Firmware Device (FD)")
2045 FileWrite(File, "FD Name: %s" % self.FdName)
2046 FileWrite(File, "Base Address: %s" % self.BaseAddress)
2047 FileWrite(File, "Size: 0x%X (%.0fK)" % (self.Size, self.Size / 1024.0))
2048 if len(self.FdRegionList) > 0:
2049 FileWrite(File, gSectionSep)
2050 for FdRegionItem in self.FdRegionList:
2051 FdRegionItem.GenerateReport(File)
2052
2053 if len(self.VPDInfoList) > 0:
2054 FileWrite(File, gSubSectionStart)
2055 FileWrite(File, "FD VPD Region")
2056 FileWrite(File, "Base Address: 0x%X" % self.VPDBaseAddress)
2057 FileWrite(File, "Size: 0x%X (%.0fK)" % (self.VPDSize, self.VPDSize / 1024.0))
2058 FileWrite(File, gSubSectionSep)
2059 for item in self.VPDInfoList:
2060 ValueList = item.split('|')
2061 Value = ValueList[-1].strip()
2062 IsByteArray, ArrayList = ByteArrayForamt(Value)
2063 if IsByteArray:
2064 ValueList[-1] = ' {'
2065 FileWrite(File, '|'.join(ValueList))
2066 for Array in ArrayList:
2067 FileWrite(File, Array)
2068 else:
2069 FileWrite(File, item)
2070 FileWrite(File, gSubSectionEnd)
2071 FileWrite(File, gSectionEnd)
2072
2073
2074
2075 ##
2076 # Reports platform information
2077 #
2078 # This class reports the whole platform information
2079 #
2080 class PlatformReport(object):
2081 ##
2082 # Constructor function for class PlatformReport
2083 #
2084 # This constructor function generates PlatformReport object a platform build.
2085 # It generates report for platform summary, flash, global PCDs and detailed
2086 # module information for modules involved in platform build.
2087 #
2088 # @param self The object pointer
2089 # @param Wa Workspace context information
2090 # @param MaList The list of modules in the platform build
2091 #
2092 def __init__(self, Wa, MaList, ReportType):
2093 self._WorkspaceDir = Wa.WorkspaceDir
2094 self.PlatformName = Wa.Name
2095 self.PlatformDscPath = Wa.Platform
2096 self.Architectures = " ".join(Wa.ArchList)
2097 self.ToolChain = Wa.ToolChain
2098 self.Target = Wa.BuildTarget
2099 self.OutputPath = os.path.join(Wa.WorkspaceDir, Wa.OutputDir)
2100 self.BuildEnvironment = platform.platform()
2101
2102 self.PcdReport = None
2103 if "PCD" in ReportType:
2104 self.PcdReport = PcdReport(Wa)
2105
2106 self.FdReportList = []
2107 if "FLASH" in ReportType and Wa.FdfProfile and MaList is None:
2108 for Fd in Wa.FdfProfile.FdDict:
2109 self.FdReportList.append(FdReport(Wa.FdfProfile.FdDict[Fd], Wa))
2110
2111 self.PredictionReport = None
2112 if "FIXED_ADDRESS" in ReportType or "EXECUTION_ORDER" in ReportType:
2113 self.PredictionReport = PredictionReport(Wa)
2114
2115 self.DepexParser = None
2116 if "DEPEX" in ReportType:
2117 self.DepexParser = DepexParser(Wa)
2118
2119 self.ModuleReportList = []
2120 if MaList is not None:
2121 self._IsModuleBuild = True
2122 for Ma in MaList:
2123 self.ModuleReportList.append(ModuleReport(Ma, ReportType))
2124 else:
2125 self._IsModuleBuild = False
2126 for Pa in Wa.AutoGenObjectList:
2127 ModuleAutoGenList = []
2128 for ModuleKey in Pa.Platform.Modules:
2129 ModuleAutoGenList.append(Pa.Platform.Modules[ModuleKey].M)
2130 if GlobalData.gFdfParser is not None:
2131 if Pa.Arch in GlobalData.gFdfParser.Profile.InfDict:
2132 INFList = GlobalData.gFdfParser.Profile.InfDict[Pa.Arch]
2133 for InfName in INFList:
2134 InfClass = PathClass(NormPath(InfName), Wa.WorkspaceDir, Pa.Arch)
2135 Ma = ModuleAutoGen(Wa, InfClass, Pa.BuildTarget, Pa.ToolChain, Pa.Arch, Wa.MetaFile)
2136 if Ma is None:
2137 continue
2138 if Ma not in ModuleAutoGenList:
2139 ModuleAutoGenList.append(Ma)
2140 for MGen in ModuleAutoGenList:
2141 self.ModuleReportList.append(ModuleReport(MGen, ReportType))
2142
2143
2144
2145 ##
2146 # Generate report for the whole platform.
2147 #
2148 # This function generates report for platform information.
2149 # It comprises of platform summary, global PCD, flash and
2150 # module list sections.
2151 #
2152 # @param self The object pointer
2153 # @param File The file object for report
2154 # @param BuildDuration The total time to build the modules
2155 # @param AutoGenTime The total time of AutoGen Phase
2156 # @param MakeTime The total time of Make Phase
2157 # @param GenFdsTime The total time of GenFds Phase
2158 # @param ReportType The kind of report items in the final report file
2159 #
2160 def GenerateReport(self, File, BuildDuration, AutoGenTime, MakeTime, GenFdsTime, ReportType):
2161 FileWrite(File, "Platform Summary")
2162 FileWrite(File, "Platform Name: %s" % self.PlatformName)
2163 FileWrite(File, "Platform DSC Path: %s" % self.PlatformDscPath)
2164 FileWrite(File, "Architectures: %s" % self.Architectures)
2165 FileWrite(File, "Tool Chain: %s" % self.ToolChain)
2166 FileWrite(File, "Target: %s" % self.Target)
2167 if GlobalData.gSkuids:
2168 FileWrite(File, "SKUID: %s" % " ".join(GlobalData.gSkuids))
2169 if GlobalData.gDefaultStores:
2170 FileWrite(File, "DefaultStore: %s" % " ".join(GlobalData.gDefaultStores))
2171 FileWrite(File, "Output Path: %s" % self.OutputPath)
2172 FileWrite(File, "Build Environment: %s" % self.BuildEnvironment)
2173 FileWrite(File, "Build Duration: %s" % BuildDuration)
2174 if AutoGenTime:
2175 FileWrite(File, "AutoGen Duration: %s" % AutoGenTime)
2176 if MakeTime:
2177 FileWrite(File, "Make Duration: %s" % MakeTime)
2178 if GenFdsTime:
2179 FileWrite(File, "GenFds Duration: %s" % GenFdsTime)
2180 FileWrite(File, "Report Content: %s" % ", ".join(ReportType))
2181
2182 if GlobalData.MixedPcd:
2183 FileWrite(File, gSectionStart)
2184 FileWrite(File, "The following PCDs use different access methods:")
2185 FileWrite(File, gSectionSep)
2186 for PcdItem in GlobalData.MixedPcd:
2187 FileWrite(File, "%s.%s" % (str(PcdItem[1]), str(PcdItem[0])))
2188 FileWrite(File, gSectionEnd)
2189
2190 if not self._IsModuleBuild:
2191 if "PCD" in ReportType:
2192 self.PcdReport.GenerateReport(File, None)
2193
2194 if "FLASH" in ReportType:
2195 for FdReportListItem in self.FdReportList:
2196 FdReportListItem.GenerateReport(File)
2197
2198 for ModuleReportItem in self.ModuleReportList:
2199 ModuleReportItem.GenerateReport(File, self.PcdReport, self.PredictionReport, self.DepexParser, ReportType)
2200
2201 if not self._IsModuleBuild:
2202 if "EXECUTION_ORDER" in ReportType:
2203 self.PredictionReport.GenerateReport(File, None)
2204
2205 ## BuildReport class
2206 #
2207 # This base class contain the routines to collect data and then
2208 # applies certain format to the output report
2209 #
2210 class BuildReport(object):
2211 ##
2212 # Constructor function for class BuildReport
2213 #
2214 # This constructor function generates BuildReport object a platform build.
2215 # It generates report for platform summary, flash, global PCDs and detailed
2216 # module information for modules involved in platform build.
2217 #
2218 # @param self The object pointer
2219 # @param ReportFile The file name to save report file
2220 # @param ReportType The kind of report items in the final report file
2221 #
2222 def __init__(self, ReportFile, ReportType):
2223 self.ReportFile = ReportFile
2224 if ReportFile:
2225 self.ReportList = []
2226 self.ReportType = []
2227 if ReportType:
2228 for ReportTypeItem in ReportType:
2229 if ReportTypeItem not in self.ReportType:
2230 self.ReportType.append(ReportTypeItem)
2231 else:
2232 self.ReportType = ["PCD", "LIBRARY", "BUILD_FLAGS", "DEPEX", "HASH", "FLASH", "FIXED_ADDRESS"]
2233 ##
2234 # Adds platform report to the list
2235 #
2236 # This function adds a platform report to the final report list.
2237 #
2238 # @param self The object pointer
2239 # @param Wa Workspace context information
2240 # @param MaList The list of modules in the platform build
2241 #
2242 def AddPlatformReport(self, Wa, MaList=None):
2243 if self.ReportFile:
2244 self.ReportList.append((Wa, MaList))
2245
2246 ##
2247 # Generates the final report.
2248 #
2249 # This function generates platform build report. It invokes GenerateReport()
2250 # method for every platform report in the list.
2251 #
2252 # @param self The object pointer
2253 # @param BuildDuration The total time to build the modules
2254 # @param AutoGenTime The total time of AutoGen phase
2255 # @param MakeTime The total time of Make phase
2256 # @param GenFdsTime The total time of GenFds phase
2257 #
2258 def GenerateReport(self, BuildDuration, AutoGenTime, MakeTime, GenFdsTime):
2259 if self.ReportFile:
2260 try:
2261 File = BytesIO('')
2262 for (Wa, MaList) in self.ReportList:
2263 PlatformReport(Wa, MaList, self.ReportType).GenerateReport(File, BuildDuration, AutoGenTime, MakeTime, GenFdsTime, self.ReportType)
2264 Content = FileLinesSplit(File.getvalue(), gLineMaxLength)
2265 SaveFileOnChange(self.ReportFile, Content, True)
2266 EdkLogger.quiet("Build report can be found at %s" % os.path.abspath(self.ReportFile))
2267 except IOError:
2268 EdkLogger.error(None, FILE_WRITE_FAILURE, ExtraData=self.ReportFile)
2269 except:
2270 EdkLogger.error("BuildReport", CODE_ERROR, "Unknown fatal error when generating build report", ExtraData=self.ReportFile, RaiseError=False)
2271 EdkLogger.quiet("(Python %s on %s\n%s)" % (platform.python_version(), sys.platform, traceback.format_exc()))
2272 File.close()
2273
2274 # This acts like the main() function for the script, unless it is 'import'ed into another script.
2275 if __name__ == '__main__':
2276 pass
2277