]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Setup.h
Enable new "ref5" opcode in browser.
[mirror_edk2.git] / MdeModulePkg / Universal / SetupBrowserDxe / Setup.h
1 /** @file
2 Private MACRO, structure and function definitions for Setup Browser module.
3
4 Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13
14 **/
15
16 #ifndef _SETUP_H_
17 #define _SETUP_H_
18
19
20 #include <PiDxe.h>
21
22 #include <Protocol/SimpleTextOut.h>
23 #include <Protocol/SimpleTextIn.h>
24 #include <Protocol/FormBrowser2.h>
25 #include <Protocol/DevicePath.h>
26 #include <Protocol/UnicodeCollation.h>
27 #include <Protocol/HiiConfigAccess.h>
28 #include <Protocol/HiiConfigRouting.h>
29 #include <Protocol/HiiDatabase.h>
30 #include <Protocol/HiiString.h>
31 #include <Protocol/UserManager.h>
32
33 #include <Guid/MdeModuleHii.h>
34 #include <Guid/HiiPlatformSetupFormset.h>
35 #include <Guid/HiiFormMapMethodGuid.h>
36
37 #include <Library/PrintLib.h>
38 #include <Library/DebugLib.h>
39 #include <Library/BaseMemoryLib.h>
40 #include <Library/UefiRuntimeServicesTableLib.h>
41 #include <Library/UefiDriverEntryPoint.h>
42 #include <Library/UefiBootServicesTableLib.h>
43 #include <Library/BaseLib.h>
44 #include <Library/MemoryAllocationLib.h>
45 #include <Library/HiiLib.h>
46 #include <Library/PcdLib.h>
47 #include <Library/DevicePathLib.h>
48
49 #include "Colors.h"
50
51 //
52 // This is the generated header file which includes whatever needs to be exported (strings + IFR)
53 //
54
55 extern UINT8 SetupBrowserStrings[];
56
57 //
58 // Screen definitions
59 //
60 #define BANNER_HEIGHT 6
61 #define BANNER_COLUMNS 3
62 #define BANNER_LEFT_COLUMN_INDENT 1
63
64 #define FRONT_PAGE_HEADER_HEIGHT 6
65 #define NONE_FRONT_PAGE_HEADER_HEIGHT 3
66 #define LEFT_SKIPPED_COLUMNS 3
67 #define FOOTER_HEIGHT 4
68 #define STATUS_BAR_HEIGHT 1
69 #define SCROLL_ARROW_HEIGHT 1
70 #define POPUP_PAD_SPACE_COUNT 5
71 #define POPUP_FRAME_WIDTH 2
72
73 //
74 // Definition for function key setting
75 //
76 #define NONE_FUNCTION_KEY_SETTING 0
77 #define DEFAULT_FUNCTION_KEY_SETTING (FUNCTION_NINE | FUNCTION_TEN)
78
79 #define FUNCTION_NINE (1 << 2)
80 #define FUNCTION_TEN (1 << 3)
81
82 typedef struct {
83 EFI_GUID FormSetGuid;
84 UINTN KeySetting;
85 } FUNCTIION_KEY_SETTING;
86
87 //
88 // Character definitions
89 //
90 #define CHAR_SPACE 0x0020
91 #define UPPER_LOWER_CASE_OFFSET 0x20
92
93 //
94 // Time definitions
95 //
96 #define ONE_SECOND 10000000
97
98 //
99 // Display definitions
100 //
101 #define LEFT_HYPER_DELIMITER L'<'
102 #define RIGHT_HYPER_DELIMITER L'>'
103
104 #define LEFT_ONEOF_DELIMITER L'<'
105 #define RIGHT_ONEOF_DELIMITER L'>'
106
107 #define LEFT_NUMERIC_DELIMITER L'['
108 #define RIGHT_NUMERIC_DELIMITER L']'
109
110 #define LEFT_CHECKBOX_DELIMITER L'['
111 #define RIGHT_CHECKBOX_DELIMITER L']'
112
113 #define CHECK_ON L'X'
114 #define CHECK_OFF L' '
115
116 #define TIME_SEPARATOR L':'
117 #define DATE_SEPARATOR L'/'
118
119 #define YES_ANSWER L'Y'
120 #define NO_ANSWER L'N'
121
122 //
123 // This is the Input Error Message
124 //
125 #define INPUT_ERROR 1
126
127 //
128 // This is the NV RAM update required Message
129 //
130 #define NV_UPDATE_REQUIRED 2
131
132 //
133 // Refresh the Status Bar with flags
134 //
135 #define REFRESH_STATUS_BAR 0xff
136
137 //
138 // Incremental string lenght of ConfigRequest
139 //
140 #define CONFIG_REQUEST_STRING_INCREMENTAL 1024
141
142 //
143 // HII value compare result
144 //
145 #define HII_VALUE_UNDEFINED 0
146 #define HII_VALUE_EQUAL 1
147 #define HII_VALUE_LESS_THAN 2
148 #define HII_VALUE_GREATER_THAN 3
149
150 //
151 // Incremental size of stack for expression
152 //
153 #define EXPRESSION_STACK_SIZE_INCREMENT 0x100
154
155 #define EFI_IFR_SPECIFICATION_VERSION (UINT16) (((EFI_SYSTEM_TABLE_REVISION >> 16) << 8) | (((EFI_SYSTEM_TABLE_REVISION & 0xFFFF) / 10) << 4) | ((EFI_SYSTEM_TABLE_REVISION & 0xFFFF) % 10))
156
157
158 #define SETUP_DRIVER_SIGNATURE SIGNATURE_32 ('F', 'B', 'D', 'V')
159 typedef struct {
160 UINT32 Signature;
161
162 EFI_HANDLE Handle;
163
164 //
165 // Produced protocol
166 //
167 EFI_FORM_BROWSER2_PROTOCOL FormBrowser2;
168
169 } SETUP_DRIVER_PRIVATE_DATA;
170
171 typedef struct {
172 EFI_STRING_ID Banner[BANNER_HEIGHT][BANNER_COLUMNS];
173 } BANNER_DATA;
174
175 //
176 // IFR relative definition
177 //
178 #define EFI_HII_EXPRESSION_INCONSISTENT_IF 0
179 #define EFI_HII_EXPRESSION_NO_SUBMIT_IF 1
180 #define EFI_HII_EXPRESSION_GRAY_OUT_IF 2
181 #define EFI_HII_EXPRESSION_SUPPRESS_IF 3
182 #define EFI_HII_EXPRESSION_DISABLE_IF 4
183 #define EFI_HII_EXPRESSION_VALUE 5
184 #define EFI_HII_EXPRESSION_RULE 6
185 #define EFI_HII_EXPRESSION_READ 7
186 #define EFI_HII_EXPRESSION_WRITE 8
187
188 #define EFI_HII_VARSTORE_BUFFER 0
189 #define EFI_HII_VARSTORE_NAME_VALUE 1
190 #define EFI_HII_VARSTORE_EFI_VARIABLE 2
191
192 #define FORM_INCONSISTENT_VALIDATION 0
193 #define FORM_NO_SUBMIT_VALIDATION 1
194
195 #define FORMSET_CLASS_PLATFORM_SETUP 0x0001
196 #define FORMSET_CLASS_FRONT_PAGE 0x0002
197
198 typedef struct {
199 UINT8 Type;
200 EFI_IFR_TYPE_VALUE Value;
201 } EFI_HII_VALUE;
202
203 #define NAME_VALUE_NODE_SIGNATURE SIGNATURE_32 ('N', 'V', 'S', 'T')
204
205 typedef struct {
206 UINTN Signature;
207 LIST_ENTRY Link;
208 CHAR16 *Name;
209 CHAR16 *Value;
210 CHAR16 *EditValue;
211 } NAME_VALUE_NODE;
212
213 #define NAME_VALUE_NODE_FROM_LINK(a) CR (a, NAME_VALUE_NODE, Link, NAME_VALUE_NODE_SIGNATURE)
214
215 #define FORMSET_STORAGE_SIGNATURE SIGNATURE_32 ('F', 'S', 'T', 'G')
216
217 typedef struct {
218 UINTN Signature;
219 LIST_ENTRY Link;
220
221 UINT8 Type; // Storage type
222
223 UINT16 VarStoreId;
224 EFI_GUID Guid;
225
226 CHAR16 *Name; // For EFI_IFR_VARSTORE
227 UINT16 Size;
228 UINT8 *Buffer;
229 UINT8 *EditBuffer; // Edit copy for Buffer Storage
230
231 LIST_ENTRY NameValueListHead; // List of NAME_VALUE_NODE
232
233 UINT32 Attributes; // For EFI_IFR_VARSTORE_EFI: EFI Variable attribute
234
235 CHAR16 *ConfigHdr; // <ConfigHdr>
236 CHAR16 *ConfigRequest; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
237 UINTN ElementCount; // Number of <RequestElement> in the <ConfigRequest>
238 UINTN SpareStrLen; // Spare length of ConfigRequest string buffer
239 } FORMSET_STORAGE;
240
241 #define FORMSET_STORAGE_FROM_LINK(a) CR (a, FORMSET_STORAGE, Link, FORMSET_STORAGE_SIGNATURE)
242
243 typedef union {
244 EFI_STRING_ID VarName;
245 UINT16 VarOffset;
246 } VAR_STORE_INFO;
247
248 #define EXPRESSION_OPCODE_SIGNATURE SIGNATURE_32 ('E', 'X', 'O', 'P')
249
250 typedef struct {
251 UINTN Signature;
252 LIST_ENTRY Link;
253
254 UINT8 Operand;
255
256 UINT8 Format; // For EFI_IFR_TO_STRING, EFI_IFR_FIND
257 UINT8 Flags; // For EFI_IFR_SPAN
258 UINT8 RuleId; // For EFI_IFR_RULE_REF
259
260 EFI_HII_VALUE Value; // For EFI_IFR_EQ_ID_VAL, EFI_IFR_UINT64, EFI_IFR_UINT32, EFI_IFR_UINT16, EFI_IFR_UINT8, EFI_IFR_STRING_REF1
261
262 EFI_QUESTION_ID QuestionId; // For EFI_IFR_EQ_ID_ID, EFI_IFR_EQ_ID_VAL_LIST, EFI_IFR_QUESTION_REF1
263 EFI_QUESTION_ID QuestionId2;
264
265 UINT16 ListLength; // For EFI_IFR_EQ_ID_VAL_LIST
266 UINT16 *ValueList;
267
268 EFI_STRING_ID DevicePath; // For EFI_IFR_QUESTION_REF3_2, EFI_IFR_QUESTION_REF3_3
269 EFI_GUID Guid;
270
271 FORMSET_STORAGE *VarStorage; // For EFI_IFR_SET, EFI_IFR_GET
272 VAR_STORE_INFO VarStoreInfo;// For EFI_IFR_SET, EFI_IFR_GET
273 UINT8 ValueType; // For EFI_IFR_SET, EFI_IFR_GET
274 UINT8 ValueWidth; // For EFI_IFR_SET, EFI_IFR_GET
275 CHAR16 *ValueName; // For EFI_IFR_SET, EFI_IFR_GET
276 LIST_ENTRY MapExpressionList; // nested expressions inside of Map opcode.
277 } EXPRESSION_OPCODE;
278
279 #define EXPRESSION_OPCODE_FROM_LINK(a) CR (a, EXPRESSION_OPCODE, Link, EXPRESSION_OPCODE_SIGNATURE)
280
281 #define FORM_EXPRESSION_SIGNATURE SIGNATURE_32 ('F', 'E', 'X', 'P')
282
283 typedef struct {
284 UINTN Signature;
285 LIST_ENTRY Link;
286
287 UINT8 Type; // Type for this expression
288
289 UINT8 RuleId; // For EFI_IFR_RULE only
290 EFI_STRING_ID Error; // For EFI_IFR_NO_SUBMIT_IF, EFI_IFR_INCONSISTENT_IF only
291
292 EFI_HII_VALUE Result; // Expression evaluation result
293
294 LIST_ENTRY OpCodeListHead; // OpCodes consist of this expression (EXPRESSION_OPCODE)
295 } FORM_EXPRESSION;
296
297 #define FORM_EXPRESSION_FROM_LINK(a) CR (a, FORM_EXPRESSION, Link, FORM_EXPRESSION_SIGNATURE)
298
299 #define QUESTION_DEFAULT_SIGNATURE SIGNATURE_32 ('Q', 'D', 'F', 'T')
300
301 typedef struct {
302 UINTN Signature;
303 LIST_ENTRY Link;
304
305 UINT16 DefaultId;
306 EFI_HII_VALUE Value; // Default value
307
308 FORM_EXPRESSION *ValueExpression; // Not-NULL indicates default value is provided by EFI_IFR_VALUE
309 } QUESTION_DEFAULT;
310
311 #define QUESTION_DEFAULT_FROM_LINK(a) CR (a, QUESTION_DEFAULT, Link, QUESTION_DEFAULT_SIGNATURE)
312
313 #define QUESTION_OPTION_SIGNATURE SIGNATURE_32 ('Q', 'O', 'P', 'T')
314
315 typedef struct {
316 UINTN Signature;
317 LIST_ENTRY Link;
318
319 EFI_STRING_ID Text;
320 UINT8 Flags;
321 EFI_HII_VALUE Value;
322 EFI_IMAGE_ID ImageId;
323
324 FORM_EXPRESSION *SuppressExpression; // Non-NULL indicates nested inside of SuppressIf
325 } QUESTION_OPTION;
326
327 #define QUESTION_OPTION_FROM_LINK(a) CR (a, QUESTION_OPTION, Link, QUESTION_OPTION_SIGNATURE)
328
329 #define FORM_BROWSER_STATEMENT_SIGNATURE SIGNATURE_32 ('F', 'S', 'T', 'A')
330
331 typedef struct {
332 UINTN Signature;
333 LIST_ENTRY Link;
334
335 UINT8 Operand; // The operand (first byte) of this Statement or Question
336
337 //
338 // Statement Header
339 //
340 EFI_STRING_ID Prompt;
341 EFI_STRING_ID Help;
342 EFI_STRING_ID TextTwo; // For EFI_IFR_TEXT
343
344 //
345 // Question Header
346 //
347 EFI_QUESTION_ID QuestionId; // The value of zero is reserved
348 EFI_VARSTORE_ID VarStoreId; // A value of zero indicates no variable storage
349 FORMSET_STORAGE *Storage;
350 VAR_STORE_INFO VarStoreInfo;
351 UINT16 StorageWidth;
352 UINT8 QuestionFlags;
353 CHAR16 *VariableName; // Name/Value or EFI Variable name
354 CHAR16 *BlockName; // Buffer storage block name: "OFFSET=...WIDTH=..."
355
356 EFI_HII_VALUE HiiValue; // Edit copy for checkbox, numberic, oneof
357 UINT8 *BufferValue; // Edit copy for string, password, orderedlist
358 UINT8 ValueType; // Data type for orderedlist value array
359
360 //
361 // OpCode specific members
362 //
363 UINT8 Flags; // for EFI_IFR_CHECKBOX, EFI_IFR_DATE, EFI_IFR_NUMERIC, EFI_IFR_ONE_OF,
364 // EFI_IFR_ORDERED_LIST, EFI_IFR_STRING,EFI_IFR_SUBTITLE,EFI_IFR_TIME, EFI_IFR_BANNER
365 UINT8 MaxContainers; // for EFI_IFR_ORDERED_LIST
366
367 UINT16 BannerLineNumber; // for EFI_IFR_BANNER, 1-based line number
368 EFI_STRING_ID QuestionConfig; // for EFI_IFR_ACTION, if 0 then no configuration string will be processed
369
370 UINT64 Minimum; // for EFI_IFR_ONE_OF/EFI_IFR_NUMERIC, it's Min/Max value
371 UINT64 Maximum; // for EFI_IFR_STRING/EFI_IFR_PASSWORD, it's Min/Max length
372 UINT64 Step;
373
374 EFI_DEFAULT_ID DefaultId; // for EFI_IFR_RESET_BUTTON
375 EFI_GUID RefreshGuid; // for EFI_IFR_REFRESH_ID
376
377 //
378 // Get from IFR parsing
379 //
380 FORM_EXPRESSION *ValueExpression; // nested EFI_IFR_VALUE, provide Question value and indicate Question is ReadOnly
381 LIST_ENTRY DefaultListHead; // nested EFI_IFR_DEFAULT list (QUESTION_DEFAULT), provide default values
382 LIST_ENTRY OptionListHead; // nested EFI_IFR_ONE_OF_OPTION list (QUESTION_OPTION)
383
384 EFI_IMAGE_ID ImageId; // nested EFI_IFR_IMAGE
385 UINT8 RefreshInterval; // nested EFI_IFR_REFRESH, refresh interval(in seconds) for Question value, 0 means no refresh
386 BOOLEAN InSubtitle; // nesting inside of EFI_IFR_SUBTITLE
387
388 LIST_ENTRY InconsistentListHead;// nested inconsistent expression list (FORM_EXPRESSION)
389 LIST_ENTRY NoSubmitListHead; // nested nosubmit expression list (FORM_EXPRESSION)
390 FORM_EXPRESSION *GrayOutExpression; // nesting inside of GrayOutIf
391 FORM_EXPRESSION *SuppressExpression; // nesting inside of SuppressIf
392 FORM_EXPRESSION *DisableExpression; // nesting inside of DisableIf
393
394 FORM_EXPRESSION *ReadExpression; // nested EFI_IFR_READ, provide this question value by read expression.
395 FORM_EXPRESSION *WriteExpression; // nested EFI_IFR_WRITE, evaluate write expression after this question value is set.
396 } FORM_BROWSER_STATEMENT;
397
398 #define FORM_BROWSER_STATEMENT_FROM_LINK(a) CR (a, FORM_BROWSER_STATEMENT, Link, FORM_BROWSER_STATEMENT_SIGNATURE)
399
400 #define FORM_BROWSER_CONFIG_REQUEST_SIGNATURE SIGNATURE_32 ('F', 'C', 'R', 'S')
401 typedef struct {
402 UINTN Signature;
403 LIST_ENTRY Link;
404
405 CHAR16 *ConfigRequest; // <ConfigRequest> = <ConfigHdr> + <RequestElement>
406 UINTN ElementCount; // Number of <RequestElement> in the <ConfigRequest>
407 UINTN SpareStrLen;
408
409 FORMSET_STORAGE *Storage;
410 } FORM_BROWSER_CONFIG_REQUEST;
411 #define FORM_BROWSER_CONFIG_REQUEST_FROM_LINK(a) CR (a, FORM_BROWSER_CONFIG_REQUEST, Link, FORM_BROWSER_CONFIG_REQUEST_SIGNATURE)
412
413 #define FORM_BROWSER_FORM_SIGNATURE SIGNATURE_32 ('F', 'F', 'R', 'M')
414 #define STANDARD_MAP_FORM_TYPE 0x01
415
416 typedef struct {
417 UINTN Signature;
418 LIST_ENTRY Link;
419
420 UINT16 FormId; // FormId of normal form or formmap form.
421 EFI_STRING_ID FormTitle; // FormTile of normal form, or FormMapMethod title of formmap form.
422 UINT16 FormType; // Specific form type for the different form.
423
424 EFI_IMAGE_ID ImageId;
425
426 BOOLEAN ModalForm; // Whether this is a modal form.
427
428 BOOLEAN NvUpdateRequired; // Whether this form has NV update request.
429
430 LIST_ENTRY ExpressionListHead; // List of Expressions (FORM_EXPRESSION)
431 LIST_ENTRY StatementListHead; // List of Statements and Questions (FORM_BROWSER_STATEMENT)
432 LIST_ENTRY ConfigRequestHead; // List of configreques for all storage.
433 FORM_EXPRESSION *SuppressExpression; // nesting inside of SuppressIf
434 } FORM_BROWSER_FORM;
435
436 #define FORM_BROWSER_FORM_FROM_LINK(a) CR (a, FORM_BROWSER_FORM, Link, FORM_BROWSER_FORM_SIGNATURE)
437
438 #define FORMSET_DEFAULTSTORE_SIGNATURE SIGNATURE_32 ('F', 'D', 'F', 'S')
439
440 typedef struct {
441 UINTN Signature;
442 LIST_ENTRY Link;
443
444 UINT16 DefaultId;
445 EFI_STRING_ID DefaultName;
446 } FORMSET_DEFAULTSTORE;
447
448 #define FORMSET_DEFAULTSTORE_FROM_LINK(a) CR (a, FORMSET_DEFAULTSTORE, Link, FORMSET_DEFAULTSTORE_SIGNATURE)
449
450 typedef struct {
451 EFI_HII_HANDLE HiiHandle;
452 EFI_HANDLE DriverHandle;
453 EFI_HII_CONFIG_ACCESS_PROTOCOL *ConfigAccess;
454 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
455
456 UINTN IfrBinaryLength;
457 UINT8 *IfrBinaryData;
458
459 EFI_GUID Guid;
460 EFI_STRING_ID FormSetTitle;
461 EFI_STRING_ID Help;
462 UINT8 NumberOfClassGuid;
463 EFI_GUID ClassGuid[3]; // Up to three ClassGuid
464 UINT16 Class; // Tiano extended Class code
465 UINT16 SubClass; // Tiano extended Subclass code
466 EFI_IMAGE_ID ImageId;
467
468 FORM_BROWSER_STATEMENT *StatementBuffer; // Buffer for all Statements and Questions
469 EXPRESSION_OPCODE *ExpressionBuffer; // Buffer for all Expression OpCode
470
471 LIST_ENTRY StorageListHead; // Storage list (FORMSET_STORAGE)
472 LIST_ENTRY DefaultStoreListHead; // DefaultStore list (FORMSET_DEFAULTSTORE)
473 LIST_ENTRY FormListHead; // Form list (FORM_BROWSER_FORM)
474 LIST_ENTRY ExpressionListHead; // List of Expressions (FORM_EXPRESSION)
475 } FORM_BROWSER_FORMSET;
476
477 #define BROWSER_CONTEXT_SIGNATURE SIGNATURE_32 ('B', 'C', 'T', 'X')
478
479 typedef struct {
480 UINTN Signature;
481 LIST_ENTRY Link;
482
483 //
484 // Globals defined in Setup.c
485 //
486 BANNER_DATA *BannerData;
487 UINTN ClassOfVfr;
488 UINTN FunctionKeySetting;
489 BOOLEAN ResetRequired;
490 UINT16 Direction;
491 EFI_SCREEN_DESCRIPTOR ScreenDimensions;
492 CHAR16 *FunctionNineString;
493 CHAR16 *FunctionTenString;
494 CHAR16 *EnterString;
495 CHAR16 *EnterCommitString;
496 CHAR16 *EnterEscapeString;
497 CHAR16 *EscapeString;
498 CHAR16 *SaveFailed;
499 CHAR16 *MoveHighlight;
500 CHAR16 *MakeSelection;
501 CHAR16 *DecNumericInput;
502 CHAR16 *HexNumericInput;
503 CHAR16 *ToggleCheckBox;
504 CHAR16 *PromptForData;
505 CHAR16 *PromptForPassword;
506 CHAR16 *PromptForNewPassword;
507 CHAR16 *ConfirmPassword;
508 CHAR16 *ConfirmError;
509 CHAR16 *PassowordInvalid;
510 CHAR16 *PressEnter;
511 CHAR16 *EmptyString;
512 CHAR16 *AreYouSure;
513 CHAR16 *YesResponse;
514 CHAR16 *NoResponse;
515 CHAR16 *MiniString;
516 CHAR16 *PlusString;
517 CHAR16 *MinusString;
518 CHAR16 *AdjustNumber;
519 CHAR16 *SaveChanges;
520 CHAR16 *OptionMismatch;
521 CHAR16 *FormSuppress;
522 CHAR16 PromptBlockWidth;
523 CHAR16 OptionBlockWidth;
524 CHAR16 HelpBlockWidth;
525 FORM_BROWSER_FORMSET *OldFormSet;
526
527 //
528 // Globals defined in Ui.c
529 //
530 LIST_ENTRY MenuOption;
531 VOID *MenuRefreshHead;
532 } BROWSER_CONTEXT;
533
534 #define BROWSER_CONTEXT_FROM_LINK(a) CR (a, BROWSER_CONTEXT, Link, BROWSER_CONTEXT_SIGNATURE)
535
536 extern EFI_HII_DATABASE_PROTOCOL *mHiiDatabase;
537 extern EFI_HII_STRING_PROTOCOL *mHiiString;
538 extern EFI_HII_CONFIG_ROUTING_PROTOCOL *mHiiConfigRouting;
539
540 extern BANNER_DATA *gBannerData;
541 extern EFI_HII_HANDLE gFrontPageHandle;
542 extern UINTN gClassOfVfr;
543 extern UINTN gFunctionKeySetting;
544 extern BOOLEAN gResetRequired;
545 extern EFI_HII_HANDLE gHiiHandle;
546 extern UINT16 gDirection;
547 extern EFI_SCREEN_DESCRIPTOR gScreenDimensions;
548
549 extern FORM_BROWSER_FORMSET *gOldFormSet;
550
551 //
552 // Browser Global Strings
553 //
554 extern CHAR16 *gFunctionNineString;
555 extern CHAR16 *gFunctionTenString;
556 extern CHAR16 *gEnterString;
557 extern CHAR16 *gEnterCommitString;
558 extern CHAR16 *gEnterEscapeString;
559 extern CHAR16 *gEscapeString;
560 extern CHAR16 *gSaveFailed;
561 extern CHAR16 *gMoveHighlight;
562 extern CHAR16 *gMakeSelection;
563 extern CHAR16 *gDecNumericInput;
564 extern CHAR16 *gHexNumericInput;
565 extern CHAR16 *gToggleCheckBox;
566 extern CHAR16 *gPromptForData;
567 extern CHAR16 *gPromptForPassword;
568 extern CHAR16 *gPromptForNewPassword;
569 extern CHAR16 *gConfirmPassword;
570 extern CHAR16 *gConfirmError;
571 extern CHAR16 *gPassowordInvalid;
572 extern CHAR16 *gPressEnter;
573 extern CHAR16 *gEmptyString;
574 extern CHAR16 *gAreYouSure;
575 extern CHAR16 *gYesResponse;
576 extern CHAR16 *gNoResponse;
577 extern CHAR16 *gMiniString;
578 extern CHAR16 *gPlusString;
579 extern CHAR16 *gMinusString;
580 extern CHAR16 *gAdjustNumber;
581 extern CHAR16 *gSaveChanges;
582 extern CHAR16 *gOptionMismatch;
583 extern CHAR16 *gFormSuppress;
584
585 extern CHAR16 gPromptBlockWidth;
586 extern CHAR16 gOptionBlockWidth;
587 extern CHAR16 gHelpBlockWidth;
588
589 extern EFI_GUID gZeroGuid;
590 extern EFI_GUID gTianoHiiIfrGuid;
591
592 #include "Ui.h"
593 //
594 // Global Procedure Defines
595 //
596
597 /**
598 Initialize the HII String Token to the correct values.
599
600 **/
601 VOID
602 InitializeBrowserStrings (
603 VOID
604 );
605
606 /**
607 Prints a unicode string to the default console,
608 using L"%s" format.
609
610 @param String String pointer.
611
612 @return Length of string printed to the console
613
614 **/
615 UINTN
616 PrintString (
617 IN CHAR16 *String
618 );
619
620 /**
621 Prints a chracter to the default console,
622 using L"%c" format.
623
624 @param Character Character to print.
625
626 @return Length of string printed to the console.
627
628 **/
629 UINTN
630 PrintChar (
631 CHAR16 Character
632 );
633
634 /**
635 Prints a formatted unicode string to the default console, at
636 the supplied cursor position.
637
638 @param Column The cursor position to print the string at.
639 @param Row The cursor position to print the string at
640 @param Fmt Format string
641 @param ... Variable argument list for formating string.
642
643 @return Length of string printed to the console
644
645 **/
646 UINTN
647 EFIAPI
648 PrintAt (
649 IN UINTN Column,
650 IN UINTN Row,
651 IN CHAR16 *Fmt,
652 ...
653 );
654
655 /**
656 Prints a unicode string to the default console, at
657 the supplied cursor position, using L"%s" format.
658
659 @param Column The cursor position to print the string at.
660 @param Row The cursor position to print the string at
661 @param String String pointer.
662
663 @return Length of string printed to the console
664
665 **/
666 UINTN
667 PrintStringAt (
668 IN UINTN Column,
669 IN UINTN Row,
670 IN CHAR16 *String
671 );
672
673 /**
674 Prints a chracter to the default console, at
675 the supplied cursor position, using L"%c" format.
676
677 @param Column The cursor position to print the string at.
678 @param Row The cursor position to print the string at.
679 @param Character Character to print.
680
681 @return Length of string printed to the console.
682
683 **/
684 UINTN
685 PrintCharAt (
686 IN UINTN Column,
687 IN UINTN Row,
688 CHAR16 Character
689 );
690
691 /**
692 Parse opcodes in the formset IFR binary.
693
694 @param FormSet Pointer of the FormSet data structure.
695
696 @retval EFI_SUCCESS Opcode parse success.
697 @retval Other Opcode parse fail.
698
699 **/
700 EFI_STATUS
701 ParseOpCodes (
702 IN FORM_BROWSER_FORMSET *FormSet
703 );
704
705 /**
706 Free resources allocated for a FormSet.
707
708 @param FormSet Pointer of the FormSet
709
710 **/
711 VOID
712 DestroyFormSet (
713 IN OUT FORM_BROWSER_FORMSET *FormSet
714 );
715
716 /**
717 This function displays the page frame.
718
719 @param Selection Selection contains the information about
720 the Selection, form and formset to be displayed.
721 Selection action may be updated in retrieve callback.
722 **/
723 VOID
724 DisplayPageFrame (
725 IN UI_MENU_SELECTION *Selection
726 );
727
728 /**
729 Create a new string in HII Package List.
730
731 @param String The String to be added
732 @param HiiHandle The package list in the HII database to insert the
733 specified string.
734
735 @return The output string.
736
737 **/
738 EFI_STRING_ID
739 NewString (
740 IN CHAR16 *String,
741 IN EFI_HII_HANDLE HiiHandle
742 );
743
744 /**
745 Delete a string from HII Package List.
746
747 @param StringId Id of the string in HII database.
748 @param HiiHandle The HII package list handle.
749
750 @retval EFI_SUCCESS The string was deleted successfully.
751
752 **/
753 EFI_STATUS
754 DeleteString (
755 IN EFI_STRING_ID StringId,
756 IN EFI_HII_HANDLE HiiHandle
757 );
758
759 /**
760 Get the string based on the StringId and HII Package List Handle.
761
762 @param Token The String's ID.
763 @param HiiHandle The package list in the HII database to search for
764 the specified string.
765
766 @return The output string.
767
768 **/
769 CHAR16 *
770 GetToken (
771 IN EFI_STRING_ID Token,
772 IN EFI_HII_HANDLE HiiHandle
773 );
774
775 /**
776 Draw a pop up windows based on the dimension, number of lines and
777 strings specified.
778
779 @param RequestedWidth The width of the pop-up.
780 @param NumberOfLines The number of lines.
781 @param Marker The variable argument list for the list of string to be printed.
782
783 **/
784 VOID
785 CreateSharedPopUp (
786 IN UINTN RequestedWidth,
787 IN UINTN NumberOfLines,
788 IN VA_LIST Marker
789 );
790
791 /**
792 Routine used to abstract a generic dialog interface and return the selected key or string
793
794 @param NumberOfLines The number of lines for the dialog box
795 @param HotKey Defines whether a single character is parsed
796 (TRUE) and returned in KeyValue or a string is
797 returned in StringBuffer. Two special characters
798 are considered when entering a string, a SCAN_ESC
799 and an CHAR_CARRIAGE_RETURN. SCAN_ESC terminates
800 string input and returns
801 @param MaximumStringSize The maximum size in bytes of a typed in string
802 (each character is a CHAR16) and the minimum
803 string returned is two bytes
804 @param StringBuffer The passed in pointer to the buffer which will
805 hold the typed in string if HotKey is FALSE
806 @param KeyValue The EFI_KEY value returned if HotKey is TRUE..
807 @param ... A series of (quantity == NumberOfLines) text
808 strings which will be used to construct the dialog
809 box
810
811 @retval EFI_SUCCESS Displayed dialog and received user interaction
812 @retval EFI_INVALID_PARAMETER One of the parameters was invalid (e.g.
813 (StringBuffer == NULL) && (HotKey == FALSE))
814 @retval EFI_DEVICE_ERROR User typed in an ESC character to exit the routine
815
816 **/
817 EFI_STATUS
818 EFIAPI
819 CreateDialog (
820 IN UINTN NumberOfLines,
821 IN BOOLEAN HotKey,
822 IN UINTN MaximumStringSize,
823 OUT CHAR16 *StringBuffer,
824 OUT EFI_INPUT_KEY *KeyValue,
825 ...
826 );
827
828 /**
829 Get Value for given Name from a NameValue Storage.
830
831 @param Storage The NameValue Storage.
832 @param Name The Name.
833 @param Value The retured Value.
834
835 @retval EFI_SUCCESS Value found for given Name.
836 @retval EFI_NOT_FOUND No such Name found in NameValue storage.
837
838 **/
839 EFI_STATUS
840 GetValueByName (
841 IN FORMSET_STORAGE *Storage,
842 IN CHAR16 *Name,
843 IN OUT CHAR16 **Value
844 );
845
846 /**
847 Set Value of given Name in a NameValue Storage.
848
849 @param Storage The NameValue Storage.
850 @param Name The Name.
851 @param Value The Value to set.
852 @param Edit Whether update editValue or Value.
853
854 @retval EFI_SUCCESS Value found for given Name.
855 @retval EFI_NOT_FOUND No such Name found in NameValue storage.
856
857 **/
858 EFI_STATUS
859 SetValueByName (
860 IN FORMSET_STORAGE *Storage,
861 IN CHAR16 *Name,
862 IN CHAR16 *Value,
863 IN BOOLEAN Edit
864 );
865
866 /**
867 Get Question's current Value.
868
869 @param FormSet FormSet data structure.
870 @param Form Form data structure.
871 @param Question Question to be initialized.
872 @param Cached TRUE: get from Edit copy FALSE: get from original
873 Storage
874
875 @retval EFI_SUCCESS The function completed successfully.
876
877 **/
878 EFI_STATUS
879 GetQuestionValue (
880 IN FORM_BROWSER_FORMSET *FormSet,
881 IN FORM_BROWSER_FORM *Form,
882 IN OUT FORM_BROWSER_STATEMENT *Question,
883 IN BOOLEAN Cached
884 );
885
886 /**
887 Save Question Value to edit copy(cached) or Storage(uncached).
888
889 @param FormSet FormSet data structure.
890 @param Form Form data structure.
891 @param Question Pointer to the Question.
892 @param Cached TRUE: set to Edit copy FALSE: set to original
893 Storage
894
895 @retval EFI_SUCCESS The function completed successfully.
896
897 **/
898 EFI_STATUS
899 SetQuestionValue (
900 IN FORM_BROWSER_FORMSET *FormSet,
901 IN FORM_BROWSER_FORM *Form,
902 IN OUT FORM_BROWSER_STATEMENT *Question,
903 IN BOOLEAN Cached
904 );
905
906 /**
907 Perform inconsistent check for a Form.
908
909 @param FormSet FormSet data structure.
910 @param Form Form data structure.
911 @param Question The Question to be validated.
912 @param Type Validation type: InConsistent or NoSubmit
913
914 @retval EFI_SUCCESS Form validation pass.
915 @retval other Form validation failed.
916
917 **/
918 EFI_STATUS
919 ValidateQuestion (
920 IN FORM_BROWSER_FORMSET *FormSet,
921 IN FORM_BROWSER_FORM *Form,
922 IN FORM_BROWSER_STATEMENT *Question,
923 IN UINTN Type
924 );
925
926 /**
927 Discard data for form level or formset level.
928
929 @param FormSet FormSet data structure.
930 @param Form Form data structure.
931 @param SingleForm whether submit single form or formset.
932
933 @retval EFI_SUCCESS The function completed successfully.
934
935 **/
936 EFI_STATUS
937 DiscardForm (
938 IN FORM_BROWSER_FORMSET *FormSet,
939 IN FORM_BROWSER_FORM *Form,
940 IN BOOLEAN SingleForm
941 );
942
943 /**
944 Submit data for form level or formset level.
945
946 @param FormSet FormSet data structure.
947 @param Form Form data structure.
948 @param SingleForm whether submit single form or formset.
949
950 @retval EFI_SUCCESS The function completed successfully.
951
952 **/
953 EFI_STATUS
954 SubmitForm (
955 IN FORM_BROWSER_FORMSET *FormSet,
956 IN FORM_BROWSER_FORM *Form,
957 IN BOOLEAN SingleForm
958 );
959
960 /**
961 Reset Question to its default value.
962
963 @param FormSet The form set.
964 @param Form The form.
965 @param Question The question.
966 @param DefaultId The Class of the default.
967
968 @retval EFI_SUCCESS Question is reset to default value.
969
970 **/
971 EFI_STATUS
972 GetQuestionDefault (
973 IN FORM_BROWSER_FORMSET *FormSet,
974 IN FORM_BROWSER_FORM *Form,
975 IN FORM_BROWSER_STATEMENT *Question,
976 IN UINT16 DefaultId
977 );
978
979 /**
980 Get current setting of Questions.
981
982 @param FormSet FormSet data structure.
983
984 @retval EFI_SUCCESS The function completed successfully.
985
986 **/
987 EFI_STATUS
988 InitializeCurrentSetting (
989 IN OUT FORM_BROWSER_FORMSET *FormSet
990 );
991
992 /**
993 Initialize the internal data structure of a FormSet.
994
995 @param Handle PackageList Handle
996 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
997 GUID), take the first FormSet found in package
998 list.
999 @param FormSet FormSet data structure.
1000
1001 @retval EFI_SUCCESS The function completed successfully.
1002 @retval EFI_NOT_FOUND The specified FormSet could not be found.
1003
1004 **/
1005 EFI_STATUS
1006 InitializeFormSet (
1007 IN EFI_HII_HANDLE Handle,
1008 IN OUT EFI_GUID *FormSetGuid,
1009 OUT FORM_BROWSER_FORMSET *FormSet
1010 );
1011
1012 /**
1013 Reset Questions in a Formset to their default value.
1014
1015 @param FormSet FormSet data structure.
1016 @param DefaultId The Class of the default.
1017
1018 @retval EFI_SUCCESS The function completed successfully.
1019
1020 **/
1021 EFI_STATUS
1022 ExtractFormSetDefault (
1023 IN FORM_BROWSER_FORMSET *FormSet,
1024 IN UINT16 DefaultId
1025 );
1026
1027 /**
1028 Initialize Question's Edit copy from Storage.
1029
1030 @param Selection Selection contains the information about
1031 the Selection, form and formset to be displayed.
1032 Selection action may be updated in retrieve callback.
1033 @param FormSet FormSet data structure.
1034 @param Form Form data structure.
1035
1036 @retval EFI_SUCCESS The function completed successfully.
1037
1038 **/
1039 EFI_STATUS
1040 LoadFormConfig (
1041 IN OUT UI_MENU_SELECTION *Selection,
1042 IN FORM_BROWSER_FORMSET *FormSet,
1043 IN FORM_BROWSER_FORM *Form
1044 );
1045
1046 /**
1047 Initialize Question's Edit copy from Storage for the whole Formset.
1048
1049 @param Selection Selection contains the information about
1050 the Selection, form and formset to be displayed.
1051 Selection action may be updated in retrieve callback.
1052 @param FormSet FormSet data structure.
1053
1054 @retval EFI_SUCCESS The function completed successfully.
1055
1056 **/
1057 EFI_STATUS
1058 LoadFormSetConfig (
1059 IN OUT UI_MENU_SELECTION *Selection,
1060 IN FORM_BROWSER_FORMSET *FormSet
1061 );
1062
1063 /**
1064 Convert setting of Buffer Storage or NameValue Storage to <ConfigResp>.
1065
1066 @param Buffer The Storage to be conveted.
1067 @param ConfigResp The returned <ConfigResp>.
1068 @param SingleForm Whether update data for single form or formset level.
1069
1070 @retval EFI_SUCCESS Convert success.
1071 @retval EFI_INVALID_PARAMETER Incorrect storage type.
1072
1073 **/
1074 EFI_STATUS
1075 StorageToConfigResp (
1076 IN VOID *Buffer,
1077 IN CHAR16 **ConfigResp,
1078 IN BOOLEAN SingleForm
1079 );
1080
1081 /**
1082 Convert <ConfigResp> to settings in Buffer Storage or NameValue Storage.
1083
1084 @param Storage The Storage to receive the settings.
1085 @param ConfigResp The <ConfigResp> to be converted.
1086
1087 @retval EFI_SUCCESS Convert success.
1088 @retval EFI_INVALID_PARAMETER Incorrect storage type.
1089
1090 **/
1091 EFI_STATUS
1092 ConfigRespToStorage (
1093 IN FORMSET_STORAGE *Storage,
1094 IN CHAR16 *ConfigResp
1095 );
1096
1097 /**
1098 Fill storage's edit copy with settings requested from Configuration Driver.
1099
1100 @param FormSet FormSet data structure.
1101 @param Storage Buffer Storage.
1102
1103 @retval EFI_SUCCESS The function completed successfully.
1104
1105 **/
1106 EFI_STATUS
1107 LoadStorage (
1108 IN FORM_BROWSER_FORMSET *FormSet,
1109 IN FORMSET_STORAGE *Storage
1110 );
1111
1112 /**
1113 Fetch the Ifr binary data of a FormSet.
1114
1115 @param Handle PackageList Handle
1116 @param FormSetGuid GUID of a formset. If not specified (NULL or zero
1117 GUID), take the first FormSet found in package
1118 list.
1119 @param BinaryLength The length of the FormSet IFR binary.
1120 @param BinaryData The buffer designed to receive the FormSet.
1121
1122 @retval EFI_SUCCESS Buffer filled with the requested FormSet.
1123 BufferLength was updated.
1124 @retval EFI_INVALID_PARAMETER The handle is unknown.
1125 @retval EFI_NOT_FOUND A form or FormSet on the requested handle cannot
1126 be found with the requested FormId.
1127
1128 **/
1129 EFI_STATUS
1130 GetIfrBinaryData (
1131 IN EFI_HII_HANDLE Handle,
1132 IN OUT EFI_GUID *FormSetGuid,
1133 OUT UINTN *BinaryLength,
1134 OUT UINT8 **BinaryData
1135 );
1136
1137 /**
1138 Save globals used by previous call to SendForm(). SendForm() may be called from
1139 HiiConfigAccess.Callback(), this will cause SendForm() be reentried.
1140 So, save globals of previous call to SendForm() and restore them upon exit.
1141
1142 **/
1143 VOID
1144 SaveBrowserContext (
1145 VOID
1146 );
1147
1148 /**
1149 Restore globals used by previous call to SendForm().
1150
1151 **/
1152 VOID
1153 RestoreBrowserContext (
1154 VOID
1155 );
1156
1157 /**
1158 This is the routine which an external caller uses to direct the browser
1159 where to obtain it's information.
1160
1161
1162 @param This The Form Browser protocol instanse.
1163 @param Handles A pointer to an array of Handles. If HandleCount > 1 we
1164 display a list of the formsets for the handles specified.
1165 @param HandleCount The number of Handles specified in Handle.
1166 @param FormSetGuid This field points to the EFI_GUID which must match the Guid
1167 field in the EFI_IFR_FORM_SET op-code for the specified
1168 forms-based package. If FormSetGuid is NULL, then this
1169 function will display the first found forms package.
1170 @param FormId This field specifies which EFI_IFR_FORM to render as the first
1171 displayable page. If this field has a value of 0x0000, then
1172 the forms browser will render the specified forms in their encoded order.
1173 ScreenDimenions - This allows the browser to be called so that it occupies a
1174 portion of the physical screen instead of dynamically determining the screen dimensions.
1175 ActionRequest - Points to the action recommended by the form.
1176 @param ScreenDimensions Points to recommended form dimensions, including any non-content area, in
1177 characters.
1178 @param ActionRequest Points to the action recommended by the form.
1179
1180 @retval EFI_SUCCESS The function completed successfully.
1181 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.
1182 @retval EFI_NOT_FOUND No valid forms could be found to display.
1183
1184 **/
1185 EFI_STATUS
1186 EFIAPI
1187 SendForm (
1188 IN CONST EFI_FORM_BROWSER2_PROTOCOL *This,
1189 IN EFI_HII_HANDLE *Handles,
1190 IN UINTN HandleCount,
1191 IN EFI_GUID *FormSetGuid, OPTIONAL
1192 IN UINT16 FormId, OPTIONAL
1193 IN CONST EFI_SCREEN_DESCRIPTOR *ScreenDimensions, OPTIONAL
1194 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest OPTIONAL
1195 );
1196
1197 /**
1198 This function is called by a callback handler to retrieve uncommitted state
1199 data from the browser.
1200
1201 @param This A pointer to the EFI_FORM_BROWSER2_PROTOCOL
1202 instance.
1203 @param ResultsDataSize A pointer to the size of the buffer associated
1204 with ResultsData.
1205 @param ResultsData A string returned from an IFR browser or
1206 equivalent. The results string will have no
1207 routing information in them.
1208 @param RetrieveData A BOOLEAN field which allows an agent to retrieve
1209 (if RetrieveData = TRUE) data from the uncommitted
1210 browser state information or set (if RetrieveData
1211 = FALSE) data in the uncommitted browser state
1212 information.
1213 @param VariableGuid An optional field to indicate the target variable
1214 GUID name to use.
1215 @param VariableName An optional field to indicate the target
1216 human-readable variable name.
1217
1218 @retval EFI_SUCCESS The results have been distributed or are awaiting
1219 distribution.
1220 @retval EFI_BUFFER_TOO_SMALL The ResultsDataSize specified was too small to
1221 contain the results data.
1222
1223 **/
1224 EFI_STATUS
1225 EFIAPI
1226 BrowserCallback (
1227 IN CONST EFI_FORM_BROWSER2_PROTOCOL *This,
1228 IN OUT UINTN *ResultsDataSize,
1229 IN OUT EFI_STRING ResultsData,
1230 IN BOOLEAN RetrieveData,
1231 IN CONST EFI_GUID *VariableGuid, OPTIONAL
1232 IN CONST CHAR16 *VariableName OPTIONAL
1233 );
1234
1235 /**
1236 Find menu which will show next time.
1237
1238 @param Selection On input, Selection tell setup browser the information
1239 about the Selection, form and formset to be displayed.
1240 On output, Selection return the screen item that is selected
1241 by user.
1242 @param Repaint Whether need to repaint the menu.
1243 @param NewLine Whether need to show at new line.
1244
1245 @retval TRUE Need return.
1246 @retval FALSE No need to return.
1247 **/
1248 BOOLEAN
1249 FindNextMenu (
1250 IN OUT UI_MENU_SELECTION *Selection,
1251 IN BOOLEAN *Repaint,
1252 IN BOOLEAN *NewLine
1253 );
1254
1255 /**
1256 check whether the formset need to update the NV.
1257
1258 @param FormSet FormSet data structure.
1259 @param SetValue Whether set new value or clear old value.
1260
1261 **/
1262 VOID
1263 UpdateNvInfoInForm (
1264 IN FORM_BROWSER_FORMSET *FormSet,
1265 IN BOOLEAN SetValue
1266 );
1267
1268 /**
1269 check whether the formset need to update the NV.
1270
1271 @param FormSet FormSet data structure.
1272
1273 @retval TRUE Need to update the NV.
1274 @retval FALSE No need to update the NV.
1275 **/
1276 BOOLEAN
1277 IsNvUpdateRequired (
1278 IN FORM_BROWSER_FORMSET *FormSet
1279 );
1280
1281 /**
1282 Call the call back function for the question and process the return action.
1283
1284 @param Selection On input, Selection tell setup browser the information
1285 about the Selection, form and formset to be displayed.
1286 On output, Selection return the screen item that is selected
1287 by user.
1288 @param Statement The Question which need to call.
1289 @param Action The action request.
1290 @param SkipSaveOrDiscard Whether skip save or discard action.
1291
1292 @retval EFI_SUCCESS The call back function excutes successfully.
1293 @return Other value if the call back function failed to excute.
1294 **/
1295 EFI_STATUS
1296 ProcessCallBackFunction (
1297 IN OUT UI_MENU_SELECTION *Selection,
1298 IN FORM_BROWSER_STATEMENT *Question,
1299 IN EFI_BROWSER_ACTION Action,
1300 IN BOOLEAN SkipSaveOrDiscard
1301 );
1302 #endif