X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flog.cpp;h=e4d410673d9bea7f8e4f3ea215980e31636c0567;hb=b9917a7b287b02ae3eee071f970d57c9e8720f0a;hp=f748183ab1bfd3af24fd3a43072b9a8341bc1737;hpb=0031c06df2f7f099ca5ecf1632f46b92f6b0dd79;p=virtualjaguar diff --git a/src/log.cpp b/src/log.cpp index f748183..e4d4106 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -1,20 +1,26 @@ // // Log handler // -// by cal2 +// by Cal2 // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) -// Cleanups by James L. Hammons +// Cleanups/new stuff by James L. Hammons // +#include "types.h" #include "log.h" -FILE * log_stream = NULL; +#define MAX_LOG_SIZE 10000000 // Maximum size of log file (10 MB) + +static FILE * log_stream = NULL; +static uint32 logSize = 0; int log_init(char * path) { log_stream = fopen(path, "wrt"); + if (log_stream == NULL) return 0; + return 1; } @@ -27,3 +33,25 @@ void log_done(void) { fclose(log_stream); } + +// +// This logger is used mainly to ensure that text gets written to the log file +// even if the program crashes. The performance hit is acceptable in this case! +// +void WriteLog(const char * text, ...) +{ + va_list arg; + + va_start(arg, text); + logSize += vfprintf(log_stream, text, arg); + + if (logSize > MAX_LOG_SIZE) + { + fflush(log_stream); + fclose(log_stream); + exit(1); + }//*/ + + va_end(arg); + fflush(log_stream); // Make sure that text is written! +}