]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/GenBuild/org/tianocore/build/pcd/entity/UsageInstance.java
378f26f4b0af0fd79305c3f9b5477ca28ca586b5
[mirror_edk2.git] / Tools / Source / GenBuild / org / tianocore / build / 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.build.pcd.entity;
19
20
21 import java.util.UUID;
22
23 import org.tianocore.build.autogen.CommonDefinition;
24 import org.tianocore.build.pcd.action.ActionMessage;
25 import org.tianocore.build.pcd.exception.EntityException;
26
27 /**
28 This class indicate an usage instance for a PCD token. This instance maybe a module
29 or platform setting. When a module produce or cosume a PCD token, then this module
30 is an usage instance for this PCD token.
31 **/
32 public class UsageInstance {
33 ///
34 /// The module type of usage instance.
35 ///
36 public enum MODULE_TYPE {SEC, PEI_CORE, PEIM, DXE_CORE, DXE_DRIVERS, OTHER_COMPONENTS}
37
38 ///
39 /// This parent that this usage instance belongs to.
40 ///
41 public Token parentToken;
42
43 ///
44 /// The name of the module who contains this PCD.
45 ///
46 public String moduleName;
47
48 ///
49 /// The GUID of the module who contains this PCD.
50 ///
51 public UUID moduleGUID;
52
53 ///
54 /// The name of the package whose module contains this PCD.
55 ///
56 public String packageName;
57
58 ///
59 /// The GUID of the package whose module contains this PCD.
60 ///
61 public UUID packageGUID;
62
63 ///
64 /// The PCD type defined for module
65 ///
66 public Token.PCD_TYPE modulePcdType;
67
68 ///
69 /// The arch string of module contains this PCD
70 ///
71 public String arch;
72
73 ///
74 /// The version of module contains this PCD
75 ///
76 public String version;
77
78 ///
79 /// The module type for this usage instance.
80 ///
81 public MODULE_TYPE moduleType;
82
83 ///
84 /// The value of the PCD in this usage instance.
85 ///
86 public String datum;
87
88 ///
89 /// The maxDatumSize could be different for same PCD in different module
90 /// But this case is allow for FeatureFlag, FixedAtBuild, PatchableInModule
91 /// type.
92 ///
93 public int maxDatumSize;
94
95 ///
96 /// Autogen string for header file.
97 ///
98 public String hAutogenStr;
99
100 ///
101 /// Auotgen string for C code file.
102 ///
103 public String cAutogenStr;
104
105 /**
106 Constructure function
107
108 @param parentToken Member variable.
109 @param moduleName Member variable.
110 @param moduleGUID Member variable.
111 @param packageName Member variable.
112 @param packageGUID Member variable.
113 @param moduleType Member variable.
114 @param modulePcdType Member variable.
115 @param arch Member variable.
116 @param version Member variable.
117 @param value Member variable.
118 @param maxDatumSize Member variable.
119 */
120 public UsageInstance (Token parentToken,
121 String moduleName,
122 UUID moduleGUID,
123 String packageName,
124 UUID packageGUID,
125 MODULE_TYPE moduleType,
126 Token.PCD_TYPE modulePcdType,
127 String arch,
128 String version,
129 String value,
130 int maxDatumSize) {
131 this.parentToken = parentToken;
132 this.moduleName = moduleName;
133 this.moduleGUID = moduleGUID;
134 this.packageName = packageName;
135 this.packageGUID = packageGUID;
136 this.moduleType = moduleType;
137 this.modulePcdType = modulePcdType;
138 this.arch = arch;
139 this.version = version;
140 this.datum = value;
141 this.maxDatumSize = maxDatumSize;
142 }
143
144 /**
145 Get the primary key for usage instance array for every token.
146
147 @param moduleName the name of module
148 @param moduleGUID the GUID name of module
149 @param packageName the name of package who contains this module
150 @param packageGUID the GUID name of package
151 @param arch the archtecture string
152 @param version the version of this module
153
154 @return String primary key
155 */
156 public static String getPrimaryKey(String moduleName,
157 UUID moduleGUID,
158 String packageName,
159 UUID packageGUID,
160 String arch,
161 String version) {
162 //
163 // Because currently transition schema not require write moduleGuid, package Name, Packge GUID in
164 // <ModuleSA> section, So currently no expect all paramter must be valid.
165 return (moduleName + "_" +
166 ((moduleGUID != null) ? moduleGUID.toString() : "NullModuleGuid") + "_" +
167 ((packageName != null) ? packageName : "NullPackageName") + "_" +
168 ((packageGUID != null) ? packageGUID.toString() : "NullPackageGuid") + "_" +
169 ((arch != null) ? arch : "NullArch") + "_" +
170 ((version != null) ? version : "NullVersion"));
171 }
172
173 /**
174 Get primary key string for this usage instance
175
176 @return String primary key string
177 **/
178 public String getPrimaryKey() {
179 return UsageInstance.getPrimaryKey(moduleName, moduleGUID, packageName, packageGUID, arch, version);
180 }
181
182 /**
183 Judget whether current module is PEI driver
184
185 @return boolean
186 */
187 public boolean isPeiPhaseComponent() {
188 if ((moduleType == MODULE_TYPE.PEI_CORE) ||
189 (moduleType == MODULE_TYPE.PEIM)) {
190 return true;
191 }
192 return false;
193 }
194
195 /**
196 Generate autogen string for header file and C code file.
197
198 @throws EntityException Fail to generate.
199
200 @param isBuildUsedLibrary whether the autogen is for library.
201 */
202 public void generateAutoGen(boolean isBuildUsedLibrary)
203 throws EntityException {
204
205 hAutogenStr = "";
206 cAutogenStr = "";
207
208 hAutogenStr += String.format("#define _PCD_TOKEN_%s 0x%016x\r\n",
209 parentToken.cName, parentToken.tokenNumber);
210 switch(modulePcdType) {
211 case FEATURE_FLAG:
212 if(isBuildUsedLibrary) {
213 hAutogenStr += String.format("extern const BOOLEAN _gPcd_FixedAtBuild_%s;\r\n",
214 parentToken.cName);
215 hAutogenStr += String.format("#define _PCD_MODE_%s_%s _gPcd_FixedAtBuild_%s\r\n",
216 parentToken.GetAutogenDefinedatumTypeString(parentToken.datumType),
217 parentToken.cName,
218 parentToken.cName);
219 } else {
220 hAutogenStr += String.format("#define _PCD_VALUE_%s %s\r\n",
221 parentToken.cName,
222 datum.toString());
223 hAutogenStr += String.format("extern const BOOLEAN _gPcd_FixedAtBuild_%s;\r\n",
224 parentToken.cName);
225 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED const BOOLEAN _gPcd_FixedAtBuild_%s = _PCD_VALUE_%s;\r\n",
226 parentToken.cName,
227 parentToken.cName);
228 hAutogenStr += String.format("#define _PCD_MODE_%s_%s _PCD_VALUE_%s\r\n",
229 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
230 parentToken.cName,
231 parentToken.cName);
232 }
233 break;
234 case FIXED_AT_BUILD:
235 if(isBuildUsedLibrary) {
236 hAutogenStr += String.format("extern const %s _gPcd_FixedAtBuild_%s;\r\n",
237 Token.getAutogendatumTypeString(parentToken.datumType),
238 parentToken.cName);
239 hAutogenStr += String.format("#define _PCD_MODE_%s_%s _gPcd_FixedAtBuild_%s\r\n",
240 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
241 parentToken.cName,
242 parentToken.cName);
243 } else {
244 hAutogenStr += String.format("#define _PCD_VALUE_%s %s\r\n",
245 parentToken.cName,
246 datum.toString());
247 hAutogenStr += String.format("extern const %s _gPcd_FixedAtBuild_%s;\r\n",
248 Token.getAutogendatumTypeString(parentToken.datumType),
249 parentToken.cName);
250 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED const %s _gPcd_FixedAtBuild_%s = _PCD_VALUE_%s;\r\n",
251 Token.getAutogendatumTypeString(parentToken.datumType),
252 parentToken.cName,
253 parentToken.cName);
254 hAutogenStr += String.format("#define _PCD_MODE_%s_%s _PCD_VALUE_%s\r\n",
255 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
256 parentToken.cName,
257 parentToken.cName);
258 }
259 break;
260 case PATCHABLE_IN_MODULE:
261 if(isBuildUsedLibrary) {
262 hAutogenStr += String.format("extern %s _gPcd_BinaryPatch_%s;\r\n",
263 Token.getAutogendatumTypeString(parentToken.datumType),
264 parentToken.cName);
265 hAutogenStr += String.format("#define _PCD_MODE_%s_%s _gPcd_BinaryPatch_%s\r\n",
266 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
267 parentToken.cName,
268 parentToken.cName);
269 } else {
270 hAutogenStr += String.format("#define _PCD_VALUE_%s %s\r\n",
271 parentToken.cName,
272 datum.toString());
273 hAutogenStr += String.format("extern %s _gPcd_BinaryPatch_%s;\r\n",
274 Token.getAutogendatumTypeString(parentToken.datumType),
275 parentToken.cName);
276 cAutogenStr += String.format("GLOBAL_REMOVE_IF_UNREFERENCED %s _gPcd_BinaryPatch_%s = _PCD_VALUE_%s;\r\n",
277 Token.getAutogendatumTypeString(parentToken.datumType),
278 parentToken.cName,
279 parentToken.cName);
280 hAutogenStr += String.format("#define _PCD_MODE_%s_%s _gPcd_BinaryPatch_%s\r\n",
281 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
282 parentToken.cName,
283 parentToken.cName);
284 }
285
286 break;
287 case DYNAMIC:
288 hAutogenStr += String.format("#define _PCD_MODE_%s_%s LibPcdGet%s(_PCD_TOKEN_%s)\r\n",
289 Token.GetAutogenDefinedatumTypeString(parentToken.datumType),
290 parentToken.cName,
291 Token.getAutogenLibrarydatumTypeString(parentToken.datumType),
292 parentToken.cName);
293 break;
294 case DYNAMIC_EX:
295 break;
296 }
297 }
298
299 /**
300 Get the autogen string for header file.
301
302 @return The string of header file.
303 **/
304 public String getHAutogenStr() {
305 return hAutogenStr;
306 }
307
308 /**
309 Get the autogen string for C code file.
310
311 @return The string of C Code file.
312 **/
313 public String getCAutogenStr() {
314 return cAutogenStr;
315 }
316 }
317