Add EclipsePRTLog backend.

This commit is contained in:
Liu Ming
2016-03-14 11:09:17 +08:00
parent 0979d8050e
commit 289f6c3bdb
3 changed files with 129 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ OpmLog/LogUtil.cpp
OpmLog/Logger.cpp
OpmLog/LogBackend.cpp
OpmLog/StreamLog.cpp
OpmLog/EclipsePRTLog.cpp
OpmLog/OpmLog.cpp )
set( rawdeck_source
@@ -148,6 +149,7 @@ OpmLog/Logger.hpp
OpmLog/OpmLog.hpp
OpmLog/LogUtil.hpp
OpmLog/StreamLog.hpp
OpmLog/EclipsePRTLog.hpp
#
RawDeck/RawConsts.hpp
RawDeck/RawKeyword.hpp

View File

@@ -0,0 +1,80 @@
/*
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/parser/eclipse/OpmLog/EclipsePRTLog.hpp>
#include <opm/parser/eclipse/OpmLog/LogUtil.hpp>
namespace Opm {
EclipsePRTLog::EclipsePRTLog(const std::string& logFile, int64_t messageMask) : StreamLog(logFile, messageMask)
{}
EclipsePRTLog::EclipsePRTLog(std::ostream& os, int64_t messageMask) : StreamLog(os, messageMask)
{}
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");
}
void EclipsePRTLog::clear()
{
m_count.clear();
}
EclipsePRTLog::~EclipsePRTLog()
{
const auto warning = numMessages(Log::MessageType::Warning);
const auto debug = numMessages(Log::MessageType::Debug);
const auto info = numMessages(Log::MessageType::Info);
const auto error = numMessages(Log::MessageType::Error);
const auto problem = numMessages(Log::MessageType::Problem);
const auto bug = numMessages(Log::MessageType::Bug);
//output summary.
const std::string summary_msg = "\n\nError summary:" +
std::string("\nWarnings " + warning) +
std::string("\nProblems " + problem) +
std::string("\nErrors " + error) +
std::string("\nBugs " + bug) +
std::string("\nDebug " + debug) +
std::string("\nProblems " + problem) +"\n";
addMessage(Log::MessageType::Info, summary_msg);
}
}

View File

@@ -0,0 +1,47 @@
/*
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/>.
*/
#ifndef ECLIPSEPRTLOG_H
#define ECLIPSEPRTLOG_H
#include <map>
#include <string>
#include <opm/parser/eclipse/OpmLog/StreamLog.hpp>
namespace Opm {
class EclipsePRTLog : public StreamLog {
public:
EclipsePRTLog(const std::string& logFile, int64_t messageMask);
EclipsePRTLog(std::ostream& os, int64_t messageMask);
void addMessage(int64_t messageType, const std::string& message);
size_t numMessages(int64_t messageType) const;
void clear();
~EclipsePRTLog();
private:
std::map<int64_t, size_t> m_count;
};
}
#endif // ECLIPSEPRTLOG_H