878ddf1f |
1 | /** @file\r |
2 | This file is ANT task GenBuild. \r |
3 | \r |
4 | The file is used to parse a specified Module, and generate its build time \r |
5 | ANT script build.xml, then call the the ANT script to build the module.\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 | package org.tianocore.build;\r |
17 | \r |
18 | import java.io.File;\r |
a29c47e0 |
19 | import java.util.Hashtable;\r |
878ddf1f |
20 | import java.util.Iterator;\r |
21 | import java.util.LinkedHashSet;\r |
22 | import java.util.List;\r |
23 | import java.util.Map;\r |
24 | import java.util.Set;\r |
a29c47e0 |
25 | import java.util.Stack;\r |
878ddf1f |
26 | import java.util.Vector;\r |
27 | import java.util.regex.Matcher;\r |
28 | import java.util.regex.Pattern;\r |
29 | \r |
878ddf1f |
30 | import org.apache.tools.ant.BuildException;\r |
878ddf1f |
31 | import org.apache.tools.ant.taskdefs.Ant;\r |
a29c47e0 |
32 | import org.apache.tools.ant.taskdefs.Property;\r |
878ddf1f |
33 | import org.apache.xmlbeans.XmlObject;\r |
878ddf1f |
34 | \r |
136adffc |
35 | import org.tianocore.build.autogen.AutoGen;\r |
878ddf1f |
36 | import org.tianocore.build.fpd.FpdParserTask;\r |
136adffc |
37 | import org.tianocore.build.global.GenBuildLogger;\r |
878ddf1f |
38 | import org.tianocore.build.global.GlobalData;\r |
39 | import org.tianocore.build.global.OutputManager;\r |
40 | import org.tianocore.build.global.SurfaceAreaQuery;\r |
a29c47e0 |
41 | import org.tianocore.build.id.FpdModuleIdentification;\r |
42 | import org.tianocore.build.id.ModuleIdentification;\r |
43 | import org.tianocore.build.id.PackageIdentification;\r |
44 | import org.tianocore.build.id.PlatformIdentification;\r |
45 | import org.tianocore.build.tools.ModuleItem;\r |
136adffc |
46 | import org.tianocore.exception.EdkException;\r |
47 | import org.tianocore.logger.EdkLog;\r |
878ddf1f |
48 | \r |
49 | /**\r |
50 | <p>\r |
51 | <code>GenBuildTask</code> is an ANT task that can be used in ANT build\r |
52 | system. The main function of this task is to parse module's surface area,\r |
53 | then generate the corresponding <em>BaseName_build.xml</em> (the real ANT\r |
a29c47e0 |
54 | build script) and call this to build the module. The whole process including:\r |
55 | 1. generate AutoGen.c and AutoGen.h; 2. build all dependent library instances; \r |
56 | 3. build all source files inlcude AutoGen.c; 4. generate sections;\r |
57 | 5. generate FFS file if it is driver module while LIB file if it is Library module. \r |
878ddf1f |
58 | </p>\r |
59 | \r |
60 | <p>\r |
61 | The usage is (take module <em>HelloWorld</em> for example):\r |
62 | </p>\r |
63 | \r |
64 | <pre>\r |
a29c47e0 |
65 | <GenBuild \r |
66 | msaFilename="HelloWorld.msa"/> \r |
67 | processTo="ALL"/>\r |
878ddf1f |
68 | </pre>\r |
69 | \r |
a29c47e0 |
70 | <p><code>processTo</code> provides a way to customize the whole build process. \r |
71 | processTo can be one value of ALL, AUTOGEN, FILES, LIBRARYINSTANCES, SECTIONS, NONE. \r |
72 | Default is ALL, means whole \r |
73 | </p>\r |
74 | \r |
878ddf1f |
75 | <p>\r |
76 | This task calls <code>AutoGen</code> to generate <em>AutoGen.c</em> and\r |
77 | <em>AutoGen.h</em>. The task also parses the development environment\r |
78 | configuration files, such as collecting package information, setting compiler\r |
79 | flags and so on.\r |
80 | </p>\r |
81 | \r |
82 | \r |
83 | @since GenBuild 1.0\r |
84 | **/\r |
a29c47e0 |
85 | public class GenBuildTask extends Ant {\r |
86 | \r |
878ddf1f |
87 | ///\r |
88 | /// Module surface area file.\r |
89 | ///\r |
a29c47e0 |
90 | File msaFile;\r |
878ddf1f |
91 | \r |
92 | ///\r |
878ddf1f |
93 | /// \r |
878ddf1f |
94 | ///\r |
a29c47e0 |
95 | private String type = "all"; // = "build";\r |
96 | \r |
878ddf1f |
97 | ///\r |
a29c47e0 |
98 | /// Module's Identification.\r |
878ddf1f |
99 | ///\r |
a29c47e0 |
100 | private ModuleIdentification moduleId;\r |
878ddf1f |
101 | \r |
a29c47e0 |
102 | private Vector<Property> properties = new Vector<Property>();\r |
de4bb9f6 |
103 | \r |
a29c47e0 |
104 | private static Stack<Hashtable> backupPropertiesStack = new Stack<Hashtable>();\r |
105 | \r |
de4bb9f6 |
106 | private boolean isSingleModuleBuild = false;\r |
a29c47e0 |
107 | \r |
878ddf1f |
108 | /**\r |
109 | Public construct method. It is necessary for ANT task.\r |
110 | **/\r |
111 | public GenBuildTask() {\r |
112 | }\r |
113 | \r |
114 | /**\r |
a29c47e0 |
115 | \r |
878ddf1f |
116 | @throws BuildException\r |
117 | From module build, exception from module surface area invalid.\r |
118 | **/\r |
119 | public void execute() throws BuildException {\r |
136adffc |
120 | //\r |
121 | // set Logger\r |
122 | //\r |
123 | GenBuildLogger logger = new GenBuildLogger(getProject());\r |
124 | EdkLog.setLogLevel(getProject().getProperty("env.LOGLEVEL"));\r |
125 | EdkLog.setLogger(logger);\r |
126 | // remove !!\r |
127 | try {\r |
a29c47e0 |
128 | pushProperties();\r |
878ddf1f |
129 | //\r |
a29c47e0 |
130 | // Enable all specified properties\r |
878ddf1f |
131 | //\r |
a29c47e0 |
132 | Iterator<Property> iter = properties.iterator();\r |
133 | while (iter.hasNext()) {\r |
134 | Property item = iter.next();\r |
135 | getProject().setProperty(item.getName(), item.getValue());\r |
878ddf1f |
136 | }\r |
a29c47e0 |
137 | \r |
878ddf1f |
138 | //\r |
a29c47e0 |
139 | // GenBuild should specify either msaFile or moduleGuid & packageGuid\r |
878ddf1f |
140 | //\r |
a29c47e0 |
141 | if (msaFile == null ) {\r |
142 | String moduleGuid = getProject().getProperty("MODULE_GUID");\r |
143 | String moduleVersion = getProject().getProperty("MODULE_VERSION");\r |
144 | String packageGuid = getProject().getProperty("PACKAGE_GUID");\r |
145 | String packageVersion = getProject().getProperty("PACKAGE_VERSION");\r |
146 | if (moduleGuid == null || packageGuid == null) {\r |
147 | throw new BuildException("GenBuild parameters error. ");\r |
878ddf1f |
148 | }\r |
a29c47e0 |
149 | PackageIdentification packageId = new PackageIdentification(packageGuid, packageVersion);\r |
150 | moduleId = new ModuleIdentification(moduleGuid, moduleVersion);\r |
151 | moduleId.setPackage(packageId);\r |
152 | Map<String, XmlObject> doc = GlobalData.getNativeMsa(moduleId);\r |
153 | SurfaceAreaQuery.setDoc(doc);\r |
154 | moduleId = SurfaceAreaQuery.getMsaHeader();\r |
878ddf1f |
155 | }\r |
a29c47e0 |
156 | else {\r |
157 | Map<String, XmlObject> doc = GlobalData.getNativeMsa(msaFile);\r |
158 | SurfaceAreaQuery.setDoc(doc);\r |
159 | moduleId = SurfaceAreaQuery.getMsaHeader();\r |
878ddf1f |
160 | }\r |
a29c47e0 |
161 | String[] producedLibraryClasses = SurfaceAreaQuery.getLibraryClasses("ALWAYS_PRODUCED");\r |
162 | if (producedLibraryClasses.length == 0) {\r |
163 | moduleId.setLibrary(false);\r |
878ddf1f |
164 | }\r |
a29c47e0 |
165 | else {\r |
166 | moduleId.setLibrary(true);\r |
878ddf1f |
167 | }\r |
a29c47e0 |
168 | \r |
878ddf1f |
169 | //\r |
a29c47e0 |
170 | // Judge whether it is single module build or not\r |
878ddf1f |
171 | //\r |
de4bb9f6 |
172 | if (isSingleModuleBuild) {\r |
878ddf1f |
173 | //\r |
a29c47e0 |
174 | // Single Module build\r |
878ddf1f |
175 | //\r |
a29c47e0 |
176 | prepareSingleModuleBuild();\r |
177 | }\r |
178 | else {\r |
179 | //\r |
180 | // Platform build. Restore the platform related info\r |
181 | //\r |
de4bb9f6 |
182 | String filename = getProject().getProperty("PLATFORM_FILE");\r |
183 | PlatformIdentification platformId = GlobalData.getPlatform(filename);\r |
a29c47e0 |
184 | getProject().setProperty("PLATFORM_DIR", platformId.getFpdFile().getParent().replaceAll("(\\\\)", "/"));\r |
185 | getProject().setProperty("PLATFORM_RELATIVE_DIR", platformId.getPlatformRelativeDir().replaceAll("(\\\\)", "/"));\r |
878ddf1f |
186 | \r |
a29c47e0 |
187 | String packageGuid = getProject().getProperty("PACKAGE_GUID");\r |
188 | String packageVersion = getProject().getProperty("PACKAGE_VERSION");\r |
189 | PackageIdentification packageId = new PackageIdentification(packageGuid, packageVersion);\r |
190 | moduleId.setPackage(packageId);\r |
878ddf1f |
191 | }\r |
a29c47e0 |
192 | \r |
193 | //\r |
194 | // If single module : intersection MSA supported ARCHs and tools def!!\r |
195 | // else, get arch from pass down\r |
196 | //\r |
197 | String[] archList = new String[0];\r |
198 | if ( getProject().getProperty("ARCH") != null ) {\r |
199 | archList = getProject().getProperty("ARCH").split(" ");\r |
878ddf1f |
200 | }\r |
a29c47e0 |
201 | else {\r |
202 | archList = GlobalData.getToolChainInfo().getArchs();\r |
878ddf1f |
203 | }\r |
a29c47e0 |
204 | \r |
205 | \r |
206 | //\r |
207 | // Judge if arch is all supported by current module. If not, throw Exception.\r |
208 | //\r |
209 | List moduleSupportedArchs = SurfaceAreaQuery.getModuleSupportedArchs();\r |
210 | if (moduleSupportedArchs != null) {\r |
211 | for (int k = 0; k < archList.length; k++) {\r |
212 | if ( ! moduleSupportedArchs.contains(archList[k])) {\r |
213 | throw new BuildException("ARCH [" + archList[k] + "] is not supported by " + moduleId + ". " + moduleId + " only supports [" + moduleSupportedArchs + "].");\r |
214 | }\r |
215 | }\r |
878ddf1f |
216 | }\r |
a29c47e0 |
217 | \r |
218 | for (int k = 0; k < archList.length; k++) {\r |
219 | getProject().setProperty("ARCH", archList[k]);\r |
220 | \r |
221 | FpdModuleIdentification fpdModuleId = new FpdModuleIdentification(moduleId, archList[k]);\r |
222 | \r |
878ddf1f |
223 | //\r |
a29c47e0 |
224 | // Whether the module is built before\r |
878ddf1f |
225 | //\r |
a29c47e0 |
226 | if (GlobalData.isModuleBuilt(fpdModuleId)) {\r |
227 | return ;\r |
228 | }\r |
229 | else {\r |
230 | GlobalData.registerBuiltModule(fpdModuleId);\r |
231 | }\r |
232 | \r |
878ddf1f |
233 | //\r |
a29c47e0 |
234 | // For Every TOOLCHAIN, TARGET\r |
235 | //\r |
236 | String[] targetList = GlobalData.getToolChainInfo().getTargets();\r |
237 | for (int i = 0; i < targetList.length; i ++){\r |
238 | //\r |
239 | // Prepare for target related common properties\r |
240 | // TARGET\r |
241 | //\r |
242 | getProject().setProperty("TARGET", targetList[i]);\r |
243 | String[] toolchainList = GlobalData.getToolChainInfo().getTagnames();\r |
244 | for(int j = 0; j < toolchainList.length; j ++){\r |
245 | //\r |
246 | // Prepare for toolchain related common properties\r |
247 | // TOOLCHAIN\r |
248 | //\r |
249 | getProject().setProperty("TOOLCHAIN", toolchainList[j]);\r |
250 | \r |
251 | System.out.println("Build " + moduleId + " start >>>");\r |
252 | System.out.println("Target: " + targetList[i] + " Tagname: " + toolchainList[j] + " Arch: " + archList[k]);\r |
253 | SurfaceAreaQuery.setDoc(GlobalData.getDoc(fpdModuleId));\r |
254 | \r |
255 | //\r |
256 | // Prepare for all other common properties\r |
257 | // PACKAGE, PACKAGE_GUID, PACKAGE_VERSION, PACKAGE_DIR, PACKAGE_RELATIVE_DIR\r |
258 | // MODULE or BASE_NAME, GUID or FILE_GUID, VERSION, MODULE_TYPE\r |
259 | // MODULE_DIR, MODULE_RELATIVE_DIR\r |
260 | // SUBSYSTEM, ENTRYPOINT, EBC_TOOL_LIB_PATH\r |
261 | // LIBS, OBJECTS, SDB_FILES\r |
262 | //\r |
263 | setModuleCommonProperties(archList[k]);\r |
264 | \r |
265 | //\r |
266 | // OutputManage prepare for \r |
267 | // BIN_DIR, DEST_DIR_DEBUG, DEST_DIR_OUTPUT, BUILD_DIR, FV_DIR\r |
268 | //\r |
269 | OutputManager.getInstance().update(getProject());\r |
270 | \r |
271 | if (type.equalsIgnoreCase("all") || type.equalsIgnoreCase("build")) {\r |
272 | applyBuild(targetList[i], toolchainList[j], fpdModuleId);\r |
273 | }\r |
274 | else if (type.equalsIgnoreCase("clean")) {\r |
275 | applyClean(fpdModuleId);\r |
276 | }\r |
277 | else if (type.equalsIgnoreCase("cleanall")) {\r |
278 | applyCleanall(fpdModuleId);\r |
279 | }\r |
280 | }\r |
281 | }\r |
878ddf1f |
282 | }\r |
a29c47e0 |
283 | popProperties();\r |
284 | }catch (Exception e){\r |
285 | e.printStackTrace();\r |
286 | throw new BuildException(e.getMessage());\r |
878ddf1f |
287 | }\r |
288 | }\r |
289 | \r |
290 | /**\r |
a29c47e0 |
291 | This method is used to prepare Platform-related information. \r |
878ddf1f |
292 | \r |
a29c47e0 |
293 | <p>In Single Module Build mode, platform-related information is not ready.\r |
294 | The method read the system environment variable <code>ACTIVE_PLATFORM</code> \r |
295 | and search in the Framework Database. Note that platform name in the Framework\r |
296 | Database must be unique. </p>\r |
297 | \r |
878ddf1f |
298 | **/\r |
a29c47e0 |
299 | private void prepareSingleModuleBuild(){\r |
878ddf1f |
300 | //\r |
a29c47e0 |
301 | // Find out the package which the module belongs to\r |
302 | // TBD: Enhance it!!!!\r |
878ddf1f |
303 | //\r |
a29c47e0 |
304 | PackageIdentification packageId = GlobalData.getPackageForModule(moduleId);\r |
305 | \r |
306 | moduleId.setPackage(packageId);\r |
307 | \r |
878ddf1f |
308 | //\r |
a29c47e0 |
309 | // Read ACTIVE_PLATFORM's FPD file (Call FpdParserTask's method)\r |
878ddf1f |
310 | //\r |
de4bb9f6 |
311 | String filename = getProject().getProperty("PLATFORM_FILE");\r |
a29c47e0 |
312 | \r |
de4bb9f6 |
313 | if (filename == null){\r |
a29c47e0 |
314 | throw new BuildException("Plese set ACTIVE_PLATFORM if you want to build a single module. ");\r |
878ddf1f |
315 | }\r |
a29c47e0 |
316 | \r |
de4bb9f6 |
317 | PlatformIdentification platformId = GlobalData.getPlatform(filename);\r |
a29c47e0 |
318 | \r |
878ddf1f |
319 | //\r |
a29c47e0 |
320 | // Read FPD file\r |
878ddf1f |
321 | //\r |
a29c47e0 |
322 | FpdParserTask fpdParser = new FpdParserTask();\r |
323 | fpdParser.setProject(getProject());\r |
324 | fpdParser.parseFpdFile(platformId.getFpdFile());\r |
325 | \r |
878ddf1f |
326 | //\r |
a29c47e0 |
327 | // Prepare for Platform related common properties\r |
328 | // PLATFORM, PLATFORM_DIR, PLATFORM_RELATIVE_DIR\r |
878ddf1f |
329 | //\r |
de4bb9f6 |
330 | getProject().setProperty("PLATFORM", platformId.getName());\r |
a29c47e0 |
331 | getProject().setProperty("PLATFORM_DIR", platformId.getFpdFile().getParent().replaceAll("(\\\\)", "/"));\r |
332 | getProject().setProperty("PLATFORM_RELATIVE_DIR", platformId.getPlatformRelativeDir().replaceAll("(\\\\)", "/"));\r |
878ddf1f |
333 | }\r |
334 | \r |
878ddf1f |
335 | \r |
336 | /**\r |
a29c47e0 |
337 | Set Module-Related information to properties.\r |
878ddf1f |
338 | **/\r |
a29c47e0 |
339 | private void setModuleCommonProperties(String arch) {\r |
878ddf1f |
340 | //\r |
a29c47e0 |
341 | // Prepare for all other common properties\r |
342 | // PACKAGE, PACKAGE_GUID, PACKAGE_VERSION, PACKAGE_DIR, PACKAGE_RELATIVE_DIR\r |
878ddf1f |
343 | //\r |
a29c47e0 |
344 | PackageIdentification packageId = moduleId.getPackage();\r |
345 | getProject().setProperty("PACKAGE", packageId.getName());\r |
346 | getProject().setProperty("PACKAGE_GUID", packageId.getGuid());\r |
347 | getProject().setProperty("PACKAGE_VERSION", packageId.getVersion());\r |
348 | getProject().setProperty("PACKAGE_DIR", packageId.getPackageDir().replaceAll("(\\\\)", "/"));\r |
349 | getProject().setProperty("PACKAGE_RELATIVE_DIR", packageId.getPackageRelativeDir().replaceAll("(\\\\)", "/"));\r |
350 | \r |
351 | //\r |
352 | // MODULE or BASE_NAME, GUID or FILE_GUID, VERSION, MODULE_TYPE\r |
353 | // MODULE_DIR, MODULE_RELATIVE_DIR\r |
354 | //\r |
355 | getProject().setProperty("MODULE", moduleId.getName());\r |
356 | String baseName = SurfaceAreaQuery.getModuleOutputFileBasename();\r |
357 | if (baseName == null) {\r |
358 | getProject().setProperty("BASE_NAME", moduleId.getName());\r |
359 | }\r |
878ddf1f |
360 | else {\r |
a29c47e0 |
361 | getProject().setProperty("BASE_NAME", baseName);\r |
362 | }\r |
363 | getProject().setProperty("GUID", moduleId.getGuid());\r |
364 | getProject().setProperty("FILE_GUID", moduleId.getGuid());\r |
365 | getProject().setProperty("VERSION", moduleId.getVersion());\r |
366 | getProject().setProperty("MODULE_TYPE", moduleId.getModuleType());\r |
367 | getProject().setProperty("MODULE_DIR", moduleId.getMsaFile().getParent().replaceAll("(\\\\)", "/"));\r |
368 | getProject().setProperty("MODULE_RELATIVE_DIR", moduleId.getModuleRelativePath().replaceAll("(\\\\)", "/"));\r |
369 | \r |
370 | //\r |
371 | // SUBSYSTEM\r |
372 | //\r |
373 | String[][] subsystemMap = { { "BASE", "EFI_BOOT_SERVICE_DRIVER"},\r |
374 | { "SEC", "EFI_BOOT_SERVICE_DRIVER" }, \r |
375 | { "PEI_CORE", "EFI_BOOT_SERVICE_DRIVER" }, \r |
376 | { "PEIM", "EFI_BOOT_SERVICE_DRIVER" }, \r |
377 | { "DXE_CORE", "EFI_BOOT_SERVICE_DRIVER" },\r |
378 | { "DXE_DRIVER", "EFI_BOOT_SERVICE_DRIVER" }, \r |
379 | { "DXE_RUNTIME_DRIVER", "EFI_RUNTIME_DRIVER" }, \r |
380 | { "DXE_SAL_DRIVER", "EFI_BOOT_SERVICE_DRIVER" }, \r |
381 | { "DXE_SMM_DRIVER", "EFI_BOOT_SERVICE_DRIVER" }, \r |
382 | { "TOOL", "EFI_BOOT_SERVICE_DRIVER" }, \r |
383 | { "UEFI_DRIVER", "EFI_BOOT_SERVICE_DRIVER" },\r |
384 | { "UEFI_APPLICATION", "EFI_APPLICATION" }, \r |
385 | { "USER_DEFINED", "EFI_BOOT_SERVICE_DRIVER"} }; \r |
386 | \r |
387 | String subsystem = "EFI_BOOT_SERVICE_DRIVER";\r |
388 | for (int i = 0; i < subsystemMap.length; i++) {\r |
389 | if (moduleId.getModuleType().equalsIgnoreCase(subsystemMap[i][0])) {\r |
390 | subsystem = subsystemMap[i][1];\r |
391 | break ;\r |
878ddf1f |
392 | }\r |
393 | }\r |
a29c47e0 |
394 | getProject().setProperty("SUBSYSTEM", subsystem);\r |
395 | \r |
396 | //\r |
397 | // ENTRYPOINT\r |
398 | //\r |
399 | if (arch.equalsIgnoreCase("EBC")) {\r |
400 | getProject().setProperty("ENTRYPOINT", "EfiStart");\r |
878ddf1f |
401 | }\r |
a29c47e0 |
402 | else {\r |
403 | getProject().setProperty("ENTRYPOINT", "_ModuleEntryPoint");\r |
878ddf1f |
404 | }\r |
a29c47e0 |
405 | \r |
878ddf1f |
406 | //\r |
a29c47e0 |
407 | // LIBS, OBJECTS, SDB_FILES\r |
878ddf1f |
408 | //\r |
a29c47e0 |
409 | getProject().setProperty("OBJECTS", "");\r |
410 | getProject().setProperty("SDB_FILES", "");\r |
411 | getProject().setProperty("LIBS", "");\r |
878ddf1f |
412 | }\r |
413 | \r |
a29c47e0 |
414 | private void getCompilerFlags(String target, String toolchain, FpdModuleIdentification fpdModuleId) throws EdkException {\r |
415 | String[] cmd = GlobalData.getToolChainInfo().getCommands();\r |
416 | for ( int m = 0; m < cmd.length; m++) {\r |
878ddf1f |
417 | //\r |
a29c47e0 |
418 | // Set cmd, like CC, DLINK\r |
878ddf1f |
419 | //\r |
a29c47e0 |
420 | String[] key = new String[]{target, toolchain, fpdModuleId.getArch(), cmd[m], null};\r |
421 | key[4] = "PATH";\r |
422 | String cmdPath = GlobalData.getCommandSetting(key, fpdModuleId);\r |
423 | key[4] = "NAME";\r |
424 | String cmdName = GlobalData.getCommandSetting(key, fpdModuleId);\r |
425 | File cmdFile = new File(cmdPath + File.separatorChar + cmdName);\r |
426 | // GlobalData.log.info("PATH: " + cmdFile.getPath());\r |
427 | getProject().setProperty(cmd[m], cmdFile.getPath().replaceAll("(\\\\)", "/"));\r |
428 | \r |
878ddf1f |
429 | //\r |
a29c47e0 |
430 | // set CC_FLAGS\r |
878ddf1f |
431 | //\r |
a29c47e0 |
432 | key[4] = "FLAGS";\r |
433 | String cmdFlags = GlobalData.getCommandSetting(key, fpdModuleId);\r |
434 | // GlobalData.log.info("Flags: " + cmdFlags);\r |
435 | Set<String> addset = new LinkedHashSet<String>();\r |
436 | Set<String> subset = new LinkedHashSet<String>();\r |
437 | putFlagsToSet(addset, cmdFlags);\r |
438 | getProject().setProperty(cmd[m] + "_FLAGS", getProject().replaceProperties(getFlags(addset, subset)));\r |
439 | \r |
878ddf1f |
440 | //\r |
a29c47e0 |
441 | // Set CC_EXT\r |
878ddf1f |
442 | //\r |
a29c47e0 |
443 | key[4] = "EXT";\r |
444 | String extName = GlobalData.getCommandSetting(key, fpdModuleId);\r |
445 | // GlobalData.log.info("Ext: " + extName);\r |
446 | if ( extName != null && ! extName.equalsIgnoreCase("")) {\r |
447 | getProject().setProperty(cmd[m] + "_EXT", extName);\r |
878ddf1f |
448 | }\r |
a29c47e0 |
449 | else {\r |
450 | getProject().setProperty(cmd[m] + "_EXT", "");\r |
878ddf1f |
451 | }\r |
a29c47e0 |
452 | \r |
878ddf1f |
453 | //\r |
a29c47e0 |
454 | // set CC_FAMILY\r |
878ddf1f |
455 | //\r |
a29c47e0 |
456 | key[4] = "FAMILY";\r |
457 | String toolChainFamily = GlobalData.getCommandSetting(key, fpdModuleId);\r |
458 | // GlobalData.log.info("FAMILY: " + toolChainFamily);\r |
459 | if (toolChainFamily != null) {\r |
460 | getProject().setProperty(cmd[m] + "_FAMILY", toolChainFamily);\r |
878ddf1f |
461 | }\r |
a29c47e0 |
462 | \r |
878ddf1f |
463 | //\r |
a29c47e0 |
464 | // set CC_SPATH\r |
878ddf1f |
465 | //\r |
a29c47e0 |
466 | key[4] = "SPATH";\r |
467 | String spath = GlobalData.getCommandSetting(key, fpdModuleId);\r |
468 | // GlobalData.log.info("SPATH: " + spath);\r |
469 | if (spath != null) {\r |
470 | getProject().setProperty(cmd[m] + "_SPATH", spath.replaceAll("(\\\\)", "/"));\r |
878ddf1f |
471 | }\r |
a29c47e0 |
472 | else {\r |
473 | getProject().setProperty(cmd[m] + "_SPATH", "");\r |
878ddf1f |
474 | }\r |
a29c47e0 |
475 | \r |
878ddf1f |
476 | //\r |
a29c47e0 |
477 | // set CC_DPATH\r |
878ddf1f |
478 | //\r |
a29c47e0 |
479 | key[4] = "DPATH";\r |
480 | String dpath = GlobalData.getCommandSetting(key, fpdModuleId);\r |
481 | // GlobalData.log.info("DPATH: " + dpath);\r |
482 | if (dpath != null) {\r |
483 | getProject().setProperty(cmd[m] + "_DPATH", dpath.replaceAll("(\\\\)", "/"));\r |
878ddf1f |
484 | }\r |
a29c47e0 |
485 | else {\r |
486 | getProject().setProperty(cmd[m] + "_DPATH", "");\r |
878ddf1f |
487 | }\r |
488 | }\r |
a29c47e0 |
489 | }\r |
490 | \r |
491 | public void setMsaFile(File msaFile) {\r |
492 | this.msaFile = msaFile;\r |
878ddf1f |
493 | }\r |
494 | \r |
495 | /**\r |
a29c47e0 |
496 | Method is for ANT to initialize MSA file. \r |
497 | \r |
498 | @param msaFilename MSA file name\r |
878ddf1f |
499 | **/\r |
a29c47e0 |
500 | public void setMsaFile(String msaFilename) {\r |
501 | String moduleDir = getProject().getProperty("MODULE_DIR");\r |
878ddf1f |
502 | \r |
a29c47e0 |
503 | //\r |
504 | // If is Single Module Build, then use the Base Dir defined in build.xml\r |
505 | //\r |
506 | if (moduleDir == null) {\r |
507 | moduleDir = getProject().getBaseDir().getPath();\r |
878ddf1f |
508 | }\r |
a29c47e0 |
509 | msaFile = new File(moduleDir + File.separatorChar + msaFilename);\r |
510 | }\r |
511 | \r |
512 | public void addConfiguredModuleItem(ModuleItem moduleItem) {\r |
513 | PackageIdentification packageId = new PackageIdentification(moduleItem.getPackageGuid(), moduleItem.getPackageVersion());\r |
514 | ModuleIdentification moduleId = new ModuleIdentification(moduleItem.getModuleGuid(), moduleItem.getModuleVersion());\r |
515 | moduleId.setPackage(packageId);\r |
516 | this.moduleId = moduleId;\r |
517 | }\r |
518 | \r |
519 | /**\r |
520 | Add a property. \r |
521 | \r |
522 | @param p property\r |
523 | **/\r |
524 | public void addProperty(Property p) {\r |
525 | properties.addElement(p);\r |
526 | }\r |
527 | \r |
528 | public void setType(String type) {\r |
529 | this.type = type;\r |
530 | }\r |
531 | \r |
532 | private void applyBuild(String buildTarget, String buildTagname, FpdModuleIdentification fpdModuleId) throws EdkException{\r |
533 | //\r |
534 | // AutoGen\r |
535 | //\r |
136adffc |
536 | \r |
537 | AutoGen autogen = new AutoGen(getProject().getProperty("DEST_DIR_DEBUG"), fpdModuleId.getModule(),fpdModuleId.getArch());\r |
538 | autogen.genAutogen();\r |
a29c47e0 |
539 | \r |
878ddf1f |
540 | \r |
a29c47e0 |
541 | //\r |
542 | // Get compiler flags\r |
543 | //\r |
544 | getCompilerFlags(buildTarget, buildTagname, fpdModuleId);\r |
545 | \r |
546 | //\r |
547 | // Prepare LIBS\r |
548 | //\r |
549 | ModuleIdentification[] libinstances = SurfaceAreaQuery.getLibraryInstance(fpdModuleId.getArch());\r |
550 | String propertyLibs = "";\r |
551 | for (int i = 0; i < libinstances.length; i++) {\r |
552 | propertyLibs += " " + getProject().getProperty("BIN_DIR") + File.separatorChar + libinstances[i].getName() + ".lib";\r |
878ddf1f |
553 | }\r |
a29c47e0 |
554 | getProject().setProperty("LIBS", propertyLibs.replaceAll("(\\\\)", "/"));\r |
555 | \r |
556 | //\r |
557 | // if it is CUSTOM_BUILD\r |
558 | // then call the exist BaseName_build.xml directly.\r |
559 | //\r |
560 | if (moduleId.getModuleType().equalsIgnoreCase("USER_DEFINED")) {\r |
561 | GlobalData.log.info("Call user-defined " + moduleId.getName() + "_build.xml");\r |
562 | Ant ant = new Ant();\r |
563 | ant.setProject(getProject());\r |
564 | ant.setAntfile(getProject().getProperty("MODULE_DIR") + File.separatorChar + moduleId.getName() + "_build.xml");\r |
565 | ant.setInheritAll(true);\r |
566 | ant.init();\r |
567 | ant.execute();\r |
568 | return ;\r |
878ddf1f |
569 | }\r |
a29c47e0 |
570 | \r |
878ddf1f |
571 | //\r |
a29c47e0 |
572 | // Generate ${BASE_NAME}_build.xml\r |
573 | // TBD\r |
878ddf1f |
574 | //\r |
a29c47e0 |
575 | String ffsKeyword = SurfaceAreaQuery.getModuleFfsKeyword();\r |
576 | ModuleBuildFileGenerator fileGenerator = new ModuleBuildFileGenerator(getProject(), ffsKeyword, fpdModuleId);\r |
577 | String buildFilename = getProject().getProperty("DEST_DIR_OUTPUT") + File.separatorChar + moduleId.getName() + "_build.xml";\r |
578 | fileGenerator.genBuildFile(buildFilename);\r |
579 | \r |
580 | //\r |
581 | // Ant call ${BASE_NAME}_build.xml\r |
582 | //\r |
583 | Ant ant = new Ant();\r |
584 | ant.setProject(getProject());\r |
585 | ant.setAntfile(getProject().getProperty("DEST_DIR_OUTPUT") + File.separatorChar + moduleId.getName() + "_build.xml");\r |
586 | ant.setInheritAll(true);\r |
587 | ant.init();\r |
588 | ant.execute();\r |
589 | }\r |
590 | \r |
591 | private void applyClean(FpdModuleIdentification fpdModuleId){\r |
592 | //\r |
593 | // if it is CUSTOM_BUILD\r |
594 | // then call the exist BaseName_build.xml directly.\r |
595 | //\r |
596 | if (moduleId.getModuleType().equalsIgnoreCase("USER_DEFINED")) {\r |
597 | GlobalData.log.info("Call user-defined " + moduleId.getName() + "_build.xml");\r |
598 | Ant ant = new Ant();\r |
599 | ant.setProject(getProject());\r |
600 | ant.setAntfile(getProject().getProperty("MODULE_DIR") + File.separatorChar + moduleId.getName() + "_build.xml");\r |
601 | ant.setTarget("clean");\r |
602 | ant.setInheritAll(true);\r |
603 | ant.init();\r |
604 | ant.execute();\r |
605 | return ;\r |
878ddf1f |
606 | }\r |
a29c47e0 |
607 | \r |
608 | Ant ant = new Ant();\r |
609 | ant.setProject(getProject());\r |
610 | ant.setAntfile(getProject().getProperty("DEST_DIR_OUTPUT") + File.separatorChar + moduleId.getName() + "_build.xml");\r |
611 | ant.setTarget("clean");\r |
612 | ant.setInheritAll(true);\r |
613 | ant.init();\r |
614 | ant.execute();\r |
615 | \r |
616 | //\r |
617 | // Delete current module's DEST_DIR_OUTPUT\r |
618 | // TBD\r |
619 | }\r |
620 | \r |
621 | private void applyCleanall(FpdModuleIdentification fpdModuleId){\r |
622 | //\r |
623 | // if it is CUSTOM_BUILD\r |
624 | // then call the exist BaseName_build.xml directly.\r |
625 | //\r |
626 | if (moduleId.getModuleType().equalsIgnoreCase("USER_DEFINED")) {\r |
627 | GlobalData.log.info("Call user-defined " + moduleId.getName() + "_build.xml");\r |
628 | Ant ant = new Ant();\r |
629 | ant.setProject(getProject());\r |
630 | ant.setAntfile(getProject().getProperty("MODULE_DIR") + File.separatorChar + moduleId.getName() + "_build.xml");\r |
631 | ant.setTarget("cleanall");\r |
632 | ant.setInheritAll(true);\r |
633 | ant.init();\r |
634 | ant.execute();\r |
635 | return ;\r |
878ddf1f |
636 | }\r |
a29c47e0 |
637 | \r |
638 | Ant ant = new Ant();\r |
639 | ant.setProject(getProject());\r |
640 | ant.setAntfile(getProject().getProperty("DEST_DIR_OUTPUT") + File.separatorChar + moduleId.getName() + "_build.xml");\r |
641 | ant.setTarget("cleanall");\r |
642 | ant.setInheritAll(true);\r |
643 | ant.init();\r |
644 | ant.execute();\r |
645 | \r |
646 | //\r |
647 | // Delete current module's DEST_DIR_OUTPUT\r |
648 | // TBD\r |
878ddf1f |
649 | }\r |
650 | \r |
a29c47e0 |
651 | \r |
652 | \r |
653 | \r |
878ddf1f |
654 | /**\r |
655 | Separate the string and instore in set.\r |
656 | \r |
657 | <p> String is separated by Java Regulation Expression \r |
658 | "[^\\\\]?(\".*?[^\\\\]\")[ \t,]+". </p>\r |
659 | \r |
660 | <p>For example: </p>\r |
661 | \r |
662 | <pre>\r |
663 | "/nologo", "/W3", "/WX"\r |
664 | "/C", "/DSTRING_DEFINES_FILE=\"BdsStrDefs.h\""\r |
665 | </pre>\r |
666 | \r |
667 | @param set store the separated string\r |
668 | @param str string to separate\r |
669 | **/\r |
670 | private void putFlagsToSet(Set<String> set, String str) {\r |
a29c47e0 |
671 | if (str == null || str.length() == 0) {\r |
672 | return;\r |
673 | }\r |
674 | \r |
878ddf1f |
675 | Pattern myPattern = Pattern.compile("[^\\\\]?(\".*?[^\\\\]\")[ \t,]+");\r |
676 | Matcher matcher = myPattern.matcher(str + " ");\r |
677 | while (matcher.find()) {\r |
678 | String item = str.substring(matcher.start(1), matcher.end(1));\r |
a29c47e0 |
679 | set.add(item);\r |
878ddf1f |
680 | }\r |
681 | }\r |
682 | \r |
683 | /**\r |
684 | Generate the final flags string will be used by compile command. \r |
685 | \r |
686 | @param add the add flags set\r |
687 | @param sub the sub flags set\r |
688 | @return final flags after add set substract sub set\r |
689 | **/\r |
690 | private String getFlags(Set<String> add, Set<String> sub) {\r |
691 | String result = "";\r |
692 | add.removeAll(sub);\r |
693 | Iterator iter = add.iterator();\r |
694 | while (iter.hasNext()) {\r |
a29c47e0 |
695 | String str = (String) iter.next();\r |
878ddf1f |
696 | result += str.substring(1, str.length() - 1) + " ";\r |
697 | }\r |
698 | return result;\r |
699 | }\r |
700 | \r |
701 | /**\r |
702 | Generate the flags string with original format. The format is defined by \r |
703 | Java Regulation Expression "[^\\\\]?(\".*?[^\\\\]\")[ \t,]+". </p>\r |
704 | \r |
705 | <p>For example: </p>\r |
706 | \r |
707 | <pre>\r |
708 | "/nologo", "/W3", "/WX"\r |
709 | "/C", "/DSTRING_DEFINES_FILE=\"BdsStrDefs.h\""\r |
710 | </pre>\r |
711 | \r |
712 | @param add the add flags set\r |
713 | @param sub the sub flags set\r |
714 | @return flags with original format\r |
715 | **/\r |
716 | private String getRawFlags(Set<String> add, Set<String> sub) {\r |
a29c47e0 |
717 | String result = null;\r |
878ddf1f |
718 | add.removeAll(sub);\r |
719 | Iterator iter = add.iterator();\r |
720 | while (iter.hasNext()) {\r |
a29c47e0 |
721 | String str = (String) iter.next();\r |
878ddf1f |
722 | result += "\"" + str.substring(1, str.length() - 1) + "\", ";\r |
723 | }\r |
724 | return result;\r |
725 | }\r |
726 | \r |
a29c47e0 |
727 | private String parseOptionString(String optionString, Set<String> addSet, Set<String> subSet) {\r |
728 | boolean overrideOption = false;\r |
729 | Pattern pattern = Pattern.compile("ADD\\.\\[(.+)\\]");\r |
730 | Matcher matcher = pattern.matcher(optionString);\r |
731 | \r |
732 | while (matcher.find()) {\r |
733 | overrideOption = true;\r |
734 | String addOption = optionString.substring(matcher.start(1), matcher.end(1)).trim();\r |
735 | putFlagsToSet(addSet, addOption);\r |
736 | \r |
737 | }\r |
878ddf1f |
738 | \r |
a29c47e0 |
739 | pattern = Pattern.compile("SUB\\.\\[(.+)\\]");\r |
740 | matcher = pattern.matcher(optionString);\r |
741 | \r |
742 | while (matcher.find()) {\r |
743 | overrideOption = true;\r |
744 | String subOption = optionString.substring(matcher.start(1), matcher.end(1)).trim();\r |
745 | putFlagsToSet(subSet, subOption);\r |
746 | }\r |
747 | \r |
748 | if (overrideOption == true) {\r |
749 | return null;\r |
750 | }\r |
751 | \r |
752 | return optionString;\r |
753 | }\r |
754 | \r |
755 | private void pushProperties() {\r |
756 | backupPropertiesStack.push(getProject().getProperties());\r |
757 | }\r |
758 | \r |
759 | private void popProperties() {\r |
760 | Hashtable backupProperties = backupPropertiesStack.pop();\r |
761 | Set keys = backupProperties.keySet();\r |
762 | Iterator iter = keys.iterator();\r |
763 | while (iter.hasNext()) {\r |
764 | String item = (String)iter.next();\r |
765 | getProject().setProperty(item, (String)backupProperties.get(item));\r |
766 | }\r |
767 | }\r |
de4bb9f6 |
768 | \r |
769 | public void setSingleModuleBuild(boolean isSingleModuleBuild) {\r |
770 | this.isSingleModuleBuild = isSingleModuleBuild;\r |
771 | }\r |
878ddf1f |
772 | }\r |