]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Tools/Source/GenBuild/org/tianocore/build/FileProcess.java
Adjust some code format and clear some unused codes.
[mirror_edk2.git] / Tools / Source / GenBuild / org / tianocore / build / FileProcess.java
... / ...
CommitLineData
1/** @file\r
2 File is FileProcess class which is used to generate ANT script to build \r
3 source files. \r
4 \r
5Copyright (c) 2006, Intel Corporation\r
6All rights reserved. This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13**/\r
14package org.tianocore.build;\r
15\r
16import java.io.File;\r
17import java.util.Set;\r
18\r
19import org.apache.tools.ant.BuildException;\r
20import org.apache.tools.ant.Project;\r
21import org.w3c.dom.Document;\r
22import org.w3c.dom.Element;\r
23import org.w3c.dom.Node;\r
24\r
25/**\r
26 <p><code>FileProcess</code> is class to generate ANT script to build source\r
27 files.</p>\r
28 \r
29 <p>If file does not specify file type, <code>FileProcess</code> will judge \r
30 by its extension. Following is the current supported extensions. </p>\r
31 \r
32 <pre> \r
33 Source File Suffix File Type Description\r
34 .h CHeader C header file\r
35 .c CCode C source file\r
36 .inc ASMHeader Assembly header file\r
37 .asm ASM Assembly source file, usually for IA32 and X64 Arch and MSFT tool chain\r
38 .S ASM Assembly source file, usually for IPF Arch\r
39 .s ASM Assembly source file, usually for IA32 and X64 Arch and GCC tool chain\r
40 .uni UNI Unicode file\r
41 .vfr VFR Visual Forms Representation File\r
42 .fv FV Firmware Volume\r
43 .SEC FFS Firmware File System file\r
44 .PEI FFS Firmware File System file\r
45 .DXE FFS Firmware File System file\r
46 .APP FFS Firmware File System file\r
47 .FVI FFS Firmware File System file\r
48 .FFS FFS Firmware File System file\r
49 .bmp BMP Graphic File\r
50 .i PPCode IPF PreProcessor Code\r
51 </pre>\r
52 \r
53 @since GenBuild 1.0\r
54**/\r
55public class FileProcess {\r
56 ///\r
57 /// The mapping information about source suffix, result suffix, file type.\r
58 ///\r
59 public final String[][] fileTypes = { {".h", "", "CHeader" }, \r
60 {".c", "", "CCode" },\r
61 {".inc", "", "ASMHeader" },\r
62 {".asm", "", "ASM" }, \r
63 {".S", "", "ASM" },\r
64 {".s", "", "ASM" },\r
65 {".uni", "", "UNI" },\r
66 {".vfr", "", "VFR" },\r
67 {".Vfr", "", "VFR" },\r
68 {".dxs", "", "DPX"},\r
69 {".fv", "", "FV" },\r
70 {".efi", "", "EFI" },\r
71 {".SEC", "", "FFS" },\r
72 {".PEI", "", "FFS" },\r
73 {".DXE", "", "FFS" },\r
74 {".APP", "", "FFS" },\r
75 {".FYI", "", "FFS" },\r
76 {".FFS", "", "FFS" },\r
77 {".bmp", "", "BMP" },\r
78 {".i", "", "PPCode"}};\r
79 ///\r
80 /// Current ANT context. \r
81 ///\r
82 private Project project;\r
83\r
84 ///\r
85 /// Current module's include pathes\r
86 ///\r
87 private Set<String> includes;\r
88 \r
89 ///\r
90 /// Xml Document.\r
91 ///\r
92 private Document document;\r
93 \r
94 ///\r
95 /// The flag to ensure all unicode files build before others. \r
96 ///\r
97 private boolean unicodeFirst = true;\r
98 \r
99 ///\r
100 /// The flag present whether current module contains Unicode files or not.\r
101 ///\r
102 private boolean unicodeExist = false;\r
103\r
104 /**\r
105 Initialize the project, includes, sourceFiles, document members.\r
106 \r
107 @param project ANT project\r
108 @param includes Module include pathes\r
109 @param sourceFiles Modules source files\r
110 @param document XML document\r
111 **/\r
112 public void init(Project project, Set<String> includes, Document document) {\r
113 this.document = document;\r
114 this.includes = includes;\r
115 this.project = project;\r
116 }\r
117\r
118 /**\r
119 Parse file without file type. \r
120 \r
121 @param filename Source file name\r
122 @param root Root node\r
123 @param unicodeFirst whether build Unicode file firstly or not\r
124 **/\r
125 public synchronized void parseFile(String filename, Node root, boolean unicodeFirst) {\r
126 this.unicodeFirst = unicodeFirst;\r
127 parseFile(filename, root);\r
128 }\r
129 \r
130 /**\r
131 Get whether current module contains Unicode files or not.\r
132 \r
133 @return Whether current module contains Unicode files or not\r
134 **/\r
135 public boolean isUnicodeExist() {\r
136 return unicodeExist;\r
137 }\r
138\r
139 /**\r
140 Parse file.\r
141 \r
142 @param filename Source file name\r
143 @param filetype Source file type\r
144 @param root Root node\r
145 @param unicodeFirst whether build Unicode file firstly or not\r
146 **/\r
147 public synchronized void parseFile(String filename, String filetype, Node root, boolean unicodeFirst) {\r
148 this.unicodeFirst = unicodeFirst;\r
149 parseFile(filename, filetype, root);\r
150 }\r
151 \r
152 /**\r
153 Find out source file's type. \r
154 \r
155 @param filename Source file name\r
156 @param root Root node\r
157 **/\r
158 public synchronized void parseFile(String filename, Node root) throws BuildException {\r
159 for (int i = 0; i < fileTypes.length; i++) {\r
160 if (filename.endsWith(fileTypes[i][0])) {\r
161 parseFile(filename, fileTypes[i][2], root);\r
162 return ;\r
163 }\r
164 }\r
165 }\r
166\r
167 /**\r
168 Parse file. If flag <code>unicodeFirst</code> is true, then build all\r
169 unicode files firstly. \r
170 \r
171 <p>Note that AutoGen.c is processed specially. It's output path is always\r
172 <code>${DEST_DIR_OUTPUT}</code>, others are <code>${DEST_DIR_OUTPUT}</code>\r
173 and relative to module path. </p>\r
174 \r
175 @param filename Source file name\r
176 @param filetype Source file type\r
177 @param root Root node\r
178 **/\r
179 public synchronized void parseFile(String filename, String filetype, Node root) {\r
180 if (unicodeFirst) {\r
181 if ( ! filetype.equalsIgnoreCase("UNI")){\r
182 return ;\r
183 }\r
184 unicodeExist= true;\r
185 } else {\r
186 if (filetype.equalsIgnoreCase("UNI")){\r
187 return ;\r
188 }\r
189 }\r
190 \r
191 //\r
192 // If file is C or ASM header file, skip it\r
193 //\r
194 if (filetype.equalsIgnoreCase("CHeader") || filetype.equalsIgnoreCase("ASMHeader")) {\r
195 return;\r
196 }\r
197 \r
198 //\r
199 // If file is pre-processor file, skip it\r
200 // \r
201 if (filetype.equalsIgnoreCase("PPCode")) {\r
202 return;\r
203 }\r
204 \r
205 //\r
206 // If define CC_EXT in tools_def.txt file, the source file with \r
207 // different suffix is skipped\r
208 //\r
209 String toolsDefExtName = project.getProperty(filetype + "_EXT");\r
210 if (toolsDefExtName != null) {\r
211 String[] exts = toolsDefExtName.split(" ");\r
212 for (int i = 0; i < exts.length; i++) {\r
213 if ( ! filename.endsWith(exts[i])) {\r
214 return ;\r
215 }\r
216 }\r
217 }\r
218 \r
219 String module_path = project.getProperty("MODULE_DIR");\r
220 File moduleFile = new File(module_path);\r
221 File sourceFile = new File(filename);\r
222 \r
223 //\r
224 // If source file is AutoGen.c, then Filepath is .\r
225 //\r
226 String sourceFilepath = "";\r
227 String sourceFilename = "";\r
228 String sourceFileext = "";\r
229 if (sourceFile.getPath().endsWith("AutoGen.c")) {\r
230 sourceFilepath = ".";\r
231 sourceFilename = "AutoGen";\r
232 sourceFileext = ".c";\r
233 filetype = "AUTOGEN";\r
234 } else {\r
235 // sourceFile.\r
236 String str = sourceFile.getPath().substring(moduleFile.getPath().length() + 1);\r
237 int index = str.lastIndexOf(File.separatorChar);\r
238 sourceFilepath = ".";\r
239 if (index > 0) {\r
240 sourceFilepath = str.substring(0, index);\r
241 str = str.substring(index + 1);\r
242 }\r
243 sourceFilename = str;\r
244 index = str.lastIndexOf('.');\r
245 if (index > 0) {\r
246 sourceFilename = str.substring(0, index);\r
247 sourceFileext = str.substring(index);\r
248 }\r
249 }\r
250 // <Build_filetype FILEPATH="" FILENAME="" />\r
251 Element ele = document.createElement("Build_" + filetype);\r
252 ele.setAttribute("FILEPATH", sourceFilepath);\r
253 ele.setAttribute("FILENAME", sourceFilename);\r
254 ele.setAttribute("FILEEXT", sourceFileext.substring(1));\r
255 String[] includePaths = includes.toArray(new String[includes.size()]);\r
256 Element includesEle = document.createElement("EXTRA.INC");\r
257 for (int i = 0; i < includePaths.length; i++) {\r
258 Element includeEle = document.createElement("includepath");\r
259 includeEle.setAttribute("path", project.replaceProperties(includePaths[i]));\r
260 includesEle.appendChild(includeEle);\r
261 }\r
262 ele.appendChild(includesEle);\r
263 root.appendChild(ele);\r
264 }\r
265}