60 lines
2.2 KiB
C++
60 lines
2.2 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::addMessage(int64_t messageType, const std::string& message)
|
||
|
{
|
||
|
StreamLog::addMessage(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()
|
||
|
{
|
||
|
//output summary.
|
||
|
const std::string summary_msg = "\n\nError summary:" +
|
||
|
std::string("\nWarnings " + std::to_string(numMessages(Log::MessageType::Warning))) +
|
||
|
std::string("\nProblems " + std::to_string(numMessages(Log::MessageType::Problem))) +
|
||
|
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";
|
||
|
addMessage(Log::MessageType::Info, summary_msg);
|
||
|
}
|
||
|
|
||
|
}
|