]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BasePrintLib/PrintLibInternal.h
Add 2 functions to UefiLib library class: CatSPrint and CatVSPrint.
[mirror_edk2.git] / MdePkg / Library / BasePrintLib / PrintLibInternal.h
CommitLineData
e1f414b6 1/** @file\r
eceb3a4c 2 Base Print Library instance Internal Functions definition.\r
e1f414b6 3\r
f405c067 4 Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>\r
19388d29 5 This program and the accompanying materials\r
e1f414b6 6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
2fc59a00 8 http://opensource.org/licenses/bsd-license.php.\r
e1f414b6 9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
e1f414b6 13**/\r
14\r
eceb3a4c
LG
15#ifndef __PRINT_LIB_INTERNAL_H__\r
16#define __PRINT_LIB_INTERNAL_H__\r
e1f414b6 17\r
f734a10a
A
18#include <Base.h>\r
19#include <Library/PrintLib.h>\r
20#include <Library/BaseLib.h>\r
21#include <Library/DebugLib.h>\r
22\r
e1f414b6 23\r
24//\r
25// Print primitives\r
26//\r
f405c067 27#define PREFIX_SIGN BIT1\r
28#define PREFIX_BLANK BIT2\r
29#define LONG_TYPE BIT4\r
30#define OUTPUT_UNICODE BIT6\r
31#define FORMAT_UNICODE BIT8\r
32#define PAD_TO_WIDTH BIT9\r
33#define ARGUMENT_UNICODE BIT10\r
34#define PRECISION BIT11\r
35#define ARGUMENT_REVERSED BIT12\r
36#define COUNT_ONLY_NO_PRINT BIT13\r
e1f414b6 37\r
38//\r
39// Record date and time information\r
40//\r
41typedef struct {\r
42 UINT16 Year;\r
43 UINT8 Month;\r
44 UINT8 Day;\r
45 UINT8 Hour;\r
46 UINT8 Minute;\r
47 UINT8 Second;\r
48 UINT8 Pad1;\r
49 UINT32 Nanosecond;\r
50 INT16 TimeZone;\r
51 UINT8 Daylight;\r
52 UINT8 Pad2;\r
53} TIME;\r
54\r
55/**\r
56 Worker function that produces a Null-terminated string in an output buffer \r
57 based on a Null-terminated format string and a VA_LIST argument list.\r
58\r
59 VSPrint function to process format and place the results in Buffer. Since a \r
7c905091 60 VA_LIST is used this routine allows the nesting of Vararg routines. Thus \r
e1f414b6 61 this is the main print working routine.\r
62\r
f405c067 63 If COUNT_ONLY_NO_PRINT is set in Flags, Buffer will not be modified at all.\r
64\r
65 @param[out] Buffer The character buffer to print the results of the \r
66 parsing of Format into.\r
67 @param[in] BufferSize The maximum number of characters to put into \r
68 buffer.\r
69 @param[in] Flags Initial flags value.\r
70 Can only have FORMAT_UNICODE, OUTPUT_UNICODE, \r
71 and COUNT_ONLY_NO_PRINT set.\r
72 @param[in] Format A Null-terminated format string.\r
73 @param[in] VaListMarker VA_LIST style variable argument list consumed by\r
74 processing Format.\r
75 @param[in] BaseListMarker BASE_LIST style variable argument list consumed\r
76 by processing Format.\r
e1f414b6 77\r
2fc59a00 78 @return The number of characters printed not including the Null-terminator.\r
f405c067 79 If COUNT_ONLY_NO_PRINT was set returns the same, but without any\r
80 modification to Buffer.\r
e1f414b6 81\r
82**/\r
83UINTN\r
2075236e 84BasePrintLibSPrintMarker (\r
e1f414b6 85 OUT CHAR8 *Buffer,\r
86 IN UINTN BufferSize,\r
87 IN UINTN Flags,\r
88 IN CONST CHAR8 *Format,\r
2075236e 89 IN VA_LIST VaListMarker, OPTIONAL\r
90 IN BASE_LIST BaseListMarker OPTIONAL\r
e1f414b6 91 );\r
92\r
93/**\r
94 Worker function that produces a Null-terminated string in an output buffer \r
95 based on a Null-terminated format string and variable argument list.\r
96\r
97 VSPrint function to process format and place the results in Buffer. Since a \r
7c905091 98 VA_LIST is used this routine allows the nesting of Vararg routines. Thus \r
e1f414b6 99 this is the main print working routine\r
100\r
2fc59a00 101 @param StartOfBuffer The character buffer to print the results of the parsing\r
e1f414b6 102 of Format into.\r
2fc59a00 103 @param BufferSize The maximum number of characters to put into buffer.\r
e1f414b6 104 Zero means no limit.\r
7c905091 105 @param Flags Initial flags value.\r
e1f414b6 106 Can only have FORMAT_UNICODE and OUTPUT_UNICODE set\r
107 @param FormatString Null-terminated format string.\r
eceb3a4c 108 @param ... The variable argument list.\r
e1f414b6 109\r
2fc59a00 110 @return The number of characters printed.\r
e1f414b6 111\r
112**/\r
113UINTN\r
932d66a9 114EFIAPI\r
e1f414b6 115BasePrintLibSPrint (\r
eceb3a4c 116 OUT CHAR8 *StartOfBuffer,\r
e1f414b6 117 IN UINTN BufferSize,\r
118 IN UINTN Flags,\r
119 IN CONST CHAR8 *FormatString,\r
120 ...\r
121 );\r
122\r
123/**\r
124 Internal function that places the character into the Buffer.\r
125\r
126 Internal function that places ASCII or Unicode character into the Buffer.\r
127\r
128 @param Buffer Buffer to place the Unicode or ASCII string.\r
129 @param EndBuffer The end of the input Buffer. No characters will be\r
130 placed after that. \r
2fc59a00 131 @param Length The count of character to be placed into Buffer.\r
a2bc29c4 132 (Negative value indicates no buffer fill.)\r
2fc59a00 133 @param Character The character to be placed into Buffer.\r
134 @param Increment The character increment in Buffer.\r
e1f414b6 135\r
eceb3a4c 136 @return Buffer Buffer filled with the input Character.\r
e1f414b6 137\r
138**/\r
139CHAR8 *\r
140BasePrintLibFillBuffer (\r
eceb3a4c
LG
141 OUT CHAR8 *Buffer,\r
142 IN CHAR8 *EndBuffer,\r
143 IN INTN Length,\r
144 IN UINTN Character,\r
145 IN INTN Increment\r
e1f414b6 146 );\r
147\r
148/**\r
7c905091 149 Internal function that convert a number to a string in Buffer.\r
e1f414b6 150\r
7c905091 151 Print worker function that converts a decimal or hexadecimal number to an ASCII string in Buffer.\r
e1f414b6 152\r
7c905091 153 @param Buffer Location to place the ASCII string of Value.\r
2fc59a00 154 @param Value The value to convert to a Decimal or Hexadecimal string in Buffer.\r
e1f414b6 155 @param Radix Radix of the value\r
156\r
7c905091 157 @return A pointer to the end of buffer filled with ASCII string.\r
e1f414b6 158\r
159**/\r
7c905091 160CHAR8 *\r
e1f414b6 161BasePrintLibValueToString (\r
162 IN OUT CHAR8 *Buffer, \r
163 IN INT64 Value, \r
164 IN UINTN Radix\r
165 );\r
166\r
167/**\r
168 Internal function that converts a decimal value to a Null-terminated string.\r
169 \r
170 Converts the decimal number specified by Value to a Null-terminated \r
171 string specified by Buffer containing at most Width characters.\r
172 If Width is 0 then a width of MAXIMUM_VALUE_CHARACTERS is assumed.\r
173 The total number of characters placed in Buffer is returned.\r
174 If the conversion contains more than Width characters, then only the first\r
175 Width characters are returned, and the total number of characters \r
176 required to perform the conversion is returned.\r
177 Additional conversion parameters are specified in Flags. \r
178 The Flags bit LEFT_JUSTIFY is always ignored.\r
179 All conversions are left justified in Buffer.\r
180 If Width is 0, PREFIX_ZERO is ignored in Flags.\r
181 If COMMA_TYPE is set in Flags, then PREFIX_ZERO is ignored in Flags, and commas\r
182 are inserted every 3rd digit starting from the right.\r
183 If Value is < 0, then the fist character in Buffer is a '-'.\r
184 If PREFIX_ZERO is set in Flags and PREFIX_ZERO is not being ignored, \r
185 then Buffer is padded with '0' characters so the combination of the optional '-' \r
186 sign character, '0' characters, digit characters for Value, and the Null-terminator\r
187 add up to Width characters.\r
188\r
189 If Buffer is NULL, then ASSERT().\r
190 If unsupported bits are set in Flags, then ASSERT().\r
191 If Width >= MAXIMUM_VALUE_CHARACTERS, then ASSERT()\r
192\r
2fc59a00 193 @param Buffer The pointer to the output buffer for the produced Null-terminated\r
e1f414b6 194 string.\r
195 @param Flags The bitmask of flags that specify left justification, zero pad,\r
196 and commas.\r
197 @param Value The 64-bit signed value to convert to a string.\r
198 @param Width The maximum number of characters to place in Buffer, not including\r
199 the Null-terminator.\r
200 @param Increment Character increment in Buffer.\r
201 \r
202 @return Total number of characters required to perform the conversion.\r
203\r
204**/\r
205UINTN\r
206BasePrintLibConvertValueToString (\r
207 IN OUT CHAR8 *Buffer,\r
208 IN UINTN Flags,\r
209 IN INT64 Value,\r
210 IN UINTN Width,\r
211 IN UINTN Increment\r
212 );\r
213\r
214#endif\r