add check for empty value of definitions.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2391 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jlin16 2007-02-14 03:08:45 +00:00
parent 84d87a73e9
commit c0db4cdc64
1 changed files with 38 additions and 19 deletions

View File

@ -158,53 +158,70 @@ public class ToolChainId {
String rLine = null;
String inLine[] = new String[2];
while ((rLine = reader.readLine()) != null) {
rLine = rLine.trim();
if ((rLine.startsWith("ACTIVE_PLATFORM")) && (activePlatform == null)) {
// Only one active platform is permitted!
inLine = rLine.trim().split("=");
inLine = rLine.split("=");
if (inLine.length > 1) {
activePlatform = inLine[1].trim();
}
}
if ((rLine.startsWith("TARGET" + " ")) || (rLine.startsWith("TARGET" + "\t"))
|| (rLine.startsWith("TARGET="))) {
// Handle multiple Target Names
if (rLine.contains(",")) {
inLine = rLine.trim().split("=");
inLine = rLine.split("=");
if (inLine.length > 1) {
buildTargets = inLine[1].trim().replaceAll(",", " ");
}
} else {
inLine = rLine.trim().split("=");
if (inLine.length > 1) {
buildTargets = inLine[1].trim();
}
}
}
if (rLine.startsWith("TARGET_ARCH")) {
// Handle multiple Target Architectures
if (rLine.contains(",")) {
inLine = rLine.trim().split("=");
inLine = rLine.split("=");
if (inLine.length > 1) {
targetArchs = inLine[1].trim().replaceAll(",", " ");
}
} else {
inLine = rLine.trim().split("=");
inLine = rLine.split("=");
if (inLine.length > 1) {
targetArchs = inLine[1].trim();
}
}
}
if (rLine.startsWith("TOOL_CHAIN_CONF")) {
// Only one file is permitted
inLine = rLine.trim().split("=");
inLine = rLine.split("=");
if (inLine.length > 1) {
toolDefinitionFile = inLine[1].trim();
}
}
if (rLine.startsWith("TOOL_CHAIN_TAG")) {
// Handle multiple Tool TagNames
if (rLine.contains(",")) {
inLine = rLine.trim().split("=");
inLine = rLine.split("=");
if (inLine.length > 1) {
tagNames = inLine[1].trim().replaceAll(",", " ");
}
} else {
inLine = rLine.trim().split("=");
inLine = rLine.split("=");
if (inLine.length > 1) {
tagNames = inLine[1].trim();
}
}
}
if (rLine.startsWith("MULTIPLE_THREAD")) {
// Handle Thread Enable flag
if ((rLine.trim().toLowerCase().contains("enabled"))
|| (rLine.trim().toLowerCase().contains("true"))) {
if ((rLine.toLowerCase().contains("enabled"))
|| (rLine.toLowerCase().contains("true"))) {
threadEnabled = true;
} else {
threadEnabled = false;
@ -213,10 +230,12 @@ public class ToolChainId {
if (rLine.startsWith("MAX_CONCURRENT_THREAD_NUMBER")) {
// Handle Thread Enable flag
inLine = rLine.trim().split("=");
inLine = rLine.split("=");
if (inLine.length > 1) {
maxThreadCount = Integer.valueOf(inLine[1].trim());
}
}
}
reader.close();
} catch (IOException e) {
Log.log(this.strTargetFile + " Read Error ", e.getMessage());