2009-05-11 20:02:16 +02:00
|
|
|
/** @file
|
|
|
|
Provides interface to shell functionality for shell commands and applications.
|
|
|
|
|
2016-09-22 21:12:47 +02:00
|
|
|
(C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
|
2018-06-27 15:13:38 +02:00
|
|
|
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:07:06 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2009-05-11 20:02:16 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
#ifndef _UEFI_SHELL_LIB_INTERNAL_H_
|
2011-03-25 21:49:53 +01:00
|
|
|
#define _UEFI_SHELL_LIB_INTERNAL_H_
|
|
|
|
|
2010-01-11 22:49:04 +01:00
|
|
|
#include <Uefi.h>
|
|
|
|
|
|
|
|
#include <Guid/FileInfo.h>
|
|
|
|
|
|
|
|
#include <Protocol/SimpleFileSystem.h>
|
|
|
|
#include <Protocol/LoadedImage.h>
|
|
|
|
#include <Protocol/EfiShellInterface.h>
|
|
|
|
#include <Protocol/EfiShellEnvironment2.h>
|
2016-10-18 08:30:42 +02:00
|
|
|
#include <Protocol/Shell.h>
|
|
|
|
#include <Protocol/ShellParameters.h>
|
2016-09-22 21:12:47 +02:00
|
|
|
#include <Protocol/UnicodeCollation.h>
|
2010-01-11 22:49:04 +01:00
|
|
|
|
|
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
|
|
#include <Library/BaseLib.h>
|
|
|
|
#include <Library/BaseMemoryLib.h>
|
|
|
|
#include <Library/DebugLib.h>
|
|
|
|
#include <Library/MemoryAllocationLib.h>
|
|
|
|
#include <Library/DevicePathLib.h>
|
|
|
|
#include <Library/PcdLib.h>
|
|
|
|
#include <Library/FileHandleLib.h>
|
|
|
|
#include <Library/PrintLib.h>
|
|
|
|
#include <Library/UefiLib.h>
|
|
|
|
#include <Library/HiiLib.h>
|
|
|
|
#include <Library/ShellLib.h>
|
|
|
|
|
2009-05-11 20:02:16 +02:00
|
|
|
typedef struct {
|
|
|
|
EFI_SHELL_GET_FILE_INFO GetFileInfo;
|
|
|
|
EFI_SHELL_SET_FILE_INFO SetFileInfo;
|
|
|
|
EFI_SHELL_READ_FILE ReadFile;
|
|
|
|
EFI_SHELL_WRITE_FILE WriteFile;
|
|
|
|
EFI_SHELL_CLOSE_FILE CloseFile;
|
|
|
|
EFI_SHELL_DELETE_FILE DeleteFile;
|
|
|
|
EFI_SHELL_GET_FILE_POSITION GetFilePosition;
|
|
|
|
EFI_SHELL_SET_FILE_POSITION SetFilePosition;
|
|
|
|
EFI_SHELL_FLUSH_FILE FlushFile;
|
|
|
|
EFI_SHELL_GET_FILE_SIZE GetFileSize;
|
|
|
|
} FILE_HANDLE_FUNCTION_MAP;
|
2011-03-25 21:49:53 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Function to determin if an entire string is a valid number.
|
|
|
|
|
|
|
|
If Hex it must be preceeded with a 0x or has ForceHex, set TRUE.
|
|
|
|
|
|
|
|
@param[in] String The string to evaluate.
|
|
|
|
@param[in] ForceHex TRUE - always assume hex.
|
|
|
|
@param[in] StopAtSpace TRUE to halt upon finding a space, FALSE to keep going.
|
2014-11-04 23:33:16 +01:00
|
|
|
@param[in] TimeNumbers TRUE to allow numbers with ":", FALSE otherwise.
|
2011-03-25 21:49:53 +01:00
|
|
|
|
|
|
|
@retval TRUE It is all numeric (dec/hex) characters.
|
|
|
|
@retval FALSE There is a non-numeric character.
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
InternalShellIsHexOrDecimalNumber (
|
|
|
|
IN CONST CHAR16 *String,
|
|
|
|
IN CONST BOOLEAN ForceHex,
|
2014-11-04 23:33:16 +01:00
|
|
|
IN CONST BOOLEAN StopAtSpace,
|
|
|
|
IN CONST BOOLEAN TimeNumbers
|
2011-03-25 21:49:53 +01:00
|
|
|
);
|
|
|
|
|
2014-09-17 09:58:31 +02:00
|
|
|
/**
|
|
|
|
Cleans off all the quotes in the string.
|
|
|
|
|
|
|
|
@param[in] OriginalString pointer to the string to be cleaned.
|
2018-06-27 15:13:38 +02:00
|
|
|
@param[out] CleanString The new string with all quotes removed.
|
|
|
|
Memory allocated in the function and free
|
2014-09-17 09:58:31 +02:00
|
|
|
by caller.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The operation was successful.
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
InternalShellStripQuotes (
|
|
|
|
IN CONST CHAR16 *OriginalString,
|
|
|
|
OUT CHAR16 **CleanString
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2011-03-25 21:49:53 +01:00
|
|
|
#endif
|
|
|
|
|