]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/UefiLib/UefiLibPrint.c
Add Missing invocations to VA_END() for VA_START().
[mirror_edk2.git] / MdePkg / Library / UefiLib / UefiLibPrint.c
CommitLineData
e386b444 1/** @file\r
727501bb 2 Mde UEFI library API implementation.\r
e386b444 3 Print to StdErr or ConOut defined in EFI_SYSTEM_TABLE\r
4\r
3bbe68a3 5 Copyright (c) 2007 - 2012, Intel Corporation. All rights reserved.<BR>\r
19388d29 6 This program and the accompanying materials\r
e386b444 7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
2fc59a00 9 http://opensource.org/licenses/bsd-license.php.\r
e386b444 10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
f734a10a 16#include "UefiLibInternal.h"\r
e386b444 17\r
0057fda6 18GLOBAL_REMOVE_IF_UNREFERENCED EFI_GRAPHICS_OUTPUT_BLT_PIXEL mEfiColors[16] = {\r
b3154720 19 { 0x00, 0x00, 0x00, 0x00 },\r
20 { 0x98, 0x00, 0x00, 0x00 },\r
21 { 0x00, 0x98, 0x00, 0x00 },\r
22 { 0x98, 0x98, 0x00, 0x00 },\r
23 { 0x00, 0x00, 0x98, 0x00 },\r
24 { 0x98, 0x00, 0x98, 0x00 },\r
25 { 0x00, 0x98, 0x98, 0x00 },\r
26 { 0x98, 0x98, 0x98, 0x00 },\r
27 { 0x10, 0x10, 0x10, 0x00 },\r
28 { 0xff, 0x10, 0x10, 0x00 },\r
29 { 0x10, 0xff, 0x10, 0x00 },\r
30 { 0xff, 0xff, 0x10, 0x00 },\r
31 { 0x10, 0x10, 0xff, 0x00 },\r
32 { 0xf0, 0x10, 0xff, 0x00 },\r
33 { 0x10, 0xff, 0xff, 0x00 },\r
34 { 0xff, 0xff, 0xff, 0x00 }\r
35};\r
36\r
e386b444 37/**\r
38 Internal function which prints a formatted Unicode string to the console output device\r
39 specified by Console\r
40\r
41 This function prints a formatted Unicode string to the console output device\r
42 specified by Console and returns the number of Unicode characters that printed\r
43 to it. If the length of the formatted Unicode string is greater than PcdUefiLibMaxPrintBufferSize,\r
44 then only the first PcdUefiLibMaxPrintBufferSize characters are sent to Console.\r
f80b0830 45 If Format is NULL, then ASSERT().\r
46 If Format is not aligned on a 16-bit boundary, then ASSERT().\r
e386b444 47\r
58380e9c 48 @param Format A Null-terminated Unicode format string.\r
e386b444 49 @param Console The output console.\r
58380e9c 50 @param Marker A VA_LIST marker for the variable argument list.\r
73e4adbe 51\r
f80b0830 52 @return The number of Unicode characters in the produced\r
58380e9c 53 output buffer, not including the Null-terminator.\r
e386b444 54**/\r
e386b444 55UINTN\r
56InternalPrint (\r
57 IN CONST CHAR16 *Format,\r
58 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Console,\r
59 IN VA_LIST Marker\r
60 )\r
61{\r
cda8ba5e 62 EFI_STATUS Status;\r
63 UINTN Return;\r
64 CHAR16 *Buffer;\r
65 UINTN BufferSize;\r
e386b444 66\r
67 ASSERT (Format != NULL);\r
b3154720 68 ASSERT (((UINTN) Format & BIT0) == 0);\r
cda8ba5e 69 ASSERT (Console != NULL);\r
e386b444 70\r
71 BufferSize = (PcdGet32 (PcdUefiLibMaxPrintBufferSize) + 1) * sizeof (CHAR16);\r
72\r
73 Buffer = (CHAR16 *) AllocatePool(BufferSize);\r
74 ASSERT (Buffer != NULL);\r
75\r
76 Return = UnicodeVSPrint (Buffer, BufferSize, Format, Marker);\r
77\r
2ad4dad0 78 if (Console != NULL && Return > 0) {\r
e386b444 79 //\r
80 // To be extra safe make sure Console has been initialized\r
81 //\r
cda8ba5e 82 Status = Console->OutputString (Console, Buffer);\r
83 if (EFI_ERROR (Status)) {\r
84 Return = 0;\r
85 }\r
e386b444 86 }\r
87\r
88 FreePool (Buffer);\r
89\r
90 return Return;\r
91}\r
92\r
28d3e14f 93/** \r
94 Prints a formatted Unicode string to the console output device specified by \r
e386b444 95 ConOut defined in the EFI_SYSTEM_TABLE.\r
96\r
28d3e14f 97 This function prints a formatted Unicode string to the console output device \r
98 specified by ConOut in EFI_SYSTEM_TABLE and returns the number of Unicode \r
99 characters that printed to ConOut. If the length of the formatted Unicode \r
100 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first \r
e386b444 101 PcdUefiLibMaxPrintBufferSize characters are sent to ConOut.\r
f80b0830 102 If Format is NULL, then ASSERT().\r
103 If Format is not aligned on a 16-bit boundary, then ASSERT().\r
cda8ba5e 104 If gST->ConOut is NULL, then ASSERT().\r
e386b444 105\r
58380e9c 106 @param Format A Null-terminated Unicode format string.\r
107 @param ... A Variable argument list whose contents are accessed based \r
285010e7 108 on the format string specified by Format.\r
28d3e14f 109 \r
2fc59a00 110 @return The number of Unicode characters printed to ConOut.\r
e386b444 111\r
112**/\r
113UINTN\r
114EFIAPI\r
115Print (\r
116 IN CONST CHAR16 *Format,\r
117 ...\r
118 )\r
119{\r
120 VA_LIST Marker;\r
121 UINTN Return;\r
122\r
123 VA_START (Marker, Format);\r
124\r
125 Return = InternalPrint (Format, gST->ConOut, Marker);\r
126\r
127 VA_END (Marker);\r
128\r
129 return Return;\r
130}\r
131\r
28d3e14f 132/** \r
133 Prints a formatted Unicode string to the console output device specified by \r
e386b444 134 StdErr defined in the EFI_SYSTEM_TABLE.\r
135\r
28d3e14f 136 This function prints a formatted Unicode string to the console output device \r
137 specified by StdErr in EFI_SYSTEM_TABLE and returns the number of Unicode \r
138 characters that printed to StdErr. If the length of the formatted Unicode \r
139 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first \r
e386b444 140 PcdUefiLibMaxPrintBufferSize characters are sent to StdErr.\r
f80b0830 141 If Format is NULL, then ASSERT().\r
142 If Format is not aligned on a 16-bit boundary, then ASSERT().\r
cda8ba5e 143 If gST->StdErr is NULL, then ASSERT().\r
e386b444 144\r
58380e9c 145 @param Format A Null-terminated Unicode format string.\r
28d3e14f 146 @param ... Variable argument list whose contents are accessed based \r
285010e7 147 on the format string specified by Format.\r
28d3e14f 148 \r
2fc59a00 149 @return The number of Unicode characters printed to StdErr.\r
e386b444 150\r
151**/\r
e386b444 152UINTN\r
153EFIAPI\r
154ErrorPrint (\r
155 IN CONST CHAR16 *Format,\r
156 ...\r
157 )\r
158{\r
159 VA_LIST Marker;\r
160 UINTN Return;\r
161\r
162 VA_START (Marker, Format);\r
163\r
164 Return = InternalPrint( Format, gST->StdErr, Marker);\r
165\r
166 VA_END (Marker);\r
167\r
168 return Return;\r
169}\r
170\r
171\r
172/**\r
173 Internal function which prints a formatted ASCII string to the console output device\r
174 specified by Console\r
175\r
176 This function prints a formatted ASCII string to the console output device\r
177 specified by Console and returns the number of ASCII characters that printed\r
178 to it. If the length of the formatted ASCII string is greater than PcdUefiLibMaxPrintBufferSize,\r
179 then only the first PcdUefiLibMaxPrintBufferSize characters are sent to Console.\r
f80b0830 180\r
181 If Format is NULL, then ASSERT().\r
e386b444 182\r
58380e9c 183 @param Format A Null-terminated ASCII format string.\r
e386b444 184 @param Console The output console.\r
185 @param Marker VA_LIST marker for the variable argument list.\r
186\r
f80b0830 187 @return The number of Unicode characters in the produced\r
188 output buffer not including the Null-terminator.\r
e386b444 189\r
190**/\r
e386b444 191UINTN\r
192AsciiInternalPrint (\r
193 IN CONST CHAR8 *Format,\r
194 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Console,\r
195 IN VA_LIST Marker\r
196 )\r
197{\r
cda8ba5e 198 EFI_STATUS Status;\r
199 UINTN Return;\r
200 CHAR16 *Buffer;\r
201 UINTN BufferSize;\r
e386b444 202\r
203 ASSERT (Format != NULL);\r
cda8ba5e 204 ASSERT (Console != NULL);\r
e386b444 205\r
206 BufferSize = (PcdGet32 (PcdUefiLibMaxPrintBufferSize) + 1) * sizeof (CHAR16);\r
207\r
208 Buffer = (CHAR16 *) AllocatePool(BufferSize);\r
209 ASSERT (Buffer != NULL);\r
210\r
211 Return = UnicodeVSPrintAsciiFormat (Buffer, BufferSize, Format, Marker);\r
212\r
213 if (Console != NULL) {\r
214 //\r
215 // To be extra safe make sure Console has been initialized\r
216 //\r
cda8ba5e 217 Status = Console->OutputString (Console, Buffer);\r
218 if (EFI_ERROR (Status)) {\r
219 Return = 0;\r
220 }\r
e386b444 221 }\r
222\r
223 FreePool (Buffer);\r
224\r
225 return Return;\r
226}\r
227\r
28d3e14f 228/** \r
229 Prints a formatted ASCII string to the console output device specified by \r
e386b444 230 ConOut defined in the EFI_SYSTEM_TABLE.\r
231\r
28d3e14f 232 This function prints a formatted ASCII string to the console output device \r
233 specified by ConOut in EFI_SYSTEM_TABLE and returns the number of ASCII \r
234 characters that printed to ConOut. If the length of the formatted ASCII \r
235 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first \r
e386b444 236 PcdUefiLibMaxPrintBufferSize characters are sent to ConOut.\r
f80b0830 237 If Format is NULL, then ASSERT().\r
cda8ba5e 238 If gST->ConOut is NULL, then ASSERT().\r
e386b444 239\r
58380e9c 240 @param Format A Null-terminated ASCII format string.\r
28d3e14f 241 @param ... Variable argument list whose contents are accessed based \r
285010e7 242 on the format string specified by Format.\r
28d3e14f 243 \r
2fc59a00 244 @return The number of ASCII characters printed to ConOut.\r
e386b444 245\r
246**/\r
247UINTN\r
248EFIAPI\r
249AsciiPrint (\r
250 IN CONST CHAR8 *Format,\r
251 ...\r
252 )\r
253{\r
254 VA_LIST Marker;\r
255 UINTN Return;\r
9edc73ad 256 ASSERT (Format != NULL);\r
73e4adbe 257\r
e386b444 258 VA_START (Marker, Format);\r
259\r
260 Return = AsciiInternalPrint( Format, gST->ConOut, Marker);\r
261\r
262 VA_END (Marker);\r
263\r
264 return Return;\r
265}\r
266\r
28d3e14f 267/** \r
268 Prints a formatted ASCII string to the console output device specified by \r
e386b444 269 StdErr defined in the EFI_SYSTEM_TABLE.\r
270\r
28d3e14f 271 This function prints a formatted ASCII string to the console output device \r
272 specified by StdErr in EFI_SYSTEM_TABLE and returns the number of ASCII \r
273 characters that printed to StdErr. If the length of the formatted ASCII \r
274 string is greater than PcdUefiLibMaxPrintBufferSize, then only the first \r
e386b444 275 PcdUefiLibMaxPrintBufferSize characters are sent to StdErr.\r
f80b0830 276 If Format is NULL, then ASSERT().\r
cda8ba5e 277 If gST->StdErr is NULL, then ASSERT().\r
e386b444 278\r
58380e9c 279 @param Format A Null-terminated ASCII format string.\r
28d3e14f 280 @param ... Variable argument list whose contents are accessed based \r
285010e7 281 on the format string specified by Format.\r
28d3e14f 282 \r
2fc59a00 283 @return The number of ASCII characters printed to ConErr.\r
e386b444 284\r
285**/\r
286UINTN\r
287EFIAPI\r
288AsciiErrorPrint (\r
289 IN CONST CHAR8 *Format,\r
290 ...\r
291 )\r
292{\r
293 VA_LIST Marker;\r
294 UINTN Return;\r
295\r
9edc73ad 296 ASSERT (Format != NULL);\r
73e4adbe 297\r
e386b444 298 VA_START (Marker, Format);\r
299\r
300 Return = AsciiInternalPrint( Format, gST->StdErr, Marker);\r
301\r
302 VA_END (Marker);\r
303\r
304 return Return;\r
305}\r
306\r
b3154720 307/**\r
73e4adbe 308 Internal function to print a formatted Unicode string to a graphics console device specified by\r
b3154720 309 ConsoleOutputHandle defined in the EFI_SYSTEM_TABLE at the given (X,Y) coordinates.\r
310\r
73e4adbe 311 This function prints a formatted Unicode string to the graphics console device\r
312 specified by ConsoleOutputHandle in EFI_SYSTEM_TABLE and returns the number of\r
313 Unicode characters printed. The EFI_HII_FONT_PROTOCOL is used to convert the\r
314 string to a bitmap using the glyphs registered with the\r
b3154720 315 HII database. No wrapping is performed, so any portions of the string the fall\r
316 outside the active display region will not be displayed.\r
317\r
73e4adbe 318 If a graphics console device is not associated with the ConsoleOutputHandle\r
b3154720 319 defined in the EFI_SYSTEM_TABLE then no string is printed, and 0 is returned.\r
73e4adbe 320 If the EFI_HII_FONT_PROTOCOL is not present in the handle database, then no\r
b3154720 321 string is printed, and 0 is returned.\r
322\r
58380e9c 323 @param PointX An X coordinate to print the string.\r
324 @param PointY A Y coordinate to print the string.\r
51969ecb 325 @param Foreground The foreground color of the string being printed. This is\r
b3154720 326 an optional parameter that may be NULL. If it is NULL,\r
327 then the foreground color of the current ConOut device\r
328 in the EFI_SYSTEM_TABLE is used.\r
a72edceb 329 @param Background The background color of the string being printed. This is\r
73e4adbe 330 an optional parameter that may be NULL. If it is NULL,\r
b3154720 331 then the background color of the current ConOut device\r
332 in the EFI_SYSTEM_TABLE is used.\r
58380e9c 333 @param Buffer A Null-terminated Unicode formatted string.\r
b3154720 334 @param PrintNum The number of Unicode formatted string to be printed.\r
335\r
2fc59a00 336 @return The number of Unicode Characters printed. Zero means no any character\r
b3154720 337 displayed successfully.\r
338\r
339**/\r
340UINTN\r
341InternalPrintGraphic (\r
51969ecb 342 IN UINTN PointX,\r
343 IN UINTN PointY,\r
b3154720 344 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Foreground,\r
345 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Background,\r
346 IN CHAR16 *Buffer,\r
347 IN UINTN PrintNum\r
348 )\r
349{\r
350 EFI_STATUS Status;\r
b3154720 351 UINT32 HorizontalResolution;\r
352 UINT32 VerticalResolution;\r
353 UINT32 ColorDepth;\r
354 UINT32 RefreshRate;\r
b3154720 355 EFI_HII_FONT_PROTOCOL *HiiFont;\r
356 EFI_IMAGE_OUTPUT *Blt;\r
357 EFI_FONT_DISPLAY_INFO FontInfo;\r
358 EFI_HII_ROW_INFO *RowInfoArray;\r
359 UINTN RowInfoArraySize;\r
360 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;\r
361 EFI_UGA_DRAW_PROTOCOL *UgaDraw;\r
362 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Sto;\r
363 EFI_HANDLE ConsoleHandle;\r
63fffe4e 364 UINTN Width;\r
365 UINTN Height;\r
366 UINTN Delta;\r
b3154720 367\r
368 HorizontalResolution = 0;\r
369 VerticalResolution = 0;\r
370 Blt = NULL;\r
d9e63d93 371 RowInfoArray = NULL;\r
b3154720 372\r
373 ConsoleHandle = gST->ConsoleOutHandle;\r
cda8ba5e 374 \r
375 ASSERT( ConsoleHandle != NULL);\r
b3154720 376\r
377 Status = gBS->HandleProtocol (\r
378 ConsoleHandle,\r
379 &gEfiGraphicsOutputProtocolGuid,\r
380 (VOID **) &GraphicsOutput\r
381 );\r
382\r
383 UgaDraw = NULL;\r
384 if (EFI_ERROR (Status) && FeaturePcdGet (PcdUgaConsumeSupport)) {\r
385 //\r
386 // If no GOP available, try to open UGA Draw protocol if supported.\r
387 //\r
388 GraphicsOutput = NULL;\r
389\r
390 Status = gBS->HandleProtocol (\r
391 ConsoleHandle,\r
392 &gEfiUgaDrawProtocolGuid,\r
393 (VOID **) &UgaDraw\r
394 );\r
395 }\r
396 if (EFI_ERROR (Status)) {\r
d9e63d93 397 goto Error;\r
b3154720 398 }\r
399\r
400 Status = gBS->HandleProtocol (\r
401 ConsoleHandle,\r
402 &gEfiSimpleTextOutProtocolGuid,\r
403 (VOID **) &Sto\r
404 );\r
405\r
406 if (EFI_ERROR (Status)) {\r
d9e63d93 407 goto Error;\r
b3154720 408 }\r
409\r
410 if (GraphicsOutput != NULL) {\r
411 HorizontalResolution = GraphicsOutput->Mode->Info->HorizontalResolution;\r
412 VerticalResolution = GraphicsOutput->Mode->Info->VerticalResolution;\r
73e4adbe 413 } else if (UgaDraw != NULL && FeaturePcdGet (PcdUgaConsumeSupport)) {\r
b3154720 414 UgaDraw->GetMode (UgaDraw, &HorizontalResolution, &VerticalResolution, &ColorDepth, &RefreshRate);\r
415 } else {\r
b3154720 416 goto Error;\r
417 }\r
418\r
419 ASSERT ((HorizontalResolution != 0) && (VerticalResolution !=0));\r
420\r
421 Status = gBS->LocateProtocol (&gEfiHiiFontProtocolGuid, NULL, (VOID **) &HiiFont);\r
422 if (EFI_ERROR (Status)) {\r
423 goto Error;\r
424 }\r
425\r
b3154720 426 Blt = (EFI_IMAGE_OUTPUT *) AllocateZeroPool (sizeof (EFI_IMAGE_OUTPUT));\r
427 ASSERT (Blt != NULL);\r
428\r
429 Blt->Width = (UINT16) (HorizontalResolution);\r
430 Blt->Height = (UINT16) (VerticalResolution);\r
431\r
432 ZeroMem (&FontInfo, sizeof (EFI_FONT_DISPLAY_INFO));\r
433\r
434 if (Foreground != NULL) {\r
435 CopyMem (&FontInfo.ForegroundColor, Foreground, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));\r
436 } else {\r
437 CopyMem (\r
438 &FontInfo.ForegroundColor,\r
439 &mEfiColors[Sto->Mode->Attribute & 0x0f],\r
440 sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL)\r
441 );\r
442 }\r
443 if (Background != NULL) {\r
444 CopyMem (&FontInfo.BackgroundColor, Background, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));\r
445 } else {\r
446 CopyMem (\r
447 &FontInfo.BackgroundColor,\r
448 &mEfiColors[Sto->Mode->Attribute >> 4],\r
449 sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL)\r
450 );\r
451 }\r
452\r
453 if (GraphicsOutput != NULL) {\r
454 Blt->Image.Screen = GraphicsOutput;\r
73e4adbe 455\r
b3154720 456 Status = HiiFont->StringToImage (\r
457 HiiFont,\r
d9e63d93 458 EFI_HII_IGNORE_IF_NO_GLYPH | EFI_HII_OUT_FLAG_CLIP |\r
459 EFI_HII_OUT_FLAG_CLIP_CLEAN_X | EFI_HII_OUT_FLAG_CLIP_CLEAN_Y |\r
460 EFI_HII_IGNORE_LINE_BREAK | EFI_HII_DIRECT_TO_SCREEN,\r
b3154720 461 Buffer,\r
462 &FontInfo,\r
463 &Blt,\r
51969ecb 464 PointX,\r
465 PointY,\r
d9e63d93 466 &RowInfoArray,\r
467 &RowInfoArraySize,\r
b3154720 468 NULL\r
469 );\r
d9e63d93 470 if (EFI_ERROR (Status)) {\r
471 goto Error;\r
472 }\r
b3154720 473\r
474 } else if (FeaturePcdGet (PcdUgaConsumeSupport)) {\r
475 ASSERT (UgaDraw!= NULL);\r
476\r
477 Blt->Image.Bitmap = AllocateZeroPool (Blt->Width * Blt->Height * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));\r
478 ASSERT (Blt->Image.Bitmap != NULL);\r
479\r
b3154720 480 //\r
481 // StringToImage only support blt'ing image to device using GOP protocol. If GOP is not supported in this platform,\r
482 // we ask StringToImage to print the string to blt buffer, then blt to device using UgaDraw.\r
483 //\r
484 Status = HiiFont->StringToImage (\r
485 HiiFont,\r
392b3cf8 486 EFI_HII_IGNORE_IF_NO_GLYPH | EFI_HII_OUT_FLAG_CLIP |\r
487 EFI_HII_OUT_FLAG_CLIP_CLEAN_X | EFI_HII_OUT_FLAG_CLIP_CLEAN_Y |\r
488 EFI_HII_IGNORE_LINE_BREAK,\r
b3154720 489 Buffer,\r
490 &FontInfo,\r
491 &Blt,\r
51969ecb 492 PointX,\r
493 PointY,\r
b3154720 494 &RowInfoArray,\r
495 &RowInfoArraySize,\r
496 NULL\r
497 );\r
498\r
499 if (!EFI_ERROR (Status)) {\r
500 ASSERT (RowInfoArray != NULL);\r
501 //\r
57ee276f 502 // Explicit Line break characters are ignored, so the updated parameter RowInfoArraySize by StringToImage will\r
b3154720 503 // always be 1 or 0 (if there is no valid Unicode Char can be printed). ASSERT here to make sure.\r
504 //\r
505 ASSERT (RowInfoArraySize <= 1);\r
506\r
63fffe4e 507 if (RowInfoArraySize != 0) {\r
508 Width = RowInfoArray[0].LineWidth;\r
509 Height = RowInfoArray[0].LineHeight;\r
510 Delta = Blt->Width * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL);\r
511 } else {\r
512 Width = 0;\r
513 Height = 0;\r
514 Delta = 0;\r
515 }\r
b3154720 516 Status = UgaDraw->Blt (\r
517 UgaDraw,\r
518 (EFI_UGA_PIXEL *) Blt->Image.Bitmap,\r
519 EfiUgaBltBufferToVideo,\r
51969ecb 520 PointX,\r
521 PointY,\r
522 PointX,\r
523 PointY,\r
63fffe4e 524 Width,\r
525 Height,\r
526 Delta\r
b3154720 527 );\r
d9e63d93 528 } else {\r
529 goto Error;\r
b3154720 530 }\r
b3154720 531 FreePool (Blt->Image.Bitmap);\r
b3154720 532 } else {\r
d9e63d93 533 goto Error;\r
b3154720 534 }\r
d9e63d93 535 //\r
536 // Calculate the number of actual printed characters\r
537 //\r
63fffe4e 538 if (RowInfoArraySize != 0) {\r
539 PrintNum = RowInfoArray[0].EndIndex - RowInfoArray[0].StartIndex + 1;\r
540 } else {\r
541 PrintNum = 0;\r
542 }\r
b3154720 543\r
d9e63d93 544 FreePool (RowInfoArray);\r
b3154720 545 FreePool (Blt);\r
d9e63d93 546 return PrintNum;\r
b3154720 547\r
548Error:\r
d9e63d93 549 if (Blt != NULL) {\r
550 FreePool (Blt);\r
b3154720 551 }\r
d9e63d93 552 return 0;\r
b3154720 553}\r
554\r
555/**\r
28d3e14f 556 Prints a formatted Unicode string to a graphics console device specified by \r
b3154720 557 ConsoleOutputHandle defined in the EFI_SYSTEM_TABLE at the given (X,Y) coordinates.\r
558\r
28d3e14f 559 This function prints a formatted Unicode string to the graphics console device \r
560 specified by ConsoleOutputHandle in EFI_SYSTEM_TABLE and returns the number of \r
b9c8d8bd 561 Unicode characters displayed, not including partial characters that may be clipped \r
562 by the right edge of the display. If the length of the formatted Unicode string is\r
563 greater than PcdUefiLibMaxPrintBufferSize, then at most the first \r
d9e63d93 564 PcdUefiLibMaxPrintBufferSize characters are printed.The EFI_HII_FONT_PROTOCOL\r
565 StringToImage() service is used to convert the string to a bitmap using the glyphs \r
566 registered with the HII database. No wrapping is performed, so any portions of the \r
567 string the fall outside the active display region will not be displayed. Please see \r
568 Section 27.2.6 of the UEFI Specification for a description of the supported string\r
569 format including the set of control codes supported by the StringToImage() service.\r
b3154720 570\r
28d3e14f 571 If a graphics console device is not associated with the ConsoleOutputHandle \r
b3154720 572 defined in the EFI_SYSTEM_TABLE then no string is printed, and 0 is returned.\r
28d3e14f 573 If the EFI_HII_FONT_PROTOCOL is not present in the handle database, then no \r
b3154720 574 string is printed, and 0 is returned.\r
575 If Format is NULL, then ASSERT().\r
576 If Format is not aligned on a 16-bit boundary, then ASSERT().\r
cda8ba5e 577 If gST->ConsoleOutputHandle is NULL, then ASSERT().\r
b3154720 578\r
58380e9c 579 @param PointX An X coordinate to print the string.\r
580 @param PointY A Y coordinate to print the string.\r
28d3e14f 581 @param ForeGround The foreground color of the string being printed. This is\r
b3154720 582 an optional parameter that may be NULL. If it is NULL,\r
583 then the foreground color of the current ConOut device\r
584 in the EFI_SYSTEM_TABLE is used.\r
585 @param BackGround The background color of the string being printed. This is\r
28d3e14f 586 an optional parameter that may be NULL. If it is NULL, \r
b3154720 587 then the background color of the current ConOut device\r
588 in the EFI_SYSTEM_TABLE is used.\r
58380e9c 589 @param Format A Null-terminated Unicode format string. See Print Library \r
b3154720 590 for the supported format string syntax.\r
58380e9c 591 @param ... A Variable argument list whose contents are accessed based on \r
28d3e14f 592 the format string specified by Format. \r
b3154720 593\r
cf8ae2f6 594 @return The number of Unicode characters printed.\r
b3154720 595\r
596**/\r
597UINTN\r
598EFIAPI\r
599PrintXY (\r
51969ecb 600 IN UINTN PointX,\r
601 IN UINTN PointY,\r
b3154720 602 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL\r
603 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL\r
604 IN CONST CHAR16 *Format,\r
605 ...\r
606 )\r
607{\r
608 VA_LIST Marker;\r
609 CHAR16 *Buffer;\r
610 UINTN BufferSize;\r
611 UINTN PrintNum;\r
612 UINTN ReturnNum;\r
613\r
614 ASSERT (Format != NULL);\r
615 ASSERT (((UINTN) Format & BIT0) == 0);\r
616\r
617 VA_START (Marker, Format);\r
618\r
619 BufferSize = (PcdGet32 (PcdUefiLibMaxPrintBufferSize) + 1) * sizeof (CHAR16);\r
620\r
621 Buffer = (CHAR16 *) AllocatePool (BufferSize);\r
622 ASSERT (Buffer != NULL);\r
73e4adbe 623\r
b3154720 624 PrintNum = UnicodeVSPrint (Buffer, BufferSize, Format, Marker);\r
625\r
3bbe68a3 626 VA_END (Marker);\r
627\r
51969ecb 628 ReturnNum = InternalPrintGraphic (PointX, PointY, ForeGround, BackGround, Buffer, PrintNum);\r
b3154720 629\r
630 FreePool (Buffer);\r
631\r
632 return ReturnNum;\r
633}\r
634\r
635/**\r
28d3e14f 636 Prints a formatted ASCII string to a graphics console device specified by \r
b3154720 637 ConsoleOutputHandle defined in the EFI_SYSTEM_TABLE at the given (X,Y) coordinates.\r
638\r
28d3e14f 639 This function prints a formatted ASCII string to the graphics console device \r
640 specified by ConsoleOutputHandle in EFI_SYSTEM_TABLE and returns the number of \r
b9c8d8bd 641 ASCII characters displayed, not including partial characters that may be clipped \r
642 by the right edge of the display. If the length of the formatted ASCII string is\r
643 greater than PcdUefiLibMaxPrintBufferSize, then at most the first \r
d9e63d93 644 PcdUefiLibMaxPrintBufferSize characters are printed.The EFI_HII_FONT_PROTOCOL\r
645 StringToImage() service is used to convert the string to a bitmap using the glyphs \r
646 registered with the HII database. No wrapping is performed, so any portions of the \r
647 string the fall outside the active display region will not be displayed. Please see \r
648 Section 27.2.6 of the UEFI Specification for a description of the supported string\r
649 format including the set of control codes supported by the StringToImage() service.\r
b3154720 650\r
28d3e14f 651 If a graphics console device is not associated with the ConsoleOutputHandle \r
b3154720 652 defined in the EFI_SYSTEM_TABLE then no string is printed, and 0 is returned.\r
28d3e14f 653 If the EFI_HII_FONT_PROTOCOL is not present in the handle database, then no \r
b3154720 654 string is printed, and 0 is returned.\r
655 If Format is NULL, then ASSERT().\r
cda8ba5e 656 If gST->ConsoleOutputHandle is NULL, then ASSERT().\r
b3154720 657\r
58380e9c 658 @param PointX An X coordinate to print the string.\r
659 @param PointY A Y coordinate to print the string.\r
28d3e14f 660 @param ForeGround The foreground color of the string being printed. This is\r
b3154720 661 an optional parameter that may be NULL. If it is NULL,\r
662 then the foreground color of the current ConOut device\r
663 in the EFI_SYSTEM_TABLE is used.\r
664 @param BackGround The background color of the string being printed. This is\r
28d3e14f 665 an optional parameter that may be NULL. If it is NULL, \r
b3154720 666 then the background color of the current ConOut device\r
667 in the EFI_SYSTEM_TABLE is used.\r
58380e9c 668 @param Format A Null-terminated ASCII format string. See Print Library \r
b3154720 669 for the supported format string syntax.\r
28d3e14f 670 @param ... Variable argument list whose contents are accessed based on \r
671 the format string specified by Format. \r
b3154720 672\r
cf8ae2f6 673 @return The number of ASCII characters printed.\r
b3154720 674\r
675**/\r
676UINTN\r
677EFIAPI\r
678AsciiPrintXY (\r
51969ecb 679 IN UINTN PointX,\r
680 IN UINTN PointY,\r
b3154720 681 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL\r
682 IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL\r
683 IN CONST CHAR8 *Format,\r
684 ...\r
685 )\r
686{\r
687 VA_LIST Marker;\r
688 CHAR16 *Buffer;\r
689 UINTN BufferSize;\r
690 UINTN PrintNum;\r
691 UINTN ReturnNum;\r
692\r
693 ASSERT (Format != NULL);\r
694\r
695 VA_START (Marker, Format);\r
696\r
697 BufferSize = (PcdGet32 (PcdUefiLibMaxPrintBufferSize) + 1) * sizeof (CHAR16);\r
698\r
699 Buffer = (CHAR16 *) AllocatePool (BufferSize);\r
700 ASSERT (Buffer != NULL);\r
73e4adbe 701\r
b3154720 702 PrintNum = UnicodeSPrintAsciiFormat (Buffer, BufferSize, Format, Marker);\r
703\r
3bbe68a3 704 VA_END (Marker);\r
705\r
51969ecb 706 ReturnNum = InternalPrintGraphic (PointX, PointY, ForeGround, BackGround, Buffer, PrintNum);\r
b3154720 707\r
708 FreePool (Buffer);\r
73e4adbe 709\r
b3154720 710 return ReturnNum;\r
711}\r
712\r
f405c067 713/** \r
714 Appends a formatted Unicode string to a Null-terminated Unicode string\r
715 \r
716 This function appends a formatted Unicode string to the Null-terminated \r
717 Unicode string specified by String. String is optional and may be NULL.\r
718 Storage for the formatted Unicode string returned is allocated using \r
719 AllocatePool(). The pointer to the appended string is returned. The caller\r
720 is responsible for freeing the returned string.\r
721 \r
722 If String is not NULL and not aligned on a 16-bit boundary, then ASSERT().\r
723 If FormatString is NULL, then ASSERT().\r
724 If FormatString is not aligned on a 16-bit boundary, then ASSERT().\r
725 \r
726 @param[in] String A Null-terminated Unicode string.\r
727 @param[in] FormatString A Null-terminated Unicode format string.\r
728 @param[in] Marker VA_LIST marker for the variable argument list.\r
729\r
730 @retval NULL There was not enough available memory.\r
731 @return Null-terminated Unicode string is that is the formatted \r
732 string appended to String.\r
733**/\r
734CHAR16*\r
735EFIAPI\r
736CatVSPrint (\r
737 IN CHAR16 *String, OPTIONAL\r
738 IN CONST CHAR16 *FormatString,\r
739 IN VA_LIST Marker\r
740 )\r
741{\r
742 UINTN CharactersRequired;\r
743 UINTN SizeRequired;\r
744 CHAR16 *BufferToReturn;\r
745\r
746 CharactersRequired = SPrintLength(FormatString, Marker);\r
747\r
748 if (String != NULL) {\r
749 SizeRequired = StrSize(String) + (CharactersRequired * sizeof(CHAR16));\r
750 } else {\r
751 SizeRequired = sizeof(CHAR16) + (CharactersRequired * sizeof(CHAR16));\r
752 }\r
753\r
754 BufferToReturn = AllocateZeroPool(SizeRequired);\r
755\r
756 if (BufferToReturn == NULL) {\r
757 return NULL;\r
758 }\r
759\r
760 if (String != NULL) {\r
761 StrCpy(BufferToReturn, String);\r
762 }\r
763\r
764 UnicodeVSPrint(BufferToReturn + StrLen(BufferToReturn), (CharactersRequired+1) * sizeof(CHAR16), FormatString, Marker);\r
765\r
766 ASSERT(StrSize(BufferToReturn)==SizeRequired);\r
767\r
768 return (BufferToReturn);\r
769}\r
770\r
771/** \r
772 Appends a formatted Unicode string to a Null-terminated Unicode string\r
773 \r
774 This function appends a formatted Unicode string to the Null-terminated \r
775 Unicode string specified by String. String is optional and may be NULL.\r
776 Storage for the formatted Unicode string returned is allocated using \r
777 AllocatePool(). The pointer to the appended string is returned. The caller\r
778 is responsible for freeing the returned string.\r
779 \r
780 If String is not NULL and not aligned on a 16-bit boundary, then ASSERT().\r
781 If FormatString is NULL, then ASSERT().\r
782 If FormatString is not aligned on a 16-bit boundary, then ASSERT().\r
783 \r
784 @param[in] String A Null-terminated Unicode string.\r
785 @param[in] FormatString A Null-terminated Unicode format string.\r
786 @param[in] ... The variable argument list whose contents are \r
787 accessed based on the format string specified by \r
788 FormatString.\r
789\r
790 @retval NULL There was not enough available memory.\r
791 @return Null-terminated Unicode string is that is the formatted \r
792 string appended to String.\r
793**/\r
794CHAR16 *\r
795EFIAPI\r
796CatSPrint (\r
797 IN CHAR16 *String, OPTIONAL\r
798 IN CONST CHAR16 *FormatString,\r
799 ...\r
800 )\r
801{\r
802 VA_LIST Marker;\r
3bbe68a3 803 CHAR16 *NewString;\r
804\r
f405c067 805 VA_START (Marker, FormatString);\r
3bbe68a3 806 NewString = CatVSPrint(String, FormatString, Marker);\r
807 VA_END (Marker);\r
808 return NewString;\r
f405c067 809}\r
810\r