2 Private MACRO, structure and function definitions for Setup Browser module.
4 Copyright (c) 2007 - 2015, 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
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.
22 #include <Protocol/SimpleTextOut.h>
23 #include <Protocol/SimpleTextIn.h>
24 #include <Protocol/FormBrowser2.h>
25 #include <Protocol/FormBrowserEx2.h>
26 #include <Protocol/DisplayProtocol.h>
27 #include <Protocol/DevicePath.h>
28 #include <Protocol/UnicodeCollation.h>
29 #include <Protocol/HiiConfigAccess.h>
30 #include <Protocol/HiiConfigRouting.h>
31 #include <Protocol/HiiDatabase.h>
32 #include <Protocol/HiiString.h>
33 #include <Protocol/UserManager.h>
34 #include <Protocol/DevicePathFromText.h>
35 #include <Protocol/RegularExpressionProtocol.h>
37 #include <Guid/MdeModuleHii.h>
38 #include <Guid/HiiPlatformSetupFormset.h>
39 #include <Guid/HiiFormMapMethodGuid.h>
41 #include <Library/PrintLib.h>
42 #include <Library/DebugLib.h>
43 #include <Library/BaseMemoryLib.h>
44 #include <Library/UefiRuntimeServicesTableLib.h>
45 #include <Library/UefiDriverEntryPoint.h>
46 #include <Library/UefiBootServicesTableLib.h>
47 #include <Library/BaseLib.h>
48 #include <Library/MemoryAllocationLib.h>
49 #include <Library/HiiLib.h>
50 #include <Library/PcdLib.h>
51 #include <Library/DevicePathLib.h>
52 #include <Library/UefiLib.h>
56 // This is the generated header file which includes whatever needs to be exported (strings + IFR)
59 #define UI_ACTION_NONE 0
60 #define UI_ACTION_REFRESH_FORM 1
61 #define UI_ACTION_REFRESH_FORMSET 2
62 #define UI_ACTION_EXIT 3
68 #define ONE_SECOND 10000000
70 // Incremental string lenght of ConfigRequest
72 #define CONFIG_REQUEST_STRING_INCREMENTAL 1024
75 // Incremental size of stack for expression
77 #define EXPRESSION_STACK_SIZE_INCREMENT 0x100
79 #define EFI_IFR_SPECIFICATION_VERSION (UINT16) (((EFI_SYSTEM_TABLE_REVISION >> 16) << 8) | (((EFI_SYSTEM_TABLE_REVISION & 0xFFFF) / 10) << 4) | ((EFI_SYSTEM_TABLE_REVISION & 0xFFFF) % 10))
82 #define SETUP_DRIVER_SIGNATURE SIGNATURE_32 ('F', 'B', 'D', 'V')
91 EFI_FORM_BROWSER2_PROTOCOL FormBrowser2
;
92 EFI_FORM_BROWSER_EXTENSION_PROTOCOL FormBrowserEx
;
94 EDKII_FORM_BROWSER_EXTENSION2_PROTOCOL FormBrowserEx2
;
96 } SETUP_DRIVER_PRIVATE_DATA
;
99 // IFR relative definition
101 #define EFI_HII_EXPRESSION_INCONSISTENT_IF 0
102 #define EFI_HII_EXPRESSION_NO_SUBMIT_IF 1
103 #define EFI_HII_EXPRESSION_GRAY_OUT_IF 2
104 #define EFI_HII_EXPRESSION_SUPPRESS_IF 3
105 #define EFI_HII_EXPRESSION_DISABLE_IF 4
106 #define EFI_HII_EXPRESSION_VALUE 5
107 #define EFI_HII_EXPRESSION_RULE 6
108 #define EFI_HII_EXPRESSION_READ 7
109 #define EFI_HII_EXPRESSION_WRITE 8
110 #define EFI_HII_EXPRESSION_WARNING_IF 9
112 #define EFI_HII_VARSTORE_BUFFER 0
113 #define EFI_HII_VARSTORE_NAME_VALUE 1
114 #define EFI_HII_VARSTORE_EFI_VARIABLE 2 // EFI Varstore type follow UEFI spec before 2.3.1.
115 #define EFI_HII_VARSTORE_EFI_VARIABLE_BUFFER 3 // EFI varstore type follow UEFI spec 2.3.1 and later.
117 #define FORM_INCONSISTENT_VALIDATION 0
118 #define FORM_NO_SUBMIT_VALIDATION 1
120 #define NAME_VALUE_NODE_SIGNATURE SIGNATURE_32 ('N', 'V', 'S', 'T')
130 #define NAME_VALUE_NODE_FROM_LINK(a) CR (a, NAME_VALUE_NODE, Link, NAME_VALUE_NODE_SIGNATURE)
132 #define BROWSER_STORAGE_SIGNATURE SIGNATURE_32 ('B', 'S', 'T', 'G')
138 UINT8 Type
; // Storage type
140 BOOLEAN Initialized
; // Whether this varstore is initialized, efi varstore not used.
142 EFI_HII_HANDLE HiiHandle
; // HiiHandle for this varstore, efi varstore not used.
145 CHAR16
*Name
; // For EFI_IFR_VARSTORE
148 UINT8
*EditBuffer
; // Edit copy for Buffer Storage
150 LIST_ENTRY NameValueListHead
; // List of NAME_VALUE_NODE
152 UINT32 Attributes
; // For EFI_IFR_VARSTORE_EFI: EFI Variable attribute
154 CHAR16
*ConfigRequest
; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
155 // <RequestElement> includes all fields which is used by current form sets.
156 UINTN SpareStrLen
; // Spare length of ConfigRequest string buffer
159 #define BROWSER_STORAGE_FROM_LINK(a) CR (a, BROWSER_STORAGE, Link, BROWSER_STORAGE_SIGNATURE)
161 #define FORMSET_STORAGE_SIGNATURE SIGNATURE_32 ('F', 'S', 'T', 'G')
167 LIST_ENTRY SaveFailLink
;
171 BROWSER_STORAGE
*BrowserStorage
;
173 CHAR16
*ConfigHdr
; // <ConfigHdr>
175 CHAR16
*ConfigRequest
; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
176 CHAR16
*ConfigAltResp
; // Alt config response string for this ConfigRequest.
177 BOOLEAN HasCallAltCfg
; // Flag to show whether browser has call ExtractConfig to get Altcfg string.
178 UINTN ElementCount
; // Number of <RequestElement> in the <ConfigRequest>
179 UINTN SpareStrLen
; // Spare length of ConfigRequest string buffer
182 #define FORMSET_STORAGE_FROM_LINK(a) CR (a, FORMSET_STORAGE, Link, FORMSET_STORAGE_SIGNATURE)
183 #define FORMSET_STORAGE_FROM_SAVE_FAIL_LINK(a) CR (a, FORMSET_STORAGE, SaveFailLink, FORMSET_STORAGE_SIGNATURE)
186 EFI_STRING_ID VarName
;
190 #define EXPRESSION_OPCODE_SIGNATURE SIGNATURE_32 ('E', 'X', 'O', 'P')
198 UINT8 Format
; // For EFI_IFR_TO_STRING, EFI_IFR_FIND
199 UINT8 Flags
; // For EFI_IFR_SPAN
200 UINT8 RuleId
; // For EFI_IFR_RULE_REF
202 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
204 EFI_QUESTION_ID QuestionId
; // For EFI_IFR_EQ_ID_ID, EFI_IFR_EQ_ID_VAL_LIST, EFI_IFR_QUESTION_REF1
205 EFI_QUESTION_ID QuestionId2
;
207 UINT16 ListLength
; // For EFI_IFR_EQ_ID_VAL_LIST
210 EFI_STRING_ID DevicePath
; // For EFI_IFR_QUESTION_REF3_2, EFI_IFR_QUESTION_REF3_3
213 BROWSER_STORAGE
*VarStorage
; // For EFI_IFR_SET, EFI_IFR_GET
214 VAR_STORE_INFO VarStoreInfo
;// For EFI_IFR_SET, EFI_IFR_GET
215 UINT8 ValueType
; // For EFI_IFR_SET, EFI_IFR_GET
216 UINT8 ValueWidth
; // For EFI_IFR_SET, EFI_IFR_GET
217 CHAR16
*ValueName
; // For EFI_IFR_SET, EFI_IFR_GET
218 LIST_ENTRY MapExpressionList
; // nested expressions inside of Map opcode.
221 #define EXPRESSION_OPCODE_FROM_LINK(a) CR (a, EXPRESSION_OPCODE, Link, EXPRESSION_OPCODE_SIGNATURE)
223 #define FORM_EXPRESSION_SIGNATURE SIGNATURE_32 ('F', 'E', 'X', 'P')
229 UINT8 Type
; // Type for this expression
231 UINT8 RuleId
; // For EFI_IFR_RULE only
232 EFI_STRING_ID Error
; // For EFI_IFR_NO_SUBMIT_IF, EFI_IFR_INCONSISTENT_IF only
234 EFI_HII_VALUE Result
; // Expression evaluation result
236 UINT8 TimeOut
; // For EFI_IFR_WARNING_IF
237 EFI_IFR_OP_HEADER
*OpCode
; // Save the opcode buffer.
239 LIST_ENTRY OpCodeListHead
; // OpCodes consist of this expression (EXPRESSION_OPCODE)
242 #define FORM_EXPRESSION_FROM_LINK(a) CR (a, FORM_EXPRESSION, Link, FORM_EXPRESSION_SIGNATURE)
244 #define FORM_EXPRESSION_LIST_SIGNATURE SIGNATURE_32 ('F', 'E', 'X', 'R')
249 FORM_EXPRESSION
*Expression
[1]; // Array[Count] of expressions
250 } FORM_EXPRESSION_LIST
;
252 #define QUESTION_DEFAULT_SIGNATURE SIGNATURE_32 ('Q', 'D', 'F', 'T')
259 EFI_HII_VALUE Value
; // Default value
261 FORM_EXPRESSION
*ValueExpression
; // Not-NULL indicates default value is provided by EFI_IFR_VALUE
264 #define QUESTION_DEFAULT_FROM_LINK(a) CR (a, QUESTION_DEFAULT, Link, QUESTION_DEFAULT_SIGNATURE)
266 #define QUESTION_OPTION_SIGNATURE SIGNATURE_32 ('Q', 'O', 'P', 'T')
272 EFI_IFR_ONE_OF_OPTION
*OpCode
; // OneOfOption Data
277 EFI_IMAGE_ID ImageId
;
279 FORM_EXPRESSION_LIST
*SuppressExpression
; // Non-NULL indicates nested inside of SuppressIf
282 #define QUESTION_OPTION_FROM_LINK(a) CR (a, QUESTION_OPTION, Link, QUESTION_OPTION_SIGNATURE)
298 typedef struct _FORM_BROWSER_STATEMENT FORM_BROWSER_STATEMENT
;
300 #define FORM_BROWSER_STATEMENT_SIGNATURE SIGNATURE_32 ('F', 'S', 'T', 'A')
302 struct _FORM_BROWSER_STATEMENT
{
306 UINT8 Operand
; // The operand (first byte) of this Statement or Question
307 EFI_IFR_OP_HEADER
*OpCode
;
312 EFI_STRING_ID Prompt
;
314 EFI_STRING_ID TextTwo
; // For EFI_IFR_TEXT
317 // Fake Question Id, used for statement not has true QuestionId.
319 EFI_QUESTION_ID FakeQuestionId
;
324 EFI_QUESTION_ID QuestionId
; // The value of zero is reserved
325 EFI_VARSTORE_ID VarStoreId
; // A value of zero indicates no variable storage
326 BROWSER_STORAGE
*Storage
;
327 VAR_STORE_INFO VarStoreInfo
;
330 CHAR16
*VariableName
; // Name/Value or EFI Variable name
331 CHAR16
*BlockName
; // Buffer storage block name: "OFFSET=...WIDTH=..."
333 EFI_HII_VALUE HiiValue
; // Edit copy for checkbox, numberic, oneof
334 UINT8
*BufferValue
; // Edit copy for string, password, orderedlist
335 UINT8 ValueType
; // Data type for orderedlist value array
338 // OpCode specific members
340 UINT8 Flags
; // for EFI_IFR_CHECKBOX, EFI_IFR_DATE, EFI_IFR_NUMERIC, EFI_IFR_ONE_OF,
341 // EFI_IFR_ORDERED_LIST, EFI_IFR_STRING,EFI_IFR_SUBTITLE,EFI_IFR_TIME, EFI_IFR_BANNER
342 UINT8 MaxContainers
; // for EFI_IFR_ORDERED_LIST
344 UINT16 BannerLineNumber
; // for EFI_IFR_BANNER, 1-based line number
345 EFI_STRING_ID QuestionConfig
; // for EFI_IFR_ACTION, if 0 then no configuration string will be processed
347 UINT64 Minimum
; // for EFI_IFR_ONE_OF/EFI_IFR_NUMERIC, it's Min/Max value
348 UINT64 Maximum
; // for EFI_IFR_STRING/EFI_IFR_PASSWORD, it's Min/Max length
351 EFI_DEFAULT_ID DefaultId
; // for EFI_IFR_RESET_BUTTON
352 EFI_GUID RefreshGuid
; // for EFI_IFR_REFRESH_ID
353 BOOLEAN Locked
; // Whether this statement is locked.
354 BOOLEAN ValueChanged
; // Whether this statement's value is changed.
356 // Get from IFR parsing
358 FORM_EXPRESSION
*ValueExpression
; // nested EFI_IFR_VALUE, provide Question value and indicate Question is ReadOnly
359 LIST_ENTRY DefaultListHead
; // nested EFI_IFR_DEFAULT list (QUESTION_DEFAULT), provide default values
360 LIST_ENTRY OptionListHead
; // nested EFI_IFR_ONE_OF_OPTION list (QUESTION_OPTION)
362 EFI_IMAGE_ID ImageId
; // nested EFI_IFR_IMAGE
363 UINT8 RefreshInterval
; // nested EFI_IFR_REFRESH, refresh interval(in seconds) for Question value, 0 means no refresh
365 FORM_BROWSER_STATEMENT
*ParentStatement
;
367 LIST_ENTRY InconsistentListHead
;// nested inconsistent expression list (FORM_EXPRESSION)
368 LIST_ENTRY NoSubmitListHead
; // nested nosubmit expression list (FORM_EXPRESSION)
369 LIST_ENTRY WarningListHead
; // nested warning expression list (FORM_EXPRESSION)
370 FORM_EXPRESSION_LIST
*Expression
; // nesting inside of GrayOutIf/DisableIf/SuppressIf
372 FORM_EXPRESSION
*ReadExpression
; // nested EFI_IFR_READ, provide this question value by read expression.
373 FORM_EXPRESSION
*WriteExpression
; // nested EFI_IFR_WRITE, evaluate write expression after this question value is set.
376 #define FORM_BROWSER_STATEMENT_FROM_LINK(a) CR (a, FORM_BROWSER_STATEMENT, Link, FORM_BROWSER_STATEMENT_SIGNATURE)
378 #define FORM_BROWSER_CONFIG_REQUEST_SIGNATURE SIGNATURE_32 ('F', 'C', 'R', 'S')
383 LIST_ENTRY SaveFailLink
;
385 CHAR16
*ConfigRequest
; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
386 CHAR16
*ConfigAltResp
; // Alt config response string for this ConfigRequest.
387 UINTN ElementCount
; // Number of <RequestElement> in the <ConfigRequest>
390 BROWSER_STORAGE
*Storage
;
391 } FORM_BROWSER_CONFIG_REQUEST
;
392 #define FORM_BROWSER_CONFIG_REQUEST_FROM_LINK(a) CR (a, FORM_BROWSER_CONFIG_REQUEST, Link, FORM_BROWSER_CONFIG_REQUEST_SIGNATURE)
393 #define FORM_BROWSER_CONFIG_REQUEST_FROM_SAVE_FAIL_LINK(a) CR (a, FORM_BROWSER_CONFIG_REQUEST, SaveFailLink, FORM_BROWSER_CONFIG_REQUEST_SIGNATURE)
395 #define FORM_BROWSER_FORM_SIGNATURE SIGNATURE_32 ('F', 'F', 'R', 'M')
396 #define STANDARD_MAP_FORM_TYPE 0x01
402 UINT16 FormId
; // FormId of normal form or formmap form.
403 EFI_STRING_ID FormTitle
; // FormTile of normal form, or FormMapMethod title of formmap form.
404 UINT16 FormType
; // Specific form type for the different form.
406 EFI_IMAGE_ID ImageId
;
408 BOOLEAN ModalForm
; // Whether this is a modal form.
409 BOOLEAN Locked
; // Whether this form is locked.
410 EFI_GUID RefreshGuid
; // Form refresh event guid.
412 LIST_ENTRY FormViewListHead
; // List of type FORMID_INFO is Browser View Form History List.
413 LIST_ENTRY ExpressionListHead
; // List of Expressions (FORM_EXPRESSION)
414 LIST_ENTRY StatementListHead
; // List of Statements and Questions (FORM_BROWSER_STATEMENT)
415 LIST_ENTRY ConfigRequestHead
; // List of configreques for all storage.
416 FORM_EXPRESSION_LIST
*SuppressExpression
; // nesting inside of SuppressIf
419 #define FORM_BROWSER_FORM_FROM_LINK(a) CR (a, FORM_BROWSER_FORM, Link, FORM_BROWSER_FORM_SIGNATURE)
421 #define FORMSET_DEFAULTSTORE_SIGNATURE SIGNATURE_32 ('F', 'D', 'F', 'S')
428 EFI_STRING_ID DefaultName
;
429 } FORMSET_DEFAULTSTORE
;
431 #define FORMSET_DEFAULTSTORE_FROM_LINK(a) CR (a, FORMSET_DEFAULTSTORE, Link, FORMSET_DEFAULTSTORE_SIGNATURE)
433 #define FORM_BROWSER_FORMSET_SIGNATURE SIGNATURE_32 ('F', 'B', 'F', 'S')
438 LIST_ENTRY SaveFailLink
;
440 EFI_HII_HANDLE HiiHandle
; // unique id for formset.
441 EFI_HANDLE DriverHandle
;
442 EFI_HII_CONFIG_ACCESS_PROTOCOL
*ConfigAccess
;
443 EFI_DEVICE_PATH_PROTOCOL
*DevicePath
;
445 UINTN IfrBinaryLength
;
446 UINT8
*IfrBinaryData
;
448 BOOLEAN QuestionInited
; // Have finished question initilization?
450 EFI_STRING_ID FormSetTitle
;
452 UINT8 NumberOfClassGuid
;
453 EFI_GUID ClassGuid
[3]; // Up to three ClassGuid
454 UINT16 Class
; // Tiano extended Class code
455 UINT16 SubClass
; // Tiano extended Subclass code
456 EFI_IMAGE_ID ImageId
;
458 FORM_BROWSER_STATEMENT
*StatementBuffer
; // Buffer for all Statements and Questions
459 EXPRESSION_OPCODE
*ExpressionBuffer
; // Buffer for all Expression OpCode
460 FORM_BROWSER_FORM
*SaveFailForm
; // The form which failed to save.
461 FORM_BROWSER_STATEMENT
*SaveFailStatement
; // The Statement which failed to save.
463 LIST_ENTRY StatementListOSF
; // Statement list out side of the form.
464 LIST_ENTRY StorageListHead
; // Storage list (FORMSET_STORAGE)
465 LIST_ENTRY SaveFailStorageListHead
; // Storage list for the save fail storage.
466 LIST_ENTRY DefaultStoreListHead
; // DefaultStore list (FORMSET_DEFAULTSTORE)
467 LIST_ENTRY FormListHead
; // Form list (FORM_BROWSER_FORM)
468 LIST_ENTRY ExpressionListHead
; // List of Expressions (FORM_EXPRESSION)
469 } FORM_BROWSER_FORMSET
;
470 #define FORM_BROWSER_FORMSET_FROM_LINK(a) CR (a, FORM_BROWSER_FORMSET, Link, FORM_BROWSER_FORMSET_SIGNATURE)
472 #define FORM_BROWSER_FORMSET_FROM_SAVE_FAIL_LINK(a) CR (a, FORM_BROWSER_FORMSET, SaveFailLink, FORM_BROWSER_FORMSET_SIGNATURE)
476 EFI_EVENT RefreshEvent
;
477 } FORM_BROWSER_REFRESH_EVENT_NODE
;
479 #define FORM_BROWSER_REFRESH_EVENT_FROM_LINK(a) BASE_CR (a, FORM_BROWSER_REFRESH_EVENT_NODE, Link)
483 EFI_HII_HANDLE Handle
;
486 // Target formset/form/Question information
488 EFI_GUID FormSetGuid
;
491 UINTN Sequence
; // used for time/date only.
500 // Ation for Browser to taken:
501 // UI_ACTION_NONE - navigation inside a form
502 // UI_ACTION_REFRESH_FORM - re-evaluate expressions and repaint form
503 // UI_ACTION_REFRESH_FORMSET - re-parse formset IFR binary
508 // Current selected fomset/form/Question
510 FORM_BROWSER_FORMSET
*FormSet
;
511 FORM_BROWSER_FORM
*Form
;
512 FORM_BROWSER_STATEMENT
*Statement
;
515 // Whether the Form is editable
517 BOOLEAN FormEditable
;
519 FORM_ENTRY_INFO
*CurrentMenu
;
522 #define BROWSER_CONTEXT_SIGNATURE SIGNATURE_32 ('B', 'C', 'T', 'X')
529 // Globals defined in Setup.c
531 BOOLEAN FlagReconnect
;
532 BOOLEAN CallbackReconnect
;
533 BOOLEAN ResetRequired
;
534 BOOLEAN ExitRequired
;
535 EFI_HII_HANDLE HiiHandle
;
536 EFI_GUID FormSetGuid
;
538 UI_MENU_SELECTION
*Selection
;
540 LIST_ENTRY FormHistoryList
;
543 #define BROWSER_CONTEXT_FROM_LINK(a) CR (a, BROWSER_CONTEXT, Link, BROWSER_CONTEXT_SIGNATURE)
546 // Scope for get defaut value. It may be GetDefaultForNoStorage, GetDefaultForStorage or GetDefaultForAll.
549 GetDefaultForNoStorage
, // Get default value for question which not has storage.
550 GetDefaultForStorage
, // Get default value for question which has storage.
551 GetDefaultForAll
, // Get default value for all questions.
552 GetDefaultForMax
// Invalid value.
553 } BROWSER_GET_DEFAULT_VALUE
;
556 // Get/set question value from/to.
559 GetSetValueWithEditBuffer
= 0, // Get/Set question value from/to editbuffer in the storage.
560 GetSetValueWithBuffer
, // Get/Set question value from/to buffer in the storage.
561 GetSetValueWithHiiDriver
, // Get/Set question value from/to hii driver.
562 GetSetValueWithBothBuffer
, // Compare the editbuffer with buffer for this question, not use the question value.
563 GetSetValueWithMax
// Invalid value.
564 } GET_SET_QUESTION_VALUE_WITH
;
566 extern EFI_HII_DATABASE_PROTOCOL
*mHiiDatabase
;
567 extern EFI_HII_CONFIG_ROUTING_PROTOCOL
*mHiiConfigRouting
;
568 extern EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL
*mPathFromText
;
569 extern EDKII_FORM_DISPLAY_ENGINE_PROTOCOL
*mFormDisplay
;
571 extern BOOLEAN gCallbackReconnect
;
572 extern BOOLEAN gFlagReconnect
;
573 extern BOOLEAN gResetRequired
;
574 extern BOOLEAN gExitRequired
;
575 extern LIST_ENTRY gBrowserFormSetList
;
576 extern LIST_ENTRY gBrowserHotKeyList
;
577 extern BROWSER_SETTING_SCOPE gBrowserSettingScope
;
578 extern EXIT_HANDLER ExitHandlerFunction
;
579 extern EFI_HII_HANDLE mCurrentHiiHandle
;
580 extern SETUP_DRIVER_PRIVATE_DATA mPrivateData
;
582 // Browser Global Strings
584 extern CHAR16
*gEmptyString
;
586 extern EFI_GUID gZeroGuid
;
588 extern UI_MENU_SELECTION
*gCurrentSelection
;
591 // Global Procedure Defines
593 #include "Expression.h"
596 Initialize the HII String Token to the correct values.
600 InitializeBrowserStrings (
605 Parse opcodes in the formset IFR binary.
607 @param FormSet Pointer of the FormSet data structure.
609 @retval EFI_SUCCESS Opcode parse success.
610 @retval Other Opcode parse fail.
615 IN FORM_BROWSER_FORMSET
*FormSet
619 Free resources allocated for a FormSet.
621 @param FormSet Pointer of the FormSet
626 IN OUT FORM_BROWSER_FORMSET
*FormSet
631 Create a new string in HII Package List.
633 @param String The String to be added
634 @param HiiHandle The package list in the HII database to insert the
637 @return The output string.
643 IN EFI_HII_HANDLE HiiHandle
647 Delete a string from HII Package List.
649 @param StringId Id of the string in HII database.
650 @param HiiHandle The HII package list handle.
652 @retval EFI_SUCCESS The string was deleted successfully.
657 IN EFI_STRING_ID StringId
,
658 IN EFI_HII_HANDLE HiiHandle
662 Get the string based on the StringId and HII Package List Handle.
664 @param Token The String's ID.
665 @param HiiHandle The package list in the HII database to search for
666 the specified string.
668 @return The output string.
673 IN EFI_STRING_ID Token
,
674 IN EFI_HII_HANDLE HiiHandle
678 Get Value for given Name from a NameValue Storage.
680 @param Storage The NameValue Storage.
681 @param Name The Name.
682 @param Value The retured Value.
683 @param GetValueFrom Where to get source value, from EditValue or Value.
685 @retval EFI_SUCCESS Value found for given Name.
686 @retval EFI_NOT_FOUND No such Name found in NameValue storage.
691 IN BROWSER_STORAGE
*Storage
,
693 IN OUT CHAR16
**Value
,
694 IN GET_SET_QUESTION_VALUE_WITH GetValueFrom
698 Set Value of given Name in a NameValue Storage.
700 @param Storage The NameValue Storage.
701 @param Name The Name.
702 @param Value The Value to set.
703 @param SetValueTo Whether update editValue or Value.
704 @param ReturnNode The node use the input name.
706 @retval EFI_SUCCESS Value found for given Name.
707 @retval EFI_NOT_FOUND No such Name found in NameValue storage.
712 IN BROWSER_STORAGE
*Storage
,
715 IN GET_SET_QUESTION_VALUE_WITH SetValueTo
,
716 OUT NAME_VALUE_NODE
**ReturnNode
720 Validate whether this question's value has changed.
722 @param FormSet FormSet data structure.
723 @param Form Form data structure.
724 @param Question Question to be initialized.
725 @param GetValueFrom Where to get value, may from editbuffer, buffer or hii driver.
727 @retval TRUE Question's value has changed.
728 @retval FALSE Question's value has not changed
732 IsQuestionValueChanged (
733 IN FORM_BROWSER_FORMSET
*FormSet
,
734 IN FORM_BROWSER_FORM
*Form
,
735 IN OUT FORM_BROWSER_STATEMENT
*Question
,
736 IN GET_SET_QUESTION_VALUE_WITH GetValueFrom
740 Validate the FormSet. If the formset is not validate, remove it from the list.
742 @param FormSet The input FormSet which need to validate.
744 @retval TRUE The handle is validate.
745 @retval FALSE The handle is invalidate.
750 FORM_BROWSER_FORMSET
*FormSet
754 Update the ValueChanged status for questions.
756 @param FormSet FormSet data structure.
757 @param Form Form data structure.
758 @param SettingScope Setting Scope for Default action.
762 UpdateStatementStatus (
763 IN FORM_BROWSER_FORMSET
*FormSet
,
764 IN FORM_BROWSER_FORM
*Form
,
765 IN BROWSER_SETTING_SCOPE SettingScope
769 Get Question's current Value.
771 @param FormSet FormSet data structure.
772 @param Form Form data structure.
773 @param Question Question to be initialized.
774 @param GetValueFrom Where to get value, may from editbuffer, buffer or hii driver.
776 @retval EFI_SUCCESS The function completed successfully.
781 IN FORM_BROWSER_FORMSET
*FormSet
,
782 IN FORM_BROWSER_FORM
*Form
,
783 IN OUT FORM_BROWSER_STATEMENT
*Question
,
784 IN GET_SET_QUESTION_VALUE_WITH GetValueFrom
788 Save Question Value to edit copy(cached) or Storage(uncached).
790 @param FormSet FormSet data structure.
791 @param Form Form data structure.
792 @param Question Pointer to the Question.
793 @param SetValueTo Update the question value to editbuffer , buffer or hii driver.
795 @retval EFI_SUCCESS The function completed successfully.
800 IN FORM_BROWSER_FORMSET
*FormSet
,
801 IN FORM_BROWSER_FORM
*Form
,
802 IN OUT FORM_BROWSER_STATEMENT
*Question
,
803 IN GET_SET_QUESTION_VALUE_WITH SetValueTo
807 Perform inconsistent check for a Form.
809 @param FormSet FormSet data structure.
810 @param Form Form data structure.
811 @param Question The Question to be validated.
812 @param Type Validation type: InConsistent or NoSubmit
814 @retval EFI_SUCCESS Form validation pass.
815 @retval other Form validation failed.
820 IN FORM_BROWSER_FORMSET
*FormSet
,
821 IN FORM_BROWSER_FORM
*Form
,
822 IN FORM_BROWSER_STATEMENT
*Question
,
828 Discard data based on the input setting scope (Form, FormSet or System).
830 @param FormSet FormSet data structure.
831 @param Form Form data structure.
832 @param SettingScope Setting Scope for Discard action.
834 @retval EFI_SUCCESS The function completed successfully.
835 @retval EFI_UNSUPPORTED Unsupport SettingScope.
840 IN FORM_BROWSER_FORMSET
*FormSet
,
841 IN FORM_BROWSER_FORM
*Form
,
842 IN BROWSER_SETTING_SCOPE SettingScope
846 Submit data based on the input Setting level (Form, FormSet or System).
848 @param FormSet FormSet data structure.
849 @param Form Form data structure.
850 @param SettingScope Setting Scope for Submit action.
852 @retval EFI_SUCCESS The function completed successfully.
853 @retval EFI_UNSUPPORTED Unsupport SettingScope.
858 IN FORM_BROWSER_FORMSET
*FormSet
,
859 IN FORM_BROWSER_FORM
*Form
,
860 IN BROWSER_SETTING_SCOPE SettingScope
864 Reset Question to its default value.
866 @param FormSet The form set.
867 @param Form The form.
868 @param Question The question.
869 @param DefaultId The Class of the default.
871 @retval EFI_SUCCESS Question is reset to default value.
876 IN FORM_BROWSER_FORMSET
*FormSet
,
877 IN FORM_BROWSER_FORM
*Form
,
878 IN FORM_BROWSER_STATEMENT
*Question
,
883 Get current setting of Questions.
885 @param FormSet FormSet data structure.
889 InitializeCurrentSetting (
890 IN OUT FORM_BROWSER_FORMSET
*FormSet
894 Initialize the internal data structure of a FormSet.
896 @param Handle PackageList Handle
897 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
898 GUID), take the first FormSet found in package
900 @param FormSet FormSet data structure.
902 @retval EFI_SUCCESS The function completed successfully.
903 @retval EFI_NOT_FOUND The specified FormSet could not be found.
908 IN EFI_HII_HANDLE Handle
,
909 IN OUT EFI_GUID
*FormSetGuid
,
910 OUT FORM_BROWSER_FORMSET
*FormSet
914 Reset Questions to their initial value or default value in a Form, Formset or System.
916 GetDefaultValueScope parameter decides which questions will reset
917 to its default value.
919 @param FormSet FormSet data structure.
920 @param Form Form data structure.
921 @param DefaultId The Class of the default.
922 @param SettingScope Setting Scope for Default action.
923 @param GetDefaultValueScope Get default value scope.
924 @param Storage Get default value only for this storage.
925 @param RetrieveValueFirst Whether call the retrieve call back to
926 get the initial value before get default
928 @param SkipGetAltCfg Whether skip the get altcfg string process.
930 @retval EFI_SUCCESS The function completed successfully.
931 @retval EFI_UNSUPPORTED Unsupport SettingScope.
936 IN FORM_BROWSER_FORMSET
*FormSet
,
937 IN FORM_BROWSER_FORM
*Form
,
939 IN BROWSER_SETTING_SCOPE SettingScope
,
940 IN BROWSER_GET_DEFAULT_VALUE GetDefaultValueScope
,
941 IN BROWSER_STORAGE
*Storage
,
942 IN BOOLEAN RetrieveValueFirst
,
943 IN BOOLEAN SkipGetAltCfg
947 Initialize Question's Edit copy from Storage.
949 @param Selection Selection contains the information about
950 the Selection, form and formset to be displayed.
951 Selection action may be updated in retrieve callback.
952 If Selection is NULL, only initialize Question value.
953 @param FormSet FormSet data structure.
954 @param Form Form data structure.
956 @retval EFI_SUCCESS The function completed successfully.
961 IN OUT UI_MENU_SELECTION
*Selection
,
962 IN FORM_BROWSER_FORMSET
*FormSet
,
963 IN FORM_BROWSER_FORM
*Form
967 Initialize Question's Edit copy from Storage for the whole Formset.
969 @param Selection Selection contains the information about
970 the Selection, form and formset to be displayed.
971 Selection action may be updated in retrieve callback.
972 If Selection is NULL, only initialize Question value.
973 @param FormSet FormSet data structure.
975 @retval EFI_SUCCESS The function completed successfully.
980 IN OUT UI_MENU_SELECTION
*Selection
,
981 IN FORM_BROWSER_FORMSET
*FormSet
985 Convert setting of Buffer Storage or NameValue Storage to <ConfigResp>.
987 @param Storage The Storage to be conveted.
988 @param ConfigResp The returned <ConfigResp>.
989 @param ConfigRequest The ConfigRequest string.
990 @param GetEditBuf Get the data from editbuffer or buffer.
992 @retval EFI_SUCCESS Convert success.
993 @retval EFI_INVALID_PARAMETER Incorrect storage type.
997 StorageToConfigResp (
998 IN BROWSER_STORAGE
*Storage
,
999 IN CHAR16
**ConfigResp
,
1000 IN CHAR16
*ConfigRequest
,
1001 IN BOOLEAN GetEditBuf
1005 Convert <ConfigResp> to settings in Buffer Storage or NameValue Storage.
1007 @param Storage The Storage to receive the settings.
1008 @param ConfigResp The <ConfigResp> to be converted.
1010 @retval EFI_SUCCESS Convert success.
1011 @retval EFI_INVALID_PARAMETER Incorrect storage type.
1015 ConfigRespToStorage (
1016 IN BROWSER_STORAGE
*Storage
,
1017 IN CHAR16
*ConfigResp
1021 Fill storage's edit copy with settings requested from Configuration Driver.
1023 @param FormSet FormSet data structure.
1024 @param Storage Buffer Storage.
1029 IN FORM_BROWSER_FORMSET
*FormSet
,
1030 IN FORMSET_STORAGE
*Storage
1034 Fetch the Ifr binary data of a FormSet.
1036 @param Handle PackageList Handle
1037 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
1038 GUID), take the first FormSet found in package
1040 @param BinaryLength The length of the FormSet IFR binary.
1041 @param BinaryData The buffer designed to receive the FormSet.
1043 @retval EFI_SUCCESS Buffer filled with the requested FormSet.
1044 BufferLength was updated.
1045 @retval EFI_INVALID_PARAMETER The handle is unknown.
1046 @retval EFI_NOT_FOUND A form or FormSet on the requested handle cannot
1047 be found with the requested FormId.
1052 IN EFI_HII_HANDLE Handle
,
1053 IN OUT EFI_GUID
*FormSetGuid
,
1054 OUT UINTN
*BinaryLength
,
1055 OUT UINT8
**BinaryData
1059 Save globals used by previous call to SendForm(). SendForm() may be called from
1060 HiiConfigAccess.Callback(), this will cause SendForm() be reentried.
1061 So, save globals of previous call to SendForm() and restore them upon exit.
1065 SaveBrowserContext (
1070 Restore globals used by previous call to SendForm().
1074 RestoreBrowserContext (
1079 This is the routine which an external caller uses to direct the browser
1080 where to obtain it's information.
1083 @param This The Form Browser protocol instanse.
1084 @param Handles A pointer to an array of Handles. If HandleCount > 1 we
1085 display a list of the formsets for the handles specified.
1086 @param HandleCount The number of Handles specified in Handle.
1087 @param FormSetGuid This field points to the EFI_GUID which must match the Guid
1088 field in the EFI_IFR_FORM_SET op-code for the specified
1089 forms-based package. If FormSetGuid is NULL, then this
1090 function will display the first found forms package.
1091 @param FormId This field specifies which EFI_IFR_FORM to render as the first
1092 displayable page. If this field has a value of 0x0000, then
1093 the forms browser will render the specified forms in their encoded order.
1094 ScreenDimenions - This allows the browser to be called so that it occupies a
1095 portion of the physical screen instead of dynamically determining the screen dimensions.
1096 ActionRequest - Points to the action recommended by the form.
1097 @param ScreenDimensions Points to recommended form dimensions, including any non-content area, in
1099 @param ActionRequest Points to the action recommended by the form.
1101 @retval EFI_SUCCESS The function completed successfully.
1102 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
1103 @retval EFI_NOT_FOUND No valid forms could be found to display.
1109 IN CONST EFI_FORM_BROWSER2_PROTOCOL
*This
,
1110 IN EFI_HII_HANDLE
*Handles
,
1111 IN UINTN HandleCount
,
1112 IN EFI_GUID
*FormSetGuid
, OPTIONAL
1113 IN UINT16 FormId
, OPTIONAL
1114 IN CONST EFI_SCREEN_DESCRIPTOR
*ScreenDimensions
, OPTIONAL
1115 OUT EFI_BROWSER_ACTION_REQUEST
*ActionRequest OPTIONAL
1119 This function is called by a callback handler to retrieve uncommitted state
1120 data from the browser.
1122 @param This A pointer to the EFI_FORM_BROWSER2_PROTOCOL
1124 @param ResultsDataSize A pointer to the size of the buffer associated
1126 @param ResultsData A string returned from an IFR browser or
1127 equivalent. The results string will have no
1128 routing information in them.
1129 @param RetrieveData A BOOLEAN field which allows an agent to retrieve
1130 (if RetrieveData = TRUE) data from the uncommitted
1131 browser state information or set (if RetrieveData
1132 = FALSE) data in the uncommitted browser state
1134 @param VariableGuid An optional field to indicate the target variable
1136 @param VariableName An optional field to indicate the target
1137 human-readable variable name.
1139 @retval EFI_SUCCESS The results have been distributed or are awaiting
1141 @retval EFI_BUFFER_TOO_SMALL The ResultsDataSize specified was too small to
1142 contain the results data.
1148 IN CONST EFI_FORM_BROWSER2_PROTOCOL
*This
,
1149 IN OUT UINTN
*ResultsDataSize
,
1150 IN OUT EFI_STRING ResultsData
,
1151 IN BOOLEAN RetrieveData
,
1152 IN CONST EFI_GUID
*VariableGuid
, OPTIONAL
1153 IN CONST CHAR16
*VariableName OPTIONAL
1157 Find menu which will show next time.
1159 @param Selection On input, Selection tell setup browser the information
1160 about the Selection, form and formset to be displayed.
1161 On output, Selection return the screen item that is selected
1163 @param SettingLevel Input Settting level, if it is FormLevel, just exit current form.
1164 else, we need to exit current formset.
1166 @retval TRUE Exit current form.
1167 @retval FALSE User press ESC and keep in current form.
1171 IN OUT UI_MENU_SELECTION
*Selection
,
1172 IN BROWSER_SETTING_SCOPE SettingLevel
1176 check whether the form need to update the NV.
1178 @param Form Form data structure.
1180 @retval TRUE Need to update the NV.
1181 @retval FALSE No need to update the NV.
1184 IsNvUpdateRequiredForForm (
1185 IN FORM_BROWSER_FORM
*Form
1189 check whether the formset need to update the NV.
1191 @param FormSet FormSet data structure.
1193 @retval TRUE Need to update the NV.
1194 @retval FALSE No need to update the NV.
1197 IsNvUpdateRequiredForFormSet (
1198 IN FORM_BROWSER_FORMSET
*FormSet
1202 Call the call back function for the question and process the return action.
1204 @param Selection On input, Selection tell setup browser the information
1205 about the Selection, form and formset to be displayed.
1206 On output, Selection return the screen item that is selected
1208 @param FormSet The formset this question belong to.
1209 @param Form The form this question belong to.
1210 @param Question The Question which need to call.
1211 @param Action The action request.
1212 @param SkipSaveOrDiscard Whether skip save or discard action.
1214 @retval EFI_SUCCESS The call back function excutes successfully.
1215 @return Other value if the call back function failed to excute.
1218 ProcessCallBackFunction (
1219 IN OUT UI_MENU_SELECTION
*Selection
,
1220 IN FORM_BROWSER_FORMSET
*FormSet
,
1221 IN FORM_BROWSER_FORM
*Form
,
1222 IN FORM_BROWSER_STATEMENT
*Question
,
1223 IN EFI_BROWSER_ACTION Action
,
1224 IN BOOLEAN SkipSaveOrDiscard
1228 Call the retrieve type call back function for one question to get the initialize data.
1230 This function only used when in the initialize stage, because in this stage, the
1231 Selection->Form is not ready. For other case, use the ProcessCallBackFunction instead.
1233 @param ConfigAccess The config access protocol produced by the hii driver.
1234 @param Statement The Question which need to call.
1235 @param FormSet The formset this question belong to.
1237 @retval EFI_SUCCESS The call back function excutes successfully.
1238 @return Other value if the call back function failed to excute.
1241 ProcessRetrieveForQuestion (
1242 IN EFI_HII_CONFIG_ACCESS_PROTOCOL
*ConfigAccess
,
1243 IN FORM_BROWSER_STATEMENT
*Statement
,
1244 IN FORM_BROWSER_FORMSET
*FormSet
1248 Find the matched FormSet context in the backup maintain list based on HiiHandle.
1250 @param Handle The Hii Handle.
1252 @return the found FormSet context. If no found, NULL will return.
1255 FORM_BROWSER_FORMSET
*
1256 GetFormSetFromHiiHandle (
1257 EFI_HII_HANDLE Handle
1261 Check whether the input HII handle is the FormSet that is being used.
1263 @param Handle The Hii Handle.
1265 @retval TRUE HII handle is being used.
1266 @retval FALSE HII handle is not being used.
1270 IsHiiHandleInBrowserContext (
1271 EFI_HII_HANDLE Handle
1275 Configure what scope the hot key will impact.
1276 All hot keys have the same scope. The mixed hot keys with the different level are not supported.
1277 If no scope is set, the default scope will be FormSet level.
1278 After all registered hot keys are removed, previous Scope can reset to another level.
1280 @param[in] Scope Scope level to be set.
1282 @retval EFI_SUCCESS Scope is set correctly.
1283 @retval EFI_INVALID_PARAMETER Scope is not the valid value specified in BROWSER_SETTING_SCOPE.
1284 @retval EFI_UNSPPORTED Scope level is different from current one that the registered hot keys have.
1290 IN BROWSER_SETTING_SCOPE Scope
1294 Register the hot key with its browser action, or unregistered the hot key.
1295 Only support hot key that is not printable character (control key, function key, etc.).
1296 If the action value is zero, the hot key will be unregistered if it has been registered.
1297 If the same hot key has been registered, the new action and help string will override the previous ones.
1299 @param[in] KeyData A pointer to a buffer that describes the keystroke
1300 information for the hot key. Its type is EFI_INPUT_KEY to
1301 be supported by all ConsoleIn devices.
1302 @param[in] Action Action value that describes what action will be trigged when the hot key is pressed.
1303 @param[in] DefaultId Specifies the type of defaults to retrieve, which is only for DEFAULT action.
1304 @param[in] HelpString Help string that describes the hot key information.
1305 Its value may be NULL for the unregistered hot key.
1307 @retval EFI_SUCCESS Hot key is registered or unregistered.
1308 @retval EFI_INVALID_PARAMETER KeyData is NULL.
1309 @retval EFI_NOT_FOUND KeyData is not found to be unregistered.
1310 @retval EFI_UNSUPPORTED Key represents a printable character. It is conflicted with Browser.
1315 IN EFI_INPUT_KEY
*KeyData
,
1317 IN UINT16 DefaultId
,
1318 IN EFI_STRING HelpString OPTIONAL
1322 Register Exit handler function.
1323 When more than one handler function is registered, the latter one will override the previous one.
1324 When NULL handler is specified, the previous Exit handler will be unregistered.
1326 @param[in] Handler Pointer to handler function.
1331 RegiserExitHandler (
1332 IN EXIT_HANDLER Handler
1337 Check whether the browser data has been modified.
1339 @retval TRUE Browser data is changed.
1340 @retval FALSE No browser data is changed.
1345 IsBrowserDataModified (
1351 Execute the action requested by the Action parameter.
1353 @param[in] Action Execute the request action.
1354 @param[in] DefaultId The default Id info when need to load default value.
1356 @retval EFI_SUCCESS Execute the request action succss.
1357 @retval EFI_INVALID_PARAMETER The input action value is invalid.
1368 Create reminder to let user to choose save or discard the changed browser data.
1369 Caller can use it to actively check the changed browser data.
1371 @retval BROWSER_NO_CHANGES No browser data is changed.
1372 @retval BROWSER_SAVE_CHANGES The changed browser data is saved.
1373 @retval BROWSER_DISCARD_CHANGES The changed browser data is discard.
1374 @retval BROWSER_KEEP_CURRENT Browser keep current changes.
1384 Check whether the Reset Required for the browser
1386 @retval TRUE Browser required to reset after exit.
1387 @retval FALSE Browser not need to reset after exit.
1397 Find the registered HotKey based on KeyData.
1399 @param[in] KeyData A pointer to a buffer that describes the keystroke
1400 information for the hot key.
1402 @return The registered HotKey context. If no found, NULL will return.
1405 GetHotKeyFromRegisterList (
1406 IN EFI_INPUT_KEY
*KeyData
1411 Get FORM_BROWSER_STATEMENT from FORM_DISPLAY_ENGINE_STATEMENT based on the OpCode info.
1413 @param DisplayStatement The input FORM_DISPLAY_ENGINE_STATEMENT.
1415 @retval FORM_BROWSER_STATEMENT The return FORM_BROWSER_STATEMENT info.
1418 FORM_BROWSER_STATEMENT
*
1419 GetBrowserStatement (
1420 IN FORM_DISPLAY_ENGINE_STATEMENT
*DisplayStatement
1424 Password may be stored as encrypted by Configuration Driver. When change a
1425 password, user will be challenged with old password. To validate user input old
1426 password, we will send the clear text to Configuration Driver via Callback().
1427 Configuration driver is responsible to check the passed in password and return
1428 the validation result. If validation pass, state machine in password Callback()
1429 will transit from BROWSER_STATE_VALIDATE_PASSWORD to BROWSER_STATE_SET_PASSWORD.
1430 After user type in new password twice, Callback() will be invoked to send the
1431 new password to Configuration Driver.
1433 @param Selection Pointer to UI_MENU_SELECTION.
1434 @param MenuOption The MenuOption for this password Question.
1435 @param String The clear text of password.
1437 @retval EFI_NOT_AVAILABLE_YET Callback() request to terminate password input.
1438 @return In state of BROWSER_STATE_VALIDATE_PASSWORD:
1439 @retval EFI_SUCCESS Password correct, Browser will prompt for new
1441 @retval EFI_NOT_READY Password incorrect, Browser will show error
1443 @retval Other Browser will do nothing.
1444 @return In state of BROWSER_STATE_SET_PASSWORD:
1445 @retval EFI_SUCCESS Set password success.
1446 @retval Other Set password failed.
1451 IN UI_MENU_SELECTION
*Selection
,
1452 IN FORM_BROWSER_STATEMENT
*Question
,
1457 Display error message for invalid password.
1466 The worker function that send the displays to the screen. On output,
1467 the selection made by user is returned.
1469 @param Selection On input, Selection tell setup browser the information
1470 about the Selection, form and formset to be displayed.
1471 On output, Selection return the screen item that is selected
1474 @retval EFI_SUCCESS The page is displayed successfully.
1475 @return Other value if the page failed to be diplayed.
1480 IN OUT UI_MENU_SELECTION
*Selection
1484 Free up the resource allocated for all strings required
1489 FreeBrowserStrings (
1494 Create a menu with specified formset GUID and form ID, and add it as a child
1495 of the given parent menu.
1497 @param HiiHandle Hii handle related to this formset.
1498 @param FormSetGuid The Formset Guid of menu to be added.
1499 @param FormId The Form ID of menu to be added.
1500 @param QuestionId The question id of this menu to be added.
1502 @return A pointer to the newly added menu or NULL if memory is insufficient.
1507 IN EFI_HII_HANDLE HiiHandle
,
1508 IN EFI_GUID
*FormSetGuid
,
1510 IN UINT16 QuestionId
1514 Search Menu with given FormSetGuid and FormId in all cached menu list.
1516 @param HiiHandle HiiHandle for FormSet.
1517 @param FormSetGuid The Formset GUID of the menu to search.
1518 @param FormId The Form ID of menu to search.
1520 @return A pointer to menu found or NULL if not found.
1525 IN EFI_HII_HANDLE HiiHandle
,
1526 IN EFI_GUID
*FormSetGuid
,
1531 Free Menu list linked list.
1533 @param MenuListHead One Menu list point in the menu list.
1538 LIST_ENTRY
*MenuListHead
1542 Find parent menu for current menu.
1544 @param CurrentMenu Current Menu
1545 @param SettingLevel Whether find parent menu in Form Level or Formset level.
1546 In form level, just find the parent menu;
1547 In formset level, find the parent menu which has different
1550 @retval The parent menu for current menu.
1554 IN FORM_ENTRY_INFO
*CurrentMenu
,
1555 IN BROWSER_SETTING_SCOPE SettingLevel
1559 Validate the HiiHandle.
1561 @param HiiHandle The input HiiHandle which need to validate.
1563 @retval TRUE The handle is validate.
1564 @retval FALSE The handle is invalidate.
1569 EFI_HII_HANDLE HiiHandle
1573 Copy current Menu list to the new menu list.
1575 @param NewMenuListHead New create Menu list.
1576 @param CurrentMenuListHead Current Menu list.
1581 OUT LIST_ENTRY
*NewMenuListHead
,
1582 IN LIST_ENTRY
*CurrentMenuListHead
1586 Search an Option of a Question by its value.
1588 @param Question The Question
1589 @param OptionValue Value for Option to be searched.
1591 @retval Pointer Pointer to the found Option.
1592 @retval NULL Option not found.
1597 IN FORM_BROWSER_STATEMENT
*Question
,
1598 IN EFI_HII_VALUE
*OptionValue
1601 Return data element in an Array by its Index.
1603 @param Array The data array.
1604 @param Type Type of the data in this array.
1605 @param Index Zero based index for data in this array.
1607 @retval Value The data to be returned
1618 Set value of a data element in an Array by its Index.
1620 @param Array The data array.
1621 @param Type Type of the data in this array.
1622 @param Index Zero based index for data in this array.
1623 @param Value The value to be set.
1635 Compare two Hii value.
1637 @param Value1 Expression value to compare on left-hand.
1638 @param Value2 Expression value to compare on right-hand.
1639 @param Result Return value after compare.
1640 retval 0 Two operators equal.
1641 return Positive value if Value1 is greater than Value2.
1642 retval Negative value if Value1 is less than Value2.
1643 @param HiiHandle Only required for string compare.
1645 @retval other Could not perform compare on two values.
1646 @retval EFI_SUCCESS Compare the value success.
1651 IN EFI_HII_VALUE
*Value1
,
1652 IN EFI_HII_VALUE
*Value2
,
1654 IN EFI_HII_HANDLE HiiHandle OPTIONAL
1658 Perform Password check.
1659 Passwork may be encrypted by driver that requires the specific check.
1661 @param Form Form where Password Statement is in.
1662 @param Statement Password statement
1663 @param PasswordString Password string to be checked. It may be NULL.
1664 NULL means to restore password.
1665 "" string can be used to checked whether old password does exist.
1667 @return Status Status of Password check.
1672 IN FORM_DISPLAY_ENGINE_FORM
*Form
,
1673 IN FORM_DISPLAY_ENGINE_STATEMENT
*Statement
,
1674 IN EFI_STRING PasswordString OPTIONAL
1679 Get FORM_BROWSER_STATEMENT from FORM_DISPLAY_ENGINE_STATEMENT based on the OpCode info.
1681 @param DisplayStatement The input FORM_DISPLAY_ENGINE_STATEMENT.
1683 @retval FORM_BROWSER_STATEMENT The return FORM_BROWSER_STATEMENT info.
1686 FORM_BROWSER_STATEMENT
*
1687 GetBrowserStatement (
1688 IN FORM_DISPLAY_ENGINE_STATEMENT
*DisplayStatement
1693 Initialize the Display form structure data.
1697 InitializeDisplayFormData (
1703 Base on the current formset info, clean the ConfigRequest string in browser storage.
1705 @param FormSet Pointer of the FormSet
1709 CleanBrowserStorage (
1710 IN OUT FORM_BROWSER_FORMSET
*FormSet
1714 Find HII Handle in the HII database associated with given Device Path.
1716 If DevicePath is NULL, then ASSERT.
1718 @param DevicePath Device Path associated with the HII package list
1720 @param FormsetGuid The formset guid for this formset.
1722 @retval Handle HII package list Handle associated with the Device
1724 @retval NULL Hii Package list handle is not found.
1728 DevicePathToHiiHandle (
1729 IN EFI_DEVICE_PATH_PROTOCOL
*DevicePath
,
1730 IN EFI_GUID
*FormsetGuid
1734 Adjust the config request info, remove the request elements which already in AllConfigRequest string.
1736 @param Storage Form set Storage.
1737 @param Request The input request string.
1738 @param RespString Whether the input is ConfigRequest or ConfigResp format.
1740 @retval TRUE Has element not covered by current used elements, need to continue to call ExtractConfig
1741 @retval FALSE All elements covered by current used elements.
1745 ConfigRequestAdjust (
1746 IN BROWSER_STORAGE
*Storage
,
1748 IN BOOLEAN RespString
1752 Perform question check.
1754 If one question has more than one check, process form high priority to low.
1756 @param FormSet FormSet data structure.
1757 @param Form Form data structure.
1758 @param Question The Question to be validated.
1760 @retval EFI_SUCCESS Form validation pass.
1761 @retval other Form validation failed.
1765 ValueChangedValidation (
1766 IN FORM_BROWSER_FORMSET
*FormSet
,
1767 IN FORM_BROWSER_FORM
*Form
,
1768 IN FORM_BROWSER_STATEMENT
*Question
1772 Pop up the error info.
1774 @param BrowserStatus The input browser status.
1775 @param HiiHandle The HiiHandle for this error opcode.
1776 @param OpCode The opcode use to get the erro info and timeout value.
1777 @param ErrorString Error string used by BROWSER_NO_SUBMIT_IF.
1782 IN UINT32 BrowserStatus
,
1783 IN EFI_HII_HANDLE HiiHandle
,
1784 IN EFI_IFR_OP_HEADER
*OpCode
, OPTIONAL
1785 IN CHAR16
*ErrorString
1789 Check whether the result is TRUE or FALSE.
1791 For the EFI_HII_VALUE value type is numeric, return TRUE if the
1794 @param Result Input the result data.
1796 @retval TRUE The result is TRUE.
1797 @retval FALSE The result is FALSE.
1802 IN EFI_HII_VALUE
*Result
1806 Get Formset_storage base on the input varstoreid info.
1808 @param FormSet Pointer of the current FormSet.
1809 @param VarStoreId Varstore ID info.
1811 @return Pointer to a FORMSET_STORAGE data structure.
1815 GetFstStgFromVarId (
1816 IN FORM_BROWSER_FORMSET
*FormSet
,
1817 IN EFI_VARSTORE_ID VarStoreId
1821 Get Formset_storage base on the input browser storage.
1823 More than one formsets may share the same browser storage,
1824 this function just get the first formset storage which
1825 share the browser storage.
1827 @param Storage browser storage info.
1829 @return Pointer to a FORMSET_STORAGE data structure.
1834 GetFstStgFromBrsStg (
1835 IN BROWSER_STORAGE
*Storage
1839 Reconnect the controller.
1841 @param DriverHandle The controller handle which need to be reconnect.
1843 @retval TRUE do the reconnect behavior success.
1844 @retval FALSE do the reconnect behavior failed.
1848 ReconnectController (
1849 IN EFI_HANDLE DriverHandle