]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Tools/Source/GenBuild/org/tianocore/build/pcd/action/CollectPCDAction.java
Fix a bug when generate default value for byte array for FIXED_AT_BUILD, PATCHABLE_IN...
[mirror_edk2.git] / Tools / Source / GenBuild / org / tianocore / build / pcd / action / CollectPCDAction.java
... / ...
CommitLineData
1/** @file\r
2 CollectPCDAction class.\r
3\r
4 This action class is to collect PCD information from MSA, SPD, FPD xml file.\r
5 This class will be used for wizard and build tools, So it can *not* inherit\r
6 from buildAction or wizardAction.\r
7 \r
8Copyright (c) 2006, Intel Corporation\r
9All rights reserved. This program and the accompanying materials\r
10are licensed and made available under the terms and conditions of the BSD License\r
11which accompanies this distribution. The full text of the license may be found at\r
12http://opensource.org/licenses/bsd-license.php\r
13 \r
14THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16\r
17**/\r
18package org.tianocore.build.pcd.action;\r
19\r
20import java.io.BufferedReader; \r
21import java.io.File;\r
22import java.io.FileReader;\r
23import java.io.IOException;\r
24import java.math.BigInteger;\r
25import java.util.ArrayList;\r
26import java.util.Collections;\r
27import java.util.Comparator;\r
28import java.util.HashMap;\r
29import java.util.List;\r
30import java.util.Map;\r
31import java.util.UUID;\r
32\r
33import org.apache.xmlbeans.XmlException;\r
34import org.apache.xmlbeans.XmlObject;\r
35import org.tianocore.DynamicPcdBuildDefinitionsDocument;\r
36import org.tianocore.DynamicPcdBuildDefinitionsDocument.DynamicPcdBuildDefinitions;\r
37import org.tianocore.DynamicPcdBuildDefinitionsDocument.DynamicPcdBuildDefinitions.PcdBuildData;\r
38import org.tianocore.DynamicPcdBuildDefinitionsDocument.DynamicPcdBuildDefinitions.PcdBuildData.SkuInfo;\r
39import org.tianocore.FrameworkModulesDocument;\r
40import org.tianocore.FrameworkPlatformDescriptionDocument;\r
41import org.tianocore.FrameworkPlatformDescriptionDocument.FrameworkPlatformDescription;\r
42import org.tianocore.ModuleSADocument;\r
43import org.tianocore.ModuleSADocument.ModuleSA;\r
44import org.tianocore.PackageSurfaceAreaDocument;\r
45import org.tianocore.PcdBuildDefinitionDocument.PcdBuildDefinition;\r
46import org.tianocore.build.global.GlobalData;\r
47import org.tianocore.build.global.SurfaceAreaQuery;\r
48import org.tianocore.build.pcd.action.ActionMessage;\r
49import org.tianocore.build.pcd.entity.DynamicTokenValue;\r
50import org.tianocore.build.pcd.entity.MemoryDatabaseManager;\r
51import org.tianocore.build.pcd.entity.SkuInstance;\r
52import org.tianocore.build.pcd.entity.Token;\r
53import org.tianocore.build.pcd.entity.UsageInstance;\r
54import org.tianocore.build.pcd.exception.EntityException;\r
55\r
56class StringTable {\r
57 private ArrayList<String> al; \r
58 private ArrayList<String> alComments;\r
59 private String phase;\r
60 int len; \r
61 int bodyStart;\r
62 int bodyLineNum;\r
63\r
64 public StringTable (String phase) {\r
65 this.phase = phase;\r
66 al = new ArrayList<String>();\r
67 alComments = new ArrayList<String>();\r
68 len = 0;\r
69 bodyStart = 0;\r
70 bodyLineNum = 0;\r
71 }\r
72\r
73 public String getSizeMacro () {\r
74 return String.format(PcdDatabase.StringTableSizeMacro, phase, getSize());\r
75 }\r
76\r
77 private int getSize () {\r
78 //\r
79 // We have at least one Unicode Character in the table.\r
80 //\r
81 return len == 0 ? 1 : len;\r
82 }\r
83\r
84 public int getTableLen () {\r
85 return al.size() == 0 ? 1 : al.size();\r
86 }\r
87\r
88 public String getExistanceMacro () {\r
89 return String.format(PcdDatabase.StringTableExistenceMacro, phase, (al.size() == 0)? "TRUE":"FALSE");\r
90 }\r
91\r
92 public String getTypeDeclaration () {\r
93\r
94 String output;\r
95\r
96 final String stringTable = "StringTable";\r
97 final String tab = "\t";\r
98 final String newLine = ";\r\n";\r
99\r
100 output = "/* StringTable */\r\n";\r
101\r
102 if (al.size() == 0) {\r
103 output += tab + String.format("UINT16 %s[1] /* StringTable is Empty */", stringTable) + newLine;\r
104 }\r
105\r
106 for (int i = 0; i < al.size(); i++) {\r
107 String str = al.get(i);\r
108\r
109 if (i == 0) {\r
110 //\r
111 // StringTable is a well-known name in the PCD DXE driver\r
112 //\r
113 output += tab + String.format("UINT16 %s[%d] /* %s */", stringTable, str.length() + 1, alComments.get(i)) + newLine;\r
114 } else {\r
115 output += tab + String.format("UINT16 %s_%d[%d] /* %s */", stringTable, i, str.length() + 1, alComments.get(i)) + newLine;\r
116 }\r
117 }\r
118\r
119 return output;\r
120\r
121 }\r
122\r
123 public ArrayList<String> getInstantiation () {\r
124 ArrayList<String> output = new ArrayList<String>();\r
125\r
126 output.add("/* StringTable */"); \r
127\r
128 if (al.size() == 0) {\r
129 output.add("{ 0 }");\r
130 } else {\r
131 String str;\r
132\r
133 for (int i = 0; i < al.size(); i++) {\r
134 str = String.format("L\"%s\" /* %s */", al.get(i), alComments.get(i));\r
135 if (i != al.size() - 1) {\r
136 str += ",";\r
137 }\r
138 output.add(str);\r
139 }\r
140 }\r
141\r
142 return output;\r
143 }\r
144\r
145 public int add (String str, Token token) {\r
146 int i;\r
147\r
148 i = len;\r
149 //\r
150 // Include the NULL character at the end of String\r
151 //\r
152 len += str.length() + 1; \r
153 al.add(str);\r
154 alComments.add(token.getPrimaryKeyString());\r
155\r
156 return i;\r
157 }\r
158}\r
159\r
160class SizeTable {\r
161 private ArrayList<Integer> al;\r
162 private ArrayList<String> alComments;\r
163 private String phase;\r
164 private int len;\r
165 private int bodyStart;\r
166 private int bodyLineNum;\r
167\r
168 public SizeTable (String phase) {\r
169 this.phase = phase;\r
170 al = new ArrayList<Integer>();\r
171 alComments = new ArrayList<String>();\r
172 len = 0;\r
173 bodyStart = 0;\r
174 bodyLineNum = 0;\r
175 }\r
176\r
177 public String getTypeDeclaration () {\r
178 return String.format(PcdDatabase.SizeTableDeclaration, phase);\r
179 }\r
180\r
181 public ArrayList<String> getInstantiation () {\r
182 ArrayList<String> Output = new ArrayList<String>();\r
183\r
184 Output.add("/* SizeTable */");\r
185 Output.add("{");\r
186 bodyStart = 2;\r
187\r
188 if (al.size() == 0) {\r
189 Output.add("0");\r
190 } else {\r
191 for (int index = 0; index < al.size(); index++) {\r
192 Integer n = al.get(index);\r
193 String str = n.toString();\r
194\r
195 if (index != (al.size() - 1)) {\r
196 str += ",";\r
197 }\r
198\r
199 str += " /* " + alComments.get(index) + " */"; \r
200 Output.add(str);\r
201 bodyLineNum++;\r
202 \r
203 }\r
204 }\r
205 Output.add("}");\r
206\r
207 return Output;\r
208 }\r
209\r
210 public int getBodyStart() {\r
211 return bodyStart;\r
212 }\r
213\r
214 public int getBodyLineNum () {\r
215 return bodyLineNum;\r
216 }\r
217\r
218 public int add (Token token) {\r
219 int index = len;\r
220\r
221 len++; \r
222 al.add(token.datumSize);\r
223 alComments.add(token.getPrimaryKeyString());\r
224\r
225 return index;\r
226 }\r
227 \r
228 private int getDatumSize(Token token) {\r
229 /*\r
230 switch (token.datumType) {\r
231 case Token.DATUM_TYPE.UINT8:\r
232 return 1;\r
233 default:\r
234 return 0;\r
235 }\r
236 */\r
237 return 0;\r
238 }\r
239\r
240 public int getTableLen () {\r
241 return al.size() == 0 ? 1 : al.size();\r
242 }\r
243\r
244}\r
245\r
246class GuidTable {\r
247 private ArrayList<UUID> al;\r
248 private ArrayList<String> alComments;\r
249 private String phase;\r
250 private int len;\r
251 private int bodyStart;\r
252 private int bodyLineNum;\r
253\r
254 public GuidTable (String phase) {\r
255 this.phase = phase;\r
256 al = new ArrayList<UUID>();\r
257 alComments = new ArrayList<String>();\r
258 len = 0;\r
259 bodyStart = 0;\r
260 bodyLineNum = 0;\r
261 }\r
262\r
263 public String getSizeMacro () {\r
264 return String.format(PcdDatabase.GuidTableSizeMacro, phase, getSize());\r
265 }\r
266\r
267 private int getSize () {\r
268 return (al.size() == 0)? 1 : al.size();\r
269 }\r
270\r
271 public String getExistanceMacro () {\r
272 return String.format(PcdDatabase.GuidTableExistenceMacro, phase, (al.size() == 0)? "TRUE":"FALSE");\r
273 }\r
274\r
275 public String getTypeDeclaration () {\r
276 return String.format(PcdDatabase.GuidTableDeclaration, phase);\r
277 }\r
278\r
279 private String getUuidCString (UUID uuid) {\r
280 String[] guidStrArray;\r
281\r
282 guidStrArray =(uuid.toString()).split("-");\r
283\r
284 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 } }",\r
285 guidStrArray[0],\r
286 guidStrArray[1],\r
287 guidStrArray[2],\r
288 (guidStrArray[3].substring(0, 2)),\r
289 (guidStrArray[3].substring(2, 4)),\r
290 (guidStrArray[4].substring(0, 2)),\r
291 (guidStrArray[4].substring(2, 4)),\r
292 (guidStrArray[4].substring(4, 6)),\r
293 (guidStrArray[4].substring(6, 8)),\r
294 (guidStrArray[4].substring(8, 10)),\r
295 (guidStrArray[4].substring(10, 12))\r
296 );\r
297 }\r
298\r
299 public ArrayList<String> getInstantiation () {\r
300 ArrayList<String> Output = new ArrayList<String>();\r
301\r
302 Output.add("/* GuidTable */");\r
303 Output.add("{");\r
304 bodyStart = 2;\r
305\r
306 if (al.size() == 0) {\r
307 Output.add(getUuidCString(new UUID(0, 0)));\r
308 }\r
309 \r
310 for (Object u : al) {\r
311 UUID uuid = (UUID)u;\r
312 String str = getUuidCString(uuid);\r
313\r
314 if (al.indexOf(u) != (al.size() - 1)) {\r
315 str += ",";\r
316 }\r
317 Output.add(str);\r
318 bodyLineNum++;\r
319\r
320 }\r
321 Output.add("}");\r
322\r
323 return Output;\r
324 }\r
325\r
326 public int getBodyStart() {\r
327 return bodyStart;\r
328 }\r
329\r
330 public int getBodyLineNum () {\r
331 return bodyLineNum;\r
332 }\r
333\r
334 public int add (UUID uuid, String name) {\r
335 int index = len;\r
336 //\r
337 // Include the NULL character at the end of String\r
338 //\r
339 len++; \r
340 al.add(uuid);\r
341\r
342 return index;\r
343 }\r
344\r
345 public int getTableLen () {\r
346 return al.size() == 0 ? 0 : al.size();\r
347 }\r
348\r
349}\r
350\r
351class SkuIdTable {\r
352 private ArrayList<Integer[]> al;\r
353 private ArrayList<String> alComment;\r
354 private String phase;\r
355 private int len;\r
356 private int bodyStart;\r
357 private int bodyLineNum;\r
358\r
359 public SkuIdTable (String phase) {\r
360 this.phase = phase;\r
361 al = new ArrayList<Integer[]>();\r
362 alComment = new ArrayList<String>();\r
363 bodyStart = 0;\r
364 bodyLineNum = 0;\r
365 len = 0;\r
366 }\r
367\r
368 public String getSizeMacro () {\r
369 return String.format(PcdDatabase.SkuIdTableSizeMacro, phase, getSize());\r
370 }\r
371\r
372 private int getSize () {\r
373 return (al.size() == 0)? 1 : al.size();\r
374 }\r
375\r
376 public String getExistanceMacro () {\r
377 return String.format(PcdDatabase.SkuTableExistenceMacro, phase, (al.size() == 0)? "TRUE":"FALSE");\r
378 }\r
379\r
380 public String getTypeDeclaration () {\r
381 return String.format(PcdDatabase.SkuIdTableDeclaration, phase);\r
382 }\r
383\r
384 public ArrayList<String> getInstantiation () {\r
385 ArrayList<String> Output = new ArrayList<String> ();\r
386\r
387 Output.add("/* SkuIdTable */");\r
388 Output.add("{");\r
389 bodyStart = 2;\r
390\r
391 if (al.size() == 0) {\r
392 Output.add("0");\r
393 }\r
394 \r
395 for (int index = 0; index < al.size(); index++) {\r
396 String str;\r
397\r
398 str = "/* " + alComment.get(index) + "*/ ";\r
399 str += "/* MaxSku */ ";\r
400\r
401\r
402 Integer[] ia = al.get(index);\r
403\r
404 str += ia[0].toString() + ", ";\r
405 for (int index2 = 1; index2 < ia.length; index2++) {\r
406 str += ia[index2].toString();\r
407 if (index != al.size() - 1) {\r
408 str += ", ";\r
409 }\r
410 }\r
411\r
412 Output.add(str);\r
413 bodyLineNum++;\r
414\r
415 }\r
416\r
417 Output.add("}");\r
418\r
419 return Output;\r
420 }\r
421\r
422 public int add (Token token) {\r
423\r
424 int index;\r
425\r
426 Integer [] skuIds = new Integer[token.skuData.size() + 1];\r
427 skuIds[0] = new Integer(token.skuData.size());\r
428 for (index = 1; index < skuIds.length; index++) {\r
429 skuIds[index] = new Integer(token.skuData.get(index - 1).id);\r
430 }\r
431\r
432 index = len;\r
433\r
434 len += skuIds.length; \r
435 al.add(skuIds);\r
436 alComment.add(token.getPrimaryKeyString());\r
437\r
438 return index;\r
439 }\r
440\r
441 public int getTableLen () {\r
442 return al.size() == 0 ? 1 : al.size();\r
443 }\r
444\r
445}\r
446\r
447class LocalTokenNumberTable {\r
448 private ArrayList<String> al;\r
449 private ArrayList<String> alComment;\r
450 private String phase;\r
451 private int len;\r
452\r
453 public LocalTokenNumberTable (String phase) {\r
454 this.phase = phase;\r
455 al = new ArrayList<String>();\r
456 alComment = new ArrayList<String>();\r
457\r
458 len = 0;\r
459 }\r
460\r
461 public String getSizeMacro () {\r
462 return String.format(PcdDatabase.LocalTokenNumberTableSizeMacro, phase, getSize())\r
463 + String.format(PcdDatabase.LocalTokenNumberSizeMacro, phase, al.size());\r
464 }\r
465\r
466 public int getSize () {\r
467 return (al.size() == 0)? 1 : al.size();\r
468 }\r
469\r
470 public String getExistanceMacro () {\r
471 return String.format(PcdDatabase.DatabaseExistenceMacro, phase, (al.size() == 0)? "TRUE":"FALSE");\r
472 }\r
473\r
474 public String getTypeDeclaration () {\r
475 return String.format(PcdDatabase.LocalTokenNumberTableDeclaration, phase);\r
476 }\r
477\r
478 public ArrayList<String> getInstantiation () {\r
479 ArrayList<String> output = new ArrayList<String>();\r
480\r
481 output.add("/* LocalTokenNumberTable */");\r
482 output.add("{");\r
483\r
484 if (al.size() == 0) {\r
485 output.add("0");\r
486 }\r
487 \r
488 for (int index = 0; index < al.size(); index++) {\r
489 String str;\r
490\r
491 str = (String)al.get(index);\r
492\r
493 str += " /* " + alComment.get(index) + " */ ";\r
494\r
495\r
496 if (index != (al.size() - 1)) {\r
497 str += ",";\r
498 }\r
499\r
500 output.add(str);\r
501\r
502 }\r
503\r
504 output.add("}");\r
505\r
506 return output;\r
507 }\r
508\r
509 public int add (Token token) {\r
510 int index = len;\r
511 String str;\r
512\r
513 len++; \r
514\r
515 str = String.format(PcdDatabase.offsetOfStrTemplate, phase, token.hasDefaultValue() ? "Init" : "Uninit", token.getPrimaryKeyString());\r
516\r
517 if (token.isUnicodeStringType()) {\r
518 str += " | PCD_TYPE_STRING";\r
519 }\r
520\r
521 if (token.isSkuEnable()) {\r
522 str += " | PCD_TYPE_SKU_ENABLED";\r
523 }\r
524\r
525 if (token.getDefaultSku().type == DynamicTokenValue.VALUE_TYPE.HII_TYPE) {\r
526 str += " | PCD_TYPE_HII";\r
527 }\r
528\r
529 if (token.getDefaultSku().type == DynamicTokenValue.VALUE_TYPE.VPD_TYPE) {\r
530 str += " | PCD_TYPE_VPD";\r
531 }\r
532 \r
533 al.add(str);\r
534 alComment.add(token.getPrimaryKeyString());\r
535\r
536 return index;\r
537 }\r
538}\r
539\r
540class ExMapTable {\r
541\r
542 class ExTriplet {\r
543 public Integer guidTableIdx;\r
544 public Long exTokenNumber;\r
545 public Long localTokenIdx;\r
546 \r
547 public ExTriplet (int guidTableIdx, long exTokenNumber, long localTokenIdx) {\r
548 this.guidTableIdx = new Integer(guidTableIdx);\r
549 this.exTokenNumber = new Long(exTokenNumber);\r
550 this.localTokenIdx = new Long(localTokenIdx);\r
551 }\r
552 }\r
553\r
554 private ArrayList<ExTriplet> al;\r
555 private ArrayList<String> alComment;\r
556 private String phase;\r
557 private int len;\r
558 private int bodyStart;\r
559 private int bodyLineNum;\r
560 private int base;\r
561\r
562 public ExMapTable (String phase) {\r
563 this.phase = phase;\r
564 al = new ArrayList<ExTriplet>();\r
565 alComment = new ArrayList<String>();\r
566 bodyStart = 0;\r
567 bodyLineNum = 0;\r
568 len = 0;\r
569 }\r
570\r
571 public String getSizeMacro () {\r
572 return String.format(PcdDatabase.ExMapTableSizeMacro, phase, getTableLen())\r
573 + String.format(PcdDatabase.ExTokenNumber, phase, al.size());\r
574 }\r
575\r
576 private int getSize () {\r
577 return (al.size() == 0)? 1 : al.size();\r
578 }\r
579\r
580 public String getExistanceMacro () {\r
581 return String.format(PcdDatabase.ExMapTableExistenceMacro, phase, (al.size() == 0)? "TRUE":"FALSE");\r
582 }\r
583\r
584 public String getTypeDeclaration () {\r
585 return String.format(PcdDatabase.ExMapTableDeclaration, phase);\r
586 }\r
587\r
588 public ArrayList<String> getInstantiation () {\r
589 ArrayList<String> Output = new ArrayList<String>();\r
590\r
591 Output.add("/* ExMapTable */");\r
592 Output.add("{");\r
593 bodyStart = 2;\r
594\r
595 if (al.size() == 0) {\r
596 Output.add("{0, 0, 0}");\r
597 }\r
598 \r
599 int index;\r
600 for (index = 0; index < al.size(); index++) {\r
601 String str;\r
602\r
603 ExTriplet e = (ExTriplet)al.get(index);\r
604\r
605 str = "{ " + e.exTokenNumber.toString() + ", ";\r
606 str += e.localTokenIdx.toString() + ", ";\r
607 str += e.guidTableIdx.toString();\r
608\r
609 str += " /* " + alComment.get(index) + " */";\r
610\r
611 if (index != al.size() - 1) {\r
612 str += ",";\r
613 }\r
614\r
615 Output.add(str);\r
616 bodyLineNum++;\r
617\r
618 }\r
619\r
620 Output.add("}");\r
621\r
622 return Output;\r
623 }\r
624\r
625 public int add (int localTokenIdx, long exTokenNum, int guidTableIdx, String name) {\r
626 int index = len;\r
627\r
628 len++; \r
629 al.add(new ExTriplet(guidTableIdx, exTokenNum, localTokenIdx));\r
630 alComment.add(name);\r
631\r
632 return index;\r
633 }\r
634\r
635 public int getTableLen () {\r
636 return al.size() == 0 ? 1 : al.size();\r
637 }\r
638\r
639}\r
640\r
641class PcdDatabase {\r
642\r
643 public final static String ExMapTableDeclaration = "DYNAMICEX_MAPPING ExMapTable[%s_EXMAPPING_TABLE_SIZE];\r\n";\r
644 public final static String GuidTableDeclaration = "EFI_GUID GuidTable[%s_GUID_TABLE_SIZE];\r\n";\r
645 public final static String LocalTokenNumberTableDeclaration = "UINT32 LocalTokenNumberTable[%s_LOCAL_TOKEN_NUMBER_TABLE_SIZE];\r\n";\r
646 public final static String StringTableDeclaration = "UINT16 StringTable[%s_STRING_TABLE_SIZE];\r\n";\r
647 public final static String SizeTableDeclaration = "UINT16 SizeTable[%s_LOCAL_TOKEN_NUMBER_TABLE_SIZE];\r\n";\r
648 public final static String SkuIdTableDeclaration = "UINT8 SkuIdTable[%s_SKUID_TABLE_SIZE];\r\n";\r
649\r
650\r
651 public final static String ExMapTableSizeMacro = "#define %s_EXMAPPING_TABLE_SIZE %d\r\n";\r
652 public final static String ExTokenNumber = "#define %s_EX_TOKEN_NUMBER %d\r\n";\r
653 public final static String GuidTableSizeMacro = "#define %s_GUID_TABLE_SIZE %d\r\n";\r
654 public final static String LocalTokenNumberTableSizeMacro = "#define %s_LOCAL_TOKEN_NUMBER_TABLE_SIZE %d\r\n";\r
655 public final static String LocalTokenNumberSizeMacro = "#define %s_LOCAL_TOKEN_NUMBER %d\r\n";\r
656 public final static String StringTableSizeMacro = "#define %s_STRING_TABLE_SIZE %d\r\n";\r
657 public final static String SkuIdTableSizeMacro = "#define %s_SKUID_TABLE_SIZE %d\r\n";\r
658\r
659\r
660 public final static String ExMapTableExistenceMacro = "#define %s_EXMAP_TABLE_EMPTY %s\r\n"; \r
661 public final static String GuidTableExistenceMacro = "#define %s_GUID_TABLE_EMPTY %s\r\n";\r
662 public final static String DatabaseExistenceMacro = "#define %s_DATABASE_EMPTY %s\r\n";\r
663 public final static String StringTableExistenceMacro = "#define %s_STRING_TABLE_EMPTY %s\r\n";\r
664 public final static String SkuTableExistenceMacro = "#define %s_SKUID_TABLE_EMPTY %s\r\n";\r
665\r
666 public final static String offsetOfSkuHeadStrTemplate = "offsetof(%s_PCD_DATABASE, %s.%s_SkuDataTable)";\r
667 public final static String offsetOfStrTemplate = "offsetof(%s_PCD_DATABASE, %s.%s)";\r
668\r
669 private StringTable stringTable;\r
670 private GuidTable guidTable;\r
671 private LocalTokenNumberTable localTokenNumberTable;\r
672 private SkuIdTable skuIdTable;\r
673 private SizeTable sizeTable;\r
674 private ExMapTable exMapTable;\r
675\r
676 private ArrayList<Token> alTokens;\r
677 private String phase;\r
678 private int assignedTokenNumber;\r
679 \r
680 //\r
681 // After Major changes done to the PCD\r
682 // database generation class PcdDatabase\r
683 // Please increment the version and please\r
684 // also update the version number in PCD\r
685 // service PEIM and DXE driver accordingly.\r
686 //\r
687 private final int version = 1;\r
688\r
689 private String hString;\r
690 private String cString;\r
691\r
692\r
693 class AlignmentSizeComp implements Comparator<Token> {\r
694 public int compare (Token a, Token b) {\r
695 return getAlignmentSize(b) \r
696 - getAlignmentSize(a);\r
697 }\r
698 }\r
699\r
700 public PcdDatabase (ArrayList<Token> alTokens, String exePhase, int startLen) {\r
701 phase = exePhase;\r
702\r
703 stringTable = new StringTable(phase);\r
704 guidTable = new GuidTable(phase);\r
705 localTokenNumberTable = new LocalTokenNumberTable(phase);\r
706 skuIdTable = new SkuIdTable(phase);\r
707 sizeTable = new SizeTable(phase);\r
708 exMapTable = new ExMapTable(phase); \r
709\r
710 assignedTokenNumber = startLen;\r
711 this.alTokens = alTokens;\r
712 }\r
713\r
714 private void getTwoGroupsOfTokens (ArrayList<Token> alTokens, List<Token> initTokens, List<Token> uninitTokens) {\r
715 for (int i = 0; i < alTokens.size(); i++) {\r
716 Token t = (Token)alTokens.get(i);\r
717 if (t.hasDefaultValue()) {\r
718 initTokens.add(t);\r
719 } else {\r
720 uninitTokens.add(t);\r
721 }\r
722 }\r
723\r
724 return;\r
725 }\r
726\r
727 private int getAlignmentSize (Token token) {\r
728 if (token.getDefaultSku().type == DynamicTokenValue.VALUE_TYPE.HII_TYPE) {\r
729 return 2;\r
730 }\r
731\r
732 if (token.getDefaultSku().type == DynamicTokenValue.VALUE_TYPE.VPD_TYPE) {\r
733 return 4;\r
734 }\r
735\r
736 if (token.isUnicodeStringType()) {\r
737 return 2;\r
738 }\r
739\r
740 switch (token.datumType) {\r
741 case UINT8:\r
742 return 1;\r
743 case UINT16:\r
744 return 2;\r
745 case UINT32:\r
746 return 4;\r
747 case UINT64:\r
748 return 8;\r
749 case POINTER:\r
750 return 1;\r
751 case BOOLEAN:\r
752 return 1;\r
753 }\r
754 return 1;\r
755 }\r
756\r
757 public String getCString () {\r
758 return cString;\r
759 }\r
760\r
761 public String getHString () {\r
762 return hString;\r
763 }\r
764\r
765 public void genCode () \r
766 throws EntityException {\r
767\r
768 final String newLine = "\r\n";\r
769 final String declNewLine = ";\r\n";\r
770 final String tab = "\t";\r
771 final String commaNewLine = ", \r\n";\r
772\r
773 int i;\r
774 ArrayList<String> decla;\r
775 ArrayList<String> inst;\r
776\r
777 String macroStr = "";\r
778 String initDeclStr = "";\r
779 String initInstStr = "";\r
780 String uninitDeclStr = "";\r
781\r
782 List<Token> initTokens = new ArrayList<Token> ();\r
783 List<Token> uninitTokens = new ArrayList<Token> ();\r
784 \r
785 HashMap <String, ArrayList<String>> initCode = new HashMap<String, ArrayList<String>> ();\r
786 HashMap <String, ArrayList<String>> uninitCode = new HashMap<String, ArrayList<String>> ();\r
787\r
788 getTwoGroupsOfTokens (alTokens, initTokens, uninitTokens);\r
789\r
790 //\r
791 // Generate Structure Declaration for PcdTokens without Default Value\r
792 // PEI_PCD_DATABASE_INIT\r
793 //\r
794 java.util.Comparator<Token> comparator = new AlignmentSizeComp();\r
795 java.util.Collections.sort(initTokens, comparator);\r
796 initCode = processTokens(initTokens);\r
797\r
798 //\r
799 // Generate Structure Declaration for PcdTokens without Default Value\r
800 // PEI_PCD_DATABASE_UNINIT\r
801 //\r
802 java.util.Collections.sort(uninitTokens, comparator);\r
803 uninitCode = processTokens(uninitTokens);\r
804\r
805 //\r
806 // Generate size info Macro for all Tables\r
807 //\r
808 macroStr += guidTable.getSizeMacro();\r
809 macroStr += stringTable.getSizeMacro();\r
810 macroStr += skuIdTable.getSizeMacro();\r
811 macroStr += localTokenNumberTable.getSizeMacro();\r
812 macroStr += exMapTable.getSizeMacro();\r
813\r
814 //\r
815 // Generate existance info Macro for all Tables\r
816 //\r
817 macroStr += guidTable.getExistanceMacro();\r
818 macroStr += stringTable.getExistanceMacro();\r
819 macroStr += skuIdTable.getExistanceMacro();\r
820 macroStr += localTokenNumberTable.getExistanceMacro();\r
821 macroStr += exMapTable.getExistanceMacro();\r
822\r
823 //\r
824 // Generate Structure Declaration for PcdTokens with Default Value\r
825 // for example PEI_PCD_DATABASE_INIT\r
826 //\r
827 initDeclStr += "typedef struct {" + newLine;\r
828 {\r
829 initDeclStr += tab + exMapTable.getTypeDeclaration();\r
830 initDeclStr += tab + guidTable.getTypeDeclaration();\r
831 initDeclStr += tab + localTokenNumberTable.getTypeDeclaration();\r
832 initDeclStr += tab + stringTable.getTypeDeclaration();\r
833 initDeclStr += tab + sizeTable.getTypeDeclaration();\r
834 initDeclStr += tab + skuIdTable.getTypeDeclaration();\r
835 if (phase.equalsIgnoreCase("PEI")) {\r
836 initDeclStr += tab + "SKU_ID SystemSkuId;" + newLine;\r
837 }\r
838\r
839 decla = initCode.get(new String("Declaration"));\r
840 for (i = 0; i < decla.size(); i++) {\r
841 initDeclStr += tab + decla.get(i) + declNewLine;\r
842 }\r
843\r
844 //\r
845 // Generate Structure Declaration for PcdToken with SkuEnabled\r
846 //\r
847 decla = initCode.get("DeclarationForSku");\r
848\r
849 for (i = 0; i < decla.size(); i++) {\r
850 initDeclStr += tab + decla.get(i) + declNewLine;\r
851 }\r
852 }\r
853 initDeclStr += String.format("} %s_PCD_DATABASE_INIT;\r\n\r\n", phase);\r
854\r
855 //\r
856 // Generate MACRO for structure intialization of PCDTokens with Default Value\r
857 // The sequence must match the sequence of declaration of the memembers in the structure\r
858 String tmp = String.format("%s_PCD_DATABASE_INIT g%sPcdDbInit = { ", phase.toUpperCase(), phase.toUpperCase());\r
859 initInstStr += tmp + newLine;\r
860 initInstStr += tab + genInstantiationStr(exMapTable.getInstantiation()) + commaNewLine;\r
861 initInstStr += tab + genInstantiationStr(guidTable.getInstantiation()) + commaNewLine;\r
862 initInstStr += tab + genInstantiationStr(localTokenNumberTable.getInstantiation()) + commaNewLine; \r
863 initInstStr += tab + genInstantiationStr(stringTable.getInstantiation()) + commaNewLine;\r
864 initInstStr += tab + genInstantiationStr(sizeTable.getInstantiation()) + commaNewLine;\r
865 initInstStr += tab + genInstantiationStr(skuIdTable.getInstantiation()) + commaNewLine;\r
866 //\r
867 // For SystemSkuId\r
868 //\r
869 if (phase.equalsIgnoreCase("PEI")) {\r
870 initInstStr += tab + "0" + tab + "/* SystemSkuId */" + commaNewLine;\r
871 }\r
872\r
873 inst = initCode.get("Instantiation");\r
874 for (i = 0; i < inst.size(); i++) {\r
875 initInstStr += tab + inst.get(i) + commaNewLine;\r
876 }\r
877\r
878 inst = initCode.get("InstantiationForSku");\r
879 for (i = 0; i < inst.size(); i++) {\r
880 initInstStr += tab + inst.get(i);\r
881 if (i != inst.size() - 1) {\r
882 initInstStr += commaNewLine;\r
883 }\r
884 }\r
885\r
886 initInstStr += "};";\r
887\r
888 uninitDeclStr += "typedef struct {" + newLine;\r
889 {\r
890 decla = uninitCode.get("Declaration");\r
891 if (decla.size() == 0) {\r
892 uninitDeclStr += "UINT8 dummy /* The UINT struct is empty */" + declNewLine;\r
893 } else {\r
894 \r
895 for (i = 0; i < decla.size(); i++) {\r
896 uninitDeclStr += tab + decla.get(i) + declNewLine;\r
897 }\r
898 \r
899 decla = uninitCode.get("DeclarationForSku");\r
900 \r
901 for (i = 0; i < decla.size(); i++) {\r
902 uninitDeclStr += tab + decla.get(i) + declNewLine;\r
903 }\r
904 }\r
905 }\r
906 uninitDeclStr += String.format("} %s_PCD_DATABASE_UNINIT;\r\n\r\n", phase);\r
907\r
908 cString = initInstStr + newLine;\r
909 hString = macroStr + newLine \r
910 + initDeclStr + newLine\r
911 + uninitDeclStr + newLine\r
912 + newLine;\r
913 \r
914 hString += String.format("#define PCD_%s_SERVICE_DRIVER_VERSION %d", phase, version);\r
915\r
916 }\r
917\r
918 private String genInstantiationStr (ArrayList<String> alStr) {\r
919 String str = "";\r
920 for (int i = 0; i< alStr.size(); i++) {\r
921 str += "\t" + alStr.get(i);\r
922 if (i != alStr.size() - 1) {\r
923 str += "\r\n";\r
924 }\r
925 }\r
926\r
927 return str;\r
928 }\r
929\r
930 private HashMap<String, ArrayList<String>> processTokens (List<Token> alToken) \r
931 throws EntityException {\r
932\r
933 HashMap <String, ArrayList<String>> map = new HashMap<String, ArrayList<String>>();\r
934\r
935 ArrayList<String> decl = new ArrayList<String>();\r
936 ArrayList<String> declForSkuEnableType = new ArrayList<String>();\r
937 ArrayList<String> inst = new ArrayList<String>();\r
938 ArrayList<String> instForSkuEnableType = new ArrayList<String>();\r
939\r
940 for (int index = 0; index < alToken.size(); index++) {\r
941 Token token = alToken.get(index);\r
942\r
943 if (token.isSkuEnable()) {\r
944 //\r
945 // BugBug: Schema only support Data type now\r
946 //\r
947 int tableIdx;\r
948\r
949 tableIdx = skuIdTable.add(token);\r
950\r
951 decl.add(getSkuEnabledTypeDeclaration(token));\r
952 if (token.hasDefaultValue()) {\r
953 inst.add(getSkuEnabledTypeInstantiaion(token, tableIdx)); \r
954 }\r
955\r
956 declForSkuEnableType.add(getDataTypeDeclarationForSkuEnabled(token));\r
957 if (token.hasDefaultValue()) {\r
958 instForSkuEnableType.add(getDataTypeInstantiationForSkuEnabled(token));\r
959 }\r
960\r
961 } else {\r
962 if (token.getDefaultSku().type == DynamicTokenValue.VALUE_TYPE.HII_TYPE) {\r
963 decl.add(getVariableEnableTypeDeclaration(token));\r
964 inst.add(getVariableEnableInstantiation(token));\r
965 } else if (token.getDefaultSku().type == DynamicTokenValue.VALUE_TYPE.VPD_TYPE) {\r
966 decl.add(getVpdEnableTypeDeclaration(token));\r
967 inst.add(getVpdEnableTypeInstantiation(token));\r
968 } else if (token.isUnicodeStringType()) {\r
969 decl.add(getStringTypeDeclaration(token));\r
970 inst.add(getStringTypeInstantiation(stringTable.add(token.getStringTypeString(), token), token));\r
971 }\r
972 else {\r
973 decl.add(getDataTypeDeclaration(token));\r
974 if (token.hasDefaultValue()) {\r
975 inst.add(getDataTypeInstantiation(token));\r
976 }\r
977 }\r
978 }\r
979\r
980 sizeTable.add(token);\r
981 localTokenNumberTable.add(token);\r
982 token.tokenNumber = assignedTokenNumber++;\r
983\r
984 }\r
985\r
986 map.put("Declaration", decl);\r
987 map.put("DeclarationForSku", declForSkuEnableType);\r
988 map.put("Instantiation", inst);\r
989 map.put("InstantiationForSku", instForSkuEnableType);\r
990\r
991 return map;\r
992 }\r
993\r
994 private String getSkuEnabledTypeDeclaration (Token token) {\r
995 return String.format("SKU_HEAD %s;\r\n", token.getPrimaryKeyString());\r
996 }\r
997\r
998 private String getSkuEnabledTypeInstantiaion (Token token, int SkuTableIdx) {\r
999\r
1000 String offsetof = String.format(PcdDatabase.offsetOfSkuHeadStrTemplate, phase, token.hasDefaultValue()? "Init" : "Uninit", token.getPrimaryKeyString());\r
1001 return String.format("{ %s, %d }", offsetof, SkuTableIdx);\r
1002 }\r
1003\r
1004 private String getDataTypeDeclarationForSkuEnabled (Token token) {\r
1005 String typeStr = "";\r
1006\r
1007 if (token.datumType == Token.DATUM_TYPE.UINT8) {\r
1008 typeStr = "UINT8 %s_%s[%d];\r\n";\r
1009 } else if (token.datumType == Token.DATUM_TYPE.UINT16) {\r
1010 typeStr = "UINT16 %s_%s[%d];\r\n";\r
1011 } else if (token.datumType == Token.DATUM_TYPE.UINT32) {\r
1012 typeStr = "UINT32 %s_%s[%d];\r\n";\r
1013 } else if (token.datumType == Token.DATUM_TYPE.UINT64) {\r
1014 typeStr = "UINT64 %s_%s[%d];\r\n";\r
1015 } else if (token.datumType == Token.DATUM_TYPE.BOOLEAN) {\r
1016 typeStr = "BOOLEAN %s_%s[%d];\r\n";\r
1017 } else if (token.datumType == Token.DATUM_TYPE.POINTER) {\r
1018 return String.format("UINT8 %s_%s[%d];\r\n", token.getPrimaryKeyString(), "SkuDataTable", token.datumSize * token.skuData.size());\r
1019 } \r
1020\r
1021 return String.format(typeStr, token.getPrimaryKeyString(), "SkuDataTable", token.skuData.size());\r
1022\r
1023 }\r
1024\r
1025 private String getDataTypeInstantiationForSkuEnabled (Token token) {\r
1026 String str = "";\r
1027\r
1028 if (token.datumType == Token.DATUM_TYPE.POINTER) {\r
1029 return String.format("UINT8 %s_%s[%d]", token.getPrimaryKeyString(), "SkuDataTable", token.datumSize * token.skuData.size());\r
1030 } else {\r
1031 str = "{ ";\r
1032 for (int idx = 0; idx < token.skuData.size(); idx++) {\r
1033 str += token.skuData.get(idx).toString();\r
1034 if (idx != token.skuData.size() - 1) {\r
1035 str += ", ";\r
1036 }\r
1037 }\r
1038 str += "}";\r
1039\r
1040 return str;\r
1041 }\r
1042\r
1043 }\r
1044\r
1045 private String getDataTypeInstantiation (Token token) {\r
1046\r
1047 if (token.datumType == Token.DATUM_TYPE.POINTER) {\r
1048 return String.format("%s /* %s */", token.getDefaultSku().value, token.getPrimaryKeyString());\r
1049 } else {\r
1050 return String.format("%s /* %s */", token.getDefaultSku().value, token.getPrimaryKeyString());\r
1051 }\r
1052 }\r
1053\r
1054\r
1055 private String getDataTypeDeclaration (Token token) {\r
1056\r
1057 String typeStr = "";\r
1058\r
1059 if (token.datumType == Token.DATUM_TYPE.UINT8) {\r
1060 typeStr = "UINT8";\r
1061 } else if (token.datumType == Token.DATUM_TYPE.UINT16) {\r
1062 typeStr = "UINT16";\r
1063 } else if (token.datumType == Token.DATUM_TYPE.UINT32) {\r
1064 typeStr = "UINT32";\r
1065 } else if (token.datumType == Token.DATUM_TYPE.UINT64) {\r
1066 typeStr = "UINT64";\r
1067 } else if (token.datumType == Token.DATUM_TYPE.BOOLEAN) {\r
1068 typeStr = "BOOLEAN";\r
1069 } else if (token.datumType == Token.DATUM_TYPE.POINTER) {\r
1070 return String.format("UINT8 %s[%d]", token.getPrimaryKeyString(), token.datumSize);\r
1071 } else {\r
1072 }\r
1073\r
1074 return String.format("%s %s", typeStr, token.getPrimaryKeyString());\r
1075 }\r
1076\r
1077 private String getVpdEnableTypeDeclaration (Token token) {\r
1078 return String.format("VPD_HEAD %s", token.getPrimaryKeyString());\r
1079 }\r
1080\r
1081 private String getVpdEnableTypeInstantiation (Token token) {\r
1082 return String.format("{ %s } /* %s */", token.getDefaultSku().vpdOffset,\r
1083 token.getPrimaryKeyString());\r
1084 }\r
1085\r
1086 private String getStringTypeDeclaration (Token token) {\r
1087 return String.format("UINT16 %s", token.getPrimaryKeyString());\r
1088 }\r
1089\r
1090 private String getStringTypeInstantiation (int StringTableIdx, Token token) {\r
1091 return String.format ("%d /* %s */", StringTableIdx,\r
1092 token.getPrimaryKeyString()); \r
1093 }\r
1094\r
1095\r
1096 private String getVariableEnableTypeDeclaration (Token token) {\r
1097 return String.format("VARIABLE_HEAD %s", token.getPrimaryKeyString());\r
1098 }\r
1099\r
1100 private String getVariableEnableInstantiation (Token token) \r
1101 throws EntityException {\r
1102 //\r
1103 // Need scott fix\r
1104 // \r
1105 return String.format("{ %d, %d, %s } /* %s */", guidTable.add(token.getDefaultSku().variableGuid, token.getPrimaryKeyString()),\r
1106 stringTable.add(token.getDefaultSku().getStringOfVariableName(), token),\r
1107 token.getDefaultSku().variableOffset, \r
1108 token.getPrimaryKeyString());\r
1109 }\r
1110\r
1111 public int getTotalTokenNumber () {\r
1112 return sizeTable.getTableLen();\r
1113 }\r
1114\r
1115 public static String getPcdDatabaseCommonDefinitions () \r
1116 throws EntityException {\r
1117\r
1118 String retStr = "";\r
1119 try {\r
1120 File file = new File(GlobalData.getWorkspacePath() + File.separator + \r
1121 "Tools" + File.separator + \r
1122 "Conf" + File.separator +\r
1123 "Pcd" + File.separator +\r
1124 "PcdDatabaseCommonDefinitions.sample");\r
1125 FileReader reader = new FileReader(file);\r
1126 BufferedReader in = new BufferedReader(reader);\r
1127 String str;\r
1128 while ((str = in.readLine()) != null) {\r
1129 retStr = retStr +"\r\n" + str;\r
1130 }\r
1131 } catch (Exception ex) {\r
1132 throw new EntityException("Fatal error when generating PcdDatabase Common Definitions");\r
1133 }\r
1134\r
1135 return retStr;\r
1136 }\r
1137\r
1138 public static String getPcdDxeDatabaseDefinitions () \r
1139 throws EntityException {\r
1140\r
1141 String retStr = "";\r
1142 try {\r
1143 File file = new File(GlobalData.getWorkspacePath() + File.separator + \r
1144 "Tools" + File.separator + \r
1145 "Conf" + File.separator +\r
1146 "Pcd" + File.separator +\r
1147 "PcdDatabaseDxeDefinitions.sample");\r
1148 FileReader reader = new FileReader(file);\r
1149 BufferedReader in = new BufferedReader(reader);\r
1150 String str;\r
1151 while ((str = in.readLine()) != null) {\r
1152 retStr = retStr +"\r\n" + str;\r
1153 }\r
1154 } catch (Exception ex) {\r
1155 throw new EntityException("Fatal error when generating PcdDatabase Dxe Definitions");\r
1156 }\r
1157\r
1158 return retStr;\r
1159 }\r
1160\r
1161 public static String getPcdPeiDatabaseDefinitions () \r
1162 throws EntityException {\r
1163\r
1164 String retStr = "";\r
1165 try {\r
1166 File file = new File(GlobalData.getWorkspacePath() + File.separator + \r
1167 "Tools" + File.separator + \r
1168 "Conf" + File.separator +\r
1169 "Pcd" + File.separator +\r
1170 "PcdDatabasePeiDefinitions.sample");\r
1171 FileReader reader = new FileReader(file);\r
1172 BufferedReader in = new BufferedReader(reader);\r
1173 String str;\r
1174 while ((str = in.readLine()) != null) {\r
1175 retStr = retStr +"\r\n" + str;\r
1176 }\r
1177 } catch (Exception ex) {\r
1178 throw new EntityException("Fatal error when generating PcdDatabase Pei Definitions");\r
1179 }\r
1180\r
1181 return retStr;\r
1182 }\r
1183\r
1184}\r
1185\r
1186class ModuleInfo {\r
1187 public ModuleSADocument.ModuleSA module;\r
1188 public UsageInstance.MODULE_TYPE type;\r
1189\r
1190 public ModuleInfo (ModuleSADocument.ModuleSA module, UsageInstance.MODULE_TYPE type) {\r
1191 this.module = module;\r
1192 this.type = type;\r
1193 }\r
1194}\r
1195\r
1196/** This action class is to collect PCD information from MSA, SPD, FPD xml file.\r
1197 This class will be used for wizard and build tools, So it can *not* inherit\r
1198 from buildAction or UIAction.\r
1199**/\r
1200public class CollectPCDAction {\r
1201 /// memoryDatabase hold all PCD information collected from SPD, MSA, FPD.\r
1202 private MemoryDatabaseManager dbManager;\r
1203\r
1204 /// Workspacepath hold the workspace information.\r
1205 private String workspacePath;\r
1206\r
1207 /// FPD file is the root file. \r
1208 private String fpdFilePath;\r
1209\r
1210 /// Message level for CollectPCDAction.\r
1211 private int originalMessageLevel;\r
1212\r
1213 /// Cache the fpd docment instance for private usage.\r
1214 private FrameworkPlatformDescriptionDocument fpdDocInstance;\r
1215\r
1216 /**\r
1217 Set WorkspacePath parameter for this action class.\r
1218\r
1219 @param workspacePath parameter for this action\r
1220 **/\r
1221 public void setWorkspacePath(String workspacePath) {\r
1222 this.workspacePath = workspacePath;\r
1223 }\r
1224\r
1225 /**\r
1226 Set action message level for CollectPcdAction tool.\r
1227\r
1228 The message should be restored when this action exit.\r
1229\r
1230 @param actionMessageLevel parameter for this action\r
1231 **/\r
1232 public void setActionMessageLevel(int actionMessageLevel) {\r
1233 originalMessageLevel = ActionMessage.messageLevel;\r
1234 ActionMessage.messageLevel = actionMessageLevel;\r
1235 }\r
1236\r
1237 /**\r
1238 Set FPDFileName parameter for this action class.\r
1239\r
1240 @param fpdFilePath fpd file path\r
1241 **/\r
1242 public void setFPDFilePath(String fpdFilePath) {\r
1243 this.fpdFilePath = fpdFilePath;\r
1244 }\r
1245\r
1246 /**\r
1247 Common function interface for outer.\r
1248 \r
1249 @param workspacePath The path of workspace of current build or analysis.\r
1250 @param fpdFilePath The fpd file path of current build or analysis.\r
1251 @param messageLevel The message level for this Action.\r
1252 \r
1253 @throws Exception The exception of this function. Because it can *not* be predict\r
1254 where the action class will be used. So only Exception can be throw.\r
1255 \r
1256 **/\r
1257 public void perform(String workspacePath, String fpdFilePath, \r
1258 int messageLevel) throws Exception {\r
1259 setWorkspacePath(workspacePath);\r
1260 setFPDFilePath(fpdFilePath);\r
1261 setActionMessageLevel(messageLevel);\r
1262 checkParameter();\r
1263 execute();\r
1264 ActionMessage.messageLevel = originalMessageLevel;\r
1265 }\r
1266\r
1267 /**\r
1268 Core execution function for this action class.\r
1269 \r
1270 This function work flows will be:\r
1271 1) Collect and prepocess PCD information from FPD file, all PCD\r
1272 information will be stored into memory database.\r
1273 2) Generate 3 strings for\r
1274 a) All modules using Dynamic(Ex) PCD entry.(Token Number)\r
1275 b) PEI PCDDatabase (C Structure) for PCD Service PEIM.\r
1276 c) DXE PCD Database (C structure) for PCD Service DXE.\r
1277 \r
1278 \r
1279 @throws EntityException Exception indicate failed to execute this action.\r
1280 \r
1281 **/\r
1282 private void execute() throws EntityException {\r
1283 //\r
1284 // Get memoryDatabaseManager instance from GlobalData.\r
1285 // The memoryDatabaseManager should be initialized for whatever build\r
1286 // tools or wizard tools\r
1287 //\r
1288 if((dbManager = GlobalData.getPCDMemoryDBManager()) == null) {\r
1289 throw new EntityException("The instance of PCD memory database manager is null");\r
1290 }\r
1291\r
1292 //\r
1293 // Collect all PCD information defined in FPD file.\r
1294 // Evenry token defind in FPD will be created as an token into \r
1295 // memory database.\r
1296 //\r
1297 createTokenInDBFromFPD();\r
1298 \r
1299 //\r
1300 // Call Private function genPcdDatabaseSourceCode (void); ComponentTypeBsDriver\r
1301 // 1) Generate for PEI, DXE PCD DATABASE's definition and initialization.\r
1302 //\r
1303 genPcdDatabaseSourceCode ();\r
1304 \r
1305 }\r
1306\r
1307 /**\r
1308 This function generates source code for PCD Database.\r
1309 \r
1310 @param void\r
1311 @throws EntityException If the token does *not* exist in memory database.\r
1312\r
1313 **/\r
1314 private void genPcdDatabaseSourceCode()\r
1315 throws EntityException {\r
1316 String PcdCommonHeaderString = PcdDatabase.getPcdDatabaseCommonDefinitions ();\r
1317\r
1318 ArrayList<Token> alPei = new ArrayList<Token> ();\r
1319 ArrayList<Token> alDxe = new ArrayList<Token> ();\r
1320\r
1321 dbManager.getTwoPhaseDynamicRecordArray(alPei, alDxe);\r
1322 PcdDatabase pcdPeiDatabase = new PcdDatabase (alPei, "PEI", 0);\r
1323 pcdPeiDatabase.genCode();\r
1324 dbManager.PcdPeimHString = PcdCommonHeaderString + pcdPeiDatabase.getHString()\r
1325 + PcdDatabase.getPcdPeiDatabaseDefinitions();\r
1326 dbManager.PcdPeimCString = pcdPeiDatabase.getCString();\r
1327\r
1328 PcdDatabase pcdDxeDatabase = new PcdDatabase (alDxe, \r
1329 "DXE",\r
1330 alPei.size()\r
1331 );\r
1332 pcdDxeDatabase.genCode();\r
1333 dbManager.PcdDxeHString = dbManager.PcdPeimHString + pcdDxeDatabase.getHString()\r
1334 + PcdDatabase.getPcdDxeDatabaseDefinitions();\r
1335 dbManager.PcdDxeCString = pcdDxeDatabase.getCString();\r
1336 }\r
1337\r
1338 /**\r
1339 Get component array from FPD.\r
1340 \r
1341 This function maybe provided by some Global class.\r
1342 \r
1343 @return List<ModuleInfo> the component array.\r
1344 \r
1345 */\r
1346 private List<ModuleInfo> getComponentsFromFPD() \r
1347 throws EntityException {\r
1348 HashMap<String, XmlObject> map = new HashMap<String, XmlObject>();\r
1349 List<ModuleInfo> allModules = new ArrayList<ModuleInfo>();\r
1350 ModuleInfo current = null;\r
1351 int index = 0;\r
1352 org.tianocore.Components components = null;\r
1353 FrameworkModulesDocument.FrameworkModules fModules = null;\r
1354 java.util.List<ModuleSADocument.ModuleSA> modules = null;\r
1355 \r
1356\r
1357 if (fpdDocInstance == null) {\r
1358 try {\r
1359 fpdDocInstance = (FrameworkPlatformDescriptionDocument)XmlObject.Factory.parse(new File(fpdFilePath));\r
1360 } catch(IOException ioE) {\r
1361 throw new EntityException("File IO error for xml file:" + fpdFilePath + "\n" + ioE.getMessage());\r
1362 } catch(XmlException xmlE) {\r
1363 throw new EntityException("Can't parse the FPD xml fle:" + fpdFilePath + "\n" + xmlE.getMessage());\r
1364 }\r
1365\r
1366 }\r
1367\r
1368 //\r
1369 // Check whether FPD contians <FramworkModules>\r
1370 // \r
1371 fModules = fpdDocInstance.getFrameworkPlatformDescription().getFrameworkModules();\r
1372 if (fModules == null) {\r
1373 return null;\r
1374 }\r
1375\r
1376 //\r
1377 // BUGBUG: The following is work around code, the final component type should be get from\r
1378 // GlobalData class.\r
1379 // \r
1380 components = fModules.getSEC();\r
1381 if (components != null) {\r
1382 modules = components.getModuleSAList();\r
1383 for (index = 0; index < modules.size(); index ++) {\r
1384 allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.SEC));\r
1385 }\r
1386 }\r
1387\r
1388 components = fModules.getPEICORE();\r
1389 if (components != null) {\r
1390 modules = components.getModuleSAList();\r
1391 for (index = 0; index < modules.size(); index ++) {\r
1392 allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.PEI_CORE));\r
1393 }\r
1394 }\r
1395\r
1396 components = fModules.getPEIM();\r
1397 if (components != null) {\r
1398 modules = components.getModuleSAList();\r
1399 for (index = 0; index < modules.size(); index ++) {\r
1400 allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.PEIM));\r
1401 }\r
1402 }\r
1403\r
1404 components = fModules.getDXECORE();\r
1405 if (components != null) {\r
1406 modules = components.getModuleSAList();\r
1407 for (index = 0; index < modules.size(); index ++) {\r
1408 allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.DXE_CORE));\r
1409 }\r
1410 }\r
1411\r
1412 components = fModules.getDXEDRIVERS();\r
1413 if (components != null) {\r
1414 modules = components.getModuleSAList();\r
1415 for (index = 0; index < modules.size(); index ++) {\r
1416 allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.DXE_DRIVERS));\r
1417 }\r
1418 }\r
1419\r
1420 components = fModules.getOTHERCOMPONENTS();\r
1421 if (components != null) {\r
1422 modules = components.getModuleSAList();\r
1423 for (index = 0; index < modules.size(); index ++) {\r
1424 allModules.add(new ModuleInfo(modules.get(index), UsageInstance.MODULE_TYPE.OTHER_COMPONENTS));\r
1425 }\r
1426 }\r
1427 \r
1428 return allModules;\r
1429 }\r
1430\r
1431 /**\r
1432 Create token instance object into memory database, the token information\r
1433 comes for FPD file. Normally, FPD file will contain all token platform \r
1434 informations.\r
1435 \r
1436 @return FrameworkPlatformDescriptionDocument The FPD document instance for furture usage.\r
1437 \r
1438 @throws EntityException Failed to parse FPD xml file.\r
1439 \r
1440 **/\r
1441 private void createTokenInDBFromFPD() \r
1442 throws EntityException {\r
1443 int index = 0;\r
1444 int index2 = 0;\r
1445 int pcdIndex = 0;\r
1446 List<PcdBuildDefinition.PcdData> pcdBuildDataArray = new ArrayList<PcdBuildDefinition.PcdData>();\r
1447 PcdBuildDefinition.PcdData pcdBuildData = null;\r
1448 Token token = null;\r
1449 SkuInstance skuInstance = null;\r
1450 int skuIndex = 0;\r
1451 List<ModuleInfo> modules = null;\r
1452 String primaryKey = null;\r
1453 String exceptionString = null;\r
1454 UsageInstance usageInstance = null;\r
1455 String primaryKey1 = null;\r
1456 String primaryKey2 = null;\r
1457 boolean isDuplicate = false;\r
1458 Token.PCD_TYPE pcdType = Token.PCD_TYPE.UNKNOWN;\r
1459 Token.DATUM_TYPE datumType = Token.DATUM_TYPE.UNKNOWN;\r
1460 int tokenNumber = 0;\r
1461 String moduleName = null;\r
1462 String datum = null;\r
1463 int maxDatumSize = 0;\r
1464\r
1465 //\r
1466 // ----------------------------------------------\r
1467 // 1), Get all <ModuleSA> from FPD file.\r
1468 // ----------------------------------------------\r
1469 // \r
1470 modules = getComponentsFromFPD();\r
1471\r
1472 if (modules == null) {\r
1473 throw new EntityException("[FPD file error] No modules in FPD file, Please check whether there are elements in <FrameworkModules> in FPD file!");\r
1474 }\r
1475\r
1476 //\r
1477 // -------------------------------------------------------------------\r
1478 // 2), Loop all modules to process <PcdBuildDeclarations> for each module.\r
1479 // -------------------------------------------------------------------\r
1480 // \r
1481 for (index = 0; index < modules.size(); index ++) {\r
1482 isDuplicate = false;\r
1483 for (index2 = 0; index2 < index; index2 ++) {\r
1484 //\r
1485 // BUGBUG: For transition schema, we can *not* get module's version from \r
1486 // <ModuleSAs>, It is work around code.\r
1487 // \r
1488 primaryKey1 = UsageInstance.getPrimaryKey(modules.get(index).module.getModuleName(), \r
1489 null,\r
1490 null, \r
1491 null, \r
1492 modules.get(index).module.getArch().toString(),\r
1493 null);\r
1494 primaryKey2 = UsageInstance.getPrimaryKey(modules.get(index2).module.getModuleName(), \r
1495 null, \r
1496 null, \r
1497 null, \r
1498 modules.get(index2).module.getArch().toString(), \r
1499 null);\r
1500 if (primaryKey1.equalsIgnoreCase(primaryKey2)) {\r
1501 isDuplicate = true;\r
1502 break;\r
1503 }\r
1504 }\r
1505\r
1506 if (isDuplicate) {\r
1507 continue;\r
1508 }\r
1509\r
1510 //\r
1511 // It is legal for a module does not contains ANY pcd build definitions.\r
1512 // \r
1513 if (modules.get(index).module.getPcdBuildDefinition() == null) {\r
1514 continue;\r
1515 }\r
1516 \r
1517 pcdBuildDataArray = modules.get(index).module.getPcdBuildDefinition().getPcdDataList();\r
1518\r
1519 moduleName = modules.get(index).module.getModuleName();\r
1520\r
1521 //\r
1522 // ----------------------------------------------------------------------\r
1523 // 2.1), Loop all Pcd entry for a module and add it into memory database.\r
1524 // ----------------------------------------------------------------------\r
1525 // \r
1526 for (pcdIndex = 0; pcdIndex < pcdBuildDataArray.size(); pcdIndex ++) {\r
1527 pcdBuildData = pcdBuildDataArray.get(pcdIndex);\r
1528 primaryKey = Token.getPrimaryKeyString(pcdBuildData.getCName(),\r
1529 translateSchemaStringToUUID(pcdBuildData.getTokenSpaceGuid()));\r
1530 pcdType = Token.getpcdTypeFromString(pcdBuildData.getItemType().toString());\r
1531 datumType = Token.getdatumTypeFromString(pcdBuildData.getDatumType().toString());\r
1532 tokenNumber = Integer.decode(pcdBuildData.getToken().toString());\r
1533 datum = pcdBuildData.getValue();\r
1534 maxDatumSize = pcdBuildData.getMaxDatumSize();\r
1535\r
1536 //\r
1537 // Check <TokenSpaceGuid> is exist? In future, because all schema verification will tools\r
1538 // will check that, following checking code could be removed.\r
1539 // \r
1540 if (pcdBuildData.getTokenSpaceGuid() == null) {\r
1541 exceptionString = String.format("[FPD file error] There is no <TokenSpaceGuid> for PCD %s in module %s! This is required!",\r
1542 pcdBuildData.getCName(),\r
1543 moduleName);\r
1544 throw new EntityException(exceptionString);\r
1545 }\r
1546\r
1547 //\r
1548 // -------------------------------------------------------------------------------------------\r
1549 // 2.1.1), Do some necessary checking work for FixedAtBuild, FeatureFlag and PatchableInModule\r
1550 // -------------------------------------------------------------------------------------------\r
1551 // \r
1552 if (!Token.isDynamic(pcdType)) {\r
1553 //\r
1554 // Value is required.\r
1555 // \r
1556 if (datum == null) {\r
1557 exceptionString = String.format("[FPD file error] There is no value for PCD entry %s in module %s!",\r
1558 pcdBuildData.getCName(),\r
1559 moduleName);\r
1560 throw new EntityException(exceptionString);\r
1561 }\r
1562\r
1563 //\r
1564 // Check whether the datum size is matched datum type.\r
1565 // \r
1566 if ((exceptionString = verifyDatum(pcdBuildData.getCName(), \r
1567 moduleName,\r
1568 datum,\r
1569 datumType,\r
1570 maxDatumSize)) != null) {\r
1571 throw new EntityException(exceptionString);\r
1572 }\r
1573 }\r
1574\r
1575 //\r
1576 // ---------------------------------------------------------------------------------\r
1577 // 2.1.2), Create token or update token information for current anaylized PCD data.\r
1578 // ---------------------------------------------------------------------------------\r
1579 // \r
1580 if (dbManager.isTokenInDatabase(primaryKey)) {\r
1581 //\r
1582 // If the token is already exist in database, do some necessary checking\r
1583 // and add a usage instance into this token in database\r
1584 // \r
1585 token = dbManager.getTokenByKey(primaryKey);\r
1586 \r
1587 //\r
1588 // checking for DatumType, DatumType should be unique for one PCD used in different\r
1589 // modules.\r
1590 // \r
1591 if (token.datumType != datumType) {\r
1592 exceptionString = String.format("[FPD file error] The datum type of PCD entry %s is %s, which is different with %s defined in before!",\r
1593 pcdBuildData.getCName(), \r
1594 pcdBuildData.getDatumType().toString(), \r
1595 Token.getStringOfdatumType(token.datumType));\r
1596 throw new EntityException(exceptionString);\r
1597 }\r
1598\r
1599 //\r
1600 // Check token number is valid\r
1601 // \r
1602 if (tokenNumber != token.tokenNumber) {\r
1603 exceptionString = String.format("[FPD file error] The token number of PCD entry %s in module %s is different with same PCD entry in other modules!",\r
1604 pcdBuildData.getCName(),\r
1605 moduleName);\r
1606 throw new EntityException(exceptionString);\r
1607 }\r
1608\r
1609 //\r
1610 // For same PCD used in different modules, the PCD type should all be dynamic or non-dynamic.\r
1611 // \r
1612 if (token.isDynamicPCD != Token.isDynamic(pcdType)) {\r
1613 exceptionString = String.format("[FPD file error] For PCD entry %s in module %s, you define dynamic or non-dynamic PCD type which"+\r
1614 "is different with others module's",\r
1615 token.cName,\r
1616 moduleName);\r
1617 throw new EntityException(exceptionString);\r
1618 }\r
1619\r
1620 if (token.isDynamicPCD) {\r
1621 //\r
1622 // Check datum is equal the datum in dynamic information.\r
1623 // For dynamic PCD, you can do not write <Value> in sperated every <PcdBuildDefinition> in different <ModuleSA>,\r
1624 // But if you write, the <Value> must be same as the value in <DynamicPcdBuildDefinitions>.\r
1625 // \r
1626 if (!token.isSkuEnable() && \r
1627 (token.getDefaultSku().type == DynamicTokenValue.VALUE_TYPE.DEFAULT_TYPE) &&\r
1628 (datum != null)) {\r
1629 if (!datum.equalsIgnoreCase(token.getDefaultSku().value)) {\r
1630 exceptionString = String.format("[FPD file error] For dynamic PCD %s in module %s, the datum in <ModuleSA> is "+\r
1631 "not equal to the datum in <DynamicPcdBuildDefinitions>, it is "+\r
1632 "illega! You could no set <Value> in <ModuleSA> for a dynamic PCD!",\r
1633 token.cName,\r
1634 moduleName);\r
1635 throw new EntityException(exceptionString);\r
1636 }\r
1637 }\r
1638\r
1639 if ((maxDatumSize != 0) &&\r
1640 (maxDatumSize != token.datumSize)){\r
1641 exceptionString = String.format("[FPD file error] For dynamic PCD %s in module %s, the max datum size is %d which "+\r
1642 "is different with <MaxDatumSize> %d defined in <DynamicPcdBuildDefinitions>!",\r
1643 token.cName,\r
1644 moduleName,\r
1645 maxDatumSize,\r
1646 token.datumSize);\r
1647 throw new EntityException(exceptionString);\r
1648 }\r
1649 }\r
1650 \r
1651 } else {\r
1652 //\r
1653 // If the token is not in database, create a new token instance and add\r
1654 // a usage instance into this token in database.\r
1655 // \r
1656 token = new Token(pcdBuildData.getCName(), \r
1657 translateSchemaStringToUUID(pcdBuildData.getTokenSpaceGuid()));\r
1658 \r
1659 token.datumType = datumType;\r
1660 token.tokenNumber = tokenNumber;\r
1661 token.isDynamicPCD = Token.isDynamic(pcdType);\r
1662 token.datumSize = maxDatumSize;\r
1663 \r
1664 if (token.isDynamicPCD) {\r
1665 //\r
1666 // For Dynamic and Dynamic Ex type, need find the dynamic information\r
1667 // in <DynamicPcdBuildDefinition> section in FPD file.\r
1668 // \r
1669 updateDynamicInformation(moduleName, \r
1670 token,\r
1671 datum,\r
1672 maxDatumSize);\r
1673 }\r
1674 \r
1675 dbManager.addTokenToDatabase(primaryKey, token);\r
1676 }\r
1677\r
1678 //\r
1679 // -----------------------------------------------------------------------------------\r
1680 // 2.1.3), Add the PcdType in current module into this Pcd token's supported PCD type.\r
1681 // -----------------------------------------------------------------------------------\r
1682 // \r
1683 token.updateSupportPcdType(pcdType);\r
1684\r
1685 //\r
1686 // ------------------------------------------------\r
1687 // 2.1.4), Create an usage instance for this token.\r
1688 // ------------------------------------------------\r
1689 // \r
1690 usageInstance = new UsageInstance(token, \r
1691 moduleName, \r
1692 null,\r
1693 null,\r
1694 null,\r
1695 modules.get(index).type, \r
1696 pcdType,\r
1697 modules.get(index).module.getArch().toString(), \r
1698 null,\r
1699 datum,\r
1700 maxDatumSize);\r
1701 token.addUsageInstance(usageInstance);\r
1702 }\r
1703 }\r
1704 }\r
1705\r
1706 /**\r
1707 Verify the datum value according its datum size and datum type, this\r
1708 function maybe moved to FPD verification tools in future.\r
1709 \r
1710 @param cName\r
1711 @param moduleName\r
1712 @param datum\r
1713 @param datumType\r
1714 @param maxDatumSize\r
1715 \r
1716 @return String\r
1717 */\r
1718 /***/\r
1719 public String verifyDatum(String cName,\r
1720 String moduleName,\r
1721 String datum, \r
1722 Token.DATUM_TYPE datumType, \r
1723 int maxDatumSize) {\r
1724 String exceptionString = null;\r
1725 int value;\r
1726 BigInteger value64;\r
1727 String subStr;\r
1728 int index;\r
1729\r
1730 if (moduleName == null) {\r
1731 moduleName = "section <DynamicPcdBuildDefinitions>";\r
1732 } else {\r
1733 moduleName = "module " + moduleName;\r
1734 }\r
1735\r
1736 if (maxDatumSize == 0) {\r
1737 exceptionString = String.format("[FPD file error] You maybe miss <MaxDatumSize> for PCD %s in %s",\r
1738 cName,\r
1739 moduleName);\r
1740 return exceptionString;\r
1741 }\r
1742\r
1743 switch (datumType) {\r
1744 case UINT8:\r
1745 if (maxDatumSize != 1) {\r
1746 exceptionString = String.format("[FPD file error] The datum type of PCD data %s in %s "+\r
1747 "is UINT8, but datum size is %d, they are not matched!",\r
1748 cName,\r
1749 moduleName,\r
1750 maxDatumSize);\r
1751 return exceptionString;\r
1752 }\r
1753\r
1754 if (datum != null) {\r
1755 try {\r
1756 value = Integer.decode(datum);\r
1757 } catch (NumberFormatException nfeExp) {\r
1758 exceptionString = String.format("[FPD file error] The datum for PCD %s in %s is not valid "+\r
1759 "digital format of UINT8",\r
1760 cName,\r
1761 moduleName);\r
1762 return exceptionString;\r
1763 }\r
1764 if (value > 0xFF) {\r
1765 exceptionString = String.format("[FPD file error] The datum for PCD %s in %s is %s exceed"+\r
1766 " the max size of UINT8 - 0xFF",\r
1767 cName, \r
1768 moduleName,\r
1769 datum);\r
1770 return exceptionString;\r
1771 }\r
1772 }\r
1773 break;\r
1774 case UINT16:\r
1775 if (maxDatumSize != 2) {\r
1776 exceptionString = String.format("[FPD file error] The datum type of PCD data %s in %s "+\r
1777 "is UINT16, but datum size is %d, they are not matched!",\r
1778 cName,\r
1779 moduleName,\r
1780 maxDatumSize);\r
1781 return exceptionString;\r
1782 }\r
1783 if (datum != null) {\r
1784 try {\r
1785 value = Integer.decode(datum);\r
1786 } catch (NumberFormatException nfeExp) {\r
1787 exceptionString = String.format("[FPD file error] The datum for PCD %s in %s is "+\r
1788 "not valid digital of UINT16",\r
1789 cName,\r
1790 moduleName);\r
1791 return exceptionString;\r
1792 }\r
1793 if (value > 0xFFFF) {\r
1794 exceptionString = String.format("[FPD file error] The datum for PCD %s in %s is %s "+\r
1795 "which exceed the range of UINT16 - 0xFFFF",\r
1796 cName, \r
1797 moduleName,\r
1798 datum);\r
1799 return exceptionString;\r
1800 }\r
1801 }\r
1802 break;\r
1803 case UINT32:\r
1804 if (maxDatumSize != 4) {\r
1805 exceptionString = String.format("[FPD file error] The datum type of PCD data %s in %s "+\r
1806 "is UINT32, but datum size is %d, they are not matched!",\r
1807 cName,\r
1808 moduleName,\r
1809 maxDatumSize);\r
1810 return exceptionString;\r
1811 }\r
1812\r
1813 if (datum != null) {\r
1814 try {\r
1815 if (datum.length() > 2) {\r
1816 if ((datum.charAt(0) == '0') && \r
1817 ((datum.charAt(1) == 'x') || (datum.charAt(1) == 'X'))){\r
1818 subStr = datum.substring(2, datum.length());\r
1819 value64 = new BigInteger(subStr, 16);\r
1820 } else {\r
1821 value64 = new BigInteger(datum);\r
1822 }\r
1823 } else {\r
1824 value64 = new BigInteger(datum);\r
1825 }\r
1826 } catch (NumberFormatException nfeExp) {\r
1827 exceptionString = String.format("[FPD file error] The datum for PCD %s in %s is not "+\r
1828 "valid digital of UINT32",\r
1829 cName,\r
1830 moduleName);\r
1831 return exceptionString;\r
1832 }\r
1833\r
1834 if (value64.bitLength() > 32) {\r
1835 exceptionString = String.format("[FPD file error] The datum for PCD %s in %s is %s which "+\r
1836 "exceed the range of UINT32 - 0xFFFFFFFF",\r
1837 cName, \r
1838 moduleName,\r
1839 datum);\r
1840 return exceptionString;\r
1841 }\r
1842 }\r
1843 break;\r
1844 case UINT64:\r
1845 if (maxDatumSize != 8) {\r
1846 exceptionString = String.format("[FPD file error] The datum type of PCD data %s in %s "+\r
1847 "is UINT64, but datum size is %d, they are not matched!",\r
1848 cName,\r
1849 moduleName,\r
1850 maxDatumSize);\r
1851 return exceptionString;\r
1852 }\r
1853\r
1854 if (datum != null) {\r
1855 try {\r
1856 if (datum.length() > 2) {\r
1857 if ((datum.charAt(0) == '0') && \r
1858 ((datum.charAt(1) == 'x') || (datum.charAt(1) == 'X'))){\r
1859 subStr = datum.substring(2, datum.length());\r
1860 value64 = new BigInteger(subStr, 16);\r
1861 } else {\r
1862 value64 = new BigInteger(datum);\r
1863 }\r
1864 } else {\r
1865 value64 = new BigInteger(datum);\r
1866 }\r
1867 } catch (NumberFormatException nfeExp) {\r
1868 exceptionString = String.format("[FPD file error] The datum for PCD %s in %s is not valid"+\r
1869 " digital of UINT64",\r
1870 cName,\r
1871 moduleName);\r
1872 return exceptionString;\r
1873 }\r
1874\r
1875 if (value64.bitLength() > 64) {\r
1876 exceptionString = String.format("[FPD file error] The datum for PCD %s in %s is %s "+\r
1877 "exceed the range of UINT64 - 0xFFFFFFFFFFFFFFFF",\r
1878 cName, \r
1879 moduleName,\r
1880 datum);\r
1881 return exceptionString;\r
1882 }\r
1883 }\r
1884 break;\r
1885 case BOOLEAN:\r
1886 if (maxDatumSize != 1) {\r
1887 exceptionString = String.format("[FPD file error] The datum type of PCD data %s in %s "+\r
1888 "is BOOLEAN, but datum size is %d, they are not matched!",\r
1889 cName,\r
1890 moduleName,\r
1891 maxDatumSize);\r
1892 return exceptionString;\r
1893 }\r
1894\r
1895 if (datum != null) {\r
1896 if (!(datum.equalsIgnoreCase("TRUE") ||\r
1897 datum.equalsIgnoreCase("FALSE"))) {\r
1898 exceptionString = String.format("[FPD file error] The datum type of PCD data %s in %s "+\r
1899 "is BOOELAN, but value is not 'true'/'TRUE' or 'FALSE'/'false'",\r
1900 cName,\r
1901 moduleName);\r
1902 return exceptionString;\r
1903 }\r
1904\r
1905 }\r
1906 break;\r
1907 case POINTER:\r
1908 if (datum == null) {\r
1909 break;\r
1910 }\r
1911\r
1912 char ch = datum.charAt(0);\r
1913 int start, end;\r
1914 String strValue;\r
1915 //\r
1916 // For void* type PCD, only three datum is support:\r
1917 // 1) Unicode: string with start char is "L"\r
1918 // 2) Ansci: String start char is ""\r
1919 // 3) byte array: String start char "{"\r
1920 // \r
1921 if (ch == 'L') {\r
1922 start = datum.indexOf('\"');\r
1923 end = datum.lastIndexOf('\"');\r
1924 if ((start > end) || \r
1925 (end > datum.length())||\r
1926 ((start == end) && (datum.length() > 0))) {\r
1927 exceptionString = String.format("[FPD file error] The datum type of PCD %s in %s is VOID* and datum is "+\r
1928 "a UNICODE string because start with L\", but format maybe"+\r
1929 "is not right, correct UNICODE string is L\"...\"!",\r
1930 cName,\r
1931 moduleName);\r
1932 return exceptionString;\r
1933 }\r
1934\r
1935 strValue = datum.substring(start + 1, end);\r
1936 if ((strValue.length() * 2) > maxDatumSize) {\r
1937 exceptionString = String.format("[FPD file error] The datum type of PCD %s in %s is VOID*, and datum is "+\r
1938 "a UNICODE string, but the datum size is %d exceed to <MaxDatumSize> : %d",\r
1939 cName,\r
1940 moduleName,\r
1941 strValue.length() * 2, \r
1942 maxDatumSize);\r
1943 return exceptionString;\r
1944 }\r
1945 } else if (ch == '\"'){\r
1946 start = datum.indexOf('\"');\r
1947 end = datum.lastIndexOf('\"');\r
1948 if ((start > end) || \r
1949 (end > datum.length())||\r
1950 ((start == end) && (datum.length() > 0))) {\r
1951 exceptionString = String.format("[FPD file error] The datum type of PCD %s in %s is VOID* and datum is "+\r
1952 "a ANSCII string because start with \", but format maybe"+\r
1953 "is not right, correct ANSIC string is \"...\"!",\r
1954 cName,\r
1955 moduleName);\r
1956 return exceptionString;\r
1957 }\r
1958 strValue = datum.substring(start + 1, end);\r
1959 if ((strValue.length()) > maxDatumSize) {\r
1960 exceptionString = String.format("[FPD file error] The datum type of PCD %s in %s is VOID*, and datum is "+\r
1961 "a ANSCI string, but the datum size is %d which exceed to <MaxDatumSize> : %d",\r
1962 cName,\r
1963 moduleName,\r
1964 strValue.length(),\r
1965 maxDatumSize);\r
1966 return exceptionString;\r
1967 }\r
1968 } else if (ch =='{') {\r
1969 String[] strValueArray;\r
1970\r
1971 start = datum.indexOf('{');\r
1972 end = datum.lastIndexOf('}');\r
1973 strValue = datum.substring(start + 1, end);\r
1974 strValue = strValue.trim();\r
1975 if (strValue.length() == 0) {\r
1976 break;\r
1977 }\r
1978 strValueArray = strValue.split(",");\r
1979 for (index = 0; index < strValueArray.length; index ++) {\r
1980 try{\r
1981 value = Integer.decode(strValueArray[index].trim());\r
1982 } catch (NumberFormatException nfeEx) {\r
1983 exceptionString = String.format("[FPD file error] The datum type of PCD %s in %s is VOID*, and "+\r
1984 "it is byte array in fact. For every byte in array should be a valid"+\r
1985 "byte digital, but element %s is not a valid byte digital!",\r
1986 cName,\r
1987 moduleName,\r
1988 strValueArray[index]);\r
1989 return exceptionString;\r
1990 }\r
1991 if (value > 0xFF) {\r
1992 exceptionString = String.format("[FPD file error] The datum type of PCD %s in %s is VOID*, "+\r
1993 "it is byte array in fact. But the element of %s exceed the byte range",\r
1994 cName,\r
1995 moduleName,\r
1996 strValueArray[index]);\r
1997 return exceptionString;\r
1998 }\r
1999 }\r
2000\r
2001 if (strValueArray.length > maxDatumSize) {\r
2002 exceptionString = String.format("[FPD file error] The datum type of PCD %s in %s is VOID*, and datum is byte"+\r
2003 "array, but the number of bytes is %d which exceed to <MaxDatumSzie> : %d!",\r
2004 cName,\r
2005 moduleName,\r
2006 strValueArray.length,\r
2007 maxDatumSize);\r
2008 return exceptionString;\r
2009 }\r
2010 } else {\r
2011 exceptionString = String.format("[FPD file error] The datum type of PCD %s in %s is VOID*. For VOID* type, you have three format choise:\n "+\r
2012 "1) UNICODE string: like L\"xxxx\";\r\n"+\r
2013 "2) ANSIC string: like \"xxx\";\r\n"+\r
2014 "3) Byte array: like {0x2, 0x45, 0x23}\r\n"+\r
2015 "But the datum in seems does not following above format!",\r
2016 cName, \r
2017 moduleName);\r
2018 return exceptionString;\r
2019 }\r
2020 break;\r
2021 default:\r
2022 exceptionString = String.format("[FPD file error] For PCD entry %s in %s, datum type is unknown, it should be one of "+\r
2023 "UINT8, UINT16, UINT32, UINT64, VOID*, BOOLEAN",\r
2024 cName,\r
2025 moduleName);\r
2026 return exceptionString;\r
2027 }\r
2028 return null;\r
2029 }\r
2030\r
2031 /**\r
2032 Get dynamic information for a dynamic PCD from <DynamicPcdBuildDefinition> seciton in FPD file.\r
2033 \r
2034 This function should be implemented in GlobalData in future.\r
2035 \r
2036 @param token The token instance which has hold module's PCD information\r
2037 @param moduleName The name of module who will use this Dynamic PCD.\r
2038 \r
2039 @return DynamicPcdBuildDefinitions.PcdBuildData\r
2040 */\r
2041 /***/\r
2042 private DynamicPcdBuildDefinitions.PcdBuildData getDynamicInfoFromFPD(Token token,\r
2043 String moduleName)\r
2044 throws EntityException {\r
2045 int index = 0;\r
2046 String exceptionString = null;\r
2047 String dynamicPrimaryKey = null;\r
2048 DynamicPcdBuildDefinitions dynamicPcdBuildDefinitions = null;\r
2049 List<DynamicPcdBuildDefinitions.PcdBuildData> dynamicPcdBuildDataArray = null;\r
2050\r
2051 //\r
2052 // If FPD document is not be opened, open and initialize it.\r
2053 // \r
2054 if (fpdDocInstance == null) {\r
2055 try {\r
2056 fpdDocInstance = (FrameworkPlatformDescriptionDocument)XmlObject.Factory.parse(new File(fpdFilePath));\r
2057 } catch(IOException ioE) {\r
2058 throw new EntityException("File IO error for xml file:" + fpdFilePath + "\n" + ioE.getMessage());\r
2059 } catch(XmlException xmlE) {\r
2060 throw new EntityException("Can't parse the FPD xml fle:" + fpdFilePath + "\n" + xmlE.getMessage());\r
2061 }\r
2062 }\r
2063\r
2064 dynamicPcdBuildDefinitions = fpdDocInstance.getFrameworkPlatformDescription().getDynamicPcdBuildDefinitions();\r
2065 if (dynamicPcdBuildDefinitions == null) {\r
2066 exceptionString = String.format("[FPD file error] There are no <PcdDynamicBuildDescriptions> in FPD file but contains Dynamic type "+\r
2067 "PCD entry %s in module %s!",\r
2068 token.cName,\r
2069 moduleName);\r
2070 throw new EntityException(exceptionString);\r
2071 }\r
2072\r
2073 dynamicPcdBuildDataArray = dynamicPcdBuildDefinitions.getPcdBuildDataList();\r
2074 for (index = 0; index < dynamicPcdBuildDataArray.size(); index ++) {\r
2075 //\r
2076 // Check <TokenSpaceGuid> is exist? In future, because all schema verification will tools\r
2077 // will check that, following checking code could be removed.\r
2078 // \r
2079 if (dynamicPcdBuildDataArray.get(index).getTokenSpaceGuid() == null) {\r
2080 exceptionString = String.format("[FPD file error] There is no <TokenSpaceGuid> for PCD %s in <DynamicPcdBuildDefinitions>! This is required!",\r
2081 dynamicPcdBuildDataArray.get(index).getCName());\r
2082 throw new EntityException(exceptionString);\r
2083 }\r
2084\r
2085 dynamicPrimaryKey = Token.getPrimaryKeyString(dynamicPcdBuildDataArray.get(index).getCName(),\r
2086 translateSchemaStringToUUID(dynamicPcdBuildDataArray.get(index).getTokenSpaceGuid()));\r
2087 if (dynamicPrimaryKey.equalsIgnoreCase(token.getPrimaryKeyString())) {\r
2088 return dynamicPcdBuildDataArray.get(index);\r
2089 }\r
2090 }\r
2091\r
2092 return null;\r
2093 }\r
2094\r
2095 /**\r
2096 Update dynamic information for PCD entry.\r
2097 \r
2098 Dynamic information is retrieved from <PcdDynamicBuildDeclarations> in\r
2099 FPD file.\r
2100 \r
2101 @param moduleName The name of the module who use this PCD\r
2102 @param token The token instance\r
2103 @param datum The <datum> in module's PCD information\r
2104 @param maxDatumSize The <maxDatumSize> in module's PCD information\r
2105 \r
2106 @return Token\r
2107 */\r
2108 private Token updateDynamicInformation(String moduleName, \r
2109 Token token,\r
2110 String datum,\r
2111 int maxDatumSize) \r
2112 throws EntityException {\r
2113 int index = 0;\r
2114 int offset;\r
2115 String exceptionString = null;\r
2116 DynamicTokenValue dynamicValue;\r
2117 SkuInstance skuInstance = null;\r
2118 String temp;\r
2119 boolean hasSkuId0 = false;\r
2120 Token.PCD_TYPE pcdType = Token.PCD_TYPE.UNKNOWN;\r
2121 int tokenNumber = 0;\r
2122\r
2123 List<DynamicPcdBuildDefinitions.PcdBuildData.SkuInfo> skuInfoList = null;\r
2124 DynamicPcdBuildDefinitions.PcdBuildData dynamicInfo = null;\r
2125\r
2126 dynamicInfo = getDynamicInfoFromFPD(token, moduleName);\r
2127 if (dynamicInfo == null) {\r
2128 exceptionString = String.format("[FPD file error] For Dynamic PCD %s used by module %s, "+\r
2129 "there is no dynamic information in <DynamicPcdBuildDefinitions> "+\r
2130 "in FPD file, but it is required!",\r
2131 token.cName,\r
2132 moduleName);\r
2133 throw new EntityException(exceptionString);\r
2134 }\r
2135\r
2136 token.datumSize = dynamicInfo.getMaxDatumSize();\r
2137\r
2138 exceptionString = verifyDatum(token.cName, \r
2139 moduleName,\r
2140 null, \r
2141 token.datumType, \r
2142 token.datumSize);\r
2143 if (exceptionString != null) {\r
2144 throw new EntityException(exceptionString);\r
2145 }\r
2146\r
2147 if ((maxDatumSize != 0) && \r
2148 (maxDatumSize != token.datumSize)) {\r
2149 exceptionString = String.format("FPD file error] For dynamic PCD %s, the datum size in module %s is %d, but "+\r
2150 "the datum size in <DynamicPcdBuildDefinitions> is %d, they are not match!",\r
2151 token.cName,\r
2152 moduleName, \r
2153 maxDatumSize,\r
2154 dynamicInfo.getMaxDatumSize());\r
2155 throw new EntityException(exceptionString);\r
2156 }\r
2157 tokenNumber = Integer.decode(dynamicInfo.getToken().toString());\r
2158 if (tokenNumber != token.tokenNumber) {\r
2159 exceptionString = String.format("[FPD file error] For dynamic PCD %s, the token number in module %s is 0x%x, but"+\r
2160 "in <DynamicPcdBuildDefinictions>, the token number is 0x%x, they are not match!",\r
2161 token.cName,\r
2162 moduleName,\r
2163 token.tokenNumber,\r
2164 tokenNumber);\r
2165 throw new EntityException(exceptionString);\r
2166 }\r
2167\r
2168 pcdType = Token.getpcdTypeFromString(dynamicInfo.getItemType().toString());\r
2169 if (pcdType == Token.PCD_TYPE.DYNAMIC_EX) {\r
2170 token.dynamicExTokenNumber = tokenNumber;\r
2171 }\r
2172\r
2173 skuInfoList = dynamicInfo.getSkuInfoList();\r
2174\r
2175 //\r
2176 // Loop all sku data \r
2177 // \r
2178 for (index = 0; index < skuInfoList.size(); index ++) {\r
2179 skuInstance = new SkuInstance();\r
2180 //\r
2181 // Although SkuId in schema is BigInteger, but in fact, sku id is 32 bit value.\r
2182 // \r
2183 temp = skuInfoList.get(index).getSkuId().toString();\r
2184 skuInstance.id = Integer.decode(temp);\r
2185 if (skuInstance.id == 0) {\r
2186 hasSkuId0 = true;\r
2187 }\r
2188 //\r
2189 // Judge whether is DefaultGroup at first, because most case is DefautlGroup.\r
2190 // \r
2191 if (skuInfoList.get(index).getValue() != null) {\r
2192 skuInstance.value.setValue(skuInfoList.get(index).getValue());\r
2193 if ((exceptionString = verifyDatum(token.cName, \r
2194 null, \r
2195 skuInfoList.get(index).getValue(), \r
2196 token.datumType, \r
2197 token.datumSize)) != null) {\r
2198 throw new EntityException(exceptionString);\r
2199 }\r
2200\r
2201 token.skuData.add(skuInstance);\r
2202\r
2203 //\r
2204 // Judege wether is same of datum between module's information\r
2205 // and dynamic information.\r
2206 // \r
2207 if (datum != null) {\r
2208 if ((skuInstance.id == 0) &&\r
2209 !datum.equalsIgnoreCase(skuInfoList.get(index).getValue())) {\r
2210 exceptionString = "[FPD file error] For dynamic PCD " + token.cName + ", the value in module " + moduleName + " is " + datum.toString() + " but the "+\r
2211 "value of sku 0 data in <DynamicPcdBuildDefinition> is " + skuInstance.value.value + ". They are must be same!"+\r
2212 " or you could not define value for a dynamic PCD in every <ModuleSA>!"; \r
2213 throw new EntityException(exceptionString);\r
2214 }\r
2215 }\r
2216 continue;\r
2217 }\r
2218\r
2219 //\r
2220 // Judge whether is HII group case.\r
2221 // \r
2222 if (skuInfoList.get(index).getVariableName() != null) {\r
2223 exceptionString = null;\r
2224 if (skuInfoList.get(index).getVariableGuid() == null) {\r
2225 exceptionString = String.format("[FPD file error] For dynamic PCD %s in <DynamicPcdBuildDefinitions> section in FPD "+\r
2226 "file, who use HII, but there is no <VariableGuid> defined for Sku %d data!",\r
2227 token.cName,\r
2228 index);\r
2229 \r
2230 }\r
2231\r
2232 if (skuInfoList.get(index).getVariableOffset() == null) {\r
2233 exceptionString = String.format("[FPD file error] For dynamic PCD %s in <DynamicPcdBuildDefinitions> section in FPD "+\r
2234 "file, who use HII, but there is no <VariableOffset> defined for Sku %d data!",\r
2235 token.cName,\r
2236 index);\r
2237 }\r
2238\r
2239 if (skuInfoList.get(index).getHiiDefaultValue() == null) {\r
2240 exceptionString = String.format("[FPD file error] For dynamic PCD %s in <DynamicPcdBuildDefinitions> section in FPD "+\r
2241 "file, who use HII, but there is no <HiiDefaultValue> defined for Sku %d data!",\r
2242 token.cName,\r
2243 index);\r
2244 }\r
2245\r
2246 if (exceptionString != null) {\r
2247 throw new EntityException(exceptionString);\r
2248 }\r
2249\r
2250 if ((exceptionString = verifyDatum(token.cName, \r
2251 null, \r
2252 skuInfoList.get(index).getHiiDefaultValue(), \r
2253 token.datumType, \r
2254 token.datumSize)) != null) {\r
2255 throw new EntityException(exceptionString);\r
2256 }\r
2257\r
2258 offset = Integer.decode(skuInfoList.get(index).getVariableOffset());\r
2259 if (offset > 0xFFFF) {\r
2260 throw new EntityException(String.format("[FPD file error] For dynamic PCD %s , the variable offset defined in sku %d data "+\r
2261 "exceed 64K, it is not allowed!",\r
2262 token.cName,\r
2263 index));\r
2264 }\r
2265\r
2266 skuInstance.value.setHiiData(skuInfoList.get(index).getVariableName(),\r
2267 translateSchemaStringToUUID(skuInfoList.get(index).getVariableGuid().toString()),\r
2268 skuInfoList.get(index).getVariableOffset(),\r
2269 skuInfoList.get(index).getHiiDefaultValue());\r
2270 token.skuData.add(skuInstance);\r
2271 continue;\r
2272 }\r
2273\r
2274 if (skuInfoList.get(index).getVpdOffset() != null) {\r
2275 skuInstance.value.setVpdData(skuInfoList.get(index).getVpdOffset());\r
2276 token.skuData.add(skuInstance);\r
2277 continue;\r
2278 }\r
2279\r
2280 exceptionString = String.format("[FPD file error] For dynamic PCD %s, the dynamic info must "+\r
2281 "be one of 'DefaultGroup', 'HIIGroup', 'VpdGroup'.",\r
2282 token.cName);\r
2283 throw new EntityException(exceptionString);\r
2284 }\r
2285\r
2286 if (!hasSkuId0) {\r
2287 exceptionString = String.format("[FPD file error] For dynamic PCD %s in <DynamicPcdBuildDefinitions>, there are "+\r
2288 "no sku id = 0 data, which is required for every dynamic PCD",\r
2289 token.cName);\r
2290 throw new EntityException(exceptionString);\r
2291 }\r
2292\r
2293 return token;\r
2294 }\r
2295\r
2296 /**\r
2297 Translate the schema string to UUID instance.\r
2298 \r
2299 In schema, the string of UUID is defined as following two types string:\r
2300 1) GuidArrayType: pattern = 0x[a-fA-F0-9]{1,8},( )*0x[a-fA-F0-9]{1,4},(\r
2301 )*0x[a-fA-F0-9]{1,4}(,( )*\{)?(,?( )*0x[a-fA-F0-9]{1,2}){8}( )*(\})?\r
2302 \r
2303 2) GuidNamingConvention: pattern =\r
2304 [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}\r
2305 \r
2306 This function will convert string and create uuid instance.\r
2307 \r
2308 @param uuidString UUID string in XML file\r
2309 \r
2310 @return UUID UUID instance\r
2311 **/\r
2312 private UUID translateSchemaStringToUUID(String uuidString) \r
2313 throws EntityException {\r
2314 String temp;\r
2315 String[] splitStringArray;\r
2316 int index;\r
2317 int chIndex;\r
2318 int chLen;\r
2319\r
2320 if (uuidString == null) {\r
2321 return null;\r
2322 }\r
2323\r
2324 if (uuidString.length() == 0) {\r
2325 return null;\r
2326 }\r
2327\r
2328 if (uuidString.equals("0") ||\r
2329 uuidString.equalsIgnoreCase("0x0")) {\r
2330 return new UUID(0, 0);\r
2331 }\r
2332\r
2333 //\r
2334 // If the UUID schema string is GuidArrayType type then need translate \r
2335 // to GuidNamingConvention type at first.\r
2336 // \r
2337 if ((uuidString.charAt(0) == '0') && ((uuidString.charAt(1) == 'x') || (uuidString.charAt(1) == 'X'))) {\r
2338 splitStringArray = uuidString.split("," );\r
2339 if (splitStringArray.length != 11) {\r
2340 throw new EntityException ("[FPD file error] Wrong format for UUID string: " + uuidString);\r
2341 }\r
2342\r
2343 //\r
2344 // Remove blank space from these string and remove header string "0x"\r
2345 // \r
2346 for (index = 0; index < 11; index ++) {\r
2347 splitStringArray[index] = splitStringArray[index].trim();\r
2348 splitStringArray[index] = splitStringArray[index].substring(2, splitStringArray[index].length());\r
2349 }\r
2350\r
2351 //\r
2352 // Add heading '0' to normalize the string length\r
2353 // \r
2354 for (index = 3; index < 11; index ++) {\r
2355 chLen = splitStringArray[index].length();\r
2356 for (chIndex = 0; chIndex < 2 - chLen; chIndex ++) {\r
2357 splitStringArray[index] = "0" + splitStringArray[index];\r
2358 }\r
2359 }\r
2360\r
2361 //\r
2362 // construct the final GuidNamingConvention string\r
2363 // \r
2364 temp = String.format("%s-%s-%s-%s%s-%s%s%s%s%s%s",\r
2365 splitStringArray[0],\r
2366 splitStringArray[1],\r
2367 splitStringArray[2],\r
2368 splitStringArray[3],\r
2369 splitStringArray[4],\r
2370 splitStringArray[5],\r
2371 splitStringArray[6],\r
2372 splitStringArray[7],\r
2373 splitStringArray[8],\r
2374 splitStringArray[9],\r
2375 splitStringArray[10]);\r
2376 uuidString = temp;\r
2377 }\r
2378\r
2379 return UUID.fromString(uuidString);\r
2380 }\r
2381\r
2382 /**\r
2383 check parameter for this action.\r
2384 \r
2385 @throws EntityException Bad parameter.\r
2386 **/\r
2387 private void checkParameter() throws EntityException {\r
2388 File file = null;\r
2389\r
2390 if((fpdFilePath == null) ||(workspacePath == null)) {\r
2391 throw new EntityException("WorkspacePath and FPDFileName should be blank for CollectPCDAtion!");\r
2392 }\r
2393\r
2394 if(fpdFilePath.length() == 0 || workspacePath.length() == 0) {\r
2395 throw new EntityException("WorkspacePath and FPDFileName should be blank for CollectPCDAtion!");\r
2396 }\r
2397\r
2398 file = new File(workspacePath);\r
2399 if(!file.exists()) {\r
2400 throw new EntityException("WorkpacePath " + workspacePath + " does not exist!");\r
2401 }\r
2402\r
2403 file = new File(fpdFilePath);\r
2404\r
2405 if(!file.exists()) {\r
2406 throw new EntityException("FPD File " + fpdFilePath + " does not exist!");\r
2407 }\r
2408 }\r
2409\r
2410 /**\r
2411 Test case function\r
2412\r
2413 @param argv parameter from command line\r
2414 **/\r
2415 public static void main(String argv[]) throws EntityException {\r
2416 CollectPCDAction ca = new CollectPCDAction();\r
2417 ca.setWorkspacePath("m:/tianocore_latest/edk2");\r
2418 ca.setFPDFilePath("m:/tianocore_latest/edk2/EdkNt32Pkg/Nt32.fpd");\r
2419 ca.setActionMessageLevel(ActionMessage.MAX_MESSAGE_LEVEL);\r
2420 GlobalData.initInfo("Tools" + File.separator + "Conf" + File.separator + "FrameworkDatabase.db",\r
2421 "m:/tianocore_latest/edk2");\r
2422 ca.execute();\r
2423 }\r
2424}\r