]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BasePrintLib/PrintLibInternal.h
Minor adjust the logic in BasePrintLib and fix several typos
[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
eceb3a4c 4 Copyright (c) 2006 - 2008, Intel Corporation\r
e1f414b6 5 All rights reserved. This program and the accompanying materials\r
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
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
7c905091 65 @param Flags Initial flags value.\r
e1f414b6 66 Can only have FORMAT_UNICODE and OUTPUT_UNICODE set.\r
67 @param Format Null-terminated format string.\r
68 @param Marker Vararg list consumed by processing Format.\r
69\r
70 @return Number of characters printed not including the Null-terminator.\r
71\r
72**/\r
73UINTN\r
74BasePrintLibVSPrint (\r
75 OUT CHAR8 *Buffer,\r
76 IN UINTN BufferSize,\r
77 IN UINTN Flags,\r
78 IN CONST CHAR8 *Format,\r
79 IN VA_LIST Marker\r
80 );\r
81\r
82/**\r
83 Worker function that produces a Null-terminated string in an output buffer \r
84 based on a Null-terminated format string and variable argument list.\r
85\r
86 VSPrint function to process format and place the results in Buffer. Since a \r
7c905091 87 VA_LIST is used this routine allows the nesting of Vararg routines. Thus \r
e1f414b6 88 this is the main print working routine\r
89\r
eceb3a4c 90 @param StartOfBuffer Character buffer to print the results of the parsing\r
e1f414b6 91 of Format into.\r
92 @param BufferSize Maximum number of characters to put into buffer.\r
93 Zero means no limit.\r
7c905091 94 @param Flags Initial flags value.\r
e1f414b6 95 Can only have FORMAT_UNICODE and OUTPUT_UNICODE set\r
96 @param FormatString Null-terminated format string.\r
eceb3a4c 97 @param ... The variable argument list.\r
e1f414b6 98\r
99 @return Number of characters printed.\r
100\r
101**/\r
102UINTN\r
103BasePrintLibSPrint (\r
eceb3a4c 104 OUT CHAR8 *StartOfBuffer,\r
e1f414b6 105 IN UINTN BufferSize,\r
106 IN UINTN Flags,\r
107 IN CONST CHAR8 *FormatString,\r
108 ...\r
109 );\r
110\r
111/**\r
112 Internal function that places the character into the Buffer.\r
113\r
114 Internal function that places ASCII or Unicode character into the Buffer.\r
115\r
116 @param Buffer Buffer to place the Unicode or ASCII string.\r
117 @param EndBuffer The end of the input Buffer. No characters will be\r
118 placed after that. \r
119 @param Length Count of character to be placed into Buffer.\r
a2bc29c4 120 (Negative value indicates no buffer fill.)\r
e1f414b6 121 @param Character Character to be placed into Buffer.\r
122 @param Increment Character increment in Buffer.\r
123\r
eceb3a4c 124 @return Buffer Buffer filled with the input Character.\r
e1f414b6 125\r
126**/\r
127CHAR8 *\r
128BasePrintLibFillBuffer (\r
eceb3a4c
LG
129 OUT CHAR8 *Buffer,\r
130 IN CHAR8 *EndBuffer,\r
131 IN INTN Length,\r
132 IN UINTN Character,\r
133 IN INTN Increment\r
e1f414b6 134 );\r
135\r
136/**\r
7c905091 137 Internal function that convert a number to a string in Buffer.\r
e1f414b6 138\r
7c905091 139 Print worker function that converts a decimal or hexadecimal number to an ASCII string in Buffer.\r
e1f414b6 140\r
7c905091 141 @param Buffer Location to place the ASCII string of Value.\r
bcccf0b0 142 @param Value Value to convert to a Decimal or Hexadecimal string in Buffer.\r
e1f414b6 143 @param Radix Radix of the value\r
144\r
7c905091 145 @return A pointer to the end of buffer filled with ASCII string.\r
e1f414b6 146\r
147**/\r
7c905091 148CHAR8 *\r
e1f414b6 149BasePrintLibValueToString (\r
150 IN OUT CHAR8 *Buffer, \r
151 IN INT64 Value, \r
152 IN UINTN Radix\r
153 );\r
154\r
155/**\r
156 Internal function that converts a decimal value to a Null-terminated string.\r
157 \r
158 Converts the decimal number specified by Value to a Null-terminated \r
159 string specified by Buffer containing at most Width characters.\r
160 If Width is 0 then a width of MAXIMUM_VALUE_CHARACTERS is assumed.\r
161 The total number of characters placed in Buffer is returned.\r
162 If the conversion contains more than Width characters, then only the first\r
163 Width characters are returned, and the total number of characters \r
164 required to perform the conversion is returned.\r
165 Additional conversion parameters are specified in Flags. \r
166 The Flags bit LEFT_JUSTIFY is always ignored.\r
167 All conversions are left justified in Buffer.\r
168 If Width is 0, PREFIX_ZERO is ignored in Flags.\r
169 If COMMA_TYPE is set in Flags, then PREFIX_ZERO is ignored in Flags, and commas\r
170 are inserted every 3rd digit starting from the right.\r
171 If Value is < 0, then the fist character in Buffer is a '-'.\r
172 If PREFIX_ZERO is set in Flags and PREFIX_ZERO is not being ignored, \r
173 then Buffer is padded with '0' characters so the combination of the optional '-' \r
174 sign character, '0' characters, digit characters for Value, and the Null-terminator\r
175 add up to Width characters.\r
176\r
177 If Buffer is NULL, then ASSERT().\r
178 If unsupported bits are set in Flags, then ASSERT().\r
179 If Width >= MAXIMUM_VALUE_CHARACTERS, then ASSERT()\r
180\r
181 @param Buffer Pointer to the output buffer for the produced Null-terminated\r
182 string.\r
183 @param Flags The bitmask of flags that specify left justification, zero pad,\r
184 and commas.\r
185 @param Value The 64-bit signed value to convert to a string.\r
186 @param Width The maximum number of characters to place in Buffer, not including\r
187 the Null-terminator.\r
188 @param Increment Character increment in Buffer.\r
189 \r
190 @return Total number of characters required to perform the conversion.\r
191\r
192**/\r
193UINTN\r
194BasePrintLibConvertValueToString (\r
195 IN OUT CHAR8 *Buffer,\r
196 IN UINTN Flags,\r
197 IN INT64 Value,\r
198 IN UINTN Width,\r
199 IN UINTN Increment\r
200 );\r
201\r
202#endif\r