Files
itgmania212121/stepmania/src/RageLog.cpp
T

176 lines
4.0 KiB
C++
Raw Normal View History

2003-02-16 04:01:45 +00:00
#include "global.h"
2002-05-01 19:14:55 +00:00
/*
-----------------------------------------------------------------------------
Class: RageLog
Desc: See header.
2003-01-24 01:35:15 +00:00
Copyright (c) 2001-2003 by the person(s) listed below. All rights reserved.
2002-05-01 19:14:55 +00:00
Chris Danford
2003-01-24 01:35:15 +00:00
Glenn Maynard
2002-05-01 19:14:55 +00:00
-----------------------------------------------------------------------------
*/
2002-08-22 20:21:37 +00:00
2003-01-24 23:24:14 +00:00
#include "StepMania.h"
2002-05-01 19:14:55 +00:00
#include "RageLog.h"
#include "RageUtil.h"
#include <fstream>
2003-02-14 07:18:00 +00:00
#include <time.h>
2002-06-14 22:25:22 +00:00
2002-05-01 19:14:55 +00:00
RageLog* LOG; // global and accessable from anywhere in the program
2003-01-24 01:35:15 +00:00
/* We have a couple log types and a couple logs.
*
* Traces are for very verbose debug information. Use them as much as you want.
*
* Warnings are for things that shouldn't happen, but can be dealt with. (If
* they can't be dealt with, use RageException::Throw, which will also send a
* warning.)
*
* Info is for important bits of information. These should be used selectively.
* Try to keep Info text dense; lots of information is fine, but try to keep
* it to a reasonable total length.
*
* log.txt receives all logs. This file can get rather large.
*
* info.txt receives warnings and infos. This file should be fairly small; small
* enough to be mailed without having to be edited or zipped, and small enough
* to be very easily read.
*
*/
2002-05-01 19:14:55 +00:00
// constants
#define LOG_FILE_NAME "log.txt"
2003-01-24 01:35:15 +00:00
#define INFO_FILE_NAME "info.txt"
/* staticlog gets info.txt
* crashlog gets log.txt */
enum {
2003-02-17 06:34:43 +00:00
/* If this is set, the message will also be written to info.txt and
* will be flagged "important" when sent to HOOKS->Log. (info and warnings) */
WRITE_TO_INFO = 0x01,
/* Whether this line should be loud when written to log.txt (warnings). */
WRITE_LOUD = 0x02
2003-01-24 01:35:15 +00:00
};
2002-05-01 19:14:55 +00:00
RageLog::RageLog()
{
// delete old log files
2002-12-18 06:45:11 +00:00
remove( LOG_FILE_NAME );
2003-01-24 01:35:15 +00:00
remove( INFO_FILE_NAME );
2002-05-01 19:14:55 +00:00
// Open log file and leave it open.
2002-05-01 19:14:55 +00:00
m_fileLog = fopen( LOG_FILE_NAME, "w" );
2003-01-24 01:35:15 +00:00
m_fileInfo = fopen( INFO_FILE_NAME, "w" );
2002-05-01 19:14:55 +00:00
2002-11-16 09:12:55 +00:00
#if defined(_MSC_VER)
this->Trace( "Last compiled on %s.", __TIMESTAMP__ );
2002-11-16 09:12:55 +00:00
#endif
2003-02-14 07:18:00 +00:00
time_t cur_time;
time(&cur_time);
const struct tm *now = localtime(&cur_time);
this->Trace( "Log starting %.4d-%.2d-%.2d %.2d:%.2d:%.2d",
2003-02-14 07:18:00 +00:00
1900+now->tm_year, now->tm_mon, now->tm_mday, now->tm_hour, now->tm_min, now->tm_sec );
2003-01-24 02:16:43 +00:00
this->Trace( "" );
2002-05-01 19:14:55 +00:00
}
RageLog::~RageLog()
{
Flush();
2003-02-15 00:13:23 +00:00
HideConsole();
2003-01-24 01:35:15 +00:00
if(m_fileLog) fclose( m_fileLog );
if(m_fileInfo) fclose( m_fileInfo );
2002-05-01 19:14:55 +00:00
}
2002-05-29 09:47:24 +00:00
void RageLog::ShowConsole()
{
2003-01-24 01:35:15 +00:00
#if defined(WIN32)
2002-05-29 09:47:24 +00:00
// create a new console window and attach standard handles
AllocConsole();
freopen("CONOUT$","wb",stdout);
freopen("CONOUT$","wb",stderr);
2003-01-24 01:35:15 +00:00
#endif
2002-05-29 09:47:24 +00:00
}
void RageLog::HideConsole()
{
2003-01-24 01:35:15 +00:00
#if defined(WIN32)
2002-05-29 09:47:24 +00:00
FreeConsole();
2003-01-24 01:35:15 +00:00
#endif
2002-05-29 09:47:24 +00:00
}
void RageLog::Trace( const char *fmt, ...)
2002-05-01 19:14:55 +00:00
{
va_list va;
va_start(va, fmt);
CString sBuff = vssprintf( fmt, va );
va_end(va);
2002-05-01 19:14:55 +00:00
2003-01-24 01:35:15 +00:00
Write(0, sBuff);
2002-05-01 19:14:55 +00:00
}
2003-01-19 05:00:21 +00:00
/* Use this for more important information; it'll always be included
* in crash dumps. */
void RageLog::Info( const char *fmt, ...)
{
va_list va;
va_start(va, fmt);
CString sBuff = vssprintf( fmt, va );
va_end(va);
2003-01-24 01:35:15 +00:00
2003-02-17 06:34:43 +00:00
Write(WRITE_TO_INFO, sBuff);
2003-01-19 05:00:21 +00:00
}
void RageLog::Warn( const char *fmt, ...)
{
va_list va;
va_start(va, fmt);
CString sBuff = vssprintf( fmt, va );
va_end(va);
2003-02-17 06:34:43 +00:00
Write(WRITE_TO_INFO | WRITE_LOUD, ssprintf("WARNING: %s", sBuff.GetString()));
2003-01-24 01:35:15 +00:00
}
2003-02-17 06:34:43 +00:00
/* When */
2003-01-24 01:35:15 +00:00
void RageLog::Write( int where, CString str)
{
2003-02-17 06:34:43 +00:00
if( where&WRITE_TO_INFO && m_fileInfo )
2003-01-24 23:24:14 +00:00
fprintf(m_fileInfo, "%s\n", str.GetString() );
2003-02-17 06:34:43 +00:00
HOOKS->Log(str, where & WRITE_TO_INFO);
/* Only do this for log.txt and stdout. The other outputs are
* fairly quiet anyway, so the prepended "WARNING" makes them stand
* out well enough and this is just clutter. */
if( where & WRITE_LOUD )
{
str = ssprintf(
"/////////////////////////////////////////\n"
"%s\n"
"/////////////////////////////////////////",
str.GetString());
}
if( m_fileLog )
fprintf(m_fileLog, "%s\n", str.GetString() );
2003-01-24 01:35:15 +00:00
printf("%s\n", str.GetString() );
#ifdef DEBUG
Flush();
#else
2003-02-18 06:13:31 +00:00
if(where & WRITE_TO_INFO)
2003-01-24 01:35:15 +00:00
Flush();
#endif
2002-05-01 19:14:55 +00:00
}
void RageLog::Flush()
{
fflush( m_fileLog );
2003-01-24 23:24:14 +00:00
fflush( m_fileInfo );
2002-05-01 19:14:55 +00:00
}