X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FSource%2FGenBuild%2Forg%2Ftianocore%2Fbuild%2FModuleBuildFileGenerator.java;h=34b3771a993c6a7306ea24251167c727a2ca8a25;hp=7d8bf8b59e11d64d8df5937d70c2c0969666a71e;hb=bf3a7173e34fa0754df81c53f24b72ce40fa5372;hpb=de4bb9f6edc1db82e0616b24e6685b27d2b66061 diff --git a/Tools/Source/GenBuild/org/tianocore/build/ModuleBuildFileGenerator.java b/Tools/Source/GenBuild/org/tianocore/build/ModuleBuildFileGenerator.java index 7d8bf8b59e..34b3771a99 100644 --- a/Tools/Source/GenBuild/org/tianocore/build/ModuleBuildFileGenerator.java +++ b/Tools/Source/GenBuild/org/tianocore/build/ModuleBuildFileGenerator.java @@ -13,9 +13,9 @@ package org.tianocore.build; import java.io.File; import java.util.LinkedHashMap; -import java.util.LinkedHashSet; import java.util.Map; -import java.util.Set; +import java.io.FileOutputStream; +import java.io.OutputStreamWriter; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; @@ -30,8 +30,8 @@ import javax.xml.transform.stream.StreamResult; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.Project; import org.tianocore.build.fpd.FpdParserTask; -import org.tianocore.build.global.GlobalData; import org.tianocore.build.global.SurfaceAreaQuery; +import org.tianocore.build.global.PropertyManager; import org.tianocore.build.id.FpdModuleIdentification; import org.tianocore.build.id.ModuleIdentification; import org.tianocore.build.id.PackageIdentification; @@ -52,10 +52,10 @@ public class ModuleBuildFileGenerator { /// The information at the header of build.xml. /// private String info = "DO NOT EDIT \n" - + "File auto-generated by build utility\n" + + "This file is auto-generated by the build utility\n" + "\n" + "Abstract:\n" - + "Auto-generated ANT build file for building of EFI Modules/Platforms\n"; + + "Auto-generated ANT build file for build EFI Modules and Platforms\n"; private FpdModuleIdentification fpdModuleId; @@ -63,10 +63,13 @@ public class ModuleBuildFileGenerator { private String ffsKeyword; - public ModuleBuildFileGenerator(Project project, String ffsKeyword, FpdModuleIdentification fpdModuleId) { + private String[] includes; + + public ModuleBuildFileGenerator(Project project, String ffsKeyword, FpdModuleIdentification fpdModuleId, String[] includes) { this.project = project; this.fpdModuleId = fpdModuleId; this.ffsKeyword = ffsKeyword; + this.includes = includes; } /** @@ -211,7 +214,8 @@ public class ModuleBuildFileGenerator { // generate all directory path // (new File(file.getParent())).mkdirs(); - Result result = new StreamResult(file); + FileOutputStream outputStream = new FileOutputStream(file); + Result result = new StreamResult(new OutputStreamWriter(outputStream)); // // Write the DOM document to the file @@ -221,8 +225,7 @@ public class ModuleBuildFileGenerator { xformer.setOutputProperty(OutputKeys.INDENT, "yes"); xformer.transform(source, result); } catch (Exception ex) { - ex.printStackTrace(); - throw new BuildException("Module [" + fpdModuleId.getModule().getName() + "] generating build file failed.\n" + ex.getMessage()); + throw new BuildException("Generating the module [" + fpdModuleId.getModule().getName() + "] build.xml file failed!.\n" + ex.getMessage()); } } @@ -233,41 +236,6 @@ public class ModuleBuildFileGenerator { @param root Root element for current **/ private void applyCleanElement(Document document, Node root) { - ModuleIdentification[] libinstances = SurfaceAreaQuery.getLibraryInstance(fpdModuleId.getArch()); - for (int i = 0; i < libinstances.length; i++) { - // - // Put package file path to module identification - // - PackageIdentification packageId = libinstances[i].getPackage(); - - // - // Generate ANT script to clean - // - Element ele = document.createElement("GenBuild"); - ele.setAttribute("type", "clean"); - - // - // Prepare pass down information - // - Map passDownMap = new LinkedHashMap(); - for (int j = 0; j < inheritProperties.length; j ++){ - passDownMap.put(inheritProperties[j], "${" + inheritProperties[j] + "}"); - } - passDownMap.put("MODULE_GUID", libinstances[i].getGuid()); - passDownMap.put("MODULE_VERSION", libinstances[i].getVersion()); - - passDownMap.put("PACKAGE_GUID", packageId.getGuid()); - passDownMap.put("PACKAGE_VERSION", packageId.getVersion()); - - for (int j = 0; j < inheritProperties.length; j ++){ - Element property = document.createElement("property"); - property.setAttribute("name", inheritProperties[j]); - property.setAttribute("value", passDownMap.get(inheritProperties[j])); - ele.appendChild(property); - } - - root.appendChild(ele); - } // // // @@ -290,42 +258,6 @@ public class ModuleBuildFileGenerator { @param root Root element for current **/ private void applyDeepcleanElement(Document document, Node root) { - ModuleIdentification[] libinstances = SurfaceAreaQuery.getLibraryInstance(fpdModuleId.getArch()); - for (int i = 0; i < libinstances.length; i++) { - // - // Put package file path to module identification - // - PackageIdentification packageId = libinstances[i].getPackage(); - - // - // Generate ANT script to clean - // - Element ele = document.createElement("GenBuild"); - ele.setAttribute("type", "cleanall"); - - // - // Prepare pass down information - // - Map passDownMap = new LinkedHashMap(); - for (int j = 0; j < inheritProperties.length; j ++){ - passDownMap.put(inheritProperties[j], "${" + inheritProperties[j] + "}"); - } - - passDownMap.put("MODULE_GUID", libinstances[i].getGuid()); - passDownMap.put("MODULE_VERSION", libinstances[i].getVersion()); - - passDownMap.put("PACKAGE_GUID", packageId.getGuid()); - passDownMap.put("PACKAGE_VERSION", packageId.getVersion()); - - for (int j = 0; j < inheritProperties.length; j ++){ - Element property = document.createElement("property"); - property.setAttribute("name", inheritProperties[j]); - property.setAttribute("value", passDownMap.get(inheritProperties[j])); - ele.appendChild(property); - } - - root.appendChild(ele); - } // // // @@ -362,7 +294,6 @@ public class ModuleBuildFileGenerator { **/ private void applyLibraryInstance(Document document, Node root) { ModuleIdentification[] libinstances = SurfaceAreaQuery.getLibraryInstance(fpdModuleId.getArch()); -// String propertyLibs = ""; for (int i = 0; i < libinstances.length; i++) { // // Put package file path to module identification @@ -374,7 +305,6 @@ public class ModuleBuildFileGenerator { // Element ele = document.createElement("GenBuild"); ele.setAttribute("type", "build"); -// ele.setAttribute("inheritAll", "false"); // // Prepare pass down information @@ -398,11 +328,9 @@ public class ModuleBuildFileGenerator { } root.appendChild(ele); -// propertyLibs += " " + project.getProperty("BIN_DIR") + File.separatorChar + libinstances[i].getName() + ".lib"; } -// project.setProperty("LIBS", propertyLibs.replaceAll("(\\\\)", "/")); } - + /** Generate the build source files elements for BaseName_build.xml. @@ -410,61 +338,6 @@ public class ModuleBuildFileGenerator { @param root Root element for current **/ private void applyCompileElement(Document document, Node root) { - // - // Prepare the includes: PackageDependencies and Output debug direactory - // - Set includes = new LinkedHashSet(); - - // - // WORKSPACE - // - includes.add("${WORKSPACE_DIR}"); - - // - // Module iteself - // - includes.add("${MODULE_DIR}"); - includes.add("${MODULE_DIR}" + File.separatorChar + "${ARCH}"); - - // - // Packages in PackageDenpendencies - // - PackageIdentification[] packageDependencies = SurfaceAreaQuery.getDependencePkg(fpdModuleId.getArch()); - for (int i = 0; i < packageDependencies.length; i++) { - GlobalData.refreshPackageIdentification(packageDependencies[i]); - File packageFile = packageDependencies[i].getSpdFile(); - includes.add(packageFile.getParent() + File.separatorChar + "Include"); - includes.add(packageFile.getParent() + File.separatorChar + "Include" + File.separatorChar + "${ARCH}"); - } - - // - // All Dependency Library Instance's PackageDependencies - // - ModuleIdentification[] libinstances = SurfaceAreaQuery.getLibraryInstance(fpdModuleId.getArch()); - for (int i = 0; i < libinstances.length; i++) { - SurfaceAreaQuery.push(GlobalData.getDoc(libinstances[i], fpdModuleId.getArch())); - PackageIdentification[] libraryPackageDependencies = SurfaceAreaQuery.getDependencePkg(fpdModuleId.getArch()); - for (int j = 0; j < libraryPackageDependencies.length; j++) { - GlobalData.refreshPackageIdentification(libraryPackageDependencies[j]); - File packageFile = libraryPackageDependencies[j].getSpdFile(); - includes.add(packageFile.getParent() + File.separatorChar + "Include"); - includes.add(packageFile.getParent() + File.separatorChar + "Include" + File.separatorChar + "${ARCH}"); - } - SurfaceAreaQuery.pop(); - } - - - // - // The package which the module belongs to - // TBD - includes.add(fpdModuleId.getModule().getPackage().getPackageDir() + File.separatorChar + "Include"); - includes.add(fpdModuleId.getModule().getPackage().getPackageDir() + File.separatorChar + "Include" + File.separatorChar + "${ARCH}"); - - // - // Debug files output directory - // - includes.add("${DEST_DIR_DEBUG}"); - // // sourceFiles[][0] is FileType, [][1] is File name relative to Module_Dir // @@ -472,6 +345,12 @@ public class ModuleBuildFileGenerator { FileProcess fileProcess = new FileProcess(); fileProcess.init(project, includes, document); + + // + // Initialize some properties by user + // + Element initEle = document.createElement("Build_Init"); + root.appendChild(initEle); String moduleDir = project.getProperty("MODULE_DIR"); // @@ -498,11 +377,10 @@ public class ModuleBuildFileGenerator { Element ele = document.createElement("Build_Unicode_Database"); ele.setAttribute("FILEPATH", "."); ele.setAttribute("FILENAME", "${BASE_NAME}"); - String[] includePaths = includes.toArray(new String[includes.size()]); Element includesEle = document.createElement("EXTRA.INC"); - for (int i = 0; i < includePaths.length; i++) { + for (int i = 0; i < includes.length; i++) { Element includeEle = document.createElement("includepath"); - includeEle.setAttribute("path", includePaths[i]); + includeEle.setAttribute("path", includes[i]); includesEle.appendChild(includeEle); } ele.appendChild(includesEle); @@ -535,7 +413,7 @@ public class ModuleBuildFileGenerator { for (int i = 0; i < sourceFiles.length; i++) { str += " " + sourceFiles[i][1]; } - project.setProperty("SOURCE_FILES", str.replaceAll("(\\\\)", "/")); + PropertyManager.setProperty(project, "SOURCE_FILES", str.replaceAll("(\\\\)", "/")); } /** @@ -550,7 +428,7 @@ public class ModuleBuildFileGenerator { return ; } if (fp.initSections(ffsKeyword, project, fpdModuleId)) { - String targetFilename = fpdModuleId.getModule().getGuid() + "-" + fpdModuleId.getModule().getName() + FpdParserTask.getSuffix(fpdModuleId.getModule().getModuleType()); + String targetFilename = fpdModuleId.getModule().getGuid() + "-" + "${BASE_NAME}" + FpdParserTask.getSuffix(fpdModuleId.getModule().getModuleType()); String[] list = fp.getGenSectionElements(document, "${BASE_NAME}", fpdModuleId.getModule().getGuid(), targetFilename); for (int i = 0; i < list.length; i++) {