TianoCore EDK2 master
Loading...
Searching...
No Matches
PrintLibInternal.h File Reference
#include <Base.h>
#include <Library/PrintLib.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/PcdLib.h>

Go to the source code of this file.

Data Structures

struct  TIME
 

Macros

#define PREFIX_SIGN   BIT1
 
#define PREFIX_BLANK   BIT2
 
#define LONG_TYPE   BIT4
 
#define OUTPUT_UNICODE   BIT6
 
#define FORMAT_UNICODE   BIT8
 
#define PAD_TO_WIDTH   BIT9
 
#define ARGUMENT_UNICODE   BIT10
 
#define PRECISION   BIT11
 
#define ARGUMENT_REVERSED   BIT12
 
#define COUNT_ONLY_NO_PRINT   BIT13
 
#define UNSIGNED_TYPE   BIT14
 

Functions

UINTN BasePrintLibSPrintMarker (OUT CHAR8 *Buffer, IN UINTN BufferSize, IN UINTN Flags, IN CONST CHAR8 *Format, IN VA_LIST VaListMarker OPTIONAL, IN BASE_LIST BaseListMarker OPTIONAL)
 
UINTN EFIAPI BasePrintLibSPrint (OUT CHAR8 *StartOfBuffer, IN UINTN BufferSize, IN UINTN Flags, IN CONST CHAR8 *FormatString,...)
 
CHAR8 * BasePrintLibFillBuffer (OUT CHAR8 *Buffer, IN CHAR8 *EndBuffer, IN INTN Length, IN UINTN Character, IN INTN Increment)
 
CHAR8 * BasePrintLibValueToString (IN OUT CHAR8 *Buffer, IN INT64 Value, IN UINTN Radix)
 
UINTN BasePrintLibConvertValueToString (IN OUT CHAR8 *Buffer, IN UINTN Flags, IN INT64 Value, IN UINTN Width, IN UINTN Increment)
 
RETURN_STATUS BasePrintLibConvertValueToStringS (IN OUT CHAR8 *Buffer, IN UINTN BufferSize, IN UINTN Flags, IN INT64 Value, IN UINTN Width, IN UINTN Increment)
 

Detailed Description

Base Print Library instance Internal Functions definition.

Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent

Definition in file PrintLibInternal.h.

Macro Definition Documentation

◆ ARGUMENT_REVERSED

#define ARGUMENT_REVERSED   BIT12

Definition at line 29 of file PrintLibInternal.h.

◆ ARGUMENT_UNICODE

#define ARGUMENT_UNICODE   BIT10

Definition at line 27 of file PrintLibInternal.h.

◆ COUNT_ONLY_NO_PRINT

#define COUNT_ONLY_NO_PRINT   BIT13

Definition at line 30 of file PrintLibInternal.h.

◆ FORMAT_UNICODE

#define FORMAT_UNICODE   BIT8

Definition at line 25 of file PrintLibInternal.h.

◆ LONG_TYPE

#define LONG_TYPE   BIT4

Definition at line 23 of file PrintLibInternal.h.

◆ OUTPUT_UNICODE

#define OUTPUT_UNICODE   BIT6

Definition at line 24 of file PrintLibInternal.h.

◆ PAD_TO_WIDTH

#define PAD_TO_WIDTH   BIT9

Definition at line 26 of file PrintLibInternal.h.

◆ PRECISION

#define PRECISION   BIT11

Definition at line 28 of file PrintLibInternal.h.

◆ PREFIX_BLANK

#define PREFIX_BLANK   BIT2

Definition at line 22 of file PrintLibInternal.h.

◆ PREFIX_SIGN

#define PREFIX_SIGN   BIT1

Definition at line 21 of file PrintLibInternal.h.

◆ UNSIGNED_TYPE

#define UNSIGNED_TYPE   BIT14

Definition at line 31 of file PrintLibInternal.h.

Function Documentation

◆ BasePrintLibConvertValueToString()

UINTN BasePrintLibConvertValueToString ( IN OUT CHAR8 *  Buffer,
IN UINTN  Flags,
IN INT64  Value,
IN UINTN  Width,
IN UINTN  Increment 
)

Internal function that converts a decimal value to a Null-terminated string.

Converts the decimal number specified by Value to a Null-terminated string specified by Buffer containing at most Width characters. If Width is 0 then a width of MAXIMUM_VALUE_CHARACTERS is assumed. The total number of characters placed in Buffer is returned. If the conversion contains more than Width characters, then only the first Width characters are returned, and the total number of characters required to perform the conversion is returned. Additional conversion parameters are specified in Flags. The Flags bit LEFT_JUSTIFY is always ignored. All conversions are left justified in Buffer. If Width is 0, PREFIX_ZERO is ignored in Flags. If COMMA_TYPE is set in Flags, then PREFIX_ZERO is ignored in Flags, and commas are inserted every 3rd digit starting from the right. If Value is < 0, then the fist character in Buffer is a '-'. If PREFIX_ZERO is set in Flags and PREFIX_ZERO is not being ignored, then Buffer is padded with '0' characters so the combination of the optional '-' sign character, '0' characters, digit characters for Value, and the Null-terminator add up to Width characters.

If Buffer is NULL, then ASSERT(). If unsupported bits are set in Flags, then ASSERT(). If Width >= MAXIMUM_VALUE_CHARACTERS, then ASSERT()

Parameters
BufferThe pointer to the output buffer for the produced Null-terminated string.
FlagsThe bitmask of flags that specify left justification, zero pad, and commas.
ValueThe 64-bit signed value to convert to a string.
WidthThe maximum number of characters to place in Buffer, not including the Null-terminator.
IncrementCharacter increment in Buffer.
Returns
Total number of characters required to perform the conversion.

Internal function that converts a decimal value to a Null-terminated string.

Converts the decimal number specified by Value to a Null-terminated string specified by Buffer containing at most Width characters. If Width is 0 then a width of MAXIMUM_VALUE_CHARACTERS is assumed. The total number of characters placed in Buffer is returned. If the conversion contains more than Width characters, then only the first Width characters are returned, and the total number of characters required to perform the conversion is returned. Additional conversion parameters are specified in Flags. The Flags bit LEFT_JUSTIFY is always ignored. All conversions are left justified in Buffer. If Width is 0, PREFIX_ZERO is ignored in Flags. If COMMA_TYPE is set in Flags, then PREFIX_ZERO is ignored in Flags, and commas are inserted every 3rd digit starting from the right. If Value is < 0, then the fist character in Buffer is a '-'. If PREFIX_ZERO is set in Flags and PREFIX_ZERO is not being ignored, then Buffer is padded with '0' characters so the combination of the optional '-' sign character, '0' characters, digit characters for Value, and the Null-terminator add up to Width characters.

If Buffer is NULL, then ASSERT(). If unsupported bits are set in Flags, then ASSERT(). If Width >= MAXIMUM_VALUE_CHARACTERS, then ASSERT()

Parameters
BufferThe pointer to the output buffer for the produced Null-terminated string.
FlagsThe bitmask of flags that specify left justification, zero pad, and commas.
ValueThe 64-bit signed value to convert to a string.
WidthThe maximum number of characters to place in Buffer, not including the Null-terminator.
IncrementThe character increment in Buffer.
Returns
Total number of characters required to perform the conversion.

Definition at line 199 of file PrintLibInternal.c.

◆ BasePrintLibConvertValueToStringS()

RETURN_STATUS BasePrintLibConvertValueToStringS ( IN OUT CHAR8 *  Buffer,
IN UINTN  BufferSize,
IN UINTN  Flags,
IN INT64  Value,
IN UINTN  Width,
IN UINTN  Increment 
)

Internal function that converts a decimal value to a Null-terminated string.

Converts the decimal number specified by Value to a Null-terminated string specified by Buffer containing at most Width characters. If Width is 0 then a width of MAXIMUM_VALUE_CHARACTERS is assumed. If the conversion contains more than Width characters, then only the first Width characters are placed in Buffer. Additional conversion parameters are specified in Flags. The Flags bit LEFT_JUSTIFY is always ignored. All conversions are left justified in Buffer. If Width is 0, PREFIX_ZERO is ignored in Flags. If COMMA_TYPE is set in Flags, then PREFIX_ZERO is ignored in Flags, and commas are inserted every 3rd digit starting from the right. If Value is < 0, then the fist character in Buffer is a '-'. If PREFIX_ZERO is set in Flags and PREFIX_ZERO is not being ignored, then Buffer is padded with '0' characters so the combination of the optional '-' sign character, '0' characters, digit characters for Value, and the Null-terminator add up to Width characters.

If an error would be returned, the function will ASSERT().

Parameters
BufferThe pointer to the output buffer for the produced Null-terminated string.
BufferSizeThe size of Buffer in bytes, including the Null-terminator.
FlagsThe bitmask of flags that specify left justification, zero pad, and commas.
ValueThe 64-bit signed value to convert to a string.
WidthThe maximum number of characters to place in Buffer, not including the Null-terminator.
IncrementThe character increment in Buffer.
Return values
RETURN_SUCCESSThe decimal value is converted.
RETURN_BUFFER_TOO_SMALLIf BufferSize cannot hold the converted value.
RETURN_INVALID_PARAMETERIf Buffer is NULL. If Increment is 1 and PcdMaximumAsciiStringLength is not zero, BufferSize is greater than PcdMaximumAsciiStringLength. If Increment is not 1 and PcdMaximumUnicodeStringLength is not zero, BufferSize is greater than (PcdMaximumUnicodeStringLength * sizeof (CHAR16) + 1). If unsupported bits are set in Flags. If both COMMA_TYPE and RADIX_HEX are set in Flags. If Width >= MAXIMUM_VALUE_CHARACTERS.

Definition at line 356 of file PrintLibInternal.c.

◆ BasePrintLibFillBuffer()

CHAR8 * BasePrintLibFillBuffer ( OUT CHAR8 *  Buffer,
IN CHAR8 *  EndBuffer,
IN INTN  Length,
IN UINTN  Character,
IN INTN  Increment 
)

Internal function that places the character into the Buffer.

Internal function that places ASCII or Unicode character into the Buffer.

Parameters
BufferBuffer to place the Unicode or ASCII string.
EndBufferThe end of the input Buffer. No characters will be placed after that.
LengthThe count of character to be placed into Buffer. (Negative value indicates no buffer fill.)
CharacterThe character to be placed into Buffer.
IncrementThe character increment in Buffer.
Returns
Buffer Buffer filled with the input Character.

Internal function that places the character into the Buffer.

Internal function that places ASCII or Unicode character into the Buffer.

Parameters
BufferThe buffer to place the Unicode or ASCII string.
EndBufferThe end of the input Buffer. No characters will be placed after that.
LengthThe count of character to be placed into Buffer. (Negative value indicates no buffer fill.)
CharacterThe character to be placed into Buffer.
IncrementThe character increment in Buffer.
Returns
Buffer.

Definition at line 102 of file PrintLibInternal.c.

◆ BasePrintLibSPrint()

UINTN EFIAPI BasePrintLibSPrint ( OUT CHAR8 *  StartOfBuffer,
IN UINTN  BufferSize,
IN UINTN  Flags,
IN CONST CHAR8 *  FormatString,
  ... 
)

Worker function that produces a Null-terminated string in an output buffer based on a Null-terminated format string and variable argument list.

VSPrint function to process format and place the results in Buffer. Since a VA_LIST is used this routine allows the nesting of Vararg routines. Thus this is the main print working routine

Parameters
StartOfBufferThe character buffer to print the results of the parsing of Format into.
BufferSizeThe maximum number of characters to put into buffer. Zero means no limit.
FlagsInitial flags value. Can only have FORMAT_UNICODE and OUTPUT_UNICODE set
FormatStringNull-terminated format string.
...The variable argument list.
Returns
The number of characters printed.

Worker function that produces a Null-terminated string in an output buffer based on a Null-terminated format string and variable argument list.

VSPrint function to process format and place the results in Buffer. Since a VA_LIST is used this routine allows the nesting of Vararg routines. Thus this is the main print working routine

Parameters
StartOfBufferThe character buffer to print the results of the parsing of Format into.
BufferSizeThe maximum number of characters to put into buffer. Zero means no limit.
FlagsInitial flags value. Can only have FORMAT_UNICODE and OUTPUT_UNICODE set
FormatStringA Null-terminated format string.
...The variable argument list.
Returns
The number of characters printed.

Definition at line 1311 of file PrintLibInternal.c.

◆ BasePrintLibSPrintMarker()

UINTN BasePrintLibSPrintMarker ( OUT CHAR8 *  Buffer,
IN UINTN  BufferSize,
IN UINTN  Flags,
IN CONST CHAR8 *  Format,
IN VA_LIST VaListMarker  OPTIONAL,
IN BASE_LIST BaseListMarker  OPTIONAL 
)

Worker function that produces a Null-terminated string in an output buffer based on a Null-terminated format string and a VA_LIST argument list.

VSPrint function to process format and place the results in Buffer. Since a VA_LIST is used this routine allows the nesting of Vararg routines. Thus this is the main print working routine.

If COUNT_ONLY_NO_PRINT is set in Flags, Buffer will not be modified at all.

Parameters
[out]BufferThe character buffer to print the results of the parsing of Format into.
[in]BufferSizeThe maximum number of characters to put into buffer.
[in]FlagsInitial flags value. Can only have FORMAT_UNICODE, OUTPUT_UNICODE, and COUNT_ONLY_NO_PRINT set.
[in]FormatA Null-terminated format string.
[in]VaListMarkerVA_LIST style variable argument list consumed by processing Format.
[in]BaseListMarkerBASE_LIST style variable argument list consumed by processing Format.
Returns
The number of characters printed not including the Null-terminator. If COUNT_ONLY_NO_PRINT was set returns the same, but without any modification to Buffer.

Definition at line 540 of file PrintLibInternal.c.

◆ BasePrintLibValueToString()

CHAR8 * BasePrintLibValueToString ( IN OUT CHAR8 *  Buffer,
IN INT64  Value,
IN UINTN  Radix 
)

Internal function that convert a number to a string in Buffer.

Print worker function that converts a decimal or hexadecimal number to an ASCII string in Buffer.

Parameters
BufferLocation to place the ASCII string of Value.
ValueThe value to convert to a Decimal or Hexadecimal string in Buffer.
RadixRadix of the value
Returns
A pointer to the end of buffer filled with ASCII string.

Definition at line 137 of file PrintLibInternal.c.