/** @file CollectPCDAction class. This action class is to collect PCD information from MSA, SPD, FPD xml file. This class will be used for wizard and build tools, So it can *not* inherit from buildAction or wizardAction. 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.pcd.action; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.UUID; import org.apache.xmlbeans.XmlException; import org.apache.xmlbeans.XmlObject; import org.tianocore.FrameworkModulesDocument; import org.tianocore.FrameworkPlatformDescriptionDocument; import org.tianocore.FrameworkPlatformDescriptionDocument.FrameworkPlatformDescription; import org.tianocore.ModuleSADocument; import org.tianocore.ModuleSADocument.ModuleSA; import org.tianocore.PackageSurfaceAreaDocument; import org.tianocore.PcdBuildDeclarationsDocument.PcdBuildDeclarations.PcdBuildData; import org.tianocore.PcdBuildDeclarationsDocument.PcdBuildDeclarations.PcdBuildData.SkuData; import org.tianocore.PcdDefinitionsDocument.PcdDefinitions; import org.tianocore.PcdDynamicBuildDeclarationsDocument.PcdDynamicBuildDeclarations; import org.tianocore.build.autogen.CommonDefinition; import org.tianocore.build.global.GlobalData; import org.tianocore.build.global.SurfaceAreaQuery; import org.tianocore.build.pcd.action.ActionMessage; import org.tianocore.build.pcd.entity.MemoryDatabaseManager; import org.tianocore.build.pcd.entity.SkuInstance; import org.tianocore.build.pcd.entity.Token; import org.tianocore.build.pcd.entity.UsageInstance; import org.tianocore.build.pcd.exception.EntityException; class StringTable { private ArrayList al; private ArrayList alComments; private String phase; int len; int bodyStart; int bodyLineNum; public StringTable (String phase) { this.phase = phase; al = new ArrayList(); alComments = new ArrayList(); len = 0; bodyStart = 0; bodyLineNum = 0; } public String getSizeMacro () { return String.format(PcdDatabase.StringTableSizeMacro, phase, getSize()); } private int getSize () { // // We have at least one Unicode Character in the table. // return len == 0 ? 1 : len; } public int getTableLen () { return al.size() == 0 ? 1 : al.size(); } public String getExistanceMacro () { return String.format(PcdDatabase.StringTableExistenceMacro, phase, (al.size() == 0)? "TRUE":"FALSE"); } public String getTypeDeclaration () { String output; final String stringTable = "StringTable"; final String tab = "\t"; final String newLine = ";\r\n"; output = "/* StringTable */\r\n"; if (al.size() == 0) { output += tab + String.format("UINT16 %s[1] /* StringTable is Empty */", stringTable) + newLine; } for (int i = 0; i < al.size(); i++) { String str = al.get(i); if (i == 0) { // // StringTable is a well-known name in the PCD DXE driver // output += tab + String.format("UINT16 %s[%d] /* %s */", stringTable, str.length() + 1, alComments.get(i)) + newLine; } else { output += tab + String.format("UINT16 %s_%d[%d] /* %s */", stringTable, i, str.length() + 1, alComments.get(i)) + newLine; } } return output; } public ArrayList getInstantiation () { ArrayList output = new ArrayList(); output.add("/* StringTable */"); if (al.size() == 0) { output.add("{ 0 }"); } else { String str; for (int i = 0; i < al.size(); i++) { str = String.format("L\"%s\" /* %s */", al.get(i), alComments.get(i)); if (i != al.size() - 1) { str += ","; } output.add(str); } } return output; } public int add (String str, Token token) { int i; i = len; // // Include the NULL character at the end of String // len += str.length() + 1; al.add(str); alComments.add(token.getPrimaryKeyString()); return i; } } class SizeTable { private ArrayList al; private ArrayList alComments; private String phase; private int len; private int bodyStart; private int bodyLineNum; public SizeTable (String phase) { this.phase = phase; al = new ArrayList(); alComments = new ArrayList(); len = 0; bodyStart = 0; bodyLineNum = 0; } public String getTypeDeclaration () { return String.format(PcdDatabase.SizeTableDeclaration, phase); } public ArrayList getInstantiation () { ArrayList Output = new ArrayList(); Output.add("/* SizeTable */"); Output.add("{"); bodyStart = 2; if (al.size() == 0) { Output.add("0"); } else { for (int index = 0; index < al.size(); index++) { Integer n = al.get(index); String str = n.toString(); if (index != (al.size() - 1)) { str += ","; } str += " /* " + alComments.get(index) + " */"; Output.add(str); bodyLineNum++; } } Output.add("}"); return Output; } public int getBodyStart() { return bodyStart; } public int getBodyLineNum () { return bodyLineNum; } public int add (Token token) { int index = len; len++; al.add(token.datumSize); alComments.add(token.getPrimaryKeyString()); return index; } private int getDatumSize(Token token) { /* switch (token.datumType) { case Token.DATUM_TYPE.UINT8: return 1; default: return 0; } */ return 0; } public int getTableLen () { return al.size() == 0 ? 1 : al.size(); } } class GuidTable { private ArrayList al; private ArrayList alComments; private String phase; private int len; private int bodyStart; private int bodyLineNum; public GuidTable (String phase) { this.phase = phase; al = new ArrayList(); alComments = new ArrayList(); len = 0; bodyStart = 0; bodyLineNum = 0; } public String getSizeMacro () { return String.format(PcdDatabase.GuidTableSizeMacro, phase, getSize()); } private int getSize () { return (al.size() == 0)? 1 : al.size(); } public String getExistanceMacro () { return String.format(PcdDatabase.GuidTableExistenceMacro, phase, (al.size() == 0)? "TRUE":"FALSE"); } public String getTypeDeclaration () { return String.format(PcdDatabase.GuidTableDeclaration, phase); } private String getUuidCString (UUID uuid) { String[] guidStrArray; guidStrArray =(uuid.toString()).split("-"); return String.format("{ 0x%s, 0x%s, 0x%s, { 0x%s, 0x%s, 0x%s, 0x%s, 0x%s, 0x%s, 0x%s, 0x%s } }", guidStrArray[0], guidStrArray[1], guidStrArray[2], (guidStrArray[3].substring(0, 2)), (guidStrArray[3].substring(2, 4)), (guidStrArray[4].substring(0, 2)), (guidStrArray[4].substring(2, 4)), (guidStrArray[4].substring(4, 6)), (guidStrArray[4].substring(6, 8)), (guidStrArray[4].substring(8, 10)), (guidStrArray[4].substring(10, 12)) ); } public ArrayList getInstantiation () { ArrayList Output = new ArrayList(); Output.add("/* GuidTable */"); Output.add("{"); bodyStart = 2; if (al.size() == 0) { Output.add(getUuidCString(new UUID(0, 0))); } for (Object u : al) { UUID uuid = (UUID)u; String str = getUuidCString(uuid); if (al.indexOf(u) != (al.size() - 1)) { str += ","; } Output.add(str); bodyLineNum++; } Output.add("}"); return Output; } public int getBodyStart() { return bodyStart; } public int getBodyLineNum () { return bodyLineNum; } public int add (UUID uuid, String name) { int index = len; // // Include the NULL character at the end of String // len++; al.add(uuid); return index; } public int getTableLen () { return al.size() == 0 ? 0 : al.size(); } } class SkuIdTable { private ArrayList al; private ArrayList alComment; private String phase; private int len; private int bodyStart; private int bodyLineNum; public SkuIdTable (String phase) { this.phase = phase; al = new ArrayList(); alComment = new ArrayList(); bodyStart = 0; bodyLineNum = 0; len = 0; } public String getSizeMacro () { return String.format(PcdDatabase.SkuIdTableSizeMacro, phase, getSize()); } private int getSize () { return (al.size() == 0)? 1 : al.size(); } public String getExistanceMacro () { return String.format(PcdDatabase.SkuTableExistenceMacro, phase, (al.size() == 0)? "TRUE":"FALSE"); } public String getTypeDeclaration () { return String.format(PcdDatabase.SkuIdTableDeclaration, phase); } public ArrayList getInstantiation () { ArrayList Output = new ArrayList (); Output.add("/* SkuIdTable */"); Output.add("{"); bodyStart = 2; if (al.size() == 0) { Output.add("0"); } for (int index = 0; index < al.size(); index++) { String str; str = "/* " + alComment.get(index) + "*/ "; str += "/* MaxSku */ "; Integer[] ia = al.get(index); str += ia[0].toString() + ", "; for (int index2 = 1; index2 < ia.length; index2++) { str += ia[index2].toString(); if (index != al.size() - 1) { str += ", "; } } Output.add(str); bodyLineNum++; } Output.add("}"); return Output; } public int add (Token token) { int index; Integer [] skuIds = new Integer[token.maxSkuCount + 1]; skuIds[0] = new Integer(token.maxSkuCount); for (index = 1; index < skuIds.length; index++) { skuIds[index] = new Integer(token.skuData.get(index - 1).id); } index = len; len += skuIds.length; al.add(skuIds); alComment.add(token.getPrimaryKeyString()); return index; } public int getTableLen () { return al.size() == 0 ? 1 : al.size(); } } class LocalTokenNumberTable { private ArrayList al; private ArrayList alComment; private String phase; private int len; public LocalTokenNumberTable (String phase) { this.phase = phase; al = new ArrayList(); alComment = new ArrayList(); len = 0; } public String getSizeMacro () { return String.format(PcdDatabase.LocalTokenNumberTableSizeMacro, phase, getSize()) + String.format(PcdDatabase.LocalTokenNumberSizeMacro, phase, al.size()); } public int getSize () { return (al.size() == 0)? 1 : al.size(); } public String getExistanceMacro () { return String.format(PcdDatabase.DatabaseExistenceMacro, phase, (al.size() == 0)? "TRUE":"FALSE"); } public String getTypeDeclaration () { return String.format(PcdDatabase.LocalTokenNumberTableDeclaration, phase); } public ArrayList getInstantiation () { ArrayList output = new ArrayList(); output.add("/* LocalTokenNumberTable */"); output.add("{"); if (al.size() == 0) { output.add("0"); } for (int index = 0; index < al.size(); index++) { String str; str = (String)al.get(index); str += " /* " + alComment.get(index) + " */ "; if (index != (al.size() - 1)) { str += ","; } output.add(str); } output.add("}"); return output; } public int add (Token token) { int index = len; String str; len++; str = String.format(PcdDatabase.offsetOfStrTemplate, phase, token.hasDefaultValue() ? "Init" : "Uninit", token.getPrimaryKeyString()); if (token.isStringType()) { str += " | PCD_TYPE_STRING"; } if (token.skuEnabled) { str += " | PCD_TYPE_SKU_ENABLED"; } if (token.hiiEnabled) { str += " | PCD_TYPE_HII"; } if (token.vpdEnabled) { str += " | PCD_TYPE_VPD"; } al.add(str); alComment.add(token.getPrimaryKeyString()); return index; } } class ExMapTable { class ExTriplet { public Integer guidTableIdx; public Long exTokenNumber; public Long localTokenIdx; public ExTriplet (int guidTableIdx, long exTokenNumber, long localTokenIdx) { this.guidTableIdx = new Integer(guidTableIdx); this.exTokenNumber = new Long(exTokenNumber); this.localTokenIdx = new Long(localTokenIdx); } } private ArrayList al; private ArrayList alComment; private String phase; private int len; private int bodyStart; private int bodyLineNum; private int base; public ExMapTable (String phase) { this.phase = phase; al = new ArrayList(); alComment = new ArrayList(); bodyStart = 0; bodyLineNum = 0; len = 0; } public String getSizeMacro () { return String.format(PcdDatabase.ExMapTableSizeMacro, phase, getTableLen()) + String.format(PcdDatabase.ExTokenNumber, phase, al.size()); } private int getSize () { return (al.size() == 0)? 1 : al.size(); } public String getExistanceMacro () { return String.format(PcdDatabase.ExMapTableExistenceMacro, phase, (al.size() == 0)? "TRUE":"FALSE"); } public String getTypeDeclaration () { return String.format(PcdDatabase.ExMapTableDeclaration, phase); } public ArrayList getInstantiation () { ArrayList Output = new ArrayList(); Output.add("/* ExMapTable */"); Output.add("{"); bodyStart = 2; if (al.size() == 0) { Output.add("{0, 0, 0}"); } int index; for (index = 0; index < al.size(); index++) { String str; ExTriplet e = (ExTriplet)al.get(index); str = "{ " + e.exTokenNumber.toString() + ", "; str += e.localTokenIdx.toString() + ", "; str += e.guidTableIdx.toString(); str += " /* " + alComment.get(index) + " */"; if (index != al.size() - 1) { str += ","; } Output.add(str); bodyLineNum++; } Output.add("}"); return Output; } public int add (int localTokenIdx, long exTokenNum, int guidTableIdx, String name) { int index = len; len++; al.add(new ExTriplet(guidTableIdx, exTokenNum, localTokenIdx)); alComment.add(name); return index; } public int getTableLen () { return al.size() == 0 ? 1 : al.size(); } } class PcdDatabase { public final static String ExMapTableDeclaration = "DYNAMICEX_MAPPING ExMapTable[%s_EXMAPPING_TABLE_SIZE];\r\n"; public final static String GuidTableDeclaration = "EFI_GUID GuidTable[%s_GUID_TABLE_SIZE];\r\n"; public final static String LocalTokenNumberTableDeclaration = "UINT32 LocalTokenNumberTable[%s_LOCAL_TOKEN_NUMBER_TABLE_SIZE];\r\n"; public final static String StringTableDeclaration = "UINT16 StringTable[%s_STRING_TABLE_SIZE];\r\n"; public final static String SizeTableDeclaration = "UINT16 SizeTable[%s_LOCAL_TOKEN_NUMBER_TABLE_SIZE];\r\n"; public final static String SkuIdTableDeclaration = "UINT8 SkuIdTable[%s_SKUID_TABLE_SIZE];\r\n"; public final static String ExMapTableSizeMacro = "#define %s_EXMAPPING_TABLE_SIZE %d\r\n"; public final static String ExTokenNumber = "#define %s_EX_TOKEN_NUMBER %d\r\n"; public final static String GuidTableSizeMacro = "#define %s_GUID_TABLE_SIZE %d\r\n"; public final static String LocalTokenNumberTableSizeMacro = "#define %s_LOCAL_TOKEN_NUMBER_TABLE_SIZE %d\r\n"; public final static String LocalTokenNumberSizeMacro = "#define %s_LOCAL_TOKEN_NUMBER %d\r\n"; public final static String StringTableSizeMacro = "#define %s_STRING_TABLE_SIZE %d\r\n"; public final static String SkuIdTableSizeMacro = "#define %s_SKUID_TABLE_SIZE %d\r\n"; public final static String ExMapTableExistenceMacro = "#define %s_EXMAP_TABLE_EMPTY %s\r\n"; public final static String GuidTableExistenceMacro = "#define %s_GUID_TABLE_EMPTY %s\r\n"; public final static String DatabaseExistenceMacro = "#define %s_DATABASE_EMPTY %s\r\n"; public final static String StringTableExistenceMacro = "#define %s_STRING_TABLE_EMPTY %s\r\n"; public final static String SkuTableExistenceMacro = "#define %s_SKUID_TABLE_EMPTY %s\r\n"; public final static String offsetOfSkuHeadStrTemplate = "offsetof(%s_PCD_DATABASE, %s.%s_SkuDataTable)"; public final static String offsetOfStrTemplate = "offsetof(%s_PCD_DATABASE, %s.%s)"; private StringTable stringTable; private GuidTable guidTable; private LocalTokenNumberTable localTokenNumberTable; private SkuIdTable skuIdTable; private SizeTable sizeTable; private ExMapTable exMapTable; private ArrayList alTokens; private String phase; private int assignedTokenNumber; // // After Major changes done to the PCD // database generation class PcdDatabase // Please increment the version and please // also update the version number in PCD // service PEIM and DXE driver accordingly. // private final int version = 1; private String hString; private String cString; class AlignmentSizeComp implements Comparator { public int compare (Token a, Token b) { return getAlignmentSize(b) - getAlignmentSize(a); } } public PcdDatabase (ArrayList alTokens, String exePhase, int startLen) { phase = exePhase; stringTable = new StringTable(phase); guidTable = new GuidTable(phase); localTokenNumberTable = new LocalTokenNumberTable(phase); skuIdTable = new SkuIdTable(phase); sizeTable = new SizeTable(phase); exMapTable = new ExMapTable(phase); assignedTokenNumber = startLen; this.alTokens = alTokens; } private void getTwoGroupsOfTokens (ArrayList alTokens, List initTokens, List uninitTokens) { for (int i = 0; i < alTokens.size(); i++) { Token t = (Token)alTokens.get(i); if (t.hasDefaultValue()) { initTokens.add(t); } else { uninitTokens.add(t); } } return; } private int getAlignmentSize (Token token) { if (token.hiiEnabled) { return 2; } if (token.vpdEnabled) { return 4; } if (token.isStringType()) { return 2; } switch (token.datumType) { case UINT8: return 1; case UINT16: return 2; case UINT32: return 4; case UINT64: return 8; case POINTER: return 1; case BOOLEAN: return 1; } return 1; } public String getCString () { return cString; } public String getHString () { return hString; } public void genCode () { final String newLine = "\r\n"; final String declNewLine = ";\r\n"; final String tab = "\t"; final String commaNewLine = ", \r\n"; int i; ArrayList decla; ArrayList inst; String macroStr = ""; String initDeclStr = ""; String initInstStr = ""; String uninitDeclStr = ""; List initTokens = new ArrayList (); List uninitTokens = new ArrayList (); HashMap > initCode = new HashMap> (); HashMap > uninitCode = new HashMap> (); getTwoGroupsOfTokens (alTokens, initTokens, uninitTokens); // // Generate Structure Declaration for PcdTokens without Default Value // PEI_PCD_DATABASE_INIT // java.util.Comparator comparator = new AlignmentSizeComp(); java.util.Collections.sort(initTokens, comparator); initCode = processTokens(initTokens); // // Generate Structure Declaration for PcdTokens without Default Value // PEI_PCD_DATABASE_UNINIT // java.util.Collections.sort(uninitTokens, comparator); uninitCode = processTokens(uninitTokens); // // Generate size info Macro for all Tables // macroStr += guidTable.getSizeMacro(); macroStr += stringTable.getSizeMacro(); macroStr += skuIdTable.getSizeMacro(); macroStr += localTokenNumberTable.getSizeMacro(); macroStr += exMapTable.getSizeMacro(); // // Generate existance info Macro for all Tables // macroStr += guidTable.getExistanceMacro(); macroStr += stringTable.getExistanceMacro(); macroStr += skuIdTable.getExistanceMacro(); macroStr += localTokenNumberTable.getExistanceMacro(); macroStr += exMapTable.getExistanceMacro(); // // Generate Structure Declaration for PcdTokens with Default Value // for example PEI_PCD_DATABASE_INIT // initDeclStr += "typedef struct {" + newLine; { initDeclStr += tab + exMapTable.getTypeDeclaration(); initDeclStr += tab + guidTable.getTypeDeclaration(); initDeclStr += tab + localTokenNumberTable.getTypeDeclaration(); initDeclStr += tab + stringTable.getTypeDeclaration(); initDeclStr += tab + sizeTable.getTypeDeclaration(); initDeclStr += tab + skuIdTable.getTypeDeclaration(); if (phase.equalsIgnoreCase("PEI")) { initDeclStr += tab + "SKU_ID SystemSkuId;" + newLine; } decla = initCode.get(new String("Declaration")); for (i = 0; i < decla.size(); i++) { initDeclStr += tab + decla.get(i) + declNewLine; } // // Generate Structure Declaration for PcdToken with SkuEnabled // decla = initCode.get("DeclarationForSku"); for (i = 0; i < decla.size(); i++) { initDeclStr += tab + decla.get(i) + declNewLine; } } initDeclStr += String.format("} %s_PCD_DATABASE_INIT;\r\n\r\n", phase); // // Generate MACRO for structure intialization of PCDTokens with Default Value // The sequence must match the sequence of declaration of the memembers in the structure String tmp = String.format("%s_PCD_DATABASE_INIT g%sPcdDbInit = { ", phase.toUpperCase(), phase.toUpperCase()); initInstStr += tmp + newLine; initInstStr += tab + genInstantiationStr(exMapTable.getInstantiation()) + commaNewLine; initInstStr += tab + genInstantiationStr(guidTable.getInstantiation()) + commaNewLine; initInstStr += tab + genInstantiationStr(localTokenNumberTable.getInstantiation()) + commaNewLine; initInstStr += tab + genInstantiationStr(stringTable.getInstantiation()) + commaNewLine; initInstStr += tab + genInstantiationStr(sizeTable.getInstantiation()) + commaNewLine; initInstStr += tab + genInstantiationStr(skuIdTable.getInstantiation()) + commaNewLine; // // For SystemSkuId // if (phase.equalsIgnoreCase("PEI")) { initInstStr += tab + "0" + tab + "/* SystemSkuId */" + commaNewLine; } inst = initCode.get("Instantiation"); for (i = 0; i < inst.size(); i++) { initInstStr += tab + inst.get(i) + commaNewLine; } inst = initCode.get("InstantiationForSku"); for (i = 0; i < inst.size(); i++) { initInstStr += tab + inst.get(i); if (i != inst.size() - 1) { initInstStr += commaNewLine; } } initInstStr += "};"; uninitDeclStr += "typedef struct {" + newLine; { decla = uninitCode.get("Declaration"); if (decla.size() == 0) { uninitDeclStr += "UINT8 dummy /* The UINT struct is empty */" + declNewLine; } else { for (i = 0; i < decla.size(); i++) { uninitDeclStr += tab + decla.get(i) + declNewLine; } decla = uninitCode.get("DeclarationForSku"); for (i = 0; i < decla.size(); i++) { uninitDeclStr += tab + decla.get(i) + declNewLine; } } } uninitDeclStr += String.format("} %s_PCD_DATABASE_UNINIT;\r\n\r\n", phase); cString = initInstStr + newLine; hString = macroStr + newLine + initDeclStr + newLine + uninitDeclStr + newLine + newLine; hString += String.format("#define PCD_%s_SERVICE_DRIVER_VERSION %d", phase, version); } private String genInstantiationStr (ArrayList alStr) { String str = ""; for (int i = 0; i< alStr.size(); i++) { str += "\t" + alStr.get(i); if (i != alStr.size() - 1) { str += "\r\n"; } } return str; } private HashMap> processTokens (List alToken) { HashMap > map = new HashMap>(); ArrayList decl = new ArrayList(); ArrayList declForSkuEnableType = new ArrayList(); ArrayList inst = new ArrayList(); ArrayList instForSkuEnableType = new ArrayList(); for (int index = 0; index < alToken.size(); index++) { Token token = alToken.get(index); if (token.skuEnabled) { // // BugBug: Schema only support Data type now // int tableIdx; tableIdx = skuIdTable.add(token); decl.add(getSkuEnabledTypeDeclaration(token)); if (token.hasDefaultValue()) { inst.add(getSkuEnabledTypeInstantiaion(token, tableIdx)); } declForSkuEnableType.add(getDataTypeDeclarationForSkuEnabled(token)); if (token.hasDefaultValue()) { instForSkuEnableType.add(getDataTypeInstantiationForSkuEnabled(token)); } } else { if (token.hiiEnabled) { decl.add(getVariableEnableTypeDeclaration(token)); inst.add(getVariableEnableInstantiation(token)); } else if (token.vpdEnabled) { decl.add(getVpdEnableTypeDeclaration(token)); inst.add(getVpdEnableTypeInstantiation(token)); } else if (token.isStringType()) { decl.add(getStringTypeDeclaration(token)); inst.add(getStringTypeInstantiation(stringTable.add(token.getStringTypeString(), token), token)); } else { decl.add(getDataTypeDeclaration(token)); if (token.hasDefaultValue()) { inst.add(getDataTypeInstantiation(token)); } } } sizeTable.add(token); localTokenNumberTable.add(token); token.tokenNumber = assignedTokenNumber++; } map.put("Declaration", decl); map.put("DeclarationForSku", declForSkuEnableType); map.put("Instantiation", inst); map.put("InstantiationForSku", instForSkuEnableType); return map; } private String getSkuEnabledTypeDeclaration (Token token) { return String.format("SKU_HEAD %s;\r\n", token.getPrimaryKeyString()); } private String getSkuEnabledTypeInstantiaion (Token token, int SkuTableIdx) { String offsetof = String.format(PcdDatabase.offsetOfSkuHeadStrTemplate, phase, token.hasDefaultValue()? "Init" : "Uninit", token.getPrimaryKeyString()); return String.format("{ %s, %d }", offsetof, SkuTableIdx); } private String getDataTypeDeclarationForSkuEnabled (Token token) { String typeStr = ""; if (token.datumType == Token.DATUM_TYPE.UINT8) { typeStr = "UINT8 %s_%s[%d];\r\n"; } else if (token.datumType == Token.DATUM_TYPE.UINT16) { typeStr = "UINT16 %s_%s[%d];\r\n"; } else if (token.datumType == Token.DATUM_TYPE.UINT32) { typeStr = "UINT32 %s_%s[%d];\r\n"; } else if (token.datumType == Token.DATUM_TYPE.UINT64) { typeStr = "UINT64 %s_%s[%d];\r\n"; } else if (token.datumType == Token.DATUM_TYPE.BOOLEAN) { typeStr = "BOOLEAN %s_%s[%d];\r\n"; } else if (token.datumType == Token.DATUM_TYPE.POINTER) { return String.format("UINT8 %s_s[%d];\r\n", token.getPrimaryKeyString(), "SkuDataTable", token.datumSize * token.maxSkuCount); } return String.format(typeStr, token.getPrimaryKeyString(), "SkuDataTable", token.maxSkuCount); } private String getDataTypeInstantiationForSkuEnabled (Token token) { String str = ""; if (token.datumType == Token.DATUM_TYPE.POINTER) { return String.format("UINT8 %s_s[%d]", token.getPrimaryKeyString(), "SkuDataTable", token.datumSize * token.maxSkuCount); } else { str = "{ "; for (int idx = 0; idx < token.maxSkuCount; idx++) { str += token.skuData.get(idx).toString(); if (idx != token.maxSkuCount - 1) { str += ", "; } } str += "}"; return str; } } private String getDataTypeInstantiation (Token token) { if (token.datumType == Token.DATUM_TYPE.POINTER) { return String.format("%s /* %s */", token.datum.toString(), token.getPrimaryKeyString()); } else { return String.format("%s /* %s */", token.datum.toString(), token.getPrimaryKeyString()); } } private String getDataTypeDeclaration (Token token) { String typeStr = ""; if (token.datumType == Token.DATUM_TYPE.UINT8) { typeStr = "UINT8"; } else if (token.datumType == Token.DATUM_TYPE.UINT16) { typeStr = "UINT16"; } else if (token.datumType == Token.DATUM_TYPE.UINT32) { typeStr = "UINT32"; } else if (token.datumType == Token.DATUM_TYPE.UINT64) { typeStr = "UINT64"; } else if (token.datumType == Token.DATUM_TYPE.BOOLEAN) { typeStr = "BOOLEAN"; } else if (token.datumType == Token.DATUM_TYPE.POINTER) { return String.format("UINT8 %s[%d]", token.getPrimaryKeyString(), token.datumSize); } else { } return String.format("%s %s", typeStr, token.getPrimaryKeyString()); } private String getVpdEnableTypeDeclaration (Token token) { return String.format("VPD_HEAD %s", token.getPrimaryKeyString()); } private String getVpdEnableTypeInstantiation (Token token) { return String.format("{ %d } /* %s */", token.vpdOffset, token.getPrimaryKeyString()); } private String getStringTypeDeclaration (Token token) { return String.format("UINT16 %s", token.getPrimaryKeyString()); } private String getStringTypeInstantiation (int StringTableIdx, Token token) { return String.format ("%d /* %s */", StringTableIdx, token.getPrimaryKeyString()); } private String getVariableEnableTypeDeclaration (Token token) { return String.format("VARIABLE_HEAD %s", token.getPrimaryKeyString()); } private String getVariableEnableInstantiation (Token token) { return String.format("{ %d, %d, %d } /* %s */", guidTable.add(token.variableGuid, token.getPrimaryKeyString()), stringTable.add(token.variableName, token), token.variableOffset, token.getPrimaryKeyString()); } public int getTotalTokenNumber () { return sizeTable.getTableLen(); } public static String getPcdDatabaseCommonDefinitions () throws EntityException { String retStr = ""; try { File file = new File(GlobalData.getWorkspacePath() + File.separator + "Tools" + File.separator + "Conf" + File.separator + "Pcd" + File.separator + "PcdDatabaseCommonDefinitions.sample"); FileReader reader = new FileReader(file); BufferedReader in = new BufferedReader(reader); String str; while ((str = in.readLine()) != null) { retStr = retStr +"\r\n" + str; } } catch (Exception ex) { throw new EntityException("Fatal error when generating PcdDatabase Common Definitions"); } return retStr; } public static String getPcdDxeDatabaseDefinitions () throws EntityException { String retStr = ""; try { File file = new File(GlobalData.getWorkspacePath() + File.separator + "Tools" + File.separator + "Conf" + File.separator + "Pcd" + File.separator + "PcdDatabaseDxeDefinitions.sample"); FileReader reader = new FileReader(file); BufferedReader in = new BufferedReader(reader); String str; while ((str = in.readLine()) != null) { retStr = retStr +"\r\n" + str; } } catch (Exception ex) { throw new EntityException("Fatal error when generating PcdDatabase Dxe Definitions"); } return retStr; } public static String getPcdPeiDatabaseDefinitions () throws EntityException { String retStr = ""; try { File file = new File(GlobalData.getWorkspacePath() + File.separator + "Tools" + File.separator + "Conf" + File.separator + "Pcd" + File.separator + "PcdDatabasePeiDefinitions.sample"); FileReader reader = new FileReader(file); BufferedReader in = new BufferedReader(reader); String str; while ((str = in.readLine()) != null) { retStr = retStr +"\r\n" + str; } } catch (Exception ex) { throw new EntityException("Fatal error when generating PcdDatabase Pei Definitions"); } return retStr; } } class ModuleInfo { public ModuleSADocument.ModuleSA module; public UsageInstance.MODULE_TYPE type; public ModuleInfo (ModuleSADocument.ModuleSA module, UsageInstance.MODULE_TYPE type) { this.module = module; this.type = type; } } /** This action class is to collect PCD information from MSA, SPD, FPD xml file. This class will be used for wizard and build tools, So it can *not* inherit from buildAction or UIAction. **/ public class CollectPCDAction { /// memoryDatabase hold all PCD information collected from SPD, MSA, FPD. private MemoryDatabaseManager dbManager; /// Workspacepath hold the workspace information. private String workspacePath; /// FPD file is the root file. private String fpdFilePath; /// Message level for CollectPCDAction. private int originalMessageLevel; /// Cache the fpd docment instance for private usage. private FrameworkPlatformDescriptionDocument fpdDocInstance; /** Set WorkspacePath parameter for this action class. @param workspacePath parameter for this action **/ public void setWorkspacePath(String workspacePath) { this.workspacePath = workspacePath; } /** Set action message level for CollectPcdAction tool. The message should be restored when this action exit. @param actionMessageLevel parameter for this action **/ public void setActionMessageLevel(int actionMessageLevel) { originalMessageLevel = ActionMessage.messageLevel; ActionMessage.messageLevel = actionMessageLevel; } /** Set FPDFileName parameter for this action class. @param fpdFilePath fpd file path **/ public void setFPDFilePath(String fpdFilePath) { this.fpdFilePath = fpdFilePath; } /** Common function interface for outer. @param workspacePath The path of workspace of current build or analysis. @param fpdFilePath The fpd file path of current build or analysis. @param messageLevel The message level for this Action. @throws Exception The exception of this function. Because it can *not* be predict where the action class will be used. So only Exception can be throw. **/ public void perform(String workspacePath, String fpdFilePath, int messageLevel) throws Exception { setWorkspacePath(workspacePath); setFPDFilePath(fpdFilePath); setActionMessageLevel(messageLevel); checkParameter(); execute(); ActionMessage.messageLevel = originalMessageLevel; } /** Core execution function for this action class. This function work flows will be: 1) Collect and prepocess PCD information from FPD file, all PCD information will be stored into memory database. 2) Generate 3 strings for a) All modules using Dynamic(Ex) PCD entry.(Token Number) b) PEI PCDDatabase (C Structure) for PCD Service PEIM. c) DXE PCD Database (C structure) for PCD Service DXE. @throws EntityException Exception indicate failed to execute this action. **/ private void execute() throws EntityException { // // Get memoryDatabaseManager instance from GlobalData. // The memoryDatabaseManager should be initialized for whatever build // tools or wizard tools // if((dbManager = GlobalData.getPCDMemoryDBManager()) == null) { throw new EntityException("The instance of PCD memory database manager is null"); } // // Collect all PCD information defined in FPD file. // Evenry token defind in FPD will be created as an token into // memory database. // createTokenInDBFromFPD(); // // Call Private function genPcdDatabaseSourceCode (void); ComponentTypeBsDriver // 1) Generate for PEI, DXE PCD DATABASE's definition and initialization. // genPcdDatabaseSourceCode (); } /** This function generates source code for PCD Database. @param void @throws EntityException If the token does *not* exist in memory database. **/ private void genPcdDatabaseSourceCode() throws EntityException { String PcdCommonHeaderString = PcdDatabase.getPcdDatabaseCommonDefinitions (); ArrayList alPei = new ArrayList (); ArrayList alDxe = new ArrayList (); dbManager.getTwoPhaseDynamicRecordArray(alPei, alDxe); PcdDatabase pcdPeiDatabase = new PcdDatabase (alPei, "PEI", 0); pcdPeiDatabase.genCode(); dbManager.PcdPeimHString = PcdCommonHeaderString + pcdPeiDatabase.getHString() + PcdDatabase.getPcdPeiDatabaseDefinitions(); dbManager.PcdPeimCString = pcdPeiDatabase.getCString(); PcdDatabase pcdDxeDatabase = new PcdDatabase (alDxe, "DXE", alPei.size() ); pcdDxeDatabase.genCode(); dbManager.PcdDxeHString = dbManager.PcdPeimHString + pcdDxeDatabase.getHString() + PcdDatabase.getPcdDxeDatabaseDefinitions(); dbManager.PcdDxeCString = pcdDxeDatabase.getCString(); } /** Get component array from FPD. This function maybe provided by some Global class. @return List the component array. */ private List getComponentsFromFPD() throws EntityException { HashMap map = new HashMap(); List allModules = new ArrayList(); ModuleInfo current = null; int index = 0; org.tianocore.Components components = null; FrameworkModulesDocument.FrameworkModules fModules = null; java.util.List modules = null; if (fpdDocInstance == null) { try { fpdDocInstance = (FrameworkPlatformDescriptionDocument)XmlObject.Factory.parse(new File(fpdFilePath)); } catch(IOException ioE) { throw new EntityException("File IO error for xml file:" + fpdFilePath + "\n" + ioE.getMessage()); } catch(XmlException xmlE) { throw new EntityException("Can't parse the FPD xml fle:" + fpdFilePath + "\n" + xmlE.getMessage()); } } // // Check whether FPD contians // fModules = fpdDocInstance.getFrameworkPlatformDescription().getFrameworkModules(); if (fModules == null) { return null; } // // BUGBUG: The following is work around code, the final component type should be get from // GlobalData class. // components = fModules.getSEC(); if (components != null) { modules = components.getModuleSAList(); for (index = 0; index < modules.size(); index ++) { allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.SEC)); } } components = fModules.getPEICORE(); if (components != null) { modules = components.getModuleSAList(); for (index = 0; index < modules.size(); index ++) { allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.PEI_CORE)); } } components = fModules.getPEIM(); if (components != null) { modules = components.getModuleSAList(); for (index = 0; index < modules.size(); index ++) { allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.PEIM)); } } components = fModules.getDXECORE(); if (components != null) { modules = components.getModuleSAList(); for (index = 0; index < modules.size(); index ++) { allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.DXE_CORE)); } } components = fModules.getDXEDRIVERS(); if (components != null) { modules = components.getModuleSAList(); for (index = 0; index < modules.size(); index ++) { allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.DXE_DRIVERS)); } } components = fModules.getOTHERCOMPONENTS(); if (components != null) { modules = components.getModuleSAList(); for (index = 0; index < modules.size(); index ++) { allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.OTHER_COMPONENTS)); } } return allModules; } /** Create token instance object into memory database, the token information comes for FPD file. Normally, FPD file will contain all token platform informations. @return FrameworkPlatformDescriptionDocument The FPD document instance for furture usage. @throws EntityException Failed to parse FPD xml file. **/ private void createTokenInDBFromFPD() throws EntityException { int index = 0; int index2 = 0; int pcdIndex = 0; List pcdBuildDataArray = new ArrayList(); PcdBuildData pcdBuildData = null; Token token = null; UUID nullUUID = new UUID(0,0); UUID platformTokenSpace= nullUUID; SkuInstance skuInstance = null; int skuIndex = 0; List modules = null; String primaryKey = null; PcdBuildData.SkuData[] skuDataArray = null; String exceptionString = null; UsageInstance usageInstance = null; String primaryKey1 = null; String primaryKey2 = null; boolean isDuplicate = false; java.util.List tokenGuidStringArray = null; // // Get all from FPD file. // modules = getComponentsFromFPD(); if (modules == null) { throw new EntityException("No modules in FPD file, Please check whether there are elements in in FPD file!"); } // // Loop all modules to process for each module. // for (index = 0; index < modules.size(); index ++) { isDuplicate = false; for (index2 = 0; index2 < index; index2 ++) { // // BUGBUG: For transition schema, we can *not* get module's version from // , It is work around code. // primaryKey1 = UsageInstance.getPrimaryKey(modules.get(index).module.getModuleName(), translateSchemaStringToUUID(modules.get(index).module.getModuleGuid()), modules.get(index).module.getPackageName(), translateSchemaStringToUUID(modules.get(index).module.getPackageGuid()), modules.get(index).module.getArch().toString(), null); primaryKey2 = UsageInstance.getPrimaryKey(modules.get(index2).module.getModuleName(), translateSchemaStringToUUID(modules.get(index2).module.getModuleGuid()), modules.get(index2).module.getPackageName(), translateSchemaStringToUUID(modules.get(index2).module.getPackageGuid()), modules.get(index2).module.getArch().toString(), null); if (primaryKey1.equalsIgnoreCase(primaryKey2)) { isDuplicate = true; break; } } if (isDuplicate) { continue; } if (modules.get(index).module.getPcdBuildDeclarations() == null) { continue; } pcdBuildDataArray = modules.get(index).module.getPcdBuildDeclarations().getPcdBuildDataList(); if (pcdBuildDataArray == null) { continue; } if (pcdBuildDataArray.size() == 0) { continue; } // // Loop all Pcd entry for a module and add it into memory database. // for (pcdIndex = 0; pcdIndex < pcdBuildDataArray.size(); pcdIndex ++) { pcdBuildData = pcdBuildDataArray.get(pcdIndex); primaryKey = Token.getPrimaryKeyString(pcdBuildData.getCName(), translateSchemaStringToUUID(pcdBuildData.getTokenSpaceGuid())); if (dbManager.isTokenInDatabase(primaryKey)) { // // If the token is already exist in database, do some necessary checking // and add a usage instance into this token in database // token = dbManager.getTokenByKey(primaryKey); // // Checking for DatumSize // if (token.datumSize != pcdBuildData.getDatumSize()) { exceptionString = String.format("The datum size of PCD entry %s is %d, which is different with %d defined in before!", pcdBuildData.getCName(), pcdBuildData.getDatumSize(), token.datumSize); throw new EntityException(exceptionString); } // // checking for DatumType // if (token.datumType != Token.getdatumTypeFromString(pcdBuildData.getDatumType().toString())) { exceptionString = String.format("The datum type of PCD entry %s is %s, which is different with %s defined in before!", pcdBuildData.getCName(), pcdBuildData.getDatumType().toString(), Token.getStringOfdatumType(token.datumType)); throw new EntityException(exceptionString); } } else { // // If the token is not in database, create a new token instance and add // a usage instance into this token in database. // token = new Token(pcdBuildData.getCName(), translateSchemaStringToUUID(pcdBuildData.getTokenSpaceGuid())); token.datum = pcdBuildData.getDefaultValue(); token.pcdType = Token.getpcdTypeFromString(pcdBuildData.getItemType().toString()); token.datumType = Token.getdatumTypeFromString(pcdBuildData.getDatumType().toString()); token.datumSize = pcdBuildData.getDatumSize(); token.skuId = Integer.decode(pcdBuildData.getSkuId()); if (pcdBuildData.getToken() == null) { exceptionString = String.format("In FPD file, No defined for PCD entry %s in module %s", token.cName, modules.get(index).module.getModuleName()); throw new EntityException(exceptionString); } token.tokenNumber = Integer.decode(pcdBuildData.getToken().getStringValue()); if ((token.pcdType == Token.PCD_TYPE.DYNAMIC) || (token.pcdType == Token.PCD_TYPE.DYNAMIC_EX)) { updateDynamicInformation(modules.get(index).module.getModuleName(), token); } dbManager.addTokenToDatabase(primaryKey, token); } // // Create an usage instance for this token // usageInstance = new UsageInstance(token, Token.getpcdTypeFromString(pcdBuildData.getItemType().toString()), modules.get(index).module.getModuleName(), translateSchemaStringToUUID(modules.get(index).module.getModuleGuid()), modules.get(index).module.getPackageName(), translateSchemaStringToUUID(modules.get(index).module.getPackageGuid()), modules.get(index).type, Token.getpcdTypeFromString(pcdBuildData.getItemType().toString()), modules.get(index).module.getArch().toString(), null, pcdBuildData.getDefaultValue()); token.addUsageInstance(usageInstance); } } } /** Update dynamic information for PCD entry. Dynamic information is retrieved from in FPD file. @param moduleName @param token @return Token **/ private Token updateDynamicInformation(String moduleName, Token token) throws EntityException { PcdDynamicBuildDeclarations pcdDynamicBuildDescriptions = null; boolean isFound = false; int index = 0; String primaryKey = null; SkuInstance skuInstance = null; int skuIndex = 0; String exceptionString = null; PcdDynamicBuildDeclarations.PcdBuildData.SkuData[] skuDataArray = null; List pcdDynamicBuildDataArray = null; // // If FPD document is not be opened, open and initialize it. // if (fpdDocInstance == null) { try { fpdDocInstance = (FrameworkPlatformDescriptionDocument)XmlObject.Factory.parse(new File(fpdFilePath)); } catch(IOException ioE) { throw new EntityException("File IO error for xml file:" + fpdFilePath + "\n" + ioE.getMessage()); } catch(XmlException xmlE) { throw new EntityException("Can't parse the FPD xml fle:" + fpdFilePath + "\n" + xmlE.getMessage()); } } pcdDynamicBuildDescriptions = fpdDocInstance.getFrameworkPlatformDescription().getPcdDynamicBuildDeclarations(); if (pcdDynamicBuildDescriptions == null) { throw new EntityException(String.format("There are no in FPD file but contains Dynamic type "+ "PCD entry %s in module %s!", token.cName, moduleName)); } pcdDynamicBuildDataArray = pcdDynamicBuildDescriptions.getPcdBuildDataList(); if (pcdDynamicBuildDataArray == null) { throw new EntityException(String.format("There are no PcdDynamicBuildData in section but contains Dynamic type"+ "PCD entry %s in module %s.!", token.cName, moduleName)); } isFound = false; for (index = 0; index < pcdDynamicBuildDataArray.size(); index ++) { if (pcdDynamicBuildDataArray.get(index).getTokenSpaceGuidList().size() != 0) { primaryKey = Token.getPrimaryKeyString(pcdDynamicBuildDataArray.get(index).getCName(), translateSchemaStringToUUID(pcdDynamicBuildDataArray.get(index).getTokenSpaceGuidList().get(0))); } else { primaryKey = Token.getPrimaryKeyString(pcdDynamicBuildDataArray.get(index).getCName(), translateSchemaStringToUUID(null)); } if (primaryKey.equalsIgnoreCase(token.getPrimaryKeyString())) { isFound = true; // // For Hii related value // token.hiiEnabled = pcdDynamicBuildDataArray.get(index).getHiiEnable(); if (token.hiiEnabled) { token.variableGuid = Token.getGUIDFromSchemaObject(pcdDynamicBuildDataArray.get(index).getVariableGuid()); if (token.variableGuid == null) { throw new EntityException(String.format("In for PCD entry %s, HiiEnable is true" + "but no is found! Please fix the FPD file!", token.cName)); } token.variableName = pcdDynamicBuildDataArray.get(index).getVariableName(); if (token.variableName == null) { throw new EntityException(String.format("In for PCD entry %s, HiiEnable is true" + "but no is found! Please fix the FPD file!", token.cName)); } if (pcdDynamicBuildDataArray.get(index).getDataOffset() == null) { throw new EntityException(String.format("In for PCD entry %s, HiiEnable is true" + "but no is found! Please fix the FPD file!", token.cName)); } token.variableOffset = Integer.decode(pcdDynamicBuildDataArray.get(index).getDataOffset()); } // // For Vpd related value // token.vpdEnabled = pcdDynamicBuildDataArray.get(index).getVpdEnable(); if (token.vpdEnabled) { if (pcdDynamicBuildDataArray.get(index).getDataOffset() == null) { throw new EntityException(String.format("In for PCD entry %s, VpdEnable is true" + "but no is found! Please fix the FPD file!", token.cName)); } token.vpdOffset = Integer.decode(pcdDynamicBuildDataArray.get(index).getDataOffset()); } // // For SkuData // token.skuEnabled = pcdDynamicBuildDataArray.get(index).getSkuEnable(); if (token.skuEnabled) { skuDataArray = (PcdDynamicBuildDeclarations.PcdBuildData.SkuData[])pcdDynamicBuildDataArray.get(index).getSkuDataList().toArray(); token.maxSkuCount = Integer.decode(pcdDynamicBuildDataArray.get(index).getMaxSku()); if (skuDataArray == null) { exceptionString = String.format("In FPD file, the is true for PCD entry %s in module %s, But no any sku data.", token.cName, moduleName); throw new EntityException(exceptionString); } if (token.maxSkuCount != pcdDynamicBuildDataArray.get(index).sizeOfSkuDataArray()) { exceptionString = String.format("In FPD file, is not equal to the size of for PCD entry %s in module %s", token.cName, moduleName); throw new EntityException(exceptionString); } for (skuIndex = 0; skuIndex < pcdDynamicBuildDataArray.get(index).sizeOfSkuDataArray(); skuIndex ++) { skuInstance = new SkuInstance(skuDataArray[skuIndex].getId(), skuDataArray[skuIndex].getValue()); token.skuData.add(skuInstance); } } break; } } if (!isFound) { exceptionString = String.format("In FPD file, No dynamic PCD data for PCD entry %s in module %s", token.cName, moduleName); throw new EntityException(exceptionString); } return token; } /** Translate the schema string to UUID instance. In schema, the string of UUID is defined as following two types string: 1) GuidArrayType: pattern = 0x[a-fA-F0-9]{1,8},( )*0x[a-fA-F0-9]{1,4},( )*0x[a-fA-F0-9]{1,4}(,( )*\{)?(,?( )*0x[a-fA-F0-9]{1,2}){8}( )*(\})? 2) GuidNamingConvention: pattern = [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12} This function will convert string and create uuid instance. @param uuidString UUID string in XML file @return UUID UUID instance **/ private UUID translateSchemaStringToUUID(String uuidString) throws EntityException { String temp; String[] splitStringArray; int index; int chIndex; int chLen; if (uuidString == null) { return null; } if (uuidString.length() == 0) { return null; } // // If the UUID schema string is GuidArrayType type then need translate // to GuidNamingConvention type at first. // if ((uuidString.charAt(0) == '0') && ((uuidString.charAt(1) == 'x') || (uuidString.charAt(1) == 'X'))) { splitStringArray = uuidString.split("," ); if (splitStringArray.length != 11) { throw new EntityException ("Wrong format for UUID string: " + uuidString); } // // Remove blank space from these string and remove header string "0x" // for (index = 0; index < 11; index ++) { splitStringArray[index] = splitStringArray[index].trim(); splitStringArray[index] = splitStringArray[index].substring(2, splitStringArray[index].length()); } // // Add heading '0' to normalize the string length // for (index = 3; index < 11; index ++) { chLen = splitStringArray[index].length(); for (chIndex = 0; chIndex < 2 - chLen; chIndex ++) { splitStringArray[index] = "0" + splitStringArray[index]; } } // // construct the final GuidNamingConvention string // temp = String.format("%s-%s-%s-%s%s-%s%s%s%s%s%s", splitStringArray[0], splitStringArray[1], splitStringArray[2], splitStringArray[3], splitStringArray[4], splitStringArray[5], splitStringArray[6], splitStringArray[7], splitStringArray[8], splitStringArray[9], splitStringArray[10]); uuidString = temp; } return UUID.fromString(uuidString); } /** check parameter for this action. @throws EntityException Bad parameter. **/ private void checkParameter() throws EntityException { File file = null; if((fpdFilePath == null) ||(workspacePath == null)) { throw new EntityException("WorkspacePath and FPDFileName should be blank for CollectPCDAtion!"); } if(fpdFilePath.length() == 0 || workspacePath.length() == 0) { throw new EntityException("WorkspacePath and FPDFileName should be blank for CollectPCDAtion!"); } file = new File(workspacePath); if(!file.exists()) { throw new EntityException("WorkpacePath " + workspacePath + " does not exist!"); } file = new File(fpdFilePath); if(!file.exists()) { throw new EntityException("FPD File " + fpdFilePath + " does not exist!"); } } /** Test case function @param argv parameter from command line **/ public static void main(String argv[]) throws EntityException { CollectPCDAction ca = new CollectPCDAction(); ca.setWorkspacePath("M:/ForPcd/edk2"); ca.setFPDFilePath("M:/ForPcd/edk2/EdkNt32Pkg/Nt32.fpd"); ca.setActionMessageLevel(ActionMessage.MAX_MESSAGE_LEVEL); GlobalData.initInfo("Tools" + File.separator + "Conf" + File.separator + "FrameworkDatabase.db", "M:/ForPcd/edk2"); ca.execute(); } }