]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/Workspace/MetaFileParser.py
6809003d984691c0b906fed0b16092652d6baac4
[mirror_edk2.git] / BaseTools / Source / Python / Workspace / MetaFileParser.py
1 ## @file
2 # This file is used to parse meta files
3 #
4 # Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>
5 # (C) Copyright 2015-2016 Hewlett Packard Enterprise Development LP<BR>
6 # This program and the accompanying materials
7 # are licensed and made available under the terms and conditions of the BSD License
8 # which accompanies this distribution. The full text of the license may be found at
9 # http://opensource.org/licenses/bsd-license.php
10 #
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14
15 ##
16 # Import Modules
17 #
18 import Common.LongFilePathOs as os
19 import re
20 import time
21 import copy
22 import md5
23
24 import Common.EdkLogger as EdkLogger
25 import Common.GlobalData as GlobalData
26
27 from CommonDataClass.DataClass import *
28 from Common.DataType import *
29 from Common.String import *
30 from Common.Misc import GuidStructureStringToGuidString, CheckPcdDatum, PathClass, AnalyzePcdData, AnalyzeDscPcd, AnalyzePcdExpression, ParseFieldValue
31 from Common.Expression import *
32 from CommonDataClass.Exceptions import *
33 from Common.LongFilePathSupport import OpenLongFilePath as open
34
35 from MetaFileTable import MetaFileStorage
36 from MetaFileCommentParser import CheckInfComment
37
38 ## A decorator used to parse macro definition
39 def ParseMacro(Parser):
40 def MacroParser(self):
41 Match = gMacroDefPattern.match(self._CurrentLine)
42 if not Match:
43 # Not 'DEFINE/EDK_GLOBAL' statement, call decorated method
44 Parser(self)
45 return
46
47 TokenList = GetSplitValueList(self._CurrentLine[Match.end(1):], TAB_EQUAL_SPLIT, 1)
48 # Syntax check
49 if not TokenList[0]:
50 EdkLogger.error('Parser', FORMAT_INVALID, "No macro name given",
51 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
52 if len(TokenList) < 2:
53 TokenList.append('')
54
55 Type = Match.group(1)
56 Name, Value = TokenList
57 # Global macros can be only defined via environment variable
58 if Name in GlobalData.gGlobalDefines:
59 EdkLogger.error('Parser', FORMAT_INVALID, "%s can only be defined via environment variable" % Name,
60 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
61 # Only upper case letters, digit and '_' are allowed
62 if not gMacroNamePattern.match(Name):
63 EdkLogger.error('Parser', FORMAT_INVALID, "The macro name must be in the pattern [A-Z][A-Z0-9_]*",
64 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
65
66 Value = ReplaceMacro(Value, self._Macros)
67 if Type in self.DataType:
68 self._ItemType = self.DataType[Type]
69 else:
70 self._ItemType = MODEL_META_DATA_DEFINE
71 # DEFINE defined macros
72 if Type == TAB_DSC_DEFINES_DEFINE:
73 #
74 # First judge whether this DEFINE is in conditional directive statements or not.
75 #
76 if type(self) == DscParser and self._InDirective > -1:
77 pass
78 else:
79 if type(self) == DecParser:
80 if MODEL_META_DATA_HEADER in self._SectionType:
81 self._FileLocalMacros[Name] = Value
82 else:
83 self._ConstructSectionMacroDict(Name, Value)
84 elif self._SectionType == MODEL_META_DATA_HEADER:
85 self._FileLocalMacros[Name] = Value
86 else:
87 self._ConstructSectionMacroDict(Name, Value)
88
89 # EDK_GLOBAL defined macros
90 elif type(self) != DscParser:
91 EdkLogger.error('Parser', FORMAT_INVALID, "EDK_GLOBAL can only be used in .dsc file",
92 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
93 elif self._SectionType != MODEL_META_DATA_HEADER:
94 EdkLogger.error('Parser', FORMAT_INVALID, "EDK_GLOBAL can only be used under [Defines] section",
95 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
96 elif (Name in self._FileLocalMacros) and (self._FileLocalMacros[Name] != Value):
97 EdkLogger.error('Parser', FORMAT_INVALID, "EDK_GLOBAL defined a macro with the same name and different value as one defined by 'DEFINE'",
98 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
99
100 self._ValueList = [Type, Name, Value]
101
102 return MacroParser
103
104 ## Base class of parser
105 #
106 # This class is used for derivation purpose. The specific parser for one kind
107 # type file must derive this class and implement some public interfaces.
108 #
109 # @param FilePath The path of platform description file
110 # @param FileType The raw data of DSC file
111 # @param Table Database used to retrieve module/package information
112 # @param Macros Macros used for replacement in file
113 # @param Owner Owner ID (for sub-section parsing)
114 # @param From ID from which the data comes (for !INCLUDE directive)
115 #
116 class MetaFileParser(object):
117 # data type (file content) for specific file type
118 DataType = {}
119
120 # Parser objects used to implement singleton
121 MetaFiles = {}
122
123 ## Factory method
124 #
125 # One file, one parser object. This factory method makes sure that there's
126 # only one object constructed for one meta file.
127 #
128 # @param Class class object of real AutoGen class
129 # (InfParser, DecParser or DscParser)
130 # @param FilePath The path of meta file
131 # @param *args The specific class related parameters
132 # @param **kwargs The specific class related dict parameters
133 #
134 def __new__(Class, FilePath, *args, **kwargs):
135 if FilePath in Class.MetaFiles:
136 return Class.MetaFiles[FilePath]
137 else:
138 ParserObject = super(MetaFileParser, Class).__new__(Class)
139 Class.MetaFiles[FilePath] = ParserObject
140 return ParserObject
141
142 ## Constructor of MetaFileParser
143 #
144 # Initialize object of MetaFileParser
145 #
146 # @param FilePath The path of platform description file
147 # @param FileType The raw data of DSC file
148 # @param Arch Default Arch value for filtering sections
149 # @param Table Database used to retrieve module/package information
150 # @param Owner Owner ID (for sub-section parsing)
151 # @param From ID from which the data comes (for !INCLUDE directive)
152 #
153 def __init__(self, FilePath, FileType, Arch, Table, Owner= -1, From= -1):
154 self._Table = Table
155 self._RawTable = Table
156 self._Arch = Arch
157 self._FileType = FileType
158 self.MetaFile = FilePath
159 self._FileDir = self.MetaFile.Dir
160 self._Defines = {}
161 self._FileLocalMacros = {}
162 self._SectionsMacroDict = {}
163
164 # for recursive parsing
165 self._Owner = [Owner]
166 self._From = From
167
168 # parsr status for parsing
169 self._ValueList = ['', '', '', '', '']
170 self._Scope = []
171 self._LineIndex = 0
172 self._CurrentLine = ''
173 self._SectionType = MODEL_UNKNOWN
174 self._SectionName = ''
175 self._InSubsection = False
176 self._SubsectionType = MODEL_UNKNOWN
177 self._SubsectionName = ''
178 self._ItemType = MODEL_UNKNOWN
179 self._LastItem = -1
180 self._Enabled = 0
181 self._Finished = False
182 self._PostProcessed = False
183 # Different version of meta-file has different way to parse.
184 self._Version = 0
185 self._GuidDict = {} # for Parser PCD value {GUID(gTokeSpaceGuidName)}
186
187 ## Store the parsed data in table
188 def _Store(self, *Args):
189 return self._Table.Insert(*Args)
190
191 ## Virtual method for starting parse
192 def Start(self):
193 raise NotImplementedError
194
195 ## Notify a post-process is needed
196 def DoPostProcess(self):
197 self._PostProcessed = False
198
199 ## Set parsing complete flag in both class and table
200 def _Done(self):
201 self._Finished = True
202 ## Do not set end flag when processing included files
203 if self._From == -1:
204 self._Table.SetEndFlag()
205
206 def _PostProcess(self):
207 self._PostProcessed = True
208
209 ## Get the parse complete flag
210 def _GetFinished(self):
211 return self._Finished
212
213 ## Set the complete flag
214 def _SetFinished(self, Value):
215 self._Finished = Value
216
217 ## Remove records that do not match given Filter Arch
218 def _FilterRecordList(self, RecordList, FilterArch):
219 NewRecordList = []
220 for Record in RecordList:
221 Arch = Record[3]
222 if Arch == 'COMMON' or Arch == FilterArch:
223 NewRecordList.append(Record)
224 return NewRecordList
225
226 ## Use [] style to query data in table, just for readability
227 #
228 # DataInfo = [data_type, scope1(arch), scope2(platform/moduletype)]
229 #
230 def __getitem__(self, DataInfo):
231 if type(DataInfo) != type(()):
232 DataInfo = (DataInfo,)
233
234 # Parse the file first, if necessary
235 if not self._Finished:
236 if self._RawTable.IsIntegrity():
237 self._Finished = True
238 else:
239 self._Table = self._RawTable
240 self._PostProcessed = False
241 self.Start()
242
243 # No specific ARCH or Platform given, use raw data
244 if self._RawTable and (len(DataInfo) == 1 or DataInfo[1] == None):
245 return self._FilterRecordList(self._RawTable.Query(*DataInfo), self._Arch)
246
247 # Do post-process if necessary
248 if not self._PostProcessed:
249 self._PostProcess()
250
251 return self._FilterRecordList(self._Table.Query(*DataInfo), DataInfo[1])
252
253 ## Data parser for the common format in different type of file
254 #
255 # The common format in the meatfile is like
256 #
257 # xxx1 | xxx2 | xxx3
258 #
259 @ParseMacro
260 def _CommonParser(self):
261 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
262 self._ValueList[0:len(TokenList)] = TokenList
263
264 ## Data parser for the format in which there's path
265 #
266 # Only path can have macro used. So we need to replace them before use.
267 #
268 @ParseMacro
269 def _PathParser(self):
270 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
271 self._ValueList[0:len(TokenList)] = TokenList
272 # Don't do macro replacement for dsc file at this point
273 if type(self) != DscParser:
274 Macros = self._Macros
275 self._ValueList = [ReplaceMacro(Value, Macros) for Value in self._ValueList]
276
277 ## Skip unsupported data
278 def _Skip(self):
279 EdkLogger.warn("Parser", "Unrecognized content", File=self.MetaFile,
280 Line=self._LineIndex + 1, ExtraData=self._CurrentLine);
281 self._ValueList[0:1] = [self._CurrentLine]
282
283 ## Skip unsupported data for UserExtension Section
284 def _SkipUserExtension(self):
285 self._ValueList[0:1] = [self._CurrentLine]
286
287 ## Section header parser
288 #
289 # The section header is always in following format:
290 #
291 # [section_name.arch<.platform|module_type>]
292 #
293 def _SectionHeaderParser(self):
294 self._Scope = []
295 self._SectionName = ''
296 ArchList = set()
297 for Item in GetSplitValueList(self._CurrentLine[1:-1], TAB_COMMA_SPLIT):
298 if Item == '':
299 continue
300 ItemList = GetSplitValueList(Item, TAB_SPLIT,3)
301 # different section should not mix in one section
302 if self._SectionName != '' and self._SectionName != ItemList[0].upper():
303 EdkLogger.error('Parser', FORMAT_INVALID, "Different section names in the same section",
304 File=self.MetaFile, Line=self._LineIndex + 1, ExtraData=self._CurrentLine)
305 self._SectionName = ItemList[0].upper()
306 if self._SectionName in self.DataType:
307 self._SectionType = self.DataType[self._SectionName]
308 # Check if the section name is valid
309 if self._SectionName not in SECTIONS_HAVE_ITEM_AFTER_ARCH and len(ItemList) > 3:
310 EdkLogger.error("Parser", FORMAT_UNKNOWN_ERROR, "%s is not a valid section name" % Item,
311 self.MetaFile, self._LineIndex + 1, self._CurrentLine)
312 elif self._Version >= 0x00010005:
313 EdkLogger.error("Parser", FORMAT_UNKNOWN_ERROR, "%s is not a valid section name" % Item,
314 self.MetaFile, self._LineIndex + 1, self._CurrentLine)
315 else:
316 self._SectionType = MODEL_UNKNOWN
317
318 # S1 is always Arch
319 if len(ItemList) > 1:
320 S1 = ItemList[1].upper()
321 else:
322 S1 = 'COMMON'
323 ArchList.add(S1)
324
325 # S2 may be Platform or ModuleType
326 if len(ItemList) > 2:
327 if self._SectionName.upper() in SECTIONS_HAVE_ITEM_PCD:
328 S2 = ItemList[2]
329 else:
330 S2 = ItemList[2].upper()
331 else:
332 S2 = 'COMMON'
333 if len(ItemList) > 3:
334 S3 = ItemList[3]
335 else:
336 S3 = "COMMON"
337 self._Scope.append([S1, S2, S3])
338
339 # 'COMMON' must not be used with specific ARCHs at the same section
340 if 'COMMON' in ArchList and len(ArchList) > 1:
341 EdkLogger.error('Parser', FORMAT_INVALID, "'common' ARCH must not be used with specific ARCHs",
342 File=self.MetaFile, Line=self._LineIndex + 1, ExtraData=self._CurrentLine)
343 # If the section information is needed later, it should be stored in database
344 self._ValueList[0] = self._SectionName
345
346 ## [defines] section parser
347 @ParseMacro
348 def _DefineParser(self):
349 TokenList = GetSplitValueList(self._CurrentLine, TAB_EQUAL_SPLIT, 1)
350 self._ValueList[1:len(TokenList)] = TokenList
351 if not self._ValueList[1]:
352 EdkLogger.error('Parser', FORMAT_INVALID, "No name specified",
353 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
354 if not self._ValueList[2]:
355 EdkLogger.error('Parser', FORMAT_INVALID, "No value specified",
356 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
357
358 self._ValueList = [ReplaceMacro(Value, self._Macros) for Value in self._ValueList]
359 Name, Value = self._ValueList[1], self._ValueList[2]
360 MacroUsed = GlobalData.gMacroRefPattern.findall(Value)
361 if len(MacroUsed) != 0:
362 for Macro in MacroUsed:
363 if Macro in GlobalData.gGlobalDefines:
364 EdkLogger.error("Parser", FORMAT_INVALID, "Global macro %s is not permitted." % (Macro), ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
365 else:
366 EdkLogger.error("Parser", FORMAT_INVALID, "%s not defined" % (Macro), ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
367 # Sometimes, we need to make differences between EDK and EDK2 modules
368 if Name == 'INF_VERSION':
369 if re.match(r'0[xX][\da-f-A-F]{5,8}', Value):
370 self._Version = int(Value, 0)
371 elif re.match(r'\d+\.\d+', Value):
372 ValueList = Value.split('.')
373 Major = '%04o' % int(ValueList[0], 0)
374 Minor = '%04o' % int(ValueList[1], 0)
375 self._Version = int('0x' + Major + Minor, 0)
376 else:
377 EdkLogger.error('Parser', FORMAT_INVALID, "Invalid version number",
378 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
379
380 if type(self) == InfParser and self._Version < 0x00010005:
381 # EDK module allows using defines as macros
382 self._FileLocalMacros[Name] = Value
383 self._Defines[Name] = Value
384
385 ## [BuildOptions] section parser
386 @ParseMacro
387 def _BuildOptionParser(self):
388 self._CurrentLine = CleanString(self._CurrentLine, BuildOption=True)
389 TokenList = GetSplitValueList(self._CurrentLine, TAB_EQUAL_SPLIT, 1)
390 TokenList2 = GetSplitValueList(TokenList[0], ':', 1)
391 if len(TokenList2) == 2:
392 self._ValueList[0] = TokenList2[0] # toolchain family
393 self._ValueList[1] = TokenList2[1] # keys
394 else:
395 self._ValueList[1] = TokenList[0]
396 if len(TokenList) == 2 and type(self) != DscParser: # value
397 self._ValueList[2] = ReplaceMacro(TokenList[1], self._Macros)
398
399 if self._ValueList[1].count('_') != 4:
400 EdkLogger.error(
401 'Parser',
402 FORMAT_INVALID,
403 "'%s' must be in format of <TARGET>_<TOOLCHAIN>_<ARCH>_<TOOL>_FLAGS" % self._ValueList[1],
404 ExtraData=self._CurrentLine,
405 File=self.MetaFile,
406 Line=self._LineIndex + 1
407 )
408 def GetValidExpression(self, TokenSpaceGuid, PcdCName):
409 return self._Table.GetValidExpression(TokenSpaceGuid, PcdCName)
410 def _GetMacros(self):
411 Macros = {}
412 Macros.update(self._FileLocalMacros)
413 Macros.update(self._GetApplicableSectionMacro())
414 return Macros
415
416 ## Construct section Macro dict
417 def _ConstructSectionMacroDict(self, Name, Value):
418 ScopeKey = [(Scope[0], Scope[1],Scope[2]) for Scope in self._Scope]
419 ScopeKey = tuple(ScopeKey)
420 SectionDictKey = self._SectionType, ScopeKey
421 #
422 # DecParser SectionType is a list, will contain more than one item only in Pcd Section
423 # As Pcd section macro usage is not alllowed, so here it is safe
424 #
425 if type(self) == DecParser:
426 SectionDictKey = self._SectionType[0], ScopeKey
427 if SectionDictKey not in self._SectionsMacroDict:
428 self._SectionsMacroDict[SectionDictKey] = {}
429 SectionLocalMacros = self._SectionsMacroDict[SectionDictKey]
430 SectionLocalMacros[Name] = Value
431
432 ## Get section Macros that are applicable to current line, which may come from other sections
433 ## that share the same name while scope is wider
434 def _GetApplicableSectionMacro(self):
435 Macros = {}
436
437 ComComMacroDict = {}
438 ComSpeMacroDict = {}
439 SpeSpeMacroDict = {}
440
441 ActiveSectionType = self._SectionType
442 if type(self) == DecParser:
443 ActiveSectionType = self._SectionType[0]
444
445 for (SectionType, Scope) in self._SectionsMacroDict:
446 if SectionType != ActiveSectionType:
447 continue
448
449 for ActiveScope in self._Scope:
450 Scope0, Scope1 ,Scope2= ActiveScope[0], ActiveScope[1],ActiveScope[2]
451 if(Scope0, Scope1,Scope2) not in Scope:
452 break
453 else:
454 SpeSpeMacroDict.update(self._SectionsMacroDict[(SectionType, Scope)])
455
456 for ActiveScope in self._Scope:
457 Scope0, Scope1,Scope2 = ActiveScope[0], ActiveScope[1],ActiveScope[2]
458 if(Scope0, Scope1,Scope2) not in Scope and (Scope0, "COMMON","COMMON") not in Scope and ("COMMON", Scope1,"COMMON") not in Scope:
459 break
460 else:
461 ComSpeMacroDict.update(self._SectionsMacroDict[(SectionType, Scope)])
462
463 if ("COMMON", "COMMON","COMMON") in Scope:
464 ComComMacroDict.update(self._SectionsMacroDict[(SectionType, Scope)])
465
466 Macros.update(ComComMacroDict)
467 Macros.update(ComSpeMacroDict)
468 Macros.update(SpeSpeMacroDict)
469
470 return Macros
471
472 _SectionParser = {}
473 Finished = property(_GetFinished, _SetFinished)
474 _Macros = property(_GetMacros)
475
476
477 ## INF file parser class
478 #
479 # @param FilePath The path of platform description file
480 # @param FileType The raw data of DSC file
481 # @param Table Database used to retrieve module/package information
482 # @param Macros Macros used for replacement in file
483 #
484 class InfParser(MetaFileParser):
485 # INF file supported data types (one type per section)
486 DataType = {
487 TAB_UNKNOWN.upper() : MODEL_UNKNOWN,
488 TAB_INF_DEFINES.upper() : MODEL_META_DATA_HEADER,
489 TAB_DSC_DEFINES_DEFINE : MODEL_META_DATA_DEFINE,
490 TAB_BUILD_OPTIONS.upper() : MODEL_META_DATA_BUILD_OPTION,
491 TAB_INCLUDES.upper() : MODEL_EFI_INCLUDE,
492 TAB_LIBRARIES.upper() : MODEL_EFI_LIBRARY_INSTANCE,
493 TAB_LIBRARY_CLASSES.upper() : MODEL_EFI_LIBRARY_CLASS,
494 TAB_PACKAGES.upper() : MODEL_META_DATA_PACKAGE,
495 TAB_NMAKE.upper() : MODEL_META_DATA_NMAKE,
496 TAB_INF_FIXED_PCD.upper() : MODEL_PCD_FIXED_AT_BUILD,
497 TAB_INF_PATCH_PCD.upper() : MODEL_PCD_PATCHABLE_IN_MODULE,
498 TAB_INF_FEATURE_PCD.upper() : MODEL_PCD_FEATURE_FLAG,
499 TAB_INF_PCD_EX.upper() : MODEL_PCD_DYNAMIC_EX,
500 TAB_INF_PCD.upper() : MODEL_PCD_DYNAMIC,
501 TAB_SOURCES.upper() : MODEL_EFI_SOURCE_FILE,
502 TAB_GUIDS.upper() : MODEL_EFI_GUID,
503 TAB_PROTOCOLS.upper() : MODEL_EFI_PROTOCOL,
504 TAB_PPIS.upper() : MODEL_EFI_PPI,
505 TAB_DEPEX.upper() : MODEL_EFI_DEPEX,
506 TAB_BINARIES.upper() : MODEL_EFI_BINARY_FILE,
507 TAB_USER_EXTENSIONS.upper() : MODEL_META_DATA_USER_EXTENSION
508 }
509
510 ## Constructor of InfParser
511 #
512 # Initialize object of InfParser
513 #
514 # @param FilePath The path of module description file
515 # @param FileType The raw data of DSC file
516 # @param Arch Default Arch value for filtering sections
517 # @param Table Database used to retrieve module/package information
518 #
519 def __init__(self, FilePath, FileType, Arch, Table):
520 # prevent re-initialization
521 if hasattr(self, "_Table"):
522 return
523 MetaFileParser.__init__(self, FilePath, FileType, Arch, Table)
524 self.PcdsDict = {}
525
526 ## Parser starter
527 def Start(self):
528 NmakeLine = ''
529 Content = ''
530 try:
531 Content = open(str(self.MetaFile), 'r').readlines()
532 except:
533 EdkLogger.error("Parser", FILE_READ_FAILURE, ExtraData=self.MetaFile)
534
535 # parse the file line by line
536 IsFindBlockComment = False
537 GetHeaderComment = False
538 TailComments = []
539 SectionComments = []
540 Comments = []
541
542 for Index in range(0, len(Content)):
543 # skip empty, commented, block commented lines
544 Line, Comment = CleanString2(Content[Index], AllowCppStyleComment=True)
545 NextLine = ''
546 if Index + 1 < len(Content):
547 NextLine, NextComment = CleanString2(Content[Index + 1])
548 if Line == '':
549 if Comment:
550 Comments.append((Comment, Index + 1))
551 elif GetHeaderComment:
552 SectionComments.extend(Comments)
553 Comments = []
554 continue
555 if Line.find(DataType.TAB_COMMENT_EDK_START) > -1:
556 IsFindBlockComment = True
557 continue
558 if Line.find(DataType.TAB_COMMENT_EDK_END) > -1:
559 IsFindBlockComment = False
560 continue
561 if IsFindBlockComment:
562 continue
563
564 self._LineIndex = Index
565 self._CurrentLine = Line
566
567 # section header
568 if Line[0] == TAB_SECTION_START and Line[-1] == TAB_SECTION_END:
569 if not GetHeaderComment:
570 for Cmt, LNo in Comments:
571 self._Store(MODEL_META_DATA_HEADER_COMMENT, Cmt, '', '', 'COMMON',
572 'COMMON', self._Owner[-1], LNo, -1, LNo, -1, 0)
573 GetHeaderComment = True
574 else:
575 TailComments.extend(SectionComments + Comments)
576 Comments = []
577 self._SectionHeaderParser()
578 # Check invalid sections
579 if self._Version < 0x00010005:
580 if self._SectionType in [MODEL_META_DATA_BUILD_OPTION,
581 MODEL_EFI_LIBRARY_CLASS,
582 MODEL_META_DATA_PACKAGE,
583 MODEL_PCD_FIXED_AT_BUILD,
584 MODEL_PCD_PATCHABLE_IN_MODULE,
585 MODEL_PCD_FEATURE_FLAG,
586 MODEL_PCD_DYNAMIC_EX,
587 MODEL_PCD_DYNAMIC,
588 MODEL_EFI_GUID,
589 MODEL_EFI_PROTOCOL,
590 MODEL_EFI_PPI,
591 MODEL_META_DATA_USER_EXTENSION]:
592 EdkLogger.error('Parser', FORMAT_INVALID,
593 "Section [%s] is not allowed in inf file without version" % (self._SectionName),
594 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
595 elif self._SectionType in [MODEL_EFI_INCLUDE,
596 MODEL_EFI_LIBRARY_INSTANCE,
597 MODEL_META_DATA_NMAKE]:
598 EdkLogger.error('Parser', FORMAT_INVALID,
599 "Section [%s] is not allowed in inf file with version 0x%08x" % (self._SectionName, self._Version),
600 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
601 continue
602 # merge two lines specified by '\' in section NMAKE
603 elif self._SectionType == MODEL_META_DATA_NMAKE:
604 if Line[-1] == '\\':
605 if NextLine == '':
606 self._CurrentLine = NmakeLine + Line[0:-1]
607 NmakeLine = ''
608 else:
609 if NextLine[0] == TAB_SECTION_START and NextLine[-1] == TAB_SECTION_END:
610 self._CurrentLine = NmakeLine + Line[0:-1]
611 NmakeLine = ''
612 else:
613 NmakeLine = NmakeLine + ' ' + Line[0:-1]
614 continue
615 else:
616 self._CurrentLine = NmakeLine + Line
617 NmakeLine = ''
618
619 # section content
620 self._ValueList = ['', '', '']
621 # parse current line, result will be put in self._ValueList
622 self._SectionParser[self._SectionType](self)
623 if self._ValueList == None or self._ItemType == MODEL_META_DATA_DEFINE:
624 self._ItemType = -1
625 Comments = []
626 continue
627 if Comment:
628 Comments.append((Comment, Index + 1))
629 if GlobalData.gOptions and GlobalData.gOptions.CheckUsage:
630 CheckInfComment(self._SectionType, Comments, str(self.MetaFile), Index + 1, self._ValueList)
631 #
632 # Model, Value1, Value2, Value3, Arch, Platform, BelongsToItem=-1,
633 # LineBegin=-1, ColumnBegin=-1, LineEnd=-1, ColumnEnd=-1, Enabled=-1
634 #
635 for Arch, Platform,_ in self._Scope:
636 LastItem = self._Store(self._SectionType,
637 self._ValueList[0],
638 self._ValueList[1],
639 self._ValueList[2],
640 Arch,
641 Platform,
642 self._Owner[-1],
643 self._LineIndex + 1,
644 - 1,
645 self._LineIndex + 1,
646 - 1,
647 0
648 )
649 for Comment, LineNo in Comments:
650 self._Store(MODEL_META_DATA_COMMENT, Comment, '', '', Arch, Platform,
651 LastItem, LineNo, -1, LineNo, -1, 0)
652 Comments = []
653 SectionComments = []
654 TailComments.extend(SectionComments + Comments)
655 if IsFindBlockComment:
656 EdkLogger.error("Parser", FORMAT_INVALID, "Open block comments (starting with /*) are expected to end with */",
657 File=self.MetaFile)
658
659 # If there are tail comments in INF file, save to database whatever the comments are
660 for Comment in TailComments:
661 self._Store(MODEL_META_DATA_TAIL_COMMENT, Comment[0], '', '', 'COMMON',
662 'COMMON', self._Owner[-1], -1, -1, -1, -1, 0)
663 self._Done()
664
665 ## Data parser for the format in which there's path
666 #
667 # Only path can have macro used. So we need to replace them before use.
668 #
669 def _IncludeParser(self):
670 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
671 self._ValueList[0:len(TokenList)] = TokenList
672 Macros = self._Macros
673 if Macros:
674 for Index in range(0, len(self._ValueList)):
675 Value = self._ValueList[Index]
676 if not Value:
677 continue
678
679 if Value.upper().find('$(EFI_SOURCE)\Edk'.upper()) > -1 or Value.upper().find('$(EFI_SOURCE)/Edk'.upper()) > -1:
680 Value = '$(EDK_SOURCE)' + Value[17:]
681 if Value.find('$(EFI_SOURCE)') > -1 or Value.find('$(EDK_SOURCE)') > -1:
682 pass
683 elif Value.startswith('.'):
684 pass
685 elif Value.startswith('$('):
686 pass
687 else:
688 Value = '$(EFI_SOURCE)/' + Value
689
690 self._ValueList[Index] = ReplaceMacro(Value, Macros)
691
692 ## Parse [Sources] section
693 #
694 # Only path can have macro used. So we need to replace them before use.
695 #
696 @ParseMacro
697 def _SourceFileParser(self):
698 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
699 self._ValueList[0:len(TokenList)] = TokenList
700 Macros = self._Macros
701 # For Acpi tables, remove macro like ' TABLE_NAME=Sata1'
702 if 'COMPONENT_TYPE' in Macros:
703 if self._Defines['COMPONENT_TYPE'].upper() == 'ACPITABLE':
704 self._ValueList[0] = GetSplitValueList(self._ValueList[0], ' ', 1)[0]
705 if self._Defines['BASE_NAME'] == 'Microcode':
706 pass
707 self._ValueList = [ReplaceMacro(Value, Macros) for Value in self._ValueList]
708
709 ## Parse [Binaries] section
710 #
711 # Only path can have macro used. So we need to replace them before use.
712 #
713 @ParseMacro
714 def _BinaryFileParser(self):
715 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT, 2)
716 if len(TokenList) < 2:
717 EdkLogger.error('Parser', FORMAT_INVALID, "No file type or path specified",
718 ExtraData=self._CurrentLine + " (<FileType> | <FilePath> [| <Target>])",
719 File=self.MetaFile, Line=self._LineIndex + 1)
720 if not TokenList[0]:
721 EdkLogger.error('Parser', FORMAT_INVALID, "No file type specified",
722 ExtraData=self._CurrentLine + " (<FileType> | <FilePath> [| <Target>])",
723 File=self.MetaFile, Line=self._LineIndex + 1)
724 if not TokenList[1]:
725 EdkLogger.error('Parser', FORMAT_INVALID, "No file path specified",
726 ExtraData=self._CurrentLine + " (<FileType> | <FilePath> [| <Target>])",
727 File=self.MetaFile, Line=self._LineIndex + 1)
728 self._ValueList[0:len(TokenList)] = TokenList
729 self._ValueList[1] = ReplaceMacro(self._ValueList[1], self._Macros)
730
731 ## [nmake] section parser (Edk.x style only)
732 def _NmakeParser(self):
733 TokenList = GetSplitValueList(self._CurrentLine, TAB_EQUAL_SPLIT, 1)
734 self._ValueList[0:len(TokenList)] = TokenList
735 # remove macros
736 self._ValueList[1] = ReplaceMacro(self._ValueList[1], self._Macros)
737 # remove self-reference in macro setting
738 #self._ValueList[1] = ReplaceMacro(self._ValueList[1], {self._ValueList[0]:''})
739
740 ## [FixedPcd], [FeaturePcd], [PatchPcd], [Pcd] and [PcdEx] sections parser
741 @ParseMacro
742 def _PcdParser(self):
743 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT, 1)
744 ValueList = GetSplitValueList(TokenList[0], TAB_SPLIT)
745 if len(ValueList) != 2:
746 EdkLogger.error('Parser', FORMAT_INVALID, "Illegal token space GUID and PCD name format",
747 ExtraData=self._CurrentLine + " (<TokenSpaceGuidCName>.<PcdCName>)",
748 File=self.MetaFile, Line=self._LineIndex + 1)
749 self._ValueList[0:1] = ValueList
750 if len(TokenList) > 1:
751 self._ValueList[2] = TokenList[1]
752 if self._ValueList[0] == '' or self._ValueList[1] == '':
753 EdkLogger.error('Parser', FORMAT_INVALID, "No token space GUID or PCD name specified",
754 ExtraData=self._CurrentLine + " (<TokenSpaceGuidCName>.<PcdCName>)",
755 File=self.MetaFile, Line=self._LineIndex + 1)
756
757 # if value are 'True', 'true', 'TRUE' or 'False', 'false', 'FALSE', replace with integer 1 or 0.
758 if self._ValueList[2] != '':
759 InfPcdValueList = GetSplitValueList(TokenList[1], TAB_VALUE_SPLIT, 1)
760 if InfPcdValueList[0] in ['True', 'true', 'TRUE']:
761 self._ValueList[2] = TokenList[1].replace(InfPcdValueList[0], '1', 1);
762 elif InfPcdValueList[0] in ['False', 'false', 'FALSE']:
763 self._ValueList[2] = TokenList[1].replace(InfPcdValueList[0], '0', 1);
764 if (self._ValueList[0], self._ValueList[1]) not in self.PcdsDict:
765 self.PcdsDict[self._ValueList[0], self._ValueList[1]] = self._SectionType
766 elif self.PcdsDict[self._ValueList[0], self._ValueList[1]] != self._SectionType:
767 EdkLogger.error('Parser', FORMAT_INVALID, "It is not permissible to list a specified PCD in different PCD type sections.",
768 ExtraData=self._CurrentLine + " (<TokenSpaceGuidCName>.<PcdCName>)",
769 File=self.MetaFile, Line=self._LineIndex + 1)
770
771 ## [depex] section parser
772 @ParseMacro
773 def _DepexParser(self):
774 self._ValueList[0:1] = [self._CurrentLine]
775
776 _SectionParser = {
777 MODEL_UNKNOWN : MetaFileParser._Skip,
778 MODEL_META_DATA_HEADER : MetaFileParser._DefineParser,
779 MODEL_META_DATA_BUILD_OPTION : MetaFileParser._BuildOptionParser,
780 MODEL_EFI_INCLUDE : _IncludeParser, # for Edk.x modules
781 MODEL_EFI_LIBRARY_INSTANCE : MetaFileParser._CommonParser, # for Edk.x modules
782 MODEL_EFI_LIBRARY_CLASS : MetaFileParser._PathParser,
783 MODEL_META_DATA_PACKAGE : MetaFileParser._PathParser,
784 MODEL_META_DATA_NMAKE : _NmakeParser, # for Edk.x modules
785 MODEL_PCD_FIXED_AT_BUILD : _PcdParser,
786 MODEL_PCD_PATCHABLE_IN_MODULE : _PcdParser,
787 MODEL_PCD_FEATURE_FLAG : _PcdParser,
788 MODEL_PCD_DYNAMIC_EX : _PcdParser,
789 MODEL_PCD_DYNAMIC : _PcdParser,
790 MODEL_EFI_SOURCE_FILE : _SourceFileParser,
791 MODEL_EFI_GUID : MetaFileParser._CommonParser,
792 MODEL_EFI_PROTOCOL : MetaFileParser._CommonParser,
793 MODEL_EFI_PPI : MetaFileParser._CommonParser,
794 MODEL_EFI_DEPEX : _DepexParser,
795 MODEL_EFI_BINARY_FILE : _BinaryFileParser,
796 MODEL_META_DATA_USER_EXTENSION : MetaFileParser._SkipUserExtension,
797 }
798
799 ## DSC file parser class
800 #
801 # @param FilePath The path of platform description file
802 # @param FileType The raw data of DSC file
803 # @param Table Database used to retrieve module/package information
804 # @param Macros Macros used for replacement in file
805 # @param Owner Owner ID (for sub-section parsing)
806 # @param From ID from which the data comes (for !INCLUDE directive)
807 #
808 class DscParser(MetaFileParser):
809 # DSC file supported data types (one type per section)
810 DataType = {
811 TAB_SKUIDS.upper() : MODEL_EFI_SKU_ID,
812 TAB_DEFAULT_STORES.upper() : MODEL_EFI_DEFAULT_STORES,
813 TAB_LIBRARIES.upper() : MODEL_EFI_LIBRARY_INSTANCE,
814 TAB_LIBRARY_CLASSES.upper() : MODEL_EFI_LIBRARY_CLASS,
815 TAB_BUILD_OPTIONS.upper() : MODEL_META_DATA_BUILD_OPTION,
816 TAB_PCDS_FIXED_AT_BUILD_NULL.upper() : MODEL_PCD_FIXED_AT_BUILD,
817 TAB_PCDS_PATCHABLE_IN_MODULE_NULL.upper() : MODEL_PCD_PATCHABLE_IN_MODULE,
818 TAB_PCDS_FEATURE_FLAG_NULL.upper() : MODEL_PCD_FEATURE_FLAG,
819 TAB_PCDS_DYNAMIC_DEFAULT_NULL.upper() : MODEL_PCD_DYNAMIC_DEFAULT,
820 TAB_PCDS_DYNAMIC_HII_NULL.upper() : MODEL_PCD_DYNAMIC_HII,
821 TAB_PCDS_DYNAMIC_VPD_NULL.upper() : MODEL_PCD_DYNAMIC_VPD,
822 TAB_PCDS_DYNAMIC_EX_DEFAULT_NULL.upper() : MODEL_PCD_DYNAMIC_EX_DEFAULT,
823 TAB_PCDS_DYNAMIC_EX_HII_NULL.upper() : MODEL_PCD_DYNAMIC_EX_HII,
824 TAB_PCDS_DYNAMIC_EX_VPD_NULL.upper() : MODEL_PCD_DYNAMIC_EX_VPD,
825 TAB_COMPONENTS.upper() : MODEL_META_DATA_COMPONENT,
826 TAB_COMPONENTS_SOURCE_OVERRIDE_PATH.upper() : MODEL_META_DATA_COMPONENT_SOURCE_OVERRIDE_PATH,
827 TAB_DSC_DEFINES.upper() : MODEL_META_DATA_HEADER,
828 TAB_DSC_DEFINES_DEFINE : MODEL_META_DATA_DEFINE,
829 TAB_DSC_DEFINES_EDKGLOBAL : MODEL_META_DATA_GLOBAL_DEFINE,
830 TAB_INCLUDE.upper() : MODEL_META_DATA_INCLUDE,
831 TAB_IF.upper() : MODEL_META_DATA_CONDITIONAL_STATEMENT_IF,
832 TAB_IF_DEF.upper() : MODEL_META_DATA_CONDITIONAL_STATEMENT_IFDEF,
833 TAB_IF_N_DEF.upper() : MODEL_META_DATA_CONDITIONAL_STATEMENT_IFNDEF,
834 TAB_ELSE_IF.upper() : MODEL_META_DATA_CONDITIONAL_STATEMENT_ELSEIF,
835 TAB_ELSE.upper() : MODEL_META_DATA_CONDITIONAL_STATEMENT_ELSE,
836 TAB_END_IF.upper() : MODEL_META_DATA_CONDITIONAL_STATEMENT_ENDIF,
837 TAB_USER_EXTENSIONS.upper() : MODEL_META_DATA_USER_EXTENSION,
838 }
839
840 # Valid names in define section
841 DefineKeywords = [
842 "DSC_SPECIFICATION",
843 "PLATFORM_NAME",
844 "PLATFORM_GUID",
845 "PLATFORM_VERSION",
846 "SKUID_IDENTIFIER",
847 "PCD_INFO_GENERATION",
848 "PCD_VAR_CHECK_GENERATION",
849 "SUPPORTED_ARCHITECTURES",
850 "BUILD_TARGETS",
851 "OUTPUT_DIRECTORY",
852 "FLASH_DEFINITION",
853 "BUILD_NUMBER",
854 "RFC_LANGUAGES",
855 "ISO_LANGUAGES",
856 "TIME_STAMP_FILE",
857 "VPD_TOOL_GUID",
858 "FIX_LOAD_TOP_MEMORY_ADDRESS",
859 "PREBUILD",
860 "POSTBUILD"
861 ]
862
863 SubSectionDefineKeywords = [
864 "FILE_GUID"
865 ]
866
867 SymbolPattern = ValueExpression.SymbolPattern
868
869 IncludedFiles = set()
870
871 ## Constructor of DscParser
872 #
873 # Initialize object of DscParser
874 #
875 # @param FilePath The path of platform description file
876 # @param FileType The raw data of DSC file
877 # @param Arch Default Arch value for filtering sections
878 # @param Table Database used to retrieve module/package information
879 # @param Owner Owner ID (for sub-section parsing)
880 # @param From ID from which the data comes (for !INCLUDE directive)
881 #
882 def __init__(self, FilePath, FileType, Arch, Table, Owner= -1, From= -1):
883 # prevent re-initialization
884 if hasattr(self, "_Table"):
885 return
886 MetaFileParser.__init__(self, FilePath, FileType, Arch, Table, Owner, From)
887 self._Version = 0x00010005 # Only EDK2 dsc file is supported
888 # to store conditional directive evaluation result
889 self._DirectiveStack = []
890 self._DirectiveEvalStack = []
891 self._Enabled = 1
892
893 #
894 # Specify whether current line is in uncertain condition
895 #
896 self._InDirective = -1
897
898 # Final valid replacable symbols
899 self._Symbols = {}
900 #
901 # Map the ID between the original table and new table to track
902 # the owner item
903 #
904 self._IdMapping = {-1:-1}
905
906 ## Parser starter
907 def Start(self):
908 Content = ''
909 try:
910 Content = open(str(self.MetaFile), 'r').readlines()
911 except:
912 EdkLogger.error("Parser", FILE_READ_FAILURE, ExtraData=self.MetaFile)
913
914 OwnerId = {}
915 for Index in range(0, len(Content)):
916 Line = CleanString(Content[Index])
917 # skip empty line
918 if Line == '':
919 continue
920
921 self._CurrentLine = Line
922 self._LineIndex = Index
923 if self._InSubsection and self._Owner[-1] == -1:
924 self._Owner.append(self._LastItem)
925
926 # section header
927 if Line[0] == TAB_SECTION_START and Line[-1] == TAB_SECTION_END:
928 self._SectionType = MODEL_META_DATA_SECTION_HEADER
929 # subsection ending
930 elif Line[0] == '}' and self._InSubsection:
931 self._InSubsection = False
932 self._SubsectionType = MODEL_UNKNOWN
933 self._SubsectionName = ''
934 self._Owner[-1] = -1
935 OwnerId = {}
936 continue
937 # subsection header
938 elif Line[0] == TAB_OPTION_START and Line[-1] == TAB_OPTION_END:
939 self._SubsectionType = MODEL_META_DATA_SUBSECTION_HEADER
940 # directive line
941 elif Line[0] == '!':
942 self._DirectiveParser()
943 continue
944 if Line[0] == TAB_OPTION_START and not self._InSubsection:
945 EdkLogger.error("Parser", FILE_READ_FAILURE, "Missing the '{' before %s in Line %s" % (Line, Index+1),ExtraData=self.MetaFile)
946
947 if self._InSubsection:
948 SectionType = self._SubsectionType
949 else:
950 SectionType = self._SectionType
951 self._ItemType = SectionType
952
953 self._ValueList = ['', '', '']
954 self._SectionParser[SectionType](self)
955 if self._ValueList == None:
956 continue
957 #
958 # Model, Value1, Value2, Value3, Arch, ModuleType, BelongsToItem=-1, BelongsToFile=-1,
959 # LineBegin=-1, ColumnBegin=-1, LineEnd=-1, ColumnEnd=-1, Enabled=-1
960 #
961 for Arch, ModuleType, DefaultStore in self._Scope:
962 Owner = self._Owner[-1]
963 if self._SubsectionType != MODEL_UNKNOWN:
964 Owner = OwnerId[Arch]
965 self._LastItem = self._Store(
966 self._ItemType,
967 self._ValueList[0],
968 self._ValueList[1],
969 self._ValueList[2],
970 Arch,
971 ModuleType,
972 DefaultStore,
973 Owner,
974 self._From,
975 self._LineIndex + 1,
976 - 1,
977 self._LineIndex + 1,
978 - 1,
979 self._Enabled
980 )
981 if self._SubsectionType == MODEL_UNKNOWN and self._InSubsection:
982 OwnerId[Arch] = self._LastItem
983
984 if self._DirectiveStack:
985 Type, Line, Text = self._DirectiveStack[-1]
986 EdkLogger.error('Parser', FORMAT_INVALID, "No matching '!endif' found",
987 ExtraData=Text, File=self.MetaFile, Line=Line)
988 self._Done()
989
990 ## <subsection_header> parser
991 def _SubsectionHeaderParser(self):
992 self._SubsectionName = self._CurrentLine[1:-1].upper()
993 if self._SubsectionName in self.DataType:
994 self._SubsectionType = self.DataType[self._SubsectionName]
995 else:
996 self._SubsectionType = MODEL_UNKNOWN
997 EdkLogger.warn("Parser", "Unrecognized sub-section", File=self.MetaFile,
998 Line=self._LineIndex + 1, ExtraData=self._CurrentLine)
999 self._ValueList[0] = self._SubsectionName
1000
1001 ## Directive statement parser
1002 def _DirectiveParser(self):
1003 self._ValueList = ['', '', '']
1004 TokenList = GetSplitValueList(self._CurrentLine, ' ', 1)
1005 self._ValueList[0:len(TokenList)] = TokenList
1006
1007 # Syntax check
1008 DirectiveName = self._ValueList[0].upper()
1009 if DirectiveName not in self.DataType:
1010 EdkLogger.error("Parser", FORMAT_INVALID, "Unknown directive [%s]" % DirectiveName,
1011 File=self.MetaFile, Line=self._LineIndex + 1)
1012
1013 if DirectiveName in ['!IF', '!IFDEF', '!IFNDEF']:
1014 self._InDirective += 1
1015
1016 if DirectiveName in ['!ENDIF']:
1017 self._InDirective -= 1
1018
1019 if DirectiveName in ['!IF', '!IFDEF', '!INCLUDE', '!IFNDEF', '!ELSEIF'] and self._ValueList[1] == '':
1020 EdkLogger.error("Parser", FORMAT_INVALID, "Missing expression",
1021 File=self.MetaFile, Line=self._LineIndex + 1,
1022 ExtraData=self._CurrentLine)
1023
1024 ItemType = self.DataType[DirectiveName]
1025 Scope = [['COMMON', 'COMMON','COMMON']]
1026 if ItemType == MODEL_META_DATA_INCLUDE:
1027 Scope = self._Scope
1028 if ItemType == MODEL_META_DATA_CONDITIONAL_STATEMENT_ENDIF:
1029 # Remove all directives between !if and !endif, including themselves
1030 while self._DirectiveStack:
1031 # Remove any !else or !elseif
1032 DirectiveInfo = self._DirectiveStack.pop()
1033 if DirectiveInfo[0] in [MODEL_META_DATA_CONDITIONAL_STATEMENT_IF,
1034 MODEL_META_DATA_CONDITIONAL_STATEMENT_IFDEF,
1035 MODEL_META_DATA_CONDITIONAL_STATEMENT_IFNDEF]:
1036 break
1037 else:
1038 EdkLogger.error("Parser", FORMAT_INVALID, "Redundant '!endif'",
1039 File=self.MetaFile, Line=self._LineIndex + 1,
1040 ExtraData=self._CurrentLine)
1041 elif ItemType != MODEL_META_DATA_INCLUDE:
1042 # Break if there's a !else is followed by a !elseif
1043 if ItemType == MODEL_META_DATA_CONDITIONAL_STATEMENT_ELSEIF and \
1044 self._DirectiveStack and \
1045 self._DirectiveStack[-1][0] == MODEL_META_DATA_CONDITIONAL_STATEMENT_ELSE:
1046 EdkLogger.error("Parser", FORMAT_INVALID, "'!elseif' after '!else'",
1047 File=self.MetaFile, Line=self._LineIndex + 1,
1048 ExtraData=self._CurrentLine)
1049 self._DirectiveStack.append((ItemType, self._LineIndex + 1, self._CurrentLine))
1050
1051 #
1052 # Model, Value1, Value2, Value3, Arch, ModuleType, BelongsToItem=-1, BelongsToFile=-1,
1053 # LineBegin=-1, ColumnBegin=-1, LineEnd=-1, ColumnEnd=-1, Enabled=-1
1054 #
1055 for Arch, ModuleType, DefaultStore in Scope:
1056 self._LastItem = self._Store(
1057 ItemType,
1058 self._ValueList[0],
1059 self._ValueList[1],
1060 self._ValueList[2],
1061 Arch,
1062 ModuleType,
1063 DefaultStore,
1064 self._Owner[-1],
1065 self._From,
1066 self._LineIndex + 1,
1067 - 1,
1068 self._LineIndex + 1,
1069 - 1,
1070 0
1071 )
1072
1073 ## [defines] section parser
1074 @ParseMacro
1075 def _DefineParser(self):
1076 TokenList = GetSplitValueList(self._CurrentLine, TAB_EQUAL_SPLIT, 1)
1077 self._ValueList[1:len(TokenList)] = TokenList
1078
1079 # Syntax check
1080 if not self._ValueList[1]:
1081 EdkLogger.error('Parser', FORMAT_INVALID, "No name specified",
1082 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
1083 if not self._ValueList[2]:
1084 EdkLogger.error('Parser', FORMAT_INVALID, "No value specified",
1085 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
1086 if (not self._ValueList[1] in self.DefineKeywords and
1087 (self._InSubsection and self._ValueList[1] not in self.SubSectionDefineKeywords)):
1088 EdkLogger.error('Parser', FORMAT_INVALID,
1089 "Unknown keyword found: %s. "
1090 "If this is a macro you must "
1091 "add it as a DEFINE in the DSC" % self._ValueList[1],
1092 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
1093 if not self._InSubsection:
1094 self._Defines[self._ValueList[1]] = self._ValueList[2]
1095 self._ItemType = self.DataType[TAB_DSC_DEFINES.upper()]
1096
1097 @ParseMacro
1098 def _SkuIdParser(self):
1099 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
1100 if len(TokenList) not in (2,3):
1101 EdkLogger.error('Parser', FORMAT_INVALID, "Correct format is '<Number>|<UiName>[|<UiName>]'",
1102 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
1103 self._ValueList[0:len(TokenList)] = TokenList
1104 @ParseMacro
1105 def _DefaultStoresParser(self):
1106 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
1107 if len(TokenList) != 2:
1108 EdkLogger.error('Parser', FORMAT_INVALID, "Correct format is '<Number>|<UiName>'",
1109 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
1110 self._ValueList[0:len(TokenList)] = TokenList
1111
1112 ## Parse Edk style of library modules
1113 @ParseMacro
1114 def _LibraryInstanceParser(self):
1115 self._ValueList[0] = self._CurrentLine
1116
1117 ## PCD sections parser
1118 #
1119 # [PcdsFixedAtBuild]
1120 # [PcdsPatchableInModule]
1121 # [PcdsFeatureFlag]
1122 # [PcdsDynamicEx
1123 # [PcdsDynamicExDefault]
1124 # [PcdsDynamicExVpd]
1125 # [PcdsDynamicExHii]
1126 # [PcdsDynamic]
1127 # [PcdsDynamicDefault]
1128 # [PcdsDynamicVpd]
1129 # [PcdsDynamicHii]
1130 #
1131 @ParseMacro
1132 def _PcdParser(self):
1133 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT, 1)
1134 self._ValueList[0:1] = GetSplitValueList(TokenList[0], TAB_SPLIT)
1135 PcdNameTockens = GetSplitValueList(TokenList[0], TAB_SPLIT)
1136 if len(PcdNameTockens) == 2:
1137 self._ValueList[0], self._ValueList[1] = PcdNameTockens[0], PcdNameTockens[1]
1138 elif len(PcdNameTockens) == 3:
1139 self._ValueList[0], self._ValueList[1] = ".".join((PcdNameTockens[0], PcdNameTockens[1])), PcdNameTockens[2]
1140 elif len(PcdNameTockens) > 3:
1141 self._ValueList[0], self._ValueList[1] = ".".join((PcdNameTockens[0], PcdNameTockens[1])), ".".join(PcdNameTockens[2:])
1142 if len(TokenList) == 2:
1143 self._ValueList[2] = TokenList[1]
1144 if self._ValueList[0] == '' or self._ValueList[1] == '':
1145 EdkLogger.error('Parser', FORMAT_INVALID, "No token space GUID or PCD name specified",
1146 ExtraData=self._CurrentLine + " (<TokenSpaceGuidCName>.<TokenCName>|<PcdValue>)",
1147 File=self.MetaFile, Line=self._LineIndex + 1)
1148 if self._ValueList[2] == '':
1149 #
1150 # The PCD values are optional for FIXEDATBUILD, PATCHABLEINMODULE, Dynamic/DynamicEx default
1151 #
1152 if self._SectionType in (MODEL_PCD_FIXED_AT_BUILD, MODEL_PCD_PATCHABLE_IN_MODULE, MODEL_PCD_DYNAMIC_DEFAULT, MODEL_PCD_DYNAMIC_EX_DEFAULT):
1153 return
1154 EdkLogger.error('Parser', FORMAT_INVALID, "No PCD value given",
1155 ExtraData=self._CurrentLine + " (<TokenSpaceGuidCName>.<TokenCName>|<PcdValue>)",
1156 File=self.MetaFile, Line=self._LineIndex + 1)
1157
1158 # Validate the datum type of Dynamic Defaul PCD and DynamicEx Default PCD
1159 ValueList = GetSplitValueList(self._ValueList[2])
1160 if len(ValueList) > 1 and ValueList[1] in [TAB_UINT8 , TAB_UINT16, TAB_UINT32 , TAB_UINT64] \
1161 and self._ItemType in [MODEL_PCD_DYNAMIC_DEFAULT, MODEL_PCD_DYNAMIC_EX_DEFAULT]:
1162 EdkLogger.error('Parser', FORMAT_INVALID, "The datum type '%s' of PCD is wrong" % ValueList[1],
1163 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
1164
1165 # Validate the VariableName of DynamicHii and DynamicExHii for PCD Entry must not be an empty string
1166 if self._ItemType in [MODEL_PCD_DYNAMIC_HII, MODEL_PCD_DYNAMIC_EX_HII]:
1167 DscPcdValueList = GetSplitValueList(TokenList[1], TAB_VALUE_SPLIT, 1)
1168 if len(DscPcdValueList[0].replace('L','').replace('"','').strip()) == 0:
1169 EdkLogger.error('Parser', FORMAT_INVALID, "The VariableName field in the HII format PCD entry must not be an empty string",
1170 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
1171
1172 # if value are 'True', 'true', 'TRUE' or 'False', 'false', 'FALSE', replace with integer 1 or 0.
1173 DscPcdValueList = GetSplitValueList(TokenList[1], TAB_VALUE_SPLIT, 1)
1174 if DscPcdValueList[0] in ['True', 'true', 'TRUE']:
1175 self._ValueList[2] = TokenList[1].replace(DscPcdValueList[0], '1', 1);
1176 elif DscPcdValueList[0] in ['False', 'false', 'FALSE']:
1177 self._ValueList[2] = TokenList[1].replace(DscPcdValueList[0], '0', 1);
1178
1179
1180 ## [components] section parser
1181 @ParseMacro
1182 def _ComponentParser(self):
1183 if self._CurrentLine[-1] == '{':
1184 self._ValueList[0] = self._CurrentLine[0:-1].strip()
1185 self._InSubsection = True
1186 else:
1187 self._ValueList[0] = self._CurrentLine
1188
1189 ## [LibraryClasses] section
1190 @ParseMacro
1191 def _LibraryClassParser(self):
1192 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT)
1193 if len(TokenList) < 2:
1194 EdkLogger.error('Parser', FORMAT_INVALID, "No library class or instance specified",
1195 ExtraData=self._CurrentLine + " (<LibraryClassName>|<LibraryInstancePath>)",
1196 File=self.MetaFile, Line=self._LineIndex + 1)
1197 if TokenList[0] == '':
1198 EdkLogger.error('Parser', FORMAT_INVALID, "No library class specified",
1199 ExtraData=self._CurrentLine + " (<LibraryClassName>|<LibraryInstancePath>)",
1200 File=self.MetaFile, Line=self._LineIndex + 1)
1201 if TokenList[1] == '':
1202 EdkLogger.error('Parser', FORMAT_INVALID, "No library instance specified",
1203 ExtraData=self._CurrentLine + " (<LibraryClassName>|<LibraryInstancePath>)",
1204 File=self.MetaFile, Line=self._LineIndex + 1)
1205
1206 self._ValueList[0:len(TokenList)] = TokenList
1207
1208 def _CompponentSourceOverridePathParser(self):
1209 self._ValueList[0] = self._CurrentLine
1210
1211 ## [BuildOptions] section parser
1212 @ParseMacro
1213 def _BuildOptionParser(self):
1214 self._CurrentLine = CleanString(self._CurrentLine, BuildOption=True)
1215 TokenList = GetSplitValueList(self._CurrentLine, TAB_EQUAL_SPLIT, 1)
1216 TokenList2 = GetSplitValueList(TokenList[0], ':', 1)
1217 if len(TokenList2) == 2:
1218 self._ValueList[0] = TokenList2[0] # toolchain family
1219 self._ValueList[1] = TokenList2[1] # keys
1220 else:
1221 self._ValueList[1] = TokenList[0]
1222 if len(TokenList) == 2: # value
1223 self._ValueList[2] = TokenList[1]
1224
1225 if self._ValueList[1].count('_') != 4:
1226 EdkLogger.error(
1227 'Parser',
1228 FORMAT_INVALID,
1229 "'%s' must be in format of <TARGET>_<TOOLCHAIN>_<ARCH>_<TOOL>_FLAGS" % self._ValueList[1],
1230 ExtraData=self._CurrentLine,
1231 File=self.MetaFile,
1232 Line=self._LineIndex + 1
1233 )
1234
1235 ## Override parent's method since we'll do all macro replacements in parser
1236 def _GetMacros(self):
1237 Macros = {}
1238 Macros.update(self._FileLocalMacros)
1239 Macros.update(self._GetApplicableSectionMacro())
1240 Macros.update(GlobalData.gEdkGlobal)
1241 Macros.update(GlobalData.gPlatformDefines)
1242 Macros.update(GlobalData.gCommandLineDefines)
1243 # PCD cannot be referenced in macro definition
1244 if self._ItemType not in [MODEL_META_DATA_DEFINE, MODEL_META_DATA_GLOBAL_DEFINE]:
1245 Macros.update(self._Symbols)
1246 if GlobalData.BuildOptionPcd:
1247 for Item in GlobalData.BuildOptionPcd:
1248 PcdName, TmpValue = Item.split("=")
1249 Macros[PcdName.strip()] = TmpValue
1250 return Macros
1251
1252 def _PostProcess(self):
1253 Processer = {
1254 MODEL_META_DATA_SECTION_HEADER : self.__ProcessSectionHeader,
1255 MODEL_META_DATA_SUBSECTION_HEADER : self.__ProcessSubsectionHeader,
1256 MODEL_META_DATA_HEADER : self.__ProcessDefine,
1257 MODEL_META_DATA_DEFINE : self.__ProcessDefine,
1258 MODEL_META_DATA_GLOBAL_DEFINE : self.__ProcessDefine,
1259 MODEL_META_DATA_INCLUDE : self.__ProcessDirective,
1260 MODEL_META_DATA_CONDITIONAL_STATEMENT_IF : self.__ProcessDirective,
1261 MODEL_META_DATA_CONDITIONAL_STATEMENT_ELSE : self.__ProcessDirective,
1262 MODEL_META_DATA_CONDITIONAL_STATEMENT_IFDEF : self.__ProcessDirective,
1263 MODEL_META_DATA_CONDITIONAL_STATEMENT_IFNDEF : self.__ProcessDirective,
1264 MODEL_META_DATA_CONDITIONAL_STATEMENT_ENDIF : self.__ProcessDirective,
1265 MODEL_META_DATA_CONDITIONAL_STATEMENT_ELSEIF : self.__ProcessDirective,
1266 MODEL_EFI_SKU_ID : self.__ProcessSkuId,
1267 MODEL_EFI_DEFAULT_STORES : self.__ProcessDefaultStores,
1268 MODEL_EFI_LIBRARY_INSTANCE : self.__ProcessLibraryInstance,
1269 MODEL_EFI_LIBRARY_CLASS : self.__ProcessLibraryClass,
1270 MODEL_PCD_FIXED_AT_BUILD : self.__ProcessPcd,
1271 MODEL_PCD_PATCHABLE_IN_MODULE : self.__ProcessPcd,
1272 MODEL_PCD_FEATURE_FLAG : self.__ProcessPcd,
1273 MODEL_PCD_DYNAMIC_DEFAULT : self.__ProcessPcd,
1274 MODEL_PCD_DYNAMIC_HII : self.__ProcessPcd,
1275 MODEL_PCD_DYNAMIC_VPD : self.__ProcessPcd,
1276 MODEL_PCD_DYNAMIC_EX_DEFAULT : self.__ProcessPcd,
1277 MODEL_PCD_DYNAMIC_EX_HII : self.__ProcessPcd,
1278 MODEL_PCD_DYNAMIC_EX_VPD : self.__ProcessPcd,
1279 MODEL_META_DATA_COMPONENT : self.__ProcessComponent,
1280 MODEL_META_DATA_COMPONENT_SOURCE_OVERRIDE_PATH : self.__ProcessSourceOverridePath,
1281 MODEL_META_DATA_BUILD_OPTION : self.__ProcessBuildOption,
1282 MODEL_UNKNOWN : self._Skip,
1283 MODEL_META_DATA_USER_EXTENSION : self._SkipUserExtension,
1284 }
1285
1286 self._Table = MetaFileStorage(self._RawTable.Cur, self.MetaFile, MODEL_FILE_DSC, True)
1287 self._Table.Create()
1288 self._DirectiveStack = []
1289 self._DirectiveEvalStack = []
1290 self._FileWithError = self.MetaFile
1291 self._FileLocalMacros = {}
1292 self._SectionsMacroDict = {}
1293 GlobalData.gPlatformDefines = {}
1294
1295 # Get all macro and PCD which has straitforward value
1296 self.__RetrievePcdValue()
1297 self._Content = self._RawTable.GetAll()
1298 self._ContentIndex = 0
1299 self._InSubsection = False
1300 while self._ContentIndex < len(self._Content) :
1301 Id, self._ItemType, V1, V2, V3, S1, S2, S3,Owner, self._From, \
1302 LineStart, ColStart, LineEnd, ColEnd, Enabled = self._Content[self._ContentIndex]
1303
1304 if self._From < 0:
1305 self._FileWithError = self.MetaFile
1306
1307 self._ContentIndex += 1
1308
1309 self._Scope = [[S1, S2, S3]]
1310 #
1311 # For !include directive, handle it specially,
1312 # merge arch and module type in case of duplicate items
1313 #
1314 while self._ItemType == MODEL_META_DATA_INCLUDE:
1315 if self._ContentIndex >= len(self._Content):
1316 break
1317 Record = self._Content[self._ContentIndex]
1318 if LineStart == Record[10] and LineEnd == Record[12]:
1319 if [Record[5], Record[6],Record[7]] not in self._Scope:
1320 self._Scope.append([Record[5], Record[6],Record[7]])
1321 self._ContentIndex += 1
1322 else:
1323 break
1324
1325 self._LineIndex = LineStart - 1
1326 self._ValueList = [V1, V2, V3]
1327
1328 if Owner > 0 and Owner in self._IdMapping:
1329 self._InSubsection = True
1330 else:
1331 self._InSubsection = False
1332 try:
1333 Processer[self._ItemType]()
1334 except EvaluationException, Excpt:
1335 #
1336 # Only catch expression evaluation error here. We need to report
1337 # the precise number of line on which the error occurred
1338 #
1339 if hasattr(Excpt, 'Pcd'):
1340 if Excpt.Pcd in GlobalData.gPlatformOtherPcds:
1341 Info = GlobalData.gPlatformOtherPcds[Excpt.Pcd]
1342 EdkLogger.error('Parser', FORMAT_INVALID, "Cannot use this PCD (%s) in an expression as"
1343 " it must be defined in a [PcdsFixedAtBuild] or [PcdsFeatureFlag] section"
1344 " of the DSC file, and it is currently defined in this section:"
1345 " %s, line #: %d." % (Excpt.Pcd, Info[0], Info[1]),
1346 File=self._FileWithError, ExtraData=' '.join(self._ValueList),
1347 Line=self._LineIndex + 1)
1348 else:
1349 EdkLogger.error('Parser', FORMAT_INVALID, "PCD (%s) is not defined in DSC file" % Excpt.Pcd,
1350 File=self._FileWithError, ExtraData=' '.join(self._ValueList),
1351 Line=self._LineIndex + 1)
1352 else:
1353 EdkLogger.error('Parser', FORMAT_INVALID, "Invalid expression: %s" % str(Excpt),
1354 File=self._FileWithError, ExtraData=' '.join(self._ValueList),
1355 Line=self._LineIndex + 1)
1356 except MacroException, Excpt:
1357 EdkLogger.error('Parser', FORMAT_INVALID, str(Excpt),
1358 File=self._FileWithError, ExtraData=' '.join(self._ValueList),
1359 Line=self._LineIndex + 1)
1360
1361 if self._ValueList == None:
1362 continue
1363
1364 NewOwner = self._IdMapping.get(Owner, -1)
1365 self._Enabled = int((not self._DirectiveEvalStack) or (False not in self._DirectiveEvalStack))
1366 self._LastItem = self._Store(
1367 self._ItemType,
1368 self._ValueList[0],
1369 self._ValueList[1],
1370 self._ValueList[2],
1371 S1,
1372 S2,
1373 S3,
1374 NewOwner,
1375 self._From,
1376 self._LineIndex + 1,
1377 - 1,
1378 self._LineIndex + 1,
1379 - 1,
1380 self._Enabled
1381 )
1382 self._IdMapping[Id] = self._LastItem
1383
1384 GlobalData.gPlatformDefines.update(self._FileLocalMacros)
1385 self._PostProcessed = True
1386 self._Content = None
1387
1388 def __ProcessSectionHeader(self):
1389 self._SectionName = self._ValueList[0]
1390 if self._SectionName in self.DataType:
1391 self._SectionType = self.DataType[self._SectionName]
1392 else:
1393 self._SectionType = MODEL_UNKNOWN
1394
1395 def __ProcessSubsectionHeader(self):
1396 self._SubsectionName = self._ValueList[0]
1397 if self._SubsectionName in self.DataType:
1398 self._SubsectionType = self.DataType[self._SubsectionName]
1399 else:
1400 self._SubsectionType = MODEL_UNKNOWN
1401
1402 def __RetrievePcdValue(self):
1403 Content = open(str(self.MetaFile), 'r').readlines()
1404 GlobalData.gPlatformOtherPcds['DSCFILE'] = str(self.MetaFile)
1405 for PcdType in (MODEL_PCD_PATCHABLE_IN_MODULE, MODEL_PCD_DYNAMIC_DEFAULT, MODEL_PCD_DYNAMIC_HII,
1406 MODEL_PCD_DYNAMIC_VPD, MODEL_PCD_DYNAMIC_EX_DEFAULT, MODEL_PCD_DYNAMIC_EX_HII,
1407 MODEL_PCD_DYNAMIC_EX_VPD):
1408 Records = self._RawTable.Query(PcdType, BelongsToItem= -1.0)
1409 for TokenSpaceGuid, PcdName, Value, Dummy2, Dummy3, Dummy4,ID, Line in Records:
1410 Name = TokenSpaceGuid + '.' + PcdName
1411 if Name not in GlobalData.gPlatformOtherPcds:
1412 PcdLine = Line
1413 while not Content[Line - 1].lstrip().startswith(TAB_SECTION_START):
1414 Line -= 1
1415 GlobalData.gPlatformOtherPcds[Name] = (CleanString(Content[Line - 1]), PcdLine, PcdType)
1416
1417 def __ProcessDefine(self):
1418 if not self._Enabled:
1419 return
1420
1421 Type, Name, Value = self._ValueList
1422 Value = ReplaceMacro(Value, self._Macros, False)
1423 #
1424 # If it is <Defines>, return
1425 #
1426 if self._InSubsection:
1427 self._ValueList = [Type, Name, Value]
1428 return
1429
1430 if self._ItemType == MODEL_META_DATA_DEFINE:
1431 if self._SectionType == MODEL_META_DATA_HEADER:
1432 self._FileLocalMacros[Name] = Value
1433 else:
1434 self._ConstructSectionMacroDict(Name, Value)
1435 elif self._ItemType == MODEL_META_DATA_GLOBAL_DEFINE:
1436 GlobalData.gEdkGlobal[Name] = Value
1437
1438 #
1439 # Keyword in [Defines] section can be used as Macros
1440 #
1441 if (self._ItemType == MODEL_META_DATA_HEADER) and (self._SectionType == MODEL_META_DATA_HEADER):
1442 self._FileLocalMacros[Name] = Value
1443
1444 self._ValueList = [Type, Name, Value]
1445
1446 def __ProcessDirective(self):
1447 Result = None
1448 if self._ItemType in [MODEL_META_DATA_CONDITIONAL_STATEMENT_IF,
1449 MODEL_META_DATA_CONDITIONAL_STATEMENT_ELSEIF]:
1450 Macros = self._Macros
1451 Macros.update(GlobalData.gGlobalDefines)
1452 try:
1453 Result = ValueExpression(self._ValueList[1], Macros)()
1454 except SymbolNotFound, Exc:
1455 EdkLogger.debug(EdkLogger.DEBUG_5, str(Exc), self._ValueList[1])
1456 Result = False
1457 except WrnExpression, Excpt:
1458 #
1459 # Catch expression evaluation warning here. We need to report
1460 # the precise number of line and return the evaluation result
1461 #
1462 EdkLogger.warn('Parser', "Suspicious expression: %s" % str(Excpt),
1463 File=self._FileWithError, ExtraData=' '.join(self._ValueList),
1464 Line=self._LineIndex + 1)
1465 Result = Excpt.result
1466
1467 if self._ItemType in [MODEL_META_DATA_CONDITIONAL_STATEMENT_IF,
1468 MODEL_META_DATA_CONDITIONAL_STATEMENT_IFDEF,
1469 MODEL_META_DATA_CONDITIONAL_STATEMENT_IFNDEF]:
1470 self._DirectiveStack.append(self._ItemType)
1471 if self._ItemType == MODEL_META_DATA_CONDITIONAL_STATEMENT_IF:
1472 Result = bool(Result)
1473 else:
1474 Macro = self._ValueList[1]
1475 Macro = Macro[2:-1] if (Macro.startswith("$(") and Macro.endswith(")")) else Macro
1476 Result = Macro in self._Macros
1477 if self._ItemType == MODEL_META_DATA_CONDITIONAL_STATEMENT_IFNDEF:
1478 Result = not Result
1479 self._DirectiveEvalStack.append(Result)
1480 elif self._ItemType == MODEL_META_DATA_CONDITIONAL_STATEMENT_ELSEIF:
1481 self._DirectiveStack.append(self._ItemType)
1482 self._DirectiveEvalStack[-1] = not self._DirectiveEvalStack[-1]
1483 self._DirectiveEvalStack.append(bool(Result))
1484 elif self._ItemType == MODEL_META_DATA_CONDITIONAL_STATEMENT_ELSE:
1485 self._DirectiveStack.append(self._ItemType)
1486 self._DirectiveEvalStack[-1] = not self._DirectiveEvalStack[-1]
1487 self._DirectiveEvalStack.append(True)
1488 elif self._ItemType == MODEL_META_DATA_CONDITIONAL_STATEMENT_ENDIF:
1489 # Back to the nearest !if/!ifdef/!ifndef
1490 while self._DirectiveStack:
1491 self._DirectiveEvalStack.pop()
1492 Directive = self._DirectiveStack.pop()
1493 if Directive in [MODEL_META_DATA_CONDITIONAL_STATEMENT_IF,
1494 MODEL_META_DATA_CONDITIONAL_STATEMENT_IFDEF,
1495 MODEL_META_DATA_CONDITIONAL_STATEMENT_IFNDEF]:
1496 break
1497 elif self._ItemType == MODEL_META_DATA_INCLUDE:
1498 # The included file must be relative to workspace or same directory as DSC file
1499 __IncludeMacros = {}
1500 #
1501 # Allow using system environment variables in path after !include
1502 #
1503 __IncludeMacros['WORKSPACE'] = GlobalData.gGlobalDefines['WORKSPACE']
1504 if "ECP_SOURCE" in GlobalData.gGlobalDefines.keys():
1505 __IncludeMacros['ECP_SOURCE'] = GlobalData.gGlobalDefines['ECP_SOURCE']
1506 #
1507 # During GenFds phase call DSC parser, will go into this branch.
1508 #
1509 elif "ECP_SOURCE" in GlobalData.gCommandLineDefines.keys():
1510 __IncludeMacros['ECP_SOURCE'] = GlobalData.gCommandLineDefines['ECP_SOURCE']
1511
1512 __IncludeMacros['EFI_SOURCE'] = GlobalData.gGlobalDefines['EFI_SOURCE']
1513 __IncludeMacros['EDK_SOURCE'] = GlobalData.gGlobalDefines['EDK_SOURCE']
1514 #
1515 # Allow using MACROs comes from [Defines] section to keep compatible.
1516 #
1517 __IncludeMacros.update(self._Macros)
1518
1519 IncludedFile = NormPath(ReplaceMacro(self._ValueList[1], __IncludeMacros, RaiseError=True))
1520 #
1521 # First search the include file under the same directory as DSC file
1522 #
1523 IncludedFile1 = PathClass(IncludedFile, self.MetaFile.Dir)
1524 ErrorCode, ErrorInfo1 = IncludedFile1.Validate()
1525 if ErrorCode != 0:
1526 #
1527 # Also search file under the WORKSPACE directory
1528 #
1529 IncludedFile1 = PathClass(IncludedFile, GlobalData.gWorkspace)
1530 ErrorCode, ErrorInfo2 = IncludedFile1.Validate()
1531 if ErrorCode != 0:
1532 EdkLogger.error('parser', ErrorCode, File=self._FileWithError,
1533 Line=self._LineIndex + 1, ExtraData=ErrorInfo1 + "\n" + ErrorInfo2)
1534
1535 self._FileWithError = IncludedFile1
1536
1537 IncludedFileTable = MetaFileStorage(self._Table.Cur, IncludedFile1, MODEL_FILE_DSC, False)
1538 Owner = self._Content[self._ContentIndex - 1][0]
1539 Parser = DscParser(IncludedFile1, self._FileType, self._Arch, IncludedFileTable,
1540 Owner=Owner, From=Owner)
1541
1542 self.IncludedFiles.add (IncludedFile1)
1543
1544 # Does not allow lower level included file to include upper level included file
1545 if Parser._From != Owner and int(Owner) > int (Parser._From):
1546 EdkLogger.error('parser', FILE_ALREADY_EXIST, File=self._FileWithError,
1547 Line=self._LineIndex + 1, ExtraData="{0} is already included at a higher level.".format(IncludedFile1))
1548
1549
1550 # set the parser status with current status
1551 Parser._SectionName = self._SectionName
1552 Parser._SectionType = self._SectionType
1553 Parser._Scope = self._Scope
1554 Parser._Enabled = self._Enabled
1555 # Parse the included file
1556 Parser.Start()
1557
1558 # update current status with sub-parser's status
1559 self._SectionName = Parser._SectionName
1560 self._SectionType = Parser._SectionType
1561 self._Scope = Parser._Scope
1562 self._Enabled = Parser._Enabled
1563
1564 # Insert all records in the table for the included file into dsc file table
1565 Records = IncludedFileTable.GetAll()
1566 if Records:
1567 self._Content[self._ContentIndex:self._ContentIndex] = Records
1568 self._Content.pop(self._ContentIndex - 1)
1569 self._ValueList = None
1570 self._ContentIndex -= 1
1571
1572 def __ProcessSkuId(self):
1573 self._ValueList = [ReplaceMacro(Value, self._Macros, RaiseError=True)
1574 for Value in self._ValueList]
1575 def __ProcessDefaultStores(self):
1576 self._ValueList = [ReplaceMacro(Value, self._Macros, RaiseError=True)
1577 for Value in self._ValueList]
1578
1579 def __ProcessLibraryInstance(self):
1580 self._ValueList = [ReplaceMacro(Value, self._Macros) for Value in self._ValueList]
1581
1582 def __ProcessLibraryClass(self):
1583 self._ValueList[1] = ReplaceMacro(self._ValueList[1], self._Macros, RaiseError=True)
1584
1585 def __ProcessPcd(self):
1586 if self._ItemType not in [MODEL_PCD_FEATURE_FLAG, MODEL_PCD_FIXED_AT_BUILD]:
1587 self._ValueList[2] = ReplaceMacro(self._ValueList[2], self._Macros, RaiseError=True)
1588 return
1589
1590 ValList, Valid, Index = AnalyzeDscPcd(self._ValueList[2], self._ItemType)
1591 if not Valid:
1592 EdkLogger.error('build', FORMAT_INVALID, "Pcd format incorrect.", File=self._FileWithError, Line=self._LineIndex + 1,
1593 ExtraData="%s.%s|%s" % (self._ValueList[0], self._ValueList[1], self._ValueList[2]))
1594 PcdValue = ValList[Index]
1595 if PcdValue and "." not in self._ValueList[0]:
1596 try:
1597 ValList[Index] = ValueExpression(PcdValue, self._Macros)(True)
1598 except WrnExpression, Value:
1599 ValList[Index] = Value.result
1600 except:
1601 pass
1602
1603 if ValList[Index] == 'True':
1604 ValList[Index] = '1'
1605 if ValList[Index] == 'False':
1606 ValList[Index] = '0'
1607
1608 if (not self._DirectiveEvalStack) or (False not in self._DirectiveEvalStack):
1609 GlobalData.gPlatformPcds[TAB_SPLIT.join(self._ValueList[0:2])] = PcdValue
1610 self._Symbols[TAB_SPLIT.join(self._ValueList[0:2])] = PcdValue
1611 try:
1612 self._ValueList[2] = '|'.join(ValList)
1613 except Exception:
1614 print ValList
1615
1616 def __ProcessComponent(self):
1617 self._ValueList[0] = ReplaceMacro(self._ValueList[0], self._Macros)
1618
1619 def __ProcessSourceOverridePath(self):
1620 self._ValueList[0] = ReplaceMacro(self._ValueList[0], self._Macros)
1621
1622 def __ProcessBuildOption(self):
1623 self._ValueList = [ReplaceMacro(Value, self._Macros, RaiseError=False)
1624 for Value in self._ValueList]
1625
1626 _SectionParser = {
1627 MODEL_META_DATA_HEADER : _DefineParser,
1628 MODEL_EFI_SKU_ID : _SkuIdParser,
1629 MODEL_EFI_DEFAULT_STORES : _DefaultStoresParser,
1630 MODEL_EFI_LIBRARY_INSTANCE : _LibraryInstanceParser,
1631 MODEL_EFI_LIBRARY_CLASS : _LibraryClassParser,
1632 MODEL_PCD_FIXED_AT_BUILD : _PcdParser,
1633 MODEL_PCD_PATCHABLE_IN_MODULE : _PcdParser,
1634 MODEL_PCD_FEATURE_FLAG : _PcdParser,
1635 MODEL_PCD_DYNAMIC_DEFAULT : _PcdParser,
1636 MODEL_PCD_DYNAMIC_HII : _PcdParser,
1637 MODEL_PCD_DYNAMIC_VPD : _PcdParser,
1638 MODEL_PCD_DYNAMIC_EX_DEFAULT : _PcdParser,
1639 MODEL_PCD_DYNAMIC_EX_HII : _PcdParser,
1640 MODEL_PCD_DYNAMIC_EX_VPD : _PcdParser,
1641 MODEL_META_DATA_COMPONENT : _ComponentParser,
1642 MODEL_META_DATA_COMPONENT_SOURCE_OVERRIDE_PATH : _CompponentSourceOverridePathParser,
1643 MODEL_META_DATA_BUILD_OPTION : _BuildOptionParser,
1644 MODEL_UNKNOWN : MetaFileParser._Skip,
1645 MODEL_META_DATA_USER_EXTENSION : MetaFileParser._SkipUserExtension,
1646 MODEL_META_DATA_SECTION_HEADER : MetaFileParser._SectionHeaderParser,
1647 MODEL_META_DATA_SUBSECTION_HEADER : _SubsectionHeaderParser,
1648 }
1649
1650 _Macros = property(_GetMacros)
1651
1652 ## DEC file parser class
1653 #
1654 # @param FilePath The path of platform description file
1655 # @param FileType The raw data of DSC file
1656 # @param Table Database used to retrieve module/package information
1657 # @param Macros Macros used for replacement in file
1658 #
1659 class DecParser(MetaFileParser):
1660 # DEC file supported data types (one type per section)
1661 DataType = {
1662 TAB_DEC_DEFINES.upper() : MODEL_META_DATA_HEADER,
1663 TAB_DSC_DEFINES_DEFINE : MODEL_META_DATA_DEFINE,
1664 TAB_INCLUDES.upper() : MODEL_EFI_INCLUDE,
1665 TAB_LIBRARY_CLASSES.upper() : MODEL_EFI_LIBRARY_CLASS,
1666 TAB_GUIDS.upper() : MODEL_EFI_GUID,
1667 TAB_PPIS.upper() : MODEL_EFI_PPI,
1668 TAB_PROTOCOLS.upper() : MODEL_EFI_PROTOCOL,
1669 TAB_PCDS_FIXED_AT_BUILD_NULL.upper() : MODEL_PCD_FIXED_AT_BUILD,
1670 TAB_PCDS_PATCHABLE_IN_MODULE_NULL.upper() : MODEL_PCD_PATCHABLE_IN_MODULE,
1671 TAB_PCDS_FEATURE_FLAG_NULL.upper() : MODEL_PCD_FEATURE_FLAG,
1672 TAB_PCDS_DYNAMIC_NULL.upper() : MODEL_PCD_DYNAMIC,
1673 TAB_PCDS_DYNAMIC_EX_NULL.upper() : MODEL_PCD_DYNAMIC_EX,
1674 TAB_USER_EXTENSIONS.upper() : MODEL_META_DATA_USER_EXTENSION,
1675 }
1676
1677 ## Constructor of DecParser
1678 #
1679 # Initialize object of DecParser
1680 #
1681 # @param FilePath The path of platform description file
1682 # @param FileType The raw data of DSC file
1683 # @param Arch Default Arch value for filtering sections
1684 # @param Table Database used to retrieve module/package information
1685 #
1686 def __init__(self, FilePath, FileType, Arch, Table):
1687 # prevent re-initialization
1688 if hasattr(self, "_Table"):
1689 return
1690 MetaFileParser.__init__(self, FilePath, FileType, Arch, Table, -1)
1691 self._Comments = []
1692 self._Version = 0x00010005 # Only EDK2 dec file is supported
1693 self._AllPCDs = [] # Only for check duplicate PCD
1694 self._AllPcdDict = {}
1695
1696 self._CurrentStructurePcdName = ""
1697 self._include_flag = False
1698 self._package_flag = False
1699
1700 ## Parser starter
1701 def Start(self):
1702 Content = ''
1703 try:
1704 Content = open(str(self.MetaFile), 'r').readlines()
1705 except:
1706 EdkLogger.error("Parser", FILE_READ_FAILURE, ExtraData=self.MetaFile)
1707
1708 self._DefinesCount = 0
1709 for Index in range(0, len(Content)):
1710 Line, Comment = CleanString2(Content[Index])
1711 self._CurrentLine = Line
1712 self._LineIndex = Index
1713
1714 # save comment for later use
1715 if Comment:
1716 self._Comments.append((Comment, self._LineIndex + 1))
1717 # skip empty line
1718 if Line == '':
1719 continue
1720
1721 # section header
1722 if Line[0] == TAB_SECTION_START and Line[-1] == TAB_SECTION_END:
1723 self._SectionHeaderParser()
1724 if self._SectionName == TAB_DEC_DEFINES.upper():
1725 self._DefinesCount += 1
1726 self._Comments = []
1727 continue
1728 if self._SectionType == MODEL_UNKNOWN:
1729 EdkLogger.error("Parser", FORMAT_INVALID,
1730 ""
1731 "Not able to determine \"%s\" in which section."%self._CurrentLine,
1732 self.MetaFile, self._LineIndex + 1)
1733 elif len(self._SectionType) == 0:
1734 self._Comments = []
1735 continue
1736
1737 # section content
1738 self._ValueList = ['', '', '']
1739 self._SectionParser[self._SectionType[0]](self)
1740 if self._ValueList == None or self._ItemType == MODEL_META_DATA_DEFINE:
1741 self._ItemType = -1
1742 self._Comments = []
1743 continue
1744
1745 #
1746 # Model, Value1, Value2, Value3, Arch, BelongsToItem=-1, LineBegin=-1,
1747 # ColumnBegin=-1, LineEnd=-1, ColumnEnd=-1, FeatureFlag='', Enabled=-1
1748 #
1749 for Arch, ModuleType, Type in self._Scope:
1750 self._LastItem = self._Store(
1751 Type,
1752 self._ValueList[0],
1753 self._ValueList[1],
1754 self._ValueList[2],
1755 Arch,
1756 ModuleType,
1757 self._Owner[-1],
1758 self._LineIndex + 1,
1759 - 1,
1760 self._LineIndex + 1,
1761 - 1,
1762 0
1763 )
1764 for Comment, LineNo in self._Comments:
1765 self._Store(
1766 MODEL_META_DATA_COMMENT,
1767 Comment,
1768 self._ValueList[0],
1769 self._ValueList[1],
1770 Arch,
1771 ModuleType,
1772 self._LastItem,
1773 LineNo,
1774 - 1,
1775 LineNo,
1776 - 1,
1777 0
1778 )
1779 self._Comments = []
1780 if self._DefinesCount > 1:
1781 EdkLogger.error('Parser', FORMAT_INVALID, 'Multiple [Defines] section is exist.', self.MetaFile )
1782 if self._DefinesCount == 0:
1783 EdkLogger.error('Parser', FORMAT_INVALID, 'No [Defines] section exist.',self.MetaFile)
1784 self._Done()
1785
1786
1787 ## Section header parser
1788 #
1789 # The section header is always in following format:
1790 #
1791 # [section_name.arch<.platform|module_type>]
1792 #
1793 def _SectionHeaderParser(self):
1794 self._Scope = []
1795 self._SectionName = ''
1796 self._SectionType = []
1797 ArchList = set()
1798 PrivateList = set()
1799 Line = re.sub(',[\s]*', TAB_COMMA_SPLIT, self._CurrentLine)
1800 for Item in Line[1:-1].split(TAB_COMMA_SPLIT):
1801 if Item == '':
1802 EdkLogger.error("Parser", FORMAT_UNKNOWN_ERROR,
1803 "section name can NOT be empty or incorrectly use separator comma",
1804 self.MetaFile, self._LineIndex + 1, self._CurrentLine)
1805 ItemList = Item.split(TAB_SPLIT)
1806
1807 # different types of PCD are permissible in one section
1808 self._SectionName = ItemList[0].upper()
1809 if self._SectionName == TAB_DEC_DEFINES.upper() and (len(ItemList) > 1 or len(Line.split(TAB_COMMA_SPLIT)) > 1):
1810 EdkLogger.error("Parser", FORMAT_INVALID, "Defines section format is invalid",
1811 self.MetaFile, self._LineIndex + 1, self._CurrentLine)
1812 if self._SectionName in self.DataType:
1813 if self.DataType[self._SectionName] not in self._SectionType:
1814 self._SectionType.append(self.DataType[self._SectionName])
1815 else:
1816 EdkLogger.error("Parser", FORMAT_UNKNOWN_ERROR, "%s is not a valid section name" % Item,
1817 self.MetaFile, self._LineIndex + 1, self._CurrentLine)
1818
1819 if MODEL_PCD_FEATURE_FLAG in self._SectionType and len(self._SectionType) > 1:
1820 EdkLogger.error(
1821 'Parser',
1822 FORMAT_INVALID,
1823 "%s must not be in the same section of other types of PCD" % TAB_PCDS_FEATURE_FLAG_NULL,
1824 File=self.MetaFile,
1825 Line=self._LineIndex + 1,
1826 ExtraData=self._CurrentLine
1827 )
1828 # S1 is always Arch
1829 if len(ItemList) > 1:
1830 S1 = ItemList[1].upper()
1831 else:
1832 S1 = 'COMMON'
1833 ArchList.add(S1)
1834 # S2 may be Platform or ModuleType
1835 if len(ItemList) > 2:
1836 S2 = ItemList[2].upper()
1837 # only Includes, GUIDs, PPIs, Protocols section have Private tag
1838 if self._SectionName in [TAB_INCLUDES.upper(), TAB_GUIDS.upper(), TAB_PROTOCOLS.upper(), TAB_PPIS.upper()]:
1839 if S2 != 'PRIVATE':
1840 EdkLogger.error("Parser", FORMAT_INVALID, 'Please use keyword "Private" as section tag modifier.',
1841 File=self.MetaFile, Line=self._LineIndex + 1, ExtraData=self._CurrentLine)
1842 else:
1843 S2 = 'COMMON'
1844 PrivateList.add(S2)
1845 if [S1, S2, self.DataType[self._SectionName]] not in self._Scope:
1846 self._Scope.append([S1, S2, self.DataType[self._SectionName]])
1847
1848 # 'COMMON' must not be used with specific ARCHs at the same section
1849 if 'COMMON' in ArchList and len(ArchList) > 1:
1850 EdkLogger.error('Parser', FORMAT_INVALID, "'common' ARCH must not be used with specific ARCHs",
1851 File=self.MetaFile, Line=self._LineIndex + 1, ExtraData=self._CurrentLine)
1852
1853 # It is not permissible to mix section tags without the Private attribute with section tags with the Private attribute
1854 if 'COMMON' in PrivateList and len(PrivateList) > 1:
1855 EdkLogger.error('Parser', FORMAT_INVALID, "Can't mix section tags without the Private attribute with section tags with the Private attribute",
1856 File=self.MetaFile, Line=self._LineIndex + 1, ExtraData=self._CurrentLine)
1857
1858 ## [guids], [ppis] and [protocols] section parser
1859 @ParseMacro
1860 def _GuidParser(self):
1861 TokenList = GetSplitValueList(self._CurrentLine, TAB_EQUAL_SPLIT, 1)
1862 if len(TokenList) < 2:
1863 EdkLogger.error('Parser', FORMAT_INVALID, "No GUID name or value specified",
1864 ExtraData=self._CurrentLine + " (<CName> = <GuidValueInCFormat>)",
1865 File=self.MetaFile, Line=self._LineIndex + 1)
1866 if TokenList[0] == '':
1867 EdkLogger.error('Parser', FORMAT_INVALID, "No GUID name specified",
1868 ExtraData=self._CurrentLine + " (<CName> = <GuidValueInCFormat>)",
1869 File=self.MetaFile, Line=self._LineIndex + 1)
1870 if TokenList[1] == '':
1871 EdkLogger.error('Parser', FORMAT_INVALID, "No GUID value specified",
1872 ExtraData=self._CurrentLine + " (<CName> = <GuidValueInCFormat>)",
1873 File=self.MetaFile, Line=self._LineIndex + 1)
1874 if TokenList[1][0] != '{' or TokenList[1][-1] != '}' or GuidStructureStringToGuidString(TokenList[1]) == '':
1875 EdkLogger.error('Parser', FORMAT_INVALID, "Invalid GUID value format",
1876 ExtraData=self._CurrentLine + \
1877 " (<CName> = <GuidValueInCFormat:{8,4,4,{2,2,2,2,2,2,2,2}}>)",
1878 File=self.MetaFile, Line=self._LineIndex + 1)
1879 self._ValueList[0] = TokenList[0]
1880 self._ValueList[1] = TokenList[1]
1881 if self._ValueList[0] not in self._GuidDict:
1882 self._GuidDict[self._ValueList[0]] = self._ValueList[1]
1883
1884 ## PCD sections parser
1885 #
1886 # [PcdsFixedAtBuild]
1887 # [PcdsPatchableInModule]
1888 # [PcdsFeatureFlag]
1889 # [PcdsDynamicEx
1890 # [PcdsDynamic]
1891 #
1892 @ParseMacro
1893 def _PcdParser(self):
1894 if self._CurrentStructurePcdName:
1895 self._ValueList[0] = self._CurrentStructurePcdName
1896
1897 if "|" not in self._CurrentLine:
1898 if "<HeaderFiles>" == self._CurrentLine:
1899 self._include_flag = True
1900 self._package_flag = False
1901 self._ValueList = None
1902 return
1903 if "<Packages>" == self._CurrentLine:
1904 self._package_flag = True
1905 self._ValueList = None
1906 self._include_flag = False
1907 return
1908
1909 if self._include_flag:
1910 self._ValueList[1] = "<HeaderFiles>_" + md5.new(self._CurrentLine).hexdigest()
1911 self._ValueList[2] = self._CurrentLine
1912 if self._package_flag and "}" != self._CurrentLine:
1913 self._ValueList[1] = "<Packages>_" + md5.new(self._CurrentLine).hexdigest()
1914 self._ValueList[2] = self._CurrentLine
1915 if self._CurrentLine == "}":
1916 self._package_flag = False
1917 self._include_flag = False
1918 self._ValueList = None
1919 return
1920 else:
1921 PcdTockens = self._CurrentLine.split(TAB_VALUE_SPLIT)
1922 PcdNames = PcdTockens[0].split(TAB_SPLIT)
1923 if len(PcdNames) == 2:
1924 self._CurrentStructurePcdName = ""
1925 else:
1926 if self._CurrentStructurePcdName != TAB_SPLIT.join(PcdNames[:2]):
1927 EdkLogger.error('Parser', FORMAT_INVALID, "Pcd Name does not match: %s and %s " % (self._CurrentStructurePcdName , TAB_SPLIT.join(PcdNames[:2])),
1928 File=self.MetaFile, Line=self._LineIndex + 1)
1929 self._ValueList[1] = TAB_SPLIT.join(PcdNames[2:])
1930 self._ValueList[2] = PcdTockens[1]
1931 if not self._CurrentStructurePcdName:
1932 TokenList = GetSplitValueList(self._CurrentLine, TAB_VALUE_SPLIT, 1)
1933 self._ValueList[0:1] = GetSplitValueList(TokenList[0], TAB_SPLIT)
1934 ValueRe = re.compile(r'^[a-zA-Z_][a-zA-Z0-9_]*')
1935 # check PCD information
1936 if self._ValueList[0] == '' or self._ValueList[1] == '':
1937 EdkLogger.error('Parser', FORMAT_INVALID, "No token space GUID or PCD name specified",
1938 ExtraData=self._CurrentLine + \
1939 " (<TokenSpaceGuidCName>.<PcdCName>|<DefaultValue>|<DatumType>|<Token>)",
1940 File=self.MetaFile, Line=self._LineIndex + 1)
1941 # check format of token space GUID CName
1942 if not ValueRe.match(self._ValueList[0]):
1943 EdkLogger.error('Parser', FORMAT_INVALID, "The format of the token space GUID CName is invalid. The correct format is '(a-zA-Z_)[a-zA-Z0-9_]*'",
1944 ExtraData=self._CurrentLine + \
1945 " (<TokenSpaceGuidCName>.<PcdCName>|<DefaultValue>|<DatumType>|<Token>)",
1946 File=self.MetaFile, Line=self._LineIndex + 1)
1947 # check format of PCD CName
1948 if not ValueRe.match(self._ValueList[1]):
1949 EdkLogger.error('Parser', FORMAT_INVALID, "The format of the PCD CName is invalid. The correct format is '(a-zA-Z_)[a-zA-Z0-9_]*'",
1950 ExtraData=self._CurrentLine + \
1951 " (<TokenSpaceGuidCName>.<PcdCName>|<DefaultValue>|<DatumType>|<Token>)",
1952 File=self.MetaFile, Line=self._LineIndex + 1)
1953 # check PCD datum information
1954 if len(TokenList) < 2 or TokenList[1] == '':
1955 EdkLogger.error('Parser', FORMAT_INVALID, "No PCD Datum information given",
1956 ExtraData=self._CurrentLine + \
1957 " (<TokenSpaceGuidCName>.<PcdCName>|<DefaultValue>|<DatumType>|<Token>)",
1958 File=self.MetaFile, Line=self._LineIndex + 1)
1959
1960
1961 ValueRe = re.compile(r'^\s*L?\".*\|.*\"')
1962 PtrValue = ValueRe.findall(TokenList[1])
1963
1964 # Has VOID* type string, may contain "|" character in the string.
1965 if len(PtrValue) != 0:
1966 ptrValueList = re.sub(ValueRe, '', TokenList[1])
1967 ValueList = AnalyzePcdExpression(ptrValueList)
1968 ValueList[0] = PtrValue[0]
1969 else:
1970 ValueList = AnalyzePcdExpression(TokenList[1])
1971
1972
1973 # check if there's enough datum information given
1974 if len(ValueList) != 3:
1975 EdkLogger.error('Parser', FORMAT_INVALID, "Invalid PCD Datum information given",
1976 ExtraData=self._CurrentLine + \
1977 " (<TokenSpaceGuidCName>.<PcdCName>|<DefaultValue>|<DatumType>|<Token>)",
1978 File=self.MetaFile, Line=self._LineIndex + 1)
1979 # check default value
1980 if ValueList[0] == '':
1981 EdkLogger.error('Parser', FORMAT_INVALID, "Missing DefaultValue in PCD Datum information",
1982 ExtraData=self._CurrentLine + \
1983 " (<TokenSpaceGuidCName>.<PcdCName>|<DefaultValue>|<DatumType>|<Token>)",
1984 File=self.MetaFile, Line=self._LineIndex + 1)
1985 # check datum type
1986 if ValueList[1] == '':
1987 EdkLogger.error('Parser', FORMAT_INVALID, "Missing DatumType in PCD Datum information",
1988 ExtraData=self._CurrentLine + \
1989 " (<TokenSpaceGuidCName>.<PcdCName>|<DefaultValue>|<DatumType>|<Token>)",
1990 File=self.MetaFile, Line=self._LineIndex + 1)
1991 # check token of the PCD
1992 if ValueList[2] == '':
1993 EdkLogger.error('Parser', FORMAT_INVALID, "Missing Token in PCD Datum information",
1994 ExtraData=self._CurrentLine + \
1995 " (<TokenSpaceGuidCName>.<PcdCName>|<DefaultValue>|<DatumType>|<Token>)",
1996 File=self.MetaFile, Line=self._LineIndex + 1)
1997
1998 PcdValue = ValueList[0]
1999 if PcdValue:
2000 try:
2001 self._GuidDict.update(self._AllPcdDict)
2002 ValueList[0] = ValueExpressionEx(ValueList[0], ValueList[1], self._GuidDict)(True)
2003 except BadExpression, Value:
2004 EdkLogger.error('Parser', FORMAT_INVALID, Value, ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
2005 # check format of default value against the datum type
2006 IsValid, Cause = CheckPcdDatum(ValueList[1], ValueList[0])
2007 if not IsValid:
2008 EdkLogger.error('Parser', FORMAT_INVALID, Cause, ExtraData=self._CurrentLine,
2009 File=self.MetaFile, Line=self._LineIndex + 1)
2010
2011 if Cause == "StructurePcd":
2012 self._CurrentStructurePcdName = TAB_SPLIT.join(self._ValueList[0:2])
2013 self._ValueList[0] = self._CurrentStructurePcdName
2014 self._ValueList[1] = ValueList[1].strip()
2015
2016 if ValueList[0] in ['True', 'true', 'TRUE']:
2017 ValueList[0] = '1'
2018 elif ValueList[0] in ['False', 'false', 'FALSE']:
2019 ValueList[0] = '0'
2020
2021 # check for duplicate PCD definition
2022 if (self._Scope[0], self._ValueList[0], self._ValueList[1]) in self._AllPCDs:
2023 EdkLogger.error('Parser', FORMAT_INVALID,
2024 "The same PCD name and GUID have been already defined",
2025 ExtraData=self._CurrentLine, File=self.MetaFile, Line=self._LineIndex + 1)
2026 else:
2027 self._AllPCDs.append((self._Scope[0], self._ValueList[0], self._ValueList[1]))
2028 self._AllPcdDict[TAB_SPLIT.join(self._ValueList[0:2])] = ValueList[0]
2029
2030 self._ValueList[2] = ValueList[0].strip() + '|' + ValueList[1].strip() + '|' + ValueList[2].strip()
2031
2032 _SectionParser = {
2033 MODEL_META_DATA_HEADER : MetaFileParser._DefineParser,
2034 MODEL_EFI_INCLUDE : MetaFileParser._PathParser,
2035 MODEL_EFI_LIBRARY_CLASS : MetaFileParser._PathParser,
2036 MODEL_EFI_GUID : _GuidParser,
2037 MODEL_EFI_PPI : _GuidParser,
2038 MODEL_EFI_PROTOCOL : _GuidParser,
2039 MODEL_PCD_FIXED_AT_BUILD : _PcdParser,
2040 MODEL_PCD_PATCHABLE_IN_MODULE : _PcdParser,
2041 MODEL_PCD_FEATURE_FLAG : _PcdParser,
2042 MODEL_PCD_DYNAMIC : _PcdParser,
2043 MODEL_PCD_DYNAMIC_EX : _PcdParser,
2044 MODEL_UNKNOWN : MetaFileParser._Skip,
2045 MODEL_META_DATA_USER_EXTENSION : MetaFileParser._SkipUserExtension,
2046 }
2047
2048 ##
2049 #
2050 # This acts like the main() function for the script, unless it is 'import'ed into another
2051 # script.
2052 #
2053 if __name__ == '__main__':
2054 pass
2055