]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Ui.h
Update the code of processing device path info in browser to follow UEFI spec.
[mirror_edk2.git] / MdeModulePkg / Universal / SetupBrowserDxe / Ui.h
1 /** @file
2 Private structure, MACRO and function definitions for User Interface related functionalities.
3
4 Copyright (c) 2004 - 2013, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _UI_H_
16 #define _UI_H_
17
18 //
19 // Globals
20 //
21 #define REGULAR_NUMERIC 0
22 #define TIME_NUMERIC 1
23 #define DATE_NUMERIC 2
24
25 #define SUBTITLE_INDENT 2
26
27
28 //
29 // It take 23 characters including the NULL to print a 64 bits number with "[" and "]".
30 // pow(2, 64) = [18446744073709551616]
31 //
32 #define MAX_NUMERIC_INPUT_WIDTH 23
33
34 typedef enum {
35 UiNoOperation,
36 UiSelect,
37 UiUp,
38 UiDown,
39 UiLeft,
40 UiRight,
41 UiReset,
42 UiPrevious,
43 UiPageUp,
44 UiPageDown,
45 UiHotKey,
46 UiMaxOperation
47 } UI_SCREEN_OPERATION;
48
49 typedef enum {
50 CfInitialization,
51 CfCheckSelection,
52 CfRepaint,
53 CfRefreshHighLight,
54 CfUpdateHelpString,
55 CfPrepareToReadKey,
56 CfReadKey,
57 CfScreenOperation,
58 CfUiSelect,
59 CfUiReset,
60 CfUiLeft,
61 CfUiRight,
62 CfUiUp,
63 CfUiPageUp,
64 CfUiPageDown,
65 CfUiDown,
66 CfUiDefault,
67 CfUiNoOperation,
68 CfExit,
69 CfUiHotKey,
70 CfMaxControlFlag
71 } UI_CONTROL_FLAG;
72
73 #define UI_ACTION_NONE 0
74 #define UI_ACTION_REFRESH_FORM 1
75 #define UI_ACTION_REFRESH_FORMSET 2
76 #define UI_ACTION_EXIT 3
77
78 typedef struct _UI_MENU_LIST UI_MENU_LIST;
79
80 typedef struct {
81 EFI_HII_HANDLE Handle;
82
83 //
84 // Target formset/form/Question information
85 //
86 EFI_GUID FormSetGuid;
87 UINT16 FormId;
88 UINT16 QuestionId;
89 UINTN Sequence; // used for time/date only.
90
91 UINTN TopRow;
92 UINTN BottomRow;
93 UINTN PromptCol;
94 UINTN OptionCol;
95 UINTN CurrentRow;
96
97 //
98 // Ation for Browser to taken:
99 // UI_ACTION_NONE - navigation inside a form
100 // UI_ACTION_REFRESH_FORM - re-evaluate expressions and repaint form
101 // UI_ACTION_REFRESH_FORMSET - re-parse formset IFR binary
102 //
103 UINTN Action;
104
105 //
106 // Current selected fomset/form/Question
107 //
108 FORM_BROWSER_FORMSET *FormSet;
109 FORM_BROWSER_FORM *Form;
110 FORM_BROWSER_STATEMENT *Statement;
111
112 //
113 // Whether the Form is editable
114 //
115 BOOLEAN FormEditable;
116
117 UI_MENU_LIST *CurrentMenu;
118 } UI_MENU_SELECTION;
119
120 #define UI_MENU_OPTION_SIGNATURE SIGNATURE_32 ('u', 'i', 'm', 'm')
121 #define UI_MENU_LIST_SIGNATURE SIGNATURE_32 ('u', 'i', 'm', 'l')
122
123 typedef struct {
124 UINTN Signature;
125 LIST_ENTRY Link;
126
127 EFI_HII_HANDLE Handle;
128 FORM_BROWSER_STATEMENT *ThisTag;
129 UINT16 EntryNumber;
130
131 UINTN Row;
132 UINTN Col;
133 UINTN OptCol;
134 CHAR16 *Description;
135 UINTN Skip; // Number of lines
136
137 //
138 // Display item sequence for date/time
139 // Date: Month/Day/Year
140 // Sequence: 0 1 2
141 //
142 // Time: Hour : Minute : Second
143 // Sequence: 0 1 2
144 //
145 //
146 UINTN Sequence;
147
148 BOOLEAN GrayOut;
149 BOOLEAN ReadOnly;
150
151 //
152 // Whether user could change value of this item
153 //
154 BOOLEAN IsQuestion;
155 } UI_MENU_OPTION;
156
157 #define MENU_OPTION_FROM_LINK(a) CR (a, UI_MENU_OPTION, Link, UI_MENU_OPTION_SIGNATURE)
158
159 struct _UI_MENU_LIST {
160 UINTN Signature;
161 LIST_ENTRY Link;
162
163 EFI_HII_HANDLE HiiHandle;
164 EFI_GUID FormSetGuid;
165 UINT16 FormId;
166 UINT16 QuestionId;
167 UINTN Sequence; // used for time/date only.
168
169 UI_MENU_LIST *Parent;
170 LIST_ENTRY ChildListHead;
171 };
172
173 #define UI_MENU_LIST_FROM_LINK(a) CR (a, UI_MENU_LIST, Link, UI_MENU_LIST_SIGNATURE)
174
175 typedef struct _MENU_REFRESH_ENTRY MENU_REFRESH_ENTRY;
176 struct _MENU_REFRESH_ENTRY {
177 MENU_REFRESH_ENTRY *Next;
178 UI_MENU_OPTION *MenuOption; // Describes the entry needing an update
179 UI_MENU_SELECTION *Selection;
180 UINTN CurrentColumn;
181 UINTN CurrentRow;
182 UINTN CurrentAttribute;
183 EFI_EVENT Event;
184 };
185
186 typedef struct {
187 UINT16 ScanCode;
188 UI_SCREEN_OPERATION ScreenOperation;
189 } SCAN_CODE_TO_SCREEN_OPERATION;
190
191 typedef struct {
192 UI_SCREEN_OPERATION ScreenOperation;
193 UI_CONTROL_FLAG ControlFlag;
194 } SCREEN_OPERATION_T0_CONTROL_FLAG;
195
196
197 extern LIST_ENTRY gMenuOption;
198 extern MENU_REFRESH_ENTRY *gMenuRefreshHead;
199 extern UI_MENU_SELECTION *gCurrentSelection;
200 extern BOOLEAN mHiiPackageListUpdated;
201
202 //
203 // Global Functions
204 //
205 /**
206 Initialize Menu option list.
207
208 **/
209 VOID
210 UiInitMenu (
211 VOID
212 );
213
214 /**
215 Initialize Menu option list.
216
217 **/
218 VOID
219 UiInitMenuList (
220 VOID
221 );
222
223 /**
224 Free Menu option linked list.
225
226 **/
227 VOID
228 UiFreeMenu (
229 VOID
230 );
231
232 /**
233 Create a menu with specified formset GUID and form ID, and add it as a child
234 of the given parent menu.
235
236 @param Parent The parent of menu to be added.
237 @param HiiHandle Hii handle related to this formset.
238 @param FormSetGuid The Formset Guid of menu to be added.
239 @param FormId The Form ID of menu to be added.
240
241 @return A pointer to the newly added menu or NULL if memory is insufficient.
242
243 **/
244 UI_MENU_LIST *
245 UiAddMenuList (
246 IN OUT UI_MENU_LIST *Parent,
247 IN EFI_HII_HANDLE HiiHandle,
248 IN EFI_GUID *FormSetGuid,
249 IN UINT16 FormId
250 );
251
252 /**
253 Search Menu with given FormId in the parent menu and all its child menus.
254
255 @param Parent The parent of menu to search.
256 @param FormSetGuid The Formset GUID of the menu to search.
257 @param FormId The Form ID of menu to search.
258
259 @return A pointer to menu found or NULL if not found.
260
261 **/
262 UI_MENU_LIST *
263 UiFindChildMenuList (
264 IN UI_MENU_LIST *Parent,
265 IN EFI_GUID *FormSetGuid,
266 IN UINT16 FormId
267 );
268
269 /**
270 Search Menu with given FormSetGuid and FormId in all cached menu list.
271
272 @param FormSetGuid The Formset GUID of the menu to search.
273 @param FormId The Form ID of menu to search.
274
275 @return A pointer to menu found or NULL if not found.
276
277 **/
278 UI_MENU_LIST *
279 UiFindMenuList (
280 IN EFI_GUID *FormSetGuid,
281 IN UINT16 FormId
282 );
283
284 /**
285 Free Menu option linked list.
286
287 **/
288 VOID
289 UiFreeRefreshList (
290 VOID
291 );
292
293 /**
294 Add one menu option by specified description and context.
295
296 @param String String description for this option.
297 @param Handle Hii handle for the package list.
298 @param Form The form this statement belong to.
299 @param Statement Statement of this Menu Option.
300 @param NumberOfLines Display lines for this Menu Option.
301 @param MenuItemCount The index for this Option in the Menu.
302
303 @retval Pointer Pointer to the added Menu Option.
304
305 **/
306 UI_MENU_OPTION *
307 UiAddMenuOption (
308 IN CHAR16 *String,
309 IN EFI_HII_HANDLE Handle,
310 IN FORM_BROWSER_FORM *Form,
311 IN FORM_BROWSER_STATEMENT *Statement,
312 IN UINT16 NumberOfLines,
313 IN UINT16 MenuItemCount
314 );
315
316 /**
317 Display menu and wait for user to select one menu option, then return it.
318 If AutoBoot is enabled, then if user doesn't select any option,
319 after period of time, it will automatically return the first menu option.
320
321 @param Selection Menu selection.
322
323 @return Return the pointer of the menu which selected,
324 @return otherwise return NULL.
325
326 **/
327 EFI_STATUS
328 UiDisplayMenu (
329 IN OUT UI_MENU_SELECTION *Selection
330 );
331
332 /**
333 Free up the resource allocated for all strings required
334 by Setup Browser.
335
336 **/
337 VOID
338 FreeBrowserStrings (
339 VOID
340 );
341
342 /**
343 Process the goto op code, update the info in the selection structure.
344
345 @param Statement The statement belong to goto op code.
346 @param Selection The selection info.
347 @param Repaint Whether need to repaint the menu.
348 @param NewLine Whether need to create new line.
349
350 @retval EFI_SUCCESS The menu process successfully.
351 @return Other value if the process failed.
352 **/
353 EFI_STATUS
354 ProcessGotoOpCode (
355 IN OUT FORM_BROWSER_STATEMENT *Statement,
356 IN OUT UI_MENU_SELECTION *Selection,
357 OUT BOOLEAN *Repaint,
358 OUT BOOLEAN *NewLine
359 );
360
361
362 /**
363 The worker function that send the displays to the screen. On output,
364 the selection made by user is returned.
365
366 @param Selection On input, Selection tell setup browser the information
367 about the Selection, form and formset to be displayed.
368 On output, Selection return the screen item that is selected
369 by user.
370
371 @retval EFI_SUCCESS The page is displayed successfully.
372 @return Other value if the page failed to be diplayed.
373
374 **/
375 EFI_STATUS
376 SetupBrowser (
377 IN OUT UI_MENU_SELECTION *Selection
378 );
379
380 /**
381 Set Buffer to Value for Size bytes.
382
383 @param Buffer Memory to set.
384 @param Size Number of bytes to set
385 @param Value Value of the set operation.
386
387 **/
388 VOID
389 SetUnicodeMem (
390 IN VOID *Buffer,
391 IN UINTN Size,
392 IN CHAR16 Value
393 );
394
395 /**
396 Wait for a given event to fire, or for an optional timeout to expire.
397
398 @param Event The event to wait for
399 @param Timeout An optional timeout value in 100 ns units.
400 @param RefreshInterval Menu refresh interval (in seconds).
401
402 @retval EFI_SUCCESS Event fired before Timeout expired.
403 @retval EFI_TIME_OUT Timout expired before Event fired.
404
405 **/
406 EFI_STATUS
407 UiWaitForSingleEvent (
408 IN EFI_EVENT Event,
409 IN UINT64 Timeout, OPTIONAL
410 IN UINT8 RefreshInterval OPTIONAL
411 );
412
413 /**
414 Draw a pop up windows based on the dimension, number of lines and
415 strings specified.
416
417 @param ScreenWidth The width of the pop-up.
418 @param NumberOfLines The number of lines.
419 @param ... A series of text strings that displayed in the pop-up.
420
421 **/
422 VOID
423 EFIAPI
424 CreateMultiStringPopUp (
425 IN UINTN ScreenWidth,
426 IN UINTN NumberOfLines,
427 ...
428 );
429
430 /**
431 Get string or password input from user.
432
433 @param MenuOption Pointer to the current input menu.
434 @param Prompt The prompt string shown on popup window.
435 @param StringPtr Old user input and destination for use input string.
436
437 @retval EFI_SUCCESS If string input is read successfully
438 @retval EFI_DEVICE_ERROR If operation fails
439
440 **/
441 EFI_STATUS
442 ReadString (
443 IN UI_MENU_OPTION *MenuOption,
444 IN CHAR16 *Prompt,
445 IN OUT CHAR16 *StringPtr
446 );
447
448 /**
449 Get selection for OneOf and OrderedList (Left/Right will be ignored).
450
451 @param Selection Pointer to current selection.
452 @param MenuOption Pointer to the current input menu.
453
454 @retval EFI_SUCCESS If Option input is processed successfully
455 @retval EFI_DEVICE_ERROR If operation fails
456
457 **/
458 EFI_STATUS
459 GetSelectionInputPopUp (
460 IN UI_MENU_SELECTION *Selection,
461 IN UI_MENU_OPTION *MenuOption
462 );
463
464 /**
465 This routine reads a numeric value from the user input.
466
467 @param Selection Pointer to current selection.
468 @param MenuOption Pointer to the current input menu.
469
470 @retval EFI_SUCCESS If numerical input is read successfully
471 @retval EFI_DEVICE_ERROR If operation fails
472
473 **/
474 EFI_STATUS
475 GetNumericInput (
476 IN UI_MENU_SELECTION *Selection,
477 IN UI_MENU_OPTION *MenuOption
478 );
479
480 /**
481 Update status bar on the bottom of menu.
482
483 @param Selection Current selection info.
484 @param MessageType The type of message to be shown.
485 @param Flags The flags in Question header.
486 @param State Set or clear.
487
488 **/
489 VOID
490 UpdateStatusBar (
491 IN UI_MENU_SELECTION *Selection,
492 IN UINTN MessageType,
493 IN UINT8 Flags,
494 IN BOOLEAN State
495 );
496
497 /**
498 Process Question Config.
499
500 @param Selection The UI menu selection.
501 @param Question The Question to be peocessed.
502
503 @retval EFI_SUCCESS Question Config process success.
504 @retval Other Question Config process fail.
505
506 **/
507 EFI_STATUS
508 ProcessQuestionConfig (
509 IN UI_MENU_SELECTION *Selection,
510 IN FORM_BROWSER_STATEMENT *Question
511 );
512
513 /**
514 Print Question Value according to it's storage width and display attributes.
515
516 @param Question The Question to be printed.
517 @param FormattedNumber Buffer for output string.
518 @param BufferSize The FormattedNumber buffer size in bytes.
519
520 @retval EFI_SUCCESS Print success.
521 @retval EFI_BUFFER_TOO_SMALL Buffer size is not enough for formatted number.
522
523 **/
524 EFI_STATUS
525 PrintFormattedNumber (
526 IN FORM_BROWSER_STATEMENT *Question,
527 IN OUT CHAR16 *FormattedNumber,
528 IN UINTN BufferSize
529 );
530
531 /**
532 Search an Option of a Question by its value.
533
534 @param Question The Question
535 @param OptionValue Value for Option to be searched.
536
537 @retval Pointer Pointer to the found Option.
538 @retval NULL Option not found.
539
540 **/
541 QUESTION_OPTION *
542 ValueToOption (
543 IN FORM_BROWSER_STATEMENT *Question,
544 IN EFI_HII_VALUE *OptionValue
545 );
546
547 /**
548 Return data element in an Array by its Index.
549
550 @param Array The data array.
551 @param Type Type of the data in this array.
552 @param Index Zero based index for data in this array.
553
554 @retval Value The data to be returned
555
556 **/
557 UINT64
558 GetArrayData (
559 IN VOID *Array,
560 IN UINT8 Type,
561 IN UINTN Index
562 );
563
564 /**
565 Set value of a data element in an Array by its Index.
566
567 @param Array The data array.
568 @param Type Type of the data in this array.
569 @param Index Zero based index for data in this array.
570 @param Value The value to be set.
571
572 **/
573 VOID
574 SetArrayData (
575 IN VOID *Array,
576 IN UINT8 Type,
577 IN UINTN Index,
578 IN UINT64 Value
579 );
580
581 /**
582 Check whether this value already in the array, if yes, return the index.
583
584 @param Array The data array.
585 @param Type Type of the data in this array.
586 @param Value The value to be find.
587 @param Index The index in the array which has same value with Value.
588
589 @retval TRUE Found the value in the array.
590 @retval FALSE Not found the value.
591
592 **/
593 BOOLEAN
594 FindArrayData (
595 IN VOID *Array,
596 IN UINT8 Type,
597 IN UINT64 Value,
598 OUT UINTN *Index OPTIONAL
599 );
600
601 /**
602 Process a Question's Option (whether selected or un-selected).
603
604 @param Selection Pointer to UI_MENU_SELECTION.
605 @param MenuOption The MenuOption for this Question.
606 @param Selected TRUE: if Question is selected.
607 @param OptionString Pointer of the Option String to be displayed.
608
609 @retval EFI_SUCCESS Question Option process success.
610 @retval Other Question Option process fail.
611
612 **/
613 EFI_STATUS
614 ProcessOptions (
615 IN UI_MENU_SELECTION *Selection,
616 IN UI_MENU_OPTION *MenuOption,
617 IN BOOLEAN Selected,
618 OUT CHAR16 **OptionString
619 );
620
621 /**
622 Process the help string: Split StringPtr to several lines of strings stored in
623 FormattedString and the glyph width of each line cannot exceed gHelpBlockWidth.
624
625 @param StringPtr The entire help string.
626 @param FormattedString The oupput formatted string.
627 @param EachLineWidth The string length of each line in the formatted string.
628 @param RowCount TRUE: if Question is selected.
629
630 **/
631 UINTN
632 ProcessHelpString (
633 IN CHAR16 *StringPtr,
634 OUT CHAR16 **FormattedString,
635 OUT UINT16 *EachLineWidth,
636 IN UINTN RowCount
637 );
638
639 /**
640 Update key's help imformation.
641
642 @param Selection Tell setup browser the information about the Selection
643 @param MenuOption The Menu option
644 @param Selected Whether or not a tag be selected
645
646 **/
647 VOID
648 UpdateKeyHelp (
649 IN UI_MENU_SELECTION *Selection,
650 IN UI_MENU_OPTION *MenuOption,
651 IN BOOLEAN Selected
652 );
653
654 /**
655 Clear retangle with specified text attribute.
656
657 @param LeftColumn Left column of retangle.
658 @param RightColumn Right column of retangle.
659 @param TopRow Start row of retangle.
660 @param BottomRow End row of retangle.
661 @param TextAttribute The character foreground and background.
662
663 **/
664 VOID
665 ClearLines (
666 IN UINTN LeftColumn,
667 IN UINTN RightColumn,
668 IN UINTN TopRow,
669 IN UINTN BottomRow,
670 IN UINTN TextAttribute
671 );
672
673 /**
674 Count the storage space of a Unicode string.
675
676 This function handles the Unicode string with NARROW_CHAR
677 and WIDE_CHAR control characters. NARROW_HCAR and WIDE_CHAR
678 does not count in the resultant output. If a WIDE_CHAR is
679 hit, then 2 Unicode character will consume an output storage
680 space with size of CHAR16 till a NARROW_CHAR is hit.
681
682 If String is NULL, then ASSERT ().
683
684 @param String The input string to be counted.
685
686 @return Storage space for the input string.
687
688 **/
689 UINTN
690 GetStringWidth (
691 IN CHAR16 *String
692 );
693
694 /**
695 Will copy LineWidth amount of a string in the OutputString buffer and return the
696 number of CHAR16 characters that were copied into the OutputString buffer.
697 In the code, it deals \r,\n,\r\n same as \n\r, also it not process the \r or \g.
698
699 @param InputString String description for this option.
700 @param LineWidth Width of the desired string to extract in CHAR16
701 characters
702 @param GlyphWidth The glyph width of the beging char in the string.
703 @param Index Where in InputString to start the copy process
704 @param OutputString Buffer to copy the string into
705
706 @return Returns the number of CHAR16 characters that were copied into the OutputString buffer.
707
708 **/
709 UINT16
710 GetLineByWidth (
711 IN CHAR16 *InputString,
712 IN UINT16 LineWidth,
713 IN OUT UINT16 *GlyphWidth,
714 IN OUT UINTN *Index,
715 OUT CHAR16 **OutputString
716 );
717
718 /**
719 Get the supported width for a particular op-code
720
721 @param Statement The FORM_BROWSER_STATEMENT structure passed in.
722 @param Handle The handle in the HII database being used
723
724 @return Returns the number of CHAR16 characters that is support.
725
726 **/
727 UINT16
728 GetWidth (
729 IN FORM_BROWSER_STATEMENT *Statement,
730 IN EFI_HII_HANDLE Handle
731 );
732
733 /**
734 Concatenate a narrow string to another string.
735
736 @param Destination The destination string.
737 @param Source The source string. The string to be concatenated.
738 to the end of Destination.
739
740 **/
741 VOID
742 NewStrCat (
743 IN OUT CHAR16 *Destination,
744 IN CHAR16 *Source
745 );
746
747 /**
748 Wait for a key to be pressed by user.
749
750 @param Key The key which is pressed by user.
751
752 @retval EFI_SUCCESS The function always completed successfully.
753
754 **/
755 EFI_STATUS
756 WaitForKeyStroke (
757 OUT EFI_INPUT_KEY *Key
758 );
759
760 /**
761 Reset stack pointer to begin of the stack.
762
763 **/
764 VOID
765 ResetScopeStack (
766 VOID
767 );
768
769 /**
770 Push the expression options onto the Stack.
771
772 @param Pointer Pointer to the current expression.
773 @param Level Which type this expression belong to. Form,
774 statement or option?
775
776 @retval EFI_SUCCESS The value was pushed onto the stack.
777 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the stack.
778
779 **/
780 EFI_STATUS
781 PushConditionalExpression (
782 IN FORM_EXPRESSION *Pointer,
783 IN EXPRESS_LEVEL Level
784 );
785
786 /**
787 Pop the expression options from the Stack
788
789 @param Level Which type this expression belong to. Form,
790 statement or option?
791
792 @retval EFI_SUCCESS The value was pushed onto the stack.
793 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the stack.
794
795 **/
796 EFI_STATUS
797 PopConditionalExpression (
798 IN EXPRESS_LEVEL Level
799 );
800
801 /**
802 Get the expression Buffer pointer.
803
804 @param Level Which type this expression belong to. Form,
805 statement or option?
806
807 @retval The start pointer of the expression buffer or NULL.
808
809 **/
810 FORM_EXPRESSION **
811 GetConditionalExpressionList (
812 IN EXPRESS_LEVEL Level
813 );
814
815 /**
816 Get the expression list count.
817
818 @param Level Which type this expression belong to. Form,
819 statement or option?
820
821 @retval >=0 The expression count
822 @retval -1 Input parameter error.
823
824 **/
825 INTN
826 GetConditionalExpressionCount (
827 IN EXPRESS_LEVEL Level
828 );
829
830 /**
831 Push an Operand onto the Stack
832
833 @param Operand Operand to push.
834
835 @retval EFI_SUCCESS The value was pushed onto the stack.
836 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the
837 stack.
838
839 **/
840 EFI_STATUS
841 PushScope (
842 IN UINT8 Operand
843 );
844
845 /**
846 Pop an Operand from the Stack
847
848 @param Operand Operand to pop.
849
850 @retval EFI_SUCCESS The value was pushed onto the stack.
851 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the
852 stack.
853
854 **/
855 EFI_STATUS
856 PopScope (
857 OUT UINT8 *Operand
858 );
859
860 /**
861 Reset stack pointer to begin of the stack.
862
863 **/
864 VOID
865 ResetCurrentExpressionStack (
866 VOID
867 );
868
869 /**
870 Push current expression onto the Stack
871
872 @param Pointer Pointer to current expression.
873
874 @retval EFI_SUCCESS The value was pushed onto the stack.
875 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the stack.
876
877 **/
878 EFI_STATUS
879 PushCurrentExpression (
880 IN VOID *Pointer
881 );
882
883 /**
884 Pop current expression from the Stack
885
886 @param Pointer Pointer to current expression to be pop.
887
888 @retval EFI_SUCCESS The value was pushed onto the stack.
889 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the stack.
890
891 **/
892 EFI_STATUS
893 PopCurrentExpression (
894 OUT VOID **Pointer
895 );
896
897 /**
898 Reset stack pointer to begin of the stack.
899
900 **/
901 VOID
902 ResetMapExpressionListStack (
903 VOID
904 );
905
906 /**
907 Push the list of map expression onto the Stack
908
909 @param Pointer Pointer to the list of map expression to be pushed.
910
911 @retval EFI_SUCCESS The value was pushed onto the stack.
912 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the stack.
913
914 **/
915 EFI_STATUS
916 PushMapExpressionList (
917 IN VOID *Pointer
918 );
919
920 /**
921 Pop the list of map expression from the Stack
922
923 @param Pointer Pointer to the list of map expression to be pop.
924
925 @retval EFI_SUCCESS The value was pushed onto the stack.
926 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the stack.
927
928 **/
929 EFI_STATUS
930 PopMapExpressionList (
931 OUT VOID **Pointer
932 );
933
934 /**
935 Get Form given its FormId.
936
937 @param FormSet The formset which contains this form.
938 @param FormId Id of this form.
939
940 @retval Pointer The form.
941 @retval NULL Specified Form is not found in the formset.
942
943 **/
944 FORM_BROWSER_FORM *
945 IdToForm (
946 IN FORM_BROWSER_FORMSET *FormSet,
947 IN UINT16 FormId
948 );
949
950 /**
951 Search a Question in Formset scope using its QuestionId.
952
953 @param FormSet The formset which contains this form.
954 @param Form The form which contains this Question.
955 @param QuestionId Id of this Question.
956
957 @retval Pointer The Question.
958 @retval NULL Specified Question not found in the form.
959
960 **/
961 FORM_BROWSER_STATEMENT *
962 IdToQuestion (
963 IN FORM_BROWSER_FORMSET *FormSet,
964 IN FORM_BROWSER_FORM *Form,
965 IN UINT16 QuestionId
966 );
967
968 /**
969 Zero extend integer/boolean/date/time to UINT64 for comparing.
970
971 @param Value HII Value to be converted.
972
973 **/
974 VOID
975 ExtendValueToU64 (
976 IN EFI_HII_VALUE *Value
977 );
978
979 /**
980 Compare two Hii value.
981
982 @param Value1 Expression value to compare on left-hand.
983 @param Value2 Expression value to compare on right-hand.
984 @param Result Return value after compare.
985 retval 0 Two operators equal.
986 return Positive value if Value1 is greater than Value2.
987 retval Negative value if Value1 is less than Value2.
988 @param HiiHandle Only required for string compare.
989
990 @retval other Could not perform compare on two values.
991 @retval EFI_SUCCESS Compare the value success.
992
993 **/
994 EFI_STATUS
995 CompareHiiValue (
996 IN EFI_HII_VALUE *Value1,
997 IN EFI_HII_VALUE *Value2,
998 OUT INTN *Result,
999 IN EFI_HII_HANDLE HiiHandle OPTIONAL
1000 );
1001
1002 /**
1003 Evaluate the result of a HII expression
1004
1005 If Expression is NULL, then ASSERT.
1006
1007 @param FormSet FormSet associated with this expression.
1008 @param Form Form associated with this expression.
1009 @param Expression Expression to be evaluated.
1010
1011 @retval EFI_SUCCESS The expression evaluated successfuly
1012 @retval EFI_NOT_FOUND The Question which referenced by a QuestionId
1013 could not be found.
1014 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the
1015 stack.
1016 @retval EFI_ACCESS_DENIED The pop operation underflowed the stack
1017 @retval EFI_INVALID_PARAMETER Syntax error with the Expression
1018
1019 **/
1020 EFI_STATUS
1021 EvaluateExpression (
1022 IN FORM_BROWSER_FORMSET *FormSet,
1023 IN FORM_BROWSER_FORM *Form,
1024 IN OUT FORM_EXPRESSION *Expression
1025 );
1026
1027 /**
1028 Return the result of the expression list. Check the expression list and
1029 return the highest priority express result.
1030 Priority: DisableIf > SuppressIf > GrayOutIf > FALSE
1031
1032 @param ExpList The input expression list.
1033 @param Evaluate Whether need to evaluate the expression first.
1034 @param FormSet FormSet associated with this expression. Only
1035 needed when Evaluate is TRUE
1036 @param Form Form associated with this expression. Only
1037 needed when Evaluate is TRUE
1038
1039 @retval EXPRESS_RESULT Return the higher priority express result.
1040 DisableIf > SuppressIf > GrayOutIf > FALSE
1041
1042 **/
1043 EXPRESS_RESULT
1044 EvaluateExpressionList (
1045 IN FORM_EXPRESSION_LIST *ExpList,
1046 IN BOOLEAN Evaluate,
1047 IN FORM_BROWSER_FORMSET *FormSet, OPTIONAL
1048 IN FORM_BROWSER_FORM *Form OPTIONAL
1049 );
1050
1051 #endif // _UI_H