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