"TVDP*". An importtant change is that we now query the parser canParseKeyword() instead of hasKeyword().
77 lines
3.2 KiB
C++
77 lines
3.2 KiB
C++
/*
|
|
Copyright 2013 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 PARSER_H
|
|
#define PARSER_H
|
|
#include <string>
|
|
#include <map>
|
|
#include <fstream>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <opm/json/JsonObject.hpp>
|
|
|
|
#include <opm/parser/eclipse/RawDeck/RawKeyword.hpp>
|
|
#include <opm/parser/eclipse/Deck/Deck.hpp>
|
|
#include <opm/parser/eclipse/Parser/ParserKeyword.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
/// The hub of the parsing process.
|
|
/// An input file in the eclipse data format is specified, several steps of parsing is performed
|
|
/// and the semantically parsed result is returned.
|
|
|
|
class Parser {
|
|
public:
|
|
Parser(bool addDefault = true);
|
|
|
|
/// The starting point of the parsing process. The supplied file is parsed, and the resulting Deck is returned.
|
|
DeckPtr parse(const std::string &dataFile) const;
|
|
DeckPtr parse(const std::string &dataFile, bool strictParsing) const;
|
|
|
|
/// Method to add ParserKeyword instances, these holding type and size information about the keywords and their data.
|
|
void addKeyword(ParserKeywordConstPtr parserKeyword);
|
|
bool dropKeyword(const std::string& keyword);
|
|
bool canParseKeyword( const std::string& keyword) const;
|
|
ParserKeywordConstPtr getKeyword(const std::string& keyword) const;
|
|
|
|
void loadKeywords(const Json::JsonObject& jsonKeywords);
|
|
bool loadKeywordFromFile(const boost::filesystem::path& configFile);
|
|
|
|
void loadKeywordsFromDirectory(const boost::filesystem::path& directory , bool recursive = true, bool onlyALLCAPS8Files = true);
|
|
size_t size() const;
|
|
private:
|
|
std::map<std::string, ParserKeywordConstPtr> m_parserKeywords;
|
|
std::map<std::string, ParserKeywordConstPtr> m_wildCardKeywords;
|
|
|
|
bool hasKeyword(const std::string& keyword) const;
|
|
bool hasWildCardKeyword(const std::string& keyword) const;
|
|
ParserKeywordConstPtr matchingKeyword(const std::string& keyword) const;
|
|
|
|
bool tryParseKeyword(const DeckConstPtr deck , const std::string& filename , size_t& lineNR , std::ifstream& inputstream , RawKeywordPtr& rawKeyword, bool strictParsing) const;
|
|
void parseFile(DeckPtr deck , const boost::filesystem::path& file, const boost::filesystem::path& rootPath, bool strictParsing) const;
|
|
RawKeywordPtr createRawKeyword(const DeckConstPtr deck , const std::string& filename , size_t lineNR , const std::string& keywordString, bool strictParsing) const;
|
|
void addDefaultKeywords();
|
|
};
|
|
|
|
typedef boost::shared_ptr<Parser> ParserPtr;
|
|
typedef boost::shared_ptr<const Parser> ParserConstPtr;
|
|
} // namespace Opm
|
|
#endif /* PARSER_H */
|
|
|