mirror of
https://github.com/XorTroll/sysnut.git
synced 2025-04-05 06:21:43 +00:00
168 lines
2.4 KiB
C++
168 lines
2.4 KiB
C++
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include "nx/string.h"
|
|
#include "socket.h"
|
|
#include "log.h"
|
|
#include "nx/circularbuffer.h"
|
|
|
|
Array<PrintHook>* g_hooks = NULL;
|
|
|
|
Array<PrintHook>* hooks()
|
|
{
|
|
if (!g_hooks)
|
|
{
|
|
g_hooks = new Array<PrintHook>();
|
|
}
|
|
return g_hooks;
|
|
}
|
|
|
|
void registerPrintHook(PrintHook func)
|
|
{
|
|
hooks()->push(func);
|
|
}
|
|
|
|
|
|
FILE* f = NULL;
|
|
|
|
CircularBuffer<string, 0x100>* g_printLog = NULL;
|
|
CircularBuffer<string, 0x100>& printLog()
|
|
{
|
|
if (!g_printLog)
|
|
{
|
|
g_printLog = new CircularBuffer<string, 0x100>();
|
|
}
|
|
return *g_printLog;
|
|
}
|
|
|
|
char printBuffer[0x1000];
|
|
|
|
extern Socket* currentSocket;
|
|
|
|
FILE* file()
|
|
{
|
|
if (!f)
|
|
{
|
|
#ifdef _MSC_VER
|
|
f = stdout;
|
|
#else
|
|
f = stdout;
|
|
//f = fopen("/nutd.log", "a");
|
|
#endif
|
|
}
|
|
|
|
return f;
|
|
}
|
|
|
|
|
|
void print(const char * format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
vsprintf(printBuffer, format, args);
|
|
printf("%s", printBuffer);
|
|
|
|
/*if (printBuffer[0] == '\r')
|
|
{
|
|
if (printLog().size())
|
|
{
|
|
printLog().last() = (printBuffer + 1);
|
|
}
|
|
else
|
|
{
|
|
printLog().push(printBuffer + 1);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
string line(printBuffer);
|
|
if (line.length())
|
|
{
|
|
line.pop();
|
|
line.pop();
|
|
line.push('\0');
|
|
}
|
|
printLog().push() = line;
|
|
}*/
|
|
|
|
|
|
va_end(args);
|
|
fflush(f);
|
|
|
|
/*for (auto& f : *hooks())
|
|
{
|
|
f();
|
|
}*/
|
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
|
void fatal(const char * format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
vsprintf(printBuffer, format, args);
|
|
printf("%s", printBuffer);
|
|
printLog().push(printBuffer);
|
|
|
|
va_end(args);
|
|
fflush(f);
|
|
|
|
for (auto& f : g_hooks)
|
|
{
|
|
f();
|
|
}
|
|
}
|
|
|
|
void error(const char * format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
vsprintf(printBuffer, format, args);
|
|
printf("%s", printBuffer);
|
|
printLog().push(printBuffer);
|
|
|
|
va_end(args);
|
|
fflush(f);
|
|
|
|
for (auto& f : g_hooks)
|
|
{
|
|
f();
|
|
}
|
|
}
|
|
|
|
void warning(const char * format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
vsprintf(printBuffer, format, args);
|
|
printf("%s", printBuffer);
|
|
printLog().push(printBuffer);
|
|
|
|
va_end(args);
|
|
fflush(f);
|
|
|
|
for (auto& f : g_hooks)
|
|
{
|
|
f();
|
|
}
|
|
}
|
|
|
|
void debug(const char * format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
vsprintf(printBuffer, format, args);
|
|
printf("%s", printBuffer);
|
|
printLog().push(printBuffer);
|
|
|
|
va_end(args);
|
|
fflush(f);
|
|
|
|
for (auto& f : g_hooks)
|
|
{
|
|
f();
|
|
}
|
|
}
|
|
*/ |