CloverBootloader/rEFIt_UEFI/Platform/Posix/stdio.cpp

63 lines
1.4 KiB
C++
Raw Normal View History

#include "stdio.h"
#include "stdarg.h"
#include <Library/printf_lite.h>
extern "C" {
2020-04-04 15:50:13 +02:00
# include <Library/UefiLib.h>
# include <Library/PrintLib.h>
// UINTN
// EFIAPI
// AsciiSPrint (
// OUT CHAR8 *StartOfBuffer,
// IN UINTN BufferSize,
// IN CONST CHAR8 *FormatString,
// ...
// );
}
#include "../../cpp_foundation/XString.h"
2020-03-28 07:36:07 +01:00
#include "../../cpp_foundation/XStringW.h"
static XString stdio_static_buf;
static XStringW stdio_static_wbuf;
int printf(const char* format, ...)
{
va_list va;
2020-03-28 07:36:07 +01:00
// AsciiPrint seems no to work with utf8 chars. We have to use Print instead
va_start (va, format);
stdio_static_wbuf.vSWPrintf(format, va);
2020-03-28 07:36:07 +01:00
int ret = (int)Print(L"%s", stdio_static_wbuf.wc_str());
va_end(va);
return ret;
}
2020-03-26 13:59:20 +01:00
const char* strerror(EFI_STATUS Status)
{
UINTN n = 0;
do {
stdio_static_buf.CheckSize(stdio_static_buf.length()+10);
2020-03-26 13:59:20 +01:00
n = AsciiSPrint(stdio_static_buf.dataSized(0, stdio_static_buf.allocatedSize()), stdio_static_buf.allocatedSize(), "%r", Status);
} while ( n > stdio_static_buf.allocatedSize() - 2 );
return stdio_static_buf.data();
}
2020-03-26 13:59:20 +01:00
const char* strguid(EFI_GUID* guid)
{
UINTN n = 0;
do {
stdio_static_buf.CheckSize(stdio_static_buf.length()+10);
2020-03-26 13:59:20 +01:00
n = AsciiSPrint(stdio_static_buf.dataSized(0, stdio_static_buf.allocatedSize()), stdio_static_buf.allocatedSize(), "%g", guid);
} while ( n > stdio_static_buf.allocatedSize() - 2 );
return stdio_static_buf.data();
}