]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/Trim/Trim.py
BaseTools: Warn user the file not found issue instead of break build.
[mirror_edk2.git] / BaseTools / Source / Python / Trim / Trim.py
1 ## @file
2 # Trim files preprocessed by compiler
3 #
4 # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
5 # SPDX-License-Identifier: BSD-2-Clause-Patent
6 #
7
8 ##
9 # Import Modules
10 #
11 import Common.LongFilePathOs as os
12 import sys
13 import re
14 from io import BytesIO
15 import codecs
16 from optparse import OptionParser
17 from optparse import make_option
18 from Common.BuildToolError import *
19 from Common.Misc import *
20 from Common.DataType import *
21 from Common.BuildVersion import gBUILD_VERSION
22 import Common.EdkLogger as EdkLogger
23 from Common.LongFilePathSupport import OpenLongFilePath as open
24
25 # Version and Copyright
26 __version_number__ = ("0.10" + " " + gBUILD_VERSION)
27 __version__ = "%prog Version " + __version_number__
28 __copyright__ = "Copyright (c) 2007-2018, Intel Corporation. All rights reserved."
29
30 ## Regular expression for matching Line Control directive like "#line xxx"
31 gLineControlDirective = re.compile('^\s*#(?:line)?\s+([0-9]+)\s+"*([^"]*)"')
32 ## Regular expression for matching "typedef struct"
33 gTypedefPattern = re.compile("^\s*typedef\s+struct(\s+\w+)?\s*[{]*$", re.MULTILINE)
34 ## Regular expression for matching "#pragma pack"
35 gPragmaPattern = re.compile("^\s*#pragma\s+pack", re.MULTILINE)
36 ## Regular expression for matching "typedef"
37 gTypedef_SinglePattern = re.compile("^\s*typedef", re.MULTILINE)
38 ## Regular expression for matching "typedef struct, typedef union, struct, union"
39 gTypedef_MulPattern = re.compile("^\s*(typedef)?\s+(struct|union)(\s+\w+)?\s*[{]*$", re.MULTILINE)
40
41 #
42 # The following number pattern match will only match if following criteria is met:
43 # There is leading non-(alphanumeric or _) character, and no following alphanumeric or _
44 # as the pattern is greedily match, so it is ok for the gDecNumberPattern or gHexNumberPattern to grab the maximum match
45 #
46 ## Regular expression for matching HEX number
47 gHexNumberPattern = re.compile("(?<=[^a-zA-Z0-9_])(0[xX])([0-9a-fA-F]+)(U(?=$|[^a-zA-Z0-9_]))?")
48 ## Regular expression for matching decimal number with 'U' postfix
49 gDecNumberPattern = re.compile("(?<=[^a-zA-Z0-9_])([0-9]+)U(?=$|[^a-zA-Z0-9_])")
50 ## Regular expression for matching constant with 'ULL' 'LL' postfix
51 gLongNumberPattern = re.compile("(?<=[^a-zA-Z0-9_])(0[xX][0-9a-fA-F]+|[0-9]+)U?LL(?=$|[^a-zA-Z0-9_])")
52
53 ## Regular expression for matching "Include ()" in asl file
54 gAslIncludePattern = re.compile("^(\s*)[iI]nclude\s*\(\"?([^\"\(\)]+)\"\)", re.MULTILINE)
55 ## Regular expression for matching C style #include "XXX.asl" in asl file
56 gAslCIncludePattern = re.compile(r'^(\s*)#include\s*[<"]\s*([-\\/\w.]+)\s*([>"])', re.MULTILINE)
57 ## Patterns used to convert EDK conventions to EDK2 ECP conventions
58
59 ## Regular expression for finding header file inclusions
60 gIncludePattern = re.compile(r"^[ \t]*[%]?[ \t]*include(?:[ \t]*(?:\\(?:\r\n|\r|\n))*[ \t]*)*(?:\(?[\"<]?[ \t]*)([-\w.\\/() \t]+)(?:[ \t]*[\">]?\)?)", re.MULTILINE | re.UNICODE | re.IGNORECASE)
61
62
63 ## file cache to avoid circular include in ASL file
64 gIncludedAslFile = []
65
66 ## Trim preprocessed source code
67 #
68 # Remove extra content made by preprocessor. The preprocessor must enable the
69 # line number generation option when preprocessing.
70 #
71 # @param Source File to be trimmed
72 # @param Target File to store the trimmed content
73 # @param Convert If True, convert standard HEX format to MASM format
74 #
75 def TrimPreprocessedFile(Source, Target, ConvertHex, TrimLong):
76 CreateDirectory(os.path.dirname(Target))
77 try:
78 with open(Source, "r") as File:
79 Lines = File.readlines()
80 except IOError:
81 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=Source)
82 except:
83 EdkLogger.error("Trim", AUTOGEN_ERROR, "TrimPreprocessedFile: Error while processing file", File=Source)
84
85 PreprocessedFile = ""
86 InjectedFile = ""
87 LineIndexOfOriginalFile = None
88 NewLines = []
89 LineControlDirectiveFound = False
90 for Index in range(len(Lines)):
91 Line = Lines[Index]
92 #
93 # Find out the name of files injected by preprocessor from the lines
94 # with Line Control directive
95 #
96 MatchList = gLineControlDirective.findall(Line)
97 if MatchList != []:
98 MatchList = MatchList[0]
99 if len(MatchList) == 2:
100 LineNumber = int(MatchList[0], 0)
101 InjectedFile = MatchList[1]
102 InjectedFile = os.path.normpath(InjectedFile)
103 InjectedFile = os.path.normcase(InjectedFile)
104 # The first injected file must be the preprocessed file itself
105 if PreprocessedFile == "":
106 PreprocessedFile = InjectedFile
107 LineControlDirectiveFound = True
108 continue
109 elif PreprocessedFile == "" or InjectedFile != PreprocessedFile:
110 continue
111
112 if LineIndexOfOriginalFile is None:
113 #
114 # Any non-empty lines must be from original preprocessed file.
115 # And this must be the first one.
116 #
117 LineIndexOfOriginalFile = Index
118 EdkLogger.verbose("Found original file content starting from line %d"
119 % (LineIndexOfOriginalFile + 1))
120
121 if TrimLong:
122 Line = gLongNumberPattern.sub(r"\1", Line)
123 # convert HEX number format if indicated
124 if ConvertHex:
125 Line = gHexNumberPattern.sub(r"0\2h", Line)
126 else:
127 Line = gHexNumberPattern.sub(r"\1\2", Line)
128
129 # convert Decimal number format
130 Line = gDecNumberPattern.sub(r"\1", Line)
131
132 if LineNumber is not None:
133 EdkLogger.verbose("Got line directive: line=%d" % LineNumber)
134 # in case preprocessor removed some lines, like blank or comment lines
135 if LineNumber <= len(NewLines):
136 # possible?
137 NewLines[LineNumber - 1] = Line
138 else:
139 if LineNumber > (len(NewLines) + 1):
140 for LineIndex in range(len(NewLines), LineNumber-1):
141 NewLines.append(TAB_LINE_BREAK)
142 NewLines.append(Line)
143 LineNumber = None
144 EdkLogger.verbose("Now we have lines: %d" % len(NewLines))
145 else:
146 NewLines.append(Line)
147
148 # in case there's no line directive or linemarker found
149 if (not LineControlDirectiveFound) and NewLines == []:
150 MulPatternFlag = False
151 SinglePatternFlag = False
152 Brace = 0
153 for Index in range(len(Lines)):
154 Line = Lines[Index]
155 if MulPatternFlag == False and gTypedef_MulPattern.search(Line) is None:
156 if SinglePatternFlag == False and gTypedef_SinglePattern.search(Line) is None:
157 # remove "#pragram pack" directive
158 if gPragmaPattern.search(Line) is None:
159 NewLines.append(Line)
160 continue
161 elif SinglePatternFlag == False:
162 SinglePatternFlag = True
163 if Line.find(";") >= 0:
164 SinglePatternFlag = False
165 elif MulPatternFlag == False:
166 # found "typedef struct, typedef union, union, struct", keep its position and set a flag
167 MulPatternFlag = True
168
169 # match { and } to find the end of typedef definition
170 if Line.find("{") >= 0:
171 Brace += 1
172 elif Line.find("}") >= 0:
173 Brace -= 1
174
175 # "typedef struct, typedef union, union, struct" must end with a ";"
176 if Brace == 0 and Line.find(";") >= 0:
177 MulPatternFlag = False
178
179 # save to file
180 try:
181 with open(Target, 'w') as File:
182 File.writelines(NewLines)
183 except:
184 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=Target)
185
186 ## Trim preprocessed VFR file
187 #
188 # Remove extra content made by preprocessor. The preprocessor doesn't need to
189 # enable line number generation option when preprocessing.
190 #
191 # @param Source File to be trimmed
192 # @param Target File to store the trimmed content
193 #
194 def TrimPreprocessedVfr(Source, Target):
195 CreateDirectory(os.path.dirname(Target))
196
197 try:
198 with open(Source, "r") as File:
199 Lines = File.readlines()
200 except:
201 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=Source)
202 # read whole file
203
204 FoundTypedef = False
205 Brace = 0
206 TypedefStart = 0
207 TypedefEnd = 0
208 for Index in range(len(Lines)):
209 Line = Lines[Index]
210 # don't trim the lines from "formset" definition to the end of file
211 if Line.strip() == 'formset':
212 break
213
214 if FoundTypedef == False and (Line.find('#line') == 0 or Line.find('# ') == 0):
215 # empty the line number directive if it's not aomong "typedef struct"
216 Lines[Index] = "\n"
217 continue
218
219 if FoundTypedef == False and gTypedefPattern.search(Line) is None:
220 # keep "#pragram pack" directive
221 if gPragmaPattern.search(Line) is None:
222 Lines[Index] = "\n"
223 continue
224 elif FoundTypedef == False:
225 # found "typedef struct", keept its position and set a flag
226 FoundTypedef = True
227 TypedefStart = Index
228
229 # match { and } to find the end of typedef definition
230 if Line.find("{") >= 0:
231 Brace += 1
232 elif Line.find("}") >= 0:
233 Brace -= 1
234
235 # "typedef struct" must end with a ";"
236 if Brace == 0 and Line.find(";") >= 0:
237 FoundTypedef = False
238 TypedefEnd = Index
239 # keep all "typedef struct" except to GUID, EFI_PLABEL and PAL_CALL_RETURN
240 if Line.strip("} ;\r\n") in [TAB_GUID, "EFI_PLABEL", "PAL_CALL_RETURN"]:
241 for i in range(TypedefStart, TypedefEnd+1):
242 Lines[i] = "\n"
243
244 # save all lines trimmed
245 try:
246 with open(Target, 'w') as File:
247 File.writelines(Lines)
248 except:
249 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=Target)
250
251 ## Read the content ASL file, including ASL included, recursively
252 #
253 # @param Source File to be read
254 # @param Indent Spaces before the Include() statement
255 # @param IncludePathList The list of external include file
256 # @param LocalSearchPath If LocalSearchPath is specified, this path will be searched
257 # first for the included file; otherwise, only the path specified
258 # in the IncludePathList will be searched.
259 #
260 def DoInclude(Source, Indent='', IncludePathList=[], LocalSearchPath=None, IncludeFileList = None, filetype=None):
261 NewFileContent = []
262 if IncludeFileList is None:
263 IncludeFileList = []
264 try:
265 #
266 # Search LocalSearchPath first if it is specified.
267 #
268 if LocalSearchPath:
269 SearchPathList = [LocalSearchPath] + IncludePathList
270 else:
271 SearchPathList = IncludePathList
272
273 for IncludePath in SearchPathList:
274 IncludeFile = os.path.join(IncludePath, Source)
275 if os.path.isfile(IncludeFile):
276 try:
277 with open(IncludeFile, "r") as File:
278 F = File.readlines()
279 except:
280 with codecs.open(IncludeFile, "r", encoding='utf-8') as File:
281 F = File.readlines()
282 break
283 else:
284 EdkLogger.warn("Trim", "Failed to find include file %s" % Source)
285 return []
286 except:
287 EdkLogger.warn("Trim", FILE_OPEN_FAILURE, ExtraData=Source)
288 return []
289
290
291 # avoid A "include" B and B "include" A
292 IncludeFile = os.path.abspath(os.path.normpath(IncludeFile))
293 if IncludeFile in gIncludedAslFile:
294 EdkLogger.warn("Trim", "Circular include",
295 ExtraData= "%s -> %s" % (" -> ".join(gIncludedAslFile), IncludeFile))
296 return []
297 gIncludedAslFile.append(IncludeFile)
298 IncludeFileList.append(IncludeFile.strip())
299 for Line in F:
300 LocalSearchPath = None
301 if filetype == "ASL":
302 Result = gAslIncludePattern.findall(Line)
303 if len(Result) == 0:
304 Result = gAslCIncludePattern.findall(Line)
305 if len(Result) == 0 or os.path.splitext(Result[0][1])[1].lower() not in [".asl", ".asi"]:
306 NewFileContent.append("%s%s" % (Indent, Line))
307 continue
308 #
309 # We should first search the local directory if current file are using pattern #include "XXX"
310 #
311 if Result[0][2] == '"':
312 LocalSearchPath = os.path.dirname(IncludeFile)
313 CurrentIndent = Indent + Result[0][0]
314 IncludedFile = Result[0][1]
315 NewFileContent.extend(DoInclude(IncludedFile, CurrentIndent, IncludePathList, LocalSearchPath,IncludeFileList,filetype))
316 NewFileContent.append("\n")
317 elif filetype == "ASM":
318 Result = gIncludePattern.findall(Line)
319 if len(Result) == 0:
320 NewFileContent.append("%s%s" % (Indent, Line))
321 continue
322
323 IncludedFile = Result[0]
324
325 IncludedFile = IncludedFile.strip()
326 IncludedFile = os.path.normpath(IncludedFile)
327 NewFileContent.extend(DoInclude(IncludedFile, '', IncludePathList, LocalSearchPath,IncludeFileList,filetype))
328 NewFileContent.append("\n")
329
330 gIncludedAslFile.pop()
331
332 return NewFileContent
333
334
335 ## Trim ASL file
336 #
337 # Replace ASL include statement with the content the included file
338 #
339 # @param Source File to be trimmed
340 # @param Target File to store the trimmed content
341 # @param IncludePathFile The file to log the external include path
342 #
343 def TrimAslFile(Source, Target, IncludePathFile,AslDeps = False):
344 CreateDirectory(os.path.dirname(Target))
345
346 SourceDir = os.path.dirname(Source)
347 if SourceDir == '':
348 SourceDir = '.'
349
350 #
351 # Add source directory as the first search directory
352 #
353 IncludePathList = [SourceDir]
354
355 #
356 # If additional include path file is specified, append them all
357 # to the search directory list.
358 #
359 if IncludePathFile:
360 try:
361 LineNum = 0
362 with open(IncludePathFile, 'r') as File:
363 FileLines = File.readlines()
364 for Line in FileLines:
365 LineNum += 1
366 if Line.startswith("/I") or Line.startswith ("-I"):
367 IncludePathList.append(Line[2:].strip())
368 else:
369 EdkLogger.warn("Trim", "Invalid include line in include list file.", IncludePathFile, LineNum)
370 except:
371 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=IncludePathFile)
372 AslIncludes = []
373 Lines = DoInclude(Source, '', IncludePathList,IncludeFileList=AslIncludes,filetype='ASL')
374 AslIncludes = [item for item in AslIncludes if item !=Source]
375 if AslDeps and AslIncludes:
376 SaveFileOnChange(os.path.join(os.path.dirname(Target),os.path.basename(Source))+".trim.deps", " \\\n".join([Source+":"] +AslIncludes),False)
377
378 #
379 # Undef MIN and MAX to avoid collision in ASL source code
380 #
381 Lines.insert(0, "#undef MIN\n#undef MAX\n")
382
383 # save all lines trimmed
384 try:
385 with open(Target, 'w') as File:
386 File.writelines(Lines)
387 except:
388 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=Target)
389
390 ## Trim ASM file
391 #
392 # Output ASM include statement with the content the included file
393 #
394 # @param Source File to be trimmed
395 # @param Target File to store the trimmed content
396 # @param IncludePathFile The file to log the external include path
397 #
398 def TrimAsmFile(Source, Target, IncludePathFile):
399 CreateDirectory(os.path.dirname(Target))
400
401 SourceDir = os.path.dirname(Source)
402 if SourceDir == '':
403 SourceDir = '.'
404
405 #
406 # Add source directory as the first search directory
407 #
408 IncludePathList = [SourceDir]
409 #
410 # If additional include path file is specified, append them all
411 # to the search directory list.
412 #
413 if IncludePathFile:
414 try:
415 LineNum = 0
416 with open(IncludePathFile, 'r') as File:
417 FileLines = File.readlines()
418 for Line in FileLines:
419 LineNum += 1
420 if Line.startswith("/I") or Line.startswith ("-I"):
421 IncludePathList.append(Line[2:].strip())
422 else:
423 EdkLogger.warn("Trim", "Invalid include line in include list file.", IncludePathFile, LineNum)
424 except:
425 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=IncludePathFile)
426 AsmIncludes = []
427 Lines = DoInclude(Source, '', IncludePathList,IncludeFileList=AsmIncludes,filetype='ASM')
428 AsmIncludes = [item for item in AsmIncludes if item != Source]
429 if AsmIncludes:
430 SaveFileOnChange(os.path.join(os.path.dirname(Target),os.path.basename(Source))+".trim.deps", " \\\n".join([Source+":"] +AsmIncludes),False)
431 # save all lines trimmed
432 try:
433 with open(Target, 'w') as File:
434 File.writelines(Lines)
435 except:
436 EdkLogger.error("Trim", FILE_OPEN_FAILURE, ExtraData=Target)
437
438 def GenerateVfrBinSec(ModuleName, DebugDir, OutputFile):
439 VfrNameList = []
440 if os.path.isdir(DebugDir):
441 for CurrentDir, Dirs, Files in os.walk(DebugDir):
442 for FileName in Files:
443 Name, Ext = os.path.splitext(FileName)
444 if Ext == '.c' and Name != 'AutoGen':
445 VfrNameList.append (Name + 'Bin')
446
447 VfrNameList.append (ModuleName + 'Strings')
448
449 EfiFileName = os.path.join(DebugDir, ModuleName + '.efi')
450 MapFileName = os.path.join(DebugDir, ModuleName + '.map')
451 VfrUniOffsetList = GetVariableOffset(MapFileName, EfiFileName, VfrNameList)
452
453 if not VfrUniOffsetList:
454 return
455
456 try:
457 fInputfile = open(OutputFile, "wb+")
458 except:
459 EdkLogger.error("Trim", FILE_OPEN_FAILURE, "File open failed for %s" %OutputFile, None)
460
461 # Use a instance of BytesIO to cache data
462 fStringIO = BytesIO()
463
464 for Item in VfrUniOffsetList:
465 if (Item[0].find("Strings") != -1):
466 #
467 # UNI offset in image.
468 # GUID + Offset
469 # { 0x8913c5e0, 0x33f6, 0x4d86, { 0x9b, 0xf1, 0x43, 0xef, 0x89, 0xfc, 0x6, 0x66 } }
470 #
471 UniGuid = b'\xe0\xc5\x13\x89\xf63\x86M\x9b\xf1C\xef\x89\xfc\x06f'
472 fStringIO.write(UniGuid)
473 UniValue = pack ('Q', int (Item[1], 16))
474 fStringIO.write (UniValue)
475 else:
476 #
477 # VFR binary offset in image.
478 # GUID + Offset
479 # { 0xd0bc7cb4, 0x6a47, 0x495f, { 0xaa, 0x11, 0x71, 0x7, 0x46, 0xda, 0x6, 0xa2 } };
480 #
481 VfrGuid = b'\xb4|\xbc\xd0Gj_I\xaa\x11q\x07F\xda\x06\xa2'
482 fStringIO.write(VfrGuid)
483 type (Item[1])
484 VfrValue = pack ('Q', int (Item[1], 16))
485 fStringIO.write (VfrValue)
486
487 #
488 # write data into file.
489 #
490 try :
491 fInputfile.write (fStringIO.getvalue())
492 except:
493 EdkLogger.error("Trim", FILE_WRITE_FAILURE, "Write data to file %s failed, please check whether the file been locked or using by other applications." %OutputFile, None)
494
495 fStringIO.close ()
496 fInputfile.close ()
497
498
499 ## Parse command line options
500 #
501 # Using standard Python module optparse to parse command line option of this tool.
502 #
503 # @retval Options A optparse.Values object containing the parsed options
504 # @retval InputFile Path of file to be trimmed
505 #
506 def Options():
507 OptionList = [
508 make_option("-s", "--source-code", dest="FileType", const="SourceCode", action="store_const",
509 help="The input file is preprocessed source code, including C or assembly code"),
510 make_option("-r", "--vfr-file", dest="FileType", const="Vfr", action="store_const",
511 help="The input file is preprocessed VFR file"),
512 make_option("--Vfr-Uni-Offset", dest="FileType", const="VfrOffsetBin", action="store_const",
513 help="The input file is EFI image"),
514 make_option("--asl-deps", dest="AslDeps", const="True", action="store_const",
515 help="Generate Asl dependent files."),
516 make_option("-a", "--asl-file", dest="FileType", const="Asl", action="store_const",
517 help="The input file is ASL file"),
518 make_option( "--asm-file", dest="FileType", const="Asm", action="store_const",
519 help="The input file is asm file"),
520 make_option("-c", "--convert-hex", dest="ConvertHex", action="store_true",
521 help="Convert standard hex format (0xabcd) to MASM format (abcdh)"),
522
523 make_option("-l", "--trim-long", dest="TrimLong", action="store_true",
524 help="Remove postfix of long number"),
525 make_option("-i", "--include-path-file", dest="IncludePathFile",
526 help="The input file is include path list to search for ASL include file"),
527 make_option("-o", "--output", dest="OutputFile",
528 help="File to store the trimmed content"),
529 make_option("--ModuleName", dest="ModuleName", help="The module's BASE_NAME"),
530 make_option("--DebugDir", dest="DebugDir",
531 help="Debug Output directory to store the output files"),
532 make_option("-v", "--verbose", dest="LogLevel", action="store_const", const=EdkLogger.VERBOSE,
533 help="Run verbosely"),
534 make_option("-d", "--debug", dest="LogLevel", type="int",
535 help="Run with debug information"),
536 make_option("-q", "--quiet", dest="LogLevel", action="store_const", const=EdkLogger.QUIET,
537 help="Run quietly"),
538 make_option("-?", action="help", help="show this help message and exit"),
539 ]
540
541 # use clearer usage to override default usage message
542 UsageString = "%prog [-s|-r|-a|--Vfr-Uni-Offset] [-c] [-v|-d <debug_level>|-q] [-i <include_path_file>] [-o <output_file>] [--ModuleName <ModuleName>] [--DebugDir <DebugDir>] [<input_file>]"
543
544 Parser = OptionParser(description=__copyright__, version=__version__, option_list=OptionList, usage=UsageString)
545 Parser.set_defaults(FileType="Vfr")
546 Parser.set_defaults(ConvertHex=False)
547 Parser.set_defaults(LogLevel=EdkLogger.INFO)
548
549 Options, Args = Parser.parse_args()
550
551 # error check
552 if Options.FileType == 'VfrOffsetBin':
553 if len(Args) == 0:
554 return Options, ''
555 elif len(Args) > 1:
556 EdkLogger.error("Trim", OPTION_NOT_SUPPORTED, ExtraData=Parser.get_usage())
557 if len(Args) == 0:
558 EdkLogger.error("Trim", OPTION_MISSING, ExtraData=Parser.get_usage())
559 if len(Args) > 1:
560 EdkLogger.error("Trim", OPTION_NOT_SUPPORTED, ExtraData=Parser.get_usage())
561
562 InputFile = Args[0]
563 return Options, InputFile
564
565 ## Entrance method
566 #
567 # This method mainly dispatch specific methods per the command line options.
568 # If no error found, return zero value so the caller of this tool can know
569 # if it's executed successfully or not.
570 #
571 # @retval 0 Tool was successful
572 # @retval 1 Tool failed
573 #
574 def Main():
575 try:
576 EdkLogger.Initialize()
577 CommandOptions, InputFile = Options()
578 if CommandOptions.LogLevel < EdkLogger.DEBUG_9:
579 EdkLogger.SetLevel(CommandOptions.LogLevel + 1)
580 else:
581 EdkLogger.SetLevel(CommandOptions.LogLevel)
582 except FatalError as X:
583 return 1
584
585 try:
586 if CommandOptions.FileType == "Vfr":
587 if CommandOptions.OutputFile is None:
588 CommandOptions.OutputFile = os.path.splitext(InputFile)[0] + '.iii'
589 TrimPreprocessedVfr(InputFile, CommandOptions.OutputFile)
590 elif CommandOptions.FileType == "Asl":
591 if CommandOptions.OutputFile is None:
592 CommandOptions.OutputFile = os.path.splitext(InputFile)[0] + '.iii'
593 TrimAslFile(InputFile, CommandOptions.OutputFile, CommandOptions.IncludePathFile,CommandOptions.AslDeps)
594 elif CommandOptions.FileType == "VfrOffsetBin":
595 GenerateVfrBinSec(CommandOptions.ModuleName, CommandOptions.DebugDir, CommandOptions.OutputFile)
596 elif CommandOptions.FileType == "Asm":
597 TrimAsmFile(InputFile, CommandOptions.OutputFile, CommandOptions.IncludePathFile)
598 else :
599 if CommandOptions.OutputFile is None:
600 CommandOptions.OutputFile = os.path.splitext(InputFile)[0] + '.iii'
601 TrimPreprocessedFile(InputFile, CommandOptions.OutputFile, CommandOptions.ConvertHex, CommandOptions.TrimLong)
602 except FatalError as X:
603 import platform
604 import traceback
605 if CommandOptions is not None and CommandOptions.LogLevel <= EdkLogger.DEBUG_9:
606 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc())
607 return 1
608 except:
609 import traceback
610 import platform
611 EdkLogger.error(
612 "\nTrim",
613 CODE_ERROR,
614 "Unknown fatal error when trimming [%s]" % InputFile,
615 ExtraData="\n(Please send email to %s for help, attaching following call stack trace!)\n" % MSG_EDKII_MAIL_ADDR,
616 RaiseError=False
617 )
618 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc())
619 return 1
620
621 return 0
622
623 if __name__ == '__main__':
624 r = Main()
625 ## 0-127 is a safe return range, and 1 is a standard default error
626 if r < 0 or r > 127: r = 1
627 sys.exit(r)
628