#include #include #include "nx/string.h" #include "socket.h" #include "log.h" #include "nx/circularbuffer.h" Array* g_hooks = NULL; Array* hooks() { if (!g_hooks) { g_hooks = new Array(); } return g_hooks; } void registerPrintHook(PrintHook func) { hooks()->push(func); } FILE* f = NULL; CircularBuffer* g_printLog = NULL; CircularBuffer& printLog() { if (!g_printLog) { g_printLog = new CircularBuffer(); } 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(); } } */