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