]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Library/HiiLib.h
38e1e50f7e46079b90de64987cf0687e63043e78
[mirror_edk2.git] / MdePkg / Include / Library / HiiLib.h
1 /** @file
2 Public include file for the HII Library
3
4 Copyright (c) 2007 - 2008, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef __HII_LIB_H__
16 #define __HII_LIB_H__
17
18 //
19 // Limited buffer size recommended by RFC4646 (4.3. Length Considerations)
20 // (42 characters plus a NULL terminator)
21 //
22 #define RFC_3066_ENTRY_SIZE (42 + 1)
23
24 #define ISO_639_2_ENTRY_SIZE 3
25
26 /**
27 Assemble EFI_HII_PACKAGE_LIST according to the passed in packages.
28
29 If GuidId is NULL, then ASSERT.
30 If not enough resource to complete the operation, then ASSERT.
31
32 @param NumberOfPackages Number of packages.
33 @param GuidId Package GUID.
34 @param ... Variable argument list for packages to be assembled.
35
36 @return EFI_HII_PACKAGE_LIST_HEADER Pointer of EFI_HII_PACKAGE_LIST_HEADER. The function will ASSERT if system has
37 not enough resource to complete the operation.
38
39 **/
40 EFI_HII_PACKAGE_LIST_HEADER *
41 EFIAPI
42 HiiLibPreparePackageList (
43 IN UINTN NumberOfPackages,
44 IN CONST EFI_GUID *GuidId,
45 ...
46 )
47 ;
48
49 /**
50 This function allocates pool for an EFI_HII_PACKAGE_LIST structure
51 with additional space that is big enough to host all packages described by the variable
52 argument list of package pointers. The allocated structure is initialized using NumberOfPackages,
53 GuidId, and the variable length argument list of package pointers.
54
55 Then, EFI_HII_PACKAGE_LIST will be register to the default System HII Database. The
56 Handle to the newly registered Package List is returned throught HiiHandle.
57
58 If HiiHandle is NULL, then ASSERT.
59
60 @param NumberOfPackages The number of HII packages to register.
61 @param GuidId Package List GUID ID.
62 @param EFI_HANDLE Optional. If not NULL, the DriverHandle on which an instance of DEVICE_PATH_PROTOCOL is installed.
63 This DriverHandle uniquely defines the device that the added packages are associated with.
64 @param HiiHandle On output, the HiiHandle is update with the handle which can be used to retrieve the Package
65 List later. If the functions failed to add the package to the default HII database, this value will
66 be set to NULL.
67 @param ... The variable argument list describing all HII Package.
68
69 @return EFI_SUCCESS If the packages are successfully added to the default HII database.
70 @return EFI_OUT_OF_RESOURCE Not enough resource to complete the operation.
71
72 **/
73 EFI_STATUS
74 EFIAPI
75 HiiLibAddPackages (
76 IN UINTN NumberOfPackages,
77 IN CONST EFI_GUID *GuidId,
78 IN EFI_HANDLE DriverHandle, OPTIONAL
79 OUT EFI_HII_HANDLE *HiiHandle,
80 ...
81 )
82 ;
83
84 /**
85 Removes a package list from the default HII database.
86
87 If HiiHandle is NULL, then ASSERT.
88 If HiiHandle is not a valid EFI_HII_HANDLE in the default HII database, then ASSERT.
89
90 @param HiiHandle The handle that was previously registered to the data base that is requested for removal.
91 List later.
92
93 @return VOID
94
95 **/
96 VOID
97 EFIAPI
98 HiiLibRemovePackages (
99 IN EFI_HII_HANDLE HiiHandle
100 )
101 ;
102
103 /**
104 This function adds the string into String Package of each language
105 supported by the package list.
106
107 If String is NULL, then ASSERT.
108 If StringId is NULL, the ASSERT.
109 If PackageList could not be found in the default HII database, then ASSERT.
110
111 @param PackageList Handle of the package list where this string will
112 be added.
113 @param StringId On return, contains the new strings id, which is
114 unique within PackageList.
115 @param String Points to the new null-terminated string.
116
117 @retval EFI_SUCCESS The new string was added successfully.
118 @retval EFI_OUT_OF_RESOURCES Could not add the string due to lack of resources.
119
120 **/
121 EFI_STATUS
122 EFIAPI
123 HiiLibNewString (
124 IN EFI_HII_HANDLE PackageList,
125 OUT EFI_STRING_ID *StringId,
126 IN CONST EFI_STRING String
127 )
128 ;
129
130 /**
131 This function update the specified string in String Package of each language
132 supported by the package list.
133
134 If String is NULL, then ASSERT.
135 If PackageList could not be found in the default HII database, then ASSERT.
136 If StringId is not found in PackageList, then ASSERT.
137
138 @param PackageList Handle of the package list where this string will
139 be added.
140 @param StringId Ths String Id to be updated.
141 @param String Points to the new null-terminated string.
142
143 @retval EFI_SUCCESS The new string was added successfully.
144 @retval EFI_OUT_OF_RESOURCES Could not add the string due to lack of resources.
145
146 **/
147 EFI_STATUS
148 EFIAPI
149 HiiLibSetString (
150 IN EFI_HII_HANDLE PackageList,
151 IN EFI_STRING_ID StringId,
152 IN CONST EFI_STRING String
153 )
154 ;
155
156 /**
157 This function try to retrieve string from String package of current language.
158 If fails, it try to retrieve string from String package of first language it support.
159
160 If String is NULL, then ASSERT.
161 If StringSize is NULL, then ASSERT.
162 If PackageList could not be found in the default HII database, then ASSERT.
163 If StringId is not found in PackageList, then ASSERT.
164
165 @param PackageList The package list in the HII database to search for
166 the specified string.
167 @param StringId The string's id, which is unique within
168 PackageList.
169 @param String Points to the new null-terminated string.
170 @param StringSize On entry, points to the size of the buffer pointed
171 to by String, in bytes. On return, points to the
172 length of the string, in bytes.
173
174 @retval EFI_SUCCESS The string was returned successfully.
175 @retval EFI_NOT_FOUND The string specified by StringId is not available.
176 @retval EFI_BUFFER_TOO_SMALL The buffer specified by StringLength is too small
177 to hold the string.
178 @retval EFI_INVALID_PARAMETER The String or StringSize was NULL.
179
180 **/
181
182 EFI_STATUS
183 EFIAPI
184 HiiLibGetString (
185 IN EFI_HII_HANDLE PackageList,
186 IN EFI_STRING_ID StringId,
187 OUT EFI_STRING String,
188 IN OUT UINTN *StringSize
189 )
190 ;
191
192 /**
193 Get string specified by StringId form the HiiHandle. The caller
194 is responsible to free the *String.
195
196 If String is NULL, then ASSERT.
197 If HiiHandle could not be found in the default HII database, then ASSERT.
198 If StringId is not found in PackageList, then ASSERT.
199
200 @param HiiHandle The HII handle of package list.
201 @param StringId The String ID.
202 @param String The output string.
203
204 @retval EFI_NOT_FOUND String is not found.
205 @retval EFI_SUCCESS Operation is successful.
206 @retval EFI_OUT_OF_RESOURCES There is not enought memory in the system.
207 @retval EFI_INVALID_PARAMETER The String is NULL.
208
209 **/
210 EFI_STATUS
211 EFIAPI
212 HiiLibGetStringFromHandle (
213 IN EFI_HII_HANDLE HiiHandle,
214 IN EFI_STRING_ID StringId,
215 OUT EFI_STRING *String
216 )
217 ;
218
219 /**
220 Get the string given the StringId and String package Producer's Guid. The caller
221 is responsible to free the *String.
222
223 If PackageList with the matching ProducerGuid is not found, then ASSERT.
224 If PackageList with the matching ProducerGuid is found but no String is
225 specified by StringId is found, then ASSERT.
226
227 @param ProducerGuid The Guid of String package list.
228 @param StringId The String ID.
229 @param String The output string.
230
231 @retval EFI_SUCCESS Operation is successful.
232 @retval EFI_OUT_OF_RESOURCES There is not enought memory in the system.
233
234 **/
235 EFI_STATUS
236 EFIAPI
237 HiiLibGetStringFromToken (
238 IN EFI_GUID *ProducerGuid,
239 IN EFI_STRING_ID StringId,
240 OUT EFI_STRING *String
241 )
242 ;
243
244 /**
245 Determines the handles that are currently active in the database.
246 It's the caller's responsibility to free handle buffer.
247
248 If HandleBufferLength is NULL, then ASSERT.
249 If HiiHandleBuffer is NULL, then ASSERT.
250
251 @param HiiDatabase A pointer to the EFI_HII_DATABASE_PROTOCOL
252 instance.
253 @param HandleBufferLength On input, a pointer to the length of the handle
254 buffer. On output, the length of the handle buffer
255 that is required for the handles found.
256 @param HiiHandleBuffer Pointer to an array of Hii Handles returned.
257
258 @retval EFI_SUCCESS Get an array of Hii Handles successfully.
259
260 **/
261 EFI_STATUS
262 EFIAPI
263 HiiLibGetHiiHandles (
264 IN OUT UINTN *HandleBufferLength,
265 OUT EFI_HII_HANDLE **HiiHandleBuffer
266 )
267 ;
268
269 /**
270 Extract Hii package list GUID for given HII handle.
271
272 If HiiHandle could not be found in the default HII database, then ASSERT.
273 If Guid is NULL, then ASSERT.
274
275 @param HiiHandle Hii handle
276 @param Guid Package list GUID
277
278 @retval EFI_SUCCESS Successfully extract GUID from Hii database.
279
280 **/
281 EFI_STATUS
282 EFIAPI
283 HiiLibExtractGuidFromHiiHandle (
284 IN EFI_HII_HANDLE Handle,
285 OUT EFI_GUID *Guid
286 )
287 ;
288
289 /**
290 Find HII Handle in the default HII database associated with given Device Path.
291
292 If DevicePath is NULL, then ASSERT.
293
294 @param DevicePath Device Path associated with the HII package list
295 handle.
296
297 @retval Handle HII package list Handle associated with the Device
298 Path.
299 @retval NULL Hii Package list handle is not found.
300
301 **/
302 EFI_HII_HANDLE
303 EFIAPI
304 HiiLibDevicePathToHiiHandle (
305 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
306 )
307 ;
308
309
310 /**
311 Determine what is the current language setting. The space reserved for Lang
312 must be at least RFC_3066_ENTRY_SIZE bytes;
313
314 If Lang is NULL, then ASSERT.
315
316 @param Lang Pointer of system language. Lang will always be filled with
317 a valid RFC 3066 language string. If "PlatformLang" is not
318 set in the system, the default language specifed by PcdUefiVariableDefaultPlatformLang
319 is returned.
320
321 @return EFI_SUCCESS If the EFI Variable with "PlatformLang" is set and return in Lang.
322 @return EFI_NOT_FOUND If the EFI Variable with "PlatformLang" is not set, but a valid default language is return in Lang.
323
324 **/
325 EFI_STATUS
326 EFIAPI
327 HiiLibGetCurrentLanguage (
328 OUT CHAR8 *Lang
329 )
330 ;
331
332 /**
333 Get next language from language code list (with separator ';').
334
335 If LangCode is NULL, then ASSERT.
336 If Lang is NULL, then ASSERT.
337
338 @param LangCode On input: point to first language in the list. On
339 output: point to next language in the list, or
340 NULL if no more language in the list.
341 @param Lang The first language in the list.
342
343 **/
344 VOID
345 EFIAPI
346 HiiLibGetNextLanguage (
347 IN OUT CHAR8 **LangCode,
348 OUT CHAR8 *Lang
349 )
350 ;
351
352 /**
353 This function returns the list of supported languages, in the format specified
354 in UEFI specification Appendix M.
355
356 If HiiHandle is not a valid Handle in the default HII database, then ASSERT.
357
358 @param HiiHandle The HII package list handle.
359
360 @retval !NULL The supported languages.
361 @retval NULL If Supported Languages can not be retrived.
362
363 **/
364 CHAR8 *
365 EFIAPI
366 HiiLibGetSupportedLanguages (
367 IN EFI_HII_HANDLE HiiHandle
368 )
369 ;
370
371 /**
372 This function returns the list of supported 2nd languages, in the format specified
373 in UEFI specification Appendix M.
374
375 If HiiHandle is not a valid Handle in the default HII database, then ASSERT.
376 If not enough resource to complete the operation, then ASSERT.
377
378 @param HiiHandle The HII package list handle.
379
380 @return The supported languages.
381
382 **/
383 CHAR8 *
384 EFIAPI
385 HiiLibGetSupportedSecondaryLanguages (
386 IN EFI_HII_HANDLE HiiHandle,
387 IN CONST CHAR8 *FirstLanguage
388 )
389 ;
390
391
392 /**
393 This function returns the number of supported languages on HiiHandle.
394
395 If HiiHandle is not a valid Handle in the default HII database, then ASSERT.
396 If not enough resource to complete the operation, then ASSERT.
397
398 @param HiiHandle The HII package list handle.
399
400 @return The number of supported languages.
401
402 **/
403 UINT16
404 EFIAPI
405 HiiLibGetSupportedLanguageNumber (
406 IN EFI_HII_HANDLE HiiHandle
407 )
408 ;
409
410 /**
411 Convert language code from RFC3066 to ISO639-2.
412
413 If LanguageRfc3066 is NULL, then ASSERT.
414 If LanguageIso639 is NULL, then ASSERT.
415
416 @param LanguageRfc3066 RFC3066 language code.
417 @param LanguageIso639 ISO639-2 language code.
418
419 @retval EFI_SUCCESS Language code converted.
420 @retval EFI_NOT_FOUND Language code not found.
421
422 **/
423 EFI_STATUS
424 EFIAPI
425 ConvertRfc3066LanguageToIso639Language (
426 CHAR8 *LanguageRfc3066,
427 CHAR8 *LanguageIso639
428 )
429 ;
430
431 /**
432 Convert language code list from RFC3066 to ISO639-2, e.g. "en-US;fr-FR" will
433 be converted to "engfra".
434
435 If SupportedLanguages is NULL, then ASSERT.
436
437 @param SupportedLanguages The RFC3066 language list.
438
439 @return The ISO639-2 language list.
440
441 **/
442 CHAR8 *
443 EFIAPI
444 Rfc3066ToIso639 (
445 CHAR8 *SupportedLanguages
446 )
447 ;
448
449 #endif