]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BasePrintLib/PrintLibInternal.h
Made use of GCC built-in functions for variable arguments in procedures dependent...
[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
19388d29
HT
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
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
8 http://opensource.org/licenses/bsd-license.php\r
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
e1f414b6 27#define PREFIX_SIGN 0x02\r
28#define PREFIX_BLANK 0x04\r
e1f414b6 29#define LONG_TYPE 0x10\r
e1f414b6 30#define OUTPUT_UNICODE 0x40\r
e1f414b6 31#define FORMAT_UNICODE 0x100\r
32#define PAD_TO_WIDTH 0x200\r
33#define ARGUMENT_UNICODE 0x400\r
34#define PRECISION 0x800\r
35#define ARGUMENT_REVERSED 0x1000\r
36\r
37//\r
38// Record date and time information\r
39//\r
40typedef struct {\r
41 UINT16 Year;\r
42 UINT8 Month;\r
43 UINT8 Day;\r
44 UINT8 Hour;\r
45 UINT8 Minute;\r
46 UINT8 Second;\r
47 UINT8 Pad1;\r
48 UINT32 Nanosecond;\r
49 INT16 TimeZone;\r
50 UINT8 Daylight;\r
51 UINT8 Pad2;\r
52} TIME;\r
53\r
54/**\r
55 Worker function that produces a Null-terminated string in an output buffer \r
56 based on a Null-terminated format string and a VA_LIST argument list.\r
57\r
58 VSPrint function to process format and place the results in Buffer. Since a \r
7c905091 59 VA_LIST is used this routine allows the nesting of Vararg routines. Thus \r
e1f414b6 60 this is the main print working routine.\r
61\r
2075236e 62 @param Buffer Character buffer to print the results of the parsing\r
63 of Format into.\r
64 @param BufferSize Maximum number of characters to put into buffer.\r
65 @param Flags Initial flags value.\r
66 Can only have FORMAT_UNICODE and OUTPUT_UNICODE set.\r
67 @param Format Null-terminated format string.\r
68 @param VaListMarker VA_LIST style variable argument list consumed by processing Format.\r
69 @param BaseListMarker BASE_LIST style variable argument list consumed by processing Format.\r
e1f414b6 70\r
71 @return Number of characters printed not including the Null-terminator.\r
72\r
73**/\r
74UINTN\r
2075236e 75BasePrintLibSPrintMarker (\r
e1f414b6 76 OUT CHAR8 *Buffer,\r
77 IN UINTN BufferSize,\r
78 IN UINTN Flags,\r
79 IN CONST CHAR8 *Format,\r
2075236e 80 IN VA_LIST VaListMarker, OPTIONAL\r
81 IN BASE_LIST BaseListMarker OPTIONAL\r
e1f414b6 82 );\r
83\r
84/**\r
85 Worker function that produces a Null-terminated string in an output buffer \r
86 based on a Null-terminated format string and variable argument list.\r
87\r
88 VSPrint function to process format and place the results in Buffer. Since a \r
7c905091 89 VA_LIST is used this routine allows the nesting of Vararg routines. Thus \r
e1f414b6 90 this is the main print working routine\r
91\r
eceb3a4c 92 @param StartOfBuffer Character buffer to print the results of the parsing\r
e1f414b6 93 of Format into.\r
94 @param BufferSize Maximum number of characters to put into buffer.\r
95 Zero means no limit.\r
7c905091 96 @param Flags Initial flags value.\r
e1f414b6 97 Can only have FORMAT_UNICODE and OUTPUT_UNICODE set\r
98 @param FormatString Null-terminated format string.\r
eceb3a4c 99 @param ... The variable argument list.\r
e1f414b6 100\r
101 @return Number of characters printed.\r
102\r
103**/\r
104UINTN\r
105BasePrintLibSPrint (\r
eceb3a4c 106 OUT CHAR8 *StartOfBuffer,\r
e1f414b6 107 IN UINTN BufferSize,\r
108 IN UINTN Flags,\r
109 IN CONST CHAR8 *FormatString,\r
110 ...\r
111 );\r
112\r
113/**\r
114 Internal function that places the character into the Buffer.\r
115\r
116 Internal function that places ASCII or Unicode character into the Buffer.\r
117\r
118 @param Buffer Buffer to place the Unicode or ASCII string.\r
119 @param EndBuffer The end of the input Buffer. No characters will be\r
120 placed after that. \r
121 @param Length Count of character to be placed into Buffer.\r
a2bc29c4 122 (Negative value indicates no buffer fill.)\r
e1f414b6 123 @param Character Character to be placed into Buffer.\r
124 @param Increment Character increment in Buffer.\r
125\r
eceb3a4c 126 @return Buffer Buffer filled with the input Character.\r
e1f414b6 127\r
128**/\r
129CHAR8 *\r
130BasePrintLibFillBuffer (\r
eceb3a4c
LG
131 OUT CHAR8 *Buffer,\r
132 IN CHAR8 *EndBuffer,\r
133 IN INTN Length,\r
134 IN UINTN Character,\r
135 IN INTN Increment\r
e1f414b6 136 );\r
137\r
138/**\r
7c905091 139 Internal function that convert a number to a string in Buffer.\r
e1f414b6 140\r
7c905091 141 Print worker function that converts a decimal or hexadecimal number to an ASCII string in Buffer.\r
e1f414b6 142\r
7c905091 143 @param Buffer Location to place the ASCII string of Value.\r
bcccf0b0 144 @param Value Value to convert to a Decimal or Hexadecimal string in Buffer.\r
e1f414b6 145 @param Radix Radix of the value\r
146\r
7c905091 147 @return A pointer to the end of buffer filled with ASCII string.\r
e1f414b6 148\r
149**/\r
7c905091 150CHAR8 *\r
e1f414b6 151BasePrintLibValueToString (\r
152 IN OUT CHAR8 *Buffer, \r
153 IN INT64 Value, \r
154 IN UINTN Radix\r
155 );\r
156\r
157/**\r
158 Internal function that converts a decimal value to a Null-terminated string.\r
159 \r
160 Converts the decimal number specified by Value to a Null-terminated \r
161 string specified by Buffer containing at most Width characters.\r
162 If Width is 0 then a width of MAXIMUM_VALUE_CHARACTERS is assumed.\r
163 The total number of characters placed in Buffer is returned.\r
164 If the conversion contains more than Width characters, then only the first\r
165 Width characters are returned, and the total number of characters \r
166 required to perform the conversion is returned.\r
167 Additional conversion parameters are specified in Flags. \r
168 The Flags bit LEFT_JUSTIFY is always ignored.\r
169 All conversions are left justified in Buffer.\r
170 If Width is 0, PREFIX_ZERO is ignored in Flags.\r
171 If COMMA_TYPE is set in Flags, then PREFIX_ZERO is ignored in Flags, and commas\r
172 are inserted every 3rd digit starting from the right.\r
173 If Value is < 0, then the fist character in Buffer is a '-'.\r
174 If PREFIX_ZERO is set in Flags and PREFIX_ZERO is not being ignored, \r
175 then Buffer is padded with '0' characters so the combination of the optional '-' \r
176 sign character, '0' characters, digit characters for Value, and the Null-terminator\r
177 add up to Width characters.\r
178\r
179 If Buffer is NULL, then ASSERT().\r
180 If unsupported bits are set in Flags, then ASSERT().\r
181 If Width >= MAXIMUM_VALUE_CHARACTERS, then ASSERT()\r
182\r
183 @param Buffer Pointer to the output buffer for the produced Null-terminated\r
184 string.\r
185 @param Flags The bitmask of flags that specify left justification, zero pad,\r
186 and commas.\r
187 @param Value The 64-bit signed value to convert to a string.\r
188 @param Width The maximum number of characters to place in Buffer, not including\r
189 the Null-terminator.\r
190 @param Increment Character increment in Buffer.\r
191 \r
192 @return Total number of characters required to perform the conversion.\r
193\r
194**/\r
195UINTN\r
196BasePrintLibConvertValueToString (\r
197 IN OUT CHAR8 *Buffer,\r
198 IN UINTN Flags,\r
199 IN INT64 Value,\r
200 IN UINTN Width,\r
201 IN UINTN Increment\r
202 );\r
203\r
204#endif\r