]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Presentation.c
1. Update SetupBrowser to pass correct buffer value for OrderedList Callback
[mirror_edk2.git] / MdeModulePkg / Universal / SetupBrowserDxe / Presentation.c
1 /** @file
2 Utility functions for UI presentation.
3
4 Copyright (c) 2004 - 2009, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "Setup.h"
16 #include "Ui.h"
17
18 BOOLEAN mHiiPackageListUpdated;
19 UI_MENU_SELECTION *gCurrentSelection;
20
21
22 /**
23 Clear retangle with specified text attribute.
24
25 @param LeftColumn Left column of retangle.
26 @param RightColumn Right column of retangle.
27 @param TopRow Start row of retangle.
28 @param BottomRow End row of retangle.
29 @param TextAttribute The character foreground and background.
30
31 **/
32 VOID
33 ClearLines (
34 IN UINTN LeftColumn,
35 IN UINTN RightColumn,
36 IN UINTN TopRow,
37 IN UINTN BottomRow,
38 IN UINTN TextAttribute
39 )
40 {
41 CHAR16 *Buffer;
42 UINTN Row;
43
44 //
45 // For now, allocate an arbitrarily long buffer
46 //
47 Buffer = AllocateZeroPool (0x10000);
48 ASSERT (Buffer != NULL);
49
50 //
51 // Set foreground and background as defined
52 //
53 gST->ConOut->SetAttribute (gST->ConOut, TextAttribute);
54
55 //
56 // Much faster to buffer the long string instead of print it a character at a time
57 //
58 SetUnicodeMem (Buffer, RightColumn - LeftColumn, L' ');
59
60 //
61 // Clear the desired area with the appropriate foreground/background
62 //
63 for (Row = TopRow; Row <= BottomRow; Row++) {
64 PrintStringAt (LeftColumn, Row, Buffer);
65 }
66
67 gST->ConOut->SetCursorPosition (gST->ConOut, LeftColumn, TopRow);
68
69 FreePool (Buffer);
70 return ;
71 }
72
73 /**
74 Concatenate a narrow string to another string.
75
76 @param Destination The destination string.
77 @param Source The source string. The string to be concatenated.
78 to the end of Destination.
79
80 **/
81 VOID
82 NewStrCat (
83 IN OUT CHAR16 *Destination,
84 IN CHAR16 *Source
85 )
86 {
87 UINTN Length;
88
89 for (Length = 0; Destination[Length] != 0; Length++)
90 ;
91
92 //
93 // We now have the length of the original string
94 // We can safely assume for now that we are concatenating a narrow value to this string.
95 // For instance, the string is "XYZ" and cat'ing ">"
96 // If this assumption changes, we need to make this routine a bit more complex
97 //
98 Destination[Length] = NARROW_CHAR;
99 Length++;
100
101 StrCpy (Destination + Length, Source);
102 }
103
104 /**
105 Count the storage space of a Unicode string.
106
107 This function handles the Unicode string with NARROW_CHAR
108 and WIDE_CHAR control characters. NARROW_HCAR and WIDE_CHAR
109 does not count in the resultant output. If a WIDE_CHAR is
110 hit, then 2 Unicode character will consume an output storage
111 space with size of CHAR16 till a NARROW_CHAR is hit.
112
113 @param String The input string to be counted.
114
115 @return Storage space for the input string.
116
117 **/
118 UINTN
119 GetStringWidth (
120 IN CHAR16 *String
121 )
122 {
123 UINTN Index;
124 UINTN Count;
125 UINTN IncrementValue;
126
127 Index = 0;
128 Count = 0;
129 IncrementValue = 1;
130
131 do {
132 //
133 // Advance to the null-terminator or to the first width directive
134 //
135 for (;
136 (String[Index] != NARROW_CHAR) && (String[Index] != WIDE_CHAR) && (String[Index] != 0);
137 Index++, Count = Count + IncrementValue
138 )
139 ;
140
141 //
142 // We hit the null-terminator, we now have a count
143 //
144 if (String[Index] == 0) {
145 break;
146 }
147 //
148 // We encountered a narrow directive - strip it from the size calculation since it doesn't get printed
149 // and also set the flag that determines what we increment by.(if narrow, increment by 1, if wide increment by 2)
150 //
151 if (String[Index] == NARROW_CHAR) {
152 //
153 // Skip to the next character
154 //
155 Index++;
156 IncrementValue = 1;
157 } else {
158 //
159 // Skip to the next character
160 //
161 Index++;
162 IncrementValue = 2;
163 }
164 } while (String[Index] != 0);
165
166 //
167 // Increment by one to include the null-terminator in the size
168 //
169 Count++;
170
171 return Count * sizeof (CHAR16);
172 }
173
174 /**
175 This function displays the page frame.
176
177 **/
178 VOID
179 DisplayPageFrame (
180 VOID
181 )
182 {
183 UINTN Index;
184 UINT8 Line;
185 UINT8 Alignment;
186 CHAR16 Character;
187 CHAR16 *Buffer;
188 CHAR16 *StrFrontPageBanner;
189 UINTN Row;
190 EFI_SCREEN_DESCRIPTOR LocalScreen;
191 UINT8 RowIdx;
192 UINT8 ColumnIdx;
193
194 ZeroMem (&LocalScreen, sizeof (EFI_SCREEN_DESCRIPTOR));
195 gST->ConOut->QueryMode (gST->ConOut, gST->ConOut->Mode->Mode, &LocalScreen.RightColumn, &LocalScreen.BottomRow);
196 ClearLines (0, LocalScreen.RightColumn, 0, LocalScreen.BottomRow, KEYHELP_BACKGROUND);
197
198 CopyMem (&LocalScreen, &gScreenDimensions, sizeof (EFI_SCREEN_DESCRIPTOR));
199
200 //
201 // For now, allocate an arbitrarily long buffer
202 //
203 Buffer = AllocateZeroPool (0x10000);
204 ASSERT (Buffer != NULL);
205
206 Character = BOXDRAW_HORIZONTAL;
207
208 for (Index = 0; Index + 2 < (LocalScreen.RightColumn - LocalScreen.LeftColumn); Index++) {
209 Buffer[Index] = Character;
210 }
211
212 if (gClassOfVfr == FORMSET_CLASS_FRONT_PAGE) {
213 //
214 // ClearLines(0, LocalScreen.RightColumn, 0, BANNER_HEIGHT-1, BANNER_TEXT | BANNER_BACKGROUND);
215 //
216 ClearLines (
217 LocalScreen.LeftColumn,
218 LocalScreen.RightColumn,
219 LocalScreen.TopRow,
220 FRONT_PAGE_HEADER_HEIGHT - 1 + LocalScreen.TopRow,
221 BANNER_TEXT | BANNER_BACKGROUND
222 );
223 //
224 // for (Line = 0; Line < BANNER_HEIGHT; Line++) {
225 //
226 for (Line = (UINT8) LocalScreen.TopRow; Line < BANNER_HEIGHT + (UINT8) LocalScreen.TopRow; Line++) {
227 //
228 // for (Alignment = 0; Alignment < BANNER_COLUMNS; Alignment++) {
229 //
230 for (Alignment = (UINT8) LocalScreen.LeftColumn;
231 Alignment < BANNER_COLUMNS + (UINT8) LocalScreen.LeftColumn;
232 Alignment++
233 ) {
234 RowIdx = (UINT8) (Line - (UINT8) LocalScreen.TopRow);
235 ColumnIdx = (UINT8) (Alignment - (UINT8) LocalScreen.LeftColumn);
236
237 ASSERT (RowIdx < BANNER_HEIGHT);
238 ASSERT (ColumnIdx < BANNER_COLUMNS);
239
240 if (gBannerData->Banner[RowIdx][ColumnIdx] != 0x0000) {
241 StrFrontPageBanner = GetToken (
242 gBannerData->Banner[RowIdx][ColumnIdx],
243 gFrontPageHandle
244 );
245 } else {
246 continue;
247 }
248
249 switch (Alignment - LocalScreen.LeftColumn) {
250 case 0:
251 //
252 // Handle left column
253 //
254 PrintStringAt (LocalScreen.LeftColumn, Line, StrFrontPageBanner);
255 break;
256
257 case 1:
258 //
259 // Handle center column
260 //
261 PrintStringAt (
262 LocalScreen.LeftColumn + (LocalScreen.RightColumn - LocalScreen.LeftColumn) / 3,
263 Line,
264 StrFrontPageBanner
265 );
266 break;
267
268 case 2:
269 //
270 // Handle right column
271 //
272 PrintStringAt (
273 LocalScreen.LeftColumn + (LocalScreen.RightColumn - LocalScreen.LeftColumn) * 2 / 3,
274 Line,
275 StrFrontPageBanner
276 );
277 break;
278 }
279
280 FreePool (StrFrontPageBanner);
281 }
282 }
283 }
284
285 ClearLines (
286 LocalScreen.LeftColumn,
287 LocalScreen.RightColumn,
288 LocalScreen.BottomRow - STATUS_BAR_HEIGHT - FOOTER_HEIGHT,
289 LocalScreen.BottomRow - STATUS_BAR_HEIGHT - 1,
290 KEYHELP_TEXT | KEYHELP_BACKGROUND
291 );
292
293 if (gClassOfVfr != FORMSET_CLASS_FRONT_PAGE) {
294 ClearLines (
295 LocalScreen.LeftColumn,
296 LocalScreen.RightColumn,
297 LocalScreen.TopRow,
298 LocalScreen.TopRow + NONE_FRONT_PAGE_HEADER_HEIGHT - 1,
299 TITLE_TEXT | TITLE_BACKGROUND
300 );
301 //
302 // Print Top border line
303 // +------------------------------------------------------------------------------+
304 // ? ?
305 // +------------------------------------------------------------------------------+
306 //
307 Character = BOXDRAW_DOWN_RIGHT;
308
309 PrintChar (Character);
310 PrintString (Buffer);
311
312 Character = BOXDRAW_DOWN_LEFT;
313 PrintChar (Character);
314
315 Character = BOXDRAW_VERTICAL;
316 for (Row = LocalScreen.TopRow + 1; Row <= LocalScreen.TopRow + NONE_FRONT_PAGE_HEADER_HEIGHT - 2; Row++) {
317 PrintCharAt (LocalScreen.LeftColumn, Row, Character);
318 PrintCharAt (LocalScreen.RightColumn - 1, Row, Character);
319 }
320
321 Character = BOXDRAW_UP_RIGHT;
322 PrintCharAt (LocalScreen.LeftColumn, LocalScreen.TopRow + NONE_FRONT_PAGE_HEADER_HEIGHT - 1, Character);
323 PrintString (Buffer);
324
325 Character = BOXDRAW_UP_LEFT;
326 PrintChar (Character);
327
328 if (gClassOfVfr == FORMSET_CLASS_PLATFORM_SETUP) {
329 //
330 // Print Bottom border line
331 // +------------------------------------------------------------------------------+
332 // ? ?
333 // +------------------------------------------------------------------------------+
334 //
335 Character = BOXDRAW_DOWN_RIGHT;
336 PrintCharAt (LocalScreen.LeftColumn, LocalScreen.BottomRow - STATUS_BAR_HEIGHT - FOOTER_HEIGHT, Character);
337
338 PrintString (Buffer);
339
340 Character = BOXDRAW_DOWN_LEFT;
341 PrintChar (Character);
342 Character = BOXDRAW_VERTICAL;
343 for (Row = LocalScreen.BottomRow - STATUS_BAR_HEIGHT - FOOTER_HEIGHT + 1;
344 Row <= LocalScreen.BottomRow - STATUS_BAR_HEIGHT - 2;
345 Row++
346 ) {
347 PrintCharAt (LocalScreen.LeftColumn, Row, Character);
348 PrintCharAt (LocalScreen.RightColumn - 1, Row, Character);
349 }
350
351 Character = BOXDRAW_UP_RIGHT;
352 PrintCharAt (LocalScreen.LeftColumn, LocalScreen.BottomRow - STATUS_BAR_HEIGHT - 1, Character);
353
354 PrintString (Buffer);
355
356 Character = BOXDRAW_UP_LEFT;
357 PrintChar (Character);
358 }
359 }
360
361 FreePool (Buffer);
362
363 }
364
365
366 /**
367 Evaluate all expressions in a Form.
368
369 @param FormSet FormSet this Form belongs to.
370 @param Form The Form.
371
372 @retval EFI_SUCCESS The expression evaluated successfuly
373
374 **/
375 EFI_STATUS
376 EvaluateFormExpressions (
377 IN FORM_BROWSER_FORMSET *FormSet,
378 IN FORM_BROWSER_FORM *Form
379 )
380 {
381 EFI_STATUS Status;
382 LIST_ENTRY *Link;
383 FORM_EXPRESSION *Expression;
384
385 Link = GetFirstNode (&Form->ExpressionListHead);
386 while (!IsNull (&Form->ExpressionListHead, Link)) {
387 Expression = FORM_EXPRESSION_FROM_LINK (Link);
388 Link = GetNextNode (&Form->ExpressionListHead, Link);
389
390 if (Expression->Type == EFI_HII_EXPRESSION_INCONSISTENT_IF ||
391 Expression->Type == EFI_HII_EXPRESSION_NO_SUBMIT_IF) {
392 //
393 // Postpone Form validation to Question editing or Form submiting
394 //
395 continue;
396 }
397
398 Status = EvaluateExpression (FormSet, Form, Expression);
399 if (EFI_ERROR (Status)) {
400 return Status;
401 }
402 }
403
404 return EFI_SUCCESS;
405 }
406
407 /*
408 +------------------------------------------------------------------------------+
409 ? Setup Page ?
410 +------------------------------------------------------------------------------+
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428 +------------------------------------------------------------------------------+
429 ?F1=Scroll Help F9=Reset to Defaults F10=Save and Exit ?
430 | ^"=Move Highlight <Spacebar> Toggles Checkbox Esc=Discard Changes |
431 +------------------------------------------------------------------------------+
432 */
433
434 /**
435
436
437 Display form and wait for user to select one menu option, then return it.
438
439 @param Selection On input, Selection tell setup browser the information
440 about the Selection, form and formset to be displayed.
441 On output, Selection return the screen item that is selected
442 by user.
443 @retval EFI_SUCESSS This function always return successfully for now.
444
445 **/
446 EFI_STATUS
447 DisplayForm (
448 IN OUT UI_MENU_SELECTION *Selection
449 )
450 {
451 CHAR16 *StringPtr;
452 UINT16 MenuItemCount;
453 EFI_HII_HANDLE Handle;
454 BOOLEAN Suppress;
455 EFI_SCREEN_DESCRIPTOR LocalScreen;
456 UINT16 Width;
457 UINTN ArrayEntry;
458 CHAR16 *OutputString;
459 LIST_ENTRY *Link;
460 FORM_BROWSER_STATEMENT *Statement;
461 UINT16 NumberOfLines;
462 EFI_STATUS Status;
463 UI_MENU_OPTION *MenuOption;
464
465 Handle = Selection->Handle;
466 MenuItemCount = 0;
467 ArrayEntry = 0;
468 OutputString = NULL;
469
470 UiInitMenu ();
471
472 CopyMem (&LocalScreen, &gScreenDimensions, sizeof (EFI_SCREEN_DESCRIPTOR));
473
474 StringPtr = GetToken (Selection->Form->FormTitle, Handle);
475
476 if (gClassOfVfr != FORMSET_CLASS_FRONT_PAGE) {
477 gST->ConOut->SetAttribute (gST->ConOut, TITLE_TEXT | TITLE_BACKGROUND);
478 PrintStringAt (
479 (LocalScreen.RightColumn + LocalScreen.LeftColumn - GetStringWidth (StringPtr) / 2) / 2,
480 LocalScreen.TopRow + 1,
481 StringPtr
482 );
483 }
484
485 //
486 // Remove Buffer allocated for StringPtr after it has been used.
487 //
488 FreePool (StringPtr);
489
490 //
491 // Evaluate all the Expressions in this Form
492 //
493 Status = EvaluateFormExpressions (Selection->FormSet, Selection->Form);
494 if (EFI_ERROR (Status)) {
495 return Status;
496 }
497
498 Selection->FormEditable = FALSE;
499 Link = GetFirstNode (&Selection->Form->StatementListHead);
500 while (!IsNull (&Selection->Form->StatementListHead, Link)) {
501 Statement = FORM_BROWSER_STATEMENT_FROM_LINK (Link);
502
503 if (Statement->SuppressExpression != NULL) {
504 Suppress = Statement->SuppressExpression->Result.Value.b;
505 } else {
506 Suppress = FALSE;
507 }
508
509 if (Statement->DisableExpression != NULL) {
510 Suppress = (BOOLEAN) (Suppress || Statement->DisableExpression->Result.Value.b);
511 }
512
513 if (!Suppress) {
514 StringPtr = GetToken (Statement->Prompt, Handle);
515
516 Width = GetWidth (Statement, Handle);
517
518 NumberOfLines = 1;
519 ArrayEntry = 0;
520 for (; GetLineByWidth (StringPtr, Width, &ArrayEntry, &OutputString) != 0x0000;) {
521 //
522 // If there is more string to process print on the next row and increment the Skip value
523 //
524 if (StrLen (&StringPtr[ArrayEntry]) != 0) {
525 NumberOfLines++;
526 }
527
528 FreePool (OutputString);
529 }
530
531 //
532 // We are NOT!! removing this StringPtr buffer via FreePool since it is being used in the menuoptions, we will do
533 // it in UiFreeMenu.
534 //
535 MenuOption = UiAddMenuOption (StringPtr, Selection->Handle, Statement, NumberOfLines, MenuItemCount);
536 MenuItemCount++;
537
538 if (MenuOption->IsQuestion && !MenuOption->ReadOnly) {
539 //
540 // At least one item is not readonly, this Form is considered as editable
541 //
542 Selection->FormEditable = TRUE;
543 }
544 }
545
546 Link = GetNextNode (&Selection->Form->StatementListHead, Link);
547 }
548
549 Status = UiDisplayMenu (Selection);
550
551 UiFreeMenu ();
552
553 return Status;
554 }
555
556 /**
557 Initialize the HII String Token to the correct values.
558
559 **/
560 VOID
561 InitializeBrowserStrings (
562 VOID
563 )
564 {
565 gFunctionNineString = GetToken (STRING_TOKEN (FUNCTION_NINE_STRING), gHiiHandle);
566 gFunctionTenString = GetToken (STRING_TOKEN (FUNCTION_TEN_STRING), gHiiHandle);
567 gEnterString = GetToken (STRING_TOKEN (ENTER_STRING), gHiiHandle);
568 gEnterCommitString = GetToken (STRING_TOKEN (ENTER_COMMIT_STRING), gHiiHandle);
569 gEnterEscapeString = GetToken (STRING_TOKEN (ENTER_ESCAPE_STRING), gHiiHandle);
570 gEscapeString = GetToken (STRING_TOKEN (ESCAPE_STRING), gHiiHandle);
571 gSaveFailed = GetToken (STRING_TOKEN (SAVE_FAILED), gHiiHandle);
572 gMoveHighlight = GetToken (STRING_TOKEN (MOVE_HIGHLIGHT), gHiiHandle);
573 gMakeSelection = GetToken (STRING_TOKEN (MAKE_SELECTION), gHiiHandle);
574 gDecNumericInput = GetToken (STRING_TOKEN (DEC_NUMERIC_INPUT), gHiiHandle);
575 gHexNumericInput = GetToken (STRING_TOKEN (HEX_NUMERIC_INPUT), gHiiHandle);
576 gToggleCheckBox = GetToken (STRING_TOKEN (TOGGLE_CHECK_BOX), gHiiHandle);
577 gPromptForData = GetToken (STRING_TOKEN (PROMPT_FOR_DATA), gHiiHandle);
578 gPromptForPassword = GetToken (STRING_TOKEN (PROMPT_FOR_PASSWORD), gHiiHandle);
579 gPromptForNewPassword = GetToken (STRING_TOKEN (PROMPT_FOR_NEW_PASSWORD), gHiiHandle);
580 gConfirmPassword = GetToken (STRING_TOKEN (CONFIRM_PASSWORD), gHiiHandle);
581 gConfirmError = GetToken (STRING_TOKEN (CONFIRM_ERROR), gHiiHandle);
582 gPassowordInvalid = GetToken (STRING_TOKEN (PASSWORD_INVALID), gHiiHandle);
583 gPressEnter = GetToken (STRING_TOKEN (PRESS_ENTER), gHiiHandle);
584 gEmptyString = GetToken (STRING_TOKEN (EMPTY_STRING), gHiiHandle);
585 gAreYouSure = GetToken (STRING_TOKEN (ARE_YOU_SURE), gHiiHandle);
586 gYesResponse = GetToken (STRING_TOKEN (ARE_YOU_SURE_YES), gHiiHandle);
587 gNoResponse = GetToken (STRING_TOKEN (ARE_YOU_SURE_NO), gHiiHandle);
588 gMiniString = GetToken (STRING_TOKEN (MINI_STRING), gHiiHandle);
589 gPlusString = GetToken (STRING_TOKEN (PLUS_STRING), gHiiHandle);
590 gMinusString = GetToken (STRING_TOKEN (MINUS_STRING), gHiiHandle);
591 gAdjustNumber = GetToken (STRING_TOKEN (ADJUST_NUMBER), gHiiHandle);
592 gSaveChanges = GetToken (STRING_TOKEN (SAVE_CHANGES), gHiiHandle);
593 gOptionMismatch = GetToken (STRING_TOKEN (OPTION_MISMATCH), gHiiHandle);
594 gFormSuppress = GetToken (STRING_TOKEN (FORM_SUPPRESSED), gHiiHandle);
595 return ;
596 }
597
598 /**
599 Free up the resource allocated for all strings required
600 by Setup Browser.
601
602 **/
603 VOID
604 FreeBrowserStrings (
605 VOID
606 )
607 {
608 FreePool (gFunctionNineString);
609 FreePool (gFunctionTenString);
610 FreePool (gEnterString);
611 FreePool (gEnterCommitString);
612 FreePool (gEnterEscapeString);
613 FreePool (gEscapeString);
614 FreePool (gMoveHighlight);
615 FreePool (gMakeSelection);
616 FreePool (gDecNumericInput);
617 FreePool (gHexNumericInput);
618 FreePool (gToggleCheckBox);
619 FreePool (gPromptForData);
620 FreePool (gPromptForPassword);
621 FreePool (gPromptForNewPassword);
622 FreePool (gConfirmPassword);
623 FreePool (gPassowordInvalid);
624 FreePool (gConfirmError);
625 FreePool (gPressEnter);
626 FreePool (gEmptyString);
627 FreePool (gAreYouSure);
628 FreePool (gYesResponse);
629 FreePool (gNoResponse);
630 FreePool (gMiniString);
631 FreePool (gPlusString);
632 FreePool (gMinusString);
633 FreePool (gAdjustNumber);
634 FreePool (gSaveChanges);
635 FreePool (gOptionMismatch);
636 FreePool (gFormSuppress);
637 return ;
638 }
639
640
641 /**
642 Update key's help imformation.
643
644 @param Selection Tell setup browser the information about the Selection
645 @param MenuOption The Menu option
646 @param Selected Whether or not a tag be selected
647
648 **/
649 VOID
650 UpdateKeyHelp (
651 IN UI_MENU_SELECTION *Selection,
652 IN UI_MENU_OPTION *MenuOption,
653 IN BOOLEAN Selected
654 )
655 {
656 UINTN SecCol;
657 UINTN ThdCol;
658 UINTN LeftColumnOfHelp;
659 UINTN RightColumnOfHelp;
660 UINTN TopRowOfHelp;
661 UINTN BottomRowOfHelp;
662 UINTN StartColumnOfHelp;
663 EFI_SCREEN_DESCRIPTOR LocalScreen;
664 FORM_BROWSER_STATEMENT *Statement;
665
666 CopyMem (&LocalScreen, &gScreenDimensions, sizeof (EFI_SCREEN_DESCRIPTOR));
667
668 SecCol = LocalScreen.LeftColumn + (LocalScreen.RightColumn - LocalScreen.LeftColumn) / 3;
669 ThdCol = LocalScreen.LeftColumn + (LocalScreen.RightColumn - LocalScreen.LeftColumn) * 2 / 3;
670
671 StartColumnOfHelp = LocalScreen.LeftColumn + 2;
672 LeftColumnOfHelp = LocalScreen.LeftColumn + 1;
673 RightColumnOfHelp = LocalScreen.RightColumn - 2;
674 TopRowOfHelp = LocalScreen.BottomRow - 4;
675 BottomRowOfHelp = LocalScreen.BottomRow - 3;
676
677 gST->ConOut->SetAttribute (gST->ConOut, KEYHELP_TEXT | KEYHELP_BACKGROUND);
678
679 Statement = MenuOption->ThisTag;
680 switch (Statement->Operand) {
681 case EFI_IFR_ORDERED_LIST_OP:
682 case EFI_IFR_ONE_OF_OP:
683 case EFI_IFR_NUMERIC_OP:
684 case EFI_IFR_TIME_OP:
685 case EFI_IFR_DATE_OP:
686 ClearLines (LeftColumnOfHelp, RightColumnOfHelp, TopRowOfHelp, BottomRowOfHelp, KEYHELP_TEXT | KEYHELP_BACKGROUND);
687
688 if (!Selected) {
689 if (gClassOfVfr == FORMSET_CLASS_PLATFORM_SETUP) {
690 if (Selection->FormEditable) {
691 PrintStringAt (SecCol, TopRowOfHelp, gFunctionNineString);
692 PrintStringAt (ThdCol, TopRowOfHelp, gFunctionTenString);
693 }
694 PrintStringAt (ThdCol, BottomRowOfHelp, gEscapeString);
695 }
696
697 if ((Statement->Operand == EFI_IFR_DATE_OP) ||
698 (Statement->Operand == EFI_IFR_TIME_OP)) {
699 PrintAt (
700 StartColumnOfHelp,
701 BottomRowOfHelp,
702 L"%c%c%c%c%s",
703 ARROW_UP,
704 ARROW_DOWN,
705 ARROW_RIGHT,
706 ARROW_LEFT,
707 gMoveHighlight
708 );
709 PrintStringAt (SecCol, BottomRowOfHelp, gAdjustNumber);
710 } else {
711 PrintAt (StartColumnOfHelp, BottomRowOfHelp, L"%c%c%s", ARROW_UP, ARROW_DOWN, gMoveHighlight);
712 if (Statement->Operand == EFI_IFR_NUMERIC_OP && Statement->Step != 0) {
713 PrintStringAt (SecCol, BottomRowOfHelp, gAdjustNumber);
714 } else {
715 PrintStringAt (SecCol, BottomRowOfHelp, gEnterString);
716 }
717 }
718 } else {
719 PrintStringAt (SecCol, BottomRowOfHelp, gEnterCommitString);
720
721 //
722 // If it is a selected numeric with manual input, display different message
723 //
724 if ((Statement->Operand == EFI_IFR_NUMERIC_OP) && (Statement->Step == 0)) {
725 PrintStringAt (
726 SecCol,
727 TopRowOfHelp,
728 ((Statement->Flags & EFI_IFR_DISPLAY_UINT_HEX) == EFI_IFR_DISPLAY_UINT_HEX) ? gHexNumericInput : gDecNumericInput
729 );
730 } else if (Statement->Operand != EFI_IFR_ORDERED_LIST_OP) {
731 PrintAt (StartColumnOfHelp, BottomRowOfHelp, L"%c%c%s", ARROW_UP, ARROW_DOWN, gMoveHighlight);
732 }
733
734 if (Statement->Operand == EFI_IFR_ORDERED_LIST_OP) {
735 PrintStringAt (StartColumnOfHelp, TopRowOfHelp, gPlusString);
736 PrintStringAt (ThdCol, TopRowOfHelp, gMinusString);
737 }
738
739 PrintStringAt (ThdCol, BottomRowOfHelp, gEnterEscapeString);
740 }
741 break;
742
743 case EFI_IFR_CHECKBOX_OP:
744 ClearLines (LeftColumnOfHelp, RightColumnOfHelp, TopRowOfHelp, BottomRowOfHelp, KEYHELP_TEXT | KEYHELP_BACKGROUND);
745
746 if (gClassOfVfr == FORMSET_CLASS_PLATFORM_SETUP) {
747 if (Selection->FormEditable) {
748 PrintStringAt (SecCol, TopRowOfHelp, gFunctionNineString);
749 PrintStringAt (ThdCol, TopRowOfHelp, gFunctionTenString);
750 }
751 PrintStringAt (ThdCol, BottomRowOfHelp, gEscapeString);
752 }
753
754 PrintAt (StartColumnOfHelp, BottomRowOfHelp, L"%c%c%s", ARROW_UP, ARROW_DOWN, gMoveHighlight);
755 PrintStringAt (SecCol, BottomRowOfHelp, gToggleCheckBox);
756 break;
757
758 case EFI_IFR_REF_OP:
759 case EFI_IFR_PASSWORD_OP:
760 case EFI_IFR_STRING_OP:
761 case EFI_IFR_TEXT_OP:
762 case EFI_IFR_ACTION_OP:
763 case EFI_IFR_RESET_BUTTON_OP:
764 ClearLines (LeftColumnOfHelp, RightColumnOfHelp, TopRowOfHelp, BottomRowOfHelp, KEYHELP_TEXT | KEYHELP_BACKGROUND);
765
766 if (!Selected) {
767 if (gClassOfVfr == FORMSET_CLASS_PLATFORM_SETUP) {
768 if (Selection->FormEditable) {
769 PrintStringAt (SecCol, TopRowOfHelp, gFunctionNineString);
770 PrintStringAt (ThdCol, TopRowOfHelp, gFunctionTenString);
771 }
772 PrintStringAt (ThdCol, BottomRowOfHelp, gEscapeString);
773 }
774
775 PrintAt (StartColumnOfHelp, BottomRowOfHelp, L"%c%c%s", ARROW_UP, ARROW_DOWN, gMoveHighlight);
776 if (Statement->Operand != EFI_IFR_TEXT_OP) {
777 PrintStringAt (SecCol, BottomRowOfHelp, gEnterString);
778 }
779 } else {
780 if (Statement->Operand != EFI_IFR_REF_OP) {
781 PrintStringAt (
782 (LocalScreen.RightColumn - GetStringWidth (gEnterCommitString) / 2) / 2,
783 BottomRowOfHelp,
784 gEnterCommitString
785 );
786 PrintStringAt (ThdCol, BottomRowOfHelp, gEnterEscapeString);
787 }
788 }
789 break;
790
791 default:
792 break;
793 }
794 }
795
796 /**
797 Functions which are registered to receive notification of
798 database events have this prototype. The actual event is encoded
799 in NotifyType. The following table describes how PackageType,
800 PackageGuid, Handle, and Package are used for each of the
801 notification types.
802
803 @param PackageType Package type of the notification.
804
805 @param PackageGuid If PackageType is
806 EFI_HII_PACKAGE_TYPE_GUID, then this is
807 the pointer to the GUID from the Guid
808 field of EFI_HII_PACKAGE_GUID_HEADER.
809 Otherwise, it must be NULL.
810
811 @param Package Points to the package referred to by the
812 notification Handle The handle of the package
813 list which contains the specified package.
814
815 @param Handle The HII handle.
816
817 @param NotifyType The type of change concerning the
818 database. See
819 EFI_HII_DATABASE_NOTIFY_TYPE.
820
821 **/
822 EFI_STATUS
823 EFIAPI
824 FormUpdateNotify (
825 IN UINT8 PackageType,
826 IN CONST EFI_GUID *PackageGuid,
827 IN CONST EFI_HII_PACKAGE_HEADER *Package,
828 IN EFI_HII_HANDLE Handle,
829 IN EFI_HII_DATABASE_NOTIFY_TYPE NotifyType
830 )
831 {
832 mHiiPackageListUpdated = TRUE;
833
834 return EFI_SUCCESS;
835 }
836
837 /**
838 The worker function that send the displays to the screen. On output,
839 the selection made by user is returned.
840
841 @param Selection On input, Selection tell setup browser the information
842 about the Selection, form and formset to be displayed.
843 On output, Selection return the screen item that is selected
844 by user.
845
846 @retval EFI_SUCCESS The page is displayed successfully.
847 @return Other value if the page failed to be diplayed.
848
849 **/
850 EFI_STATUS
851 SetupBrowser (
852 IN OUT UI_MENU_SELECTION *Selection
853 )
854 {
855 EFI_STATUS Status;
856 LIST_ENTRY *Link;
857 EFI_BROWSER_ACTION_REQUEST ActionRequest;
858 EFI_HANDLE NotifyHandle;
859 EFI_HII_VALUE *HiiValue;
860 EFI_IFR_TYPE_VALUE *TypeValue;
861 FORM_BROWSER_STATEMENT *Statement;
862 EFI_HII_CONFIG_ACCESS_PROTOCOL *ConfigAccess;
863 FORM_BROWSER_FORMSET *FormSet;
864 EFI_INPUT_KEY Key;
865
866 gMenuRefreshHead = NULL;
867 gResetRequired = FALSE;
868 FormSet = Selection->FormSet;
869
870 //
871 // Register notify for Form package update
872 //
873 Status = mHiiDatabase->RegisterPackageNotify (
874 mHiiDatabase,
875 EFI_HII_PACKAGE_FORMS,
876 NULL,
877 FormUpdateNotify,
878 EFI_HII_DATABASE_NOTIFY_REMOVE_PACK,
879 &NotifyHandle
880 );
881 if (EFI_ERROR (Status)) {
882 return Status;
883 }
884
885 //
886 // Before display the formset, invoke ConfigAccess.Callback() with EFI_BROWSER_ACTION_FORM_OPEN
887 //
888 ConfigAccess = Selection->FormSet->ConfigAccess;
889 if ((ConfigAccess != NULL) && (Selection->Action != UI_ACTION_REFRESH_FORMSET)) {
890 ActionRequest = EFI_BROWSER_ACTION_REQUEST_NONE;
891 mHiiPackageListUpdated = FALSE;
892 Status = ConfigAccess->Callback (
893 ConfigAccess,
894 EFI_BROWSER_ACTION_FORM_OPEN,
895 0,
896 EFI_IFR_TYPE_UNDEFINED,
897 NULL,
898 &ActionRequest
899 );
900
901 if (!EFI_ERROR (Status)) {
902 switch (ActionRequest) {
903 case EFI_BROWSER_ACTION_REQUEST_RESET:
904 gResetRequired = TRUE;
905 break;
906
907 case EFI_BROWSER_ACTION_REQUEST_SUBMIT:
908 //
909 // Till now there is no uncommitted data, so ignore this request
910 //
911 break;
912
913 case EFI_BROWSER_ACTION_REQUEST_EXIT:
914 Selection->Action = UI_ACTION_EXIT;
915 break;
916
917 default:
918 break;
919 }
920 }
921
922 if (mHiiPackageListUpdated) {
923 //
924 // IFR is updated during callback, force to reparse the IFR binary
925 //
926 mHiiPackageListUpdated = FALSE;
927 Selection->Action = UI_ACTION_REFRESH_FORMSET;
928 goto Done;
929 }
930 }
931
932 //
933 // Initialize current settings of Questions in this FormSet
934 //
935 Status = InitializeCurrentSetting (Selection->FormSet);
936 if (EFI_ERROR (Status)) {
937 Selection->Action = UI_ACTION_EXIT;
938 goto Done;
939 }
940
941 do {
942 //
943 // Initialize Selection->Form
944 //
945 if (Selection->FormId == 0) {
946 //
947 // Zero FormId indicates display the first Form in a FormSet
948 //
949 Link = GetFirstNode (&Selection->FormSet->FormListHead);
950
951 Selection->Form = FORM_BROWSER_FORM_FROM_LINK (Link);
952 Selection->FormId = Selection->Form->FormId;
953 } else {
954 Selection->Form = IdToForm (Selection->FormSet, Selection->FormId);
955 }
956
957 if (Selection->Form == NULL) {
958 //
959 // No Form to display
960 //
961 return EFI_NOT_FOUND;
962 }
963
964 //
965 // Check Form is suppressed.
966 //
967 if (Selection->Form->SuppressExpression != NULL) {
968 Status = EvaluateExpression (Selection->FormSet, Selection->Form, Selection->Form->SuppressExpression);
969 if (EFI_ERROR (Status)) {
970 return Status;
971 }
972
973 if (Selection->Form->SuppressExpression->Result.Value.b) {
974 //
975 // Form is suppressed.
976 //
977 do {
978 CreateDialog (4, TRUE, 0, NULL, &Key, gEmptyString, gFormSuppress, gPressEnter, gEmptyString);
979 } while (Key.UnicodeChar != CHAR_CARRIAGE_RETURN);
980
981 return EFI_NOT_FOUND;
982 }
983 }
984
985 //
986 // Load Questions' Value for display
987 //
988 Status = LoadFormSetConfig (Selection->FormSet);
989 if (EFI_ERROR (Status)) {
990 return Status;
991 }
992
993 //
994 // Displays the Header and Footer borders
995 //
996 DisplayPageFrame ();
997
998 //
999 // Display form
1000 //
1001 Status = DisplayForm (Selection);
1002 if (EFI_ERROR (Status)) {
1003 return Status;
1004 }
1005
1006 //
1007 // Check Selected Statement (if press ESC, Selection->Statement will be NULL)
1008 //
1009 Statement = Selection->Statement;
1010 if (Statement != NULL) {
1011 if ((Statement->QuestionFlags & EFI_IFR_FLAG_RESET_REQUIRED) == EFI_IFR_FLAG_RESET_REQUIRED) {
1012 gResetRequired = TRUE;
1013 }
1014
1015 //
1016 // Reset FormPackage update flag
1017 //
1018 mHiiPackageListUpdated = FALSE;
1019
1020 if (((Statement->QuestionFlags & EFI_IFR_FLAG_CALLBACK) == EFI_IFR_FLAG_CALLBACK) && (Statement->Operand != EFI_IFR_PASSWORD_OP)) {
1021 ActionRequest = EFI_BROWSER_ACTION_REQUEST_NONE;
1022
1023 if (ConfigAccess == NULL) {
1024 return EFI_UNSUPPORTED;
1025 }
1026
1027 HiiValue = &Statement->HiiValue;
1028 TypeValue = &HiiValue->Value;
1029 if (HiiValue->Type == EFI_IFR_TYPE_STRING) {
1030 //
1031 // Create String in HII database for Configuration Driver to retrieve
1032 //
1033 HiiValue->Value.string = NewString ((CHAR16 *) Statement->BufferValue, Selection->FormSet->HiiHandle);
1034 } else if (HiiValue->Type == EFI_IFR_TYPE_BUFFER) {
1035 //
1036 // For OrderedList, passing in the value buffer to Callback()
1037 //
1038 TypeValue = (EFI_IFR_TYPE_VALUE *) Statement->BufferValue;
1039 }
1040
1041 Status = ConfigAccess->Callback (
1042 ConfigAccess,
1043 EFI_BROWSER_ACTION_CHANGING,
1044 Statement->QuestionId,
1045 HiiValue->Type,
1046 TypeValue,
1047 &ActionRequest
1048 );
1049
1050 if (HiiValue->Type == EFI_IFR_TYPE_STRING) {
1051 //
1052 // Clean the String in HII Database
1053 //
1054 DeleteString (HiiValue->Value.string, Selection->FormSet->HiiHandle);
1055 }
1056
1057 if (!EFI_ERROR (Status)) {
1058 switch (ActionRequest) {
1059 case EFI_BROWSER_ACTION_REQUEST_RESET:
1060 gResetRequired = TRUE;
1061 break;
1062
1063 case EFI_BROWSER_ACTION_REQUEST_SUBMIT:
1064 SubmitForm (Selection->FormSet, Selection->Form);
1065 break;
1066
1067 case EFI_BROWSER_ACTION_REQUEST_EXIT:
1068 Selection->Action = UI_ACTION_EXIT;
1069 gNvUpdateRequired = FALSE;
1070 break;
1071
1072 default:
1073 break;
1074 }
1075 } else if (Status != EFI_UNSUPPORTED) {
1076 //
1077 // Callback return error status other than EFI_UNSUPPORTED
1078 //
1079 if (Statement->Operand == EFI_IFR_REF_OP) {
1080 //
1081 // Cross reference will not be taken
1082 //
1083 Selection->FormId = Selection->Form->FormId;
1084 Selection->QuestionId = 0;
1085 }
1086 }
1087 }
1088
1089 //
1090 // Check whether Form Package has been updated during Callback
1091 //
1092 if (mHiiPackageListUpdated && (Selection->Action == UI_ACTION_REFRESH_FORM)) {
1093 //
1094 // Force to reparse IFR binary of target Formset
1095 //
1096 mHiiPackageListUpdated = FALSE;
1097 Selection->Action = UI_ACTION_REFRESH_FORMSET;
1098 }
1099 }
1100 } while (Selection->Action == UI_ACTION_REFRESH_FORM);
1101
1102 //
1103 // Before exit the formset, invoke ConfigAccess.Callback() with EFI_BROWSER_ACTION_FORM_CLOSE
1104 //
1105 if ((ConfigAccess != NULL) && (Selection->Action == UI_ACTION_EXIT)) {
1106 ActionRequest = EFI_BROWSER_ACTION_REQUEST_NONE;
1107 Status = ConfigAccess->Callback (
1108 ConfigAccess,
1109 EFI_BROWSER_ACTION_FORM_CLOSE,
1110 0,
1111 EFI_IFR_TYPE_UNDEFINED,
1112 NULL,
1113 &ActionRequest
1114 );
1115
1116 if (!EFI_ERROR (Status)) {
1117 switch (ActionRequest) {
1118 case EFI_BROWSER_ACTION_REQUEST_RESET:
1119 gResetRequired = TRUE;
1120 break;
1121
1122 case EFI_BROWSER_ACTION_REQUEST_SUBMIT:
1123 SubmitForm (Selection->FormSet, Selection->Form);
1124 break;
1125
1126 case EFI_BROWSER_ACTION_REQUEST_EXIT:
1127 gNvUpdateRequired = FALSE;
1128 break;
1129
1130 default:
1131 break;
1132 }
1133 }
1134 }
1135
1136 //
1137 // Record the old formset
1138 //
1139 if (gOldFormSet != NULL) {
1140 DestroyFormSet (gOldFormSet);
1141 }
1142 gOldFormSet = FormSet;
1143
1144 Done:
1145 //
1146 // Unregister notify for Form package update
1147 //
1148 Status = mHiiDatabase->UnregisterPackageNotify (
1149 mHiiDatabase,
1150 NotifyHandle
1151 );
1152 return Status;
1153 }