From: Ruiyu Ni Date: Tue, 10 Jan 2017 03:33:51 +0000 (+0800) Subject: MdeModulePkg/TerminalDxe: Add TerminalTypeFromGuid internal function X-Git-Tag: edk2-stable201903~4788 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=f9163275455efbb4f86721b4f1eb075ddc391171;p=mirror_edk2.git MdeModulePkg/TerminalDxe: Add TerminalTypeFromGuid internal function Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni Cc: Star Zeng Reviewed-by: Feng Tian --- diff --git a/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c b/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c index cf7f4e6ebc..fe09f01d59 100644 --- a/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c +++ b/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c @@ -29,7 +29,7 @@ EFI_DRIVER_BINDING_PROTOCOL gTerminalDriverBinding = { }; -EFI_GUID *gTerminalType[] = { +EFI_GUID *mTerminalType[] = { &gEfiPcAnsiGuid, &gEfiVT100Guid, &gEfiVT100PlusGuid, @@ -111,6 +111,28 @@ TERMINAL_CONSOLE_MODE_DATA mTerminalConsoleModeData[] = { // }; +/** + Convert the GUID representation of terminal type to enum type. + + @param Guid The GUID representation of terminal type. + + @return The terminal type in enum type. +**/ +TERMINAL_TYPE +TerminalTypeFromGuid ( + IN EFI_GUID *Guid +) +{ + TERMINAL_TYPE Type; + + for (Type = 0; Type < ARRAY_SIZE (mTerminalType); Type++) { + if (CompareGuid (Guid, mTerminalType[Type])) { + break; + } + } + return Type; +} + /** Test to see if this driver supports Controller. @@ -163,12 +185,7 @@ TerminalDriverBindingSupported ( // // only supports PC ANSI, VT100, VT100+, VT-UTF8, and TtyTerm terminal types // - if (!CompareGuid (&Node->Guid, &gEfiPcAnsiGuid) && - !CompareGuid (&Node->Guid, &gEfiVT100Guid) && - !CompareGuid (&Node->Guid, &gEfiVT100PlusGuid) && - !CompareGuid (&Node->Guid, &gEfiVTUTF8Guid) && - !CompareGuid (&Node->Guid, &gEfiTtyTermGuid)) { - + if (TerminalTypeFromGuid (&Node->Guid) == ARRAY_SIZE (mTerminalType)) { return EFI_UNSUPPORTED; } } @@ -712,29 +729,13 @@ TerminalDriverBindingStart ( // if (RemainingDevicePath == NULL) { TerminalType = PcdGet8 (PcdDefaultTerminalType); - // - // Must be between TerminalTypePcAnsi (0) and TerminalTypeTtyTerm (4) - // - ASSERT (TerminalType <= TerminalTypeTtyTerm); } else if (!IsDevicePathEnd (RemainingDevicePath)) { // // If RemainingDevicePath isn't the End of Device Path Node, // Use the RemainingDevicePath to determine the terminal type // Node = (VENDOR_DEVICE_PATH *)RemainingDevicePath; - if (CompareGuid (&Node->Guid, &gEfiPcAnsiGuid)) { - TerminalType = TerminalTypePcAnsi; - } else if (CompareGuid (&Node->Guid, &gEfiVT100Guid)) { - TerminalType = TerminalTypeVt100; - } else if (CompareGuid (&Node->Guid, &gEfiVT100PlusGuid)) { - TerminalType = TerminalTypeVt100Plus; - } else if (CompareGuid (&Node->Guid, &gEfiVTUTF8Guid)) { - TerminalType = TerminalTypeVtUtf8; - } else if (CompareGuid (&Node->Guid, &gEfiTtyTermGuid)) { - TerminalType = TerminalTypeTtyTerm; - } else { - goto Error; - } + TerminalType = TerminalTypeFromGuid (&Node->Guid); } else { // // If RemainingDevicePath is the End of Device Path Node, @@ -743,6 +744,8 @@ TerminalDriverBindingStart ( return EFI_SUCCESS; } + ASSERT (TerminalType < ARRAY_SIZE (mTerminalType)); + // // Initialize the Terminal Dev // @@ -1473,7 +1476,7 @@ TerminalUpdateConsoleDevVariable ( // // Append terminal device path onto the variable. // - for (TerminalType = TerminalTypePcAnsi; TerminalType <= TerminalTypeTtyTerm; TerminalType++) { + for (TerminalType = 0; TerminalType < ARRAY_SIZE (mTerminalType); TerminalType++) { SetTerminalDevicePath (TerminalType, ParentDevicePath, &TempDevicePath); NewVariable = AppendDevicePathInstance (Variable, TempDevicePath); ASSERT (NewVariable != NULL); @@ -1586,7 +1589,7 @@ TerminalRemoveConsoleDevVariable ( // Loop through all the terminal types that this driver supports // Match = FALSE; - for (TerminalType = TerminalTypePcAnsi; TerminalType <= TerminalTypeTtyTerm; TerminalType++) { + for (TerminalType = 0; TerminalType < ARRAY_SIZE (mTerminalType); TerminalType++) { SetTerminalDevicePath (TerminalType, ParentDevicePath, &TempDevicePath);