/** @file GlobalData class. GlobalData provide initializing, instoring, querying and update global data. It is a bridge to intercommunicate between multiple component, such as AutoGen, PCD and so on. Copyright (c) 2006, Intel Corporation All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/ package org.tianocore.build.global; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; import org.apache.tools.ant.Project; import org.apache.xmlbeans.XmlException; import org.apache.xmlbeans.XmlObject; import org.apache.xmlbeans.XmlOptions; import org.tianocore.DbPathAndFilename; import org.tianocore.FrameworkDatabaseDocument; import org.tianocore.ModuleSurfaceAreaDocument; import org.tianocore.ModuleSurfaceAreaDocument.ModuleSurfaceArea; import org.tianocore.build.id.FpdModuleIdentification; import org.tianocore.build.id.ModuleIdentification; import org.tianocore.build.id.PackageIdentification; import org.tianocore.build.id.PlatformIdentification; import org.tianocore.build.toolchain.ToolChainConfig; import org.tianocore.build.toolchain.ToolChainElement; import org.tianocore.build.toolchain.ToolChainInfo; import org.tianocore.build.toolchain.ToolChainKey; import org.tianocore.build.toolchain.ToolChainMap; import org.tianocore.common.definitions.ToolDefinitions; import org.tianocore.common.exception.EdkException; import org.tianocore.common.logger.EdkLog; import org.tianocore.pcd.entity.MemoryDatabaseManager; /** GlobalData provide initializing, instoring, querying and update global data. It is a bridge to intercommunicate between multiple component, such as AutoGen, PCD and so on.

Note that all global information are initialized incrementally. All data will parse and record only of necessary during build time.

@since GenBuild 1.0 **/ public class GlobalData { /// /// Record current WORKSPACE Directory /// private static String workspaceDir = ""; /// /// Be used to ensure Global data will be initialized only once. /// private static boolean globalFlag = false; /// /// Framework Database information: package list and platform list /// private static Set packageList = new HashSet(); private static Set platformList = new HashSet(); /// /// Every detail SPD informations: Module list, Library class definition, /// Package header file, GUID/PPI/Protocol definitions /// private static final Map spdTable = new HashMap(); /// /// Build informations are divided into three parts: /// 1. From MSA 2. From FPD 3. From FPD' ModuleSA /// private static Map> nativeMsa = new HashMap>(); private static Map> fpdModuleSA= new HashMap>(); private static Map fpdBuildOptionsMap = new HashMap(); private static XmlObject fpdBuildOptions; private static XmlObject fpdDynamicPcds; /// /// Parsed modules list /// private static Map> parsedModules = new HashMap>(); /// /// built modules list with ARCH, TARGET, TOOLCHAIN /// private static Set builtModules = new HashSet(); /// /// PCD memory database stored all PCD information which collected from FPD,MSA and SPD. /// private static final MemoryDatabaseManager pcdDbManager = new MemoryDatabaseManager(); /// /// build target + tool chain family/tag name + arch + command types + command options /// /// /// Tool Chain Data /// toolsDef - build tool program information /// fpdBuildOption - all modules's build options for tool tag or tool chain families /// moduleSaBuildOption - build options for a specific module /// private static ToolChainConfig toolsDef; private static ToolChainInfo toolChainInfo; private static ToolChainInfo toolChainEnvInfo; private static ToolChainInfo toolChainPlatformInfo; private static ToolChainMap platformToolChainOption; private static ToolChainMap platformToolChainFamilyOption; private static Map moduleToolChainOption = new HashMap(); private static Map moduleToolChainFamilyOption = new HashMap(); private static Map msaBuildOption = new HashMap(); private static Map msaFamilyBuildOption = new HashMap(); /** Parse framework database (DB) and all SPD files listed in DB to initialize the environment for next build. This method will only be executed only once in the whole build process. @param workspaceDatabaseFile the file name of framework database @param workspaceDir current workspace directory path @throws BuildException Framework Dababase or SPD or MSA file is not valid **/ public synchronized static void initInfo(Project prj, String workspaceDatabaseFile, String workspaceDir, String toolsDefFilename ) throws EdkException { // // ensure this method will be revoked only once // if (globalFlag) { return; } globalFlag = true; // // Backup workspace directory. It will be used by other method // GlobalData.workspaceDir = workspaceDir.replaceAll("(\\\\)", "/"); // // Parse tools definition file // // // If ToolChain has been set up before, do nothing. // CONF dir + tools definition file name // File toolsDefFile = new File(workspaceDir + File.separatorChar + toolsDefFilename); EdkLog.log("Init", EdkLog.EDK_ALWAYS, "Using tool definition file [" + toolsDefFile.getPath() + "]."); toolsDef = new ToolChainConfig(prj, toolsDefFile); // // Parse Framework Database // File dbFile = new File(workspaceDir + File.separatorChar + workspaceDatabaseFile); FrameworkDatabaseDocument db = null; try { db = (FrameworkDatabaseDocument)parseXmlFile(dbFile); // // Get package list // if (db.getFrameworkDatabase().getPackageList() != null ) { List packages = db.getFrameworkDatabase().getPackageList().getFilenameList(); Iterator iter = packages.iterator(); while (iter.hasNext()) { String fileName = iter.next().getStringValue().trim(); Spd spd = new Spd(new File(workspaceDir + File.separatorChar + fileName)); packageList.add(spd.getPackageId()); // // Report warning if existing two packages with same GUID and Version // if (spdTable.containsKey(spd.getPackageId())) { // // BUGBUG // EdkLog.log("Init", EdkLog.EDK_WARNING, "Warning: Existing two packages with same GUID and Version. They are ... " + spd.getPackageId().getSpdFile().getPath()); } spdTable.put(spd.getPackageId(), spd); } } } catch(IOException ex) { EdkException edkException = new EdkException("Parse of WORKSPACE Database file [" + dbFile.getPath() + "] failed!\n" + ex.getMessage()); edkException.setStackTrace(ex.getStackTrace()); throw edkException; } catch(XmlException ex) { EdkException edkException = new EdkException("Parse of WORKSPACE Database file [" + dbFile.getPath() + "] failed!\n" + ex.getMessage()); edkException.setStackTrace(ex.getStackTrace()); throw edkException; } File fpdFile = null; try { // // Get platform list // if (db.getFrameworkDatabase().getPlatformList() != null) { List platforms = db.getFrameworkDatabase().getPlatformList().getFilenameList(); Iterator iter = platforms.iterator(); while (iter.hasNext()) { String fileName = iter.next().getStringValue().trim(); fpdFile = new File(workspaceDir + File.separatorChar + fileName); if ( !fpdFile.exists() ) { throw new EdkException("Platform file [" + fpdFile.getPath() + "] not exists. "); } XmlObject fpdDoc = parseXmlFile(fpdFile); // // We can change Map to XmlObject // Map fpdDocMap = new HashMap(); fpdDocMap.put("PlatformSurfaceArea", fpdDoc); SurfaceAreaQuery saq = new SurfaceAreaQuery(fpdDocMap); PlatformIdentification platformId = saq.getFpdHeader(); platformId.setFpdFile(fpdFile); // // Report warning if existing two platfrom with same GUID and Version // if (platformList.contains(platformId)) { // // BUGBUG // EdkLog.log("Init", EdkLog.EDK_WARNING, "Warning: Existing two platforms with same GUID and Version. They are ... " + fpdFile.getPath()); } platformList.add(platformId); } } } catch(IOException ex) { EdkException edkException = new EdkException("Parse of platform definition file [" + fpdFile.getPath() + "] failed!\n" + ex.getMessage()); edkException.setStackTrace(ex.getStackTrace()); throw edkException; } catch(XmlException ex) { EdkException edkException = new EdkException("Parse of platform definition file [" + fpdFile.getPath() + "] failed!\n" + ex.getMessage()); edkException.setStackTrace(ex.getStackTrace()); throw edkException; } } /** Get the current WORKSPACE Directory. @return current workspace directory **/ public synchronized static String getWorkspacePath() { return workspaceDir; } /** Get the MSA file name with absolute path */ public synchronized static File getMsaFile(ModuleIdentification moduleId) throws EdkException { File msaFile = null; // // TBD. Do only when package is null. // Iterator iter = packageList.iterator(); while (iter.hasNext()) { PackageIdentification packageId = (PackageIdentification)iter.next(); Spd spd = spdTable.get(packageId); msaFile = spd.getModuleFile(moduleId); if (msaFile != null ) { break ; } } if (msaFile == null){ throw new EdkException("Can't find Module [" + moduleId.getName() + "] in any SPD package!"); } else { return msaFile; } } public synchronized static PackageIdentification getPackageForModule(ModuleIdentification moduleId) throws EdkException { // // If package already defined in module // if (moduleId.getPackage() != null) { return moduleId.getPackage(); } PackageIdentification packageId = null; Iterator iter = packageList.iterator(); while (iter.hasNext()) { PackageIdentification pid = (PackageIdentification)iter.next(); moduleId.setPackage(pid); Spd spd = spdTable.get(pid); File tempMsaFile = null; if ((tempMsaFile = spd.getModuleFile(moduleId)) != null ) { if (tempMsaFile.getParent().equalsIgnoreCase(moduleId.getMsaFile().getParent())) { packageId = pid; break ; } tempMsaFile = null; } } if (packageId == null){ throw new EdkException("Can't find Module [" + moduleId.getName() + "] in any package!"); } else { return packageId; } } /** Difference between build and parse: ToolChain and Target **/ public synchronized static boolean isModuleBuilt(FpdModuleIdentification moduleId) { return builtModules.contains(moduleId); } public synchronized static void registerBuiltModule(FpdModuleIdentification fpdModuleId) { builtModules.add(fpdModuleId); } public synchronized static void registerFpdModuleSA(FpdModuleIdentification fpdModuleId, Map doc) throws EdkException{ Map result = new HashMap(); Set keySet = doc.keySet(); Iterator iter = keySet.iterator(); while (iter.hasNext()){ String key = (String)iter.next(); XmlObject item = cloneXmlObject(doc.get(key), true); result.put(key, item); } fpdModuleSA.put(fpdModuleId, result); } public synchronized static boolean hasFpdModuleSA(FpdModuleIdentification fpdModuleId) { return fpdModuleSA.containsKey(fpdModuleId); } /** Query module surface area information.

Note that surface area parsing is incremental. That means the method will only parse the MSA files if necessary.

@param fpdModuleId Module ID with arch @return ModuleSA info and MSA info for fpdModuleId @throws BuildException Can't find MSA **/ public synchronized static Map getDoc(FpdModuleIdentification fpdModuleId) throws EdkException{ if (parsedModules.containsKey(fpdModuleId)) { return parsedModules.get(fpdModuleId); } Map doc = new HashMap(); ModuleIdentification moduleId = fpdModuleId.getModule(); // // First part: get the MSA files info // doc.putAll(getNativeMsa(moduleId)); // // Second part: put build options // doc.put("BuildOptions", fpdBuildOptions); // // Third part: get Module info from FPD, such as Library instances, PCDs // if (fpdModuleSA.containsKey(fpdModuleId)){ // // merge module info in FPD to final Doc // For Library Module, do nothing here // doc.putAll(fpdModuleSA.get(fpdModuleId)); } parsedModules.put(fpdModuleId, doc); return doc; } public synchronized static Map getDoc(ModuleIdentification moduleId, String arch) throws EdkException{ FpdModuleIdentification fpdModuleId = new FpdModuleIdentification(moduleId, arch); return getDoc(fpdModuleId); } /** Query the native MSA information with module base name.

Note that MSA parsing is incremental. That means the method will only to parse the MSA files when never parsed before.

@param moduleName the base name of the module @return the native MSA information @throws BuildException MSA file is not valid **/ public synchronized static Map getNativeMsa(ModuleIdentification moduleId) throws EdkException { if (nativeMsa.containsKey(moduleId)) { return nativeMsa.get(moduleId); } File msaFile = getMsaFile(moduleId); Map msaMap = getNativeMsa(msaFile); nativeMsa.put(moduleId, msaMap); return msaMap; } public synchronized static Map getNativeMsa(File msaFile) throws EdkException { if (!msaFile.exists()) { throw new EdkException("Module Surface Area file [" + msaFile.getPath() + "] can't be found!"); } try { ModuleSurfaceAreaDocument doc = (ModuleSurfaceAreaDocument)parseXmlFile(msaFile); // // parse MSA file // ModuleSurfaceArea msa= doc.getModuleSurfaceArea(); Map msaMap = new HashMap(); msaMap.put("MsaHeader", cloneXmlObject(msa.getMsaHeader(), true)); msaMap.put("ModuleDefinitions", cloneXmlObject(msa.getModuleDefinitions(), true)); msaMap.put("LibraryClassDefinitions", cloneXmlObject(msa.getLibraryClassDefinitions(), true)); msaMap.put("SourceFiles", cloneXmlObject(msa.getSourceFiles(), true)); msaMap.put("PackageDependencies", cloneXmlObject(msa.getPackageDependencies(), true)); msaMap.put("Protocols", cloneXmlObject(msa.getProtocols(), true)); msaMap.put("PPIs", cloneXmlObject(msa.getPPIs(), true)); msaMap.put("Guids", cloneXmlObject(msa.getGuids(), true)); msaMap.put("Events", cloneXmlObject(msa.getEvents(), true)); msaMap.put("Hobs", cloneXmlObject(msa.getHobs(), true)); msaMap.put("Variables", cloneXmlObject(msa.getVariables(), true)); msaMap.put("SystemTables", cloneXmlObject(msa.getSystemTables(), true)); msaMap.put("DataHubs", cloneXmlObject(msa.getDataHubs(), true)); msaMap.put("HiiPackages", cloneXmlObject(msa.getHiiPackages(), true)); msaMap.put("Externs", cloneXmlObject(msa.getExterns(), true)); msaMap.put("PcdCoded", cloneXmlObject(msa.getPcdCoded(), true)); msaMap.put("ModuleBuildOptions", cloneXmlObject(msa.getModuleBuildOptions(), true)); return msaMap; } catch(IOException ex) { EdkException edkException = new EdkException("Parse of MSA file [" + msaFile.getPath() + "] failed!\n" + ex.getMessage()); edkException.setStackTrace(ex.getStackTrace()); throw edkException; } catch(XmlException ex) { EdkException edkException = new EdkException("Parse of MSA file [" + msaFile.getPath() + "] failed!\n" + ex.getMessage()); edkException.setStackTrace(ex.getStackTrace()); throw edkException; } } public static Map getFpdBuildOptionsMap() { return fpdBuildOptionsMap; } public static void setFpdBuildOptions(XmlObject fpdBuildOptions) throws EdkException { GlobalData.fpdBuildOptions = cloneXmlObject(fpdBuildOptions, true); fpdBuildOptionsMap.put("BuildOptions", GlobalData.fpdBuildOptions); } public static XmlObject getFpdDynamicPcds() { return fpdDynamicPcds; } public static void setFpdDynamicPcds(XmlObject fpdDynamicPcds) { GlobalData.fpdDynamicPcds = fpdDynamicPcds; } public static Set getModules(PackageIdentification packageId){ Spd spd = spdTable.get(packageId); if (spd == null ) { Set dummy = new HashSet(); return dummy; } else { return spd.getModules(); } } /** * The header file path is relative to workspace dir */ public static String[] getLibraryClassHeaderFiles( PackageIdentification[] packages, String name) throws EdkException{ if (packages == null) { // throw Exception or not???? return new String[0]; } String[] result = null; for (int i = 0; i < packages.length; i++) { Spd spd = spdTable.get(packages[i]); // // If find one package defined the library class // if ((result = spd.getLibClassIncluder(name)) != null) { return result; } } // // If can't find library class declaration in every package // throw new EdkException("Can not find library class [" + name + "] declaration in any SPD package!"); } /** * The header file path is relative to workspace dir */ public static String getPackageHeaderFiles(PackageIdentification packages, String moduleType) { if (packages == null) { return new String(""); } Spd spd = spdTable.get(packages); // // If can't find package header file, skip it // String temp = null; if (spd != null) { if ((temp = spd.getPackageIncluder(moduleType)) != null) { return temp; } else { temp = ""; return temp; } } else { return null; } } /** * return two values: {cName, GuidValue} */ public static String[] getGuid(List packages, String name) { if (packages == null) { // throw Exception or not???? return new String[0]; } String[] result = null; Iterator item = packages.iterator(); while (item.hasNext()){ Spd spd = spdTable.get(item.next()); // // If find one package defined the GUID // if ((result = spd.getGuid(name)) != null) { return result; } } return null; } /** * return two values: {cName, GuidValue} */ public static String[] getPpiGuid(List packages, String name) { if (packages == null) { return new String[0]; } String[] result = null; Iterator item = packages.iterator(); while (item.hasNext()){ Spd spd = spdTable.get(item.next()); // // If find one package defined the Ppi GUID // if ((result = spd.getPpi(name)) != null) { return result; } } return null; } /** * return two values: {cName, GuidValue} */ public static String[] getProtocolGuid(List packages, String name) { if (packages == null) { return new String[0]; } String[] result = null; Iterator item = packages.iterator(); while (item.hasNext()){ Spd spd = spdTable.get(item.next()); // // If find one package defined the protocol GUID // if ((result = spd.getProtocol(name))!= null){ return result; } } return null; } public synchronized static PlatformIdentification getPlatformByName(String name) throws EdkException { Iterator iter = platformList.iterator(); while(iter.hasNext()){ PlatformIdentification platformId = (PlatformIdentification)iter.next(); if (platformId.getName().equalsIgnoreCase(name)) { return platformId; } } throw new EdkException("Can't find platform [" + name + "] in the current WORKSPACE database!"); } public synchronized static PlatformIdentification getPlatform(String filename) throws EdkException { File file = new File(workspaceDir + File.separatorChar + filename); Iterator iter = platformList.iterator(); while(iter.hasNext()){ PlatformIdentification platformId = (PlatformIdentification)iter.next(); if (platformId.getFpdFile().getPath().equalsIgnoreCase(file.getPath())) { return platformId; } } throw new EdkException("Can't find platform file [" + filename + "] in the current WORKSPACE database!"); } public synchronized static PackageIdentification refreshPackageIdentification(PackageIdentification packageId) throws EdkException { Iterator iter = packageList.iterator(); while(iter.hasNext()){ PackageIdentification packageItem = (PackageIdentification)iter.next(); if (packageItem.equals(packageId)) { packageId.setName(packageItem.getName()); packageId.setSpdFile(packageItem.getSpdFile()); return packageId; } } throw new EdkException("Can't find package GUID value " + packageId.toGuidString() + " in the current workspace!"); } public synchronized static ModuleIdentification refreshModuleIdentification(ModuleIdentification moduleId) throws EdkException { PackageIdentification packageId = getPackageForModule(moduleId); moduleId.setPackage(packageId); Spd spd = spdTable.get(packageId); if (spd == null) { throw new EdkException("Can't find package GUID value " + packageId.toGuidString() + " in the current workspace!"); } Set modules = spd.getModules(); Iterator iter = modules.iterator(); while (iter.hasNext()) { ModuleIdentification item = iter.next(); if (item.equals(moduleId)) { moduleId.setName(item.getName()); moduleId.setModuleType(item.getModuleType()); moduleId.setMsaFile(item.getMsaFile()); return moduleId; } } throw new EdkException("Can't find " + moduleId + " under the current workspace!"); } public synchronized static Set getPackageList(){ return packageList; } /** BUGBUG: It is a walk around method. If do not clone, can't query info with XPath correctly. @param object XmlObject @param deep flag for deep clone @return XmlObject after clone @throws BuildException parse original XmlObject error. **/ private static XmlObject cloneXmlObject(XmlObject object, boolean deep) throws EdkException { if ( object == null) { return null; } XmlObject result = null; try { result = XmlObject.Factory.parse(object.getDomNode() .cloneNode(deep)); } catch (XmlException ex) { EdkException edkException = new EdkException(ex.getMessage()); edkException.setStackTrace(ex.getStackTrace()); throw edkException; } return result; } /// /// Tool Chain Related, try to refine and put some logic process to ToolChainFactory /// public synchronized static ToolChainInfo getToolChainInfo() { if (toolChainInfo == null) { toolChainInfo = toolsDef.getConfigInfo().intersection(toolChainEnvInfo); if (toolChainPlatformInfo != null) { toolChainInfo = toolChainInfo.intersection(toolChainPlatformInfo); } toolChainInfo.addCommands(toolsDef.getConfigInfo().getCommands()); toolChainInfo.normalize(); EdkLog.log("Init", EdkLog.EDK_ALWAYS, "Current build tool chain information summary: "); EdkLog.log("Init", EdkLog.EDK_ALWAYS, toolChainInfo + ""); } return toolChainInfo; } public static void setPlatformToolChainFamilyOption(ToolChainMap map) { platformToolChainFamilyOption = map; } public static void setPlatformToolChainOption(ToolChainMap map) { platformToolChainOption = map; } public static void addModuleToolChainOption(FpdModuleIdentification fpdModuleId, ToolChainMap toolChainOption) { moduleToolChainOption.put(fpdModuleId, toolChainOption); } public static void addModuleToolChainFamilyOption(FpdModuleIdentification fpdModuleId, ToolChainMap toolChainOption) { moduleToolChainFamilyOption.put(fpdModuleId, toolChainOption); } public static void addMsaBuildOption(ModuleIdentification moduleId, ToolChainMap toolChainOption) { msaBuildOption.put(moduleId, toolChainOption); } public static void addMsaFamilyBuildOption(ModuleIdentification moduleId, ToolChainMap toolChainOption) { msaFamilyBuildOption.put(moduleId, toolChainOption); } public static boolean isCommandSet(String target, String toolchain, String arch) throws EdkException { String[] commands = getToolChainInfo().getCommands(); for (int i = 0; i < commands.length; ++i) { String cmdName = toolsDef.getConfig().get(new String[] {target, toolchain, arch, commands[i], ToolDefinitions.TOOLS_DEF_ATTRIBUTE_NAME}); if (cmdName != null && cmdName.length() != 0) { return true; } } return false; } /** Except FLAGS, all attribute are from TOOLS_DEF file. For FLAGS, information from four places, they are:
        1. tools_def.txt
        2. MSA <BuildOptions>/<Options>
        3. FPD <BuildOptions>/<Options>
        4. FPD <FrameworkModules>/<ModuleSaBuildOptions>/<Options>
      
@param commandDescription Key: TARGET, TAGNAME, ARCH, COMMANDTYPE, ATTRIBUTE @param fpdModuleId Module Identification with Arch @return The corresponding String @throws EdkException If build option definition error **/ public synchronized static String getCommandSetting(String[] commandDescription, FpdModuleIdentification fpdModuleId) throws EdkException { ToolChainKey toolChainKey = new ToolChainKey(commandDescription); ToolChainMap toolChainConfig = toolsDef.getConfig(); String setting = null; // // Default in tools_def.txt // setting = toolChainConfig.get(toolChainKey); if (setting == null) { setting = ""; } if (!commandDescription[ToolChainElement.ATTRIBUTE.value].equals(ToolDefinitions.TOOLS_DEF_ATTRIBUTE_FLAGS)) { return setting; } Set flagSet = new LinkedHashSet(); flagSet.add(setting); // // Tool's option can be in .fpd and/or .msa file // String optionString; ToolChainMap option = null; ToolChainKey toolChainFamilyKey = new ToolChainKey(commandDescription); toolChainFamilyKey.setKey(ToolDefinitions.TOOLS_DEF_ATTRIBUTE_FAMILY, ToolChainElement.ATTRIBUTE.value); String family = toolChainConfig.get(toolChainFamilyKey); toolChainFamilyKey.setKey(family, ToolChainElement.TOOLCHAIN.value); toolChainFamilyKey.setKey(ToolDefinitions.TOOLS_DEF_ATTRIBUTE_FLAGS, ToolChainElement.ATTRIBUTE.value); // // MSA's tool chain family option // option = msaFamilyBuildOption.get(fpdModuleId.getModule()); if (option != null && (optionString = option.get(toolChainFamilyKey)) != null) { flagSet.add(optionString); } // // MSA's tool chain option // option = msaBuildOption.get(fpdModuleId.getModule()); if (option != null && (optionString = option.get(toolChainKey)) != null) { flagSet.add(optionString); } // // Platform's tool chain family option // optionString = platformToolChainFamilyOption.get(toolChainFamilyKey); if (optionString != null) { flagSet.add(optionString); } // // Platform's tool chain tag option // optionString = platformToolChainOption.get(toolChainKey); if (optionString != null) { flagSet.add(optionString); } // // Module's tool chain family option // option = moduleToolChainFamilyOption.get(fpdModuleId); if (option != null && (optionString = option.get(toolChainFamilyKey)) != null) { flagSet.add(optionString); } // // Module's tool chain tag option // option = moduleToolChainOption.get(fpdModuleId); if (option != null && (optionString = option.get(toolChainKey)) != null) { flagSet.add(optionString); } setting = ""; for(Iterator iter = flagSet.iterator(); iter.hasNext();) { setting += iter.next() +" "; } return setting; } public static void setToolChainEnvInfo(ToolChainInfo envInfo) { toolChainEnvInfo = envInfo; } public static void setToolChainPlatformInfo(ToolChainInfo platformInfo) { toolChainPlatformInfo = platformInfo; } // // for PCD // public synchronized static MemoryDatabaseManager getPCDMemoryDBManager() { return pcdDbManager; } // // For PCD get tokenSpaceGUid // public synchronized static String getGuidInfoFromCname(String cName){ String cNameGuid = null; String guid = null; Set set = spdTable.keySet(); Iterator iter = set.iterator(); if (iter == null) { return null; } while (iter.hasNext()){ Spd spd = (Spd) spdTable.get(iter.next()); guid = spd.getGuidFromCname(cName); if (guid != null){ cNameGuid = guid; break; } } return cNameGuid; } // // For PCD // public synchronized static Map getFpdModuleSaXmlObject(String xmlObjectName) { Set fpdModuleSASet = fpdModuleSA.keySet(); Iterator item = fpdModuleSASet.iterator(); Map SAPcdBuildDef = new HashMap(); Map SANode = new HashMap(); FpdModuleIdentification moduleId; while (item.hasNext()) { moduleId = (FpdModuleIdentification) item.next(); SANode = fpdModuleSA.get(moduleId); try{ if (SANode.get(xmlObjectName)!= null){ SAPcdBuildDef.put(moduleId, (XmlObject) SANode.get(xmlObjectName)); } } catch (Exception e){ EdkLog.log(EdkLog.EDK_INFO, e.getMessage()); } } return SAPcdBuildDef; } public synchronized static Map getFpdPcdBuildDefinitions() { Map pcdBuildDef = getFpdModuleSaXmlObject ("PcdBuildDefinition"); return pcdBuildDef; } public static XmlObject parseXmlFile(File xmlFile) throws IOException, XmlException { Collection errors = new ArrayList(); XmlOptions opt = new XmlOptions(); opt.setLoadLineNumbers(); opt.setLoadMessageDigest(); opt.setErrorListener(errors); XmlObject doc = XmlObject.Factory.parse(xmlFile, opt); // // Validate File if they accord with XML Schema // if (!doc.validate(opt)){ StringBuilder errorMessage = new StringBuilder(1024); for (Iterator it = errors.iterator(); it.hasNext(); ) { errorMessage.append(it.next()); errorMessage.append("\n"); } throw new XmlException(errorMessage.toString()); } return doc; } }