]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Ui.c
de051709c0e300e70f8c2a3626dcb5a25b33a229
[mirror_edk2.git] / MdeModulePkg / Universal / SetupBrowserDxe / Ui.c
1 /** @file
2 Utility functions for User Interface functions.
3
4 Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "Setup.h"
16
17 LIST_ENTRY gMenuOption;
18 LIST_ENTRY gMenuList = INITIALIZE_LIST_HEAD_VARIABLE (gMenuList);
19 MENU_REFRESH_ENTRY *gMenuRefreshHead; // Menu list used for refresh timer opcode.
20 MENU_REFRESH_ENTRY *gMenuEventGuidRefreshHead; // Menu list used for refresh event guid opcode.
21
22 //
23 // Search table for UiDisplayMenu()
24 //
25 SCAN_CODE_TO_SCREEN_OPERATION gScanCodeToOperation[] = {
26 {
27 SCAN_UP,
28 UiUp,
29 },
30 {
31 SCAN_DOWN,
32 UiDown,
33 },
34 {
35 SCAN_PAGE_UP,
36 UiPageUp,
37 },
38 {
39 SCAN_PAGE_DOWN,
40 UiPageDown,
41 },
42 {
43 SCAN_ESC,
44 UiReset,
45 },
46 {
47 SCAN_LEFT,
48 UiLeft,
49 },
50 {
51 SCAN_RIGHT,
52 UiRight,
53 },
54 {
55 SCAN_F9,
56 UiDefault,
57 },
58 {
59 SCAN_F10,
60 UiSave
61 }
62 };
63
64 SCREEN_OPERATION_T0_CONTROL_FLAG gScreenOperationToControlFlag[] = {
65 {
66 UiNoOperation,
67 CfUiNoOperation,
68 },
69 {
70 UiDefault,
71 CfUiDefault,
72 },
73 {
74 UiSelect,
75 CfUiSelect,
76 },
77 {
78 UiUp,
79 CfUiUp,
80 },
81 {
82 UiDown,
83 CfUiDown,
84 },
85 {
86 UiLeft,
87 CfUiLeft,
88 },
89 {
90 UiRight,
91 CfUiRight,
92 },
93 {
94 UiReset,
95 CfUiReset,
96 },
97 {
98 UiSave,
99 CfUiSave,
100 },
101 {
102 UiPageUp,
103 CfUiPageUp,
104 },
105 {
106 UiPageDown,
107 CfUiPageDown
108 }
109 };
110
111 BOOLEAN mInputError;
112 BOOLEAN GetLineByWidthFinished = FALSE;
113
114
115 /**
116 Set Buffer to Value for Size bytes.
117
118 @param Buffer Memory to set.
119 @param Size Number of bytes to set
120 @param Value Value of the set operation.
121
122 **/
123 VOID
124 SetUnicodeMem (
125 IN VOID *Buffer,
126 IN UINTN Size,
127 IN CHAR16 Value
128 )
129 {
130 CHAR16 *Ptr;
131
132 Ptr = Buffer;
133 while ((Size--) != 0) {
134 *(Ptr++) = Value;
135 }
136 }
137
138
139 /**
140 Initialize Menu option list.
141
142 **/
143 VOID
144 UiInitMenu (
145 VOID
146 )
147 {
148 InitializeListHead (&gMenuOption);
149 }
150
151
152 /**
153 Free Menu option linked list.
154
155 **/
156 VOID
157 UiFreeMenu (
158 VOID
159 )
160 {
161 UI_MENU_OPTION *MenuOption;
162
163 while (!IsListEmpty (&gMenuOption)) {
164 MenuOption = MENU_OPTION_FROM_LINK (gMenuOption.ForwardLink);
165 RemoveEntryList (&MenuOption->Link);
166
167 //
168 // We allocated space for this description when we did a GetToken, free it here
169 //
170 if (MenuOption->Skip != 0) {
171 //
172 // For date/time, MenuOption->Description is shared by three Menu Options
173 // Data format : [01/02/2004] [11:22:33]
174 // Line number : 0 0 1 0 0 1
175 //
176 FreePool (MenuOption->Description);
177 }
178 FreePool (MenuOption);
179 }
180 }
181
182
183 /**
184 Create a menu with specified formset GUID and form ID, and add it as a child
185 of the given parent menu.
186
187 @param Parent The parent of menu to be added.
188 @param FormSetGuid The Formset Guid of menu to be added.
189 @param FormId The Form ID of menu to be added.
190
191 @return A pointer to the newly added menu or NULL if memory is insufficient.
192
193 **/
194 UI_MENU_LIST *
195 UiAddMenuList (
196 IN OUT UI_MENU_LIST *Parent,
197 IN EFI_GUID *FormSetGuid,
198 IN UINT16 FormId
199 )
200 {
201 UI_MENU_LIST *MenuList;
202
203 MenuList = AllocateZeroPool (sizeof (UI_MENU_LIST));
204 if (MenuList == NULL) {
205 return NULL;
206 }
207
208 MenuList->Signature = UI_MENU_LIST_SIGNATURE;
209 InitializeListHead (&MenuList->ChildListHead);
210
211 CopyMem (&MenuList->FormSetGuid, FormSetGuid, sizeof (EFI_GUID));
212 MenuList->FormId = FormId;
213 MenuList->Parent = Parent;
214
215 if (Parent == NULL) {
216 //
217 // If parent is not specified, it is the root Form of a Formset
218 //
219 InsertTailList (&gMenuList, &MenuList->Link);
220 } else {
221 InsertTailList (&Parent->ChildListHead, &MenuList->Link);
222 }
223
224 return MenuList;
225 }
226
227
228 /**
229 Search Menu with given FormId in the parent menu and all its child menus.
230
231 @param Parent The parent of menu to search.
232 @param FormId The Form ID of menu to search.
233
234 @return A pointer to menu found or NULL if not found.
235
236 **/
237 UI_MENU_LIST *
238 UiFindChildMenuList (
239 IN UI_MENU_LIST *Parent,
240 IN UINT16 FormId
241 )
242 {
243 LIST_ENTRY *Link;
244 UI_MENU_LIST *Child;
245 UI_MENU_LIST *MenuList;
246
247 if (Parent->FormId == FormId) {
248 return Parent;
249 }
250
251 Link = GetFirstNode (&Parent->ChildListHead);
252 while (!IsNull (&Parent->ChildListHead, Link)) {
253 Child = UI_MENU_LIST_FROM_LINK (Link);
254
255 MenuList = UiFindChildMenuList (Child, FormId);
256 if (MenuList != NULL) {
257 return MenuList;
258 }
259
260 Link = GetNextNode (&Parent->ChildListHead, Link);
261 }
262
263 return NULL;
264 }
265
266
267 /**
268 Search Menu with given FormSetGuid and FormId in all cached menu list.
269
270 @param FormSetGuid The Formset GUID of the menu to search.
271 @param FormId The Form ID of menu to search.
272
273 @return A pointer to menu found or NULL if not found.
274
275 **/
276 UI_MENU_LIST *
277 UiFindMenuList (
278 IN EFI_GUID *FormSetGuid,
279 IN UINT16 FormId
280 )
281 {
282 LIST_ENTRY *Link;
283 UI_MENU_LIST *MenuList;
284 UI_MENU_LIST *Child;
285
286 Link = GetFirstNode (&gMenuList);
287 while (!IsNull (&gMenuList, Link)) {
288 MenuList = UI_MENU_LIST_FROM_LINK (Link);
289
290 if (CompareGuid (FormSetGuid, &MenuList->FormSetGuid)) {
291 //
292 // This is the formset we are looking for, find the form in this formset
293 //
294 Child = UiFindChildMenuList (MenuList, FormId);
295 if (Child != NULL) {
296 return Child;
297 }
298 }
299
300 Link = GetNextNode (&gMenuList, Link);
301 }
302
303 return NULL;
304 }
305
306
307 /**
308 Free Menu option linked list.
309
310 **/
311 VOID
312 UiFreeRefreshList (
313 VOID
314 )
315 {
316 MENU_REFRESH_ENTRY *OldMenuRefreshEntry;
317
318 while (gMenuRefreshHead != NULL) {
319 OldMenuRefreshEntry = gMenuRefreshHead->Next;
320 FreePool (gMenuRefreshHead);
321 gMenuRefreshHead = OldMenuRefreshEntry;
322 }
323
324 while (gMenuEventGuidRefreshHead != NULL) {
325 OldMenuRefreshEntry = gMenuEventGuidRefreshHead->Next;
326 if (gMenuEventGuidRefreshHead != NULL) {
327 gBS->CloseEvent(gMenuEventGuidRefreshHead->Event);
328 }
329 FreePool (gMenuEventGuidRefreshHead);
330 gMenuEventGuidRefreshHead = OldMenuRefreshEntry;
331 }
332 }
333
334
335
336 /**
337 Refresh question.
338
339 @param MenuRefreshEntry Menu refresh structure which has info about the refresh question.
340 **/
341 EFI_STATUS
342 RefreshQuestion (
343 IN MENU_REFRESH_ENTRY *MenuRefreshEntry
344 )
345 {
346 CHAR16 *OptionString;
347 UINTN Index;
348 EFI_STATUS Status;
349 UI_MENU_SELECTION *Selection;
350 FORM_BROWSER_STATEMENT *Question;
351
352 Selection = MenuRefreshEntry->Selection;
353 Question = MenuRefreshEntry->MenuOption->ThisTag;
354
355 Status = GetQuestionValue (Selection->FormSet, Selection->Form, Question, FALSE);
356 if (EFI_ERROR (Status)) {
357 return Status;
358 }
359
360 OptionString = NULL;
361 ProcessOptions (Selection, MenuRefreshEntry->MenuOption, FALSE, &OptionString);
362
363 if (OptionString != NULL) {
364 //
365 // If leading spaces on OptionString - remove the spaces
366 //
367 for (Index = 0; OptionString[Index] == L' '; Index++)
368 ;
369
370 //
371 // If old Text is longer than new string, need to clean the old string before paint the newer.
372 // This option is no need for time/date opcode, because time/data opcode has fixed string length.
373 //
374 if ((MenuRefreshEntry->MenuOption->ThisTag->Operand != EFI_IFR_DATE_OP) &&
375 (MenuRefreshEntry->MenuOption->ThisTag->Operand != EFI_IFR_TIME_OP)) {
376 ClearLines (
377 MenuRefreshEntry->CurrentColumn,
378 MenuRefreshEntry->CurrentColumn + gOptionBlockWidth - 1,
379 MenuRefreshEntry->CurrentRow,
380 MenuRefreshEntry->CurrentRow,
381 PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND
382 );
383 }
384
385 gST->ConOut->SetAttribute (gST->ConOut, MenuRefreshEntry->CurrentAttribute);
386 PrintStringAt (MenuRefreshEntry->CurrentColumn, MenuRefreshEntry->CurrentRow, &OptionString[Index]);
387 FreePool (OptionString);
388 }
389
390 //
391 // Question value may be changed, need invoke its Callback()
392 //
393 Status = ProcessCallBackFunction (Selection, Question, EFI_BROWSER_ACTION_CHANGING, FALSE);
394
395 return Status;
396 }
397
398 /**
399 Refresh the question which has refresh guid event attribute.
400
401 @param Event The event which has this function related.
402 @param Context The input context info related to this event or the status code return to the caller.
403 **/
404 VOID
405 EFIAPI
406 RefreshQuestionNotify(
407 IN EFI_EVENT Event,
408 IN VOID *Context
409 )
410 {
411 MENU_REFRESH_ENTRY *MenuRefreshEntry;
412 UI_MENU_SELECTION *Selection;
413
414 //
415 // Reset FormPackage update flag
416 //
417 mHiiPackageListUpdated = FALSE;
418
419 MenuRefreshEntry = (MENU_REFRESH_ENTRY *)Context;
420 ASSERT (MenuRefreshEntry != NULL);
421 Selection = MenuRefreshEntry->Selection;
422
423 RefreshQuestion (MenuRefreshEntry);
424
425 if (mHiiPackageListUpdated) {
426 //
427 // Package list is updated, force to reparse IFR binary of target Formset
428 //
429 mHiiPackageListUpdated = FALSE;
430 Selection->Action = UI_ACTION_REFRESH_FORMSET;
431 }
432 }
433
434
435 /**
436 Refresh screen.
437
438 **/
439 EFI_STATUS
440 RefreshForm (
441 VOID
442 )
443 {
444 MENU_REFRESH_ENTRY *MenuRefreshEntry;
445 EFI_STATUS Status;
446 UI_MENU_SELECTION *Selection;
447
448 if (gMenuRefreshHead != NULL) {
449 //
450 // call from refresh interval process.
451 //
452 MenuRefreshEntry = gMenuRefreshHead;
453 Selection = MenuRefreshEntry->Selection;
454 //
455 // Reset FormPackage update flag
456 //
457 mHiiPackageListUpdated = FALSE;
458
459 do {
460 Status = RefreshQuestion (MenuRefreshEntry);
461 if (EFI_ERROR (Status)) {
462 return Status;
463 }
464
465 MenuRefreshEntry = MenuRefreshEntry->Next;
466
467 } while (MenuRefreshEntry != NULL);
468
469 if (mHiiPackageListUpdated) {
470 //
471 // Package list is updated, force to reparse IFR binary of target Formset
472 //
473 mHiiPackageListUpdated = FALSE;
474 Selection->Action = UI_ACTION_REFRESH_FORMSET;
475 return EFI_SUCCESS;
476 }
477 }
478
479 return EFI_TIMEOUT;
480 }
481
482
483 /**
484 Wait for a given event to fire, or for an optional timeout to expire.
485
486 @param Event The event to wait for
487 @param Timeout An optional timeout value in 100 ns units.
488 @param RefreshInterval Menu refresh interval (in seconds).
489
490 @retval EFI_SUCCESS Event fired before Timeout expired.
491 @retval EFI_TIME_OUT Timout expired before Event fired.
492
493 **/
494 EFI_STATUS
495 UiWaitForSingleEvent (
496 IN EFI_EVENT Event,
497 IN UINT64 Timeout, OPTIONAL
498 IN UINT8 RefreshInterval OPTIONAL
499 )
500 {
501 EFI_STATUS Status;
502 UINTN Index;
503 EFI_EVENT TimerEvent;
504 EFI_EVENT WaitList[2];
505
506 if (Timeout != 0) {
507 //
508 // Create a timer event
509 //
510 Status = gBS->CreateEvent (EVT_TIMER, 0, NULL, NULL, &TimerEvent);
511 if (!EFI_ERROR (Status)) {
512 //
513 // Set the timer event
514 //
515 gBS->SetTimer (
516 TimerEvent,
517 TimerRelative,
518 Timeout
519 );
520
521 //
522 // Wait for the original event or the timer
523 //
524 WaitList[0] = Event;
525 WaitList[1] = TimerEvent;
526 Status = gBS->WaitForEvent (2, WaitList, &Index);
527 gBS->CloseEvent (TimerEvent);
528
529 //
530 // If the timer expired, change the return to timed out
531 //
532 if (!EFI_ERROR (Status) && Index == 1) {
533 Status = EFI_TIMEOUT;
534 }
535 }
536 } else {
537 //
538 // Update screen every second
539 //
540 if (RefreshInterval == 0) {
541 Timeout = ONE_SECOND;
542 } else {
543 Timeout = RefreshInterval * ONE_SECOND;
544 }
545
546 do {
547 Status = gBS->CreateEvent (EVT_TIMER, 0, NULL, NULL, &TimerEvent);
548
549 //
550 // Set the timer event
551 //
552 gBS->SetTimer (
553 TimerEvent,
554 TimerRelative,
555 Timeout
556 );
557
558 //
559 // Wait for the original event or the timer
560 //
561 WaitList[0] = Event;
562 WaitList[1] = TimerEvent;
563 Status = gBS->WaitForEvent (2, WaitList, &Index);
564
565 //
566 // If the timer expired, update anything that needs a refresh and keep waiting
567 //
568 if (!EFI_ERROR (Status) && Index == 1) {
569 Status = EFI_TIMEOUT;
570 if (RefreshInterval != 0) {
571 Status = RefreshForm ();
572 }
573 }
574
575 gBS->CloseEvent (TimerEvent);
576 } while (Status == EFI_TIMEOUT);
577 }
578
579 return Status;
580 }
581
582
583 /**
584 Add one menu option by specified description and context.
585
586 @param String String description for this option.
587 @param Handle Hii handle for the package list.
588 @param Statement Statement of this Menu Option.
589 @param NumberOfLines Display lines for this Menu Option.
590 @param MenuItemCount The index for this Option in the Menu.
591
592 @retval Pointer Pointer to the added Menu Option.
593
594 **/
595 UI_MENU_OPTION *
596 UiAddMenuOption (
597 IN CHAR16 *String,
598 IN EFI_HII_HANDLE Handle,
599 IN FORM_BROWSER_STATEMENT *Statement,
600 IN UINT16 NumberOfLines,
601 IN UINT16 MenuItemCount
602 )
603 {
604 UI_MENU_OPTION *MenuOption;
605 UINTN Index;
606 UINTN Count;
607
608 Count = 1;
609 MenuOption = NULL;
610
611 if (Statement->Operand == EFI_IFR_DATE_OP || Statement->Operand == EFI_IFR_TIME_OP) {
612 //
613 // Add three MenuOptions for Date/Time
614 // Data format : [01/02/2004] [11:22:33]
615 // Line number : 0 0 1 0 0 1
616 //
617 NumberOfLines = 0;
618 Count = 3;
619
620 if (Statement->Storage == NULL) {
621 //
622 // For RTC type of date/time, set default refresh interval to be 1 second
623 //
624 if (Statement->RefreshInterval == 0) {
625 Statement->RefreshInterval = 1;
626 }
627 }
628 }
629
630 for (Index = 0; Index < Count; Index++) {
631 MenuOption = AllocateZeroPool (sizeof (UI_MENU_OPTION));
632 ASSERT (MenuOption);
633
634 MenuOption->Signature = UI_MENU_OPTION_SIGNATURE;
635 MenuOption->Description = String;
636 MenuOption->Handle = Handle;
637 MenuOption->ThisTag = Statement;
638 MenuOption->EntryNumber = MenuItemCount;
639
640 if (Index == 2) {
641 //
642 // Override LineNumber for the MenuOption in Date/Time sequence
643 //
644 MenuOption->Skip = 1;
645 } else {
646 MenuOption->Skip = NumberOfLines;
647 }
648 MenuOption->Sequence = Index;
649
650 if (Statement->GrayOutExpression != NULL) {
651 MenuOption->GrayOut = Statement->GrayOutExpression->Result.Value.b;
652 }
653
654 switch (Statement->Operand) {
655 case EFI_IFR_ORDERED_LIST_OP:
656 case EFI_IFR_ONE_OF_OP:
657 case EFI_IFR_NUMERIC_OP:
658 case EFI_IFR_TIME_OP:
659 case EFI_IFR_DATE_OP:
660 case EFI_IFR_CHECKBOX_OP:
661 case EFI_IFR_PASSWORD_OP:
662 case EFI_IFR_STRING_OP:
663 //
664 // User could change the value of these items
665 //
666 MenuOption->IsQuestion = TRUE;
667 break;
668
669 case EFI_IFR_TEXT_OP:
670 if (FeaturePcdGet (PcdBrowserGrayOutTextStatement)) {
671 //
672 // Initializing GrayOut option as TRUE for Text setup options
673 // so that those options will be Gray in colour and un selectable.
674 //
675 MenuOption->GrayOut = TRUE;
676 }
677
678 default:
679 MenuOption->IsQuestion = FALSE;
680 break;
681 }
682
683 if ((Statement->ValueExpression != NULL) ||
684 ((Statement->QuestionFlags & EFI_IFR_FLAG_READ_ONLY) != 0)) {
685 MenuOption->ReadOnly = TRUE;
686 }
687
688 InsertTailList (&gMenuOption, &MenuOption->Link);
689 }
690
691 return MenuOption;
692 }
693
694
695 /**
696 Routine used to abstract a generic dialog interface and return the selected key or string
697
698 @param NumberOfLines The number of lines for the dialog box
699 @param HotKey Defines whether a single character is parsed
700 (TRUE) and returned in KeyValue or a string is
701 returned in StringBuffer. Two special characters
702 are considered when entering a string, a SCAN_ESC
703 and an CHAR_CARRIAGE_RETURN. SCAN_ESC terminates
704 string input and returns
705 @param MaximumStringSize The maximum size in bytes of a typed in string
706 (each character is a CHAR16) and the minimum
707 string returned is two bytes
708 @param StringBuffer The passed in pointer to the buffer which will
709 hold the typed in string if HotKey is FALSE
710 @param KeyValue The EFI_KEY value returned if HotKey is TRUE..
711 @param ... A series of (quantity == NumberOfLines) text
712 strings which will be used to construct the dialog
713 box
714
715 @retval EFI_SUCCESS Displayed dialog and received user interaction
716 @retval EFI_INVALID_PARAMETER One of the parameters was invalid (e.g.
717 (StringBuffer == NULL) && (HotKey == FALSE))
718 @retval EFI_DEVICE_ERROR User typed in an ESC character to exit the routine
719
720 **/
721 EFI_STATUS
722 EFIAPI
723 CreateDialog (
724 IN UINTN NumberOfLines,
725 IN BOOLEAN HotKey,
726 IN UINTN MaximumStringSize,
727 OUT CHAR16 *StringBuffer,
728 OUT EFI_INPUT_KEY *KeyValue,
729 ...
730 )
731 {
732 VA_LIST Marker;
733 UINTN Count;
734 EFI_INPUT_KEY Key;
735 UINTN LargestString;
736 CHAR16 *TempString;
737 CHAR16 *BufferedString;
738 CHAR16 *StackString;
739 CHAR16 KeyPad[2];
740 UINTN Start;
741 UINTN Top;
742 UINTN Index;
743 EFI_STATUS Status;
744 BOOLEAN SelectionComplete;
745 UINTN InputOffset;
746 UINTN CurrentAttribute;
747 UINTN DimensionsWidth;
748 UINTN DimensionsHeight;
749
750 DimensionsWidth = gScreenDimensions.RightColumn - gScreenDimensions.LeftColumn;
751 DimensionsHeight = gScreenDimensions.BottomRow - gScreenDimensions.TopRow;
752
753 SelectionComplete = FALSE;
754 InputOffset = 0;
755 TempString = AllocateZeroPool (MaximumStringSize * 2);
756 BufferedString = AllocateZeroPool (MaximumStringSize * 2);
757 CurrentAttribute = gST->ConOut->Mode->Attribute;
758
759 ASSERT (TempString);
760 ASSERT (BufferedString);
761
762 VA_START (Marker, KeyValue);
763
764 //
765 // Zero the outgoing buffer
766 //
767 ZeroMem (StringBuffer, MaximumStringSize);
768
769 if (HotKey) {
770 if (KeyValue == NULL) {
771 return EFI_INVALID_PARAMETER;
772 }
773 } else {
774 if (StringBuffer == NULL) {
775 return EFI_INVALID_PARAMETER;
776 }
777 }
778 //
779 // Disable cursor
780 //
781 gST->ConOut->EnableCursor (gST->ConOut, FALSE);
782
783 LargestString = 0;
784
785 //
786 // Determine the largest string in the dialog box
787 // Notice we are starting with 1 since String is the first string
788 //
789 for (Count = 0; Count < NumberOfLines; Count++) {
790 StackString = VA_ARG (Marker, CHAR16 *);
791
792 if (StackString[0] == L' ') {
793 InputOffset = Count + 1;
794 }
795
796 if ((GetStringWidth (StackString) / 2) > LargestString) {
797 //
798 // Size of the string visually and subtract the width by one for the null-terminator
799 //
800 LargestString = (GetStringWidth (StackString) / 2);
801 }
802 }
803 VA_END (Marker);
804
805 Start = (DimensionsWidth - LargestString - 2) / 2 + gScreenDimensions.LeftColumn + 1;
806 Top = ((DimensionsHeight - NumberOfLines - 2) / 2) + gScreenDimensions.TopRow - 1;
807
808 Count = 0;
809
810 //
811 // Display the Popup
812 //
813 VA_START (Marker, KeyValue);
814 CreateSharedPopUp (LargestString, NumberOfLines, Marker);
815 VA_END (Marker);
816
817 //
818 // Take the first key typed and report it back?
819 //
820 if (HotKey) {
821 Status = WaitForKeyStroke (&Key);
822 ASSERT_EFI_ERROR (Status);
823 CopyMem (KeyValue, &Key, sizeof (EFI_INPUT_KEY));
824
825 } else {
826 do {
827 Status = WaitForKeyStroke (&Key);
828
829 switch (Key.UnicodeChar) {
830 case CHAR_NULL:
831 switch (Key.ScanCode) {
832 case SCAN_ESC:
833 FreePool (TempString);
834 FreePool (BufferedString);
835 gST->ConOut->SetAttribute (gST->ConOut, CurrentAttribute);
836 gST->ConOut->EnableCursor (gST->ConOut, TRUE);
837 return EFI_DEVICE_ERROR;
838
839 default:
840 break;
841 }
842
843 break;
844
845 case CHAR_CARRIAGE_RETURN:
846 SelectionComplete = TRUE;
847 FreePool (TempString);
848 FreePool (BufferedString);
849 gST->ConOut->SetAttribute (gST->ConOut, CurrentAttribute);
850 gST->ConOut->EnableCursor (gST->ConOut, TRUE);
851 return EFI_SUCCESS;
852 break;
853
854 case CHAR_BACKSPACE:
855 if (StringBuffer[0] != CHAR_NULL) {
856 for (Index = 0; StringBuffer[Index] != CHAR_NULL; Index++) {
857 TempString[Index] = StringBuffer[Index];
858 }
859 //
860 // Effectively truncate string by 1 character
861 //
862 TempString[Index - 1] = CHAR_NULL;
863 StrCpy (StringBuffer, TempString);
864 }
865
866 default:
867 //
868 // If it is the beginning of the string, don't worry about checking maximum limits
869 //
870 if ((StringBuffer[0] == CHAR_NULL) && (Key.UnicodeChar != CHAR_BACKSPACE)) {
871 StrnCpy (StringBuffer, &Key.UnicodeChar, 1);
872 StrnCpy (TempString, &Key.UnicodeChar, 1);
873 } else if ((GetStringWidth (StringBuffer) < MaximumStringSize) && (Key.UnicodeChar != CHAR_BACKSPACE)) {
874 KeyPad[0] = Key.UnicodeChar;
875 KeyPad[1] = CHAR_NULL;
876 StrCat (StringBuffer, KeyPad);
877 StrCat (TempString, KeyPad);
878 }
879 //
880 // If the width of the input string is now larger than the screen, we nee to
881 // adjust the index to start printing portions of the string
882 //
883 SetUnicodeMem (BufferedString, LargestString, L' ');
884
885 PrintStringAt (Start + 1, Top + InputOffset, BufferedString);
886
887 if ((GetStringWidth (StringBuffer) / 2) > (DimensionsWidth - 2)) {
888 Index = (GetStringWidth (StringBuffer) / 2) - DimensionsWidth + 2;
889 } else {
890 Index = 0;
891 }
892
893 for (Count = 0; Index + 1 < GetStringWidth (StringBuffer) / 2; Index++, Count++) {
894 BufferedString[Count] = StringBuffer[Index];
895 }
896
897 PrintStringAt (Start + 1, Top + InputOffset, BufferedString);
898 break;
899 }
900 } while (!SelectionComplete);
901 }
902
903 gST->ConOut->SetAttribute (gST->ConOut, CurrentAttribute);
904 gST->ConOut->EnableCursor (gST->ConOut, TRUE);
905 return EFI_SUCCESS;
906 }
907
908 /**
909 Draw a pop up windows based on the dimension, number of lines and
910 strings specified.
911
912 @param RequestedWidth The width of the pop-up.
913 @param NumberOfLines The number of lines.
914 @param Marker The variable argument list for the list of string to be printed.
915
916 **/
917 VOID
918 CreateSharedPopUp (
919 IN UINTN RequestedWidth,
920 IN UINTN NumberOfLines,
921 IN VA_LIST Marker
922 )
923 {
924 UINTN Index;
925 UINTN Count;
926 CHAR16 Character;
927 UINTN Start;
928 UINTN End;
929 UINTN Top;
930 UINTN Bottom;
931 CHAR16 *String;
932 UINTN DimensionsWidth;
933 UINTN DimensionsHeight;
934
935 DimensionsWidth = gScreenDimensions.RightColumn - gScreenDimensions.LeftColumn;
936 DimensionsHeight = gScreenDimensions.BottomRow - gScreenDimensions.TopRow;
937
938 gST->ConOut->SetAttribute (gST->ConOut, POPUP_TEXT | POPUP_BACKGROUND);
939
940 if ((RequestedWidth + 2) > DimensionsWidth) {
941 RequestedWidth = DimensionsWidth - 2;
942 }
943
944 //
945 // Subtract the PopUp width from total Columns, allow for one space extra on
946 // each end plus a border.
947 //
948 Start = (DimensionsWidth - RequestedWidth - 2) / 2 + gScreenDimensions.LeftColumn + 1;
949 End = Start + RequestedWidth + 1;
950
951 Top = ((DimensionsHeight - NumberOfLines - 2) / 2) + gScreenDimensions.TopRow - 1;
952 Bottom = Top + NumberOfLines + 2;
953
954 Character = BOXDRAW_DOWN_RIGHT;
955 PrintCharAt (Start, Top, Character);
956 Character = BOXDRAW_HORIZONTAL;
957 for (Index = Start; Index + 2 < End; Index++) {
958 PrintChar (Character);
959 }
960
961 Character = BOXDRAW_DOWN_LEFT;
962 PrintChar (Character);
963 Character = BOXDRAW_VERTICAL;
964
965 Count = 0;
966 for (Index = Top; Index + 2 < Bottom; Index++, Count++) {
967 String = VA_ARG (Marker, CHAR16*);
968
969 //
970 // This will clear the background of the line - we never know who might have been
971 // here before us. This differs from the next clear in that it used the non-reverse
972 // video for normal printing.
973 //
974 if (GetStringWidth (String) / 2 > 1) {
975 ClearLines (Start, End, Index + 1, Index + 1, POPUP_TEXT | POPUP_BACKGROUND);
976 }
977
978 //
979 // Passing in a space results in the assumption that this is where typing will occur
980 //
981 if (String[0] == L' ') {
982 ClearLines (Start + 1, End - 1, Index + 1, Index + 1, POPUP_INVERSE_TEXT | POPUP_INVERSE_BACKGROUND);
983 }
984
985 //
986 // Passing in a NULL results in a blank space
987 //
988 if (String[0] == CHAR_NULL) {
989 ClearLines (Start, End, Index + 1, Index + 1, POPUP_TEXT | POPUP_BACKGROUND);
990 }
991
992 PrintStringAt (
993 ((DimensionsWidth - GetStringWidth (String) / 2) / 2) + gScreenDimensions.LeftColumn + 1,
994 Index + 1,
995 String
996 );
997 gST->ConOut->SetAttribute (gST->ConOut, POPUP_TEXT | POPUP_BACKGROUND);
998 PrintCharAt (Start, Index + 1, Character);
999 PrintCharAt (End - 1, Index + 1, Character);
1000 }
1001
1002 Character = BOXDRAW_UP_RIGHT;
1003 PrintCharAt (Start, Bottom - 1, Character);
1004 Character = BOXDRAW_HORIZONTAL;
1005 for (Index = Start; Index + 2 < End; Index++) {
1006 PrintChar (Character);
1007 }
1008
1009 Character = BOXDRAW_UP_LEFT;
1010 PrintChar (Character);
1011 }
1012
1013 /**
1014 Draw a pop up windows based on the dimension, number of lines and
1015 strings specified.
1016
1017 @param RequestedWidth The width of the pop-up.
1018 @param NumberOfLines The number of lines.
1019 @param ... A series of text strings that displayed in the pop-up.
1020
1021 **/
1022 VOID
1023 EFIAPI
1024 CreateMultiStringPopUp (
1025 IN UINTN RequestedWidth,
1026 IN UINTN NumberOfLines,
1027 ...
1028 )
1029 {
1030 VA_LIST Marker;
1031
1032 VA_START (Marker, NumberOfLines);
1033
1034 CreateSharedPopUp (RequestedWidth, NumberOfLines, Marker);
1035
1036 VA_END (Marker);
1037 }
1038
1039
1040 /**
1041 Update status bar on the bottom of menu.
1042
1043 @param Selection Current Selction info.
1044 @param MessageType The type of message to be shown.
1045 @param Flags The flags in Question header.
1046 @param State Set or clear.
1047
1048 **/
1049 VOID
1050 UpdateStatusBar (
1051 IN UI_MENU_SELECTION *Selection,
1052 IN UINTN MessageType,
1053 IN UINT8 Flags,
1054 IN BOOLEAN State
1055 )
1056 {
1057 UINTN Index;
1058 CHAR16 *NvUpdateMessage;
1059 CHAR16 *InputErrorMessage;
1060
1061 NvUpdateMessage = GetToken (STRING_TOKEN (NV_UPDATE_MESSAGE), gHiiHandle);
1062 InputErrorMessage = GetToken (STRING_TOKEN (INPUT_ERROR_MESSAGE), gHiiHandle);
1063
1064 switch (MessageType) {
1065 case INPUT_ERROR:
1066 if (State) {
1067 gST->ConOut->SetAttribute (gST->ConOut, ERROR_TEXT);
1068 PrintStringAt (
1069 gScreenDimensions.LeftColumn + gPromptBlockWidth,
1070 gScreenDimensions.BottomRow - 1,
1071 InputErrorMessage
1072 );
1073 mInputError = TRUE;
1074 } else {
1075 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserFieldTextHighlightColor));
1076 for (Index = 0; Index < (GetStringWidth (InputErrorMessage) - 2) / 2; Index++) {
1077 PrintAt (gScreenDimensions.LeftColumn + gPromptBlockWidth + Index, gScreenDimensions.BottomRow - 1, L" ");
1078 }
1079
1080 mInputError = FALSE;
1081 }
1082 break;
1083
1084 case NV_UPDATE_REQUIRED:
1085 if ((gClassOfVfr & FORMSET_CLASS_FRONT_PAGE) != FORMSET_CLASS_FRONT_PAGE) {
1086 if (State) {
1087 gST->ConOut->SetAttribute (gST->ConOut, INFO_TEXT);
1088 PrintStringAt (
1089 gScreenDimensions.LeftColumn + gPromptBlockWidth + gOptionBlockWidth,
1090 gScreenDimensions.BottomRow - 1,
1091 NvUpdateMessage
1092 );
1093 gResetRequired = (BOOLEAN) (gResetRequired | ((Flags & EFI_IFR_FLAG_RESET_REQUIRED) == EFI_IFR_FLAG_RESET_REQUIRED));
1094
1095 if (Selection != NULL) {
1096 Selection->Form->NvUpdateRequired = TRUE;
1097 }
1098 } else {
1099 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserFieldTextHighlightColor));
1100 for (Index = 0; Index < (GetStringWidth (NvUpdateMessage) - 2) / 2; Index++) {
1101 PrintAt (
1102 (gScreenDimensions.LeftColumn + gPromptBlockWidth + gOptionBlockWidth + Index),
1103 gScreenDimensions.BottomRow - 1,
1104 L" "
1105 );
1106 }
1107
1108 if (Selection != NULL) {
1109 Selection->Form->NvUpdateRequired = FALSE;
1110 }
1111 }
1112 }
1113 break;
1114
1115 case REFRESH_STATUS_BAR:
1116 if (mInputError) {
1117 UpdateStatusBar (Selection, INPUT_ERROR, Flags, TRUE);
1118 }
1119
1120 if (IsNvUpdateRequired(Selection->FormSet)) {
1121 UpdateStatusBar (NULL, NV_UPDATE_REQUIRED, Flags, TRUE);
1122 }
1123 break;
1124
1125 default:
1126 break;
1127 }
1128
1129 FreePool (InputErrorMessage);
1130 FreePool (NvUpdateMessage);
1131 return ;
1132 }
1133
1134
1135 /**
1136 Get the supported width for a particular op-code
1137
1138 @param Statement The FORM_BROWSER_STATEMENT structure passed in.
1139 @param Handle The handle in the HII database being used
1140
1141 @return Returns the number of CHAR16 characters that is support.
1142
1143 **/
1144 UINT16
1145 GetWidth (
1146 IN FORM_BROWSER_STATEMENT *Statement,
1147 IN EFI_HII_HANDLE Handle
1148 )
1149 {
1150 CHAR16 *String;
1151 UINTN Size;
1152 UINT16 Width;
1153
1154 Size = 0;
1155
1156 //
1157 // See if the second text parameter is really NULL
1158 //
1159 if ((Statement->Operand == EFI_IFR_TEXT_OP) && (Statement->TextTwo != 0)) {
1160 String = GetToken (Statement->TextTwo, Handle);
1161 Size = StrLen (String);
1162 FreePool (String);
1163 }
1164
1165 if ((Statement->Operand == EFI_IFR_SUBTITLE_OP) ||
1166 (Statement->Operand == EFI_IFR_REF_OP) ||
1167 (Statement->Operand == EFI_IFR_PASSWORD_OP) ||
1168 (Statement->Operand == EFI_IFR_ACTION_OP) ||
1169 (Statement->Operand == EFI_IFR_RESET_BUTTON_OP) ||
1170 //
1171 // Allow a wide display if text op-code and no secondary text op-code
1172 //
1173 ((Statement->Operand == EFI_IFR_TEXT_OP) && (Size == 0))
1174 ) {
1175 Width = (UINT16) (gPromptBlockWidth + gOptionBlockWidth);
1176 } else {
1177 Width = (UINT16) gPromptBlockWidth;
1178 }
1179
1180 if (Statement->InSubtitle) {
1181 Width -= SUBTITLE_INDENT;
1182 }
1183
1184 return (UINT16) (Width - LEFT_SKIPPED_COLUMNS);
1185 }
1186
1187 /**
1188 Will copy LineWidth amount of a string in the OutputString buffer and return the
1189 number of CHAR16 characters that were copied into the OutputString buffer.
1190
1191 @param InputString String description for this option.
1192 @param LineWidth Width of the desired string to extract in CHAR16
1193 characters
1194 @param Index Where in InputString to start the copy process
1195 @param OutputString Buffer to copy the string into
1196
1197 @return Returns the number of CHAR16 characters that were copied into the OutputString buffer.
1198
1199 **/
1200 UINT16
1201 GetLineByWidth (
1202 IN CHAR16 *InputString,
1203 IN UINT16 LineWidth,
1204 IN OUT UINTN *Index,
1205 OUT CHAR16 **OutputString
1206 )
1207 {
1208 UINT16 Count;
1209 UINT16 Count2;
1210
1211 if (GetLineByWidthFinished) {
1212 GetLineByWidthFinished = FALSE;
1213 return (UINT16) 0;
1214 }
1215
1216 Count = LineWidth;
1217 Count2 = 0;
1218
1219 *OutputString = AllocateZeroPool (((UINTN) (LineWidth + 1) * 2));
1220
1221 //
1222 // Ensure we have got a valid buffer
1223 //
1224 if (*OutputString != NULL) {
1225
1226 //
1227 //NARROW_CHAR can not be printed in screen, so if a line only contain the two CHARs: 'NARROW_CHAR + CHAR_CARRIAGE_RETURN' , it is a empty line in Screen.
1228 //To avoid displaying this empty line in screen, just skip the two CHARs here.
1229 //
1230 if ((InputString[*Index] == NARROW_CHAR) && (InputString[*Index + 1] == CHAR_CARRIAGE_RETURN)) {
1231 *Index = *Index + 2;
1232 }
1233
1234 //
1235 // Fast-forward the string and see if there is a carriage-return in the string
1236 //
1237 for (; (InputString[*Index + Count2] != CHAR_CARRIAGE_RETURN) && (Count2 != LineWidth); Count2++)
1238 ;
1239
1240 //
1241 // Copy the desired LineWidth of data to the output buffer.
1242 // Also make sure that we don't copy more than the string.
1243 // Also make sure that if there are linefeeds, we account for them.
1244 //
1245 if ((StrSize (&InputString[*Index]) <= ((UINTN) (LineWidth + 1) * 2)) &&
1246 (StrSize (&InputString[*Index]) <= ((UINTN) (Count2 + 1) * 2))
1247 ) {
1248 //
1249 // Convert to CHAR16 value and show that we are done with this operation
1250 //
1251 LineWidth = (UINT16) ((StrSize (&InputString[*Index]) - 2) / 2);
1252 if (LineWidth != 0) {
1253 GetLineByWidthFinished = TRUE;
1254 }
1255 } else {
1256 if (Count2 == LineWidth) {
1257 //
1258 // Rewind the string from the maximum size until we see a space to break the line
1259 //
1260 for (; (InputString[*Index + LineWidth] != CHAR_SPACE) && (LineWidth != 0); LineWidth--)
1261 ;
1262 if (LineWidth == 0) {
1263 LineWidth = Count;
1264 }
1265 } else {
1266 LineWidth = Count2;
1267 }
1268 }
1269
1270 CopyMem (*OutputString, &InputString[*Index], LineWidth * 2);
1271
1272 //
1273 // If currently pointing to a space, increment the index to the first non-space character
1274 //
1275 for (;
1276 (InputString[*Index + LineWidth] == CHAR_SPACE) || (InputString[*Index + LineWidth] == CHAR_CARRIAGE_RETURN);
1277 (*Index)++
1278 )
1279 ;
1280 *Index = (UINT16) (*Index + LineWidth);
1281 return LineWidth;
1282 } else {
1283 return (UINT16) 0;
1284 }
1285 }
1286
1287
1288 /**
1289 Update display lines for a Menu Option.
1290
1291 @param Selection The user's selection.
1292 @param MenuOption The MenuOption to be checked.
1293 @param OptionalString The option string.
1294 @param SkipValue The number of lins to skip.
1295
1296 **/
1297 VOID
1298 UpdateOptionSkipLines (
1299 IN UI_MENU_SELECTION *Selection,
1300 IN UI_MENU_OPTION *MenuOption,
1301 OUT CHAR16 **OptionalString,
1302 IN UINTN SkipValue
1303 )
1304 {
1305 UINTN Index;
1306 UINT16 Width;
1307 UINTN Row;
1308 UINTN OriginalRow;
1309 CHAR16 *OutputString;
1310 CHAR16 *OptionString;
1311
1312 Row = 0;
1313 OptionString = *OptionalString;
1314 OutputString = NULL;
1315
1316 ProcessOptions (Selection, MenuOption, FALSE, &OptionString);
1317
1318 if (OptionString != NULL) {
1319 Width = (UINT16) gOptionBlockWidth;
1320
1321 OriginalRow = Row;
1322
1323 for (Index = 0; GetLineByWidth (OptionString, Width, &Index, &OutputString) != 0x0000;) {
1324 //
1325 // If there is more string to process print on the next row and increment the Skip value
1326 //
1327 if (StrLen (&OptionString[Index]) != 0) {
1328 if (SkipValue == 0) {
1329 Row++;
1330 //
1331 // Since the Number of lines for this menu entry may or may not be reflected accurately
1332 // since the prompt might be 1 lines and option might be many, and vice versa, we need to do
1333 // some testing to ensure we are keeping this in-sync.
1334 //
1335 // If the difference in rows is greater than or equal to the skip value, increase the skip value
1336 //
1337 if ((Row - OriginalRow) >= MenuOption->Skip) {
1338 MenuOption->Skip++;
1339 }
1340 }
1341 }
1342
1343 FreePool (OutputString);
1344 if (SkipValue != 0) {
1345 SkipValue--;
1346 }
1347 }
1348
1349 Row = OriginalRow;
1350 }
1351
1352 *OptionalString = OptionString;
1353 }
1354
1355
1356 /**
1357 Check whether this Menu Option could be highlighted.
1358
1359 This is an internal function.
1360
1361 @param MenuOption The MenuOption to be checked.
1362
1363 @retval TRUE This Menu Option is selectable.
1364 @retval FALSE This Menu Option could not be selected.
1365
1366 **/
1367 BOOLEAN
1368 IsSelectable (
1369 UI_MENU_OPTION *MenuOption
1370 )
1371 {
1372 if ((MenuOption->ThisTag->Operand == EFI_IFR_SUBTITLE_OP) ||
1373 MenuOption->GrayOut || MenuOption->ReadOnly) {
1374 return FALSE;
1375 } else {
1376 return TRUE;
1377 }
1378 }
1379
1380
1381 /**
1382 Determine if the menu is the last menu that can be selected.
1383
1384 This is an internal function.
1385
1386 @param Direction The scroll direction. False is down. True is up.
1387 @param CurrentPos The current focus.
1388
1389 @return FALSE -- the menu isn't the last menu that can be selected.
1390 @return TRUE -- the menu is the last menu that can be selected.
1391
1392 **/
1393 BOOLEAN
1394 ValueIsScroll (
1395 IN BOOLEAN Direction,
1396 IN LIST_ENTRY *CurrentPos
1397 )
1398 {
1399 LIST_ENTRY *Temp;
1400
1401 Temp = Direction ? CurrentPos->BackLink : CurrentPos->ForwardLink;
1402
1403 if (Temp == &gMenuOption) {
1404 return TRUE;
1405 }
1406
1407 return FALSE;
1408 }
1409
1410
1411 /**
1412 Move to next selectable statement.
1413
1414 This is an internal function.
1415
1416 @param GoUp The navigation direction. TRUE: up, FALSE: down.
1417 @param CurrentPosition Current position.
1418 @param GapToTop Gap position to top or bottom.
1419
1420 @return The row distance from current MenuOption to next selectable MenuOption.
1421
1422 **/
1423 INTN
1424 MoveToNextStatement (
1425 IN BOOLEAN GoUp,
1426 IN OUT LIST_ENTRY **CurrentPosition,
1427 IN UINTN GapToTop
1428 )
1429 {
1430 INTN Distance;
1431 LIST_ENTRY *Pos;
1432 UI_MENU_OPTION *NextMenuOption;
1433 UI_MENU_OPTION *PreMenuOption;
1434
1435 Distance = 0;
1436 Pos = *CurrentPosition;
1437 PreMenuOption = MENU_OPTION_FROM_LINK (Pos);
1438
1439 while (TRUE) {
1440 NextMenuOption = MENU_OPTION_FROM_LINK (Pos);
1441 if (GoUp && (PreMenuOption != NextMenuOption)) {
1442 //
1443 // Current Position doesn't need to be caculated when go up.
1444 // Caculate distanct at first when go up
1445 //
1446 if ((UINTN) Distance + NextMenuOption->Skip > GapToTop) {
1447 NextMenuOption = PreMenuOption;
1448 break;
1449 }
1450 Distance += NextMenuOption->Skip;
1451 }
1452 if (IsSelectable (NextMenuOption)) {
1453 break;
1454 }
1455 if ((GoUp ? Pos->BackLink : Pos->ForwardLink) == &gMenuOption) {
1456 //
1457 // Arrive at top.
1458 //
1459 Distance = -1;
1460 break;
1461 }
1462 if (!GoUp) {
1463 //
1464 // Caculate distanct at later when go down
1465 //
1466 if ((UINTN) Distance + NextMenuOption->Skip > GapToTop) {
1467 NextMenuOption = PreMenuOption;
1468 break;
1469 }
1470 Distance += NextMenuOption->Skip;
1471 }
1472 PreMenuOption = NextMenuOption;
1473 Pos = (GoUp ? Pos->BackLink : Pos->ForwardLink);
1474 }
1475
1476 *CurrentPosition = &NextMenuOption->Link;
1477 return Distance;
1478 }
1479
1480
1481 /**
1482 Adjust Data and Time position accordingly.
1483 Data format : [01/02/2004] [11:22:33]
1484 Line number : 0 0 1 0 0 1
1485
1486 This is an internal function.
1487
1488 @param DirectionUp the up or down direction. False is down. True is
1489 up.
1490 @param CurrentPosition Current position. On return: Point to the last
1491 Option (Year or Second) if up; Point to the first
1492 Option (Month or Hour) if down.
1493
1494 @return Return line number to pad. It is possible that we stand on a zero-advance
1495 @return data or time opcode, so pad one line when we judge if we are going to scroll outside.
1496
1497 **/
1498 UINTN
1499 AdjustDateAndTimePosition (
1500 IN BOOLEAN DirectionUp,
1501 IN OUT LIST_ENTRY **CurrentPosition
1502 )
1503 {
1504 UINTN Count;
1505 LIST_ENTRY *NewPosition;
1506 UI_MENU_OPTION *MenuOption;
1507 UINTN PadLineNumber;
1508
1509 PadLineNumber = 0;
1510 NewPosition = *CurrentPosition;
1511 MenuOption = MENU_OPTION_FROM_LINK (NewPosition);
1512
1513 if ((MenuOption->ThisTag->Operand == EFI_IFR_DATE_OP) ||
1514 (MenuOption->ThisTag->Operand == EFI_IFR_TIME_OP)) {
1515 //
1516 // Calculate the distance from current position to the last Date/Time MenuOption
1517 //
1518 Count = 0;
1519 while (MenuOption->Skip == 0) {
1520 Count++;
1521 NewPosition = NewPosition->ForwardLink;
1522 MenuOption = MENU_OPTION_FROM_LINK (NewPosition);
1523 PadLineNumber = 1;
1524 }
1525
1526 NewPosition = *CurrentPosition;
1527 if (DirectionUp) {
1528 //
1529 // Since the behavior of hitting the up arrow on a Date/Time MenuOption is intended
1530 // to be one that back to the previous set of MenuOptions, we need to advance to the first
1531 // Date/Time MenuOption and leave the remaining logic in CfUiUp intact so the appropriate
1532 // checking can be done.
1533 //
1534 while (Count++ < 2) {
1535 NewPosition = NewPosition->BackLink;
1536 }
1537 } else {
1538 //
1539 // Since the behavior of hitting the down arrow on a Date/Time MenuOption is intended
1540 // to be one that progresses to the next set of MenuOptions, we need to advance to the last
1541 // Date/Time MenuOption and leave the remaining logic in CfUiDown intact so the appropriate
1542 // checking can be done.
1543 //
1544 while (Count-- > 0) {
1545 NewPosition = NewPosition->ForwardLink;
1546 }
1547 }
1548
1549 *CurrentPosition = NewPosition;
1550 }
1551
1552 return PadLineNumber;
1553 }
1554
1555 /**
1556 Find HII Handle in the HII database associated with given Device Path.
1557
1558 If DevicePath is NULL, then ASSERT.
1559
1560 @param DevicePath Device Path associated with the HII package list
1561 handle.
1562
1563 @retval Handle HII package list Handle associated with the Device
1564 Path.
1565 @retval NULL Hii Package list handle is not found.
1566
1567 **/
1568 EFI_HII_HANDLE
1569 EFIAPI
1570 DevicePathToHiiHandle (
1571 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
1572 )
1573 {
1574 EFI_STATUS Status;
1575 EFI_DEVICE_PATH_PROTOCOL *TmpDevicePath;
1576 UINTN BufferSize;
1577 UINTN HandleCount;
1578 UINTN Index;
1579 EFI_HANDLE Handle;
1580 EFI_HANDLE DriverHandle;
1581 EFI_HII_HANDLE *HiiHandles;
1582 EFI_HII_HANDLE HiiHandle;
1583
1584 ASSERT (DevicePath != NULL);
1585
1586 TmpDevicePath = DevicePath;
1587 //
1588 // Locate Device Path Protocol handle buffer
1589 //
1590 Status = gBS->LocateDevicePath (
1591 &gEfiDevicePathProtocolGuid,
1592 &TmpDevicePath,
1593 &DriverHandle
1594 );
1595 if (EFI_ERROR (Status) || !IsDevicePathEnd (TmpDevicePath)) {
1596 return NULL;
1597 }
1598
1599 //
1600 // Retrieve all HII Handles from HII database
1601 //
1602 BufferSize = 0x1000;
1603 HiiHandles = AllocatePool (BufferSize);
1604 ASSERT (HiiHandles != NULL);
1605 Status = mHiiDatabase->ListPackageLists (
1606 mHiiDatabase,
1607 EFI_HII_PACKAGE_TYPE_ALL,
1608 NULL,
1609 &BufferSize,
1610 HiiHandles
1611 );
1612 if (Status == EFI_BUFFER_TOO_SMALL) {
1613 FreePool (HiiHandles);
1614 HiiHandles = AllocatePool (BufferSize);
1615 ASSERT (HiiHandles != NULL);
1616
1617 Status = mHiiDatabase->ListPackageLists (
1618 mHiiDatabase,
1619 EFI_HII_PACKAGE_TYPE_ALL,
1620 NULL,
1621 &BufferSize,
1622 HiiHandles
1623 );
1624 }
1625
1626 if (EFI_ERROR (Status)) {
1627 FreePool (HiiHandles);
1628 return NULL;
1629 }
1630
1631 //
1632 // Search Hii Handle by Driver Handle
1633 //
1634 HiiHandle = NULL;
1635 HandleCount = BufferSize / sizeof (EFI_HII_HANDLE);
1636 for (Index = 0; Index < HandleCount; Index++) {
1637 Status = mHiiDatabase->GetPackageListHandle (
1638 mHiiDatabase,
1639 HiiHandles[Index],
1640 &Handle
1641 );
1642 if (!EFI_ERROR (Status) && (Handle == DriverHandle)) {
1643 HiiHandle = HiiHandles[Index];
1644 break;
1645 }
1646 }
1647
1648 FreePool (HiiHandles);
1649 return HiiHandle;
1650 }
1651
1652 /**
1653 Display menu and wait for user to select one menu option, then return it.
1654 If AutoBoot is enabled, then if user doesn't select any option,
1655 after period of time, it will automatically return the first menu option.
1656
1657 @param Selection Menu selection.
1658
1659 @retval EFI_SUCESSS This function always return successfully for now.
1660
1661 **/
1662 EFI_STATUS
1663 UiDisplayMenu (
1664 IN OUT UI_MENU_SELECTION *Selection
1665 )
1666 {
1667 INTN SkipValue;
1668 INTN Difference;
1669 INTN OldSkipValue;
1670 UINTN DistanceValue;
1671 UINTN Row;
1672 UINTN Col;
1673 UINTN Temp;
1674 UINTN Temp2;
1675 UINTN TopRow;
1676 UINTN BottomRow;
1677 UINTN OriginalRow;
1678 UINTN Index;
1679 UINT32 Count;
1680 UINT16 Width;
1681 CHAR16 *StringPtr;
1682 CHAR16 *OptionString;
1683 CHAR16 *OutputString;
1684 CHAR16 *FormattedString;
1685 BOOLEAN NewLine;
1686 BOOLEAN Repaint;
1687 BOOLEAN SavedValue;
1688 BOOLEAN UpArrow;
1689 BOOLEAN DownArrow;
1690 BOOLEAN InitializedFlag;
1691 EFI_STATUS Status;
1692 EFI_INPUT_KEY Key;
1693 LIST_ENTRY *Link;
1694 LIST_ENTRY *NewPos;
1695 LIST_ENTRY *TopOfScreen;
1696 LIST_ENTRY *SavedListEntry;
1697 UI_MENU_OPTION *MenuOption;
1698 UI_MENU_OPTION *NextMenuOption;
1699 UI_MENU_OPTION *SavedMenuOption;
1700 UI_MENU_OPTION *PreviousMenuOption;
1701 UI_CONTROL_FLAG ControlFlag;
1702 EFI_SCREEN_DESCRIPTOR LocalScreen;
1703 MENU_REFRESH_ENTRY *MenuRefreshEntry;
1704 MENU_REFRESH_ENTRY *MenuUpdateEntry;
1705 UI_SCREEN_OPERATION ScreenOperation;
1706 UINT8 MinRefreshInterval;
1707 UINTN BufferSize;
1708 UINT16 DefaultId;
1709 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
1710 FORM_BROWSER_STATEMENT *Statement;
1711 CHAR16 TemStr[2];
1712 UINT8 *DevicePathBuffer;
1713 UINT8 DigitUint8;
1714 UI_MENU_LIST *CurrentMenu;
1715 UI_MENU_LIST *MenuList;
1716 FORM_BROWSER_FORM *RefForm;
1717 UINTN ModalSkipColumn;
1718
1719 CopyMem (&LocalScreen, &gScreenDimensions, sizeof (EFI_SCREEN_DESCRIPTOR));
1720
1721 Status = EFI_SUCCESS;
1722 FormattedString = NULL;
1723 OptionString = NULL;
1724 ScreenOperation = UiNoOperation;
1725 NewLine = TRUE;
1726 MinRefreshInterval = 0;
1727 DefaultId = 0;
1728
1729 OutputString = NULL;
1730 UpArrow = FALSE;
1731 DownArrow = FALSE;
1732 SkipValue = 0;
1733 OldSkipValue = 0;
1734 MenuRefreshEntry = gMenuRefreshHead;
1735
1736 NextMenuOption = NULL;
1737 PreviousMenuOption = NULL;
1738 SavedMenuOption = NULL;
1739 RefForm = NULL;
1740 ModalSkipColumn = (LocalScreen.RightColumn - LocalScreen.LeftColumn) / 6;
1741
1742 ZeroMem (&Key, sizeof (EFI_INPUT_KEY));
1743
1744 if ((gClassOfVfr & FORMSET_CLASS_FRONT_PAGE) == FORMSET_CLASS_FRONT_PAGE){
1745 TopRow = LocalScreen.TopRow + FRONT_PAGE_HEADER_HEIGHT + SCROLL_ARROW_HEIGHT;
1746 Row = LocalScreen.TopRow + FRONT_PAGE_HEADER_HEIGHT + SCROLL_ARROW_HEIGHT;
1747 } else {
1748 TopRow = LocalScreen.TopRow + NONE_FRONT_PAGE_HEADER_HEIGHT + SCROLL_ARROW_HEIGHT;
1749 Row = LocalScreen.TopRow + NONE_FRONT_PAGE_HEADER_HEIGHT + SCROLL_ARROW_HEIGHT;
1750 }
1751
1752 if (Selection->Form->ModalForm) {
1753 Col = LocalScreen.LeftColumn + LEFT_SKIPPED_COLUMNS + ModalSkipColumn;
1754 } else {
1755 Col = LocalScreen.LeftColumn + LEFT_SKIPPED_COLUMNS;
1756 }
1757
1758 BottomRow = LocalScreen.BottomRow - STATUS_BAR_HEIGHT - FOOTER_HEIGHT - SCROLL_ARROW_HEIGHT - 1;
1759
1760 Selection->TopRow = TopRow;
1761 Selection->BottomRow = BottomRow;
1762 Selection->PromptCol = Col;
1763 Selection->OptionCol = gPromptBlockWidth + 1 + LocalScreen.LeftColumn;
1764 Selection->Statement = NULL;
1765
1766 TopOfScreen = gMenuOption.ForwardLink;
1767 Repaint = TRUE;
1768 MenuOption = NULL;
1769
1770 //
1771 // Find current Menu
1772 //
1773 CurrentMenu = UiFindMenuList (&Selection->FormSetGuid, Selection->FormId);
1774 if (CurrentMenu == NULL) {
1775 //
1776 // Current menu not found, add it to the menu tree
1777 //
1778 CurrentMenu = UiAddMenuList (NULL, &Selection->FormSetGuid, Selection->FormId);
1779 }
1780 ASSERT (CurrentMenu != NULL);
1781 Selection->CurrentMenu = CurrentMenu;
1782
1783 if (Selection->QuestionId == 0) {
1784 //
1785 // Highlight not specified, fetch it from cached menu
1786 //
1787 Selection->QuestionId = CurrentMenu->QuestionId;
1788 }
1789
1790 //
1791 // Init option as the current user's selection
1792 //
1793 InitializedFlag = TRUE;
1794 NewPos = gMenuOption.ForwardLink;
1795
1796 gST->ConOut->EnableCursor (gST->ConOut, FALSE);
1797 UpdateStatusBar (Selection, REFRESH_STATUS_BAR, (UINT8) 0, TRUE);
1798
1799 ControlFlag = CfInitialization;
1800 Selection->Action = UI_ACTION_NONE;
1801 while (TRUE) {
1802 switch (ControlFlag) {
1803 case CfInitialization:
1804 if (IsListEmpty (&gMenuOption)) {
1805 ControlFlag = CfReadKey;
1806 } else {
1807 ControlFlag = CfCheckSelection;
1808 }
1809 break;
1810
1811 case CfCheckSelection:
1812 if (Selection->Action != UI_ACTION_NONE) {
1813 ControlFlag = CfExit;
1814 } else {
1815 ControlFlag = CfRepaint;
1816 }
1817 break;
1818
1819 case CfRepaint:
1820 ControlFlag = CfRefreshHighLight;
1821
1822 if (Repaint) {
1823 //
1824 // Display menu
1825 //
1826 DownArrow = FALSE;
1827 UpArrow = FALSE;
1828 Row = TopRow;
1829
1830 Temp = (UINTN) SkipValue;
1831 Temp2 = (UINTN) SkipValue;
1832
1833 if (Selection->Form->ModalForm) {
1834 ClearLines (
1835 LocalScreen.LeftColumn + ModalSkipColumn,
1836 LocalScreen.LeftColumn + ModalSkipColumn + gPromptBlockWidth + gOptionBlockWidth,
1837 TopRow - SCROLL_ARROW_HEIGHT,
1838 BottomRow + SCROLL_ARROW_HEIGHT,
1839 PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND
1840 );
1841 } else {
1842 ClearLines (
1843 LocalScreen.LeftColumn,
1844 LocalScreen.RightColumn,
1845 TopRow - SCROLL_ARROW_HEIGHT,
1846 BottomRow + SCROLL_ARROW_HEIGHT,
1847 PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND
1848 );
1849 }
1850 UiFreeRefreshList ();
1851 MinRefreshInterval = 0;
1852
1853 for (Link = TopOfScreen; Link != &gMenuOption; Link = Link->ForwardLink) {
1854 MenuOption = MENU_OPTION_FROM_LINK (Link);
1855 MenuOption->Row = Row;
1856 MenuOption->Col = Col;
1857 if (Selection->Form->ModalForm) {
1858 MenuOption->OptCol = gPromptBlockWidth + 1 + LocalScreen.LeftColumn + ModalSkipColumn;
1859 } else {
1860 MenuOption->OptCol = gPromptBlockWidth + 1 + LocalScreen.LeftColumn;
1861 }
1862
1863 Statement = MenuOption->ThisTag;
1864 if (Statement->InSubtitle) {
1865 MenuOption->Col += SUBTITLE_INDENT;
1866 }
1867
1868 if (MenuOption->GrayOut) {
1869 gST->ConOut->SetAttribute (gST->ConOut, FIELD_TEXT_GRAYED | FIELD_BACKGROUND);
1870 } else {
1871 if (Statement->Operand == EFI_IFR_SUBTITLE_OP) {
1872 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserSubtitleTextColor) | FIELD_BACKGROUND);
1873 }
1874 }
1875
1876 Width = GetWidth (Statement, MenuOption->Handle);
1877 OriginalRow = Row;
1878
1879 if (Statement->Operand == EFI_IFR_REF_OP && MenuOption->Col >= 2) {
1880 //
1881 // Print Arrow for Goto button.
1882 //
1883 PrintAt (
1884 MenuOption->Col - 2,
1885 Row,
1886 L"%c",
1887 GEOMETRICSHAPE_RIGHT_TRIANGLE
1888 );
1889 }
1890
1891 for (Index = 0; GetLineByWidth (MenuOption->Description, Width, &Index, &OutputString) != 0x0000;) {
1892 if ((Temp == 0) && (Row <= BottomRow)) {
1893 PrintStringAt (MenuOption->Col, Row, OutputString);
1894 }
1895 //
1896 // If there is more string to process print on the next row and increment the Skip value
1897 //
1898 if (StrLen (&MenuOption->Description[Index]) != 0) {
1899 if (Temp == 0) {
1900 Row++;
1901 }
1902 }
1903
1904 FreePool (OutputString);
1905 if (Temp != 0) {
1906 Temp--;
1907 }
1908 }
1909
1910 Temp = 0;
1911 Row = OriginalRow;
1912
1913 Status = ProcessOptions (Selection, MenuOption, FALSE, &OptionString);
1914 if (EFI_ERROR (Status)) {
1915 //
1916 // Repaint to clear possible error prompt pop-up
1917 //
1918 Repaint = TRUE;
1919 NewLine = TRUE;
1920 ControlFlag = CfRepaint;
1921 break;
1922 }
1923
1924 if (OptionString != NULL) {
1925 if (Statement->Operand == EFI_IFR_DATE_OP || Statement->Operand == EFI_IFR_TIME_OP) {
1926 //
1927 // If leading spaces on OptionString - remove the spaces
1928 //
1929 for (Index = 0; OptionString[Index] == L' '; Index++) {
1930 MenuOption->OptCol++;
1931 }
1932
1933 for (Count = 0; OptionString[Index] != CHAR_NULL; Index++) {
1934 OptionString[Count] = OptionString[Index];
1935 Count++;
1936 }
1937
1938 OptionString[Count] = CHAR_NULL;
1939 }
1940
1941 //
1942 // If Question has refresh guid, register the op-code.
1943 //
1944 if (!CompareGuid (&Statement->RefreshGuid, &gZeroGuid)) {
1945 if (gMenuEventGuidRefreshHead == NULL) {
1946 MenuUpdateEntry = AllocateZeroPool (sizeof (MENU_REFRESH_ENTRY));
1947 gMenuEventGuidRefreshHead = MenuUpdateEntry;
1948 } else {
1949 MenuUpdateEntry = gMenuEventGuidRefreshHead;
1950 while (MenuUpdateEntry->Next != NULL) {
1951 MenuUpdateEntry = MenuUpdateEntry->Next;
1952 }
1953 MenuUpdateEntry->Next = AllocateZeroPool (sizeof (MENU_REFRESH_ENTRY));
1954 }
1955 ASSERT (MenuUpdateEntry != NULL);
1956 Status = gBS->CreateEventEx (EVT_NOTIFY_SIGNAL, TPL_NOTIFY, RefreshQuestionNotify, MenuUpdateEntry, &Statement->RefreshGuid, &MenuUpdateEntry->Event);
1957 ASSERT (!EFI_ERROR (Status));
1958 MenuUpdateEntry->MenuOption = MenuOption;
1959 MenuUpdateEntry->Selection = Selection;
1960 MenuUpdateEntry->CurrentColumn = MenuOption->OptCol;
1961 MenuUpdateEntry->CurrentRow = MenuOption->Row;
1962 if (MenuOption->GrayOut) {
1963 MenuUpdateEntry->CurrentAttribute = FIELD_TEXT_GRAYED | FIELD_BACKGROUND;
1964 } else {
1965 MenuUpdateEntry->CurrentAttribute = PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND;
1966 }
1967 }
1968
1969 //
1970 // If Question request refresh, register the op-code
1971 //
1972 if (Statement->RefreshInterval != 0) {
1973 //
1974 // Menu will be refreshed at minimal interval of all Questions
1975 // which have refresh request
1976 //
1977 if (MinRefreshInterval == 0 || Statement->RefreshInterval < MinRefreshInterval) {
1978 MinRefreshInterval = Statement->RefreshInterval;
1979 }
1980
1981 if (gMenuRefreshHead == NULL) {
1982 MenuRefreshEntry = AllocateZeroPool (sizeof (MENU_REFRESH_ENTRY));
1983 ASSERT (MenuRefreshEntry != NULL);
1984 MenuRefreshEntry->MenuOption = MenuOption;
1985 MenuRefreshEntry->Selection = Selection;
1986 MenuRefreshEntry->CurrentColumn = MenuOption->OptCol;
1987 MenuRefreshEntry->CurrentRow = MenuOption->Row;
1988 if (MenuOption->GrayOut) {
1989 MenuRefreshEntry->CurrentAttribute = FIELD_TEXT_GRAYED | FIELD_BACKGROUND;
1990 } else {
1991 MenuRefreshEntry->CurrentAttribute = PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND;
1992 }
1993 gMenuRefreshHead = MenuRefreshEntry;
1994 } else {
1995 //
1996 // Advance to the last entry
1997 //
1998 for (MenuRefreshEntry = gMenuRefreshHead;
1999 MenuRefreshEntry->Next != NULL;
2000 MenuRefreshEntry = MenuRefreshEntry->Next
2001 )
2002 ;
2003 MenuRefreshEntry->Next = AllocateZeroPool (sizeof (MENU_REFRESH_ENTRY));
2004 ASSERT (MenuRefreshEntry->Next != NULL);
2005 MenuRefreshEntry = MenuRefreshEntry->Next;
2006 MenuRefreshEntry->MenuOption = MenuOption;
2007 MenuRefreshEntry->Selection = Selection;
2008 MenuRefreshEntry->CurrentColumn = MenuOption->OptCol;
2009 MenuRefreshEntry->CurrentRow = MenuOption->Row;
2010 if (MenuOption->GrayOut) {
2011 MenuRefreshEntry->CurrentAttribute = FIELD_TEXT_GRAYED | FIELD_BACKGROUND;
2012 } else {
2013 MenuRefreshEntry->CurrentAttribute = PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND;
2014 }
2015 }
2016 }
2017
2018 Width = (UINT16) gOptionBlockWidth;
2019 OriginalRow = Row;
2020
2021 for (Index = 0; GetLineByWidth (OptionString, Width, &Index, &OutputString) != 0x0000;) {
2022 if ((Temp2 == 0) && (Row <= BottomRow)) {
2023 PrintStringAt (MenuOption->OptCol, Row, OutputString);
2024 }
2025 //
2026 // If there is more string to process print on the next row and increment the Skip value
2027 //
2028 if (StrLen (&OptionString[Index]) != 0) {
2029 if (Temp2 == 0) {
2030 Row++;
2031 //
2032 // Since the Number of lines for this menu entry may or may not be reflected accurately
2033 // since the prompt might be 1 lines and option might be many, and vice versa, we need to do
2034 // some testing to ensure we are keeping this in-sync.
2035 //
2036 // If the difference in rows is greater than or equal to the skip value, increase the skip value
2037 //
2038 if ((Row - OriginalRow) >= MenuOption->Skip) {
2039 MenuOption->Skip++;
2040 }
2041 }
2042 }
2043
2044 FreePool (OutputString);
2045 if (Temp2 != 0) {
2046 Temp2--;
2047 }
2048 }
2049
2050 Temp2 = 0;
2051 Row = OriginalRow;
2052
2053 FreePool (OptionString);
2054 }
2055 //
2056 // If this is a text op with secondary text information
2057 //
2058 if ((Statement->Operand == EFI_IFR_TEXT_OP) && (Statement->TextTwo != 0)) {
2059 StringPtr = GetToken (Statement->TextTwo, MenuOption->Handle);
2060
2061 Width = (UINT16) gOptionBlockWidth;
2062 OriginalRow = Row;
2063
2064 for (Index = 0; GetLineByWidth (StringPtr, Width, &Index, &OutputString) != 0x0000;) {
2065 if ((Temp == 0) && (Row <= BottomRow)) {
2066 PrintStringAt (MenuOption->OptCol, Row, OutputString);
2067 }
2068 //
2069 // If there is more string to process print on the next row and increment the Skip value
2070 //
2071 if (StrLen (&StringPtr[Index]) != 0) {
2072 if (Temp2 == 0) {
2073 Row++;
2074 //
2075 // Since the Number of lines for this menu entry may or may not be reflected accurately
2076 // since the prompt might be 1 lines and option might be many, and vice versa, we need to do
2077 // some testing to ensure we are keeping this in-sync.
2078 //
2079 // If the difference in rows is greater than or equal to the skip value, increase the skip value
2080 //
2081 if ((Row - OriginalRow) >= MenuOption->Skip) {
2082 MenuOption->Skip++;
2083 }
2084 }
2085 }
2086
2087 FreePool (OutputString);
2088 if (Temp2 != 0) {
2089 Temp2--;
2090 }
2091 }
2092
2093 Row = OriginalRow;
2094 FreePool (StringPtr);
2095 }
2096 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND);
2097
2098 //
2099 // Need to handle the bottom of the display
2100 //
2101 if (MenuOption->Skip > 1) {
2102 Row += MenuOption->Skip - SkipValue;
2103 SkipValue = 0;
2104 } else {
2105 Row += MenuOption->Skip;
2106 }
2107
2108 if (Row > BottomRow) {
2109 if (!ValueIsScroll (FALSE, Link)) {
2110 DownArrow = TRUE;
2111 }
2112
2113 Row = BottomRow + 1;
2114 break;
2115 }
2116 }
2117
2118 if (!ValueIsScroll (TRUE, TopOfScreen)) {
2119 UpArrow = TRUE;
2120 }
2121
2122 if (UpArrow) {
2123 gST->ConOut->SetAttribute (gST->ConOut, ARROW_TEXT | ARROW_BACKGROUND);
2124 PrintAt (
2125 LocalScreen.LeftColumn + gPromptBlockWidth + gOptionBlockWidth + 1,
2126 TopRow - SCROLL_ARROW_HEIGHT,
2127 L"%c",
2128 ARROW_UP
2129 );
2130 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND);
2131 }
2132
2133 if (DownArrow) {
2134 gST->ConOut->SetAttribute (gST->ConOut, ARROW_TEXT | ARROW_BACKGROUND);
2135 PrintAt (
2136 LocalScreen.LeftColumn + gPromptBlockWidth + gOptionBlockWidth + 1,
2137 BottomRow + SCROLL_ARROW_HEIGHT,
2138 L"%c",
2139 ARROW_DOWN
2140 );
2141 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND);
2142 }
2143
2144 MenuOption = NULL;
2145 }
2146 break;
2147
2148 case CfRefreshHighLight:
2149 //
2150 // MenuOption: Last menu option that need to remove hilight
2151 // MenuOption is set to NULL in Repaint
2152 // NewPos: Current menu option that need to hilight
2153 //
2154 ControlFlag = CfUpdateHelpString;
2155 if (InitializedFlag) {
2156 InitializedFlag = FALSE;
2157 MoveToNextStatement (FALSE, &NewPos, BottomRow - TopRow);
2158 }
2159
2160 //
2161 // Repaint flag is normally reset when finish processing CfUpdateHelpString. Temporarily
2162 // reset Repaint flag because we may break halfway and skip CfUpdateHelpString processing.
2163 //
2164 SavedValue = Repaint;
2165 Repaint = FALSE;
2166
2167 if (Selection->QuestionId != 0) {
2168 NewPos = gMenuOption.ForwardLink;
2169 SavedMenuOption = MENU_OPTION_FROM_LINK (NewPos);
2170
2171 while (SavedMenuOption->ThisTag->QuestionId != Selection->QuestionId && NewPos->ForwardLink != &gMenuOption) {
2172 NewPos = NewPos->ForwardLink;
2173 SavedMenuOption = MENU_OPTION_FROM_LINK (NewPos);
2174 }
2175 if (SavedMenuOption->ThisTag->QuestionId == Selection->QuestionId) {
2176 //
2177 // Target Question found, find its MenuOption
2178 //
2179 Link = TopOfScreen;
2180
2181 for (Index = TopRow; Index <= BottomRow && Link != NewPos;) {
2182 SavedMenuOption = MENU_OPTION_FROM_LINK (Link);
2183 Index += SavedMenuOption->Skip;
2184 Link = Link->ForwardLink;
2185 }
2186
2187 if (Link != NewPos || Index > BottomRow) {
2188 //
2189 // NewPos is not in the current page, simply scroll page so that NewPos is in the end of the page
2190 //
2191 Link = NewPos;
2192 for (Index = TopRow; Index <= BottomRow; ) {
2193 Link = Link->BackLink;
2194 SavedMenuOption = MENU_OPTION_FROM_LINK (Link);
2195 Index += SavedMenuOption->Skip;
2196 }
2197 TopOfScreen = Link->ForwardLink;
2198
2199 Repaint = TRUE;
2200 NewLine = TRUE;
2201 ControlFlag = CfRepaint;
2202 break;
2203 }
2204 } else {
2205 //
2206 // Target Question not found, highlight the default menu option
2207 //
2208 NewPos = TopOfScreen;
2209 }
2210
2211 Selection->QuestionId = 0;
2212 }
2213
2214 if (NewPos != NULL && (MenuOption == NULL || NewPos != &MenuOption->Link)) {
2215 if (MenuOption != NULL) {
2216 //
2217 // Remove highlight on last Menu Option
2218 //
2219 gST->ConOut->SetCursorPosition (gST->ConOut, MenuOption->Col, MenuOption->Row);
2220 ProcessOptions (Selection, MenuOption, FALSE, &OptionString);
2221 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND);
2222 if (OptionString != NULL) {
2223 if ((MenuOption->ThisTag->Operand == EFI_IFR_DATE_OP) ||
2224 (MenuOption->ThisTag->Operand == EFI_IFR_TIME_OP)
2225 ) {
2226 //
2227 // If leading spaces on OptionString - remove the spaces
2228 //
2229 for (Index = 0; OptionString[Index] == L' '; Index++)
2230 ;
2231
2232 for (Count = 0; OptionString[Index] != CHAR_NULL; Index++) {
2233 OptionString[Count] = OptionString[Index];
2234 Count++;
2235 }
2236
2237 OptionString[Count] = CHAR_NULL;
2238 }
2239
2240 Width = (UINT16) gOptionBlockWidth;
2241 OriginalRow = MenuOption->Row;
2242
2243 for (Index = 0; GetLineByWidth (OptionString, Width, &Index, &OutputString) != 0x0000;) {
2244 if (MenuOption->Row >= TopRow && MenuOption->Row <= BottomRow) {
2245 PrintStringAt (MenuOption->OptCol, MenuOption->Row, OutputString);
2246 }
2247 //
2248 // If there is more string to process print on the next row and increment the Skip value
2249 //
2250 if (StrLen (&OptionString[Index]) != 0) {
2251 MenuOption->Row++;
2252 }
2253
2254 FreePool (OutputString);
2255 }
2256
2257 MenuOption->Row = OriginalRow;
2258
2259 FreePool (OptionString);
2260 } else {
2261 if (NewLine) {
2262 if (MenuOption->GrayOut) {
2263 gST->ConOut->SetAttribute (gST->ConOut, FIELD_TEXT_GRAYED | FIELD_BACKGROUND);
2264 } else if (MenuOption->ThisTag->Operand == EFI_IFR_SUBTITLE_OP) {
2265 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserSubtitleTextColor) | FIELD_BACKGROUND);
2266 }
2267
2268 OriginalRow = MenuOption->Row;
2269 Width = GetWidth (MenuOption->ThisTag, MenuOption->Handle);
2270
2271 for (Index = 0; GetLineByWidth (MenuOption->Description, Width, &Index, &OutputString) != 0x0000;) {
2272 if (MenuOption->Row >= TopRow && MenuOption->Row <= BottomRow) {
2273 PrintStringAt (MenuOption->Col, MenuOption->Row, OutputString);
2274 }
2275 //
2276 // If there is more string to process print on the next row and increment the Skip value
2277 //
2278 if (StrLen (&MenuOption->Description[Index]) != 0) {
2279 MenuOption->Row++;
2280 }
2281
2282 FreePool (OutputString);
2283 }
2284
2285 MenuOption->Row = OriginalRow;
2286 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND);
2287 }
2288 }
2289 }
2290
2291 //
2292 // This is the current selected statement
2293 //
2294 MenuOption = MENU_OPTION_FROM_LINK (NewPos);
2295 Statement = MenuOption->ThisTag;
2296 Selection->Statement = Statement;
2297 if (!IsSelectable (MenuOption)) {
2298 Repaint = SavedValue;
2299 UpdateKeyHelp (Selection, MenuOption, FALSE);
2300 break;
2301 }
2302
2303 //
2304 // Record highlight for current menu
2305 //
2306 CurrentMenu->QuestionId = Statement->QuestionId;
2307
2308 //
2309 // Set reverse attribute
2310 //
2311 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserFieldTextHighlightColor) | PcdGet8 (PcdBrowserFieldBackgroundHighlightColor));
2312 gST->ConOut->SetCursorPosition (gST->ConOut, MenuOption->Col, MenuOption->Row);
2313
2314 //
2315 // Assuming that we have a refresh linked-list created, lets annotate the
2316 // appropriate entry that we are highlighting with its new attribute. Just prior to this
2317 // lets reset all of the entries' attribute so we do not get multiple highlights in he refresh
2318 //
2319 if (gMenuRefreshHead != NULL) {
2320 for (MenuRefreshEntry = gMenuRefreshHead; MenuRefreshEntry != NULL; MenuRefreshEntry = MenuRefreshEntry->Next) {
2321 if (MenuRefreshEntry->MenuOption->GrayOut) {
2322 MenuRefreshEntry->CurrentAttribute = FIELD_TEXT_GRAYED | FIELD_BACKGROUND;
2323 } else {
2324 MenuRefreshEntry->CurrentAttribute = PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND;
2325 }
2326 if (MenuRefreshEntry->MenuOption == MenuOption) {
2327 MenuRefreshEntry->CurrentAttribute = PcdGet8 (PcdBrowserFieldTextHighlightColor) | PcdGet8 (PcdBrowserFieldBackgroundHighlightColor);
2328 }
2329 }
2330 }
2331
2332 ProcessOptions (Selection, MenuOption, FALSE, &OptionString);
2333 if (OptionString != NULL) {
2334 if (Statement->Operand == EFI_IFR_DATE_OP || Statement->Operand == EFI_IFR_TIME_OP) {
2335 //
2336 // If leading spaces on OptionString - remove the spaces
2337 //
2338 for (Index = 0; OptionString[Index] == L' '; Index++)
2339 ;
2340
2341 for (Count = 0; OptionString[Index] != CHAR_NULL; Index++) {
2342 OptionString[Count] = OptionString[Index];
2343 Count++;
2344 }
2345
2346 OptionString[Count] = CHAR_NULL;
2347 }
2348 Width = (UINT16) gOptionBlockWidth;
2349
2350 OriginalRow = MenuOption->Row;
2351
2352 for (Index = 0; GetLineByWidth (OptionString, Width, &Index, &OutputString) != 0x0000;) {
2353 if (MenuOption->Row >= TopRow && MenuOption->Row <= BottomRow) {
2354 PrintStringAt (MenuOption->OptCol, MenuOption->Row, OutputString);
2355 }
2356 //
2357 // If there is more string to process print on the next row and increment the Skip value
2358 //
2359 if (StrLen (&OptionString[Index]) != 0) {
2360 MenuOption->Row++;
2361 }
2362
2363 FreePool (OutputString);
2364 }
2365
2366 MenuOption->Row = OriginalRow;
2367
2368 FreePool (OptionString);
2369 } else {
2370 if (NewLine) {
2371 OriginalRow = MenuOption->Row;
2372
2373 Width = GetWidth (Statement, MenuOption->Handle);
2374
2375 for (Index = 0; GetLineByWidth (MenuOption->Description, Width, &Index, &OutputString) != 0x0000;) {
2376 if (MenuOption->Row >= TopRow && MenuOption->Row <= BottomRow) {
2377 PrintStringAt (MenuOption->Col, MenuOption->Row, OutputString);
2378 }
2379 //
2380 // If there is more string to process print on the next row and increment the Skip value
2381 //
2382 if (StrLen (&MenuOption->Description[Index]) != 0) {
2383 MenuOption->Row++;
2384 }
2385
2386 FreePool (OutputString);
2387 }
2388
2389 MenuOption->Row = OriginalRow;
2390
2391 }
2392 }
2393
2394 UpdateKeyHelp (Selection, MenuOption, FALSE);
2395
2396 //
2397 // Clear reverse attribute
2398 //
2399 gST->ConOut->SetAttribute (gST->ConOut, PcdGet8 (PcdBrowserFieldTextColor) | FIELD_BACKGROUND);
2400 }
2401 //
2402 // Repaint flag will be used when process CfUpdateHelpString, so restore its value
2403 // if we didn't break halfway when process CfRefreshHighLight.
2404 //
2405 Repaint = SavedValue;
2406 break;
2407
2408 case CfUpdateHelpString:
2409 ControlFlag = CfPrepareToReadKey;
2410 if (Selection->Form->ModalForm) {
2411 break;
2412 }
2413
2414 if (Repaint || NewLine) {
2415 //
2416 // Don't print anything if it is a NULL help token
2417 //
2418 ASSERT(MenuOption != NULL);
2419 if (MenuOption->ThisTag->Help == 0 || !IsSelectable (MenuOption)) {
2420 StringPtr = L"\0";
2421 } else {
2422 StringPtr = GetToken (MenuOption->ThisTag->Help, MenuOption->Handle);
2423 }
2424
2425 ProcessHelpString (StringPtr, &FormattedString, BottomRow - TopRow);
2426
2427 gST->ConOut->SetAttribute (gST->ConOut, HELP_TEXT | FIELD_BACKGROUND);
2428
2429 for (Index = 0; Index < BottomRow - TopRow; Index++) {
2430 //
2431 // Pad String with spaces to simulate a clearing of the previous line
2432 //
2433 for (; GetStringWidth (&FormattedString[Index * gHelpBlockWidth * 2]) / 2 < gHelpBlockWidth;) {
2434 StrCat (&FormattedString[Index * gHelpBlockWidth * 2], L" ");
2435 }
2436
2437 PrintStringAt (
2438 LocalScreen.RightColumn - gHelpBlockWidth,
2439 Index + TopRow,
2440 &FormattedString[Index * gHelpBlockWidth * 2]
2441 );
2442 }
2443 }
2444 //
2445 // Reset this flag every time we finish using it.
2446 //
2447 Repaint = FALSE;
2448 NewLine = FALSE;
2449 break;
2450
2451 case CfPrepareToReadKey:
2452 ControlFlag = CfReadKey;
2453 ScreenOperation = UiNoOperation;
2454 break;
2455
2456 case CfReadKey:
2457 ControlFlag = CfScreenOperation;
2458
2459 //
2460 // Wait for user's selection
2461 //
2462 do {
2463 Status = UiWaitForSingleEvent (gST->ConIn->WaitForKey, 0, MinRefreshInterval);
2464 } while (Status == EFI_TIMEOUT);
2465
2466 if (Selection->Action == UI_ACTION_REFRESH_FORMSET) {
2467 //
2468 // IFR is updated in Callback of refresh opcode, re-parse it
2469 //
2470 Selection->Statement = NULL;
2471 return EFI_SUCCESS;
2472 }
2473
2474 Status = gST->ConIn->ReadKeyStroke (gST->ConIn, &Key);
2475 //
2476 // If we encounter error, continue to read another key in.
2477 //
2478 if (EFI_ERROR (Status)) {
2479 ControlFlag = CfReadKey;
2480 break;
2481 }
2482
2483 switch (Key.UnicodeChar) {
2484 case CHAR_CARRIAGE_RETURN:
2485 ScreenOperation = UiSelect;
2486 gDirection = 0;
2487 break;
2488
2489 //
2490 // We will push the adjustment of these numeric values directly to the input handler
2491 // NOTE: we won't handle manual input numeric
2492 //
2493 case '+':
2494 case '-':
2495 //
2496 // If the screen has no menu items, and the user didn't select UiReset
2497 // ignore the selection and go back to reading keys.
2498 //
2499 if(IsListEmpty (&gMenuOption)) {
2500 ControlFlag = CfReadKey;
2501 break;
2502 }
2503
2504 ASSERT(MenuOption != NULL);
2505 Statement = MenuOption->ThisTag;
2506 if ((Statement->Operand == EFI_IFR_DATE_OP)
2507 || (Statement->Operand == EFI_IFR_TIME_OP)
2508 || ((Statement->Operand == EFI_IFR_NUMERIC_OP) && (Statement->Step != 0))
2509 ){
2510 if (Key.UnicodeChar == '+') {
2511 gDirection = SCAN_RIGHT;
2512 } else {
2513 gDirection = SCAN_LEFT;
2514 }
2515 Status = ProcessOptions (Selection, MenuOption, TRUE, &OptionString);
2516 if (EFI_ERROR (Status)) {
2517 //
2518 // Repaint to clear possible error prompt pop-up
2519 //
2520 Repaint = TRUE;
2521 NewLine = TRUE;
2522 } else {
2523 Selection->Action = UI_ACTION_REFRESH_FORM;
2524 }
2525 if (OptionString != NULL) {
2526 FreePool (OptionString);
2527 }
2528 }
2529 break;
2530
2531 case '^':
2532 ScreenOperation = UiUp;
2533 break;
2534
2535 case 'V':
2536 case 'v':
2537 ScreenOperation = UiDown;
2538 break;
2539
2540 case ' ':
2541 if ((gClassOfVfr & FORMSET_CLASS_FRONT_PAGE) != FORMSET_CLASS_FRONT_PAGE) {
2542 //
2543 // If the screen has no menu items, and the user didn't select UiReset
2544 // ignore the selection and go back to reading keys.
2545 //
2546 if(IsListEmpty (&gMenuOption)) {
2547 ControlFlag = CfReadKey;
2548 break;
2549 }
2550
2551 ASSERT(MenuOption != NULL);
2552 if (MenuOption->ThisTag->Operand == EFI_IFR_CHECKBOX_OP && !MenuOption->GrayOut) {
2553 ScreenOperation = UiSelect;
2554 }
2555 }
2556 break;
2557
2558 case CHAR_NULL:
2559 if (((Key.ScanCode == SCAN_F9) && ((gFunctionKeySetting & FUNCTION_NINE) != FUNCTION_NINE)) ||
2560 ((Key.ScanCode == SCAN_F10) && ((gFunctionKeySetting & FUNCTION_TEN) != FUNCTION_TEN))
2561 ) {
2562 //
2563 // If the function key has been disabled, just ignore the key.
2564 //
2565 } else {
2566 for (Index = 0; Index < sizeof (gScanCodeToOperation) / sizeof (gScanCodeToOperation[0]); Index++) {
2567 if (Selection->Form->ModalForm &&
2568 (Key.ScanCode == SCAN_F9 || Key.ScanCode == SCAN_F10 || Key.ScanCode == SCAN_ESC)) {
2569 ControlFlag = CfReadKey;
2570 break;
2571 }
2572
2573 if (Key.ScanCode == gScanCodeToOperation[Index].ScanCode) {
2574 if (Key.ScanCode == SCAN_F9) {
2575 //
2576 // Reset to standard default
2577 //
2578 DefaultId = EFI_HII_DEFAULT_CLASS_STANDARD;
2579 }
2580 ScreenOperation = gScanCodeToOperation[Index].ScreenOperation;
2581 break;
2582 }
2583 }
2584 }
2585 break;
2586 }
2587 break;
2588
2589 case CfScreenOperation:
2590 if (ScreenOperation != UiReset) {
2591 //
2592 // If the screen has no menu items, and the user didn't select UiReset
2593 // ignore the selection and go back to reading keys.
2594 //
2595 if (IsListEmpty (&gMenuOption)) {
2596 ControlFlag = CfReadKey;
2597 break;
2598 }
2599 }
2600
2601 for (Index = 0;
2602 Index < sizeof (gScreenOperationToControlFlag) / sizeof (gScreenOperationToControlFlag[0]);
2603 Index++
2604 ) {
2605 if (ScreenOperation == gScreenOperationToControlFlag[Index].ScreenOperation) {
2606 ControlFlag = gScreenOperationToControlFlag[Index].ControlFlag;
2607 break;
2608 }
2609 }
2610 break;
2611
2612 case CfUiSelect:
2613 ControlFlag = CfCheckSelection;
2614
2615 ASSERT(MenuOption != NULL);
2616 Statement = MenuOption->ThisTag;
2617 if (Statement->Operand == EFI_IFR_TEXT_OP) {
2618 break;
2619 }
2620
2621 //
2622 // Keep highlight on current MenuOption
2623 //
2624 Selection->QuestionId = Statement->QuestionId;
2625
2626 switch (Statement->Operand) {
2627 case EFI_IFR_REF_OP:
2628 if (Statement->RefDevicePath != 0) {
2629 if (Selection->Form->ModalForm) {
2630 break;
2631 }
2632 //
2633 // Goto another Hii Package list
2634 //
2635 Selection->Action = UI_ACTION_REFRESH_FORMSET;
2636
2637 StringPtr = GetToken (Statement->RefDevicePath, Selection->FormSet->HiiHandle);
2638 if (StringPtr == NULL) {
2639 //
2640 // No device path string not found, exit
2641 //
2642 Selection->Action = UI_ACTION_EXIT;
2643 Selection->Statement = NULL;
2644 break;
2645 }
2646 BufferSize = StrLen (StringPtr) / 2;
2647 DevicePath = AllocatePool (BufferSize);
2648 ASSERT (DevicePath != NULL);
2649
2650 //
2651 // Convert from Device Path String to DevicePath Buffer in the reverse order.
2652 //
2653 DevicePathBuffer = (UINT8 *) DevicePath;
2654 for (Index = 0; StringPtr[Index] != L'\0'; Index ++) {
2655 TemStr[0] = StringPtr[Index];
2656 DigitUint8 = (UINT8) StrHexToUint64 (TemStr);
2657 if (DigitUint8 == 0 && TemStr[0] != L'0') {
2658 //
2659 // Invalid Hex Char as the tail.
2660 //
2661 break;
2662 }
2663 if ((Index & 1) == 0) {
2664 DevicePathBuffer [Index/2] = DigitUint8;
2665 } else {
2666 DevicePathBuffer [Index/2] = (UINT8) ((DevicePathBuffer [Index/2] << 4) + DigitUint8);
2667 }
2668 }
2669
2670 Selection->Handle = DevicePathToHiiHandle (DevicePath);
2671 if (Selection->Handle == NULL) {
2672 //
2673 // If target Hii Handle not found, exit
2674 //
2675 Selection->Action = UI_ACTION_EXIT;
2676 Selection->Statement = NULL;
2677 break;
2678 }
2679
2680 FreePool (StringPtr);
2681 FreePool (DevicePath);
2682
2683 CopyMem (&Selection->FormSetGuid, &Statement->RefFormSetId, sizeof (EFI_GUID));
2684 Selection->FormId = Statement->RefFormId;
2685 Selection->QuestionId = Statement->RefQuestionId;
2686 } else if (!CompareGuid (&Statement->RefFormSetId, &gZeroGuid)) {
2687 if (Selection->Form->ModalForm) {
2688 break;
2689 }
2690 //
2691 // Goto another Formset, check for uncommitted data
2692 //
2693 Selection->Action = UI_ACTION_REFRESH_FORMSET;
2694
2695 CopyMem (&Selection->FormSetGuid, &Statement->RefFormSetId, sizeof (EFI_GUID));
2696 Selection->FormId = Statement->RefFormId;
2697 Selection->QuestionId = Statement->RefQuestionId;
2698 } else if (Statement->RefFormId != 0) {
2699 //
2700 // Check whether target From is suppressed.
2701 //
2702 RefForm = IdToForm (Selection->FormSet, Statement->RefFormId);
2703
2704 if ((RefForm != NULL) && (RefForm->SuppressExpression != NULL)) {
2705 Status = EvaluateExpression (Selection->FormSet, RefForm, RefForm->SuppressExpression);
2706 if (EFI_ERROR (Status)) {
2707 return Status;
2708 }
2709
2710 if (RefForm->SuppressExpression->Result.Value.b) {
2711 //
2712 // Form is suppressed.
2713 //
2714 do {
2715 CreateDialog (4, TRUE, 0, NULL, &Key, gEmptyString, gFormSuppress, gPressEnter, gEmptyString);
2716 } while (Key.UnicodeChar != CHAR_CARRIAGE_RETURN);
2717
2718 Repaint = TRUE;
2719 break;
2720 }
2721 }
2722
2723 //
2724 // Goto another form inside this formset,
2725 //
2726 Selection->Action = UI_ACTION_REFRESH_FORM;
2727
2728 //
2729 // Link current form so that we can always go back when someone hits the ESC
2730 //
2731 MenuList = UiFindMenuList (&Selection->FormSetGuid, Statement->RefFormId);
2732 if (MenuList == NULL) {
2733 MenuList = UiAddMenuList (CurrentMenu, &Selection->FormSetGuid, Statement->RefFormId);
2734 }
2735
2736 Selection->FormId = Statement->RefFormId;
2737 Selection->QuestionId = Statement->RefQuestionId;
2738 } else if (Statement->RefQuestionId != 0) {
2739 //
2740 // Goto another Question
2741 //
2742 Selection->QuestionId = Statement->RefQuestionId;
2743
2744 if ((Statement->QuestionFlags & EFI_IFR_FLAG_CALLBACK) != 0) {
2745 Selection->Action = UI_ACTION_REFRESH_FORM;
2746 } else {
2747 Repaint = TRUE;
2748 NewLine = TRUE;
2749 break;
2750 }
2751 }
2752 break;
2753
2754 case EFI_IFR_ACTION_OP:
2755 //
2756 // Process the Config string <ConfigResp>
2757 //
2758 Status = ProcessQuestionConfig (Selection, Statement);
2759
2760 if (EFI_ERROR (Status)) {
2761 break;
2762 }
2763
2764 //
2765 // The action button may change some Question value, so refresh the form
2766 //
2767 Selection->Action = UI_ACTION_REFRESH_FORM;
2768 break;
2769
2770 case EFI_IFR_RESET_BUTTON_OP:
2771 //
2772 // Reset Question to default value specified by DefaultId
2773 //
2774 ControlFlag = CfUiDefault;
2775 DefaultId = Statement->DefaultId;
2776 break;
2777
2778 default:
2779 //
2780 // Editable Questions: oneof, ordered list, checkbox, numeric, string, password
2781 //
2782 UpdateKeyHelp (Selection, MenuOption, TRUE);
2783 Status = ProcessOptions (Selection, MenuOption, TRUE, &OptionString);
2784
2785 if (EFI_ERROR (Status)) {
2786 Repaint = TRUE;
2787 NewLine = TRUE;
2788 UpdateKeyHelp (Selection, MenuOption, FALSE);
2789 } else {
2790 Selection->Action = UI_ACTION_REFRESH_FORM;
2791 }
2792
2793 if (OptionString != NULL) {
2794 FreePool (OptionString);
2795 }
2796 break;
2797 }
2798 break;
2799
2800 case CfUiReset:
2801 //
2802 // We come here when someone press ESC
2803 //
2804 ControlFlag = CfCheckSelection;
2805 if (FindNextMenu (Selection, &Repaint, &NewLine)) {
2806 return EFI_SUCCESS;
2807 }
2808 break;
2809
2810 case CfUiLeft:
2811 ControlFlag = CfCheckSelection;
2812 ASSERT(MenuOption != NULL);
2813 if ((MenuOption->ThisTag->Operand == EFI_IFR_DATE_OP) || (MenuOption->ThisTag->Operand == EFI_IFR_TIME_OP)) {
2814 if (MenuOption->Sequence != 0) {
2815 //
2816 // In the middle or tail of the Date/Time op-code set, go left.
2817 //
2818 ASSERT(NewPos != NULL);
2819 NewPos = NewPos->BackLink;
2820 }
2821 }
2822 break;
2823
2824 case CfUiRight:
2825 ControlFlag = CfCheckSelection;
2826 ASSERT(MenuOption != NULL);
2827 if ((MenuOption->ThisTag->Operand == EFI_IFR_DATE_OP) || (MenuOption->ThisTag->Operand == EFI_IFR_TIME_OP)) {
2828 if (MenuOption->Sequence != 2) {
2829 //
2830 // In the middle or tail of the Date/Time op-code set, go left.
2831 //
2832 ASSERT(NewPos != NULL);
2833 NewPos = NewPos->ForwardLink;
2834 }
2835 }
2836 break;
2837
2838 case CfUiUp:
2839 ControlFlag = CfCheckSelection;
2840
2841 SavedListEntry = NewPos;
2842
2843 ASSERT(NewPos != NULL);
2844 //
2845 // Adjust Date/Time position before we advance forward.
2846 //
2847 AdjustDateAndTimePosition (TRUE, &NewPos);
2848 if (NewPos->BackLink != &gMenuOption) {
2849 MenuOption = MENU_OPTION_FROM_LINK (NewPos);
2850 NewLine = TRUE;
2851 NewPos = NewPos->BackLink;
2852
2853 PreviousMenuOption = MENU_OPTION_FROM_LINK (NewPos);
2854 DistanceValue = PreviousMenuOption->Skip;
2855 Difference = 0;
2856 if (MenuOption->Row >= DistanceValue + TopRow) {
2857 Difference = MoveToNextStatement (TRUE, &NewPos, MenuOption->Row - TopRow - DistanceValue);
2858 }
2859 NextMenuOption = MENU_OPTION_FROM_LINK (NewPos);
2860
2861 ASSERT (MenuOption != NULL);
2862 if (Difference < 0) {
2863 //
2864 // We hit the begining MenuOption that can be focused
2865 // so we simply scroll to the top.
2866 //
2867 if (TopOfScreen != gMenuOption.ForwardLink) {
2868 TopOfScreen = gMenuOption.ForwardLink;
2869 Repaint = TRUE;
2870 } else {
2871 //
2872 // Scroll up to the last page when we have arrived at top page.
2873 //
2874 NewPos = &gMenuOption;
2875 TopOfScreen = &gMenuOption;
2876 MenuOption = MENU_OPTION_FROM_LINK (SavedListEntry);
2877 ScreenOperation = UiPageUp;
2878 ControlFlag = CfScreenOperation;
2879 break;
2880 }
2881 } else if (MenuOption->Row < TopRow + DistanceValue + Difference) {
2882 //
2883 // Previous focus MenuOption is above the TopOfScreen, so we need to scroll
2884 //
2885 TopOfScreen = NewPos;
2886 Repaint = TRUE;
2887 SkipValue = 0;
2888 OldSkipValue = 0;
2889 } else if (!IsSelectable (NextMenuOption)) {
2890 //
2891 // Continue to go up until scroll to next page or the selectable option is found.
2892 //
2893 ScreenOperation = UiUp;
2894 ControlFlag = CfScreenOperation;
2895 }
2896
2897 //
2898 // If we encounter a Date/Time op-code set, rewind to the first op-code of the set.
2899 //
2900 AdjustDateAndTimePosition (TRUE, &TopOfScreen);
2901 AdjustDateAndTimePosition (TRUE, &NewPos);
2902 MenuOption = MENU_OPTION_FROM_LINK (SavedListEntry);
2903 UpdateStatusBar (Selection, INPUT_ERROR, MenuOption->ThisTag->QuestionFlags, FALSE);
2904 } else {
2905 //
2906 // Scroll up to the last page.
2907 //
2908 NewPos = &gMenuOption;
2909 TopOfScreen = &gMenuOption;
2910 MenuOption = MENU_OPTION_FROM_LINK (SavedListEntry);
2911 ScreenOperation = UiPageUp;
2912 ControlFlag = CfScreenOperation;
2913 }
2914 break;
2915
2916 case CfUiPageUp:
2917 ControlFlag = CfCheckSelection;
2918
2919 ASSERT(NewPos != NULL);
2920 if (NewPos->BackLink == &gMenuOption) {
2921 NewLine = FALSE;
2922 Repaint = FALSE;
2923 break;
2924 }
2925
2926 NewLine = TRUE;
2927 Repaint = TRUE;
2928 Link = TopOfScreen;
2929 Index = BottomRow;
2930 while ((Index >= TopRow) && (Link->BackLink != &gMenuOption)) {
2931 Link = Link->BackLink;
2932 PreviousMenuOption = MENU_OPTION_FROM_LINK (Link);
2933 if (Index < PreviousMenuOption->Skip) {
2934 Index = 0;
2935 break;
2936 }
2937 Index = Index - PreviousMenuOption->Skip;
2938 }
2939
2940 if ((Link->BackLink == &gMenuOption) && (Index >= TopRow)) {
2941 if (TopOfScreen == &gMenuOption) {
2942 TopOfScreen = gMenuOption.ForwardLink;
2943 NewPos = gMenuOption.BackLink;
2944 MoveToNextStatement (TRUE, &NewPos, BottomRow - TopRow);
2945 Repaint = FALSE;
2946 } else if (TopOfScreen != Link) {
2947 TopOfScreen = Link;
2948 NewPos = Link;
2949 MoveToNextStatement (FALSE, &NewPos, BottomRow - TopRow);
2950 } else {
2951 //
2952 // Finally we know that NewPos is the last MenuOption can be focused.
2953 //
2954 Repaint = FALSE;
2955 NewPos = Link;
2956 MoveToNextStatement (FALSE, &NewPos, BottomRow - TopRow);
2957 }
2958 } else {
2959 if (Index + 1 < TopRow) {
2960 //
2961 // Back up the previous option.
2962 //
2963 Link = Link->ForwardLink;
2964 }
2965
2966 //
2967 // Move to the option in Next page.
2968 //
2969 if (TopOfScreen == &gMenuOption) {
2970 NewPos = gMenuOption.BackLink;
2971 MoveToNextStatement (TRUE, &NewPos, BottomRow - TopRow);
2972 } else {
2973 NewPos = Link;
2974 MoveToNextStatement (FALSE, &NewPos, BottomRow - TopRow);
2975 }
2976
2977 //
2978 // There are more MenuOption needing scrolling up.
2979 //
2980 TopOfScreen = Link;
2981 MenuOption = NULL;
2982 }
2983
2984 //
2985 // If we encounter a Date/Time op-code set, rewind to the first op-code of the set.
2986 // Don't do this when we are already in the first page.
2987 //
2988 AdjustDateAndTimePosition (TRUE, &TopOfScreen);
2989 AdjustDateAndTimePosition (TRUE, &NewPos);
2990 break;
2991
2992 case CfUiPageDown:
2993 ControlFlag = CfCheckSelection;
2994
2995 ASSERT (NewPos != NULL);
2996 if (NewPos->ForwardLink == &gMenuOption) {
2997 NewLine = FALSE;
2998 Repaint = FALSE;
2999 break;
3000 }
3001
3002 NewLine = TRUE;
3003 Repaint = TRUE;
3004 Link = TopOfScreen;
3005 NextMenuOption = MENU_OPTION_FROM_LINK (Link);
3006 Index = TopRow;
3007 while ((Index <= BottomRow) && (Link->ForwardLink != &gMenuOption)) {
3008 Index = Index + NextMenuOption->Skip;
3009 Link = Link->ForwardLink;
3010 NextMenuOption = MENU_OPTION_FROM_LINK (Link);
3011 }
3012
3013 if ((Link->ForwardLink == &gMenuOption) && (Index <= BottomRow)) {
3014 //
3015 // Finally we know that NewPos is the last MenuOption can be focused.
3016 //
3017 Repaint = FALSE;
3018 MoveToNextStatement (TRUE, &Link, Index - TopRow);
3019 } else {
3020 if (Index - 1 > BottomRow) {
3021 //
3022 // Back up the previous option.
3023 //
3024 Link = Link->BackLink;
3025 }
3026 //
3027 // There are more MenuOption needing scrolling down.
3028 //
3029 TopOfScreen = Link;
3030 MenuOption = NULL;
3031 //
3032 // Move to the option in Next page.
3033 //
3034 MoveToNextStatement (FALSE, &Link, BottomRow - TopRow);
3035 }
3036
3037 //
3038 // If we encounter a Date/Time op-code set, rewind to the first op-code of the set.
3039 // Don't do this when we are already in the last page.
3040 //
3041 NewPos = Link;
3042 AdjustDateAndTimePosition (TRUE, &TopOfScreen);
3043 AdjustDateAndTimePosition (TRUE, &NewPos);
3044 break;
3045
3046 case CfUiDown:
3047 ControlFlag = CfCheckSelection;
3048 //
3049 // Since the behavior of hitting the down arrow on a Date/Time op-code is intended
3050 // to be one that progresses to the next set of op-codes, we need to advance to the last
3051 // Date/Time op-code and leave the remaining logic in UiDown intact so the appropriate
3052 // checking can be done. The only other logic we need to introduce is that if a Date/Time
3053 // op-code is the last entry in the menu, we need to rewind back to the first op-code of
3054 // the Date/Time op-code.
3055 //
3056 SavedListEntry = NewPos;
3057 AdjustDateAndTimePosition (FALSE, &NewPos);
3058
3059 if (NewPos->ForwardLink != &gMenuOption) {
3060 MenuOption = MENU_OPTION_FROM_LINK (NewPos);
3061 NewLine = TRUE;
3062 NewPos = NewPos->ForwardLink;
3063
3064 Difference = 0;
3065 if (BottomRow >= MenuOption->Row + MenuOption->Skip) {
3066 Difference = MoveToNextStatement (FALSE, &NewPos, BottomRow - MenuOption->Row - MenuOption->Skip);
3067 //
3068 // We hit the end of MenuOption that can be focused
3069 // so we simply scroll to the first page.
3070 //
3071 if (Difference < 0) {
3072 //
3073 // Scroll to the first page.
3074 //
3075 if (TopOfScreen != gMenuOption.ForwardLink) {
3076 TopOfScreen = gMenuOption.ForwardLink;
3077 Repaint = TRUE;
3078 MenuOption = NULL;
3079 } else {
3080 MenuOption = MENU_OPTION_FROM_LINK (SavedListEntry);
3081 }
3082 NewPos = gMenuOption.ForwardLink;
3083 MoveToNextStatement (FALSE, &NewPos, BottomRow - TopRow);
3084
3085 //
3086 // If we are at the end of the list and sitting on a Date/Time op, rewind to the head.
3087 //
3088 AdjustDateAndTimePosition (TRUE, &TopOfScreen);
3089 AdjustDateAndTimePosition (TRUE, &NewPos);
3090 break;
3091 }
3092 }
3093 NextMenuOption = MENU_OPTION_FROM_LINK (NewPos);
3094
3095 //
3096 // An option might be multi-line, so we need to reflect that data in the overall skip value
3097 //
3098 UpdateOptionSkipLines (Selection, NextMenuOption, &OptionString, (UINTN) SkipValue);
3099 DistanceValue = Difference + NextMenuOption->Skip;
3100
3101 Temp = MenuOption->Row + MenuOption->Skip + DistanceValue - 1;
3102 if ((MenuOption->Row + MenuOption->Skip == BottomRow + 1) &&
3103 (NextMenuOption->ThisTag->Operand == EFI_IFR_DATE_OP ||
3104 NextMenuOption->ThisTag->Operand == EFI_IFR_TIME_OP)
3105 ) {
3106 Temp ++;
3107 }
3108
3109 //
3110 // If we are going to scroll, update TopOfScreen
3111 //
3112 if (Temp > BottomRow) {
3113 do {
3114 //
3115 // Is the current top of screen a zero-advance op-code?
3116 // If so, keep moving forward till we hit a >0 advance op-code
3117 //
3118 SavedMenuOption = MENU_OPTION_FROM_LINK (TopOfScreen);
3119
3120 //
3121 // If bottom op-code is more than one line or top op-code is more than one line
3122 //
3123 if ((DistanceValue > 1) || (MenuOption->Skip > 1)) {
3124 //
3125 // Is the bottom op-code greater than or equal in size to the top op-code?
3126 //
3127 if ((Temp - BottomRow) >= (SavedMenuOption->Skip - OldSkipValue)) {
3128 //
3129 // Skip the top op-code
3130 //
3131 TopOfScreen = TopOfScreen->ForwardLink;
3132 Difference = (Temp - BottomRow) - (SavedMenuOption->Skip - OldSkipValue);
3133
3134 OldSkipValue = Difference;
3135
3136 SavedMenuOption = MENU_OPTION_FROM_LINK (TopOfScreen);
3137
3138 //
3139 // If we have a remainder, skip that many more op-codes until we drain the remainder
3140 //
3141 while (Difference >= (INTN) SavedMenuOption->Skip) {
3142 //
3143 // Since the Difference is greater than or equal to this op-code's skip value, skip it
3144 //
3145 Difference = Difference - (INTN) SavedMenuOption->Skip;
3146 TopOfScreen = TopOfScreen->ForwardLink;
3147 SavedMenuOption = MENU_OPTION_FROM_LINK (TopOfScreen);
3148 }
3149 //
3150 // Since we will act on this op-code in the next routine, and increment the
3151 // SkipValue, set the skips to one less than what is required.
3152 //
3153 SkipValue = Difference - 1;
3154
3155 } else {
3156 //
3157 // Since we will act on this op-code in the next routine, and increment the
3158 // SkipValue, set the skips to one less than what is required.
3159 //
3160 SkipValue = OldSkipValue + (Temp - BottomRow) - 1;
3161 }
3162 } else {
3163 if ((OldSkipValue + 1) == (INTN) SavedMenuOption->Skip) {
3164 TopOfScreen = TopOfScreen->ForwardLink;
3165 break;
3166 } else {
3167 SkipValue = OldSkipValue;
3168 }
3169 }
3170 //
3171 // If the op-code at the top of the screen is more than one line, let's not skip it yet
3172 // Let's set a skip flag to smoothly scroll the top of the screen.
3173 //
3174 if (SavedMenuOption->Skip > 1) {
3175 if (SavedMenuOption == NextMenuOption) {
3176 SkipValue = 0;
3177 } else {
3178 SkipValue++;
3179 }
3180 } else if (SavedMenuOption->Skip == 1) {
3181 SkipValue = 0;
3182 } else {
3183 SkipValue = 0;
3184 TopOfScreen = TopOfScreen->ForwardLink;
3185 }
3186 } while (SavedMenuOption->Skip == 0);
3187
3188 Repaint = TRUE;
3189 OldSkipValue = SkipValue;
3190 } else if (!IsSelectable (NextMenuOption)) {
3191 //
3192 // Continue to go down until scroll to next page or the selectable option is found.
3193 //
3194 ScreenOperation = UiDown;
3195 ControlFlag = CfScreenOperation;
3196 }
3197
3198 MenuOption = MENU_OPTION_FROM_LINK (SavedListEntry);
3199
3200 UpdateStatusBar (Selection, INPUT_ERROR, MenuOption->ThisTag->QuestionFlags, FALSE);
3201
3202 } else {
3203 //
3204 // Scroll to the first page.
3205 //
3206 if (TopOfScreen != gMenuOption.ForwardLink) {
3207 TopOfScreen = gMenuOption.ForwardLink;
3208 Repaint = TRUE;
3209 MenuOption = NULL;
3210 } else {
3211 MenuOption = MENU_OPTION_FROM_LINK (SavedListEntry);
3212 }
3213 NewLine = TRUE;
3214 NewPos = gMenuOption.ForwardLink;
3215 MoveToNextStatement (FALSE, &NewPos, BottomRow - TopRow);
3216 }
3217
3218 //
3219 // If we are at the end of the list and sitting on a Date/Time op, rewind to the head.
3220 //
3221 AdjustDateAndTimePosition (TRUE, &TopOfScreen);
3222 AdjustDateAndTimePosition (TRUE, &NewPos);
3223 break;
3224
3225 case CfUiSave:
3226 ControlFlag = CfCheckSelection;
3227
3228 //
3229 // Submit the form
3230 //
3231 Status = SubmitForm (Selection->FormSet, Selection->Form, FALSE);
3232
3233 if (!EFI_ERROR (Status)) {
3234 ASSERT(MenuOption != NULL);
3235 UpdateStatusBar (Selection, INPUT_ERROR, MenuOption->ThisTag->QuestionFlags, FALSE);
3236 UpdateStatusBar (Selection, NV_UPDATE_REQUIRED, MenuOption->ThisTag->QuestionFlags, FALSE);
3237 } else {
3238 do {
3239 CreateDialog (4, TRUE, 0, NULL, &Key, gEmptyString, gSaveFailed, gPressEnter, gEmptyString);
3240 } while (Key.UnicodeChar != CHAR_CARRIAGE_RETURN);
3241
3242 Repaint = TRUE;
3243 NewLine = TRUE;
3244 }
3245 break;
3246
3247 case CfUiDefault:
3248 ControlFlag = CfCheckSelection;
3249 if (!Selection->FormEditable) {
3250 //
3251 // This Form is not editable, ignore the F9 (reset to default)
3252 //
3253 break;
3254 }
3255
3256 Status = ExtractFormDefault (Selection->FormSet, Selection->Form, DefaultId);
3257
3258 if (!EFI_ERROR (Status)) {
3259 Selection->Action = UI_ACTION_REFRESH_FORM;
3260 Selection->Statement = NULL;
3261
3262 //
3263 // Show NV update flag on status bar
3264 //
3265 UpdateNvInfoInForm(Selection->FormSet, TRUE);
3266 gResetRequired = TRUE;
3267 }
3268 break;
3269
3270 case CfUiNoOperation:
3271 ControlFlag = CfCheckSelection;
3272 break;
3273
3274 case CfExit:
3275 UiFreeRefreshList ();
3276
3277 gST->ConOut->SetAttribute (gST->ConOut, EFI_TEXT_ATTR (EFI_LIGHTGRAY, EFI_BLACK));
3278 gST->ConOut->SetCursorPosition (gST->ConOut, 0, Row + 4);
3279 gST->ConOut->EnableCursor (gST->ConOut, TRUE);
3280 gST->ConOut->OutputString (gST->ConOut, L"\n");
3281
3282 return EFI_SUCCESS;
3283
3284 default:
3285 break;
3286 }
3287 }
3288 }