78 lines
2.8 KiB
C++
78 lines
2.8 KiB
C++
/*
|
|
Copyright 2016 Statoil ASA.
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM 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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM 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 OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <opm/common/OpmLog/EclipsePRTLog.hpp>
|
|
#include <opm/common/OpmLog/LogUtil.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
|
|
void EclipsePRTLog::addMessageUnconditionally(int64_t messageType, const std::string& message)
|
|
{
|
|
StreamLog::addMessageUnconditionally(messageType, message);
|
|
m_count[messageType]++;
|
|
}
|
|
|
|
|
|
size_t EclipsePRTLog::numMessages(int64_t messageType) const
|
|
{
|
|
if (Log::isPower2( messageType )) {
|
|
auto iter = m_count.find( messageType );
|
|
if (iter == m_count.end())
|
|
return 0;
|
|
else
|
|
return (*iter).second;
|
|
} else
|
|
throw std::invalid_argument("The messageType ID must be 2^n");
|
|
}
|
|
|
|
|
|
EclipsePRTLog::~EclipsePRTLog()
|
|
{
|
|
if( ! print_summary_ )
|
|
{
|
|
return;
|
|
}
|
|
|
|
//output summary.
|
|
const std::string summary_msg = "\n\nError summary:" +
|
|
std::string("\nWarnings " + std::to_string(numMessages(Log::MessageType::Warning))) +
|
|
std::string("\nInfo " + std::to_string(numMessages(Log::MessageType::Info))) +
|
|
std::string("\nErrors " + std::to_string(numMessages(Log::MessageType::Error))) +
|
|
std::string("\nBugs " + std::to_string(numMessages(Log::MessageType::Bug))) +
|
|
std::string("\nDebug " + std::to_string(numMessages(Log::MessageType::Debug))) +
|
|
std::string("\nProblems " + std::to_string(numMessages(Log::MessageType::Problem))) +"\n";
|
|
StreamLog::addTaggedMessage(Log::MessageType::Info, "", summary_msg);
|
|
}
|
|
|
|
EclipsePRTLog::EclipsePRTLog(const std::string& logFile,
|
|
int64_t messageMask,
|
|
bool append,
|
|
bool print_summary)
|
|
: StreamLog(logFile, messageMask, append),
|
|
print_summary_(print_summary)
|
|
{}
|
|
|
|
EclipsePRTLog::EclipsePRTLog(std::ostream& os,
|
|
int64_t messageMask,
|
|
bool print_summary)
|
|
: StreamLog(os, messageMask), print_summary_(print_summary)
|
|
{}
|
|
}
|