📄 loggable.cpp
字号:
//this file is part of eMule
//Copyright (C)2002 Merkur ( devs@emule-project.net / http://www.emule-project.net )
//
//This program is free software; you can redistribute it and/or
//modify it under the terms of the GNU General Public License
//as published by the Free Software Foundation; either
//version 2 of the License, or (at your option) any later version.
//
//This program is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//GNU General Public License for more details.
//
//You should have received a copy of the GNU General Public License
//along with this program; if not, write to the Free Software
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include "stdafx.h"
#include <io.h>
#include <share.h>
#include "emule.h"
#include "loggable.h"
#include "OtherFunctions.h"
#include "Preferences.h"
#include "emuledlg.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
void CLoggable::AddLogLine(bool addtostatusbar, UINT nID, ...)
{
va_list argptr;
va_start(argptr, nID);
AddLogText(false, addtostatusbar, DLP_DEFAULT, GetResString(nID), argptr);
va_end(argptr);
}
void CLoggable::AddLogLine(bool addtostatusbar, LPCTSTR line, ...)
{
ASSERT(line != NULL);
va_list argptr;
va_start(argptr, line);
AddLogText(false, addtostatusbar, DLP_DEFAULT, line, argptr);
va_end(argptr);
}
void CLoggable::AddDebugLogLine(bool addtostatusbar, UINT nID, ...)
{
va_list argptr;
va_start(argptr, nID);
AddLogText(true, addtostatusbar, DLP_DEFAULT, GetResString(nID), argptr);
va_end(argptr);
}
void CLoggable::AddDebugLogLine(bool addtostatusbar, LPCTSTR line, ...)
{
ASSERT(line != NULL);
va_list argptr;
va_start(argptr, line);
AddLogText(true, addtostatusbar, DLP_DEFAULT, line, argptr);
va_end(argptr);
}
void CLoggable::AddDebugLogLine(EDebugLogPriority Priority, bool addtostatusbar, UINT nID, ...)
{
va_list argptr;
va_start(argptr, nID);
AddLogText(true, addtostatusbar, Priority, GetResString(nID), argptr);
va_end(argptr);
}
void CLoggable::AddDebugLogLine(EDebugLogPriority Priority, bool addtostatusbar, LPCTSTR line, ...)
{
ASSERT(line != NULL);
va_list argptr;
va_start(argptr, line);
AddLogText(true, addtostatusbar, Priority, line, argptr);
va_end(argptr);
}
void CLoggable::AddLogText(bool debug, bool addtostatusbar, EDebugLogPriority dlpPriority,LPCTSTR line, va_list argptr)
{
ASSERT(line != NULL);
if (debug && !(thePrefs.GetVerbose() && dlpPriority >= thePrefs.GetVerboseLogPriority()) )
return;
const size_t bufferSize = 1000;
TCHAR bufferline[bufferSize];
if (_vsntprintf(bufferline, bufferSize, line, argptr) == -1)
bufferline[bufferSize - 1] = _T('\0');
if (theApp.emuledlg)
theApp.emuledlg->AddLogText(addtostatusbar, bufferline, debug); //Cax2 - debug log and normal log handled by the same subroutine now
#ifdef _DEBUG
else{
TRACE(_T("App Log: %s\n"), bufferline);
}
#endif
}
// DbT:Logging
void CLoggable::PacketToDebugLogLine(LPCTSTR info, char * packet, uint32 size, uint8 opcode, EDebugLogPriority dlpPriority) const
{
CString buffer;
buffer.Format(_T("%s: %02x, size=%u"), info, opcode, size);
buffer += _T(", data=[");
uint32 maxsize = 100;
for(uint32 i = 0; i < size && i < maxsize; i++){
buffer.AppendFormat(_T("%02x"), (uint8)packet[i]);
buffer += _T(" ");
}
buffer += ((size < maxsize) ? _T("]") : _T("..]"));
AddDebugLogLine(dlpPriority, false, buffer);
}
void CLoggable::TagToDebugLogLine(LPCTSTR info, LPCTSTR tag, uint32 size, uint8 opcode) const
{
CString buffer;
buffer.Format(_T("%s: %02x, size=%u"), info, opcode, size);
buffer += _T(", data=[");
uint32 maxsize = 100;
for(uint32 i = 0; i < size && i < maxsize; i++){
buffer.AppendFormat(_T("%02x"), (uint8)tag[i]);
buffer += _T(" ");
}
buffer += ((size < maxsize) ? _T("]") : _T("..]"));
AddDebugLogLine(false, buffer);
}
// DbT:End
///////////////////////////////////////////////////////////////////////////////
// CLog
CLog::CLog()
{
(void)m_strFilePath;
m_uMaxFileSize = (UINT)-1;
m_uBytesWritten = 0;
m_tStarted = 0;
m_fp = NULL;
m_bInOpenCall = false;
}
CLog::~CLog()
{
Close();
}
const CString& CLog::GetFilePath() const
{
return m_strFilePath;
}
bool CLog::SetFilePath(LPCTSTR pszFilePath)
{
if (IsOpen())
return false;
m_strFilePath = pszFilePath;
return true;
}
void CLog::SetMaxFileSize(UINT uMaxFileSize)
{
if (uMaxFileSize == 0)
uMaxFileSize = (UINT)-1;
else if (uMaxFileSize < 0x10000)
uMaxFileSize = 0x10000;
m_uMaxFileSize = uMaxFileSize;
}
bool CLog::IsOpen() const
{
return m_fp != NULL;
}
bool CLog::Create(LPCTSTR pszFilePath, UINT uMaxFileSize)
{
Close();
m_strFilePath = pszFilePath;
m_uMaxFileSize = uMaxFileSize;
return Open();
}
bool CLog::Open()
{
if (m_fp != NULL)
return true;
m_fp = _tfsopen(m_strFilePath, _T("a+b"), _SH_DENYWR);
if (m_fp != NULL)
{
m_tStarted = time(NULL);
m_uBytesWritten = _filelength(fileno(m_fp));
#ifdef _UNICODE
if (m_uBytesWritten == 0)
{
// write Unicode byte-order mark 0xFEFF
fputwc(0xFEFF, m_fp);
}
else if (m_uBytesWritten >= sizeof(WORD))
{
// check for Unicode byte-order mark 0xFEFF
WORD wBOM;
if (fread(&wBOM, sizeof(wBOM), 1, m_fp) == 1)
{
if (wBOM == 0xFEFF)
{
// log file already in Unicode format
fseek(m_fp, 0, SEEK_END); // actually not needed because file is opened in 'Append' mode..
}
else
{
ASSERT( !m_bInOpenCall );
if (!m_bInOpenCall) // just for safety
{
m_bInOpenCall = true;
StartNewLogFile();
m_bInOpenCall = false;
}
}
}
}
#endif
}
return m_fp != NULL;
}
bool CLog::Close()
{
if (m_fp == NULL)
return true;
bool bResult = (fclose(m_fp) == 0);
m_fp = NULL;
m_tStarted = 0;
m_uBytesWritten = 0;
return bResult;
}
bool CLog::Log(LPCTSTR pszMsg, int iLen)
{
if (m_fp == NULL)
return false;
// don't use 'fputs' + '_filelength' -- gives poor performance
size_t uToWrite = ((iLen == -1) ? _tcslen(pszMsg) : (size_t)iLen)*sizeof(TCHAR);
size_t uWritten = fwrite(pszMsg, 1, uToWrite, m_fp);
bool bResult = !ferror(m_fp);
m_uBytesWritten += uWritten;
if (m_uBytesWritten >= m_uMaxFileSize)
StartNewLogFile();
else
fflush(m_fp);
return bResult;
}
void CLog::StartNewLogFile()
{
time_t tStarted = m_tStarted;
Close();
TCHAR szDateLogStarted[40];
_tcsftime(szDateLogStarted, ARRSIZE(szDateLogStarted), _T("%Y.%m.%d %H.%M.%S"), localtime(&tStarted));
TCHAR szDrv[_MAX_DRIVE];
TCHAR szDir[_MAX_DIR];
TCHAR szNam[_MAX_FNAME];
TCHAR szExt[_MAX_EXT];
_tsplitpath(m_strFilePath, szDrv, szDir, szNam, szExt);
CString strLogBakNam;
strLogBakNam = szNam;
strLogBakNam += _T(" - ");
strLogBakNam += szDateLogStarted;
TCHAR szLogBakFilePath[MAX_PATH];
_tmakepath(szLogBakFilePath, szDrv, szDir, strLogBakNam, szExt);
if (_trename(m_strFilePath, szLogBakFilePath) != 0)
_tremove(m_strFilePath);
Open();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -