]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Setup.h
Support call of SendForm() from Callback(), i.e. nested call of SendForm().
[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_BROWSER_FORM;
405
406 #define FORM_BROWSER_FORM_FROM_LINK(a) CR (a, FORM_BROWSER_FORM, Link, FORM_BROWSER_FORM_SIGNATURE)
407
408 #define FORMSET_DEFAULTSTORE_SIGNATURE SIGNATURE_32 ('F', 'D', 'F', 'S')
409
410 typedef struct {
411 UINTN Signature;
412 LIST_ENTRY Link;
413
414 UINT16 DefaultId;
415 EFI_STRING_ID DefaultName;
416 } FORMSET_DEFAULTSTORE;
417
418 #define FORMSET_DEFAULTSTORE_FROM_LINK(a) CR (a, FORMSET_DEFAULTSTORE, Link, FORMSET_DEFAULTSTORE_SIGNATURE)
419
420 typedef struct {
421 EFI_HII_HANDLE HiiHandle;
422 EFI_HANDLE DriverHandle;
423 EFI_HII_CONFIG_ACCESS_PROTOCOL *ConfigAccess;
424 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
425
426 UINTN IfrBinaryLength;
427 UINT8 *IfrBinaryData;
428
429 EFI_GUID Guid;
430 EFI_STRING_ID FormSetTitle;
431 EFI_STRING_ID Help;
432 UINT8 NumberOfClassGuid;
433 EFI_GUID ClassGuid[3]; // Up to three ClassGuid
434 UINT16 Class; // Tiano extended Class code
435 UINT16 SubClass; // Tiano extended Subclass code
436 EFI_IMAGE_ID ImageId;
437
438 FORM_BROWSER_STATEMENT *StatementBuffer; // Buffer for all Statements and Questions
439 EXPRESSION_OPCODE *ExpressionBuffer; // Buffer for all Expression OpCode
440
441 LIST_ENTRY StorageListHead; // Storage list (FORMSET_STORAGE)
442 LIST_ENTRY DefaultStoreListHead; // DefaultStore list (FORMSET_DEFAULTSTORE)
443 LIST_ENTRY FormListHead; // Form list (FORM_BROWSER_FORM)
444 } FORM_BROWSER_FORMSET;
445
446 #define BROWSER_CONTEXT_SIGNATURE SIGNATURE_32 ('B', 'C', 'T', 'X')
447
448 typedef struct {
449 UINTN Signature;
450 LIST_ENTRY Link;
451
452 //
453 // Globals defined in Setup.c
454 //
455 BANNER_DATA *BannerData;
456 UINTN ClassOfVfr;
457 UINTN FunctionKeySetting;
458 BOOLEAN ResetRequired;
459 BOOLEAN NvUpdateRequired;
460 UINT16 Direction;
461 EFI_SCREEN_DESCRIPTOR ScreenDimensions;
462 CHAR16 *FunctionNineString;
463 CHAR16 *FunctionTenString;
464 CHAR16 *EnterString;
465 CHAR16 *EnterCommitString;
466 CHAR16 *EnterEscapeString;
467 CHAR16 *EscapeString;
468 CHAR16 *SaveFailed;
469 CHAR16 *MoveHighlight;
470 CHAR16 *MakeSelection;
471 CHAR16 *DecNumericInput;
472 CHAR16 *HexNumericInput;
473 CHAR16 *ToggleCheckBox;
474 CHAR16 *PromptForData;
475 CHAR16 *PromptForPassword;
476 CHAR16 *PromptForNewPassword;
477 CHAR16 *ConfirmPassword;
478 CHAR16 *ConfirmError;
479 CHAR16 *PassowordInvalid;
480 CHAR16 *PressEnter;
481 CHAR16 *EmptyString;
482 CHAR16 *AreYouSure;
483 CHAR16 *YesResponse;
484 CHAR16 *NoResponse;
485 CHAR16 *MiniString;
486 CHAR16 *PlusString;
487 CHAR16 *MinusString;
488 CHAR16 *AdjustNumber;
489 CHAR16 *SaveChanges;
490 CHAR16 *OptionMismatch;
491 CHAR16 PromptBlockWidth;
492 CHAR16 OptionBlockWidth;
493 CHAR16 HelpBlockWidth;
494 FORM_BROWSER_FORMSET *OldFormSet;
495
496 //
497 // Globals defined in Ui.c
498 //
499 LIST_ENTRY MenuOption;
500 VOID *MenuRefreshHead;
501 } BROWSER_CONTEXT;
502
503 #define BROWSER_CONTEXT_FROM_LINK(a) CR (a, BROWSER_CONTEXT, Link, BROWSER_CONTEXT_SIGNATURE)
504
505 extern EFI_HII_DATABASE_PROTOCOL *mHiiDatabase;
506 extern EFI_HII_STRING_PROTOCOL *mHiiString;
507 extern EFI_HII_CONFIG_ROUTING_PROTOCOL *mHiiConfigRouting;
508
509 extern BANNER_DATA *gBannerData;
510 extern EFI_HII_HANDLE gFrontPageHandle;
511 extern UINTN gClassOfVfr;
512 extern UINTN gFunctionKeySetting;
513 extern BOOLEAN gResetRequired;
514 extern BOOLEAN gNvUpdateRequired;
515 extern EFI_HII_HANDLE gHiiHandle;
516 extern UINT16 gDirection;
517 extern EFI_SCREEN_DESCRIPTOR gScreenDimensions;
518
519 extern FORM_BROWSER_FORMSET *gOldFormSet;
520
521 //
522 // Browser Global Strings
523 //
524 extern CHAR16 *gFunctionNineString;
525 extern CHAR16 *gFunctionTenString;
526 extern CHAR16 *gEnterString;
527 extern CHAR16 *gEnterCommitString;
528 extern CHAR16 *gEnterEscapeString;
529 extern CHAR16 *gEscapeString;
530 extern CHAR16 *gSaveFailed;
531 extern CHAR16 *gMoveHighlight;
532 extern CHAR16 *gMakeSelection;
533 extern CHAR16 *gDecNumericInput;
534 extern CHAR16 *gHexNumericInput;
535 extern CHAR16 *gToggleCheckBox;
536 extern CHAR16 *gPromptForData;
537 extern CHAR16 *gPromptForPassword;
538 extern CHAR16 *gPromptForNewPassword;
539 extern CHAR16 *gConfirmPassword;
540 extern CHAR16 *gConfirmError;
541 extern CHAR16 *gPassowordInvalid;
542 extern CHAR16 *gPressEnter;
543 extern CHAR16 *gEmptyString;
544 extern CHAR16 *gAreYouSure;
545 extern CHAR16 *gYesResponse;
546 extern CHAR16 *gNoResponse;
547 extern CHAR16 *gMiniString;
548 extern CHAR16 *gPlusString;
549 extern CHAR16 *gMinusString;
550 extern CHAR16 *gAdjustNumber;
551 extern CHAR16 *gSaveChanges;
552 extern CHAR16 *gOptionMismatch;
553
554 extern CHAR16 gPromptBlockWidth;
555 extern CHAR16 gOptionBlockWidth;
556 extern CHAR16 gHelpBlockWidth;
557
558 extern EFI_GUID gZeroGuid;
559 extern EFI_GUID gTianoHiiIfrGuid;
560
561 //
562 // Global Procedure Defines
563 //
564
565 /**
566 Initialize the HII String Token to the correct values.
567
568 **/
569 VOID
570 InitializeBrowserStrings (
571 VOID
572 );
573
574 /**
575 Prints a unicode string to the default console,
576 using L"%s" format.
577
578 @param String String pointer.
579
580 @return Length of string printed to the console
581
582 **/
583 UINTN
584 PrintString (
585 IN CHAR16 *String
586 );
587
588 /**
589 Prints a chracter to the default console,
590 using L"%c" format.
591
592 @param Character Character to print.
593
594 @return Length of string printed to the console.
595
596 **/
597 UINTN
598 PrintChar (
599 CHAR16 Character
600 );
601
602 /**
603 Prints a formatted unicode string to the default console, at
604 the supplied cursor position.
605
606 @param Column The cursor position to print the string at.
607 @param Row The cursor position to print the string at
608 @param Fmt Format string
609 @param ... Variable argument list for formating string.
610
611 @return Length of string printed to the console
612
613 **/
614 UINTN
615 PrintAt (
616 IN UINTN Column,
617 IN UINTN Row,
618 IN CHAR16 *Fmt,
619 ...
620 );
621
622 /**
623 Prints a unicode string to the default console, at
624 the supplied cursor position, using L"%s" format.
625
626 @param Column The cursor position to print the string at.
627 @param Row The cursor position to print the string at
628 @param String String pointer.
629
630 @return Length of string printed to the console
631
632 **/
633 UINTN
634 PrintStringAt (
635 IN UINTN Column,
636 IN UINTN Row,
637 IN CHAR16 *String
638 );
639
640 /**
641 Prints a chracter to the default console, at
642 the supplied cursor position, using L"%c" format.
643
644 @param Column The cursor position to print the string at.
645 @param Row The cursor position to print the string at.
646 @param Character Character to print.
647
648 @return Length of string printed to the console.
649
650 **/
651 UINTN
652 PrintCharAt (
653 IN UINTN Column,
654 IN UINTN Row,
655 CHAR16 Character
656 );
657
658 /**
659 Parse opcodes in the formset IFR binary.
660
661 @param FormSet Pointer of the FormSet data structure.
662
663 @retval EFI_SUCCESS Opcode parse success.
664 @retval Other Opcode parse fail.
665
666 **/
667 EFI_STATUS
668 ParseOpCodes (
669 IN FORM_BROWSER_FORMSET *FormSet
670 );
671
672 /**
673 Free resources allocated for a FormSet.
674
675 @param FormSet Pointer of the FormSet
676
677 **/
678 VOID
679 DestroyFormSet (
680 IN OUT FORM_BROWSER_FORMSET *FormSet
681 );
682
683 /**
684 This function displays the page frame.
685
686 **/
687 VOID
688 DisplayPageFrame (
689 VOID
690 );
691
692 /**
693 Create a new string in HII Package List.
694
695 @param String The String to be added
696 @param HiiHandle The package list in the HII database to insert the
697 specified string.
698
699 @return The output string.
700
701 **/
702 EFI_STRING_ID
703 NewString (
704 IN CHAR16 *String,
705 IN EFI_HII_HANDLE HiiHandle
706 );
707
708 /**
709 Delete a string from HII Package List.
710
711 @param StringId Id of the string in HII database.
712 @param HiiHandle The HII package list handle.
713
714 @retval EFI_SUCCESS The string was deleted successfully.
715
716 **/
717 EFI_STATUS
718 DeleteString (
719 IN EFI_STRING_ID StringId,
720 IN EFI_HII_HANDLE HiiHandle
721 );
722
723 /**
724 Get the string based on the StringId and HII Package List Handle.
725
726 @param Token The String's ID.
727 @param HiiHandle The package list in the HII database to search for
728 the specified string.
729
730 @return The output string.
731
732 **/
733 CHAR16 *
734 GetToken (
735 IN EFI_STRING_ID Token,
736 IN EFI_HII_HANDLE HiiHandle
737 );
738
739 /**
740 Draw a pop up windows based on the dimension, number of lines and
741 strings specified.
742
743 @param RequestedWidth The width of the pop-up.
744 @param NumberOfLines The number of lines.
745 @param Marker The variable argument list for the list of string to be printed.
746
747 **/
748 VOID
749 CreateSharedPopUp (
750 IN UINTN RequestedWidth,
751 IN UINTN NumberOfLines,
752 IN VA_LIST Marker
753 );
754
755 /**
756 Routine used to abstract a generic dialog interface and return the selected key or string
757
758 @param NumberOfLines The number of lines for the dialog box
759 @param HotKey Defines whether a single character is parsed
760 (TRUE) and returned in KeyValue or a string is
761 returned in StringBuffer. Two special characters
762 are considered when entering a string, a SCAN_ESC
763 and an CHAR_CARRIAGE_RETURN. SCAN_ESC terminates
764 string input and returns
765 @param MaximumStringSize The maximum size in bytes of a typed in string
766 (each character is a CHAR16) and the minimum
767 string returned is two bytes
768 @param StringBuffer The passed in pointer to the buffer which will
769 hold the typed in string if HotKey is FALSE
770 @param KeyValue The EFI_KEY value returned if HotKey is TRUE..
771 @param ... A series of (quantity == NumberOfLines) text
772 strings which will be used to construct the dialog
773 box
774
775 @retval EFI_SUCCESS Displayed dialog and received user interaction
776 @retval EFI_INVALID_PARAMETER One of the parameters was invalid (e.g.
777 (StringBuffer == NULL) && (HotKey == FALSE))
778 @retval EFI_DEVICE_ERROR User typed in an ESC character to exit the routine
779
780 **/
781 EFI_STATUS
782 CreateDialog (
783 IN UINTN NumberOfLines,
784 IN BOOLEAN HotKey,
785 IN UINTN MaximumStringSize,
786 OUT CHAR16 *StringBuffer,
787 OUT EFI_INPUT_KEY *KeyValue,
788 ...
789 );
790
791 /**
792 Get Question's current Value.
793
794 @param FormSet FormSet data structure.
795 @param Form Form data structure.
796 @param Question Question to be initialized.
797 @param Cached TRUE: get from Edit copy FALSE: get from original
798 Storage
799
800 @retval EFI_SUCCESS The function completed successfully.
801
802 **/
803 EFI_STATUS
804 GetQuestionValue (
805 IN FORM_BROWSER_FORMSET *FormSet,
806 IN FORM_BROWSER_FORM *Form,
807 IN OUT FORM_BROWSER_STATEMENT *Question,
808 IN BOOLEAN Cached
809 );
810
811 /**
812 Save Question Value to edit copy(cached) or Storage(uncached).
813
814 @param FormSet FormSet data structure.
815 @param Form Form data structure.
816 @param Question Pointer to the Question.
817 @param Cached TRUE: set to Edit copy FALSE: set to original
818 Storage
819
820 @retval EFI_SUCCESS The function completed successfully.
821
822 **/
823 EFI_STATUS
824 SetQuestionValue (
825 IN FORM_BROWSER_FORMSET *FormSet,
826 IN FORM_BROWSER_FORM *Form,
827 IN OUT FORM_BROWSER_STATEMENT *Question,
828 IN BOOLEAN Cached
829 );
830
831 /**
832 Perform inconsistent check for a Form.
833
834 @param FormSet FormSet data structure.
835 @param Form Form data structure.
836 @param Question The Question to be validated.
837 @param Type Validation type: InConsistent or NoSubmit
838
839 @retval EFI_SUCCESS Form validation pass.
840 @retval other Form validation failed.
841
842 **/
843 EFI_STATUS
844 ValidateQuestion (
845 IN FORM_BROWSER_FORMSET *FormSet,
846 IN FORM_BROWSER_FORM *Form,
847 IN FORM_BROWSER_STATEMENT *Question,
848 IN UINTN Type
849 );
850
851 /**
852 Submit a Form.
853
854 @param FormSet FormSet data structure.
855 @param Form Form data structure.
856
857 @retval EFI_SUCCESS The function completed successfully.
858
859 **/
860 EFI_STATUS
861 SubmitForm (
862 IN FORM_BROWSER_FORMSET *FormSet,
863 IN FORM_BROWSER_FORM *Form
864 );
865
866 /**
867 Reset Question to its default value.
868
869 @param FormSet The form set.
870 @param Form The form.
871 @param Question The question.
872 @param DefaultId The Class of the default.
873
874 @retval EFI_SUCCESS Question is reset to default value.
875
876 **/
877 EFI_STATUS
878 GetQuestionDefault (
879 IN FORM_BROWSER_FORMSET *FormSet,
880 IN FORM_BROWSER_FORM *Form,
881 IN FORM_BROWSER_STATEMENT *Question,
882 IN UINT16 DefaultId
883 );
884
885 /**
886 Get current setting of Questions.
887
888 @param FormSet FormSet data structure.
889
890 @retval EFI_SUCCESS The function completed successfully.
891
892 **/
893 EFI_STATUS
894 InitializeCurrentSetting (
895 IN OUT FORM_BROWSER_FORMSET *FormSet
896 );
897
898 /**
899 Initialize the internal data structure of a FormSet.
900
901 @param Handle PackageList Handle
902 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
903 GUID), take the first FormSet found in package
904 list.
905 @param FormSet FormSet data structure.
906
907 @retval EFI_SUCCESS The function completed successfully.
908 @retval EFI_NOT_FOUND The specified FormSet could not be found.
909
910 **/
911 EFI_STATUS
912 InitializeFormSet (
913 IN EFI_HII_HANDLE Handle,
914 IN OUT EFI_GUID *FormSetGuid,
915 OUT FORM_BROWSER_FORMSET *FormSet
916 );
917
918 /**
919 Reset Questions in a Form to their default value.
920
921 @param FormSet FormSet data structure.
922 @param Form The Form which to be reset.
923 @param DefaultId The Class of the default.
924
925 @retval EFI_SUCCESS The function completed successfully.
926
927 **/
928 EFI_STATUS
929 ExtractFormDefault (
930 IN FORM_BROWSER_FORMSET *FormSet,
931 IN FORM_BROWSER_FORM *Form,
932 IN UINT16 DefaultId
933 );
934
935 /**
936 Initialize Question's Edit copy from Storage.
937
938 @param FormSet FormSet data structure.
939 @param Form Form data structure.
940
941 @retval EFI_SUCCESS The function completed successfully.
942
943 **/
944 EFI_STATUS
945 LoadFormConfig (
946 IN FORM_BROWSER_FORMSET *FormSet,
947 IN FORM_BROWSER_FORM *Form
948 );
949
950 /**
951 Initialize Question's Edit copy from Storage for the whole Formset.
952
953 @param FormSet FormSet data structure.
954
955 @retval EFI_SUCCESS The function completed successfully.
956
957 **/
958 EFI_STATUS
959 LoadFormSetConfig (
960 IN FORM_BROWSER_FORMSET *FormSet
961 );
962
963 /**
964 Convert setting of Buffer Storage or NameValue Storage to <ConfigResp>.
965
966 @param Storage The Storage to be conveted.
967 @param ConfigResp The returned <ConfigResp>.
968
969 @retval EFI_SUCCESS Convert success.
970 @retval EFI_INVALID_PARAMETER Incorrect storage type.
971
972 **/
973 EFI_STATUS
974 StorageToConfigResp (
975 IN FORMSET_STORAGE *Storage,
976 IN CHAR16 **ConfigResp
977 );
978
979 /**
980 Convert <ConfigResp> to settings in Buffer Storage or NameValue Storage.
981
982 @param Storage The Storage to receive the settings.
983 @param ConfigResp The <ConfigResp> to be converted.
984
985 @retval EFI_SUCCESS Convert success.
986 @retval EFI_INVALID_PARAMETER Incorrect storage type.
987
988 **/
989 EFI_STATUS
990 ConfigRespToStorage (
991 IN FORMSET_STORAGE *Storage,
992 IN CHAR16 *ConfigResp
993 );
994
995 /**
996 Fill storage's edit copy with settings requested from Configuration Driver.
997
998 @param FormSet FormSet data structure.
999 @param Storage Buffer Storage.
1000
1001 @retval EFI_SUCCESS The function completed successfully.
1002
1003 **/
1004 EFI_STATUS
1005 LoadStorage (
1006 IN FORM_BROWSER_FORMSET *FormSet,
1007 IN FORMSET_STORAGE *Storage
1008 );
1009
1010 /**
1011 Fetch the Ifr binary data of a FormSet.
1012
1013 @param Handle PackageList Handle
1014 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
1015 GUID), take the first FormSet found in package
1016 list.
1017 @param BinaryLength The length of the FormSet IFR binary.
1018 @param BinaryData The buffer designed to receive the FormSet.
1019
1020 @retval EFI_SUCCESS Buffer filled with the requested FormSet.
1021 BufferLength was updated.
1022 @retval EFI_INVALID_PARAMETER The handle is unknown.
1023 @retval EFI_NOT_FOUND A form or FormSet on the requested handle cannot
1024 be found with the requested FormId.
1025
1026 **/
1027 EFI_STATUS
1028 GetIfrBinaryData (
1029 IN EFI_HII_HANDLE Handle,
1030 IN OUT EFI_GUID *FormSetGuid,
1031 OUT UINTN *BinaryLength,
1032 OUT UINT8 **BinaryData
1033 );
1034
1035 /**
1036 Save globals used by previous call to SendForm(). SendForm() may be called from
1037 HiiConfigAccess.Callback(), this will cause SendForm() be reentried.
1038 So, save globals of previous call to SendForm() and restore them upon exit.
1039
1040 **/
1041 VOID
1042 SaveBrowserContext (
1043 VOID
1044 );
1045
1046 /**
1047 Restore globals used by previous call to SendForm().
1048
1049 **/
1050 VOID
1051 RestoreBrowserContext (
1052 VOID
1053 );
1054
1055 /**
1056 This is the routine which an external caller uses to direct the browser
1057 where to obtain it's information.
1058
1059
1060 @param This The Form Browser protocol instanse.
1061 @param Handles A pointer to an array of Handles. If HandleCount > 1 we
1062 display a list of the formsets for the handles specified.
1063 @param HandleCount The number of Handles specified in Handle.
1064 @param FormSetGuid This field points to the EFI_GUID which must match the Guid
1065 field in the EFI_IFR_FORM_SET op-code for the specified
1066 forms-based package. If FormSetGuid is NULL, then this
1067 function will display the first found forms package.
1068 @param FormId This field specifies which EFI_IFR_FORM to render as the first
1069 displayable page. If this field has a value of 0x0000, then
1070 the forms browser will render the specified forms in their encoded order.
1071 ScreenDimenions - This allows the browser to be called so that it occupies a
1072 portion of the physical screen instead of dynamically determining the screen dimensions.
1073 ActionRequest - Points to the action recommended by the form.
1074 @param ScreenDimensions Points to recommended form dimensions, including any non-content area, in
1075 characters.
1076 @param ActionRequest Points to the action recommended by the form.
1077
1078 @retval EFI_SUCCESS The function completed successfully.
1079 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
1080 @retval EFI_NOT_FOUND No valid forms could be found to display.
1081
1082 **/
1083 EFI_STATUS
1084 EFIAPI
1085 SendForm (
1086 IN CONST EFI_FORM_BROWSER2_PROTOCOL *This,
1087 IN EFI_HII_HANDLE *Handles,
1088 IN UINTN HandleCount,
1089 IN EFI_GUID *FormSetGuid, OPTIONAL
1090 IN UINT16 FormId, OPTIONAL
1091 IN CONST EFI_SCREEN_DESCRIPTOR *ScreenDimensions, OPTIONAL
1092 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest OPTIONAL
1093 );
1094
1095 /**
1096 This function is called by a callback handler to retrieve uncommitted state
1097 data from the browser.
1098
1099 @param This A pointer to the EFI_FORM_BROWSER2_PROTOCOL
1100 instance.
1101 @param ResultsDataSize A pointer to the size of the buffer associated
1102 with ResultsData.
1103 @param ResultsData A string returned from an IFR browser or
1104 equivalent. The results string will have no
1105 routing information in them.
1106 @param RetrieveData A BOOLEAN field which allows an agent to retrieve
1107 (if RetrieveData = TRUE) data from the uncommitted
1108 browser state information or set (if RetrieveData
1109 = FALSE) data in the uncommitted browser state
1110 information.
1111 @param VariableGuid An optional field to indicate the target variable
1112 GUID name to use.
1113 @param VariableName An optional field to indicate the target
1114 human-readable variable name.
1115
1116 @retval EFI_SUCCESS The results have been distributed or are awaiting
1117 distribution.
1118 @retval EFI_BUFFER_TOO_SMALL The ResultsDataSize specified was too small to
1119 contain the results data.
1120
1121 **/
1122 EFI_STATUS
1123 EFIAPI
1124 BrowserCallback (
1125 IN CONST EFI_FORM_BROWSER2_PROTOCOL *This,
1126 IN OUT UINTN *ResultsDataSize,
1127 IN OUT EFI_STRING ResultsData,
1128 IN BOOLEAN RetrieveData,
1129 IN CONST EFI_GUID *VariableGuid, OPTIONAL
1130 IN CONST CHAR16 *VariableName OPTIONAL
1131 );
1132
1133 #endif