]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/Ecc/Configuration.py
Sync EDKII BaseTools to BaseTools project r2042.
[mirror_edk2.git] / BaseTools / Source / Python / Ecc / Configuration.py
1 ## @file
2 # This file is used to define class Configuration
3 #
4 # Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
5 # This program and the accompanying materials
6 # are licensed and made available under the terms and conditions of the BSD License
7 # which accompanies this distribution. The full text of the license may be found at
8 # http://opensource.org/licenses/bsd-license.php
9 #
10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 #
13
14 ##
15 # Import Modules
16 #
17 import os
18 import Common.EdkLogger as EdkLogger
19 from Common.DataType import *
20 from Common.String import *
21
22 ## Configuration
23 #
24 # This class is used to define all items in configuration file
25 #
26 # @param Filename: The name of configuration file, the default is config.ini
27 #
28 class Configuration(object):
29 def __init__(self, Filename):
30 self.Filename = Filename
31
32 self.Version = 0.1
33
34 ## Identify to if check all items
35 # 1 - Check all items and ignore all other detailed items
36 # 0 - Not check all items, the tool will go through all other detailed items to decide to check or not
37 #
38 self.CheckAll = 0
39
40 ## Identify to if automatically correct mistakes
41 # 1 - Automatically correct
42 # 0 - Not automatically correct
43 # Only the following check points can be automatically corrected, others not listed below are not supported even it is 1
44 #
45 # GeneralCheckTab
46 # GeneralCheckIndentation
47 # GeneralCheckLine
48 # GeneralCheckCarriageReturn
49 # SpaceCheckAll
50 #
51 self.AutoCorrect = 0
52
53 # List customized Modifer here, split with ','
54 # Defaultly use the definition in class DataType
55 self.ModifierList = MODIFIER_LIST
56
57 ## General Checking
58 self.GeneralCheckAll = 0
59
60 # Check whether NO Tab is used, replaced with spaces
61 self.GeneralCheckNoTab = 1
62 # The width of Tab
63 self.GeneralCheckTabWidth = 2
64 # Check whether the indentation is followed coding style
65 self.GeneralCheckIndentation = 1
66 # The width of indentation
67 self.GeneralCheckIndentationWidth = 2
68 # Check whether no line is exceeding defined widty
69 self.GeneralCheckLine = 1
70 # The width of a line
71 self.GeneralCheckLineWidth = 120
72 # Check whether no use of _asm in the source file
73 self.GeneralCheckNo_Asm = 1
74 # Check whether no use of "#progma" in source file except "#pragma pack(#)".
75 self.GeneralCheckNoProgma = 1
76 # Check whether there is a carriage return at the end of the file
77 self.GeneralCheckCarriageReturn = 1
78 # Check whether the file exists
79 self.GeneralCheckFileExistence = 1
80 # Check whether file has non ACSII char
81 self.GeneralCheckNonAcsii = 1
82
83 ## Space Checking
84 self.SpaceCheckAll = 1
85
86 ## Predicate Expression Checking
87 self.PredicateExpressionCheckAll = 0
88
89 # Check whether Boolean values, variable type BOOLEAN not use explicit comparisons to TRUE or FALSE
90 self.PredicateExpressionCheckBooleanValue = 1
91 # Check whether Non-Boolean comparisons use a compare operator (==, !=, >, < >=, <=).
92 self.PredicateExpressionCheckNonBooleanOperator = 1
93 # Check whether a comparison of any pointer to zero must be done via the NULL type
94 self.PredicateExpressionCheckComparisonNullType = 1
95
96 ## Headers Checking
97 self.HeaderCheckAll = 0
98
99 # Check whether File header exists
100 self.HeaderCheckFile = 1
101 # Check whether Function header exists
102 self.HeaderCheckFunction = 1
103
104 ## C Function Layout Checking
105 self.CFunctionLayoutCheckAll = 0
106
107 # Check whether return type exists and in the first line
108 self.CFunctionLayoutCheckReturnType = 1
109 # Check whether any optional functional modifiers exist and next to the return type
110 self.CFunctionLayoutCheckOptionalFunctionalModifier = 1
111 # Check whether the next line contains the function name, left justified, followed by the beginning of the parameter list
112 # Check whether the closing parenthesis is on its own line and also indented two spaces
113 self.CFunctionLayoutCheckFunctionName = 1
114 # Check whether the function prototypes in include files have the same form as function definitions
115 self.CFunctionLayoutCheckFunctionPrototype = 1
116 # Check whether the body of a function is contained by open and close braces that must be in the first column
117 self.CFunctionLayoutCheckFunctionBody = 1
118 # Check whether the data declarations is the first code in a module.
119 self.CFunctionLayoutCheckDataDeclaration = 1
120 # Check whether no initialization of a variable as part of its declaration
121 self.CFunctionLayoutCheckNoInitOfVariable = 1
122 # Check whether no use of STATIC for functions
123 self.CFunctionLayoutCheckNoStatic = 1
124
125 ## Include Files Checking
126 self.IncludeFileCheckAll = 0
127
128 #Check whether having include files with same name
129 self.IncludeFileCheckSameName = 1
130 # Check whether all include file contents is guarded by a #ifndef statement.
131 # the #ifndef must be the first line of code following the file header comment
132 # the #endif must appear on the last line in the file
133 self.IncludeFileCheckIfndefStatement = 1
134 # Check whether include files contain only public or only private data
135 # Check whether include files NOT contain code or define data variables
136 self.IncludeFileCheckData = 1
137
138 ## Declarations and Data Types Checking
139 self.DeclarationDataTypeCheckAll = 0
140
141 # Check whether no use of int, unsigned, char, void, static, long in any .c, .h or .asl files.
142 self.DeclarationDataTypeCheckNoUseCType = 1
143 # Check whether the modifiers IN, OUT, OPTIONAL, and UNALIGNED are used only to qualify arguments to a function and should not appear in a data type declaration
144 self.DeclarationDataTypeCheckInOutModifier = 1
145 # Check whether the EFIAPI modifier should be used at the entry of drivers, events, and member functions of protocols
146 self.DeclarationDataTypeCheckEFIAPIModifier = 1
147 # Check whether Enumerated Type has a 'typedef' and the name is capital
148 self.DeclarationDataTypeCheckEnumeratedType = 1
149 # Check whether Structure Type has a 'typedef' and the name is capital
150 self.DeclarationDataTypeCheckStructureDeclaration = 1
151 # Check whether having same Structure
152 self.DeclarationDataTypeCheckSameStructure = 1
153 # Check whether Union Type has a 'typedef' and the name is capital
154 self.DeclarationDataTypeCheckUnionType = 1
155
156 ## Naming Conventions Checking
157 self.NamingConventionCheckAll = 0
158
159 # Check whether only capital letters are used for #define declarations
160 self.NamingConventionCheckDefineStatement = 1
161 # Check whether only capital letters are used for typedef declarations
162 self.NamingConventionCheckTypedefStatement = 1
163 # Check whether the #ifndef at the start of an include file uses both prefix and postfix underscore characters, '_'.
164 self.NamingConventionCheckIfndefStatement = 1
165 # Rule for path name, variable name and function name
166 # 1. First character should be upper case
167 # 2. Existing lower case in a word
168 # 3. No space existence
169 # Check whether the path name followed the rule
170 self.NamingConventionCheckPathName = 1
171 # Check whether the variable name followed the rule
172 self.NamingConventionCheckVariableName = 1
173 # Check whether the function name followed the rule
174 self.NamingConventionCheckFunctionName = 1
175 # Check whether NO use short variable name with single character
176 self.NamingConventionCheckSingleCharacterVariable = 1
177
178 ## Doxygen Checking
179 self.DoxygenCheckAll = 0
180
181 # Check whether the file headers are followed Doxygen special documentation blocks in section 2.3.5
182 self.DoxygenCheckFileHeader = 1
183 # Check whether the function headers are followed Doxygen special documentation blocks in section 2.3.5
184 self.DoxygenCheckFunctionHeader = 1
185 # Check whether the first line of text in a comment block is a brief description of the element being documented.
186 # The brief description must end with a period.
187 self.DoxygenCheckCommentDescription = 1
188 # Check whether comment lines with '///< ... text ...' format, if it is used, it should be after the code section.
189 self.DoxygenCheckCommentFormat = 1
190 # Check whether only Doxygen commands allowed to mark the code are @bug and @todo.
191 self.DoxygenCheckCommand = 1
192
193 ## Meta-Data File Processing Checking
194 self.MetaDataFileCheckAll = 0
195
196 # Check whether each file defined in meta-data exists
197 self.MetaDataFileCheckPathName = 1
198 # Generate a list for all files defined in meta-data files
199 self.MetaDataFileCheckGenerateFileList = 1
200 # The path of log file
201 self.MetaDataFileCheckPathOfGenerateFileList = 'File.log'
202 # Check whether all Library Instances defined for a given module (or dependent library instance) match the module's type.
203 # Each Library Instance must specify the Supported Module Types in its INF file,
204 # and any module specifying the library instance must be one of the supported types.
205 self.MetaDataFileCheckLibraryInstance = 1
206 # Check whether a Library Instance has been defined for all dependent library classes
207 self.MetaDataFileCheckLibraryInstanceDependent = 1
208 # Check whether the Library Instances specified by the LibraryClasses sections are listed in order of dependencies
209 self.MetaDataFileCheckLibraryInstanceOrder = 1
210 # Check whether the unnecessary inclusion of library classes in the INF file
211 self.MetaDataFileCheckLibraryNoUse = 1
212 # Check whether an INF file is specified in the FDF file, but not in the DSC file, then the INF file must be for a Binary module only
213 self.MetaDataFileCheckBinaryInfInFdf = 1
214 # Not to report error and warning related OS include file such as "windows.h" and "stdio.h"
215 # Check whether a PCD is set in a DSC file or the FDF file, but not in both.
216 self.MetaDataFileCheckPcdDuplicate = 1
217 # Check whether PCD settings in the FDF file can only be related to flash.
218 self.MetaDataFileCheckPcdFlash = 1
219 # Check whether PCDs used in INF files but not specified in DSC or FDF files
220 self.MetaDataFileCheckPcdNoUse = 1
221 # Check whether having duplicate guids defined for Guid/Protocol/Ppi
222 self.MetaDataFileCheckGuidDuplicate = 1
223 # Check whether all files under module directory are described in INF files
224 self.MetaDataFileCheckModuleFileNoUse = 1
225 # Check whether the PCD is correctly used in C function via its type
226 self.MetaDataFileCheckPcdType = 1
227 # Check whether there are FILE_GUID duplication among different INF files
228 self.MetaDataFileCheckModuleFileGuidDuplication = 1
229
230 #
231 # The check points in this section are reserved
232 #
233 # GotoStatementCheckAll = 0
234 #
235 self.SpellingCheckAll = 0
236
237 # The directory listed here will not be parsed, split with ','
238 self.SkipDirList = []
239
240 # A list for binary file ext name
241 self.BinaryExtList = []
242
243 self.ParseConfig()
244
245 def ParseConfig(self):
246 Filepath = os.path.normpath(self.Filename)
247 if not os.path.isfile(Filepath):
248 ErrorMsg = "Can't find configuration file '%s'" % Filepath
249 EdkLogger.error("Ecc", EdkLogger.ECC_ERROR, ErrorMsg, File = Filepath)
250
251 LineNo = 0
252 for Line in open(Filepath, 'r'):
253 LineNo = LineNo + 1
254 Line = CleanString(Line)
255 if Line != '':
256 List = GetSplitValueList(Line, TAB_EQUAL_SPLIT)
257 if List[0] not in self.__dict__:
258 ErrorMsg = "Invalid configuration option '%s' was found" % List[0]
259 EdkLogger.error("Ecc", EdkLogger.ECC_ERROR, ErrorMsg, File = Filepath, Line = LineNo)
260 if List[0] == 'ModifierList':
261 List[1] = GetSplitValueList(List[1], TAB_COMMA_SPLIT)
262 if List[0] == 'MetaDataFileCheckPathOfGenerateFileList' and List[1] == "":
263 continue
264 if List[0] == 'SkipDirList':
265 List[1] = GetSplitValueList(List[1], TAB_COMMA_SPLIT)
266 if List[0] == 'BinaryExtList':
267 List[1] = GetSplitValueList(List[1], TAB_COMMA_SPLIT)
268 self.__dict__[List[0]] = List[1]
269
270 def ShowMe(self):
271 print self.Filename
272 for Key in self.__dict__.keys():
273 print Key, '=', self.__dict__[Key]