]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiCompressTask.java
Updated PeiRebase to produce a map file of the relocations done by this tool. This...
[mirror_edk2.git] / Tools / Source / FrameworkTasks / org / tianocore / framework / tasks / EfiCompressTask.java
CommitLineData
a15bb0d3 1/** @file\r
2 EfiCompressTask class.\r
3\r
4 EfiCompressTask is used to call EfiCompress.exe to strip input file.\r
5 \r
6 \r
7 Copyright (c) 2006, Intel Corporation\r
8 All rights reserved. This program and the accompanying materials\r
9 are licensed and made available under the terms and conditions of the BSD License\r
10 which accompanies this distribution. The full text of the license may be found at\r
11 http://opensource.org/licenses/bsd-license.php\r
12 \r
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15\r
16 **/\r
17package org.tianocore.framework.tasks;\r
18\r
19import java.io.File;\r
20\r
21import org.apache.tools.ant.Task;\r
22import org.apache.tools.ant.Project;\r
23import org.apache.tools.ant.BuildException;\r
24import org.apache.tools.ant.taskdefs.Execute;\r
25import org.apache.tools.ant.taskdefs.LogStreamHandler;\r
26import org.apache.tools.ant.types.Commandline;\r
27import org.tianocore.logger.EdkLog;\r
28\r
29/**\r
30 EfiCompressTask class.\r
31\r
32 EfiCompressTask is used to call EfiCompress.exe to strip input file.\r
33**/\r
34public class EfiCompressTask extends Task implements EfiDefine {\r
35 // /\r
36 // / input file\r
37 // /\r
38 private String inputFile = "";\r
39\r
40 // /\r
41 // / output file\r
42 // /\r
43 private String outputFile = "";\r
44\r
45 // /\r
46 // / output directory, this variable is added by jave wrap\r
47 // /\r
48 private String outputDir = "";\r
49\r
50 /**\r
51 * execute\r
52 * \r
53 * EfiCompressTask execute function is to assemble tool command line & execute\r
54 * tool command line\r
55 * \r
56 * @throws BuidException\r
57 */\r
58 public void execute() throws BuildException {\r
59\r
60 Project project = this.getOwningTarget().getProject();\r
61 //\r
62 // set Logger\r
63 //\r
64 FrameworkLogger logger = new FrameworkLogger(project, "eficompress");\r
65 EdkLog.setLogLevel(project.getProperty("env.LOGLEVEL"));\r
66 EdkLog.setLogger(logger);\r
67 //\r
68 // absolute path of efi tools\r
69 //\r
70 String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");\r
71 String command;\r
72 String argument;\r
73 if (path == null) {\r
74 command = "EfiCompress";\r
75 } else {\r
76 command = path + File.separatorChar + "EfiCompress";\r
77 }\r
78 //\r
79 // argument of tools\r
80 //\r
81 File file = new File(outputFile);\r
82 if (!file.isAbsolute() && (!this.outputDir.equalsIgnoreCase(""))) {\r
83 argument = inputFile + " " + outputDir + File.separatorChar\r
84 + outputFile;\r
85 } else {\r
86 argument = inputFile + " " + outputFile;\r
87 }\r
88 //\r
89 // return value of fwimage execution\r
90 //\r
91 int revl = -1;\r
92\r
93 try {\r
94 Commandline cmdline = new Commandline();\r
95 cmdline.setExecutable(command);\r
96 cmdline.createArgument().setLine(argument);\r
97\r
98 LogStreamHandler streamHandler = new LogStreamHandler(this,\r
99 Project.MSG_INFO, Project.MSG_WARN);\r
100 Execute runner = new Execute(streamHandler, null);\r
101\r
102 runner.setAntRun(project);\r
103 runner.setCommandline(cmdline.getCommandline());\r
104 //\r
105 // Set debug log information.\r
106 //\r
219e2247 107 EdkLog.log(EdkLog.EDK_VERBOSE, Commandline.toString(cmdline.getCommandline()));\r
108 EdkLog.log(EdkLog.EDK_INFO, (new File(this.inputFile)).getName());\r
a15bb0d3 109 \r
110 revl = runner.execute();\r
111 \r
112 if (EFI_SUCCESS == revl) {\r
113 //\r
114 // command execution success\r
115 //\r
219e2247 116 EdkLog.log(EdkLog.EDK_VERBOSE, "EfiCompress succeeded!");\r
a15bb0d3 117 } else {\r
118 //\r
119 // command execution fail\r
120 //\r
219e2247 121 EdkLog.log(EdkLog.EDK_INFO, "ERROR = " + Integer.toHexString(revl));\r
122 throw new BuildException("Strip failed!");\r
a15bb0d3 123\r
124 }\r
125 } catch (Exception e) {\r
126 throw new BuildException(e.getMessage());\r
127 }\r
128 }\r
129\r
130 /**\r
131 * getInputFile\r
132 * \r
133 * This function is to get class member "inputFile".\r
134 * \r
135 * @return string of input file name.\r
136 */\r
137 public String getInputFile() {\r
138 return inputFile;\r
139 }\r
140\r
141 /**\r
142 * setComponentType\r
143 * \r
144 * This function is to set class member "inputFile".\r
145 * \r
146 * @param inputFile\r
147 * string of input file name.\r
148 */\r
149 public void setInputFile(String inputFile) {\r
150 this.inputFile = inputFile;\r
151 }\r
152\r
153 /**\r
154 * getOutputFile\r
155 * \r
156 * This function is to get class member "outputFile"\r
157 * \r
158 * @return outputFile string of output file name.\r
159 */\r
160 public String getOutputFile() {\r
161 return outputFile;\r
162 }\r
163\r
164 /**\r
165 * setOutputFile\r
166 * \r
167 * This function is to set class member "outputFile"\r
168 * \r
169 * @param outputFile\r
170 * string of output file name.\r
171 */\r
172 public void setOutputFile(String outputFile) {\r
173 this.outputFile = outputFile;\r
174 }\r
175\r
176 /**\r
177 * getOutputDir\r
178 * \r
179 * This function is to get class member "outputDir"\r
180 * \r
181 * @return outputDir string of output directory.\r
182 */\r
183 public String getOutputDir() {\r
184 return outputDir;\r
185 }\r
186\r
187 /**\r
188 * setOutputDir\r
189 * \r
190 * This function is to set class member "outputDir"\r
191 * \r
192 * @param outputDir\r
193 * string of output directory.\r
194 */\r
195 public void setOutputDir(String outputDir) {\r
196 this.outputDir = outputDir;\r
197 }\r
198}\r