]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Presentation.c
Add SuppressIf form support in SetupBrowser driver.
[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 FORM_BROWSER_STATEMENT *Statement;
861 EFI_HII_CONFIG_ACCESS_PROTOCOL *ConfigAccess;
862 FORM_BROWSER_FORMSET *FormSet;
863 EFI_INPUT_KEY Key;
864
865 gMenuRefreshHead = NULL;
866 gResetRequired = FALSE;
867 FormSet = Selection->FormSet;
868
869 //
870 // Register notify for Form package update
871 //
872 Status = mHiiDatabase->RegisterPackageNotify (
873 mHiiDatabase,
874 EFI_HII_PACKAGE_FORMS,
875 NULL,
876 FormUpdateNotify,
877 EFI_HII_DATABASE_NOTIFY_REMOVE_PACK,
878 &NotifyHandle
879 );
880 if (EFI_ERROR (Status)) {
881 return Status;
882 }
883
884 //
885 // Before display the formset, invoke ConfigAccess.Callback() with EFI_BROWSER_ACTION_FORM_OPEN
886 //
887 ConfigAccess = Selection->FormSet->ConfigAccess;
888 if ((ConfigAccess != NULL) && (Selection->Action != UI_ACTION_REFRESH_FORMSET)) {
889 ActionRequest = EFI_BROWSER_ACTION_REQUEST_NONE;
890 mHiiPackageListUpdated = FALSE;
891 Status = ConfigAccess->Callback (
892 ConfigAccess,
893 EFI_BROWSER_ACTION_FORM_OPEN,
894 0,
895 EFI_IFR_TYPE_UNDEFINED,
896 NULL,
897 &ActionRequest
898 );
899
900 if (!EFI_ERROR (Status)) {
901 switch (ActionRequest) {
902 case EFI_BROWSER_ACTION_REQUEST_RESET:
903 gResetRequired = TRUE;
904 break;
905
906 case EFI_BROWSER_ACTION_REQUEST_SUBMIT:
907 //
908 // Till now there is no uncommitted data, so ignore this request
909 //
910 break;
911
912 case EFI_BROWSER_ACTION_REQUEST_EXIT:
913 Selection->Action = UI_ACTION_EXIT;
914 break;
915
916 default:
917 break;
918 }
919 }
920
921 if (mHiiPackageListUpdated) {
922 //
923 // IFR is updated during callback, force to reparse the IFR binary
924 //
925 mHiiPackageListUpdated = FALSE;
926 Selection->Action = UI_ACTION_REFRESH_FORMSET;
927 goto Done;
928 }
929 }
930
931 //
932 // Initialize current settings of Questions in this FormSet
933 //
934 Status = InitializeCurrentSetting (Selection->FormSet);
935 if (EFI_ERROR (Status)) {
936 Selection->Action = UI_ACTION_EXIT;
937 goto Done;
938 }
939
940 do {
941 //
942 // Initialize Selection->Form
943 //
944 if (Selection->FormId == 0) {
945 //
946 // Zero FormId indicates display the first Form in a FormSet
947 //
948 Link = GetFirstNode (&Selection->FormSet->FormListHead);
949
950 Selection->Form = FORM_BROWSER_FORM_FROM_LINK (Link);
951 Selection->FormId = Selection->Form->FormId;
952 } else {
953 Selection->Form = IdToForm (Selection->FormSet, Selection->FormId);
954 }
955
956 if (Selection->Form == NULL) {
957 //
958 // No Form to display
959 //
960 return EFI_NOT_FOUND;
961 }
962
963 //
964 // Check Form is suppressed.
965 //
966 if (Selection->Form->SuppressExpression != NULL) {
967 Status = EvaluateExpression (Selection->FormSet, Selection->Form, Selection->Form->SuppressExpression);
968 if (EFI_ERROR (Status)) {
969 return Status;
970 }
971
972 if (Selection->Form->SuppressExpression->Result.Value.b) {
973 //
974 // Form is suppressed.
975 //
976 do {
977 CreateDialog (4, TRUE, 0, NULL, &Key, gEmptyString, gFormSuppress, gPressEnter, gEmptyString);
978 } while (Key.UnicodeChar != CHAR_CARRIAGE_RETURN);
979
980 return EFI_NOT_FOUND;
981 }
982 }
983
984 //
985 // Load Questions' Value for display
986 //
987 Status = LoadFormSetConfig (Selection->FormSet);
988 if (EFI_ERROR (Status)) {
989 return Status;
990 }
991
992 //
993 // Displays the Header and Footer borders
994 //
995 DisplayPageFrame ();
996
997 //
998 // Display form
999 //
1000 Status = DisplayForm (Selection);
1001 if (EFI_ERROR (Status)) {
1002 return Status;
1003 }
1004
1005 //
1006 // Check Selected Statement (if press ESC, Selection->Statement will be NULL)
1007 //
1008 Statement = Selection->Statement;
1009 if (Statement != NULL) {
1010 if ((Statement->QuestionFlags & EFI_IFR_FLAG_RESET_REQUIRED) == EFI_IFR_FLAG_RESET_REQUIRED) {
1011 gResetRequired = TRUE;
1012 }
1013
1014 //
1015 // Reset FormPackage update flag
1016 //
1017 mHiiPackageListUpdated = FALSE;
1018
1019 if (((Statement->QuestionFlags & EFI_IFR_FLAG_CALLBACK) == EFI_IFR_FLAG_CALLBACK) && (Statement->Operand != EFI_IFR_PASSWORD_OP)) {
1020 ActionRequest = EFI_BROWSER_ACTION_REQUEST_NONE;
1021
1022 HiiValue = &Statement->HiiValue;
1023 if (HiiValue->Type == EFI_IFR_TYPE_STRING) {
1024 //
1025 // Create String in HII database for Configuration Driver to retrieve
1026 //
1027 HiiValue->Value.string = NewString ((CHAR16 *) Statement->BufferValue, Selection->FormSet->HiiHandle);
1028 }
1029
1030 if (ConfigAccess == NULL) {
1031 return EFI_UNSUPPORTED;
1032 }
1033 Status = ConfigAccess->Callback (
1034 ConfigAccess,
1035 EFI_BROWSER_ACTION_CHANGING,
1036 Statement->QuestionId,
1037 HiiValue->Type,
1038 &HiiValue->Value,
1039 &ActionRequest
1040 );
1041
1042 if (HiiValue->Type == EFI_IFR_TYPE_STRING) {
1043 //
1044 // Clean the String in HII Database
1045 //
1046 DeleteString (HiiValue->Value.string, Selection->FormSet->HiiHandle);
1047 }
1048
1049 if (!EFI_ERROR (Status)) {
1050 switch (ActionRequest) {
1051 case EFI_BROWSER_ACTION_REQUEST_RESET:
1052 gResetRequired = TRUE;
1053 break;
1054
1055 case EFI_BROWSER_ACTION_REQUEST_SUBMIT:
1056 SubmitForm (Selection->FormSet, Selection->Form);
1057 break;
1058
1059 case EFI_BROWSER_ACTION_REQUEST_EXIT:
1060 Selection->Action = UI_ACTION_EXIT;
1061 gNvUpdateRequired = FALSE;
1062 break;
1063
1064 default:
1065 break;
1066 }
1067 } else if (Status != EFI_UNSUPPORTED) {
1068 //
1069 // Callback return error status other than EFI_UNSUPPORTED
1070 //
1071 if (Statement->Operand == EFI_IFR_REF_OP) {
1072 //
1073 // Cross reference will not be taken
1074 //
1075 Selection->FormId = Selection->Form->FormId;
1076 Selection->QuestionId = 0;
1077 }
1078 }
1079 }
1080
1081 //
1082 // Check whether Form Package has been updated during Callback
1083 //
1084 if (mHiiPackageListUpdated && (Selection->Action == UI_ACTION_REFRESH_FORM)) {
1085 //
1086 // Force to reparse IFR binary of target Formset
1087 //
1088 mHiiPackageListUpdated = FALSE;
1089 Selection->Action = UI_ACTION_REFRESH_FORMSET;
1090 }
1091 }
1092 } while (Selection->Action == UI_ACTION_REFRESH_FORM);
1093
1094 //
1095 // Before exit the formset, invoke ConfigAccess.Callback() with EFI_BROWSER_ACTION_FORM_CLOSE
1096 //
1097 if ((ConfigAccess != NULL) && (Selection->Action == UI_ACTION_EXIT)) {
1098 ActionRequest = EFI_BROWSER_ACTION_REQUEST_NONE;
1099 Status = ConfigAccess->Callback (
1100 ConfigAccess,
1101 EFI_BROWSER_ACTION_FORM_CLOSE,
1102 0,
1103 EFI_IFR_TYPE_UNDEFINED,
1104 NULL,
1105 &ActionRequest
1106 );
1107
1108 if (!EFI_ERROR (Status)) {
1109 switch (ActionRequest) {
1110 case EFI_BROWSER_ACTION_REQUEST_RESET:
1111 gResetRequired = TRUE;
1112 break;
1113
1114 case EFI_BROWSER_ACTION_REQUEST_SUBMIT:
1115 SubmitForm (Selection->FormSet, Selection->Form);
1116 break;
1117
1118 case EFI_BROWSER_ACTION_REQUEST_EXIT:
1119 gNvUpdateRequired = FALSE;
1120 break;
1121
1122 default:
1123 break;
1124 }
1125 }
1126 }
1127
1128 //
1129 // Record the old formset
1130 //
1131 if (gOldFormSet != NULL) {
1132 DestroyFormSet (gOldFormSet);
1133 }
1134 gOldFormSet = FormSet;
1135
1136 Done:
1137 //
1138 // Unregister notify for Form package update
1139 //
1140 Status = mHiiDatabase->UnregisterPackageNotify (
1141 mHiiDatabase,
1142 NotifyHandle
1143 );
1144 return Status;
1145 }