]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabase.h
Clean up the private GUID definition in module Level.
[mirror_edk2.git] / MdeModulePkg / Universal / HiiDatabaseDxe / HiiDatabase.h
1 /** @file
2 Private structures definitions in HiiDatabase.
3
4 Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.<BR>
5 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_DATABASE_PRIVATE_H__
16 #define __HII_DATABASE_PRIVATE_H__
17
18 #include <Uefi.h>
19
20 #include <Protocol/DevicePath.h>
21 #include <Protocol/HiiFont.h>
22 #include <Protocol/HiiImage.h>
23 #include <Protocol/HiiString.h>
24 #include <Protocol/HiiDatabase.h>
25 #include <Protocol/HiiConfigRouting.h>
26 #include <Protocol/HiiConfigAccess.h>
27 #include <Protocol/SimpleTextOut.h>
28
29 #include <Guid/HiiKeyBoardLayout.h>
30 #include <Guid/GlobalVariable.h>
31
32
33 #include <Library/DebugLib.h>
34 #include <Library/BaseMemoryLib.h>
35 #include <Library/UefiDriverEntryPoint.h>
36 #include <Library/UefiBootServicesTableLib.h>
37 #include <Library/BaseLib.h>
38 #include <Library/DevicePathLib.h>
39 #include <Library/MemoryAllocationLib.h>
40 #include <Library/UefiLib.h>
41 #include <Library/PcdLib.h>
42 #include <Library/UefiRuntimeServicesTableLib.h>
43 #include <Library/PrintLib.h>
44
45 #define MAX_STRING_LENGTH 1024
46 #define MAX_FONT_NAME_LEN 256
47 #define NARROW_BASELINE 15
48 #define WIDE_BASELINE 14
49 #define SYS_FONT_INFO_MASK 0x37
50 #define REPLACE_UNKNOWN_GLYPH 0xFFFD
51 #define PROPORTIONAL_GLYPH 0x80
52 #define NARROW_GLYPH 0x40
53
54 #define BITMAP_LEN_1_BIT(Width, Height) (((Width) + 7) / 8 * (Height))
55 #define BITMAP_LEN_4_BIT(Width, Height) (((Width) + 1) / 2 * (Height))
56 #define BITMAP_LEN_8_BIT(Width, Height) ((Width) * (Height))
57 #define BITMAP_LEN_24_BIT(Width, Height) ((Width) * (Height) * 3)
58
59 //
60 // IFR data structure
61 //
62 // BASE_CR (a, IFR_DEFAULT_VALUE_DATA, Entry) to get the whole structure.
63
64 typedef struct {
65 LIST_ENTRY Entry; // Link to VarStorage
66 EFI_GUID Guid;
67 CHAR16 *Name;
68 EFI_VARSTORE_ID VarStoreId;
69 UINT16 Size;
70 LIST_ENTRY BlockEntry; // Link to its Block array
71 } IFR_VARSTORAGE_DATA;
72
73 typedef struct {
74 LIST_ENTRY Entry; // Link to Block array
75 UINT16 Offset;
76 UINT16 Width;
77 EFI_QUESTION_ID QuestionId;
78 UINT8 OpCode;
79 UINT8 Scope;
80 LIST_ENTRY DefaultValueEntry; // Link to its default value array
81 } IFR_BLOCK_DATA;
82
83 typedef struct {
84 LIST_ENTRY Entry;
85 UINT8 OpCode;
86 UINT16 DefaultId;
87 UINT64 Value;
88 } IFR_DEFAULT_DATA;
89
90 //
91 // Storage types
92 //
93 #define EFI_HII_VARSTORE_BUFFER 0
94 #define EFI_HII_VARSTORE_NAME_VALUE 1
95 #define EFI_HII_VARSTORE_EFI_VARIABLE 2
96
97 #define HII_FORMSET_STORAGE_SIGNATURE SIGNATURE_32 ('H', 'S', 'T', 'G')
98 typedef struct {
99 UINTN Signature;
100 LIST_ENTRY Entry;
101
102 EFI_HII_HANDLE HiiHandle;
103 EFI_HANDLE DriverHandle;
104
105 UINT8 Type; // EFI_HII_VARSTORE_BUFFER, EFI_HII_VARSTORE_NAME_VALUE, EFI_HII_VARSTORE_EFI_VARIABLE
106 EFI_GUID Guid;
107 CHAR16 *Name;
108 UINT16 Size;
109 } HII_FORMSET_STORAGE;
110
111
112 //
113 // String Package definitions
114 //
115 #define HII_STRING_PACKAGE_SIGNATURE SIGNATURE_32 ('h','i','s','p')
116 typedef struct _HII_STRING_PACKAGE_INSTANCE {
117 UINTN Signature;
118 EFI_HII_STRING_PACKAGE_HDR *StringPkgHdr;
119 UINT8 *StringBlock;
120 LIST_ENTRY StringEntry;
121 LIST_ENTRY FontInfoList; // local font info list
122 UINT8 FontId;
123 EFI_STRING_ID MaxStringId; // record StringId
124 } HII_STRING_PACKAGE_INSTANCE;
125
126 //
127 // Form Package definitions
128 //
129 #define HII_IFR_PACKAGE_SIGNATURE SIGNATURE_32 ('h','f','r','p')
130 typedef struct _HII_IFR_PACKAGE_INSTANCE {
131 UINTN Signature;
132 EFI_HII_PACKAGE_HEADER FormPkgHdr;
133 UINT8 *IfrData;
134 LIST_ENTRY IfrEntry;
135 } HII_IFR_PACKAGE_INSTANCE;
136
137 //
138 // Simple Font Package definitions
139 //
140 #define HII_S_FONT_PACKAGE_SIGNATURE SIGNATURE_32 ('h','s','f','p')
141 typedef struct _HII_SIMPLE_FONT_PACKAGE_INSTANCE {
142 UINTN Signature;
143 EFI_HII_SIMPLE_FONT_PACKAGE_HDR *SimpleFontPkgHdr;
144 LIST_ENTRY SimpleFontEntry;
145 } HII_SIMPLE_FONT_PACKAGE_INSTANCE;
146
147 //
148 // Font Package definitions
149 //
150 #define HII_FONT_PACKAGE_SIGNATURE SIGNATURE_32 ('h','i','f','p')
151 typedef struct _HII_FONT_PACKAGE_INSTANCE {
152 UINTN Signature;
153 EFI_HII_FONT_PACKAGE_HDR *FontPkgHdr;
154 UINT16 Height;
155 UINT16 BaseLine;
156 UINT8 *GlyphBlock;
157 LIST_ENTRY FontEntry;
158 LIST_ENTRY GlyphInfoList;
159 } HII_FONT_PACKAGE_INSTANCE;
160
161 #define HII_GLYPH_INFO_SIGNATURE SIGNATURE_32 ('h','g','i','s')
162 typedef struct _HII_GLYPH_INFO {
163 UINTN Signature;
164 LIST_ENTRY Entry;
165 CHAR16 CharId;
166 EFI_HII_GLYPH_INFO Cell;
167 } HII_GLYPH_INFO;
168
169 #define HII_FONT_INFO_SIGNATURE SIGNATURE_32 ('h','l','f','i')
170 typedef struct _HII_FONT_INFO {
171 UINTN Signature;
172 LIST_ENTRY Entry;
173 LIST_ENTRY *GlobalEntry;
174 UINT8 FontId;
175 } HII_FONT_INFO;
176
177 #define HII_GLOBAL_FONT_INFO_SIGNATURE SIGNATURE_32 ('h','g','f','i')
178 typedef struct _HII_GLOBAL_FONT_INFO {
179 UINTN Signature;
180 LIST_ENTRY Entry;
181 HII_FONT_PACKAGE_INSTANCE *FontPackage;
182 UINTN FontInfoSize;
183 EFI_FONT_INFO *FontInfo;
184 } HII_GLOBAL_FONT_INFO;
185
186 //
187 // Image Package definitions
188 //
189
190 #define HII_PIXEL_MASK 0x80
191
192 typedef struct _HII_IMAGE_PACKAGE_INSTANCE {
193 EFI_HII_IMAGE_PACKAGE_HDR ImagePkgHdr;
194 UINT32 ImageBlockSize;
195 UINT32 PaletteInfoSize;
196 UINT8 *ImageBlock;
197 UINT8 *PaletteBlock;
198 } HII_IMAGE_PACKAGE_INSTANCE;
199
200 //
201 // Keyboard Layout Pacakge definitions
202 //
203 #define HII_KB_LAYOUT_PACKAGE_SIGNATURE SIGNATURE_32 ('h','k','l','p')
204 typedef struct _HII_KEYBOARD_LAYOUT_PACKAGE_INSTANCE {
205 UINTN Signature;
206 UINT8 *KeyboardPkg;
207 LIST_ENTRY KeyboardEntry;
208 } HII_KEYBOARD_LAYOUT_PACKAGE_INSTANCE;
209
210 //
211 // Guid Package definitions
212 //
213 #define HII_GUID_PACKAGE_SIGNATURE SIGNATURE_32 ('h','i','g','p')
214 typedef struct _HII_GUID_PACKAGE_INSTANCE {
215 UINTN Signature;
216 UINT8 *GuidPkg;
217 LIST_ENTRY GuidEntry;
218 } HII_GUID_PACKAGE_INSTANCE;
219
220 //
221 // A package list can contain only one or less than one device path package.
222 // This rule also applies to image package since ImageId can not be duplicate.
223 //
224 typedef struct _HII_DATABASE_PACKAGE_LIST_INSTANCE {
225 EFI_HII_PACKAGE_LIST_HEADER PackageListHdr;
226 LIST_ENTRY GuidPkgHdr;
227 LIST_ENTRY FormPkgHdr;
228 LIST_ENTRY KeyboardLayoutHdr;
229 LIST_ENTRY StringPkgHdr;
230 LIST_ENTRY FontPkgHdr;
231 HII_IMAGE_PACKAGE_INSTANCE *ImagePkg;
232 LIST_ENTRY SimpleFontPkgHdr;
233 UINT8 *DevicePathPkg;
234 } HII_DATABASE_PACKAGE_LIST_INSTANCE;
235
236 #define HII_HANDLE_SIGNATURE SIGNATURE_32 ('h','i','h','l')
237
238 typedef struct {
239 UINTN Signature;
240 LIST_ENTRY Handle;
241 UINTN Key;
242 } HII_HANDLE;
243
244 #define HII_DATABASE_RECORD_SIGNATURE SIGNATURE_32 ('h','i','d','r')
245
246 typedef struct _HII_DATABASE_RECORD {
247 UINTN Signature;
248 HII_DATABASE_PACKAGE_LIST_INSTANCE *PackageList;
249 EFI_HANDLE DriverHandle;
250 EFI_HII_HANDLE Handle;
251 LIST_ENTRY DatabaseEntry;
252 } HII_DATABASE_RECORD;
253
254 #define HII_DATABASE_NOTIFY_SIGNATURE SIGNATURE_32 ('h','i','d','n')
255
256 typedef struct _HII_DATABASE_NOTIFY {
257 UINTN Signature;
258 EFI_HANDLE NotifyHandle;
259 UINT8 PackageType;
260 EFI_GUID *PackageGuid;
261 EFI_HII_DATABASE_NOTIFY PackageNotifyFn;
262 EFI_HII_DATABASE_NOTIFY_TYPE NotifyType;
263 LIST_ENTRY DatabaseNotifyEntry;
264 } HII_DATABASE_NOTIFY;
265
266 #define HII_DATABASE_PRIVATE_DATA_SIGNATURE SIGNATURE_32 ('H', 'i', 'D', 'p')
267
268 typedef struct _HII_DATABASE_PRIVATE_DATA {
269 UINTN Signature;
270 LIST_ENTRY DatabaseList;
271 LIST_ENTRY DatabaseNotifyList;
272 EFI_HII_FONT_PROTOCOL HiiFont;
273 EFI_HII_IMAGE_PROTOCOL HiiImage;
274 EFI_HII_STRING_PROTOCOL HiiString;
275 EFI_HII_DATABASE_PROTOCOL HiiDatabase;
276 EFI_HII_CONFIG_ROUTING_PROTOCOL ConfigRouting;
277 LIST_ENTRY HiiHandleList;
278 INTN HiiHandleCount;
279 LIST_ENTRY FontInfoList; // global font info list
280 UINTN Attribute; // default system color
281 EFI_GUID CurrentLayoutGuid;
282 EFI_HII_KEYBOARD_LAYOUT *CurrentLayout;
283 } HII_DATABASE_PRIVATE_DATA;
284
285 #define HII_FONT_DATABASE_PRIVATE_DATA_FROM_THIS(a) \
286 CR (a, \
287 HII_DATABASE_PRIVATE_DATA, \
288 HiiFont, \
289 HII_DATABASE_PRIVATE_DATA_SIGNATURE \
290 )
291
292 #define HII_IMAGE_DATABASE_PRIVATE_DATA_FROM_THIS(a) \
293 CR (a, \
294 HII_DATABASE_PRIVATE_DATA, \
295 HiiImage, \
296 HII_DATABASE_PRIVATE_DATA_SIGNATURE \
297 )
298
299 #define HII_STRING_DATABASE_PRIVATE_DATA_FROM_THIS(a) \
300 CR (a, \
301 HII_DATABASE_PRIVATE_DATA, \
302 HiiString, \
303 HII_DATABASE_PRIVATE_DATA_SIGNATURE \
304 )
305
306 #define HII_DATABASE_DATABASE_PRIVATE_DATA_FROM_THIS(a) \
307 CR (a, \
308 HII_DATABASE_PRIVATE_DATA, \
309 HiiDatabase, \
310 HII_DATABASE_PRIVATE_DATA_SIGNATURE \
311 )
312
313 #define CONFIG_ROUTING_DATABASE_PRIVATE_DATA_FROM_THIS(a) \
314 CR (a, \
315 HII_DATABASE_PRIVATE_DATA, \
316 ConfigRouting, \
317 HII_DATABASE_PRIVATE_DATA_SIGNATURE \
318 )
319
320 //
321 // Internal function prototypes.
322 //
323
324 /**
325 This function checks whether a handle is a valid EFI_HII_HANDLE.
326
327 @param Handle Pointer to a EFI_HII_HANDLE
328
329 @retval TRUE Valid
330 @retval FALSE Invalid
331
332 **/
333 BOOLEAN
334 IsHiiHandleValid (
335 EFI_HII_HANDLE Handle
336 );
337
338
339 /**
340 This function checks whether EFI_FONT_INFO exists in current database. If
341 FontInfoMask is specified, check what options can be used to make a match.
342 Note that the masks relate to where the system default should be supplied
343 are ignored by this function.
344
345 @param Private Hii database private structure.
346 @param FontInfo Points to EFI_FONT_INFO structure.
347 @param FontInfoMask If not NULL, describes what options can be used
348 to make a match between the font requested and
349 the font available. The caller must guarantee
350 this mask is valid.
351 @param FontHandle On entry, Points to the font handle returned by a
352 previous call to GetFontInfo() or NULL to start
353 with the first font.
354 @param GlobalFontInfo If not NULL, output the corresponding globa font
355 info.
356
357 @retval TRUE Existed
358 @retval FALSE Not existed
359
360 **/
361 BOOLEAN
362 IsFontInfoExisted (
363 IN HII_DATABASE_PRIVATE_DATA *Private,
364 IN EFI_FONT_INFO *FontInfo,
365 IN EFI_FONT_INFO_MASK *FontInfoMask, OPTIONAL
366 IN EFI_FONT_HANDLE FontHandle, OPTIONAL
367 OUT HII_GLOBAL_FONT_INFO **GlobalFontInfo OPTIONAL
368 );
369
370 /**
371
372 This function invokes the matching registered function.
373
374 @param Private HII Database driver private structure.
375 @param NotifyType The type of change concerning the database.
376 @param PackageInstance Points to the package referred to by the notification.
377 @param PackageType Package type
378 @param Handle The handle of the package list which contains the specified package.
379
380 @retval EFI_SUCCESS Already checked all registered function and invoked
381 if matched.
382 @retval EFI_INVALID_PARAMETER Any input parameter is not valid.
383
384 **/
385 EFI_STATUS
386 InvokeRegisteredFunction (
387 IN HII_DATABASE_PRIVATE_DATA *Private,
388 IN EFI_HII_DATABASE_NOTIFY_TYPE NotifyType,
389 IN VOID *PackageInstance,
390 IN UINT8 PackageType,
391 IN EFI_HII_HANDLE Handle
392 )
393 ;
394
395 /**
396 Retrieve system default font and color.
397
398 @param Private HII database driver private data.
399 @param FontInfo Points to system default font output-related
400 information. It's caller's responsibility to free
401 this buffer.
402 @param FontInfoSize If not NULL, output the size of buffer FontInfo.
403
404 @retval EFI_SUCCESS Cell information is added to the GlyphInfoList.
405 @retval EFI_OUT_OF_RESOURCES The system is out of resources to accomplish the
406 task.
407 @retval EFI_INVALID_PARAMETER Any input parameter is invalid.
408
409 **/
410 EFI_STATUS
411 GetSystemFont (
412 IN HII_DATABASE_PRIVATE_DATA *Private,
413 OUT EFI_FONT_DISPLAY_INFO **FontInfo,
414 OUT UINTN *FontInfoSize OPTIONAL
415 );
416
417
418 /**
419 Parse all string blocks to find a String block specified by StringId.
420 If StringId = (EFI_STRING_ID) (-1), find out all EFI_HII_SIBT_FONT blocks
421 within this string package and backup its information. If LastStringId is
422 specified, the string id of last string block will also be output.
423 If StringId = 0, output the string id of last string block (EFI_HII_SIBT_STRING).
424
425 @param Private Hii database private structure.
426 @param StringPackage Hii string package instance.
427 @param StringId The string's id, which is unique within
428 PackageList.
429 @param BlockType Output the block type of found string block.
430 @param StringBlockAddr Output the block address of found string block.
431 @param StringTextOffset Offset, relative to the found block address, of
432 the string text information.
433 @param LastStringId Output the last string id when StringId = 0 or StringId = -1.
434 @param StartStringId The first id in the skip block which StringId in the block.
435
436 @retval EFI_SUCCESS The string text and font is retrieved
437 successfully.
438 @retval EFI_NOT_FOUND The specified text or font info can not be found
439 out.
440 @retval EFI_OUT_OF_RESOURCES The system is out of resources to accomplish the
441 task.
442
443 **/
444 EFI_STATUS
445 FindStringBlock (
446 IN HII_DATABASE_PRIVATE_DATA *Private,
447 IN HII_STRING_PACKAGE_INSTANCE *StringPackage,
448 IN EFI_STRING_ID StringId,
449 OUT UINT8 *BlockType, OPTIONAL
450 OUT UINT8 **StringBlockAddr, OPTIONAL
451 OUT UINTN *StringTextOffset, OPTIONAL
452 OUT EFI_STRING_ID *LastStringId, OPTIONAL
453 OUT EFI_STRING_ID *StartStringId OPTIONAL
454 );
455
456
457 /**
458 Parse all glyph blocks to find a glyph block specified by CharValue.
459 If CharValue = (CHAR16) (-1), collect all default character cell information
460 within this font package and backup its information.
461
462 @param FontPackage Hii string package instance.
463 @param CharValue Unicode character value, which identifies a glyph
464 block.
465 @param GlyphBuffer Output the corresponding bitmap data of the found
466 block. It is the caller's responsiblity to free
467 this buffer.
468 @param Cell Output cell information of the encoded bitmap.
469 @param GlyphBufferLen If not NULL, output the length of GlyphBuffer.
470
471 @retval EFI_SUCCESS The bitmap data is retrieved successfully.
472 @retval EFI_NOT_FOUND The specified CharValue does not exist in current
473 database.
474 @retval EFI_OUT_OF_RESOURCES The system is out of resources to accomplish the
475 task.
476
477 **/
478 EFI_STATUS
479 FindGlyphBlock (
480 IN HII_FONT_PACKAGE_INSTANCE *FontPackage,
481 IN CHAR16 CharValue,
482 OUT UINT8 **GlyphBuffer, OPTIONAL
483 OUT EFI_HII_GLYPH_INFO *Cell, OPTIONAL
484 OUT UINTN *GlyphBufferLen OPTIONAL
485 );
486
487 /**
488 This function exports Form packages to a buffer.
489 This is a internal function.
490
491 @param Private Hii database private structure.
492 @param Handle Identification of a package list.
493 @param PackageList Pointer to a package list which will be exported.
494 @param UsedSize The length of buffer be used.
495 @param BufferSize Length of the Buffer.
496 @param Buffer Allocated space for storing exported data.
497 @param ResultSize The size of the already exported content of this
498 package list.
499
500 @retval EFI_SUCCESS Form Packages are exported successfully.
501 @retval EFI_INVALID_PARAMETER Any input parameter is invalid.
502
503 **/
504 EFI_STATUS
505 ExportFormPackages (
506 IN HII_DATABASE_PRIVATE_DATA *Private,
507 IN EFI_HII_HANDLE Handle,
508 IN HII_DATABASE_PACKAGE_LIST_INSTANCE *PackageList,
509 IN UINTN UsedSize,
510 IN UINTN BufferSize,
511 IN OUT VOID *Buffer,
512 IN OUT UINTN *ResultSize
513 );
514
515 //
516 // EFI_HII_FONT_PROTOCOL protocol interfaces
517 //
518
519
520 /**
521 Renders a string to a bitmap or to the display.
522
523 @param This A pointer to the EFI_HII_FONT_PROTOCOL instance.
524 @param Flags Describes how the string is to be drawn.
525 @param String Points to the null-terminated string to be
526 displayed.
527 @param StringInfo Points to the string output information,
528 including the color and font. If NULL, then the
529 string will be output in the default system font
530 and color.
531 @param Blt If this points to a non-NULL on entry, this
532 points to the image, which is Width pixels wide
533 and Height pixels high. The string will be drawn
534 onto this image and
535 EFI_HII_OUT_FLAG_CLIP is implied. If this points
536 to a NULL on entry, then a buffer
537 will be allocated to hold the generated image and
538 the pointer updated on exit. It is the caller's
539 responsibility to free this buffer.
540 @param BltX Together with BltX, Specifies the offset from the left and top edge
541 of the image of the first character cell in the
542 image.
543 @param BltY Together with BltY, Specifies the offset from the left and top edge
544 of the image of the first character cell in the
545 image.
546 @param RowInfoArray If this is non-NULL on entry, then on exit, this
547 will point to an allocated buffer containing
548 row information and RowInfoArraySize will be
549 updated to contain the number of elements.
550 This array describes the characters which were at
551 least partially drawn and the heights of the
552 rows. It is the caller's responsibility to free
553 this buffer.
554 @param RowInfoArraySize If this is non-NULL on entry, then on exit it
555 contains the number of elements in RowInfoArray.
556 @param ColumnInfoArray If this is non-NULL, then on return it will be
557 filled with the horizontal offset for each
558 character in the string on the row where it is
559 displayed. Non-printing characters will have
560 the offset ~0. The caller is responsible to
561 allocate a buffer large enough so that there
562 is one entry for each character in the string,
563 not including the null-terminator. It is possible
564 when character display is normalized that some
565 character cells overlap.
566
567 @retval EFI_SUCCESS The string was successfully rendered.
568 @retval EFI_OUT_OF_RESOURCES Unable to allocate an output buffer for
569 RowInfoArray or Blt.
570 @retval EFI_INVALID_PARAMETER The String or Blt.
571 @retval EFI_INVALID_PARAMETER Flags were invalid combination..
572
573 **/
574 EFI_STATUS
575 EFIAPI
576 HiiStringToImage (
577 IN CONST EFI_HII_FONT_PROTOCOL *This,
578 IN EFI_HII_OUT_FLAGS Flags,
579 IN CONST EFI_STRING String,
580 IN CONST EFI_FONT_DISPLAY_INFO *StringInfo OPTIONAL,
581 IN OUT EFI_IMAGE_OUTPUT **Blt,
582 IN UINTN BltX,
583 IN UINTN BltY,
584 OUT EFI_HII_ROW_INFO **RowInfoArray OPTIONAL,
585 OUT UINTN *RowInfoArraySize OPTIONAL,
586 OUT UINTN *ColumnInfoArray OPTIONAL
587 );
588
589
590 /**
591 Render a string to a bitmap or the screen containing the contents of the specified string.
592
593 @param This A pointer to the EFI_HII_FONT_PROTOCOL instance.
594 @param Flags Describes how the string is to be drawn.
595 @param PackageList The package list in the HII database to search
596 for the specified string.
597 @param StringId The string's id, which is unique within
598 PackageList.
599 @param Language Points to the language for the retrieved string.
600 If NULL, then the current system language is
601 used.
602 @param StringInfo Points to the string output information,
603 including the color and font. If NULL, then the
604 string will be output in the default system font
605 and color.
606 @param Blt If this points to a non-NULL on entry, this
607 points to the image, which is Width pixels wide
608 and Height pixels high. The string will be drawn
609 onto this image and
610 EFI_HII_OUT_FLAG_CLIP is implied. If this points
611 to a NULL on entry, then a buffer
612 will be allocated to hold the generated image and
613 the pointer updated on exit. It is the caller's
614 responsibility to free this buffer.
615 @param BltX Together with BltX, Specifies the offset from the left and top edge
616 of the image of the first character cell in the
617 image.
618 @param BltY Together with BltY, Specifies the offset from the left and top edge
619 of the image of the first character cell in the
620 image.
621 @param RowInfoArray If this is non-NULL on entry, then on exit, this
622 will point to an allocated buffer containing
623 row information and RowInfoArraySize will be
624 updated to contain the number of elements.
625 This array describes the characters which were at
626 least partially drawn and the heights of the
627 rows. It is the caller's responsibility to free
628 this buffer.
629 @param RowInfoArraySize If this is non-NULL on entry, then on exit it
630 contains the number of elements in RowInfoArray.
631 @param ColumnInfoArray If this is non-NULL, then on return it will be
632 filled with the horizontal offset for each
633 character in the string on the row where it is
634 displayed. Non-printing characters will have
635 the offset ~0. The caller is responsible to
636 allocate a buffer large enough so that there
637 is one entry for each character in the string,
638 not including the null-terminator. It is possible
639 when character display is normalized that some
640 character cells overlap.
641
642 @retval EFI_SUCCESS The string was successfully rendered.
643 @retval EFI_OUT_OF_RESOURCES Unable to allocate an output buffer for
644 RowInfoArray or Blt.
645 @retval EFI_INVALID_PARAMETER The Blt or PackageList was NULL.
646 @retval EFI_INVALID_PARAMETER Flags were invalid combination.
647 @retval EFI_NOT_FOUND The specified PackageList is not in the Database or the stringid is not
648 in the specified PackageList.
649
650 **/
651 EFI_STATUS
652 EFIAPI
653 HiiStringIdToImage (
654 IN CONST EFI_HII_FONT_PROTOCOL *This,
655 IN EFI_HII_OUT_FLAGS Flags,
656 IN EFI_HII_HANDLE PackageList,
657 IN EFI_STRING_ID StringId,
658 IN CONST CHAR8* Language,
659 IN CONST EFI_FONT_DISPLAY_INFO *StringInfo OPTIONAL,
660 IN OUT EFI_IMAGE_OUTPUT **Blt,
661 IN UINTN BltX,
662 IN UINTN BltY,
663 OUT EFI_HII_ROW_INFO **RowInfoArray OPTIONAL,
664 OUT UINTN *RowInfoArraySize OPTIONAL,
665 OUT UINTN *ColumnInfoArray OPTIONAL
666 );
667
668
669 /**
670 Convert the glyph for a single character into a bitmap.
671
672 @param This A pointer to the EFI_HII_FONT_PROTOCOL instance.
673 @param Char Character to retrieve.
674 @param StringInfo Points to the string font and color information
675 or NULL if the string should use the default
676 system font and color.
677 @param Blt Thus must point to a NULL on entry. A buffer will
678 be allocated to hold the output and the pointer
679 updated on exit. It is the caller's
680 responsibility to free this buffer.
681 @param Baseline Number of pixels from the bottom of the bitmap to
682 the baseline.
683
684 @retval EFI_SUCCESS Glyph bitmap created.
685 @retval EFI_OUT_OF_RESOURCES Unable to allocate the output buffer Blt.
686 @retval EFI_WARN_UNKNOWN_GLYPH The glyph was unknown and was replaced with the
687 glyph for Unicode character 0xFFFD.
688 @retval EFI_INVALID_PARAMETER Blt is NULL or *Blt is not NULL.
689
690 **/
691 EFI_STATUS
692 EFIAPI
693 HiiGetGlyph (
694 IN CONST EFI_HII_FONT_PROTOCOL *This,
695 IN CHAR16 Char,
696 IN CONST EFI_FONT_DISPLAY_INFO *StringInfo,
697 OUT EFI_IMAGE_OUTPUT **Blt,
698 OUT UINTN *Baseline OPTIONAL
699 );
700
701
702 /**
703 This function iterates through fonts which match the specified font, using
704 the specified criteria. If String is non-NULL, then all of the characters in
705 the string must exist in order for a candidate font to be returned.
706
707 @param This A pointer to the EFI_HII_FONT_PROTOCOL instance.
708 @param FontHandle On entry, points to the font handle returned by a
709 previous call to GetFontInfo() or NULL to start
710 with the first font. On return, points to the
711 returned font handle or points to NULL if there
712 are no more matching fonts.
713 @param StringInfoIn Upon entry, points to the font to return
714 information about. If NULL, then the information about the system default
715 font will be returned.
716 @param StringInfoOut Upon return, contains the matching font's
717 information. If NULL, then no information is
718 returned. It's caller's responsibility to free
719 this buffer.
720 @param String Points to the string which will be tested to
721 determine if all characters are available. If
722 NULL, then any font is acceptable.
723
724 @retval EFI_SUCCESS Matching font returned successfully.
725 @retval EFI_NOT_FOUND No matching font was found.
726 @retval EFI_INVALID_PARAMETER StringInfoIn is NULL.
727 @retval EFI_INVALID_PARAMETER StringInfoIn->FontInfoMask is an invalid combination.
728 @retval EFI_OUT_OF_RESOURCES There were insufficient resources to complete the
729 request.
730 **/
731 EFI_STATUS
732 EFIAPI
733 HiiGetFontInfo (
734 IN CONST EFI_HII_FONT_PROTOCOL *This,
735 IN OUT EFI_FONT_HANDLE *FontHandle,
736 IN CONST EFI_FONT_DISPLAY_INFO *StringInfoIn, OPTIONAL
737 OUT EFI_FONT_DISPLAY_INFO **StringInfoOut,
738 IN CONST EFI_STRING String OPTIONAL
739 );
740
741 //
742 // EFI_HII_IMAGE_PROTOCOL interfaces
743 //
744
745
746 /**
747 This function adds the image Image to the group of images owned by PackageList, and returns
748 a new image identifier (ImageId).
749
750 @param This A pointer to the EFI_HII_IMAGE_PROTOCOL instance.
751 @param PackageList Handle of the package list where this image will
752 be added.
753 @param ImageId On return, contains the new image id, which is
754 unique within PackageList.
755 @param Image Points to the image.
756
757 @retval EFI_SUCCESS The new image was added successfully.
758 @retval EFI_NOT_FOUND The specified PackageList could not be found in
759 database.
760 @retval EFI_OUT_OF_RESOURCES Could not add the image due to lack of resources.
761 @retval EFI_INVALID_PARAMETER Image is NULL or ImageId is NULL.
762
763 **/
764 EFI_STATUS
765 EFIAPI
766 HiiNewImage (
767 IN CONST EFI_HII_IMAGE_PROTOCOL *This,
768 IN EFI_HII_HANDLE PackageList,
769 OUT EFI_IMAGE_ID *ImageId,
770 IN CONST EFI_IMAGE_INPUT *Image
771 );
772
773
774 /**
775 This function retrieves the image specified by ImageId which is associated with
776 the specified PackageList and copies it into the buffer specified by Image.
777
778 @param This A pointer to the EFI_HII_IMAGE_PROTOCOL instance.
779 @param PackageList Handle of the package list where this image will
780 be searched.
781 @param ImageId The image's id,, which is unique within
782 PackageList.
783 @param Image Points to the image.
784
785 @retval EFI_SUCCESS The new image was returned successfully.
786 @retval EFI_NOT_FOUND The image specified by ImageId is not available.
787 The specified PackageList is not in the database.
788 @retval EFI_BUFFER_TOO_SMALL The buffer specified by ImageSize is too small to
789 hold the image.
790 @retval EFI_INVALID_PARAMETER The Image or ImageSize was NULL.
791 @retval EFI_OUT_OF_RESOURCES The bitmap could not be retrieved because there was not
792 enough memory.
793
794 **/
795 EFI_STATUS
796 EFIAPI
797 HiiGetImage (
798 IN CONST EFI_HII_IMAGE_PROTOCOL *This,
799 IN EFI_HII_HANDLE PackageList,
800 IN EFI_IMAGE_ID ImageId,
801 OUT EFI_IMAGE_INPUT *Image
802 );
803
804
805 /**
806 This function updates the image specified by ImageId in the specified PackageListHandle to
807 the image specified by Image.
808
809 @param This A pointer to the EFI_HII_IMAGE_PROTOCOL instance.
810 @param PackageList The package list containing the images.
811 @param ImageId The image's id,, which is unique within
812 PackageList.
813 @param Image Points to the image.
814
815 @retval EFI_SUCCESS The new image was updated successfully.
816 @retval EFI_NOT_FOUND The image specified by ImageId is not in the
817 database. The specified PackageList is not in the database.
818 @retval EFI_INVALID_PARAMETER The Image was NULL.
819
820 **/
821 EFI_STATUS
822 EFIAPI
823 HiiSetImage (
824 IN CONST EFI_HII_IMAGE_PROTOCOL *This,
825 IN EFI_HII_HANDLE PackageList,
826 IN EFI_IMAGE_ID ImageId,
827 IN CONST EFI_IMAGE_INPUT *Image
828 );
829
830
831 /**
832 This function renders an image to a bitmap or the screen using the specified
833 color and options. It draws the image on an existing bitmap, allocates a new
834 bitmap or uses the screen. The images can be clipped.
835
836 @param This A pointer to the EFI_HII_IMAGE_PROTOCOL instance.
837 @param Flags Describes how the image is to be drawn.
838 @param Image Points to the image to be displayed.
839 @param Blt If this points to a non-NULL on entry, this
840 points to the image, which is Width pixels wide
841 and Height pixels high. The image will be drawn
842 onto this image and EFI_HII_DRAW_FLAG_CLIP is
843 implied. If this points to a NULL on entry, then
844 a buffer will be allocated to hold the generated
845 image and the pointer updated on exit. It is the
846 caller's responsibility to free this buffer.
847 @param BltX Specifies the offset from the left and top edge
848 of the output image of the first pixel in the
849 image.
850 @param BltY Specifies the offset from the left and top edge
851 of the output image of the first pixel in the
852 image.
853
854 @retval EFI_SUCCESS The image was successfully drawn.
855 @retval EFI_OUT_OF_RESOURCES Unable to allocate an output buffer for Blt.
856 @retval EFI_INVALID_PARAMETER The Image or Blt was NULL.
857 @retval EFI_INVALID_PARAMETER Any combination of Flags is invalid.
858
859 **/
860 EFI_STATUS
861 EFIAPI
862 HiiDrawImage (
863 IN CONST EFI_HII_IMAGE_PROTOCOL *This,
864 IN EFI_HII_DRAW_FLAGS Flags,
865 IN CONST EFI_IMAGE_INPUT *Image,
866 IN OUT EFI_IMAGE_OUTPUT **Blt,
867 IN UINTN BltX,
868 IN UINTN BltY
869 );
870
871
872 /**
873 This function renders an image to a bitmap or the screen using the specified
874 color and options. It draws the image on an existing bitmap, allocates a new
875 bitmap or uses the screen. The images can be clipped.
876
877 @param This A pointer to the EFI_HII_IMAGE_PROTOCOL instance.
878 @param Flags Describes how the image is to be drawn.
879 @param PackageList The package list in the HII database to search
880 for the specified image.
881 @param ImageId The image's id, which is unique within
882 PackageList.
883 @param Blt If this points to a non-NULL on entry, this
884 points to the image, which is Width pixels wide
885 and Height pixels high. The image will be drawn
886 onto this image and
887 EFI_HII_DRAW_FLAG_CLIP is implied. If this points
888 to a NULL on entry, then a buffer will be
889 allocated to hold the generated image and the
890 pointer updated on exit. It is the caller's
891 responsibility to free this buffer.
892 @param BltX Specifies the offset from the left and top edge
893 of the output image of the first pixel in the
894 image.
895 @param BltY Specifies the offset from the left and top edge
896 of the output image of the first pixel in the
897 image.
898
899 @retval EFI_SUCCESS The image was successfully drawn.
900 @retval EFI_OUT_OF_RESOURCES Unable to allocate an output buffer for Blt.
901 @retval EFI_INVALID_PARAMETER The Blt was NULL.
902 @retval EFI_NOT_FOUND The image specified by ImageId is not in the database.
903 The specified PackageList is not in the database.
904
905 **/
906 EFI_STATUS
907 EFIAPI
908 HiiDrawImageId (
909 IN CONST EFI_HII_IMAGE_PROTOCOL *This,
910 IN EFI_HII_DRAW_FLAGS Flags,
911 IN EFI_HII_HANDLE PackageList,
912 IN EFI_IMAGE_ID ImageId,
913 IN OUT EFI_IMAGE_OUTPUT **Blt,
914 IN UINTN BltX,
915 IN UINTN BltY
916 )
917
918 ;
919
920 //
921 // EFI_HII_STRING_PROTOCOL
922 //
923
924
925 /**
926 This function adds the string String to the group of strings owned by PackageList, with the
927 specified font information StringFontInfo and returns a new string id.
928
929 @param This A pointer to the EFI_HII_STRING_PROTOCOL
930 instance.
931 @param PackageList Handle of the package list where this string will
932 be added.
933 @param StringId On return, contains the new strings id, which is
934 unique within PackageList.
935 @param Language Points to the language for the new string.
936 @param LanguageName Points to the printable language name to
937 associate with the passed in Language field.If
938 LanguageName is not NULL and the string package
939 header's LanguageName associated with a given
940 Language is not zero, the LanguageName being
941 passed in will be ignored.
942 @param String Points to the new null-terminated string.
943 @param StringFontInfo Points to the new string's font information or
944 NULL if the string should have the default system
945 font, size and style.
946
947 @retval EFI_SUCCESS The new string was added successfully.
948 @retval EFI_NOT_FOUND The specified PackageList could not be found in
949 database.
950 @retval EFI_OUT_OF_RESOURCES Could not add the string due to lack of
951 resources.
952 @retval EFI_INVALID_PARAMETER String is NULL or StringId is NULL or Language is
953 NULL.
954
955 **/
956 EFI_STATUS
957 EFIAPI
958 HiiNewString (
959 IN CONST EFI_HII_STRING_PROTOCOL *This,
960 IN EFI_HII_HANDLE PackageList,
961 OUT EFI_STRING_ID *StringId,
962 IN CONST CHAR8 *Language,
963 IN CONST CHAR16 *LanguageName, OPTIONAL
964 IN CONST EFI_STRING String,
965 IN CONST EFI_FONT_INFO *StringFontInfo OPTIONAL
966 );
967
968
969 /**
970 This function retrieves the string specified by StringId which is associated
971 with the specified PackageList in the language Language and copies it into
972 the buffer specified by String.
973
974 @param This A pointer to the EFI_HII_STRING_PROTOCOL
975 instance.
976 @param Language Points to the language for the retrieved string.
977 @param PackageList The package list in the HII database to search
978 for the specified string.
979 @param StringId The string's id, which is unique within
980 PackageList.
981 @param String Points to the new null-terminated string.
982 @param StringSize On entry, points to the size of the buffer
983 pointed to by String, in bytes. On return,
984 points to the length of the string, in bytes.
985 @param StringFontInfo If not NULL, points to the string's font
986 information. It's caller's responsibility to
987 free this buffer.
988
989 @retval EFI_SUCCESS The string was returned successfully.
990 @retval EFI_NOT_FOUND The string specified by StringId is not
991 available.
992 @retval EFI_NOT_FOUND The string specified by StringId is available but
993 not in the specified language.
994 The specified PackageList is not in the database.
995 @retval EFI_INVALID_LANGUAGE - The string specified by StringId is available but
996 @retval EFI_BUFFER_TOO_SMALL The buffer specified by StringSize is too small
997 to hold the string.
998 @retval EFI_INVALID_PARAMETER The String or Language or StringSize was NULL.
999 @retval EFI_OUT_OF_RESOURCES There were insufficient resources to complete the
1000 request.
1001
1002 **/
1003 EFI_STATUS
1004 EFIAPI
1005 HiiGetString (
1006 IN CONST EFI_HII_STRING_PROTOCOL *This,
1007 IN CONST CHAR8 *Language,
1008 IN EFI_HII_HANDLE PackageList,
1009 IN EFI_STRING_ID StringId,
1010 OUT EFI_STRING String,
1011 IN OUT UINTN *StringSize,
1012 OUT EFI_FONT_INFO **StringFontInfo OPTIONAL
1013 );
1014
1015
1016 /**
1017 This function updates the string specified by StringId in the specified PackageList to the text
1018 specified by String and, optionally, the font information specified by StringFontInfo.
1019
1020 @param This A pointer to the EFI_HII_STRING_PROTOCOL
1021 instance.
1022 @param PackageList The package list containing the strings.
1023 @param StringId The string's id, which is unique within
1024 PackageList.
1025 @param Language Points to the language for the updated string.
1026 @param String Points to the new null-terminated string.
1027 @param StringFontInfo Points to the string's font information or NULL
1028 if the string font information is not changed.
1029
1030 @retval EFI_SUCCESS The string was updated successfully.
1031 @retval EFI_NOT_FOUND The string specified by StringId is not in the
1032 database.
1033 @retval EFI_INVALID_PARAMETER The String or Language was NULL.
1034 @retval EFI_OUT_OF_RESOURCES The system is out of resources to accomplish the
1035 task.
1036
1037 **/
1038 EFI_STATUS
1039 EFIAPI
1040 HiiSetString (
1041 IN CONST EFI_HII_STRING_PROTOCOL *This,
1042 IN EFI_HII_HANDLE PackageList,
1043 IN EFI_STRING_ID StringId,
1044 IN CONST CHAR8 *Language,
1045 IN CONST EFI_STRING String,
1046 IN CONST EFI_FONT_INFO *StringFontInfo OPTIONAL
1047 );
1048
1049
1050 /**
1051 This function returns the list of supported languages, in the format specified
1052 in Appendix M of UEFI 2.1 spec.
1053
1054 @param This A pointer to the EFI_HII_STRING_PROTOCOL
1055 instance.
1056 @param PackageList The package list to examine.
1057 @param Languages Points to the buffer to hold the returned
1058 null-terminated ASCII string.
1059 @param LanguagesSize On entry, points to the size of the buffer
1060 pointed to by Languages, in bytes. On return,
1061 points to the length of Languages, in bytes.
1062
1063 @retval EFI_SUCCESS The languages were returned successfully.
1064 @retval EFI_INVALID_PARAMETER The Languages or LanguagesSize was NULL.
1065 @retval EFI_BUFFER_TOO_SMALL The LanguagesSize is too small to hold the list
1066 of supported languages. LanguageSize is updated
1067 to contain the required size.
1068 @retval EFI_NOT_FOUND Could not find string package in specified
1069 packagelist.
1070
1071 **/
1072 EFI_STATUS
1073 EFIAPI
1074 HiiGetLanguages (
1075 IN CONST EFI_HII_STRING_PROTOCOL *This,
1076 IN EFI_HII_HANDLE PackageList,
1077 IN OUT CHAR8 *Languages,
1078 IN OUT UINTN *LanguagesSize
1079 );
1080
1081
1082 /**
1083 Each string package has associated with it a single primary language and zero
1084 or more secondary languages. This routine returns the secondary languages
1085 associated with a package list.
1086
1087 @param This A pointer to the EFI_HII_STRING_PROTOCOL
1088 instance.
1089 @param PackageList The package list to examine.
1090 @param PrimaryLanguage Points to the null-terminated ASCII string that specifies
1091 the primary language. Languages are specified in the
1092 format specified in Appendix M of the UEFI 2.0 specification.
1093 @param SecondaryLanguages Points to the buffer to hold the returned null-terminated
1094 ASCII string that describes the list of
1095 secondary languages for the specified
1096 PrimaryLanguage. If there are no secondary
1097 languages, the function returns successfully,
1098 but this is set to NULL.
1099 @param SecondaryLanguagesSize On entry, points to the size of the buffer
1100 pointed to by SecondaryLanguages, in bytes. On
1101 return, points to the length of SecondaryLanguages
1102 in bytes.
1103
1104 @retval EFI_SUCCESS Secondary languages were correctly returned.
1105 @retval EFI_INVALID_PARAMETER PrimaryLanguage or SecondaryLanguages or
1106 SecondaryLanguagesSize was NULL.
1107 @retval EFI_BUFFER_TOO_SMALL The buffer specified by SecondaryLanguagesSize is
1108 too small to hold the returned information.
1109 SecondaryLanguageSize is updated to hold the size of
1110 the buffer required.
1111 @retval EFI_INVALID_LANGUAGE The language specified by PrimaryLanguage is not
1112 present in the specified package list.
1113 @retval EFI_NOT_FOUND The specified PackageList is not in the Database.
1114
1115 **/
1116 EFI_STATUS
1117 EFIAPI
1118 HiiGetSecondaryLanguages (
1119 IN CONST EFI_HII_STRING_PROTOCOL *This,
1120 IN EFI_HII_HANDLE PackageList,
1121 IN CONST CHAR8 *PrimaryLanguage,
1122 IN OUT CHAR8 *SecondaryLanguages,
1123 IN OUT UINTN *SecondaryLanguagesSize
1124 );
1125
1126 //
1127 // EFI_HII_DATABASE_PROTOCOL protocol interfaces
1128 //
1129
1130
1131 /**
1132 This function adds the packages in the package list to the database and returns a handle. If there is a
1133 EFI_DEVICE_PATH_PROTOCOL associated with the DriverHandle, then this function will
1134 create a package of type EFI_PACKAGE_TYPE_DEVICE_PATH and add it to the package list.
1135
1136 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1137 instance.
1138 @param PackageList A pointer to an EFI_HII_PACKAGE_LIST_HEADER
1139 structure.
1140 @param DriverHandle Associate the package list with this EFI handle.
1141 If a NULL is specified, this data will not be associate
1142 with any drivers and cannot have a callback induced.
1143 @param Handle A pointer to the EFI_HII_HANDLE instance.
1144
1145 @retval EFI_SUCCESS The package list associated with the Handle was
1146 added to the HII database.
1147 @retval EFI_OUT_OF_RESOURCES Unable to allocate necessary resources for the
1148 new database contents.
1149 @retval EFI_INVALID_PARAMETER PackageList is NULL or Handle is NULL.
1150
1151 **/
1152 EFI_STATUS
1153 EFIAPI
1154 HiiNewPackageList (
1155 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1156 IN CONST EFI_HII_PACKAGE_LIST_HEADER *PackageList,
1157 IN CONST EFI_HANDLE DriverHandle, OPTIONAL
1158 OUT EFI_HII_HANDLE *Handle
1159 );
1160
1161
1162 /**
1163 This function removes the package list that is associated with a handle Handle
1164 from the HII database. Before removing the package, any registered functions
1165 with the notification type REMOVE_PACK and the same package type will be called.
1166
1167 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1168 instance.
1169 @param Handle The handle that was registered to the data that
1170 is requested for removal.
1171
1172 @retval EFI_SUCCESS The data associated with the Handle was removed
1173 from the HII database.
1174 @retval EFI_NOT_FOUND The specified Handle is not in database.
1175
1176 **/
1177 EFI_STATUS
1178 EFIAPI
1179 HiiRemovePackageList (
1180 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1181 IN EFI_HII_HANDLE Handle
1182 );
1183
1184
1185 /**
1186 This function updates the existing package list (which has the specified Handle)
1187 in the HII databases, using the new package list specified by PackageList.
1188
1189 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1190 instance.
1191 @param Handle The handle that was registered to the data that
1192 is requested to be updated.
1193 @param PackageList A pointer to an EFI_HII_PACKAGE_LIST_HEADER
1194 package.
1195
1196 @retval EFI_SUCCESS The HII database was successfully updated.
1197 @retval EFI_OUT_OF_RESOURCES Unable to allocate enough memory for the updated
1198 database.
1199 @retval EFI_INVALID_PARAMETER PackageList was NULL.
1200 @retval EFI_NOT_FOUND The specified Handle is not in database.
1201
1202 **/
1203 EFI_STATUS
1204 EFIAPI
1205 HiiUpdatePackageList (
1206 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1207 IN EFI_HII_HANDLE Handle,
1208 IN CONST EFI_HII_PACKAGE_LIST_HEADER *PackageList
1209 );
1210
1211
1212 /**
1213 This function returns a list of the package handles of the specified type
1214 that are currently active in the database. The pseudo-type
1215 EFI_HII_PACKAGE_TYPE_ALL will cause all package handles to be listed.
1216
1217 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1218 instance.
1219 @param PackageType Specifies the package type of the packages to
1220 list or EFI_HII_PACKAGE_TYPE_ALL for all packages
1221 to be listed.
1222 @param PackageGuid If PackageType is EFI_HII_PACKAGE_TYPE_GUID, then
1223 this is the pointer to the GUID which must match
1224 the Guid field of EFI_HII_GUID_PACKAGE_GUID_HDR.
1225 Otherwise, it must be NULL.
1226 @param HandleBufferLength On input, a pointer to the length of the handle
1227 buffer. On output, the length of the handle
1228 buffer that is required for the handles found.
1229 @param Handle An array of EFI_HII_HANDLE instances returned.
1230
1231 @retval EFI_SUCCESS The matching handles are outputed successfully.
1232 HandleBufferLength is updated with the actual length.
1233 @retval EFI_BUFFER_TO_SMALL The HandleBufferLength parameter indicates that
1234 Handle is too small to support the number of
1235 handles. HandleBufferLength is updated with a
1236 value that will enable the data to fit.
1237 @retval EFI_NOT_FOUND No matching handle could not be found in
1238 database.
1239 @retval EFI_INVALID_PARAMETER Handle or HandleBufferLength was NULL.
1240 @retval EFI_INVALID_PARAMETER PackageType is not a EFI_HII_PACKAGE_TYPE_GUID but
1241 PackageGuid is not NULL, PackageType is a EFI_HII_
1242 PACKAGE_TYPE_GUID but PackageGuid is NULL.
1243
1244
1245 **/
1246 EFI_STATUS
1247 EFIAPI
1248 HiiListPackageLists (
1249 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1250 IN UINT8 PackageType,
1251 IN CONST EFI_GUID *PackageGuid,
1252 IN OUT UINTN *HandleBufferLength,
1253 OUT EFI_HII_HANDLE *Handle
1254 );
1255
1256
1257 /**
1258 This function will export one or all package lists in the database to a buffer.
1259 For each package list exported, this function will call functions registered
1260 with EXPORT_PACK and then copy the package list to the buffer.
1261
1262 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1263 instance.
1264 @param Handle An EFI_HII_HANDLE that corresponds to the desired
1265 package list in the HII database to export or
1266 NULL to indicate all package lists should be
1267 exported.
1268 @param BufferSize On input, a pointer to the length of the buffer.
1269 On output, the length of the buffer that is
1270 required for the exported data.
1271 @param Buffer A pointer to a buffer that will contain the
1272 results of the export function.
1273
1274 @retval EFI_SUCCESS Package exported.
1275 @retval EFI_BUFFER_TO_SMALL The HandleBufferLength parameter indicates that
1276 Handle is too small to support the number of
1277 handles. HandleBufferLength is updated with
1278 a value that will enable the data to fit.
1279 @retval EFI_NOT_FOUND The specifiecd Handle could not be found in the
1280 current database.
1281 @retval EFI_INVALID_PARAMETER Handle or Buffer or BufferSize was NULL.
1282
1283 **/
1284 EFI_STATUS
1285 EFIAPI
1286 HiiExportPackageLists (
1287 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1288 IN EFI_HII_HANDLE Handle,
1289 IN OUT UINTN *BufferSize,
1290 OUT EFI_HII_PACKAGE_LIST_HEADER *Buffer
1291 );
1292
1293
1294 /**
1295 This function registers a function which will be called when specified actions related to packages of
1296 the specified type occur in the HII database. By registering a function, other HII-related drivers are
1297 notified when specific package types are added, removed or updated in the HII database.
1298 Each driver or application which registers a notification should use
1299 EFI_HII_DATABASE_PROTOCOL.UnregisterPackageNotify() before exiting.
1300
1301 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1302 instance.
1303 @param PackageType Specifies the package type of the packages to
1304 list or EFI_HII_PACKAGE_TYPE_ALL for all packages
1305 to be listed.
1306 @param PackageGuid If PackageType is EFI_HII_PACKAGE_TYPE_GUID, then
1307 this is the pointer to the GUID which must match
1308 the Guid field of
1309 EFI_HII_GUID_PACKAGE_GUID_HDR. Otherwise, it must
1310 be NULL.
1311 @param PackageNotifyFn Points to the function to be called when the
1312 event specified by
1313 NotificationType occurs.
1314 @param NotifyType Describes the types of notification which this
1315 function will be receiving.
1316 @param NotifyHandle Points to the unique handle assigned to the
1317 registered notification. Can be used in
1318 EFI_HII_DATABASE_PROTOCOL.UnregisterPackageNotify()
1319 to stop notifications.
1320
1321 @retval EFI_SUCCESS Notification registered successfully.
1322 @retval EFI_OUT_OF_RESOURCES Unable to allocate necessary data structures
1323 @retval EFI_INVALID_PARAMETER NotifyHandle is NULL.
1324 @retval EFI_INVALID_PARAMETER PackageGuid is not NULL when PackageType is not
1325 EFI_HII_PACKAGE_TYPE_GUID.
1326 @retval EFI_INVALID_PARAMETER PackageGuid is NULL when PackageType is
1327 EFI_HII_PACKAGE_TYPE_GUID.
1328
1329 **/
1330 EFI_STATUS
1331 EFIAPI
1332 HiiRegisterPackageNotify (
1333 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1334 IN UINT8 PackageType,
1335 IN CONST EFI_GUID *PackageGuid,
1336 IN CONST EFI_HII_DATABASE_NOTIFY PackageNotifyFn,
1337 IN EFI_HII_DATABASE_NOTIFY_TYPE NotifyType,
1338 OUT EFI_HANDLE *NotifyHandle
1339 );
1340
1341
1342 /**
1343 Removes the specified HII database package-related notification.
1344
1345 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1346 instance.
1347 @param NotificationHandle The handle of the notification function being
1348 unregistered.
1349
1350 @retval EFI_SUCCESS Notification is unregistered successfully.
1351 @retval EFI_NOT_FOUND The incoming notification handle does not exist
1352 in current hii database.
1353
1354 **/
1355 EFI_STATUS
1356 EFIAPI
1357 HiiUnregisterPackageNotify (
1358 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1359 IN EFI_HANDLE NotificationHandle
1360 );
1361
1362
1363 /**
1364 This routine retrieves an array of GUID values for each keyboard layout that
1365 was previously registered in the system.
1366
1367 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1368 instance.
1369 @param KeyGuidBufferLength On input, a pointer to the length of the keyboard
1370 GUID buffer. On output, the length of the handle
1371 buffer that is required for the handles found.
1372 @param KeyGuidBuffer An array of keyboard layout GUID instances
1373 returned.
1374
1375 @retval EFI_SUCCESS KeyGuidBuffer was updated successfully.
1376 @retval EFI_BUFFER_TOO_SMALL The KeyGuidBufferLength parameter indicates
1377 that KeyGuidBuffer is too small to support the
1378 number of GUIDs. KeyGuidBufferLength is
1379 updated with a value that will enable the data to
1380 fit.
1381 @retval EFI_INVALID_PARAMETER The KeyGuidBuffer or KeyGuidBufferLength was
1382 NULL.
1383 @retval EFI_NOT_FOUND There was no keyboard layout.
1384
1385 **/
1386 EFI_STATUS
1387 EFIAPI
1388 HiiFindKeyboardLayouts (
1389 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1390 IN OUT UINT16 *KeyGuidBufferLength,
1391 OUT EFI_GUID *KeyGuidBuffer
1392 );
1393
1394
1395 /**
1396 This routine retrieves the requested keyboard layout. The layout is a physical description of the keys
1397 on a keyboard and the character(s) that are associated with a particular set of key strokes.
1398
1399 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1400 instance.
1401 @param KeyGuid A pointer to the unique ID associated with a
1402 given keyboard layout. If KeyGuid is NULL then
1403 the current layout will be retrieved.
1404 @param KeyboardLayoutLength On input, a pointer to the length of the
1405 KeyboardLayout buffer. On output, the length of
1406 the data placed into KeyboardLayout.
1407 @param KeyboardLayout A pointer to a buffer containing the retrieved
1408 keyboard layout.
1409
1410 @retval EFI_SUCCESS The keyboard layout was retrieved successfully.
1411 @retval EFI_NOT_FOUND The requested keyboard layout was not found.
1412 @retval EFI_INVALID_PARAMETER The KeyboardLayout or KeyboardLayoutLength was
1413 NULL.
1414
1415 **/
1416 EFI_STATUS
1417 EFIAPI
1418 HiiGetKeyboardLayout (
1419 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1420 IN CONST EFI_GUID *KeyGuid,
1421 IN OUT UINT16 *KeyboardLayoutLength,
1422 OUT EFI_HII_KEYBOARD_LAYOUT *KeyboardLayout
1423 );
1424
1425
1426 /**
1427 This routine sets the default keyboard layout to the one referenced by KeyGuid. When this routine
1428 is called, an event will be signaled of the EFI_HII_SET_KEYBOARD_LAYOUT_EVENT_GUID
1429 group type. This is so that agents which are sensitive to the current keyboard layout being changed
1430 can be notified of this change.
1431
1432 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1433 instance.
1434 @param KeyGuid A pointer to the unique ID associated with a
1435 given keyboard layout.
1436
1437 @retval EFI_SUCCESS The current keyboard layout was successfully set.
1438 @retval EFI_NOT_FOUND The referenced keyboard layout was not found, so
1439 action was taken.
1440 @retval EFI_INVALID_PARAMETER The KeyGuid was NULL.
1441
1442 **/
1443 EFI_STATUS
1444 EFIAPI
1445 HiiSetKeyboardLayout (
1446 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1447 IN CONST EFI_GUID *KeyGuid
1448 );
1449
1450
1451 /**
1452 Return the EFI handle associated with a package list.
1453
1454 @param This A pointer to the EFI_HII_DATABASE_PROTOCOL
1455 instance.
1456 @param PackageListHandle An EFI_HII_HANDLE that corresponds to the desired
1457 package list in the HIIdatabase.
1458 @param DriverHandle On return, contains the EFI_HANDLE which was
1459 registered with the package list in
1460 NewPackageList().
1461
1462 @retval EFI_SUCCESS The DriverHandle was returned successfully.
1463 @retval EFI_INVALID_PARAMETER The PackageListHandle was not valid or
1464 DriverHandle was NULL.
1465
1466 **/
1467 EFI_STATUS
1468 EFIAPI
1469 HiiGetPackageListHandle (
1470 IN CONST EFI_HII_DATABASE_PROTOCOL *This,
1471 IN EFI_HII_HANDLE PackageListHandle,
1472 OUT EFI_HANDLE *DriverHandle
1473 );
1474
1475 //
1476 // EFI_HII_CONFIG_ROUTING_PROTOCOL interfaces
1477 //
1478
1479
1480 /**
1481 This function allows a caller to extract the current configuration
1482 for one or more named elements from one or more drivers.
1483
1484 @param This A pointer to the EFI_HII_CONFIG_ROUTING_PROTOCOL
1485 instance.
1486 @param Request A null-terminated Unicode string in
1487 <MultiConfigRequest> format.
1488 @param Progress On return, points to a character in the Request
1489 string. Points to the string's null terminator if
1490 request was successful. Points to the most recent
1491 & before the first failing name / value pair (or
1492 the beginning of the string if the failure is in
1493 the first name / value pair) if the request was
1494 not successful.
1495 @param Results Null-terminated Unicode string in
1496 <MultiConfigAltResp> format which has all values
1497 filled in for the names in the Request string.
1498 String to be allocated by the called function.
1499
1500 @retval EFI_SUCCESS The Results string is filled with the values
1501 corresponding to all requested names.
1502 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the parts of the
1503 results that must be stored awaiting possible
1504 future protocols.
1505 @retval EFI_NOT_FOUND Routing data doesn't match any known driver.
1506 Progress set to the "G" in "GUID" of the
1507 routing header that doesn't match. Note: There
1508 is no requirement that all routing data
1509 be validated before any configuration extraction.
1510 @retval EFI_INVALID_PARAMETER For example, passing in a NULL for the Request
1511 parameter would result in this type of error. The
1512 Progress parameter is set to NULL.
1513 @retval EFI_INVALID_PARAMETER Illegal syntax. Progress set to most recent &
1514 before the error or the beginning of the string.
1515 @retval EFI_INVALID_PARAMETER Unknown name. Progress points to the & before the
1516 name in question.
1517
1518 **/
1519 EFI_STATUS
1520 EFIAPI
1521 HiiConfigRoutingExtractConfig (
1522 IN CONST EFI_HII_CONFIG_ROUTING_PROTOCOL *This,
1523 IN CONST EFI_STRING Request,
1524 OUT EFI_STRING *Progress,
1525 OUT EFI_STRING *Results
1526 );
1527
1528
1529 /**
1530 This function allows the caller to request the current configuration for the
1531 entirety of the current HII database and returns the data in a null-terminated Unicode string.
1532
1533 @param This A pointer to the EFI_HII_CONFIG_ROUTING_PROTOCOL
1534 instance.
1535 @param Results Null-terminated Unicode string in
1536 <MultiConfigAltResp> format which has all values
1537 filled in for the names in the Request string.
1538 String to be allocated by the called function.
1539 De-allocation is up to the caller.
1540
1541 @retval EFI_SUCCESS The Results string is filled with the values
1542 corresponding to all requested names.
1543 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the parts of the
1544 results that must be stored awaiting possible
1545 future protocols.
1546 @retval EFI_INVALID_PARAMETER For example, passing in a NULL for the Results
1547 parameter would result in this type of error.
1548
1549 **/
1550 EFI_STATUS
1551 EFIAPI
1552 HiiConfigRoutingExportConfig (
1553 IN CONST EFI_HII_CONFIG_ROUTING_PROTOCOL *This,
1554 OUT EFI_STRING *Results
1555 );
1556
1557
1558 /**
1559 This function processes the results of processing forms and routes it to the
1560 appropriate handlers or storage.
1561
1562 @param This A pointer to the EFI_HII_CONFIG_ROUTING_PROTOCOL
1563 instance.
1564 @param Configuration A null-terminated Unicode string in
1565 <MulltiConfigResp> format.
1566 @param Progress A pointer to a string filled in with the offset
1567 of the most recent & before the first failing
1568 name / value pair (or the beginning of the string
1569 if the failure is in the first name / value pair)
1570 or the terminating NULL if all was successful.
1571
1572 @retval EFI_SUCCESS The results have been distributed or are awaiting
1573 distribution.
1574 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the parts of the
1575 results that must be stored awaiting possible
1576 future protocols.
1577 @retval EFI_INVALID_PARAMETER Passing in a NULL for the Configuration parameter
1578 would result in this type of error.
1579 @retval EFI_NOT_FOUND Target for the specified routing data was not
1580 found.
1581
1582 **/
1583 EFI_STATUS
1584 EFIAPI
1585 HiiConfigRoutingRouteConfig (
1586 IN CONST EFI_HII_CONFIG_ROUTING_PROTOCOL *This,
1587 IN CONST EFI_STRING Configuration,
1588 OUT EFI_STRING *Progress
1589 );
1590
1591
1592
1593 /**
1594 This helper function is to be called by drivers to map configuration data stored
1595 in byte array ("block") formats such as UEFI Variables into current configuration strings.
1596
1597 @param This A pointer to the EFI_HII_CONFIG_ROUTING_PROTOCOL
1598 instance.
1599 @param ConfigRequest A null-terminated Unicode string in
1600 <ConfigRequest> format.
1601 @param Block Array of bytes defining the block's
1602 configuration.
1603 @param BlockSize Length in bytes of Block.
1604 @param Config Filled-in configuration string. String allocated
1605 by the function. Returned only if call is
1606 successful.
1607 @param Progress A pointer to a string filled in with the offset
1608 of the most recent & before the first failing
1609 name/value pair (or the beginning of the string
1610 if the failure is in the first name / value pair)
1611 or the terminating NULL if all was successful.
1612
1613 @retval EFI_SUCCESS The request succeeded. Progress points to the
1614 null terminator at the end of the ConfigRequest
1615 string.
1616 @retval EFI_OUT_OF_RESOURCES Not enough memory to allocate Config.
1617 Progress points to the first character of
1618 ConfigRequest.
1619 @retval EFI_INVALID_PARAMETER Passing in a NULL for the ConfigRequest or
1620 Block parameter would result in this type of
1621 error. Progress points to the first character of
1622 ConfigRequest.
1623 @retval EFI_NOT_FOUND Target for the specified routing data was not
1624 found. Progress points to the "G" in "GUID" of
1625 the errant routing data.
1626 @retval EFI_DEVICE_ERROR Block not large enough. Progress undefined.
1627 @retval EFI_INVALID_PARAMETER Encountered non <BlockName> formatted string.
1628 Block is left updated and Progress points at
1629 the '&' preceding the first non-<BlockName>.
1630
1631 **/
1632 EFI_STATUS
1633 EFIAPI
1634 HiiBlockToConfig (
1635 IN CONST EFI_HII_CONFIG_ROUTING_PROTOCOL *This,
1636 IN CONST EFI_STRING ConfigRequest,
1637 IN CONST UINT8 *Block,
1638 IN CONST UINTN BlockSize,
1639 OUT EFI_STRING *Config,
1640 OUT EFI_STRING *Progress
1641 );
1642
1643
1644 /**
1645 This helper function is to be called by drivers to map configuration strings
1646 to configurations stored in byte array ("block") formats such as UEFI Variables.
1647
1648 @param This A pointer to the EFI_HII_CONFIG_ROUTING_PROTOCOL
1649 instance.
1650 @param ConfigResp A null-terminated Unicode string in <ConfigResp>
1651 format.
1652 @param Block A possibly null array of bytes representing the
1653 current block. Only bytes referenced in the
1654 ConfigResp string in the block are modified. If
1655 this parameter is null or if the *BlockSize
1656 parameter is (on input) shorter than required by
1657 the Configuration string, only the BlockSize
1658 parameter is updated and an appropriate status
1659 (see below) is returned.
1660 @param BlockSize The length of the Block in units of UINT8. On
1661 input, this is the size of the Block. On output,
1662 if successful, contains the index of the last
1663 modified byte in the Block.
1664 @param Progress On return, points to an element of the ConfigResp
1665 string filled in with the offset of the most
1666 recent '&' before the first failing name / value
1667 pair (or the beginning of the string if the
1668 failure is in the first name / value pair) or
1669 the terminating NULL if all was successful.
1670
1671 @retval EFI_SUCCESS The request succeeded. Progress points to the
1672 null terminator at the end of the ConfigResp
1673 string.
1674 @retval EFI_OUT_OF_RESOURCES Not enough memory to allocate Config.
1675 Progress points to the first character of
1676 ConfigResp.
1677 @retval EFI_INVALID_PARAMETER Passing in a NULL for the ConfigResp or
1678 Block parameter would result in this type of
1679 error. Progress points to the first character of
1680 ConfigResp.
1681 @retval EFI_NOT_FOUND Target for the specified routing data was not
1682 found. Progress points to the "G" in "GUID" of
1683 the errant routing data.
1684 @retval EFI_INVALID_PARAMETER Encountered non <BlockName> formatted name /
1685 value pair. Block is left updated and
1686 Progress points at the '&' preceding the first
1687 non-<BlockName>.
1688
1689 **/
1690 EFI_STATUS
1691 EFIAPI
1692 HiiConfigToBlock (
1693 IN CONST EFI_HII_CONFIG_ROUTING_PROTOCOL *This,
1694 IN CONST EFI_STRING ConfigResp,
1695 IN OUT UINT8 *Block,
1696 IN OUT UINTN *BlockSize,
1697 OUT EFI_STRING *Progress
1698 );
1699
1700
1701 /**
1702 This helper function is to be called by drivers to extract portions of
1703 a larger configuration string.
1704
1705 @param This A pointer to the EFI_HII_CONFIG_ROUTING_PROTOCOL
1706 instance.
1707 @param Configuration A null-terminated Unicode string in
1708 <MultiConfigAltResp> format.
1709 @param Guid A pointer to the GUID value to search for in the
1710 routing portion of the ConfigResp string when
1711 retrieving the requested data. If Guid is NULL,
1712 then all GUID values will be searched for.
1713 @param Name A pointer to the NAME value to search for in the
1714 routing portion of the ConfigResp string when
1715 retrieving the requested data. If Name is NULL,
1716 then all Name values will be searched for.
1717 @param DevicePath A pointer to the PATH value to search for in the
1718 routing portion of the ConfigResp string when
1719 retrieving the requested data. If DevicePath is
1720 NULL, then all DevicePath values will be
1721 searched for.
1722 @param AltCfgId A pointer to the ALTCFG value to search for in
1723 the routing portion of the ConfigResp string
1724 when retrieving the requested data. If this
1725 parameter is NULL, then the current setting will
1726 be retrieved.
1727 @param AltCfgResp A pointer to a buffer which will be allocated by
1728 the function which contains the retrieved string
1729 as requested. This buffer is only allocated if
1730 the call was successful.
1731
1732 @retval EFI_SUCCESS The request succeeded. The requested data was
1733 extracted and placed in the newly allocated
1734 AltCfgResp buffer.
1735 @retval EFI_OUT_OF_RESOURCES Not enough memory to allocate AltCfgResp.
1736 @retval EFI_INVALID_PARAMETER Any parameter is invalid.
1737 @retval EFI_NOT_FOUND Target for the specified routing data was not
1738 found.
1739
1740 **/
1741 EFI_STATUS
1742 EFIAPI
1743 HiiGetAltCfg (
1744 IN CONST EFI_HII_CONFIG_ROUTING_PROTOCOL *This,
1745 IN CONST EFI_STRING Configuration,
1746 IN CONST EFI_GUID *Guid,
1747 IN CONST EFI_STRING Name,
1748 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath,
1749 IN CONST UINT16 *AltCfgId,
1750 OUT EFI_STRING *AltCfgResp
1751 );
1752
1753
1754 /**
1755 Compare whether two names of languages are identical.
1756
1757 @param Language1 Name of language 1 from StringPackage
1758 @param Language2 Name of language 2 to be compared with language 1.
1759
1760 @retval TRUE same
1761 @retval FALSE not same
1762
1763 **/
1764 BOOLEAN
1765 HiiCompareLanguage (
1766 IN CHAR8 *Language1,
1767 IN CHAR8 *Language2
1768 )
1769 ;
1770
1771 //
1772 // Global variables
1773 //
1774 extern EFI_EVENT gHiiKeyboardLayoutChanged;
1775 #endif