]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/PcdTools/org/tianocore/pcd/entity/UsageInstance.java
e38bc91aedb8eb4314a8b6ea2e37dfb5952985a8
[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 (isByteArray) {
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 } else {
346 //
347 // Example autogen string for following generation:
348 // "extern UINT8 _gPcd_BinaryPatch_PcdSampleToken;"
349 //
350 hAutogenStr += String.format("extern %s _gPcd_BinaryPatch_%s;\r\n",
351 Token.getAutogendatumTypeString(parentToken.datumType),
352 parentToken.cName);
353 //
354 // Example autogen string for following generation:
355 // "#define _PCD_GET_MODE_8_PcdSampleToken _gPcd_BinaryPatch_PcdSampleToken"
356 //
357 hAutogenStr += String.format("#define _PCD_GET_MODE_%s_%s _gPcd_BinaryPatch_%s\r\n",
358 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
359 parentToken.cName,
360 parentToken.cName);
361 }
362
363 //
364 // Generate _PCD_SET_MODE_xx macro for using set BinaryPatch value via PcdSet macro
365 //
366 if (parentToken.datumType == Token.DATUM_TYPE.POINTER) {
367 //
368 // Example autogen string for following generation:
369 // "#define _PCD_SET_MODE_8_PcdSampleToken(SizeOfBuffer, Buffer) CopyMem (_gPcd_BinaryPatch_PcdSampleToken, (Buffer), (SizeOfBuffer))"
370 //
371 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(SizeOfBuffer, Buffer) CopyMem (_gPcd_BinaryPatch_%s, (Buffer), (SizeOfBuffer))\r\n",
372 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
373 parentToken.cName,
374 parentToken.cName);
375 } else {
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 //
388 // Example autogen string for following generation:
389 // "#define _PCD_VALUE_PcdSampleToken 0x111"
390 //
391 hAutogenStr += String.format("#define _PCD_VALUE_%s %s\r\n",
392 parentToken.cName,
393 printDatum);
394 if (isByteArray) {
395 //
396 // Example autogen string for following generation:
397 // "GLOBAL_REMOVE_IF_UNREFERENCED UINT8 _gPcd_BinaryPatch_PcdSampleToken[] = _PCD_VALUE_PcdSampleToken;"
398 //
399 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED UINT8 _gPcd_BinaryPatch_%s[] = _PCD_VALUE_%s;\r\n",
400 parentToken.cName,
401 parentToken.cName);
402 } else {
403 //
404 // Example autogen string for following generation:
405 // "GLOBAL_REMOVE_IF_UNREFERENCED UINT8 _gPcd_BinaryPatch_PcdSampleToken[] = _PCD_VALUE_PcdSampleToken;"
406 //
407 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED %s _gPcd_BinaryPatch_%s = _PCD_VALUE_%s;\r\n",
408 Token.getAutogendatumTypeString(parentToken.datumType),
409 parentToken.cName,
410 parentToken.cName);
411 }
412 }
413
414 break;
415 case DYNAMIC:
416 //
417 // Example autogen string for following generation:
418 // "#define _PCD_GET_MODE_8_PcdSampleToken LibPcdGet%s(_PCD_TOKEN_PcdSampleToken)"
419 //
420 hAutogenStr += String.format("#define _PCD_GET_MODE_%s_%s LibPcdGet%s(_PCD_TOKEN_%s)\r\n",
421 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
422 parentToken.cName,
423 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
424 parentToken.cName);
425 if (parentToken.datumType == Token.DATUM_TYPE.POINTER) {
426 //
427 // Example autogen string for following generation:
428 // "#define _PCD_SET_MODE_8_PcdSampleToken(SizeOfBuffer, Buffer) LibPcdSet%s(_PCD_TOKEN_PcdSampleToken, (SizeOfBuffer), (Buffer))"
429 //
430 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(SizeOfBuffer, Buffer) LibPcdSet%s(_PCD_TOKEN_%s, (SizeOfBuffer), (Buffer))\r\n",
431 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
432 parentToken.cName,
433 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
434 parentToken.cName);
435 } else {
436 //
437 // Example autogen string for following generation:
438 // "#define _PCD_SET_MODE_8_PcdSampleToken(Value) LibPcdSet%s(_PCD_TOKEN_PcdSampleToken, (Value))"
439 //
440 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(Value) LibPcdSet%s(_PCD_TOKEN_%s, (Value))\r\n",
441 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
442 parentToken.cName,
443 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
444 parentToken.cName);
445 }
446 break;
447 case DYNAMIC_EX:
448 guidStringCName = "_gPcd_TokenSpaceGuid_" +
449 parentToken.tokenSpaceName.toString().replaceAll("-", "_");
450
451 //
452 // Example autogen string for following generation:
453 // "#define _PCD_GET_MODE_8_PcdSampleToken LibPcdGetEx%s(&_gPcd_TokenSpaceGuid_00_00_00, _PCD_TOKEN_PcdSampleToken)"
454 //
455 hAutogenStr += String.format("#define _PCD_GET_MODE_%s_%s LibPcdGetEx%s(&%s, _PCD_TOKEN_%s)\r\n",
456 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
457 parentToken.cName,
458 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
459 guidStringCName,
460 parentToken.cName);
461
462 if (parentToken.datumType == Token.DATUM_TYPE.POINTER) {
463 //
464 // Example autogen string for following generation:
465 // "#define _PCD_SET_MODE_8_PcdSampleToken(SizeOfBuffer, Buffer) LibPcdSetEx%s(&_gPcd_TokenSpaceGuid_00_00_00, _PCD_TOKEN_PcdSampleToken, (SizeOfBuffer), (Buffer))"
466 //
467 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(SizeOfBuffer, Buffer) LibPcdSetEx%s(&%s, _PCD_TOKEN_%s, (SizeOfBuffer), (Buffer))\r\n",
468 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
469 parentToken.cName,
470 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
471 guidStringCName,
472 parentToken.cName);
473 } else {
474 //
475 // Example autogen string for following generation:
476 // "#define _PCD_SET_MODE_8_PcdSampleToken(Value) LibPcdSetEx%s(&_gPcd_TokenSpaceGuid_00_00_00, _PCD_TOKEN_PcdSampleToken, (Value))"
477 //
478 hAutogenStr += String.format("#define _PCD_SET_MODE_%s_%s(Value) LibPcdSetEx%s(&%s, _PCD_TOKEN_%s, (Value))\r\n",
479 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
480 parentToken.cName,
481 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
482 guidStringCName,
483 parentToken.cName);
484
485 }
486 break;
487 }
488 }
489
490 /**
491 Get the autogen string for header file.
492
493 @return The string of header file.
494 **/
495 public String getHAutogenStr() {
496 return hAutogenStr;
497 }
498
499 /**
500 Get the autogen string for C code file.
501
502 @return The string of C Code file.
503 **/
504 public String getCAutogenStr() {
505 return cAutogenStr;
506 }
507 }
508