]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Setup.h
Add SuppressIf form support in SetupBrowser driver.
[mirror_edk2.git] / MdeModulePkg / Universal / SetupBrowserDxe / Setup.h
1 /** @file
2 Private MACRO, structure and function definitions for Setup Browser module.
3
4 Copyright (c) 2007 - 2009, 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
16 #ifndef _SETUP_H_
17 #define _SETUP_H_
18
19
20 #include <PiDxe.h>
21
22 #include <Protocol/SimpleTextOut.h>
23 #include <Protocol/SimpleTextIn.h>
24 #include <Protocol/FormBrowser2.h>
25 #include <Protocol/DevicePath.h>
26 #include <Protocol/UnicodeCollation.h>
27 #include <Protocol/HiiConfigAccess.h>
28 #include <Protocol/HiiConfigRouting.h>
29 #include <Protocol/HiiDatabase.h>
30 #include <Protocol/HiiString.h>
31
32 #include <Guid/MdeModuleHii.h>
33 #include <Guid/HiiPlatformSetupFormset.h>
34
35 #include <Library/PrintLib.h>
36 #include <Library/DebugLib.h>
37 #include <Library/BaseMemoryLib.h>
38 #include <Library/UefiRuntimeServicesTableLib.h>
39 #include <Library/UefiDriverEntryPoint.h>
40 #include <Library/UefiBootServicesTableLib.h>
41 #include <Library/BaseLib.h>
42 #include <Library/MemoryAllocationLib.h>
43 #include <Library/HiiLib.h>
44 #include <Library/PcdLib.h>
45 #include <Library/DevicePathLib.h>
46
47 #include "Colors.h"
48
49 //
50 // This is the generated header file which includes whatever needs to be exported (strings + IFR)
51 //
52
53 extern UINT8 SetupBrowserStrings[];
54
55 //
56 // Screen definitions
57 //
58 #define BANNER_HEIGHT 6
59 #define BANNER_COLUMNS 3
60
61 #define FRONT_PAGE_HEADER_HEIGHT 6
62 #define NONE_FRONT_PAGE_HEADER_HEIGHT 3
63 #define LEFT_SKIPPED_COLUMNS 4
64 #define FOOTER_HEIGHT 4
65 #define STATUS_BAR_HEIGHT 1
66 #define SCROLL_ARROW_HEIGHT 1
67 #define POPUP_PAD_SPACE_COUNT 5
68 #define POPUP_FRAME_WIDTH 2
69
70 //
71 // Definition for function key setting
72 //
73 #define NONE_FUNCTION_KEY_SETTING 0
74 #define DEFAULT_FUNCTION_KEY_SETTING (FUNCTION_NINE | FUNCTION_TEN)
75
76 #define FUNCTION_NINE (1 << 2)
77 #define FUNCTION_TEN (1 << 3)
78
79 typedef struct {
80 EFI_GUID FormSetGuid;
81 UINTN KeySetting;
82 } FUNCTIION_KEY_SETTING;
83
84 //
85 // Character definitions
86 //
87 #define CHAR_SPACE 0x0020
88 #define UPPER_LOWER_CASE_OFFSET 0x20
89
90 //
91 // Time definitions
92 //
93 #define ONE_SECOND 10000000
94
95 //
96 // Display definitions
97 //
98 #define LEFT_HYPER_DELIMITER L'<'
99 #define RIGHT_HYPER_DELIMITER L'>'
100
101 #define LEFT_ONEOF_DELIMITER L'<'
102 #define RIGHT_ONEOF_DELIMITER L'>'
103
104 #define LEFT_NUMERIC_DELIMITER L'['
105 #define RIGHT_NUMERIC_DELIMITER L']'
106
107 #define LEFT_CHECKBOX_DELIMITER L'['
108 #define RIGHT_CHECKBOX_DELIMITER L']'
109
110 #define CHECK_ON L'X'
111 #define CHECK_OFF L' '
112
113 #define TIME_SEPARATOR L':'
114 #define DATE_SEPARATOR L'/'
115
116 #define YES_ANSWER L'Y'
117 #define NO_ANSWER L'N'
118
119 //
120 // This is the Input Error Message
121 //
122 #define INPUT_ERROR 1
123
124 //
125 // This is the NV RAM update required Message
126 //
127 #define NV_UPDATE_REQUIRED 2
128
129 //
130 // Refresh the Status Bar with flags
131 //
132 #define REFRESH_STATUS_BAR 0xff
133
134 //
135 // Incremental string lenght of ConfigRequest
136 //
137 #define CONFIG_REQUEST_STRING_INCREMENTAL 1024
138
139 //
140 // HII value compare result
141 //
142 #define HII_VALUE_UNDEFINED 0
143 #define HII_VALUE_EQUAL 1
144 #define HII_VALUE_LESS_THAN 2
145 #define HII_VALUE_GREATER_THAN 3
146
147 //
148 // Incremental size of stack for expression
149 //
150 #define EXPRESSION_STACK_SIZE_INCREMENT 0x100
151
152
153 #define EFI_SPECIFICATION_ERRATA_VERSION 0
154
155 #define EFI_IFR_SPECIFICATION_VERSION \
156 ((((EFI_SPECIFICATION_VERSION) >> 8) & 0xff00) | \
157 (((EFI_SPECIFICATION_VERSION) & 0xf) << 4) | \
158 ((EFI_SPECIFICATION_ERRATA_VERSION) & 0xf))
159
160 #define SETUP_DRIVER_SIGNATURE SIGNATURE_32 ('F', 'B', 'D', 'V')
161 typedef struct {
162 UINT32 Signature;
163
164 EFI_HANDLE Handle;
165
166 //
167 // Produced protocol
168 //
169 EFI_FORM_BROWSER2_PROTOCOL FormBrowser2;
170
171 } SETUP_DRIVER_PRIVATE_DATA;
172
173 typedef struct {
174 EFI_STRING_ID Banner[BANNER_HEIGHT][BANNER_COLUMNS];
175 } BANNER_DATA;
176
177 //
178 // IFR relative definition
179 //
180 #define EFI_HII_EXPRESSION_INCONSISTENT_IF 0
181 #define EFI_HII_EXPRESSION_NO_SUBMIT_IF 1
182 #define EFI_HII_EXPRESSION_GRAY_OUT_IF 2
183 #define EFI_HII_EXPRESSION_SUPPRESS_IF 3
184 #define EFI_HII_EXPRESSION_DISABLE_IF 4
185 #define EFI_HII_EXPRESSION_VALUE 5
186 #define EFI_HII_EXPRESSION_RULE 6
187
188 #define EFI_HII_VARSTORE_BUFFER 0
189 #define EFI_HII_VARSTORE_NAME_VALUE 1
190 #define EFI_HII_VARSTORE_EFI_VARIABLE 2
191
192 #define FORM_INCONSISTENT_VALIDATION 0
193 #define FORM_NO_SUBMIT_VALIDATION 1
194
195 #define FORMSET_CLASS_PLATFORM_SETUP 0
196 #define FORMSET_CLASS_FRONT_PAGE 1
197
198 typedef struct {
199 UINT8 Type;
200 EFI_IFR_TYPE_VALUE Value;
201 } EFI_HII_VALUE;
202
203 #define NAME_VALUE_NODE_SIGNATURE SIGNATURE_32 ('N', 'V', 'S', 'T')
204
205 typedef struct {
206 UINTN Signature;
207 LIST_ENTRY Link;
208 CHAR16 *Name;
209 CHAR16 *Value;
210 CHAR16 *EditValue;
211 } NAME_VALUE_NODE;
212
213 #define NAME_VALUE_NODE_FROM_LINK(a) CR (a, NAME_VALUE_NODE, Link, NAME_VALUE_NODE_SIGNATURE)
214
215 #define FORMSET_STORAGE_SIGNATURE SIGNATURE_32 ('F', 'S', 'T', 'G')
216
217 typedef struct {
218 UINTN Signature;
219 LIST_ENTRY Link;
220
221 UINT8 Type; // Storage type
222
223 UINT16 VarStoreId;
224 EFI_GUID Guid;
225
226 CHAR16 *Name; // For EFI_IFR_VARSTORE
227 UINT16 Size;
228 UINT8 *Buffer;
229 UINT8 *EditBuffer; // Edit copy for Buffer Storage
230
231 LIST_ENTRY NameValueListHead; // List of NAME_VALUE_NODE
232
233 UINT32 Attributes; // For EFI_IFR_VARSTORE_EFI: EFI Variable attribute
234
235 CHAR16 *ConfigHdr; // <ConfigHdr>
236 CHAR16 *ConfigRequest; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
237 UINTN ElementCount; // Number of <RequestElement> in the <ConfigRequest>
238 UINTN SpareStrLen; // Spare length of ConfigRequest string buffer
239 } FORMSET_STORAGE;
240
241 #define FORMSET_STORAGE_FROM_LINK(a) CR (a, FORMSET_STORAGE, Link, FORMSET_STORAGE_SIGNATURE)
242
243 #define EXPRESSION_OPCODE_SIGNATURE SIGNATURE_32 ('E', 'X', 'O', 'P')
244
245 typedef struct {
246 UINTN Signature;
247 LIST_ENTRY Link;
248
249 UINT8 Operand;
250
251 UINT8 Format; // For EFI_IFR_TO_STRING, EFI_IFR_FIND
252 UINT8 Flags; // For EFI_IFR_SPAN
253 UINT8 RuleId; // For EFI_IFR_RULE_REF
254
255 EFI_HII_VALUE Value; // For EFI_IFR_EQ_ID_VAL, EFI_IFR_UINT64, EFI_IFR_UINT32, EFI_IFR_UINT16, EFI_IFR_UINT8, EFI_IFR_STRING_REF1
256
257 EFI_QUESTION_ID QuestionId; // For EFI_IFR_EQ_ID_ID, EFI_IFR_EQ_ID_VAL_LIST, EFI_IFR_QUESTION_REF1
258 EFI_QUESTION_ID QuestionId2;
259
260 UINT16 ListLength; // For EFI_IFR_EQ_ID_VAL_LIST
261 UINT16 *ValueList;
262
263 EFI_STRING_ID DevicePath; // For EFI_IFR_QUESTION_REF3_2, EFI_IFR_QUESTION_REF3_3
264 EFI_GUID Guid;
265 } EXPRESSION_OPCODE;
266
267 #define EXPRESSION_OPCODE_FROM_LINK(a) CR (a, EXPRESSION_OPCODE, Link, EXPRESSION_OPCODE_SIGNATURE)
268
269 #define FORM_EXPRESSION_SIGNATURE SIGNATURE_32 ('F', 'E', 'X', 'P')
270
271 typedef struct {
272 UINTN Signature;
273 LIST_ENTRY Link;
274
275 UINT8 Type; // Type for this expression
276
277 UINT8 RuleId; // For EFI_IFR_RULE only
278 EFI_STRING_ID Error; // For EFI_IFR_NO_SUBMIT_IF, EFI_IFR_INCONSISTENT_IF only
279
280 EFI_HII_VALUE Result; // Expression evaluation result
281
282 LIST_ENTRY OpCodeListHead; // OpCodes consist of this expression (EXPRESSION_OPCODE)
283 } FORM_EXPRESSION;
284
285 #define FORM_EXPRESSION_FROM_LINK(a) CR (a, FORM_EXPRESSION, Link, FORM_EXPRESSION_SIGNATURE)
286
287 #define QUESTION_DEFAULT_SIGNATURE SIGNATURE_32 ('Q', 'D', 'F', 'T')
288
289 typedef struct {
290 UINTN Signature;
291 LIST_ENTRY Link;
292
293 UINT16 DefaultId;
294 EFI_HII_VALUE Value; // Default value
295
296 FORM_EXPRESSION *ValueExpression; // Not-NULL indicates default value is provided by EFI_IFR_VALUE
297 } QUESTION_DEFAULT;
298
299 #define QUESTION_DEFAULT_FROM_LINK(a) CR (a, QUESTION_DEFAULT, Link, QUESTION_DEFAULT_SIGNATURE)
300
301 #define QUESTION_OPTION_SIGNATURE SIGNATURE_32 ('Q', 'O', 'P', 'T')
302
303 typedef struct {
304 UINTN Signature;
305 LIST_ENTRY Link;
306
307 EFI_STRING_ID Text;
308 UINT8 Flags;
309 EFI_HII_VALUE Value;
310 EFI_IMAGE_ID ImageId;
311
312 FORM_EXPRESSION *SuppressExpression; // Non-NULL indicates nested inside of SuppressIf
313 } QUESTION_OPTION;
314
315 #define QUESTION_OPTION_FROM_LINK(a) CR (a, QUESTION_OPTION, Link, QUESTION_OPTION_SIGNATURE)
316
317 #define FORM_BROWSER_STATEMENT_SIGNATURE SIGNATURE_32 ('F', 'S', 'T', 'A')
318 typedef struct {
319 UINTN Signature;
320 LIST_ENTRY Link;
321
322 UINT8 Operand; // The operand (first byte) of this Statement or Question
323
324 //
325 // Statement Header
326 //
327 EFI_STRING_ID Prompt;
328 EFI_STRING_ID Help;
329 EFI_STRING_ID TextTwo; // For EFI_IFR_TEXT
330
331 //
332 // Question Header
333 //
334 EFI_QUESTION_ID QuestionId; // The value of zero is reserved
335 EFI_VARSTORE_ID VarStoreId; // A value of zero indicates no variable storage
336 FORMSET_STORAGE *Storage;
337 union {
338 EFI_STRING_ID VarName;
339 UINT16 VarOffset;
340 } VarStoreInfo;
341 UINT16 StorageWidth;
342 UINT8 QuestionFlags;
343 CHAR16 *VariableName; // Name/Value or EFI Variable name
344 CHAR16 *BlockName; // Buffer storage block name: "OFFSET=...WIDTH=..."
345
346 EFI_HII_VALUE HiiValue; // Edit copy for checkbox, numberic, oneof
347 UINT8 *BufferValue; // Edit copy for string, password, orderedlist
348 UINT8 ValueType; // Data type for orderedlist value array
349
350 //
351 // OpCode specific members
352 //
353 UINT8 Flags; // for EFI_IFR_CHECKBOX, EFI_IFR_DATE, EFI_IFR_NUMERIC, EFI_IFR_ONE_OF,
354 // EFI_IFR_ORDERED_LIST, EFI_IFR_STRING,EFI_IFR_SUBTITLE,EFI_IFR_TIME, EFI_IFR_BANNER
355 UINT8 MaxContainers; // for EFI_IFR_ORDERED_LIST
356
357 UINT16 BannerLineNumber; // for EFI_IFR_BANNER, 1-based line number
358 EFI_STRING_ID QuestionConfig; // for EFI_IFR_ACTION, if 0 then no configuration string will be processed
359
360 UINT64 Minimum; // for EFI_IFR_ONE_OF/EFI_IFR_NUMERIC, it's Min/Max value
361 UINT64 Maximum; // for EFI_IFR_STRING/EFI_IFR_PASSWORD, it's Min/Max length
362 UINT64 Step;
363
364 EFI_DEFAULT_ID DefaultId; // for EFI_IFR_RESET_BUTTON
365 EFI_FORM_ID RefFormId; // for EFI_IFR_REF
366 EFI_QUESTION_ID RefQuestionId; // for EFI_IFR_REF2
367 EFI_GUID RefFormSetId; // for EFI_IFR_REF3
368 EFI_STRING_ID RefDevicePath; // for EFI_IFR_REF4
369
370 //
371 // Get from IFR parsing
372 //
373 FORM_EXPRESSION *ValueExpression; // nested EFI_IFR_VALUE, provide Question value and indicate Question is ReadOnly
374 LIST_ENTRY DefaultListHead; // nested EFI_IFR_DEFAULT list (QUESTION_DEFAULT), provide default values
375 LIST_ENTRY OptionListHead; // nested EFI_IFR_ONE_OF_OPTION list (QUESTION_OPTION)
376
377 EFI_IMAGE_ID ImageId; // nested EFI_IFR_IMAGE
378 UINT8 RefreshInterval; // nested EFI_IFR_REFRESH, refresh interval(in seconds) for Question value, 0 means no refresh
379 BOOLEAN InSubtitle; // nesting inside of EFI_IFR_SUBTITLE
380
381 LIST_ENTRY InconsistentListHead;// nested inconsistent expression list (FORM_EXPRESSION)
382 LIST_ENTRY NoSubmitListHead; // nested nosubmit expression list (FORM_EXPRESSION)
383 FORM_EXPRESSION *GrayOutExpression; // nesting inside of GrayOutIf
384 FORM_EXPRESSION *SuppressExpression; // nesting inside of SuppressIf
385 FORM_EXPRESSION *DisableExpression; // nesting inside of DisableIf
386
387 } FORM_BROWSER_STATEMENT;
388
389 #define FORM_BROWSER_STATEMENT_FROM_LINK(a) CR (a, FORM_BROWSER_STATEMENT, Link, FORM_BROWSER_STATEMENT_SIGNATURE)
390
391 #define FORM_BROWSER_FORM_SIGNATURE SIGNATURE_32 ('F', 'F', 'R', 'M')
392
393 typedef struct {
394 UINTN Signature;
395 LIST_ENTRY Link;
396
397 UINT16 FormId;
398 EFI_STRING_ID FormTitle;
399
400 EFI_IMAGE_ID ImageId;
401
402 LIST_ENTRY ExpressionListHead; // List of Expressions (FORM_EXPRESSION)
403 LIST_ENTRY StatementListHead; // List of Statements and Questions (FORM_BROWSER_STATEMENT)
404 FORM_EXPRESSION *SuppressExpression; // nesting inside of SuppressIf
405 } FORM_BROWSER_FORM;
406
407 #define FORM_BROWSER_FORM_FROM_LINK(a) CR (a, FORM_BROWSER_FORM, Link, FORM_BROWSER_FORM_SIGNATURE)
408
409 #define FORMSET_DEFAULTSTORE_SIGNATURE SIGNATURE_32 ('F', 'D', 'F', 'S')
410
411 typedef struct {
412 UINTN Signature;
413 LIST_ENTRY Link;
414
415 UINT16 DefaultId;
416 EFI_STRING_ID DefaultName;
417 } FORMSET_DEFAULTSTORE;
418
419 #define FORMSET_DEFAULTSTORE_FROM_LINK(a) CR (a, FORMSET_DEFAULTSTORE, Link, FORMSET_DEFAULTSTORE_SIGNATURE)
420
421 typedef struct {
422 EFI_HII_HANDLE HiiHandle;
423 EFI_HANDLE DriverHandle;
424 EFI_HII_CONFIG_ACCESS_PROTOCOL *ConfigAccess;
425 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
426
427 UINTN IfrBinaryLength;
428 UINT8 *IfrBinaryData;
429
430 EFI_GUID Guid;
431 EFI_STRING_ID FormSetTitle;
432 EFI_STRING_ID Help;
433 UINT8 NumberOfClassGuid;
434 EFI_GUID ClassGuid[3]; // Up to three ClassGuid
435 UINT16 Class; // Tiano extended Class code
436 UINT16 SubClass; // Tiano extended Subclass code
437 EFI_IMAGE_ID ImageId;
438
439 FORM_BROWSER_STATEMENT *StatementBuffer; // Buffer for all Statements and Questions
440 EXPRESSION_OPCODE *ExpressionBuffer; // Buffer for all Expression OpCode
441
442 LIST_ENTRY StorageListHead; // Storage list (FORMSET_STORAGE)
443 LIST_ENTRY DefaultStoreListHead; // DefaultStore list (FORMSET_DEFAULTSTORE)
444 LIST_ENTRY FormListHead; // Form list (FORM_BROWSER_FORM)
445 LIST_ENTRY ExpressionListHead; // List of Expressions (FORM_EXPRESSION)
446 } FORM_BROWSER_FORMSET;
447
448 #define BROWSER_CONTEXT_SIGNATURE SIGNATURE_32 ('B', 'C', 'T', 'X')
449
450 typedef struct {
451 UINTN Signature;
452 LIST_ENTRY Link;
453
454 //
455 // Globals defined in Setup.c
456 //
457 BANNER_DATA *BannerData;
458 UINTN ClassOfVfr;
459 UINTN FunctionKeySetting;
460 BOOLEAN ResetRequired;
461 BOOLEAN NvUpdateRequired;
462 UINT16 Direction;
463 EFI_SCREEN_DESCRIPTOR ScreenDimensions;
464 CHAR16 *FunctionNineString;
465 CHAR16 *FunctionTenString;
466 CHAR16 *EnterString;
467 CHAR16 *EnterCommitString;
468 CHAR16 *EnterEscapeString;
469 CHAR16 *EscapeString;
470 CHAR16 *SaveFailed;
471 CHAR16 *MoveHighlight;
472 CHAR16 *MakeSelection;
473 CHAR16 *DecNumericInput;
474 CHAR16 *HexNumericInput;
475 CHAR16 *ToggleCheckBox;
476 CHAR16 *PromptForData;
477 CHAR16 *PromptForPassword;
478 CHAR16 *PromptForNewPassword;
479 CHAR16 *ConfirmPassword;
480 CHAR16 *ConfirmError;
481 CHAR16 *PassowordInvalid;
482 CHAR16 *PressEnter;
483 CHAR16 *EmptyString;
484 CHAR16 *AreYouSure;
485 CHAR16 *YesResponse;
486 CHAR16 *NoResponse;
487 CHAR16 *MiniString;
488 CHAR16 *PlusString;
489 CHAR16 *MinusString;
490 CHAR16 *AdjustNumber;
491 CHAR16 *SaveChanges;
492 CHAR16 *OptionMismatch;
493 CHAR16 PromptBlockWidth;
494 CHAR16 OptionBlockWidth;
495 CHAR16 HelpBlockWidth;
496 FORM_BROWSER_FORMSET *OldFormSet;
497
498 //
499 // Globals defined in Ui.c
500 //
501 LIST_ENTRY MenuOption;
502 VOID *MenuRefreshHead;
503 } BROWSER_CONTEXT;
504
505 #define BROWSER_CONTEXT_FROM_LINK(a) CR (a, BROWSER_CONTEXT, Link, BROWSER_CONTEXT_SIGNATURE)
506
507 extern EFI_HII_DATABASE_PROTOCOL *mHiiDatabase;
508 extern EFI_HII_STRING_PROTOCOL *mHiiString;
509 extern EFI_HII_CONFIG_ROUTING_PROTOCOL *mHiiConfigRouting;
510
511 extern BANNER_DATA *gBannerData;
512 extern EFI_HII_HANDLE gFrontPageHandle;
513 extern UINTN gClassOfVfr;
514 extern UINTN gFunctionKeySetting;
515 extern BOOLEAN gResetRequired;
516 extern BOOLEAN gNvUpdateRequired;
517 extern EFI_HII_HANDLE gHiiHandle;
518 extern UINT16 gDirection;
519 extern EFI_SCREEN_DESCRIPTOR gScreenDimensions;
520
521 extern FORM_BROWSER_FORMSET *gOldFormSet;
522
523 //
524 // Browser Global Strings
525 //
526 extern CHAR16 *gFunctionNineString;
527 extern CHAR16 *gFunctionTenString;
528 extern CHAR16 *gEnterString;
529 extern CHAR16 *gEnterCommitString;
530 extern CHAR16 *gEnterEscapeString;
531 extern CHAR16 *gEscapeString;
532 extern CHAR16 *gSaveFailed;
533 extern CHAR16 *gMoveHighlight;
534 extern CHAR16 *gMakeSelection;
535 extern CHAR16 *gDecNumericInput;
536 extern CHAR16 *gHexNumericInput;
537 extern CHAR16 *gToggleCheckBox;
538 extern CHAR16 *gPromptForData;
539 extern CHAR16 *gPromptForPassword;
540 extern CHAR16 *gPromptForNewPassword;
541 extern CHAR16 *gConfirmPassword;
542 extern CHAR16 *gConfirmError;
543 extern CHAR16 *gPassowordInvalid;
544 extern CHAR16 *gPressEnter;
545 extern CHAR16 *gEmptyString;
546 extern CHAR16 *gAreYouSure;
547 extern CHAR16 *gYesResponse;
548 extern CHAR16 *gNoResponse;
549 extern CHAR16 *gMiniString;
550 extern CHAR16 *gPlusString;
551 extern CHAR16 *gMinusString;
552 extern CHAR16 *gAdjustNumber;
553 extern CHAR16 *gSaveChanges;
554 extern CHAR16 *gOptionMismatch;
555 extern CHAR16 *gFormSuppress;
556
557 extern CHAR16 gPromptBlockWidth;
558 extern CHAR16 gOptionBlockWidth;
559 extern CHAR16 gHelpBlockWidth;
560
561 extern EFI_GUID gZeroGuid;
562 extern EFI_GUID gTianoHiiIfrGuid;
563
564 //
565 // Global Procedure Defines
566 //
567
568 /**
569 Initialize the HII String Token to the correct values.
570
571 **/
572 VOID
573 InitializeBrowserStrings (
574 VOID
575 );
576
577 /**
578 Prints a unicode string to the default console,
579 using L"%s" format.
580
581 @param String String pointer.
582
583 @return Length of string printed to the console
584
585 **/
586 UINTN
587 PrintString (
588 IN CHAR16 *String
589 );
590
591 /**
592 Prints a chracter to the default console,
593 using L"%c" format.
594
595 @param Character Character to print.
596
597 @return Length of string printed to the console.
598
599 **/
600 UINTN
601 PrintChar (
602 CHAR16 Character
603 );
604
605 /**
606 Prints a formatted unicode string to the default console, at
607 the supplied cursor position.
608
609 @param Column The cursor position to print the string at.
610 @param Row The cursor position to print the string at
611 @param Fmt Format string
612 @param ... Variable argument list for formating string.
613
614 @return Length of string printed to the console
615
616 **/
617 UINTN
618 PrintAt (
619 IN UINTN Column,
620 IN UINTN Row,
621 IN CHAR16 *Fmt,
622 ...
623 );
624
625 /**
626 Prints a unicode string to the default console, at
627 the supplied cursor position, using L"%s" format.
628
629 @param Column The cursor position to print the string at.
630 @param Row The cursor position to print the string at
631 @param String String pointer.
632
633 @return Length of string printed to the console
634
635 **/
636 UINTN
637 PrintStringAt (
638 IN UINTN Column,
639 IN UINTN Row,
640 IN CHAR16 *String
641 );
642
643 /**
644 Prints a chracter to the default console, at
645 the supplied cursor position, using L"%c" format.
646
647 @param Column The cursor position to print the string at.
648 @param Row The cursor position to print the string at.
649 @param Character Character to print.
650
651 @return Length of string printed to the console.
652
653 **/
654 UINTN
655 PrintCharAt (
656 IN UINTN Column,
657 IN UINTN Row,
658 CHAR16 Character
659 );
660
661 /**
662 Parse opcodes in the formset IFR binary.
663
664 @param FormSet Pointer of the FormSet data structure.
665
666 @retval EFI_SUCCESS Opcode parse success.
667 @retval Other Opcode parse fail.
668
669 **/
670 EFI_STATUS
671 ParseOpCodes (
672 IN FORM_BROWSER_FORMSET *FormSet
673 );
674
675 /**
676 Free resources allocated for a FormSet.
677
678 @param FormSet Pointer of the FormSet
679
680 **/
681 VOID
682 DestroyFormSet (
683 IN OUT FORM_BROWSER_FORMSET *FormSet
684 );
685
686 /**
687 This function displays the page frame.
688
689 **/
690 VOID
691 DisplayPageFrame (
692 VOID
693 );
694
695 /**
696 Create a new string in HII Package List.
697
698 @param String The String to be added
699 @param HiiHandle The package list in the HII database to insert the
700 specified string.
701
702 @return The output string.
703
704 **/
705 EFI_STRING_ID
706 NewString (
707 IN CHAR16 *String,
708 IN EFI_HII_HANDLE HiiHandle
709 );
710
711 /**
712 Delete a string from HII Package List.
713
714 @param StringId Id of the string in HII database.
715 @param HiiHandle The HII package list handle.
716
717 @retval EFI_SUCCESS The string was deleted successfully.
718
719 **/
720 EFI_STATUS
721 DeleteString (
722 IN EFI_STRING_ID StringId,
723 IN EFI_HII_HANDLE HiiHandle
724 );
725
726 /**
727 Get the string based on the StringId and HII Package List Handle.
728
729 @param Token The String's ID.
730 @param HiiHandle The package list in the HII database to search for
731 the specified string.
732
733 @return The output string.
734
735 **/
736 CHAR16 *
737 GetToken (
738 IN EFI_STRING_ID Token,
739 IN EFI_HII_HANDLE HiiHandle
740 );
741
742 /**
743 Draw a pop up windows based on the dimension, number of lines and
744 strings specified.
745
746 @param RequestedWidth The width of the pop-up.
747 @param NumberOfLines The number of lines.
748 @param Marker The variable argument list for the list of string to be printed.
749
750 **/
751 VOID
752 CreateSharedPopUp (
753 IN UINTN RequestedWidth,
754 IN UINTN NumberOfLines,
755 IN VA_LIST Marker
756 );
757
758 /**
759 Routine used to abstract a generic dialog interface and return the selected key or string
760
761 @param NumberOfLines The number of lines for the dialog box
762 @param HotKey Defines whether a single character is parsed
763 (TRUE) and returned in KeyValue or a string is
764 returned in StringBuffer. Two special characters
765 are considered when entering a string, a SCAN_ESC
766 and an CHAR_CARRIAGE_RETURN. SCAN_ESC terminates
767 string input and returns
768 @param MaximumStringSize The maximum size in bytes of a typed in string
769 (each character is a CHAR16) and the minimum
770 string returned is two bytes
771 @param StringBuffer The passed in pointer to the buffer which will
772 hold the typed in string if HotKey is FALSE
773 @param KeyValue The EFI_KEY value returned if HotKey is TRUE..
774 @param ... A series of (quantity == NumberOfLines) text
775 strings which will be used to construct the dialog
776 box
777
778 @retval EFI_SUCCESS Displayed dialog and received user interaction
779 @retval EFI_INVALID_PARAMETER One of the parameters was invalid (e.g.
780 (StringBuffer == NULL) && (HotKey == FALSE))
781 @retval EFI_DEVICE_ERROR User typed in an ESC character to exit the routine
782
783 **/
784 EFI_STATUS
785 CreateDialog (
786 IN UINTN NumberOfLines,
787 IN BOOLEAN HotKey,
788 IN UINTN MaximumStringSize,
789 OUT CHAR16 *StringBuffer,
790 OUT EFI_INPUT_KEY *KeyValue,
791 ...
792 );
793
794 /**
795 Get Question's current Value.
796
797 @param FormSet FormSet data structure.
798 @param Form Form data structure.
799 @param Question Question to be initialized.
800 @param Cached TRUE: get from Edit copy FALSE: get from original
801 Storage
802
803 @retval EFI_SUCCESS The function completed successfully.
804
805 **/
806 EFI_STATUS
807 GetQuestionValue (
808 IN FORM_BROWSER_FORMSET *FormSet,
809 IN FORM_BROWSER_FORM *Form,
810 IN OUT FORM_BROWSER_STATEMENT *Question,
811 IN BOOLEAN Cached
812 );
813
814 /**
815 Save Question Value to edit copy(cached) or Storage(uncached).
816
817 @param FormSet FormSet data structure.
818 @param Form Form data structure.
819 @param Question Pointer to the Question.
820 @param Cached TRUE: set to Edit copy FALSE: set to original
821 Storage
822
823 @retval EFI_SUCCESS The function completed successfully.
824
825 **/
826 EFI_STATUS
827 SetQuestionValue (
828 IN FORM_BROWSER_FORMSET *FormSet,
829 IN FORM_BROWSER_FORM *Form,
830 IN OUT FORM_BROWSER_STATEMENT *Question,
831 IN BOOLEAN Cached
832 );
833
834 /**
835 Perform inconsistent check for a Form.
836
837 @param FormSet FormSet data structure.
838 @param Form Form data structure.
839 @param Question The Question to be validated.
840 @param Type Validation type: InConsistent or NoSubmit
841
842 @retval EFI_SUCCESS Form validation pass.
843 @retval other Form validation failed.
844
845 **/
846 EFI_STATUS
847 ValidateQuestion (
848 IN FORM_BROWSER_FORMSET *FormSet,
849 IN FORM_BROWSER_FORM *Form,
850 IN FORM_BROWSER_STATEMENT *Question,
851 IN UINTN Type
852 );
853
854 /**
855 Submit a Form.
856
857 @param FormSet FormSet data structure.
858 @param Form Form data structure.
859
860 @retval EFI_SUCCESS The function completed successfully.
861
862 **/
863 EFI_STATUS
864 SubmitForm (
865 IN FORM_BROWSER_FORMSET *FormSet,
866 IN FORM_BROWSER_FORM *Form
867 );
868
869 /**
870 Reset Question to its default value.
871
872 @param FormSet The form set.
873 @param Form The form.
874 @param Question The question.
875 @param DefaultId The Class of the default.
876
877 @retval EFI_SUCCESS Question is reset to default value.
878
879 **/
880 EFI_STATUS
881 GetQuestionDefault (
882 IN FORM_BROWSER_FORMSET *FormSet,
883 IN FORM_BROWSER_FORM *Form,
884 IN FORM_BROWSER_STATEMENT *Question,
885 IN UINT16 DefaultId
886 );
887
888 /**
889 Get current setting of Questions.
890
891 @param FormSet FormSet data structure.
892
893 @retval EFI_SUCCESS The function completed successfully.
894
895 **/
896 EFI_STATUS
897 InitializeCurrentSetting (
898 IN OUT FORM_BROWSER_FORMSET *FormSet
899 );
900
901 /**
902 Initialize the internal data structure of a FormSet.
903
904 @param Handle PackageList Handle
905 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
906 GUID), take the first FormSet found in package
907 list.
908 @param FormSet FormSet data structure.
909
910 @retval EFI_SUCCESS The function completed successfully.
911 @retval EFI_NOT_FOUND The specified FormSet could not be found.
912
913 **/
914 EFI_STATUS
915 InitializeFormSet (
916 IN EFI_HII_HANDLE Handle,
917 IN OUT EFI_GUID *FormSetGuid,
918 OUT FORM_BROWSER_FORMSET *FormSet
919 );
920
921 /**
922 Reset Questions in a Form to their default value.
923
924 @param FormSet FormSet data structure.
925 @param Form The Form which to be reset.
926 @param DefaultId The Class of the default.
927
928 @retval EFI_SUCCESS The function completed successfully.
929
930 **/
931 EFI_STATUS
932 ExtractFormDefault (
933 IN FORM_BROWSER_FORMSET *FormSet,
934 IN FORM_BROWSER_FORM *Form,
935 IN UINT16 DefaultId
936 );
937
938 /**
939 Initialize Question's Edit copy from Storage.
940
941 @param FormSet FormSet data structure.
942 @param Form Form data structure.
943
944 @retval EFI_SUCCESS The function completed successfully.
945
946 **/
947 EFI_STATUS
948 LoadFormConfig (
949 IN FORM_BROWSER_FORMSET *FormSet,
950 IN FORM_BROWSER_FORM *Form
951 );
952
953 /**
954 Initialize Question's Edit copy from Storage for the whole Formset.
955
956 @param FormSet FormSet data structure.
957
958 @retval EFI_SUCCESS The function completed successfully.
959
960 **/
961 EFI_STATUS
962 LoadFormSetConfig (
963 IN FORM_BROWSER_FORMSET *FormSet
964 );
965
966 /**
967 Convert setting of Buffer Storage or NameValue Storage to <ConfigResp>.
968
969 @param Storage The Storage to be conveted.
970 @param ConfigResp The returned <ConfigResp>.
971
972 @retval EFI_SUCCESS Convert success.
973 @retval EFI_INVALID_PARAMETER Incorrect storage type.
974
975 **/
976 EFI_STATUS
977 StorageToConfigResp (
978 IN FORMSET_STORAGE *Storage,
979 IN CHAR16 **ConfigResp
980 );
981
982 /**
983 Convert <ConfigResp> to settings in Buffer Storage or NameValue Storage.
984
985 @param Storage The Storage to receive the settings.
986 @param ConfigResp The <ConfigResp> to be converted.
987
988 @retval EFI_SUCCESS Convert success.
989 @retval EFI_INVALID_PARAMETER Incorrect storage type.
990
991 **/
992 EFI_STATUS
993 ConfigRespToStorage (
994 IN FORMSET_STORAGE *Storage,
995 IN CHAR16 *ConfigResp
996 );
997
998 /**
999 Fill storage's edit copy with settings requested from Configuration Driver.
1000
1001 @param FormSet FormSet data structure.
1002 @param Storage Buffer Storage.
1003
1004 @retval EFI_SUCCESS The function completed successfully.
1005
1006 **/
1007 EFI_STATUS
1008 LoadStorage (
1009 IN FORM_BROWSER_FORMSET *FormSet,
1010 IN FORMSET_STORAGE *Storage
1011 );
1012
1013 /**
1014 Fetch the Ifr binary data of a FormSet.
1015
1016 @param Handle PackageList Handle
1017 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
1018 GUID), take the first FormSet found in package
1019 list.
1020 @param BinaryLength The length of the FormSet IFR binary.
1021 @param BinaryData The buffer designed to receive the FormSet.
1022
1023 @retval EFI_SUCCESS Buffer filled with the requested FormSet.
1024 BufferLength was updated.
1025 @retval EFI_INVALID_PARAMETER The handle is unknown.
1026 @retval EFI_NOT_FOUND A form or FormSet on the requested handle cannot
1027 be found with the requested FormId.
1028
1029 **/
1030 EFI_STATUS
1031 GetIfrBinaryData (
1032 IN EFI_HII_HANDLE Handle,
1033 IN OUT EFI_GUID *FormSetGuid,
1034 OUT UINTN *BinaryLength,
1035 OUT UINT8 **BinaryData
1036 );
1037
1038 /**
1039 Save globals used by previous call to SendForm(). SendForm() may be called from
1040 HiiConfigAccess.Callback(), this will cause SendForm() be reentried.
1041 So, save globals of previous call to SendForm() and restore them upon exit.
1042
1043 **/
1044 VOID
1045 SaveBrowserContext (
1046 VOID
1047 );
1048
1049 /**
1050 Restore globals used by previous call to SendForm().
1051
1052 **/
1053 VOID
1054 RestoreBrowserContext (
1055 VOID
1056 );
1057
1058 /**
1059 This is the routine which an external caller uses to direct the browser
1060 where to obtain it's information.
1061
1062
1063 @param This The Form Browser protocol instanse.
1064 @param Handles A pointer to an array of Handles. If HandleCount > 1 we
1065 display a list of the formsets for the handles specified.
1066 @param HandleCount The number of Handles specified in Handle.
1067 @param FormSetGuid This field points to the EFI_GUID which must match the Guid
1068 field in the EFI_IFR_FORM_SET op-code for the specified
1069 forms-based package. If FormSetGuid is NULL, then this
1070 function will display the first found forms package.
1071 @param FormId This field specifies which EFI_IFR_FORM to render as the first
1072 displayable page. If this field has a value of 0x0000, then
1073 the forms browser will render the specified forms in their encoded order.
1074 ScreenDimenions - This allows the browser to be called so that it occupies a
1075 portion of the physical screen instead of dynamically determining the screen dimensions.
1076 ActionRequest - Points to the action recommended by the form.
1077 @param ScreenDimensions Points to recommended form dimensions, including any non-content area, in
1078 characters.
1079 @param ActionRequest Points to the action recommended by the form.
1080
1081 @retval EFI_SUCCESS The function completed successfully.
1082 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
1083 @retval EFI_NOT_FOUND No valid forms could be found to display.
1084
1085 **/
1086 EFI_STATUS
1087 EFIAPI
1088 SendForm (
1089 IN CONST EFI_FORM_BROWSER2_PROTOCOL *This,
1090 IN EFI_HII_HANDLE *Handles,
1091 IN UINTN HandleCount,
1092 IN EFI_GUID *FormSetGuid, OPTIONAL
1093 IN UINT16 FormId, OPTIONAL
1094 IN CONST EFI_SCREEN_DESCRIPTOR *ScreenDimensions, OPTIONAL
1095 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest OPTIONAL
1096 );
1097
1098 /**
1099 This function is called by a callback handler to retrieve uncommitted state
1100 data from the browser.
1101
1102 @param This A pointer to the EFI_FORM_BROWSER2_PROTOCOL
1103 instance.
1104 @param ResultsDataSize A pointer to the size of the buffer associated
1105 with ResultsData.
1106 @param ResultsData A string returned from an IFR browser or
1107 equivalent. The results string will have no
1108 routing information in them.
1109 @param RetrieveData A BOOLEAN field which allows an agent to retrieve
1110 (if RetrieveData = TRUE) data from the uncommitted
1111 browser state information or set (if RetrieveData
1112 = FALSE) data in the uncommitted browser state
1113 information.
1114 @param VariableGuid An optional field to indicate the target variable
1115 GUID name to use.
1116 @param VariableName An optional field to indicate the target
1117 human-readable variable name.
1118
1119 @retval EFI_SUCCESS The results have been distributed or are awaiting
1120 distribution.
1121 @retval EFI_BUFFER_TOO_SMALL The ResultsDataSize specified was too small to
1122 contain the results data.
1123
1124 **/
1125 EFI_STATUS
1126 EFIAPI
1127 BrowserCallback (
1128 IN CONST EFI_FORM_BROWSER2_PROTOCOL *This,
1129 IN OUT UINTN *ResultsDataSize,
1130 IN OUT EFI_STRING ResultsData,
1131 IN BOOLEAN RetrieveData,
1132 IN CONST EFI_GUID *VariableGuid, OPTIONAL
1133 IN CONST CHAR16 *VariableName OPTIONAL
1134 );
1135
1136 #endif