amxmodx/amxmodx/amxxlog.cpp

264 lines
5.6 KiB
C++
Raw Normal View History

2014-08-04 03:36:20 -05:00
// vim: set ts=4 sw=4 tw=99 noet:
//
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
// Copyright (C) The AMX Mod X Development Team.
//
// This software is licensed under the GNU General Public License, version 3 or higher.
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
// https://alliedmods.net/amxmodx-license
// amxx_logging localinfo:
// 0 = no logging
// 1 = one logfile / day
// 2 = one logfile / map
// 3 = HL Logs
#include <time.h>
#if defined(_WIN32)
2005-09-10 00:59:24 +00:00
#include <io.h>
#endif
#include "amxmodx.h"
#if defined(_WIN32WIN32)
2005-09-10 00:59:24 +00:00
#define vsnprintf _vsnprintf
#endif
#include <amxmodx_version.h>
CLog::CLog()
{
m_LogType = 0;
m_LogFile.clear();
m_FoundError = false;
m_LoggedErrMap = false;
}
CLog::~CLog()
{
CloseFile();
}
void CLog::CloseFile()
{
// log "log file closed" to old file, if any
if (!m_LogFile.empty())
{
2004-08-13 08:46:04 +00:00
FILE *fp = fopen(m_LogFile.c_str(), "r");
2005-09-10 00:59:24 +00:00
if (fp)
{
fclose(fp);
2004-10-03 16:49:09 +00:00
fp = fopen(m_LogFile.c_str(), "a+");
// get time
time_t td;
time(&td);
tm *curTime = localtime(&td);
char date[32];
strftime(date, 31, "%m/%d/%Y - %H:%M:%S", curTime);
fprintf(fp, "L %s: %s\n", date, "Log file closed.");
fclose(fp);
}
2005-09-10 00:59:24 +00:00
m_LogFile.clear();
}
}
void CLog::CreateNewFile()
{
CloseFile();
2005-09-16 23:48:51 +00:00
// build filename
time_t td;
time(&td);
tm *curTime = localtime(&td);
2006-03-19 20:14:24 +00:00
char file[256];
2007-05-03 13:27:51 +00:00
char name[256];
int i = 0;
2005-09-10 00:59:24 +00:00
while (true)
{
2014-08-07 01:42:58 +02:00
UTIL_Format(name, sizeof(name), "%s/L%02d%02d%03d.log", g_log_dir.c_str(), curTime->tm_mon + 1, curTime->tm_mday, i);
2007-05-03 13:27:51 +00:00
build_pathname_r(file, sizeof(file)-1, "%s", name);
2006-03-19 20:39:25 +00:00
FILE *pTmpFile = fopen(file, "r"); // open for reading to check whether the file exists
2005-09-10 00:59:24 +00:00
if (!pTmpFile)
break;
2005-09-10 00:59:24 +00:00
fclose(pTmpFile);
++i;
}
2006-03-19 20:39:25 +00:00
m_LogFile.assign(file);
2005-09-10 00:59:24 +00:00
// Log logfile start
2004-08-13 08:46:04 +00:00
FILE *fp = fopen(m_LogFile.c_str(), "w");
2005-09-10 00:59:24 +00:00
if (!fp)
{
ALERT(at_logged, "[AMXX] Unexpected fatal logging error. AMXX Logging disabled.\n");
SET_LOCALINFO("amxx_logging", "0");
2005-09-10 00:59:24 +00:00
} else {
fprintf(fp, "AMX Mod X log file started (file \"%s\") (version \"%s\")\n", name, AMXX_VERSION);
2004-10-03 16:49:09 +00:00
fclose(fp);
}
}
void CLog::UseFile(const String &fileName)
{
static char file[256];
m_LogFile.assign(build_pathname_r(file, sizeof(file)-1, "%s/%s", g_log_dir.c_str(), fileName.c_str()));
}
void CLog::MapChange()
{
// create dir if not existing
char file[256];
#if defined(__linux__) || defined(__APPLE__)
2005-09-16 23:48:51 +00:00
mkdir(build_pathname_r(file, sizeof(file)-1, "%s", g_log_dir.c_str()), 0700);
#else
2005-09-16 23:48:51 +00:00
mkdir(build_pathname_r(file, sizeof(file)-1, "%s", g_log_dir.c_str()));
#endif
m_LogType = atoi(get_localinfo("amxx_logging", "1"));
2005-09-10 00:59:24 +00:00
if (m_LogType < 0 || m_LogType > 3)
{
SET_LOCALINFO("amxx_logging", "1");
m_LogType = 1;
print_srvconsole("[AMXX] Invalid amxx_logging value; setting back to 1...");
}
m_LoggedErrMap = false;
if (m_LogType == 2)
{
// create new logfile
CreateNewFile();
} else if (m_LogType == 1) {
Log("-------- Mapchange to %s --------", STRING(gpGlobals->mapname));
} else {
return;
}
}
void CLog::Log(const char *fmt, ...)
{
static char file[256];
2005-09-10 00:59:24 +00:00
if (m_LogType == 1 || m_LogType == 2)
{
// get time
time_t td;
time(&td);
tm *curTime = localtime(&td);
char date[32];
strftime(date, 31, "%m/%d/%Y - %H:%M:%S", curTime);
// msg
static char msg[3072];
va_list arglst;
va_start(arglst, fmt);
vsnprintf(msg, 3071, fmt, arglst);
va_end(arglst);
FILE *pF = NULL;
if (m_LogType == 2)
{
2004-08-13 08:46:04 +00:00
pF = fopen(m_LogFile.c_str(), "a+");
if (!pF)
{
CreateNewFile();
2004-08-13 08:46:04 +00:00
pF = fopen(m_LogFile.c_str(), "a+");
2005-09-10 00:59:24 +00:00
if (!pF)
{
2004-08-13 08:46:04 +00:00
ALERT(at_logged, "[AMXX] Unexpected fatal logging error (couldn't open %s for a+). AMXX Logging disabled for this map.\n", m_LogFile.c_str());
m_LogType = 0;
return;
}
}
2005-09-10 00:59:24 +00:00
} else {
2007-05-03 13:27:51 +00:00
build_pathname_r(file, sizeof(file)-1, "%s/L%04d%02d%02d.log", g_log_dir.c_str(), (curTime->tm_year + 1900), curTime->tm_mon + 1, curTime->tm_mday);
pF = fopen(file, "a+");
}
2005-09-16 23:48:51 +00:00
if (pF)
{
fprintf(pF, "L %s: %s\n", date, msg);
fclose(pF);
2005-09-10 00:59:24 +00:00
} else {
ALERT(at_logged, "[AMXX] Unexpected fatal logging error (couldn't open %s for a+). AMXX Logging disabled for this map.\n", file);
m_LogType = 0;
return;
}
// print on server console
print_srvconsole("L %s: %s\n", date, msg);
} else if (m_LogType == 3) {
// build message
static char msg_[3072];
va_list arglst;
va_start(arglst, fmt);
vsnprintf(msg_, 3071, fmt, arglst);
va_end(arglst);
ALERT(at_logged, "%s\n", msg_);
}
}
void CLog::LogError(const char *fmt, ...)
{
static char file[256];
static char name[256];
if (m_FoundError)
{
return;
}
// get time
time_t td;
time(&td);
tm *curTime = localtime(&td);
char date[32];
strftime(date, 31, "%m/%d/%Y - %H:%M:%S", curTime);
// msg
static char msg[3072];
va_list arglst;
va_start(arglst, fmt);
vsnprintf(msg, sizeof(msg)-1, fmt, arglst);
va_end(arglst);
FILE *pF = NULL;
2014-08-07 01:42:58 +02:00
UTIL_Format(name, sizeof(name), "%s/error_%04d%02d%02d.log", g_log_dir.c_str(), curTime->tm_year + 1900, curTime->tm_mon + 1, curTime->tm_mday);
build_pathname_r(file, sizeof(file)-1, "%s", name);
pF = fopen(file, "a+");
if (pF)
{
if (!m_LoggedErrMap)
{
fprintf(pF, "L %s: Start of error session.\n", date);
fprintf(pF, "L %s: Info (map \"%s\") (file \"%s\")\n", date, STRING(gpGlobals->mapname), name);
m_LoggedErrMap = true;
}
fprintf(pF, "L %s: %s\n", date, msg);
fclose(pF);
} else {
ALERT(at_logged, "[AMXX] Unexpected fatal logging error (couldn't open %s for a+). AMXX Error Logging disabled for this map.\n", file);
m_FoundError = true;
return;
}
// print on server console
print_srvconsole("L %s: %s\n", date, msg);
2006-06-06 10:49:33 +00:00
}