]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Tools/Java/Source/FrameworkTasks/org/tianocore/framework/tasks/GenSectionTask.java
- Fixed EDKT240. Now the Blank.pad file for alignment purpose will no longer be needed.
[mirror_edk2.git] / Tools / Java / Source / FrameworkTasks / org / tianocore / framework / tasks / GenSectionTask.java
... / ...
CommitLineData
1/** @file\r
2 GenSectionTask class.\r
3\r
4 GenSectionTask is to call GenSection.exe to generate Section.\r
5 \r
6 Copyright (c) 2006, Intel Corporation\r
7 All rights reserved. This program and the accompanying materials\r
8 are licensed and made available under the terms and conditions of the BSD License\r
9 which accompanies this distribution. The full text of the license may be found at\r
10 http://opensource.org/licenses/bsd-license.php\r
11 \r
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14 \r
15**/\r
16\r
17package org.tianocore.framework.tasks;\r
18\r
19import java.io.ByteArrayOutputStream;\r
20import java.io.DataOutputStream;\r
21import java.io.File;\r
22import java.util.ArrayList;\r
23import java.util.Iterator;\r
24import java.util.List;\r
25\r
26import org.apache.tools.ant.BuildException;\r
27import org.apache.tools.ant.Project;\r
28import org.apache.tools.ant.Task;\r
29import org.apache.tools.ant.taskdefs.Execute;\r
30import org.apache.tools.ant.taskdefs.LogStreamHandler;\r
31import org.apache.tools.ant.types.Commandline;\r
32import org.tianocore.common.logger.EdkLog;\r
33\r
34public class GenSectionTask extends Task implements EfiDefine, Section, FfsTypes {\r
35 private int alignment = 0;\r
36 //\r
37 // Tool name\r
38 // \r
39 private final static String toolName = "GenSection";\r
40 //\r
41 // inputfile name\r
42 //\r
43 private FileArg inputFile = new FileArg();\r
44\r
45 //\r
46 // outputfile name\r
47 //\r
48 private FileArg outputFile = new FileArg();\r
49\r
50 //\r
51 // section type\r
52 //\r
53 private ToolArg sectionType = new ToolArg();\r
54\r
55 //\r
56 // version number\r
57 //\r
58 private ToolArg versionNum = new ToolArg();\r
59\r
60 //\r
61 // interface string\r
62 //\r
63 private ToolArg interfaceString = new ToolArg();\r
64\r
65 //\r
66 // Section file list\r
67 //\r
68 private List<Section> sectFileList = new ArrayList<Section>();\r
69\r
70 //\r
71 // flag indicated the <tool> element\r
72 //\r
73 private boolean haveTool = false;\r
74\r
75 /**\r
76 execute\r
77 \r
78 GenSectionTaks execute is to assemble tool command line & execute tool\r
79 command line.\r
80 \r
81 @throws BuildException\r
82 **/\r
83 public void execute() throws BuildException {\r
84 String command;\r
85 Project project = this.getOwningTarget().getProject();\r
86 //\r
87 // absolute path of efi tools\r
88 //\r
89 String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");\r
90 if (path == null) {\r
91 command = toolName;\r
92 } else {\r
93 command = path + File.separator + toolName;\r
94 }\r
95 //\r
96 // argument of tools\r
97 //\r
98 String argument = "" + inputFile + outputFile + sectionType + versionNum + interfaceString;\r
99 //\r
100 // return value of gensection execution\r
101 //\r
102 int revl = -1;\r
103\r
104 try {\r
105 Commandline cmdline = new Commandline();\r
106 cmdline.setExecutable(command);\r
107 cmdline.createArgument().setLine(argument);\r
108\r
109 LogStreamHandler streamHandler = new LogStreamHandler(this,\r
110 Project.MSG_INFO, Project.MSG_WARN);\r
111 Execute runner = new Execute(streamHandler, null);\r
112\r
113 runner.setAntRun(project);\r
114 runner.setCommandline(cmdline.getCommandline());\r
115\r
116 EdkLog.log(this, inputFile.toFileList() + versionNum.getValue() \r
117 + interfaceString.getValue() + " => " + outputFile.toFileList());\r
118 EdkLog.log(this, EdkLog.EDK_VERBOSE, Commandline.toString(cmdline.getCommandline()));\r
119\r
120 revl = runner.execute();\r
121 if (EFI_SUCCESS == revl) {\r
122 EdkLog.log(this, EdkLog.EDK_VERBOSE, toolName + " succeeded!");\r
123 } else {\r
124 //\r
125 // command execution fail\r
126 //\r
127 EdkLog.log(this, EdkLog.EDK_INFO, "ERROR = " + Integer.toHexString(revl));\r
128 throw new BuildException(toolName + " failed!");\r
129 }\r
130 } catch (Exception e) {\r
131 throw new BuildException(e.getMessage());\r
132 }\r
133 }\r
134\r
135 /**\r
136 getInputFile\r
137 \r
138 This function is to get class member "inputFile".\r
139 \r
140 @return name of input file\r
141 **/\r
142 public String getInputFile() {\r
143 return this.inputFile.getValue();\r
144 }\r
145\r
146 /**\r
147 setInputFile\r
148 \r
149 This function is to set class member "inputFile".\r
150 \r
151 @param inputFile name of input file\r
152 **/\r
153 public void setInputFile(String inputFile) {\r
154 this.inputFile.setArg(" -i ", inputFile);\r
155 }\r
156\r
157 /**\r
158 getOutputFile\r
159 \r
160 This function is to get class member "outputFile".\r
161 \r
162 @return name of output file\r
163 **/\r
164 public String getOutputFile() {\r
165 return this.outputFile.getValue();\r
166 }\r
167\r
168 /**\r
169 setOutputfile\r
170 \r
171 This function is to set class member "outputFile".\r
172 @param outputFile name of output file\r
173 **/\r
174 public void setOutputfile(String outputFile) {\r
175 this.outputFile.setArg(" -o ", outputFile);\r
176 }\r
177\r
178 /**\r
179 getSectionType\r
180 \r
181 This function is to get class member "sectionType".\r
182 \r
183 @return sectoin type\r
184 **/\r
185 public String getSectionType() {\r
186 return this.sectionType.getValue();\r
187 }\r
188\r
189 /**\r
190 setSectionType\r
191 \r
192 This function is to set class member "sectionType".\r
193 \r
194 @param sectionType section type\r
195 **/\r
196 public void setSectionType(String sectionType) {\r
197 this.sectionType.setArg(" -s ", sectionType);\r
198 }\r
199\r
200 /**\r
201 getVersionNum\r
202 \r
203 This function is to get class member "versionNum".\r
204 @return version number\r
205 **/\r
206 public String getVersionNum() {\r
207 return this.versionNum.getValue();\r
208 }\r
209\r
210 /**\r
211 setVersionNume\r
212 \r
213 This function is to set class member "versionNum".\r
214 @param versionNum version number\r
215 **/\r
216 public void setVersionNum(String versionNum) {\r
217 this.versionNum.setArg(" -v ", versionNum);\r
218 }\r
219\r
220 /**\r
221 getInterfaceString\r
222 \r
223 This function is to get class member "interfaceString".\r
224 @return interface string\r
225 **/\r
226 public String getInterfaceString() {\r
227 return this.interfaceString.getValue();\r
228 }\r
229\r
230 /**\r
231 setInterfaceString\r
232 \r
233 This funcion is to set class member "interfaceString".\r
234 @param interfaceString interface string\r
235 **/\r
236 public void setInterfaceString(String interfaceString) {\r
237 this.interfaceString.setArg(" -a ", "\"" + interfaceString + "\"");\r
238 }\r
239 \r
240 /**\r
241 addSectFile\r
242 \r
243 This function is to add sectFile to list.\r
244 \r
245 @param sectFile instance of sectFile.\r
246 **/\r
247 public void addSectFile(SectFile sectFile){\r
248 this.sectFileList.add(sectFile);\r
249 }\r
250\r
251 /**\r
252 setTool\r
253 \r
254 This function is to set the class member "Tool";\r
255 \r
256 @param tool \r
257 **/\r
258 public void addTool(Tool tool) {\r
259 this.sectFileList.add(tool);\r
260 this.haveTool = true;\r
261 }\r
262 \r
263 /**\r
264 addGenSection\r
265 \r
266 This function is to add GenSectin element to list\r
267 @param task Instance of genSection\r
268 **/\r
269 public void addGenSection(GenSectionTask task){\r
270 this.sectFileList.add(task);\r
271 }\r
272 \r
273 public int getAlignment() {\r
274 return alignment;\r
275 }\r
276\r
277 public void setAlignment(int alignment) {\r
278 if (alignment > 7) {\r
279 this.alignment = 7;\r
280 } else {\r
281 this.alignment = alignment;\r
282 }\r
283 }\r
284\r
285 public void toBuffer(DataOutputStream buffer){\r
286 //\r
287 // Search SectionList find earch section and call it's\r
288 // ToBuffer function.\r
289 //\r
290 if (this.sectionType.getValue().equalsIgnoreCase(\r
291 "EFI_SECTION_COMPRESSION")\r
292 && !this.haveTool) {\r
293 Section sect;\r
294\r
295 //\r
296 // Get section file in compress node.\r
297 //\r
298 try {\r
299 ByteArrayOutputStream bo = new ByteArrayOutputStream();\r
300 DataOutputStream Do = new DataOutputStream(bo);\r
301\r
302 //\r
303 // Get each section which under the compress {};\r
304 // And add it is contains to File;\r
305 //\r
306 Iterator SectionIter = this.sectFileList.iterator();\r
307 while (SectionIter.hasNext()) {\r
308 sect = (Section) SectionIter.next();\r
309\r
310 //\r
311 // Call each section class's toBuffer function.\r
312 //\r
313 try {\r
314 sect.toBuffer(Do);\r
315 } catch (BuildException e) {\r
316 System.out.print(e.getMessage());\r
317 throw new BuildException(\r
318 "Compress.toBuffer failed at section");\r
319 } finally {\r
320 if (Do != null){\r
321 Do.close();\r
322 }\r
323 }\r
324 }\r
325 //\r
326 // Call compress\r
327 //\r
328 byte[] fileBuffer = bo.toByteArray();\r
329\r
330 synchronized (CompressSection.semaphore) {\r
331 Compress myCompress = new Compress(fileBuffer,\r
332 fileBuffer.length);\r
333\r
334 //\r
335 // Add Compress header\r
336 //\r
337 CompressHeader Ch = new CompressHeader();\r
338 Ch.SectionHeader.Size[0] = (byte) ((myCompress.outputBuffer.length + Ch\r
339 .GetSize()) & 0xff);\r
340 Ch.SectionHeader.Size[1] = (byte) (((myCompress.outputBuffer.length + Ch\r
341 .GetSize()) & 0xff00) >> 8);\r
342 Ch.SectionHeader.Size[2] = (byte) (((myCompress.outputBuffer.length + Ch\r
343 .GetSize()) & 0xff0000) >> 16);\r
344 Ch.SectionHeader.type = (byte) EFI_SECTION_COMPRESSION;\r
345\r
346 //\r
347 // Note: The compressName was not efsfective now. Using the\r
348 // EFI_STANDARD_COMPRSSION for compressType .\r
349 // That is follow old Genffsfile tools. Some code will be\r
350 // added for\r
351 // the different compressName;\r
352 //\r
353 Ch.UncompressLen = fileBuffer.length;\r
354 Ch.CompressType = EFI_STANDARD_COMPRESSION;\r
355\r
356 //\r
357 // Change header struct to byte buffer\r
358 //\r
359 byte[] headerBuffer = new byte[Ch.GetSize()];\r
360 Ch.StructToBuffer(headerBuffer);\r
361\r
362 //\r
363 // First add CompressHeader to Buffer, then add Compress\r
364 // data.\r
365 //\r
366 buffer.write(headerBuffer);\r
367 buffer.write(myCompress.outputBuffer);\r
368\r
369 //\r
370 // Buffer 4 Byte aligment\r
371 //\r
372 int size = Ch.GetSize() + myCompress.outputBuffer.length;\r
373\r
374 while ((size & 0x03) != 0) {\r
375 size++;\r
376 buffer.writeByte(0);\r
377 }\r
378 }\r
379 } catch (Exception e) {\r
380 throw new BuildException("GenSection<SectionType=EFI_SECTION_COMPRESSION> to Buffer failed!\n");\r
381 } \r
382 } else {\r
383 Section sect;\r
384 Iterator sectionIter = this.sectFileList.iterator();\r
385 while (sectionIter.hasNext()) {\r
386 sect = (Section) sectionIter.next();\r
387 try {\r
388 //\r
389 // The last section don't need 4 byte ffsAligment.\r
390 //\r
391 sect.toBuffer(buffer);\r
392 } catch (Exception e) {\r
393 throw new BuildException(e.getMessage());\r
394 }\r
395 }\r
396 }\r
397 }\r
398}\r