所以我正在编写一个日志库来记录各种事情,当我对其进行测试时,它一直在崩溃。当我将日志消息写入 ofstream 文件时,我将异常范围缩小到写入函数。我解析消息和内容,然后实际调用 ofstream::write()。这是我收到重新运行时间错误的部分:
void Logger::writeMessage(LogMessage* message)
{
if(message==NULL)
return;
char buffer[MAX_PATH];
switch(message->GetMessageType())
{
case LOGMESSAGE_HEADER:
sprintf(buffer, m_logInfo->headerFormat, message->GetMessage().c_str());
break;
case LOGMESSAGE_FOOTER:
sprintf(buffer, m_logInfo->footerFormat, message->GetMessage().c_str());
break;
case LOGMESSAGE_DEBUG:
sprintf(buffer, "%s %s", m_logInfo->debugPrefix.c_str(), message->GetMessage().c_str());
break;
case LOGMESSAGE_ADDRESS:
sprintf(buffer, "%s %s", m_logInfo->addressPrefix.c_str(), message->GetMessage().c_str());
break;
case LOGMESSAGE_VALUE:
sprintf(buffer, "%s %s", m_logInfo->valuePrefix.c_str(), message->GetMessage().c_str());
break;
case LOGMESSAGE_CUSTOM:
default:
sprintf(buffer, "test!", message->GetMessage().c_str());
break;
}
try
{
if(!m_ofile.is_open() || !m_ofile.good())
return;
//string formattedMessage(buffer);
//formattedMessage.append(m_logInfo->lineTerminator);
string result;
if(message->IsUsingTimestamp())
{
m_ofile << message->GetTimeStamp().GetTimeString().c_str() << " ";
//result.append(message->GetTimeStamp().GetTimeString());
//result.append(" ");
}
m_ofile << buffer << m_logInfo->lineTerminator;
//result.append(formattedMessage);
//result.push_back('\0');
//m_ofile.write(result.c_str(), MAX_PATH);
//m_ofile << result.c_str();
}
catch(std::exception &e)
{
MessageBox(NULL, e.what(), "ERROR", NULL);
}
}
如您所见,我在 try catch 块中调用,我什至检查文件是否有效并打开。当我在调用及其周围设置断点时,调用工作正常,但是一旦它到达函数的末尾,它就会给我这个:
LoggerTest.exe 中 0x773515ee 处未处理的异常:0xC0000005:访问冲突写入位置 0xfeeefeee。
然后它在 xlock.cpp 中显示此函数中发生的错误:
__thiscall _Lockit::_Lockit(int kind)
: _Locktype(kind)
{ // lock the mutex
if (_Locktype < MAX_LOCK)
_Mtxlock(&mtx[_Locktype]);
}
我的猜测是我在某处有一个错误的字符串或指针,但我无法确定它。
注意:我试着做
m_ofile << "test!";
现在它让我在这里断言失败:_ASSERTE(_CrtIsValidHeapPointer(pUserData));