2 This file is to define nested element which is meant for specifying a tool
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 package org
.tianocore
.framework
.tasks
;
16 import java
.io
.DataInputStream
;
17 import java
.io
.DataOutputStream
;
19 import java
.io
.FileInputStream
;
20 import java
.util
.ArrayList
;
21 import java
.util
.Iterator
;
22 import java
.util
.List
;
24 import org
.apache
.tools
.ant
.BuildException
;
27 Class Tool is to define an external tool to be used for genffsfile
29 public class Tool
implements EfiDefine
, Section
{
32 List
<Object
> toolArgList
= new ArrayList
<Object
>();
34 String outPutFileName
;
35 List
<Input
> inputFiles
= new ArrayList
<Input
>();
40 @param buffer The buffer to put the result with alignment
42 public void toBuffer (DataOutputStream buffer
){
51 } catch (Exception e
) {
52 throw new BuildException("Call to executeTool failed!\n");
56 /// check if file exist
58 OutputFile
= new File (this.outPutFileName
);
59 long fileLen
= OutputFile
.length();
60 if (!OutputFile
.exists()) {
61 throw new BuildException("The file " + outPutFileName
+ " does not exist!\n");
65 /// Read output file and write it's cotains to buffer
68 FileInputStream fs
= new FileInputStream (this.outPutFileName
);
69 DataInputStream In
= new DataInputStream (fs
);
74 buffer
.writeByte(data
);
81 while ((fileLen
& 0x03) != 0) {
87 } catch (Exception e
) {
88 System
.out
.print(e
.getMessage());
89 throw new BuildException("Tool call, toBuffer failed!\n");
94 /// execute external tool for genffsfile
96 private void executeTool () {
100 Iterator argIter
= toolArgList
.iterator();
101 Iterator inputIter
= inputFiles
.iterator();
106 /// argument of tools
108 while (argIter
.hasNext()) {
109 toolArg
= (ToolArg
)argIter
.next();
110 argument
= argument
+ toolArg
.getLine() + " ";
115 /// input files for tools
117 argument
= argument
+ "-i ";
118 while (inputIter
.hasNext()) {
119 file
= (Input
)inputIter
.next();
120 argument
= argument
+ file
.getFile() + " ";
123 outPutFileName
= outputPath
+ File
.separatorChar
+ (new File(file
.getFile())).getName() + ".crc";
124 argument
= argument
+ " -o " + outPutFileName
;
129 /// execute command line
131 Process crcProcess
= Runtime
.getRuntime().exec(command
+ " " + argument
);
132 crcProcess
.waitFor();
133 } catch (Exception e
) {
134 System
.out
.print (e
.getMessage());
135 throw new BuildException("Execution of externalTool task failed!\n");
140 Add method of ANT task/datatype for nested ToolArg type of element
142 @param toolArg The ToolArg object containing arguments for the tool
144 public void addToolArg (ToolArg toolArg
) {
145 toolArgList
.add (toolArg
);
149 Get method of ANT task/datatype for attribute "OutputPath"
151 @returns The name of output path
153 public String
getOutputPath() {
158 Set method of ANT task/datatype for attribute "OutputPath"
160 @param outputPath The name of output path
162 public void setOutputPath(String outPutPath
) {
163 this.outputPath
= outPutPath
;
167 Get method of ANT task/datatype for attribute "ToolName"
169 @returns The name of the tool.
171 public String
getToolName() {
176 Set method of ANT task/datatype for attribute "ToolName"
178 @param toolName The name of the tool
180 public void setToolName(String toolName
) {
181 this.toolName
= toolName
;
185 Add method of ANT task/datatype for nested Input type of element
187 @param file The Input objec which represents a file
189 public void addInput(Input file
) {
190 inputFiles
.add(file
);