]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/Python/GenFds/VerSection.py
BaseTools: Replace StandardError with Expression
[mirror_edk2.git] / BaseTools / Source / Python / GenFds / VerSection.py
CommitLineData
30fdf114
LG
1## @file\r
2# process Version section generation\r
3#\r
37de70b7 4# Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>\r
30fdf114 5#\r
40d841f6 6# This program and the accompanying materials\r
30fdf114
LG
7# are licensed and made available under the terms and conditions of the BSD License\r
8# which accompanies this distribution. The full text of the license may be found at\r
9# http://opensource.org/licenses/bsd-license.php\r
10#\r
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13#\r
14\r
15##\r
16# Import Modules\r
17#\r
18from Ffs import Ffs\r
19import Section\r
1be2ed90 20import Common.LongFilePathOs as os\r
30fdf114
LG
21import subprocess\r
22from GenFdsGlobalVariable import GenFdsGlobalVariable\r
23from CommonDataClass.FdfClass import VerSectionClassObject\r
1be2ed90 24from Common.LongFilePathSupport import OpenLongFilePath as open\r
8bb63e37 25from Common.DataType import SUP_MODULE_SEC\r
30fdf114
LG
26\r
27## generate version section\r
28#\r
29#\r
30class VerSection (VerSectionClassObject):\r
31\r
32 ## The constructor\r
33 #\r
34 # @param self The object pointer\r
35 #\r
36 def __init__(self):\r
37 VerSectionClassObject.__init__(self)\r
38\r
39 ## GenSection() method\r
40 #\r
41 # Generate version section\r
42 #\r
43 # @param self The object pointer\r
44 # @param OutputPath Where to place output file\r
45 # @param ModuleName Which module this section belongs to\r
46 # @param SecNum Index of section\r
47 # @param KeyStringList Filter for inputs of section generation\r
48 # @param FfsInf FfsInfStatement object that contains this section data\r
49 # @param Dict dictionary contains macro and its value\r
50 # @retval tuple (Generated file name, section alignment)\r
51 #\r
37de70b7 52 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}, IsMakefile = False):\r
30fdf114
LG
53 #\r
54 # Prepare the parameter of GenSection\r
55 #\r
4231a819 56 if FfsInf is not None:\r
30fdf114
LG
57 self.Alignment = FfsInf.__ExtendMacro__(self.Alignment)\r
58 self.BuildNum = FfsInf.__ExtendMacro__(self.BuildNum)\r
59 self.StringData = FfsInf.__ExtendMacro__(self.StringData)\r
60 self.FileName = FfsInf.__ExtendMacro__(self.FileName)\r
61\r
62 OutputFile = os.path.join(OutputPath,\r
8bb63e37 63 ModuleName + SUP_MODULE_SEC + SecNum + Ffs.SectionSuffix.get('VERSION'))\r
30fdf114
LG
64 OutputFile = os.path.normpath(OutputFile)\r
65\r
66 # Get String Data\r
67 StringData = ''\r
4231a819 68 if self.StringData is not None:\r
37de70b7 69 StringData = self.StringData\r
4231a819 70 elif self.FileName is not None:\r
30fdf114
LG
71 FileNameStr = GenFdsGlobalVariable.ReplaceWorkspaceMacro(self.FileName)\r
72 FileNameStr = GenFdsGlobalVariable.MacroExtend(FileNameStr, Dict)\r
73 FileObj = open(FileNameStr, 'r')\r
74 StringData = FileObj.read()\r
75 StringData = '"' + StringData + '"'\r
76 FileObj.close()\r
77 else:\r
78 StringData = ''\r
9979bab7 79 GenFdsGlobalVariable.GenerateSection(OutputFile, [], 'EFI_SECTION_VERSION',\r
37de70b7 80 Ver=StringData, BuildNumber=self.BuildNum, IsMakefile=IsMakefile)\r
30fdf114
LG
81 OutputFileList = []\r
82 OutputFileList.append(OutputFile)\r
83 return OutputFileList, self.Alignment\r