]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/PcdTools/org/tianocore/pcd/entity/UsageInstance.java
Fix track EDKT213: PCD value size should be specificed when generate const variable...
[mirror_edk2.git] / Tools / Source / PcdTools / org / tianocore / pcd / entity / UsageInstance.java
1 /** @file
2 UsageInstance class.
3
4 This class indicate an usage instance for a PCD token. This instance maybe a module
5 or platform setting. When a module produce or cosume a PCD token, then this module
6 is an usage instance for this PCD token.
7
8 Copyright (c) 2006, Intel Corporation
9 All rights reserved. This program and the accompanying materials
10 are licensed and made available under the terms and conditions of the BSD License
11 which accompanies this distribution. The full text of the license may be found at
12 http://opensource.org/licenses/bsd-license.php
13
14 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16
17 **/
18 package org.tianocore.pcd.entity;
19
20 import org.tianocore.pcd.entity.CommonDefinition;
21 import org.tianocore.pcd.entity.UsageIdentification;
22
23 /**
24 This class indicate an usage instance for a PCD token. This instance maybe a module
25 or platform setting. When a module produce or cosume a PCD token, then this module
26 is an usage instance for this PCD token.
27 **/
28 public class UsageInstance {
29 ///
30 /// This parent that this usage instance belongs to.
31 ///
32 public Token parentToken;
33
34 ///
35 /// ModuleIdentification for Usage Instance
36 ///
37 public UsageIdentification usageId;
38
39 ///
40 /// Arch also is a key for a UsageInstance
41 ///
42 public String arch;
43
44 ///
45 /// The PCD type defined for module
46 ///
47 public Token.PCD_TYPE modulePcdType;
48
49 ///
50 /// The value of the PCD in this usage instance.
51 ///
52 public String datum;
53
54 ///
55 /// The maxDatumSize could be different for same PCD in different module
56 /// But this case is allow for FeatureFlag, FixedAtBuild, PatchableInModule
57 /// type.
58 ///
59 public int maxDatumSize;
60
61 ///
62 /// Autogen string for header file.
63 ///
64 public String hAutogenStr;
65
66 ///
67 /// Auotgen string for C code file.
68 ///
69 public String cAutogenStr;
70
71 /**
72 Constructure function for UsageInstance
73
74 @param parentToken The token instance for this usgaInstance
75 @param usageId The identification for usage instance
76 @param modulePcdType The PCD type for this usage instance
77 @param value The value of this PCD in this usage instance
78 @param maxDatumSize The max datum size of this PCD in this usage
79 instance.
80 **/
81 public UsageInstance(Token parentToken,
82 UsageIdentification usageId,
83 Token.PCD_TYPE modulePcdType,
84 String value,
85 int maxDatumSize) {
86 this.parentToken = parentToken;
87 this.usageId = usageId;
88 this.modulePcdType = modulePcdType;
89 this.datum = value;
90 this.maxDatumSize = maxDatumSize;
91 }
92
93 /**
94 Get the primary key for usage instance array for every token.
95
96 @param usageId The identification of UsageInstance
97
98 @retval String The primary key for this usage instance
99 **/
100 public static String getPrimaryKey(UsageIdentification usageId) {
101 return usageId.toString();
102 }
103
104 /**
105 Get primary key string for this usage instance
106
107 @return String primary key string
108 **/
109 public String getPrimaryKey() {
110 return UsageInstance.getPrimaryKey(usageId);
111 }
112
113 /**
114 Judget whether current module is PEI driver
115
116 @return boolean whether current module is PEI driver
117 **/
118 public boolean isPeiPhaseComponent() {
119 int moduleType = CommonDefinition.getModuleType(usageId.moduleType);
120
121 if ((moduleType == CommonDefinition.ModuleTypePeiCore) ||
122 (moduleType == CommonDefinition.ModuleTypePeim)) {
123 return true;
124 }
125 return false;
126 }
127
128 /**
129 Judge whether current module is DXE driver.
130
131 @return boolean whether current module is DXE driver
132 **/
133 public boolean isDxePhaseComponent() {
134 int moduleType = CommonDefinition.getModuleType(usageId.moduleType);
135
136 if ((moduleType == CommonDefinition.ModuleTypeDxeDriver) ||
137 (moduleType == CommonDefinition.ModuleTypeDxeRuntimeDriver) ||
138 (moduleType == CommonDefinition.ModuleTypeDxeSalDriver) ||
139 (moduleType == CommonDefinition.ModuleTypeDxeSmmDriver) ||
140 (moduleType == CommonDefinition.ModuleTypeUefiDriver) ||
141 (moduleType == CommonDefinition.ModuleTypeUefiApplication)
142 ) {
143 return true;
144 }
145 return false;
146 }
147
148 /**
149 Generate autogen string for header file and C code file.
150
151 @param isBuildUsedLibrary whether the autogen is for library.
152 **/
153 public void generateAutoGen(boolean isBuildUsedLibrary) {
154 String guidStringCName = null;
155 boolean isByteArray = false;
156 String printDatum = null;
157 String tokenNumberString = null;
158
159 hAutogenStr = "";
160 cAutogenStr = "";
161
162 if (this.modulePcdType == Token.PCD_TYPE.DYNAMIC_EX) {
163 //
164 // For DYNAMIC_EX type PCD, use original token number in SPD or FPD to generate autogen
165 //
166 tokenNumberString = Long.toString(parentToken.dynamicExTokenNumber, 16);
167 } else {
168 //
169 // For Others type PCD, use autogenerated token number to generate autogen
170 //
171 tokenNumberString = Long.toString(parentToken.tokenNumber, 16);
172 }
173
174 hAutogenStr += String.format("#define _PCD_TOKEN_%s 0x%s\r\n", parentToken.cName, tokenNumberString);
175
176 //
177 // Judge the value of this PCD is byte array type
178 //
179 if (!isBuildUsedLibrary && !parentToken.isDynamicPCD) {
180 if (datum.trim().charAt(0) == '{') {
181 isByteArray = true;
182 }
183 }
184
185 //
186 // "ULL" should be added to value's tail for UINT64 value
187 //
188 if (parentToken.datumType == Token.DATUM_TYPE.UINT64) {
189 printDatum = this.datum + "ULL";
190 } else {
191 printDatum = this.datum;
192 }
193
194 switch (modulePcdType) {
195 case FEATURE_FLAG:
196 //
197 // Example autogen string for following generation:
198 // "extern const BOOLEAN _gPcd_FixedAtBuild_PcdSampleToken";
199 //
200 hAutogenStr += String.format("extern const BOOLEAN _gPcd_FixedAtBuild_%s;\r\n",
201 parentToken.cName);
202 //
203 // Example autogen string for following generation:
204 // "#define _PCD_GET_MODE_8_PcdSampleToken _gPcd_FixedAtBuild_PcdSampleToken";
205 //
206 hAutogenStr += String.format("#define _PCD_GET_MODE_%s_%s _gPcd_FixedAtBuild_%s\r\n",
207 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
208 parentToken.cName,
209 parentToken.cName);
210 //
211 // Example autogen string for following generation:
212 // "//#define _PCD_SET_MODE_8_PcdSampleToken ASSERT(FALSE) If is not allowed to set value...";
213 //
214 hAutogenStr += String.format("//#define _PCD_SET_MODE_%s_%s ASSERT(FALSE) If is not allowed to set value for a FEATURE_FLAG PCD\r\n",
215 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
216 parentToken.cName);
217
218 if (!isBuildUsedLibrary) {
219 //
220 // Example autogen string for following generation:
221 // "#define _PCD_VALUE_PcdSampleToken 0x1000"
222 //
223 hAutogenStr += String.format("#define _PCD_VALUE_%s %s\r\n",
224 parentToken.cName,
225 printDatum);
226 //
227 // Example autogen string for following generation:
228 // "GLOBAL_REMOVE_IF_UNREFERENCED const BOOLEAN _gPcd_FixedAtBuild_PcdSampleToken = _PCD_VALUE_PcdSampleToken;"
229 //
230 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED const BOOLEAN _gPcd_FixedAtBuild_%s = _PCD_VALUE_%s;\r\n",
231 parentToken.cName,
232 parentToken.cName);
233 }
234 break;
235 case FIXED_AT_BUILD:
236 if (isByteArray) {
237 //
238 // Example autogen string for following generation:
239 // "extern const BOOLEAN _gPcd_FixedAtBuild_PcdSampleToken";
240 //
241 hAutogenStr += String.format("extern const UINT8 _gPcd_FixedAtBuild_%s[];\r\n",
242 parentToken.cName);
243 //
244 // Example autogen string for following generation:
245 // "#define _PCD_GET_MODE_8_PcdSampleToken (VOID*)_gPcd_FixedAtBuild_PcdSampleToken";
246 //
247 hAutogenStr += String.format("#define _PCD_GET_MODE_%s_%s (VOID*)_gPcd_FixedAtBuild_%s\r\n",
248 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
249 parentToken.cName,
250 parentToken.cName);
251 } else {
252 //
253 // Example autogen string for following generation:
254 // "extern const UINT8 _gPcd_FixedAtBuild_PcdSampleToken";
255 //
256 hAutogenStr += String.format("extern const %s _gPcd_FixedAtBuild_%s;\r\n",
257 Token.getAutogendatumTypeString(parentToken.datumType),
258 parentToken.cName);
259 //
260 // Example autogen string for following generation:
261 // "#define _PCD_GET_MODE_8_PcdSampleToken _gPcd_FixedAtBuild_PcdSampleToken";
262 //
263 hAutogenStr += String.format("#define _PCD_GET_MODE_%s_%s _gPcd_FixedAtBuild_%s\r\n",
264 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
265 parentToken.cName,
266 parentToken.cName);
267 }
268
269 //
270 // Example autogen string for following generation:
271 // "//#define _PCD_SET_MODE_8_PcdSampleToken ASSERT(FALSE) If is not allowed to set value...";
272 //
273 hAutogenStr += String.format("//#define _PCD_SET_MODE_%s_%s ASSERT(FALSE) // It is not allowed to set value for a FIXED_AT_BUILD PCD\r\n",
274 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
275 parentToken.cName);
276 if (!isBuildUsedLibrary) {
277 if (parentToken.datumType == Token.DATUM_TYPE.POINTER) {
278 if (isByteArray) {
279 //
280 // Example autogen string for following generation:
281 // "#define _PCD_VALUE_PcdSampleToken (VOID*)_gPcd_FixedAtBuild_PcdSampleToken"
282 //
283 hAutogenStr += String.format("#define _PCD_VALUE_%s (VOID*)_gPcd_FixedAtBuild_%s\r\n",
284 parentToken.cName,
285 parentToken.cName);
286 //
287 // Example autogen string for following generation:
288 // "GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 _gPcd_FixedAtBuild_PcdSampleToken[] = 'dfdf';"
289 //
290 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 _gPcd_FixedAtBuild_%s[] = %s;\r\n",
291 parentToken.cName,
292 printDatum);
293 } else {
294 //
295 // Example autogen string for following generation:
296 // "#define _PCD_VALUE_PcdSampleToken 0x222"
297 //
298 hAutogenStr += String.format("#define _PCD_VALUE_%s %s\r\n",
299 parentToken.cName,
300 printDatum);
301 //
302 // Example autogen string for following generation:
303 // "GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 _gPcd_FixedAtBuild_PcdSampleToken[] = _PCD_VALUE_PcdSampleToken;"
304 //
305 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED const %s _gPcd_FixedAtBuild_%s = _PCD_VALUE_%s;\r\n",
306 Token.getAutogendatumTypeString(parentToken.datumType),
307 parentToken.cName,
308 parentToken.cName);
309 }
310 } else {
311 //
312 // Example autogen string for following generation:
313 // "#define _PCD_VALUE_PcdSampleToken 0x222"
314 //
315 hAutogenStr += String.format("#define _PCD_VALUE_%s %s\r\n",
316 parentToken.cName,
317 printDatum);
318 //
319 // Example autogen string for following generation:
320 // "GLOBAL_REMOVE_IF_UNREFERENCED const UINT8 _gPcd_FixedAtBuild_PcdSampleToken[] = _PCD_VALUE_PcdSampleToken;"
321 //
322 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED const %s _gPcd_FixedAtBuild_%s = _PCD_VALUE_%s;\r\n",
323 Token.getAutogendatumTypeString(parentToken.datumType),
324 parentToken.cName,
325 parentToken.cName);
326 }
327 }
328 break;
329 case PATCHABLE_IN_MODULE:
330 if (parentToken.datumType == Token.DATUM_TYPE.POINTER) {
331 //
332 // Example autogen string for following generation:
333 // "extern UINT8 _gPcd_BinaryPatch_PcdSampleToken[];"
334 //
335 hAutogenStr += String.format("extern UINT8 _gPcd_BinaryPatch_%s[];\r\n",
336 parentToken.cName);
337 //
338 // Example autogen string for following generation:
339 // "#define _PCD_GET_MODE_8_PcdSampleToken (VOID*)_gPcd_BinaryPatch_PcdSampleToken"
340 //
341 hAutogenStr += String.format("#define _PCD_GET_MODE_%s_%s (VOID*)_gPcd_BinaryPatch_%s\r\n",
342 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
343 parentToken.cName,
344 parentToken.cName);
345 //
346 // Example autogen string for following generation:
347 // "#define _PCD_SET_MODE_8_PcdSampleToken(SizeOfBuffer, Buffer) CopyMem (_gPcd_BinaryPatch_PcdSampleToken, (Buffer), (SizeOfBuffer))"
348 //
349 hAutogenStr += String.format("#define _PCD_PATCHABLE_%s_SIZE %d\r\n",
350 parentToken.cName,
351 parentToken.datumSize);
352 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(SizeOfBuffer, Buffer) "+
353 "LibPatchPcdSetPtr (_gPcd_BinaryPatch_%s, (UINTN)_PCD_PATCHABLE_%s_SIZE, "+
354 "(SizeOfBuffer), (Buffer))\r\n",
355 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
356 parentToken.cName,
357 parentToken.cName,
358 parentToken.cName);
359
360 } else {
361 //
362 // Example autogen string for following generation:
363 // "extern UINT8 _gPcd_BinaryPatch_PcdSampleToken;"
364 //
365 hAutogenStr += String.format("extern %s _gPcd_BinaryPatch_%s;\r\n",
366 Token.getAutogendatumTypeString(parentToken.datumType),
367 parentToken.cName);
368 //
369 // Example autogen string for following generation:
370 // "#define _PCD_GET_MODE_8_PcdSampleToken _gPcd_BinaryPatch_PcdSampleToken"
371 //
372 hAutogenStr += String.format("#define _PCD_GET_MODE_%s_%s _gPcd_BinaryPatch_%s\r\n",
373 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
374 parentToken.cName,
375 parentToken.cName);
376 //
377 // Example autogen string for following generation:
378 // "#define _PCD_SET_MODE_8_PcdSampleToken(Value) (_gPcd_BinaryPatch_PcdSampleToken = (Value))"
379 //
380 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(Value) (_gPcd_BinaryPatch_%s = (Value))\r\n",
381 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
382 parentToken.cName,
383 parentToken.cName);
384 }
385
386 if (!isBuildUsedLibrary) {
387 if (parentToken.datumType == Token.DATUM_TYPE.POINTER) {
388 printDatum = parentToken.getByteArrayForPointerDatum(printDatum);
389 }
390 //
391 // Example autogen string for following generation:
392 // "#define _PCD_VALUE_PcdSampleToken 0x111"
393 //
394 hAutogenStr += String.format("#define _PCD_VALUE_%s %s\r\n",
395 parentToken.cName,
396 printDatum);
397 if (parentToken.datumType == Token.DATUM_TYPE.POINTER) {
398 //
399 // Example autogen string for following generation:
400 // "GLOBAL_REMOVE_IF_UNREFERENCED UINT8 _gPcd_BinaryPatch_PcdSampleToken[] = _PCD_VALUE_PcdSampleToken;"
401 //
402 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED UINT8 _gPcd_BinaryPatch_%s[%d] = _PCD_VALUE_%s;\r\n",
403 parentToken.cName,
404 parentToken.datumSize,
405 parentToken.cName);
406 } else {
407 //
408 // Example autogen string for following generation:
409 // "GLOBAL_REMOVE_IF_UNREFERENCED UINT8 _gPcd_BinaryPatch_PcdSampleToken[] = _PCD_VALUE_PcdSampleToken;"
410 //
411 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED %s _gPcd_BinaryPatch_%s = _PCD_VALUE_%s;\r\n",
412 Token.getAutogendatumTypeString(parentToken.datumType),
413 parentToken.cName,
414 parentToken.cName);
415 }
416 }
417
418 break;
419 case DYNAMIC:
420 //
421 // Example autogen string for following generation:
422 // "#define _PCD_GET_MODE_8_PcdSampleToken LibPcdGet%s(_PCD_TOKEN_PcdSampleToken)"
423 //
424 hAutogenStr += String.format("#define _PCD_GET_MODE_%s_%s LibPcdGet%s(_PCD_TOKEN_%s)\r\n",
425 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
426 parentToken.cName,
427 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
428 parentToken.cName);
429 if (parentToken.datumType == Token.DATUM_TYPE.POINTER) {
430 //
431 // Example autogen string for following generation:
432 // "#define _PCD_SET_MODE_8_PcdSampleToken(SizeOfBuffer, Buffer) LibPcdSet%s(_PCD_TOKEN_PcdSampleToken, (SizeOfBuffer), (Buffer))"
433 //
434 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(SizeOfBuffer, Buffer) LibPcdSet%s(_PCD_TOKEN_%s, (SizeOfBuffer), (Buffer))\r\n",
435 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
436 parentToken.cName,
437 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
438 parentToken.cName);
439 } else {
440 //
441 // Example autogen string for following generation:
442 // "#define _PCD_SET_MODE_8_PcdSampleToken(Value) LibPcdSet%s(_PCD_TOKEN_PcdSampleToken, (Value))"
443 //
444 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(Value) LibPcdSet%s(_PCD_TOKEN_%s, (Value))\r\n",
445 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
446 parentToken.cName,
447 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
448 parentToken.cName);
449 }
450 break;
451 case DYNAMIC_EX:
452 guidStringCName = "_gPcd_TokenSpaceGuid_" +
453 parentToken.tokenSpaceName.toString().replaceAll("-", "_");
454
455 //
456 // Example autogen string for following generation:
457 // "#define _PCD_GET_MODE_8_PcdSampleToken LibPcdGetEx%s(&_gPcd_TokenSpaceGuid_00_00_00, _PCD_TOKEN_PcdSampleToken)"
458 //
459 hAutogenStr += String.format("#define _PCD_GET_MODE_%s_%s LibPcdGetEx%s(&%s, _PCD_TOKEN_%s)\r\n",
460 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
461 parentToken.cName,
462 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
463 guidStringCName,
464 parentToken.cName);
465
466 if (parentToken.datumType == Token.DATUM_TYPE.POINTER) {
467 //
468 // Example autogen string for following generation:
469 // "#define _PCD_SET_MODE_8_PcdSampleToken(SizeOfBuffer, Buffer) LibPcdSetEx%s(&_gPcd_TokenSpaceGuid_00_00_00, _PCD_TOKEN_PcdSampleToken, (SizeOfBuffer), (Buffer))"
470 //
471 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(SizeOfBuffer, Buffer) LibPcdSetEx%s(&%s, _PCD_TOKEN_%s, (SizeOfBuffer), (Buffer))\r\n",
472 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
473 parentToken.cName,
474 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
475 guidStringCName,
476 parentToken.cName);
477 } else {
478 //
479 // Example autogen string for following generation:
480 // "#define _PCD_SET_MODE_8_PcdSampleToken(Value) LibPcdSetEx%s(&_gPcd_TokenSpaceGuid_00_00_00, _PCD_TOKEN_PcdSampleToken, (Value))"
481 //
482 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(Value) LibPcdSetEx%s(&%s, _PCD_TOKEN_%s, (Value))\r\n",
483 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
484 parentToken.cName,
485 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
486 guidStringCName,
487 parentToken.cName);
488
489 }
490 break;
491 }
492 }
493
494 /**
495 Get the autogen string for header file.
496
497 @return The string of header file.
498 **/
499 public String getHAutogenStr() {
500 return hAutogenStr;
501 }
502
503 /**
504 Get the autogen string for C code file.
505
506 @return The string of C Code file.
507 **/
508 public String getCAutogenStr() {
509 return cAutogenStr;
510 }
511 }
512